Version Description
- Bugfixes:
- "No styles" would not get selected if "Rounded thumbnails' was enabled
- "Recreate Index" caused a fatal error: Call to undefined function
crp_single_activate()
- Excerpt shortening was not working correctly
- Exclude categories wasn't working in some cases
- Additional check to see if default styles are off, then force No style
Download this release
Release Info
Developer | Ajay |
Plugin | Contextual Related Posts |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- admin/admin.php +16 -15
- admin/main-view.php +3 -2
- admin/metabox.php +1 -1
- admin/sidebar-view.php +1 -1
- contextual-related-posts.php +2 -2
- includes/plugin-activator.php +2 -9
- includes/tools.php +53 -0
- languages/crp-da_DK.mo +0 -0
- languages/crp-da_DK.po +114 -114
- languages/crp-de_DE.mo +0 -0
- languages/crp-de_DE.po +113 -113
- languages/crp-el_GR.mo +0 -0
- languages/crp-el_GR.po +105 -102
- languages/crp-en_US.mo +0 -0
- languages/crp-en_US.po +101 -101
- languages/crp-en_US.pot +101 -101
- languages/crp-es_ES.mo +0 -0
- languages/crp-es_ES.po +113 -113
- languages/crp-fr_FR.mo +0 -0
- languages/crp-fr_FR.po +113 -113
- languages/crp-it_IT.mo +0 -0
- languages/crp-it_IT.po +114 -114
- languages/crp-lt_LT.mo +0 -0
- languages/crp-lt_LT.po +112 -112
- languages/crp-nl_NL.mo +0 -0
- languages/crp-nl_NL.po +114 -114
- languages/crp-pt_BR.mo +0 -0
- languages/crp-pt_BR.po +112 -112
- languages/crp-ro_RO.mo +0 -0
- languages/crp-ro_RO.po +112 -112
- languages/crp-ru_RU.mo +0 -0
- languages/crp-ru_RU.po +113 -113
- languages/crp-zh_CN.mo +0 -0
- languages/crp-zh_CN.po +112 -112
- readme.txt +12 -3
admin/admin.php
CHANGED
@@ -38,6 +38,14 @@ function crp_options() {
|
|
38 |
parse_str( $crp_settings['exclude_on_post_types'], $exclude_on_post_types );
|
39 |
$posts_types_excl = array_intersect( $wp_post_types, $exclude_on_post_types );
|
40 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
if ( ( isset( $_POST['crp_save'] ) ) && ( check_admin_referer( 'crp-plugin-settings' ) ) ) {
|
42 |
|
43 |
/**** General options ***/
|
@@ -128,15 +136,17 @@ function crp_options() {
|
|
128 |
} elseif ( 'text_only' == $crp_settings['crp_styles'] ) {
|
129 |
$crp_settings['include_default_style'] = false;
|
130 |
$crp_settings['post_thumb_op'] = 'text_only';
|
|
|
|
|
131 |
}
|
132 |
|
133 |
/**** Exclude categories ****/
|
134 |
-
$
|
135 |
-
$
|
136 |
|
137 |
foreach ( $exclude_categories_slugs as $exclude_categories_slug ) {
|
138 |
$catObj = get_category_by_slug( $exclude_categories_slug );
|
139 |
-
if ( isset( $catObj->
|
140 |
}
|
141 |
$crp_settings['exclude_categories'] = ( isset( $exclude_categories ) ) ? join( ',', $exclude_categories ) : '';
|
142 |
|
@@ -216,17 +226,8 @@ function crp_options() {
|
|
216 |
|
217 |
if ( ( isset( $_POST['crp_recreate'] ) ) && ( check_admin_referer( 'crp-plugin-settings' ) ) ) {
|
218 |
|
219 |
-
|
220 |
-
|
221 |
-
}
|
222 |
-
if ( $wpdb->get_results( "SHOW INDEX FROM {$wpdb->posts} where Key_name = 'crp_related_title'" ) ) {
|
223 |
-
$wpdb->query( "ALTER TABLE " . $wpdb->posts . " DROP INDEX crp_related_title" );
|
224 |
-
}
|
225 |
-
if ( $wpdb->get_results( "SHOW INDEX FROM {$wpdb->posts} where Key_name = 'crp_related_content'" ) ) {
|
226 |
-
$wpdb->query( "ALTER TABLE " . $wpdb->posts . " DROP INDEX crp_related_content" );
|
227 |
-
}
|
228 |
-
|
229 |
-
crp_single_activate();
|
230 |
|
231 |
$str = '<div id="message" class="updated fade"><p>'. __( 'Index recreated', CRP_LOCAL_NAME ) .'</p></div>';
|
232 |
echo $str;
|
@@ -245,7 +246,7 @@ function crp_options() {
|
|
245 |
*/
|
246 |
function crp_adminmenu() {
|
247 |
$plugin_page = add_options_page(
|
248 |
-
|
249 |
__( "Related Posts", CRP_LOCAL_NAME ),
|
250 |
'manage_options',
|
251 |
'crp_options',
|
38 |
parse_str( $crp_settings['exclude_on_post_types'], $exclude_on_post_types );
|
39 |
$posts_types_excl = array_intersect( $wp_post_types, $exclude_on_post_types );
|
40 |
|
41 |
+
// Temporary check if default styles are off and rounded thumbnails are selected - will be eventually deprecated
|
42 |
+
// This is a mismatch, so we force it to no style
|
43 |
+
if ( ( false == $crp_settings['include_default_style'] ) && ( 'rounded_thumbs' == $crp_settings['crp_styles'] ) ) {
|
44 |
+
$crp_settings['crp_styles'] = 'no_style';
|
45 |
+
update_option( 'ald_crp_settings', $crp_settings );
|
46 |
+
}
|
47 |
+
|
48 |
+
|
49 |
if ( ( isset( $_POST['crp_save'] ) ) && ( check_admin_referer( 'crp-plugin-settings' ) ) ) {
|
50 |
|
51 |
/**** General options ***/
|
136 |
} elseif ( 'text_only' == $crp_settings['crp_styles'] ) {
|
137 |
$crp_settings['include_default_style'] = false;
|
138 |
$crp_settings['post_thumb_op'] = 'text_only';
|
139 |
+
} else {
|
140 |
+
$crp_settings['include_default_style'] = false;
|
141 |
}
|
142 |
|
143 |
/**** Exclude categories ****/
|
144 |
+
$exclude_categories_slugs = array_map( 'trim', explode( ",", wp_kses_post( $_POST['exclude_cat_slugs'] ) ) );
|
145 |
+
$crp_settings['exclude_cat_slugs'] = implode( ", ", $exclude_categories_slugs );
|
146 |
|
147 |
foreach ( $exclude_categories_slugs as $exclude_categories_slug ) {
|
148 |
$catObj = get_category_by_slug( $exclude_categories_slug );
|
149 |
+
if ( isset( $catObj->term_taxonomy_id ) ) $exclude_categories[] = $catObj->term_taxonomy_id;
|
150 |
}
|
151 |
$crp_settings['exclude_categories'] = ( isset( $exclude_categories ) ) ? join( ',', $exclude_categories ) : '';
|
152 |
|
226 |
|
227 |
if ( ( isset( $_POST['crp_recreate'] ) ) && ( check_admin_referer( 'crp-plugin-settings' ) ) ) {
|
228 |
|
229 |
+
crp_delete_index();
|
230 |
+
crp_create_index();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
|
232 |
$str = '<div id="message" class="updated fade"><p>'. __( 'Index recreated', CRP_LOCAL_NAME ) .'</p></div>';
|
233 |
echo $str;
|
246 |
*/
|
247 |
function crp_adminmenu() {
|
248 |
$plugin_page = add_options_page(
|
249 |
+
"Contextual Related Posts",
|
250 |
__( "Related Posts", CRP_LOCAL_NAME ),
|
251 |
'manage_options',
|
252 |
'crp_options',
|
admin/main-view.php
CHANGED
@@ -17,7 +17,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
17 |
?>
|
18 |
|
19 |
<div class="wrap">
|
20 |
-
<h1
|
21 |
|
22 |
<ul class="subsubsub">
|
23 |
<?php
|
@@ -211,6 +211,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
211 |
<textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo ( stripslashes( $crp_settings['exclude_cat_slugs'] ) ); ?></textarea>
|
212 |
</div>
|
213 |
<p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the beginning of your category name and it will prompt you with options.', CRP_LOCAL_NAME ); ?></p>
|
|
|
214 |
</td>
|
215 |
</tr>
|
216 |
|
@@ -617,7 +618,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
617 |
<br />
|
618 |
|
619 |
<label>
|
620 |
-
<input type="radio" name="crp_styles" value="rounded_thumbs" id="crp_styles_0" <?php if ( $crp_settings['include_default_style']
|
621 |
</label>
|
622 |
<p class="description"><img src="<?php echo plugins_url( 'admin/images/crp-rounded-thumbs.png', dirname( __FILE__ ) ); ?>" /></p>
|
623 |
<p class="description"><?php _e( 'Enabling this option will turn on the thumbnails and set their width and height to 150px. It will also turn off the display of the author, excerpt and date if already enabled. Disabling this option will not revert any settings.', CRP_LOCAL_NAME ); ?></p>
|
17 |
?>
|
18 |
|
19 |
<div class="wrap">
|
20 |
+
<h1>Contextual Related Posts</h1>
|
21 |
|
22 |
<ul class="subsubsub">
|
23 |
<?php
|
211 |
<textarea class="wickEnabled:MYCUSTOMFLOATER" cols="50" rows="3" wrap="virtual" name="exclude_cat_slugs"><?php echo ( stripslashes( $crp_settings['exclude_cat_slugs'] ) ); ?></textarea>
|
212 |
</div>
|
213 |
<p class="description"><?php _e( 'Comma separated list of category slugs. The field above has an autocomplete so simply start typing in the beginning of your category name and it will prompt you with options.', CRP_LOCAL_NAME ); ?></p>
|
214 |
+
<p class="description highlight"><?php _e( "Excluded category IDs are:", CRP_LOCAL_NAME ); echo " " . $crp_settings['exclude_categories']; ?></p>
|
215 |
</td>
|
216 |
</tr>
|
217 |
|
618 |
<br />
|
619 |
|
620 |
<label>
|
621 |
+
<input type="radio" name="crp_styles" value="rounded_thumbs" id="crp_styles_0" <?php if ( $crp_settings['include_default_style'] && ( 'rounded_thumbs' == $crp_settings['crp_styles'] ) ) echo 'checked="checked"' ?> /> <?php _e( 'Rounded Thumbnails', CRP_LOCAL_NAME ); ?>
|
622 |
</label>
|
623 |
<p class="description"><img src="<?php echo plugins_url( 'admin/images/crp-rounded-thumbs.png', dirname( __FILE__ ) ); ?>" /></p>
|
624 |
<p class="description"><?php _e( 'Enabling this option will turn on the thumbnails and set their width and height to 150px. It will also turn off the display of the author, excerpt and date if already enabled. Disabling this option will not revert any settings.', CRP_LOCAL_NAME ); ?></p>
|
admin/metabox.php
CHANGED
@@ -50,7 +50,7 @@ function crp_add_meta_box( $post_type, $post ) {
|
|
50 |
|
51 |
add_meta_box(
|
52 |
'crp_metabox',
|
53 |
-
|
54 |
'crp_call_meta_box',
|
55 |
$post_type,
|
56 |
'advanced',
|
50 |
|
51 |
add_meta_box(
|
52 |
'crp_metabox',
|
53 |
+
'Contextual Related Posts',
|
54 |
'crp_call_meta_box',
|
55 |
$post_type,
|
56 |
'advanced',
|
admin/sidebar-view.php
CHANGED
@@ -54,7 +54,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
54 |
<div class="inside">
|
55 |
<div id="quick-links">
|
56 |
<ul>
|
57 |
-
<li><a href="https://webberzone.com/plugins/contextual-related-posts/"><?php _e( '
|
58 |
<li><a href="https://wordpress.org/plugins/contextual-related-posts/faq/"><?php _e( 'FAQ', CRP_LOCAL_NAME ); ?></a></li>
|
59 |
<li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e( 'Support', CRP_LOCAL_NAME ); ?></a></li>
|
60 |
<li><a href="https://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e( 'Reviews', CRP_LOCAL_NAME ); ?></a></li>
|
54 |
<div class="inside">
|
55 |
<div id="quick-links">
|
56 |
<ul>
|
57 |
+
<li><a href="https://webberzone.com/plugins/contextual-related-posts/"><?php _e( 'Plugin homepage', CRP_LOCAL_NAME ); ?></a></li>
|
58 |
<li><a href="https://wordpress.org/plugins/contextual-related-posts/faq/"><?php _e( 'FAQ', CRP_LOCAL_NAME ); ?></a></li>
|
59 |
<li><a href="http://wordpress.org/support/plugin/contextual-related-posts"><?php _e( 'Support', CRP_LOCAL_NAME ); ?></a></li>
|
60 |
<li><a href="https://wordpress.org/support/view/plugin-reviews/contextual-related-posts"><?php _e( 'Reviews', CRP_LOCAL_NAME ); ?></a></li>
|
contextual-related-posts.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Plugin Name: Contextual Related Posts
|
16 |
* Plugin URI: https://webberzone.com/plugins/contextual-related-posts/
|
17 |
* Description: Display a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
|
18 |
-
* Version: 2.2.
|
19 |
* Author: WebberZone
|
20 |
* Author URI: https://webberzone.com
|
21 |
* Text Domain: crp
|
@@ -161,7 +161,7 @@ function get_crp( $args = array() ) {
|
|
161 |
}
|
162 |
|
163 |
if ( $args['show_excerpt'] ) {
|
164 |
-
$output .= '<span class="crp_excerpt"> ' . crp_excerpt( $result->ID, $excerpt_length ) . '</span>';
|
165 |
}
|
166 |
|
167 |
$loop_counter++;
|
15 |
* Plugin Name: Contextual Related Posts
|
16 |
* Plugin URI: https://webberzone.com/plugins/contextual-related-posts/
|
17 |
* Description: Display a set of related posts on your website or in your feed. Increase reader retention and reduce bounce rates
|
18 |
+
* Version: 2.2.1
|
19 |
* Author: WebberZone
|
20 |
* Author URI: https://webberzone.com
|
21 |
* Text Domain: crp
|
161 |
}
|
162 |
|
163 |
if ( $args['show_excerpt'] ) {
|
164 |
+
$output .= '<span class="crp_excerpt"> ' . crp_excerpt( $result->ID, $args['excerpt_length'] ) . '</span>';
|
165 |
}
|
166 |
|
167 |
$loop_counter++;
|
includes/plugin-activator.php
CHANGED
@@ -56,16 +56,9 @@ function crp_single_activate() {
|
|
56 |
|
57 |
$wpdb->hide_errors();
|
58 |
|
59 |
-
|
60 |
-
|
61 |
-
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ENGINE = InnoDB;' );
|
62 |
-
} else {
|
63 |
-
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ENGINE = MYISAM;' );
|
64 |
-
}
|
65 |
|
66 |
-
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ADD FULLTEXT crp_related (post_title, post_content);' );
|
67 |
-
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ADD FULLTEXT crp_related_title (post_title);' );
|
68 |
-
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ADD FULLTEXT crp_related_content (post_content);' );
|
69 |
$wpdb->show_errors();
|
70 |
|
71 |
}
|
56 |
|
57 |
$wpdb->hide_errors();
|
58 |
|
59 |
+
crp_delete_index();
|
60 |
+
crp_create_index();
|
|
|
|
|
|
|
|
|
61 |
|
|
|
|
|
|
|
62 |
$wpdb->show_errors();
|
63 |
|
64 |
}
|
includes/tools.php
CHANGED
@@ -127,3 +127,56 @@ function crp_cache_get_keys() {
|
|
127 |
return apply_filters( 'crp_cache_keys', $meta_keys );
|
128 |
}
|
129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
return apply_filters( 'crp_cache_keys', $meta_keys );
|
128 |
}
|
129 |
|
130 |
+
/**
|
131 |
+
* Create the FULLTEXT index.
|
132 |
+
*
|
133 |
+
* @since 2.2.1
|
134 |
+
*
|
135 |
+
*/
|
136 |
+
function crp_create_index() {
|
137 |
+
global $wpdb;
|
138 |
+
|
139 |
+
$wpdb->hide_errors();
|
140 |
+
|
141 |
+
// If we're running mySQL v5.6, convert the WPDB posts table to InnoDB, since InnoDB supports FULLTEXT from v5.6 onwards
|
142 |
+
if ( version_compare( 5.6, $wpdb->db_version(), '<=' ) ) {
|
143 |
+
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ENGINE = InnoDB;' );
|
144 |
+
} else {
|
145 |
+
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ENGINE = MYISAM;' );
|
146 |
+
}
|
147 |
+
|
148 |
+
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ADD FULLTEXT crp_related (post_title, post_content);' );
|
149 |
+
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ADD FULLTEXT crp_related_title (post_title);' );
|
150 |
+
$wpdb->query( 'ALTER TABLE ' . $wpdb->posts . ' ADD FULLTEXT crp_related_content (post_content);' );
|
151 |
+
|
152 |
+
$wpdb->show_errors();
|
153 |
+
|
154 |
+
}
|
155 |
+
|
156 |
+
|
157 |
+
/**
|
158 |
+
* Delete the FULLTEXT index.
|
159 |
+
*
|
160 |
+
* @since 2.2.1
|
161 |
+
*
|
162 |
+
*/
|
163 |
+
function crp_delete_index() {
|
164 |
+
global $wpdb;
|
165 |
+
|
166 |
+
$wpdb->hide_errors();
|
167 |
+
|
168 |
+
if ( $wpdb->get_results( "SHOW INDEX FROM {$wpdb->posts} where Key_name = 'crp_related'" ) ) {
|
169 |
+
$wpdb->query( "ALTER TABLE " . $wpdb->posts . " DROP INDEX crp_related" );
|
170 |
+
}
|
171 |
+
if ( $wpdb->get_results( "SHOW INDEX FROM {$wpdb->posts} where Key_name = 'crp_related_title'" ) ) {
|
172 |
+
$wpdb->query( "ALTER TABLE " . $wpdb->posts . " DROP INDEX crp_related_title" );
|
173 |
+
}
|
174 |
+
if ( $wpdb->get_results( "SHOW INDEX FROM {$wpdb->posts} where Key_name = 'crp_related_content'" ) ) {
|
175 |
+
$wpdb->query( "ALTER TABLE " . $wpdb->posts . " DROP INDEX crp_related_content" );
|
176 |
+
}
|
177 |
+
|
178 |
+
$wpdb->show_errors();
|
179 |
+
|
180 |
+
}
|
181 |
+
|
182 |
+
|
languages/crp-da_DK.mo
CHANGED
Binary file
|
languages/crp-da_DK.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
@@ -18,39 +18,34 @@ msgstr ""
|
|
18 |
"X-Generator: Poedit 1.8.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: admin/admin.php:
|
22 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: admin/admin.php:
|
26 |
msgid ""
|
27 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
28 |
"displayed."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: admin/admin.php:
|
32 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:
|
36 |
#, php-format
|
37 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/admin.php:
|
41 |
msgid "Options set to Default."
|
42 |
msgstr "Indstillingerne sat til standardværdier."
|
43 |
|
44 |
-
#: admin/admin.php:
|
45 |
msgid "Index recreated"
|
46 |
msgstr "Indeks blev gendannet"
|
47 |
|
48 |
-
#: admin/admin.php:
|
49 |
-
#, fuzzy
|
50 |
-
msgid "Contextual Related Posts"
|
51 |
-
msgstr "Related Posts (Lignende indlæg)"
|
52 |
-
|
53 |
-
#: admin/admin.php:249
|
54 |
msgid "Related Posts"
|
55 |
msgstr "Related Posts (Lignende indlæg)"
|
56 |
|
@@ -92,22 +87,22 @@ msgstr ""
|
|
92 |
msgid "List tuning options"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
96 |
#, fuzzy
|
97 |
msgid "Output options"
|
98 |
msgstr "Indstillinger for output:"
|
99 |
|
100 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
101 |
#: includes/class-crp-widget.php:93
|
102 |
#, fuzzy
|
103 |
msgid "Thumbnail options"
|
104 |
msgstr "Indstillinger for indlægsminiaturer:"
|
105 |
|
106 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
107 |
msgid "Styles"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
111 |
#, fuzzy
|
112 |
msgid "Feed options"
|
113 |
msgstr "Indstillinger:"
|
@@ -231,14 +226,14 @@ msgid ""
|
|
231 |
"in the list."
|
232 |
msgstr "Related Posts (Lignende indlæg)"
|
233 |
|
234 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
235 |
-
#: admin/main-view.php:
|
236 |
-
#: admin/main-view.php:
|
237 |
#, fuzzy
|
238 |
msgid "Save Options"
|
239 |
msgstr "Indstillinger:"
|
240 |
|
241 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
242 |
msgid "Number of related posts to display: "
|
243 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
244 |
|
@@ -298,7 +293,7 @@ msgstr ""
|
|
298 |
msgid "List of post or page IDs to exclude from the results:"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
302 |
msgid ""
|
303 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
304 |
msgstr ""
|
@@ -314,34 +309,38 @@ msgid ""
|
|
314 |
"prompt you with options."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
318 |
msgid "Title of related posts:"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/main-view.php:
|
322 |
msgid ""
|
323 |
"This is the main heading of the related posts. You can also display the "
|
324 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
325 |
"Posts to %postname%</code>"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin/main-view.php:
|
329 |
msgid "When there are no posts, what should be shown?"
|
330 |
msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
|
331 |
|
332 |
-
#: admin/main-view.php:
|
333 |
msgid "Blank Output"
|
334 |
msgstr "Intet"
|
335 |
|
336 |
-
#: admin/main-view.php:
|
337 |
msgid "Display:"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin/main-view.php:
|
341 |
msgid "Show post excerpt in list?"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin/main-view.php:
|
345 |
#, php-format
|
346 |
msgid ""
|
347 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -349,165 +348,165 @@ msgid ""
|
|
349 |
"automatic excerpt which refers to the first %d words of the post's content"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/main-view.php:
|
353 |
msgid ""
|
354 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
355 |
"is disabled."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin/main-view.php:
|
359 |
msgid "Length of excerpt (in words):"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin/main-view.php:
|
363 |
msgid "Show post author in list?"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/main-view.php:
|
367 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/main-view.php:
|
371 |
msgid ""
|
372 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
373 |
"disabled."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin/main-view.php:
|
377 |
msgid "Show post date in list?"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin/main-view.php:
|
381 |
msgid ""
|
382 |
"Displays the date of the post. Uses the same date format set in General "
|
383 |
"Options"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/main-view.php:
|
387 |
msgid ""
|
388 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
389 |
"disabled."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin/main-view.php:
|
393 |
msgid "Limit post title length (in characters)"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid ""
|
398 |
"Any title longer than the number of characters set above will be cut and "
|
399 |
"appended with an ellipsis (…)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/main-view.php:
|
403 |
msgid "Open links in new window"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/main-view.php:
|
407 |
msgid "Add nofollow attribute to links in the list"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin/main-view.php:
|
411 |
msgid "Exclusion settings:"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
#, fuzzy
|
416 |
msgid "Exclude display of related posts on these posts / pages"
|
417 |
msgstr "Tilføj Lignende indlæg til feeds"
|
418 |
|
419 |
-
#: admin/main-view.php:
|
420 |
#, fuzzy
|
421 |
msgid "Exclude display of related posts on these post types."
|
422 |
msgstr "Tilføj Lignende indlæg til feeds"
|
423 |
|
424 |
-
#: admin/main-view.php:
|
425 |
msgid ""
|
426 |
"The related posts will not display on any of the above selected post types"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/main-view.php:
|
430 |
msgid "Customize the output:"
|
431 |
msgstr "Tilpas outputtet:"
|
432 |
|
433 |
-
#: admin/main-view.php:
|
434 |
msgid "HTML to display before the list of posts: "
|
435 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
436 |
|
437 |
-
#: admin/main-view.php:
|
438 |
msgid "HTML to display before each list item: "
|
439 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
440 |
|
441 |
-
#: admin/main-view.php:
|
442 |
msgid "HTML to display after each list item: "
|
443 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
msgid "HTML to display after the list of posts: "
|
447 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
448 |
|
449 |
-
#: admin/main-view.php:
|
450 |
msgid "Location of post thumbnail:"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
#, fuzzy
|
455 |
msgid "Display thumbnails inline with posts, before title"
|
456 |
msgstr "Vis miniaturer inline med indlæg"
|
457 |
|
458 |
-
#: admin/main-view.php:
|
459 |
#, fuzzy
|
460 |
msgid "Display thumbnails inline with posts, after title"
|
461 |
msgstr "Vis miniaturer inline med indlæg"
|
462 |
|
463 |
-
#: admin/main-view.php:
|
464 |
msgid "Display only thumbnails, no text"
|
465 |
msgstr "Vis kun miniaturer, ingen tekst"
|
466 |
|
467 |
-
#: admin/main-view.php:
|
468 |
msgid "Do not display thumbnails, only text."
|
469 |
msgstr "Vis ikke miniaturer, kun tekst."
|
470 |
|
471 |
-
#: admin/main-view.php:
|
472 |
msgid ""
|
473 |
"This setting cannot be changed because an inbuilt style has been selected "
|
474 |
"under the Styles section. If you would like to change this option, please "
|
475 |
"select <strong>No styles</strong> under the Styles section."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/main-view.php:
|
479 |
msgid "Thumbnail size:"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/main-view.php:
|
483 |
msgid "Custom size"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/main-view.php:
|
487 |
msgid "You can choose from existing image sizes above or create a custom size."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/main-view.php:
|
491 |
msgid ""
|
492 |
"If you choose an existing size, then the width, height and crop mode "
|
493 |
"settings in the three options below will be automatically updated to reflect "
|
494 |
"the correct dimensions of the setting."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/main-view.php:
|
498 |
msgid ""
|
499 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
500 |
"settings below. For best results, use a cropped image with the same width "
|
501 |
"and height. The default setting is 150x150 cropped image."
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/main-view.php:
|
505 |
msgid ""
|
506 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
507 |
"images."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/main-view.php:
|
511 |
#, php-format
|
512 |
msgid ""
|
513 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -515,105 +514,109 @@ msgid ""
|
|
515 |
"all image sizes."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: admin/main-view.php:
|
519 |
msgid "Width of the thumbnail:"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/main-view.php:
|
523 |
msgid "Height of the thumbnail: "
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/main-view.php:
|
527 |
msgid "Crop mode:"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/main-view.php:
|
531 |
msgid ""
|
532 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
533 |
"proportionately/soft crop the thumbnails."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/main-view.php:
|
537 |
#, php-format
|
538 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/main-view.php:
|
542 |
msgid "Image size attributes:"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/main-view.php:
|
546 |
msgid "Style attributes are used for width and height."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/main-view.php:
|
550 |
msgid "HTML width and height attributes are used for width and height."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/main-view.php:
|
554 |
msgid "No HTML or Style attributes set for width and height"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/main-view.php:
|
558 |
#, fuzzy
|
559 |
msgid "Post thumbnail meta field name:"
|
560 |
msgstr "Indstillinger for indlægsminiaturer:"
|
561 |
|
562 |
-
#: admin/main-view.php:
|
563 |
msgid ""
|
564 |
"The value of this field should contain a direct link to the image. This is "
|
565 |
"set in the meta box in the <em>Add New Post</em> screen."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/main-view.php:
|
569 |
msgid "Extract the first image from the post?"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: admin/main-view.php:
|
573 |
msgid ""
|
574 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
575 |
"specified in the meta field."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: admin/main-view.php:
|
579 |
msgid "Use default thumbnail?"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/main-view.php:
|
583 |
msgid ""
|
584 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
585 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/main-view.php:
|
589 |
#, fuzzy
|
590 |
msgid "Default thumbnail:"
|
591 |
msgstr "Indstillinger for output:"
|
592 |
|
593 |
-
#: admin/main-view.php:
|
|
|
594 |
msgid ""
|
595 |
-
"
|
596 |
-
"
|
597 |
-
"
|
598 |
msgstr ""
|
|
|
|
|
|
|
599 |
|
600 |
-
#: admin/main-view.php:
|
601 |
msgid "Style of the related posts:"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/main-view.php:
|
605 |
msgid "No styles"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/main-view.php:
|
609 |
msgid "Select this option if you plan to add your own styles"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: admin/main-view.php:
|
613 |
msgid "Rounded Thumbnails"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: admin/main-view.php:
|
617 |
msgid ""
|
618 |
"Enabling this option will turn on the thumbnails and set their width and "
|
619 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -621,66 +624,66 @@ msgid ""
|
|
621 |
"settings."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/main-view.php:
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/main-view.php:
|
631 |
msgid "Text only"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/main-view.php:
|
635 |
msgid ""
|
636 |
"Enabling this option will disable thumbnails and no longer include the "
|
637 |
"default style sheet included in the plugin."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
msgid "Custom CSS to add to header:"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/main-view.php:
|
645 |
msgid ""
|
646 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
647 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
648 |
"\">FAQ</a> for available CSS classes to style."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/main-view.php:
|
652 |
msgid ""
|
653 |
"Below options override the related posts settings for your blog feed. These "
|
654 |
"only apply if you have selected to add related posts to Feeds in the General "
|
655 |
"Options tab."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/main-view.php:
|
659 |
msgid "Maximum width of the thumbnail: "
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/main-view.php:
|
663 |
msgid "Maximum height of the thumbnail: "
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: admin/main-view.php:
|
667 |
#, fuzzy
|
668 |
msgid "Default Options"
|
669 |
msgstr "Indstillinger for output:"
|
670 |
|
671 |
-
#: admin/main-view.php:
|
672 |
msgid "Do you want to set options to Default?"
|
673 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
674 |
|
675 |
-
#: admin/main-view.php:
|
676 |
msgid "Recreate Index"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: admin/main-view.php:
|
680 |
msgid "Are you sure you want to recreate the index?"
|
681 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
682 |
|
683 |
-
#: admin/main-view.php:
|
684 |
msgid ""
|
685 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
686 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -768,9 +771,8 @@ msgid "Quick links"
|
|
768 |
msgstr ""
|
769 |
|
770 |
#: admin/sidebar-view.php:57
|
771 |
-
|
772 |
-
|
773 |
-
msgstr "Related Posts (Lignende indlæg)"
|
774 |
|
775 |
#: admin/sidebar-view.php:58
|
776 |
msgid "FAQ"
|
@@ -886,6 +888,14 @@ msgstr ""
|
|
886 |
msgid " by "
|
887 |
msgstr ""
|
888 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
889 |
#~ msgid "Options saved successfully."
|
890 |
#~ msgstr "Indstillingerne blev gemt."
|
891 |
|
@@ -905,16 +915,6 @@ msgstr ""
|
|
905 |
#~ msgid "Title of related posts: "
|
906 |
#~ msgstr "Titel på Lignende indlæg: "
|
907 |
|
908 |
-
#, fuzzy
|
909 |
-
#~ msgid ""
|
910 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
911 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
912 |
-
#~ "it will show the default image as specified above."
|
913 |
-
#~ msgstr ""
|
914 |
-
#~ "Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis "
|
915 |
-
#~ "indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
916 |
-
#~ "findes, vil det vise standardbilledet specificeret nedenfor:"
|
917 |
-
|
918 |
#~ msgid "Post thumbnail options:"
|
919 |
#~ msgstr "Indstillinger for indlægsminiaturer:"
|
920 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts 1.5.1\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Team Blogos <wordpress@blogos.dk>\n"
|
18 |
"X-Generator: Poedit 1.8.4\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: admin/admin.php:190
|
22 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: admin/admin.php:193
|
26 |
msgid ""
|
27 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
28 |
"displayed."
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: admin/admin.php:196
|
32 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:199
|
36 |
#, php-format
|
37 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: admin/admin.php:223
|
41 |
msgid "Options set to Default."
|
42 |
msgstr "Indstillingerne sat til standardværdier."
|
43 |
|
44 |
+
#: admin/admin.php:232
|
45 |
msgid "Index recreated"
|
46 |
msgstr "Indeks blev gendannet"
|
47 |
|
48 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
|
|
49 |
msgid "Related Posts"
|
50 |
msgstr "Related Posts (Lignende indlæg)"
|
51 |
|
87 |
msgid "List tuning options"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
91 |
#, fuzzy
|
92 |
msgid "Output options"
|
93 |
msgstr "Indstillinger for output:"
|
94 |
|
95 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
96 |
#: includes/class-crp-widget.php:93
|
97 |
#, fuzzy
|
98 |
msgid "Thumbnail options"
|
99 |
msgstr "Indstillinger for indlægsminiaturer:"
|
100 |
|
101 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
102 |
msgid "Styles"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
106 |
#, fuzzy
|
107 |
msgid "Feed options"
|
108 |
msgstr "Indstillinger:"
|
226 |
"in the list."
|
227 |
msgstr "Related Posts (Lignende indlæg)"
|
228 |
|
229 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
230 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
231 |
+
#: admin/main-view.php:755
|
232 |
#, fuzzy
|
233 |
msgid "Save Options"
|
234 |
msgstr "Indstillinger:"
|
235 |
|
236 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
237 |
msgid "Number of related posts to display: "
|
238 |
msgstr "Antal Lignende indlæg, der skal vises: "
|
239 |
|
293 |
msgid "List of post or page IDs to exclude from the results:"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
297 |
msgid ""
|
298 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
299 |
msgstr ""
|
309 |
"prompt you with options."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: admin/main-view.php:214
|
313 |
+
msgid "Excluded category IDs are:"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin/main-view.php:255
|
317 |
msgid "Title of related posts:"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin/main-view.php:258
|
321 |
msgid ""
|
322 |
"This is the main heading of the related posts. You can also display the "
|
323 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
324 |
"Posts to %postname%</code>"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin/main-view.php:262
|
328 |
msgid "When there are no posts, what should be shown?"
|
329 |
msgstr "Hvad skal der vises, hvis der ingen indlæg er?"
|
330 |
|
331 |
+
#: admin/main-view.php:266
|
332 |
msgid "Blank Output"
|
333 |
msgstr "Intet"
|
334 |
|
335 |
+
#: admin/main-view.php:271
|
336 |
msgid "Display:"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
340 |
msgid "Show post excerpt in list?"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/main-view.php:280
|
344 |
#, php-format
|
345 |
msgid ""
|
346 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
348 |
"automatic excerpt which refers to the first %d words of the post's content"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin/main-view.php:283
|
352 |
msgid ""
|
353 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
354 |
"is disabled."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/main-view.php:288
|
358 |
msgid "Length of excerpt (in words):"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/main-view.php:294
|
362 |
msgid "Show post author in list?"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: admin/main-view.php:297
|
366 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin/main-view.php:300
|
370 |
msgid ""
|
371 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
372 |
"disabled."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin/main-view.php:305
|
376 |
msgid "Show post date in list?"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/main-view.php:308
|
380 |
msgid ""
|
381 |
"Displays the date of the post. Uses the same date format set in General "
|
382 |
"Options"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: admin/main-view.php:311
|
386 |
msgid ""
|
387 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
388 |
"disabled."
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: admin/main-view.php:316
|
392 |
msgid "Limit post title length (in characters)"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/main-view.php:319
|
396 |
msgid ""
|
397 |
"Any title longer than the number of characters set above will be cut and "
|
398 |
"appended with an ellipsis (…)"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/main-view.php:323
|
402 |
msgid "Open links in new window"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/main-view.php:329
|
406 |
msgid "Add nofollow attribute to links in the list"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/main-view.php:362
|
410 |
msgid "Exclusion settings:"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/main-view.php:364
|
414 |
#, fuzzy
|
415 |
msgid "Exclude display of related posts on these posts / pages"
|
416 |
msgstr "Tilføj Lignende indlæg til feeds"
|
417 |
|
418 |
+
#: admin/main-view.php:370
|
419 |
#, fuzzy
|
420 |
msgid "Exclude display of related posts on these post types."
|
421 |
msgstr "Tilføj Lignende indlæg til feeds"
|
422 |
|
423 |
+
#: admin/main-view.php:377
|
424 |
msgid ""
|
425 |
"The related posts will not display on any of the above selected post types"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/main-view.php:407
|
429 |
msgid "Customize the output:"
|
430 |
msgstr "Tilpas outputtet:"
|
431 |
|
432 |
+
#: admin/main-view.php:409
|
433 |
msgid "HTML to display before the list of posts: "
|
434 |
msgstr "HTML, der skal vises før listen med indlæg: "
|
435 |
|
436 |
+
#: admin/main-view.php:412
|
437 |
msgid "HTML to display before each list item: "
|
438 |
msgstr "HTML, der skal vises før hvert punkt på listen: "
|
439 |
|
440 |
+
#: admin/main-view.php:415
|
441 |
msgid "HTML to display after each list item: "
|
442 |
msgstr "HTML, der skal vises efter hvert punkt på listen: "
|
443 |
|
444 |
+
#: admin/main-view.php:418
|
445 |
msgid "HTML to display after the list of posts: "
|
446 |
msgstr "HTML, der skal vises efter listen med indlæg: "
|
447 |
|
448 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
449 |
msgid "Location of post thumbnail:"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
453 |
#, fuzzy
|
454 |
msgid "Display thumbnails inline with posts, before title"
|
455 |
msgstr "Vis miniaturer inline med indlæg"
|
456 |
|
457 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
458 |
#, fuzzy
|
459 |
msgid "Display thumbnails inline with posts, after title"
|
460 |
msgstr "Vis miniaturer inline med indlæg"
|
461 |
|
462 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
463 |
msgid "Display only thumbnails, no text"
|
464 |
msgstr "Vis kun miniaturer, ingen tekst"
|
465 |
|
466 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
467 |
msgid "Do not display thumbnails, only text."
|
468 |
msgstr "Vis ikke miniaturer, kun tekst."
|
469 |
|
470 |
+
#: admin/main-view.php:478
|
471 |
msgid ""
|
472 |
"This setting cannot be changed because an inbuilt style has been selected "
|
473 |
"under the Styles section. If you would like to change this option, please "
|
474 |
"select <strong>No styles</strong> under the Styles section."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/main-view.php:482
|
478 |
msgid "Thumbnail size:"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/main-view.php:506
|
482 |
msgid "Custom size"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/main-view.php:509
|
486 |
msgid "You can choose from existing image sizes above or create a custom size."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/main-view.php:510
|
490 |
msgid ""
|
491 |
"If you choose an existing size, then the width, height and crop mode "
|
492 |
"settings in the three options below will be automatically updated to reflect "
|
493 |
"the correct dimensions of the setting."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/main-view.php:511
|
497 |
msgid ""
|
498 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
499 |
"settings below. For best results, use a cropped image with the same width "
|
500 |
"and height. The default setting is 150x150 cropped image."
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/main-view.php:512
|
504 |
msgid ""
|
505 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
506 |
"images."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/main-view.php:513
|
510 |
#, php-format
|
511 |
msgid ""
|
512 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
514 |
"all image sizes."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: admin/main-view.php:517
|
518 |
msgid "Width of the thumbnail:"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/main-view.php:520
|
522 |
msgid "Height of the thumbnail: "
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/main-view.php:525
|
526 |
msgid "Crop mode:"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/main-view.php:529
|
530 |
msgid ""
|
531 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
532 |
"proportionately/soft crop the thumbnails."
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/main-view.php:530
|
536 |
#, php-format
|
537 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/main-view.php:534
|
541 |
msgid "Image size attributes:"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/main-view.php:538
|
545 |
msgid "Style attributes are used for width and height."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/main-view.php:543
|
549 |
msgid "HTML width and height attributes are used for width and height."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/main-view.php:548
|
553 |
msgid "No HTML or Style attributes set for width and height"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/main-view.php:553
|
557 |
#, fuzzy
|
558 |
msgid "Post thumbnail meta field name:"
|
559 |
msgstr "Indstillinger for indlægsminiaturer:"
|
560 |
|
561 |
+
#: admin/main-view.php:555
|
562 |
msgid ""
|
563 |
"The value of this field should contain a direct link to the image. This is "
|
564 |
"set in the meta box in the <em>Add New Post</em> screen."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin/main-view.php:558
|
568 |
msgid "Extract the first image from the post?"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: admin/main-view.php:560
|
572 |
msgid ""
|
573 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
574 |
"specified in the meta field."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: admin/main-view.php:563
|
578 |
msgid "Use default thumbnail?"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/main-view.php:565
|
582 |
msgid ""
|
583 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
584 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: admin/main-view.php:568
|
588 |
#, fuzzy
|
589 |
msgid "Default thumbnail:"
|
590 |
msgstr "Indstillinger for output:"
|
591 |
|
592 |
+
#: admin/main-view.php:571
|
593 |
+
#, fuzzy
|
594 |
msgid ""
|
595 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
596 |
+
"then it will check the meta field. If this is not available, then it will "
|
597 |
+
"show the default image as specified above."
|
598 |
msgstr ""
|
599 |
+
"Pluginnet tjekker først, om indlægget indeholder en miniature. Hvis "
|
600 |
+
"indlægget ikke gør det, tjekker pluginnet metafeltet. Hvis dette ikke "
|
601 |
+
"findes, vil det vise standardbilledet specificeret nedenfor:"
|
602 |
|
603 |
+
#: admin/main-view.php:612
|
604 |
msgid "Style of the related posts:"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/main-view.php:615
|
608 |
msgid "No styles"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/main-view.php:617
|
612 |
msgid "Select this option if you plan to add your own styles"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/main-view.php:621
|
616 |
msgid "Rounded Thumbnails"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/main-view.php:624
|
620 |
msgid ""
|
621 |
"Enabling this option will turn on the thumbnails and set their width and "
|
622 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
624 |
"settings."
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: admin/main-view.php:625
|
628 |
#, php-format
|
629 |
msgid ""
|
630 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/main-view.php:629
|
634 |
msgid "Text only"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/main-view.php:631
|
638 |
msgid ""
|
639 |
"Enabling this option will disable thumbnails and no longer include the "
|
640 |
"default style sheet included in the plugin."
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/main-view.php:646
|
644 |
msgid "Custom CSS to add to header:"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/main-view.php:650
|
648 |
msgid ""
|
649 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
650 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
651 |
"\">FAQ</a> for available CSS classes to style."
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: admin/main-view.php:690
|
655 |
msgid ""
|
656 |
"Below options override the related posts settings for your blog feed. These "
|
657 |
"only apply if you have selected to add related posts to Feeds in the General "
|
658 |
"Options tab."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: admin/main-view.php:718
|
662 |
msgid "Maximum width of the thumbnail: "
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: admin/main-view.php:721
|
666 |
msgid "Maximum height of the thumbnail: "
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: admin/main-view.php:756
|
670 |
#, fuzzy
|
671 |
msgid "Default Options"
|
672 |
msgstr "Indstillinger for output:"
|
673 |
|
674 |
+
#: admin/main-view.php:756
|
675 |
msgid "Do you want to set options to Default?"
|
676 |
msgstr "Ønsker du at sætte indstillingerne til standardværdierne?"
|
677 |
|
678 |
+
#: admin/main-view.php:757
|
679 |
msgid "Recreate Index"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: admin/main-view.php:757
|
683 |
msgid "Are you sure you want to recreate the index?"
|
684 |
msgstr "Er du sikker på, du ønsker at gendanne indekset?"
|
685 |
|
686 |
+
#: admin/main-view.php:762
|
687 |
msgid ""
|
688 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
689 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
771 |
msgstr ""
|
772 |
|
773 |
#: admin/sidebar-view.php:57
|
774 |
+
msgid "Plugin homepage"
|
775 |
+
msgstr ""
|
|
|
776 |
|
777 |
#: admin/sidebar-view.php:58
|
778 |
msgid "FAQ"
|
888 |
msgid " by "
|
889 |
msgstr ""
|
890 |
|
891 |
+
#, fuzzy
|
892 |
+
#~ msgid "Contextual Related Posts"
|
893 |
+
#~ msgstr "Related Posts (Lignende indlæg)"
|
894 |
+
|
895 |
+
#, fuzzy
|
896 |
+
#~ msgid "Contextual Related Posts plugin page"
|
897 |
+
#~ msgstr "Related Posts (Lignende indlæg)"
|
898 |
+
|
899 |
#~ msgid "Options saved successfully."
|
900 |
#~ msgstr "Indstillingerne blev gemt."
|
901 |
|
915 |
#~ msgid "Title of related posts: "
|
916 |
#~ msgstr "Titel på Lignende indlæg: "
|
917 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
#~ msgid "Post thumbnail options:"
|
919 |
#~ msgstr "Indstillinger for indlægsminiaturer:"
|
920 |
|
languages/crp-de_DE.mo
CHANGED
Binary file
|
languages/crp-de_DE.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: me@ajaydsouza.com\n"
|
@@ -17,38 +17,34 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin/admin.php:
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Options set to Default."
|
41 |
msgstr "Optionen auf die Voreinstellungen gesetzt."
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Index recreated"
|
45 |
msgstr "Index neu aufgebaut"
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
msgid "Contextual Related Posts"
|
49 |
-
msgstr "Contextual Related Posts"
|
50 |
-
|
51 |
-
#: admin/admin.php:249
|
52 |
msgid "Related Posts"
|
53 |
msgstr "Ähnliche Beiträge"
|
54 |
|
@@ -92,20 +88,20 @@ msgstr "Allgemeine Optionen"
|
|
92 |
msgid "List tuning options"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
96 |
msgid "Output options"
|
97 |
msgstr "Ausgabe Einstellungen"
|
98 |
|
99 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
100 |
#: includes/class-crp-widget.php:93
|
101 |
msgid "Thumbnail options"
|
102 |
msgstr "Optionen des Vorschaubildes"
|
103 |
|
104 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
105 |
msgid "Styles"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
109 |
msgid "Feed options"
|
110 |
msgstr "Feed Einstellungen"
|
111 |
|
@@ -231,13 +227,13 @@ msgid ""
|
|
231 |
msgstr ""
|
232 |
"Fügt einen nofollow Link zu Homepage von Contextual Related Posts hinzu."
|
233 |
|
234 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
235 |
-
#: admin/main-view.php:
|
236 |
-
#: admin/main-view.php:
|
237 |
msgid "Save Options"
|
238 |
msgstr "Optionen speichern"
|
239 |
|
240 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
241 |
msgid "Number of related posts to display: "
|
242 |
msgstr "Anzahl der ähnlichen Beiträge, die angezeigt werden sollen:"
|
243 |
|
@@ -307,7 +303,7 @@ msgstr ""
|
|
307 |
"Liste deine Beitrags- oder Seiten-IDs auf, die aus den Ergebnissen "
|
308 |
"ausgeschlossen werden sollen:"
|
309 |
|
310 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
311 |
msgid ""
|
312 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
313 |
msgstr ""
|
@@ -329,11 +325,15 @@ msgstr ""
|
|
329 |
"Autovervollständigung, beginne einfach zu tippen und du bekommst Kategorien "
|
330 |
"vorgeschlagen."
|
331 |
|
332 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
333 |
msgid "Title of related posts:"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin/main-view.php:
|
337 |
msgid ""
|
338 |
"This is the main heading of the related posts. You can also display the "
|
339 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
@@ -343,24 +343,24 @@ msgstr ""
|
|
343 |
"aktuellen Beitragstitel anzeigen lassen mit <code>%postname%</code>. "
|
344 |
"Beispielsweise: <code>Ähnliche Beiträge zu %postname%</code>"
|
345 |
|
346 |
-
#: admin/main-view.php:
|
347 |
msgid "When there are no posts, what should be shown?"
|
348 |
msgstr ""
|
349 |
"Wenn keine ähnlichen Beiträge gefunden wurden, was soll angezeigt werden?"
|
350 |
|
351 |
-
#: admin/main-view.php:
|
352 |
msgid "Blank Output"
|
353 |
msgstr "Gar nichts"
|
354 |
|
355 |
-
#: admin/main-view.php:
|
356 |
msgid "Display:"
|
357 |
msgstr "Zeige an:"
|
358 |
|
359 |
-
#: admin/main-view.php:
|
360 |
msgid "Show post excerpt in list?"
|
361 |
msgstr "Soll ein Auszug in der Liste angezeigt werden?"
|
362 |
|
363 |
-
#: admin/main-view.php:
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -368,81 +368,81 @@ msgid ""
|
|
368 |
"automatic excerpt which refers to the first %d words of the post's content"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: admin/main-view.php:
|
372 |
msgid ""
|
373 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
374 |
"is disabled."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/main-view.php:
|
378 |
msgid "Length of excerpt (in words):"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/main-view.php:
|
382 |
msgid "Show post author in list?"
|
383 |
msgstr "Zeige den Autor des Beitrags an in der Liste?"
|
384 |
|
385 |
-
#: admin/main-view.php:
|
386 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/main-view.php:
|
390 |
msgid ""
|
391 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
392 |
"disabled."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/main-view.php:
|
396 |
msgid "Show post date in list?"
|
397 |
msgstr "Zeige das Datum des Beitrags in der Liste an?"
|
398 |
|
399 |
-
#: admin/main-view.php:
|
400 |
msgid ""
|
401 |
"Displays the date of the post. Uses the same date format set in General "
|
402 |
"Options"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin/main-view.php:
|
406 |
msgid ""
|
407 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
408 |
"disabled."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: admin/main-view.php:
|
412 |
msgid "Limit post title length (in characters)"
|
413 |
msgstr "Begrenze den Titel des Beitrags (in Zeichen)"
|
414 |
|
415 |
-
#: admin/main-view.php:
|
416 |
msgid ""
|
417 |
"Any title longer than the number of characters set above will be cut and "
|
418 |
"appended with an ellipsis (…)"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin/main-view.php:
|
422 |
msgid "Open links in new window"
|
423 |
msgstr "Öffne die Links in einem neuen Fenster"
|
424 |
|
425 |
-
#: admin/main-view.php:
|
426 |
msgid "Add nofollow attribute to links in the list"
|
427 |
msgstr "Füge nofollow zu den Links aus der Liste hinzu"
|
428 |
|
429 |
-
#: admin/main-view.php:
|
430 |
#, fuzzy
|
431 |
msgid "Exclusion settings:"
|
432 |
msgstr "Einstellungen des Plugins"
|
433 |
|
434 |
-
#: admin/main-view.php:
|
435 |
msgid "Exclude display of related posts on these posts / pages"
|
436 |
msgstr ""
|
437 |
"Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
|
438 |
|
439 |
-
#: admin/main-view.php:
|
440 |
#, fuzzy
|
441 |
msgid "Exclude display of related posts on these post types."
|
442 |
msgstr ""
|
443 |
"Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
#, fuzzy
|
447 |
msgid ""
|
448 |
"The related posts will not display on any of the above selected post types"
|
@@ -450,86 +450,86 @@ msgstr ""
|
|
450 |
"Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
|
451 |
"benutzerdefinierter Beitragsarten (custom post types)."
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
msgid "Customize the output:"
|
455 |
msgstr "Passe die Ausgabe an:"
|
456 |
|
457 |
-
#: admin/main-view.php:
|
458 |
msgid "HTML to display before the list of posts: "
|
459 |
msgstr "HTML vor der Liste ähnlicher Beiträge:"
|
460 |
|
461 |
-
#: admin/main-view.php:
|
462 |
msgid "HTML to display before each list item: "
|
463 |
msgstr "HTML-Code vor jedem Listenelement:"
|
464 |
|
465 |
-
#: admin/main-view.php:
|
466 |
msgid "HTML to display after each list item: "
|
467 |
msgstr "HTML-Code nach jedem Listenelement:"
|
468 |
|
469 |
-
#: admin/main-view.php:
|
470 |
msgid "HTML to display after the list of posts: "
|
471 |
msgstr "HTML-Code nach der Liste ähnlicher Beiträge:"
|
472 |
|
473 |
-
#: admin/main-view.php:
|
474 |
msgid "Location of post thumbnail:"
|
475 |
msgstr "Ort der Beitragsvorschaubilder"
|
476 |
|
477 |
-
#: admin/main-view.php:
|
478 |
msgid "Display thumbnails inline with posts, before title"
|
479 |
msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; vor dem Titel"
|
480 |
|
481 |
-
#: admin/main-view.php:
|
482 |
msgid "Display thumbnails inline with posts, after title"
|
483 |
msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; nach dem Titel"
|
484 |
|
485 |
-
#: admin/main-view.php:
|
486 |
msgid "Display only thumbnails, no text"
|
487 |
msgstr "Zeige nur die Vorschaubilder an; keinen Text"
|
488 |
|
489 |
-
#: admin/main-view.php:
|
490 |
msgid "Do not display thumbnails, only text."
|
491 |
msgstr "Zeige keine Vorschaubilder an; nur Text"
|
492 |
|
493 |
-
#: admin/main-view.php:
|
494 |
msgid ""
|
495 |
"This setting cannot be changed because an inbuilt style has been selected "
|
496 |
"under the Styles section. If you would like to change this option, please "
|
497 |
"select <strong>No styles</strong> under the Styles section."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/main-view.php:
|
501 |
msgid "Thumbnail size:"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/main-view.php:
|
505 |
msgid "Custom size"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: admin/main-view.php:
|
509 |
msgid "You can choose from existing image sizes above or create a custom size."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/main-view.php:
|
513 |
msgid ""
|
514 |
"If you choose an existing size, then the width, height and crop mode "
|
515 |
"settings in the three options below will be automatically updated to reflect "
|
516 |
"the correct dimensions of the setting."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/main-view.php:
|
520 |
msgid ""
|
521 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
522 |
"settings below. For best results, use a cropped image with the same width "
|
523 |
"and height. The default setting is 150x150 cropped image."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/main-view.php:
|
527 |
msgid ""
|
528 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
529 |
"images."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/main-view.php:
|
533 |
#, php-format
|
534 |
msgid ""
|
535 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -537,75 +537,75 @@ msgid ""
|
|
537 |
"all image sizes."
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/main-view.php:
|
541 |
msgid "Width of the thumbnail:"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/main-view.php:
|
545 |
msgid "Height of the thumbnail: "
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/main-view.php:
|
549 |
msgid "Crop mode:"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/main-view.php:
|
553 |
msgid ""
|
554 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
555 |
"proportionately/soft crop the thumbnails."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/main-view.php:
|
559 |
#, php-format
|
560 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/main-view.php:
|
564 |
msgid "Image size attributes:"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/main-view.php:
|
568 |
#, fuzzy
|
569 |
msgid "Style attributes are used for width and height."
|
570 |
msgstr ""
|
571 |
"CSS Attribute werden für Breite und Höhe benutzt. <code>style=\"max-width:"
|
572 |
|
573 |
-
#: admin/main-view.php:
|
574 |
#, fuzzy
|
575 |
msgid "HTML width and height attributes are used for width and height."
|
576 |
msgstr "HTML Attribute werden für Breite und Höhe benutzt. <code>width=\""
|
577 |
|
578 |
-
#: admin/main-view.php:
|
579 |
msgid "No HTML or Style attributes set for width and height"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/main-view.php:
|
583 |
#, fuzzy
|
584 |
msgid "Post thumbnail meta field name:"
|
585 |
msgstr "Name des benutzerdefiniertes Feld des Vorschaubildes:"
|
586 |
|
587 |
-
#: admin/main-view.php:
|
588 |
msgid ""
|
589 |
"The value of this field should contain a direct link to the image. This is "
|
590 |
"set in the meta box in the <em>Add New Post</em> screen."
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/main-view.php:
|
594 |
msgid "Extract the first image from the post?"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/main-view.php:
|
598 |
msgid ""
|
599 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
600 |
"specified in the meta field."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: admin/main-view.php:
|
604 |
#, fuzzy
|
605 |
msgid "Use default thumbnail?"
|
606 |
msgstr "Benutze das Standard-Vorschaubild?"
|
607 |
|
608 |
-
#: admin/main-view.php:
|
609 |
msgid ""
|
610 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
611 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -614,35 +614,40 @@ msgstr ""
|
|
614 |
"unterhalb geladen. Wenn es nicht ausgewählt ist und kein Vorschaubild "
|
615 |
"gefunden wird, wird kein Vorschaubild angezeigt."
|
616 |
|
617 |
-
#: admin/main-view.php:
|
618 |
#, fuzzy
|
619 |
msgid "Default thumbnail:"
|
620 |
msgstr "Standard-Vorschaubild: "
|
621 |
|
622 |
-
#: admin/main-view.php:
|
|
|
623 |
msgid ""
|
624 |
-
"
|
625 |
-
"
|
626 |
-
"
|
627 |
msgstr ""
|
|
|
|
|
|
|
|
|
628 |
|
629 |
-
#: admin/main-view.php:
|
630 |
msgid "Style of the related posts:"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: admin/main-view.php:
|
634 |
msgid "No styles"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/main-view.php:
|
638 |
msgid "Select this option if you plan to add your own styles"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/main-view.php:
|
642 |
msgid "Rounded Thumbnails"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/main-view.php:
|
646 |
msgid ""
|
647 |
"Enabling this option will turn on the thumbnails and set their width and "
|
648 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -650,27 +655,27 @@ msgid ""
|
|
650 |
"settings."
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: admin/main-view.php:
|
654 |
#, php-format
|
655 |
msgid ""
|
656 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/main-view.php:
|
660 |
msgid "Text only"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: admin/main-view.php:
|
664 |
msgid ""
|
665 |
"Enabling this option will disable thumbnails and no longer include the "
|
666 |
"default style sheet included in the plugin."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: admin/main-view.php:
|
670 |
msgid "Custom CSS to add to header:"
|
671 |
msgstr "Eigenes CSS, das im Header-Bereich hinzugefügt werden soll:"
|
672 |
|
673 |
-
#: admin/main-view.php:
|
674 |
msgid ""
|
675 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
676 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
@@ -680,7 +685,7 @@ msgstr ""
|
|
680 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
681 |
"\">FAQ</a> (en) für benutzbare CSS Klassen an."
|
682 |
|
683 |
-
#: admin/main-view.php:
|
684 |
msgid ""
|
685 |
"Below options override the related posts settings for your blog feed. These "
|
686 |
"only apply if you have selected to add related posts to Feeds in the General "
|
@@ -691,31 +696,31 @@ msgstr ""
|
|
691 |
"allgemeinen Einstellungen ausgewählt hast, dass ähnliche Beiträge auch in "
|
692 |
"den Feeds angezeigt werden sollen. "
|
693 |
|
694 |
-
#: admin/main-view.php:
|
695 |
msgid "Maximum width of the thumbnail: "
|
696 |
msgstr "Maximale Breite der Vorschaubilder:"
|
697 |
|
698 |
-
#: admin/main-view.php:
|
699 |
msgid "Maximum height of the thumbnail: "
|
700 |
msgstr "Maximale Höhe der Vorschaubilder:"
|
701 |
|
702 |
-
#: admin/main-view.php:
|
703 |
msgid "Default Options"
|
704 |
msgstr "Standardoptionen"
|
705 |
|
706 |
-
#: admin/main-view.php:
|
707 |
msgid "Do you want to set options to Default?"
|
708 |
msgstr "Möchtest du Einstellungen zurücksetzen?"
|
709 |
|
710 |
-
#: admin/main-view.php:
|
711 |
msgid "Recreate Index"
|
712 |
msgstr "Erstelle den Index neu"
|
713 |
|
714 |
-
#: admin/main-view.php:
|
715 |
msgid "Are you sure you want to recreate the index?"
|
716 |
msgstr "Bist du sicher, den Index neu zu erstellen?"
|
717 |
|
718 |
-
#: admin/main-view.php:
|
719 |
msgid ""
|
720 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
721 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -805,8 +810,8 @@ msgid "Quick links"
|
|
805 |
msgstr "Quick Links"
|
806 |
|
807 |
#: admin/sidebar-view.php:57
|
808 |
-
msgid "
|
809 |
-
msgstr "
|
810 |
|
811 |
#: admin/sidebar-view.php:58
|
812 |
msgid "FAQ"
|
@@ -914,6 +919,12 @@ msgstr ""
|
|
914 |
msgid " by "
|
915 |
msgstr "von"
|
916 |
|
|
|
|
|
|
|
|
|
|
|
|
|
917 |
#~ msgid "Options saved successfully."
|
918 |
#~ msgstr "Optionen erfolgreich gespeichert."
|
919 |
|
@@ -958,17 +969,6 @@ msgstr "von"
|
|
958 |
#~ "Der Wert dieses Feldes sollte die Bildquelle enthalten. Sie wird unter "
|
959 |
#~ "<em>Neuen Beitrag erstellen</em> gesetzt"
|
960 |
|
961 |
-
#, fuzzy
|
962 |
-
#~ msgid ""
|
963 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
964 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
965 |
-
#~ "it will show the default image as specified above."
|
966 |
-
#~ msgstr ""
|
967 |
-
#~ "Das Plugin wird zuerst prüfen, ob der Beitrag ein Vorschaubild hat. Dann "
|
968 |
-
#~ "wird es die benutzerdefinierten Felder überprüfen. Wenn auch hier keines "
|
969 |
-
#~ "eingetragen ist, wird das Standard-Vorschaubild benutzt, das oben "
|
970 |
-
#~ "definiert wurde"
|
971 |
-
|
972 |
#~ msgid ""
|
973 |
#~ "This sets the cutoff period for which posts will be displayed. e.g. "
|
974 |
#~ "setting it to 365 will show related posts from the last year only."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: me@ajaydsouza.com\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin/admin.php:190
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin/admin.php:193
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin/admin.php:196
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/admin.php:199
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/admin.php:223
|
40 |
msgid "Options set to Default."
|
41 |
msgstr "Optionen auf die Voreinstellungen gesetzt."
|
42 |
|
43 |
+
#: admin/admin.php:232
|
44 |
msgid "Index recreated"
|
45 |
msgstr "Index neu aufgebaut"
|
46 |
|
47 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
48 |
msgid "Related Posts"
|
49 |
msgstr "Ähnliche Beiträge"
|
50 |
|
88 |
msgid "List tuning options"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
92 |
msgid "Output options"
|
93 |
msgstr "Ausgabe Einstellungen"
|
94 |
|
95 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
96 |
#: includes/class-crp-widget.php:93
|
97 |
msgid "Thumbnail options"
|
98 |
msgstr "Optionen des Vorschaubildes"
|
99 |
|
100 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
101 |
msgid "Styles"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
105 |
msgid "Feed options"
|
106 |
msgstr "Feed Einstellungen"
|
107 |
|
227 |
msgstr ""
|
228 |
"Fügt einen nofollow Link zu Homepage von Contextual Related Posts hinzu."
|
229 |
|
230 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
231 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
232 |
+
#: admin/main-view.php:755
|
233 |
msgid "Save Options"
|
234 |
msgstr "Optionen speichern"
|
235 |
|
236 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
237 |
msgid "Number of related posts to display: "
|
238 |
msgstr "Anzahl der ähnlichen Beiträge, die angezeigt werden sollen:"
|
239 |
|
303 |
"Liste deine Beitrags- oder Seiten-IDs auf, die aus den Ergebnissen "
|
304 |
"ausgeschlossen werden sollen:"
|
305 |
|
306 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
307 |
msgid ""
|
308 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
309 |
msgstr ""
|
325 |
"Autovervollständigung, beginne einfach zu tippen und du bekommst Kategorien "
|
326 |
"vorgeschlagen."
|
327 |
|
328 |
+
#: admin/main-view.php:214
|
329 |
+
msgid "Excluded category IDs are:"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: admin/main-view.php:255
|
333 |
msgid "Title of related posts:"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin/main-view.php:258
|
337 |
msgid ""
|
338 |
"This is the main heading of the related posts. You can also display the "
|
339 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
343 |
"aktuellen Beitragstitel anzeigen lassen mit <code>%postname%</code>. "
|
344 |
"Beispielsweise: <code>Ähnliche Beiträge zu %postname%</code>"
|
345 |
|
346 |
+
#: admin/main-view.php:262
|
347 |
msgid "When there are no posts, what should be shown?"
|
348 |
msgstr ""
|
349 |
"Wenn keine ähnlichen Beiträge gefunden wurden, was soll angezeigt werden?"
|
350 |
|
351 |
+
#: admin/main-view.php:266
|
352 |
msgid "Blank Output"
|
353 |
msgstr "Gar nichts"
|
354 |
|
355 |
+
#: admin/main-view.php:271
|
356 |
msgid "Display:"
|
357 |
msgstr "Zeige an:"
|
358 |
|
359 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
360 |
msgid "Show post excerpt in list?"
|
361 |
msgstr "Soll ein Auszug in der Liste angezeigt werden?"
|
362 |
|
363 |
+
#: admin/main-view.php:280
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
368 |
"automatic excerpt which refers to the first %d words of the post's content"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/main-view.php:283
|
372 |
msgid ""
|
373 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
374 |
"is disabled."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin/main-view.php:288
|
378 |
msgid "Length of excerpt (in words):"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/main-view.php:294
|
382 |
msgid "Show post author in list?"
|
383 |
msgstr "Zeige den Autor des Beitrags an in der Liste?"
|
384 |
|
385 |
+
#: admin/main-view.php:297
|
386 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin/main-view.php:300
|
390 |
msgid ""
|
391 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
392 |
"disabled."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/main-view.php:305
|
396 |
msgid "Show post date in list?"
|
397 |
msgstr "Zeige das Datum des Beitrags in der Liste an?"
|
398 |
|
399 |
+
#: admin/main-view.php:308
|
400 |
msgid ""
|
401 |
"Displays the date of the post. Uses the same date format set in General "
|
402 |
"Options"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/main-view.php:311
|
406 |
msgid ""
|
407 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
408 |
"disabled."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin/main-view.php:316
|
412 |
msgid "Limit post title length (in characters)"
|
413 |
msgstr "Begrenze den Titel des Beitrags (in Zeichen)"
|
414 |
|
415 |
+
#: admin/main-view.php:319
|
416 |
msgid ""
|
417 |
"Any title longer than the number of characters set above will be cut and "
|
418 |
"appended with an ellipsis (…)"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin/main-view.php:323
|
422 |
msgid "Open links in new window"
|
423 |
msgstr "Öffne die Links in einem neuen Fenster"
|
424 |
|
425 |
+
#: admin/main-view.php:329
|
426 |
msgid "Add nofollow attribute to links in the list"
|
427 |
msgstr "Füge nofollow zu den Links aus der Liste hinzu"
|
428 |
|
429 |
+
#: admin/main-view.php:362
|
430 |
#, fuzzy
|
431 |
msgid "Exclusion settings:"
|
432 |
msgstr "Einstellungen des Plugins"
|
433 |
|
434 |
+
#: admin/main-view.php:364
|
435 |
msgid "Exclude display of related posts on these posts / pages"
|
436 |
msgstr ""
|
437 |
"Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
|
438 |
|
439 |
+
#: admin/main-view.php:370
|
440 |
#, fuzzy
|
441 |
msgid "Exclude display of related posts on these post types."
|
442 |
msgstr ""
|
443 |
"Schließe auf diesen Beiträgen / Seiten die Anzeige der ähnliche Beiträge aus"
|
444 |
|
445 |
+
#: admin/main-view.php:377
|
446 |
#, fuzzy
|
447 |
msgid ""
|
448 |
"The related posts will not display on any of the above selected post types"
|
450 |
"Diese Beitragsarten werden in der Liste angezeigt. Einschließlich "
|
451 |
"benutzerdefinierter Beitragsarten (custom post types)."
|
452 |
|
453 |
+
#: admin/main-view.php:407
|
454 |
msgid "Customize the output:"
|
455 |
msgstr "Passe die Ausgabe an:"
|
456 |
|
457 |
+
#: admin/main-view.php:409
|
458 |
msgid "HTML to display before the list of posts: "
|
459 |
msgstr "HTML vor der Liste ähnlicher Beiträge:"
|
460 |
|
461 |
+
#: admin/main-view.php:412
|
462 |
msgid "HTML to display before each list item: "
|
463 |
msgstr "HTML-Code vor jedem Listenelement:"
|
464 |
|
465 |
+
#: admin/main-view.php:415
|
466 |
msgid "HTML to display after each list item: "
|
467 |
msgstr "HTML-Code nach jedem Listenelement:"
|
468 |
|
469 |
+
#: admin/main-view.php:418
|
470 |
msgid "HTML to display after the list of posts: "
|
471 |
msgstr "HTML-Code nach der Liste ähnlicher Beiträge:"
|
472 |
|
473 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
474 |
msgid "Location of post thumbnail:"
|
475 |
msgstr "Ort der Beitragsvorschaubilder"
|
476 |
|
477 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
478 |
msgid "Display thumbnails inline with posts, before title"
|
479 |
msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; vor dem Titel"
|
480 |
|
481 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
482 |
msgid "Display thumbnails inline with posts, after title"
|
483 |
msgstr "Zeige die Vorschaubilder inline mit den Beiträgen an; nach dem Titel"
|
484 |
|
485 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
486 |
msgid "Display only thumbnails, no text"
|
487 |
msgstr "Zeige nur die Vorschaubilder an; keinen Text"
|
488 |
|
489 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
490 |
msgid "Do not display thumbnails, only text."
|
491 |
msgstr "Zeige keine Vorschaubilder an; nur Text"
|
492 |
|
493 |
+
#: admin/main-view.php:478
|
494 |
msgid ""
|
495 |
"This setting cannot be changed because an inbuilt style has been selected "
|
496 |
"under the Styles section. If you would like to change this option, please "
|
497 |
"select <strong>No styles</strong> under the Styles section."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/main-view.php:482
|
501 |
msgid "Thumbnail size:"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/main-view.php:506
|
505 |
msgid "Custom size"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/main-view.php:509
|
509 |
msgid "You can choose from existing image sizes above or create a custom size."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/main-view.php:510
|
513 |
msgid ""
|
514 |
"If you choose an existing size, then the width, height and crop mode "
|
515 |
"settings in the three options below will be automatically updated to reflect "
|
516 |
"the correct dimensions of the setting."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/main-view.php:511
|
520 |
msgid ""
|
521 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
522 |
"settings below. For best results, use a cropped image with the same width "
|
523 |
"and height. The default setting is 150x150 cropped image."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/main-view.php:512
|
527 |
msgid ""
|
528 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
529 |
"images."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/main-view.php:513
|
533 |
#, php-format
|
534 |
msgid ""
|
535 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
537 |
"all image sizes."
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/main-view.php:517
|
541 |
msgid "Width of the thumbnail:"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/main-view.php:520
|
545 |
msgid "Height of the thumbnail: "
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/main-view.php:525
|
549 |
msgid "Crop mode:"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/main-view.php:529
|
553 |
msgid ""
|
554 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
555 |
"proportionately/soft crop the thumbnails."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/main-view.php:530
|
559 |
#, php-format
|
560 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/main-view.php:534
|
564 |
msgid "Image size attributes:"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin/main-view.php:538
|
568 |
#, fuzzy
|
569 |
msgid "Style attributes are used for width and height."
|
570 |
msgstr ""
|
571 |
"CSS Attribute werden für Breite und Höhe benutzt. <code>style=\"max-width:"
|
572 |
|
573 |
+
#: admin/main-view.php:543
|
574 |
#, fuzzy
|
575 |
msgid "HTML width and height attributes are used for width and height."
|
576 |
msgstr "HTML Attribute werden für Breite und Höhe benutzt. <code>width=\""
|
577 |
|
578 |
+
#: admin/main-view.php:548
|
579 |
msgid "No HTML or Style attributes set for width and height"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/main-view.php:553
|
583 |
#, fuzzy
|
584 |
msgid "Post thumbnail meta field name:"
|
585 |
msgstr "Name des benutzerdefiniertes Feld des Vorschaubildes:"
|
586 |
|
587 |
+
#: admin/main-view.php:555
|
588 |
msgid ""
|
589 |
"The value of this field should contain a direct link to the image. This is "
|
590 |
"set in the meta box in the <em>Add New Post</em> screen."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/main-view.php:558
|
594 |
msgid "Extract the first image from the post?"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: admin/main-view.php:560
|
598 |
msgid ""
|
599 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
600 |
"specified in the meta field."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/main-view.php:563
|
604 |
#, fuzzy
|
605 |
msgid "Use default thumbnail?"
|
606 |
msgstr "Benutze das Standard-Vorschaubild?"
|
607 |
|
608 |
+
#: admin/main-view.php:565
|
609 |
msgid ""
|
610 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
611 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
614 |
"unterhalb geladen. Wenn es nicht ausgewählt ist und kein Vorschaubild "
|
615 |
"gefunden wird, wird kein Vorschaubild angezeigt."
|
616 |
|
617 |
+
#: admin/main-view.php:568
|
618 |
#, fuzzy
|
619 |
msgid "Default thumbnail:"
|
620 |
msgstr "Standard-Vorschaubild: "
|
621 |
|
622 |
+
#: admin/main-view.php:571
|
623 |
+
#, fuzzy
|
624 |
msgid ""
|
625 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
626 |
+
"then it will check the meta field. If this is not available, then it will "
|
627 |
+
"show the default image as specified above."
|
628 |
msgstr ""
|
629 |
+
"Das Plugin wird zuerst prüfen, ob der Beitrag ein Vorschaubild hat. Dann "
|
630 |
+
"wird es die benutzerdefinierten Felder überprüfen. Wenn auch hier keines "
|
631 |
+
"eingetragen ist, wird das Standard-Vorschaubild benutzt, das oben definiert "
|
632 |
+
"wurde"
|
633 |
|
634 |
+
#: admin/main-view.php:612
|
635 |
msgid "Style of the related posts:"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/main-view.php:615
|
639 |
msgid "No styles"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: admin/main-view.php:617
|
643 |
msgid "Select this option if you plan to add your own styles"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/main-view.php:621
|
647 |
msgid "Rounded Thumbnails"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: admin/main-view.php:624
|
651 |
msgid ""
|
652 |
"Enabling this option will turn on the thumbnails and set their width and "
|
653 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
655 |
"settings."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: admin/main-view.php:625
|
659 |
#, php-format
|
660 |
msgid ""
|
661 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: admin/main-view.php:629
|
665 |
msgid "Text only"
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: admin/main-view.php:631
|
669 |
msgid ""
|
670 |
"Enabling this option will disable thumbnails and no longer include the "
|
671 |
"default style sheet included in the plugin."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: admin/main-view.php:646
|
675 |
msgid "Custom CSS to add to header:"
|
676 |
msgstr "Eigenes CSS, das im Header-Bereich hinzugefügt werden soll:"
|
677 |
|
678 |
+
#: admin/main-view.php:650
|
679 |
msgid ""
|
680 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
681 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
685 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
686 |
"\">FAQ</a> (en) für benutzbare CSS Klassen an."
|
687 |
|
688 |
+
#: admin/main-view.php:690
|
689 |
msgid ""
|
690 |
"Below options override the related posts settings for your blog feed. These "
|
691 |
"only apply if you have selected to add related posts to Feeds in the General "
|
696 |
"allgemeinen Einstellungen ausgewählt hast, dass ähnliche Beiträge auch in "
|
697 |
"den Feeds angezeigt werden sollen. "
|
698 |
|
699 |
+
#: admin/main-view.php:718
|
700 |
msgid "Maximum width of the thumbnail: "
|
701 |
msgstr "Maximale Breite der Vorschaubilder:"
|
702 |
|
703 |
+
#: admin/main-view.php:721
|
704 |
msgid "Maximum height of the thumbnail: "
|
705 |
msgstr "Maximale Höhe der Vorschaubilder:"
|
706 |
|
707 |
+
#: admin/main-view.php:756
|
708 |
msgid "Default Options"
|
709 |
msgstr "Standardoptionen"
|
710 |
|
711 |
+
#: admin/main-view.php:756
|
712 |
msgid "Do you want to set options to Default?"
|
713 |
msgstr "Möchtest du Einstellungen zurücksetzen?"
|
714 |
|
715 |
+
#: admin/main-view.php:757
|
716 |
msgid "Recreate Index"
|
717 |
msgstr "Erstelle den Index neu"
|
718 |
|
719 |
+
#: admin/main-view.php:757
|
720 |
msgid "Are you sure you want to recreate the index?"
|
721 |
msgstr "Bist du sicher, den Index neu zu erstellen?"
|
722 |
|
723 |
+
#: admin/main-view.php:762
|
724 |
msgid ""
|
725 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
726 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
810 |
msgstr "Quick Links"
|
811 |
|
812 |
#: admin/sidebar-view.php:57
|
813 |
+
msgid "Plugin homepage"
|
814 |
+
msgstr ""
|
815 |
|
816 |
#: admin/sidebar-view.php:58
|
817 |
msgid "FAQ"
|
919 |
msgid " by "
|
920 |
msgstr "von"
|
921 |
|
922 |
+
#~ msgid "Contextual Related Posts"
|
923 |
+
#~ msgstr "Contextual Related Posts"
|
924 |
+
|
925 |
+
#~ msgid "Contextual Related Posts plugin page"
|
926 |
+
#~ msgstr "Contextual Related Posts Pluginseite"
|
927 |
+
|
928 |
#~ msgid "Options saved successfully."
|
929 |
#~ msgstr "Optionen erfolgreich gespeichert."
|
930 |
|
969 |
#~ "Der Wert dieses Feldes sollte die Bildquelle enthalten. Sie wird unter "
|
970 |
#~ "<em>Neuen Beitrag erstellen</em> gesetzt"
|
971 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
972 |
#~ msgid ""
|
973 |
#~ "This sets the cutoff period for which posts will be displayed. e.g. "
|
974 |
#~ "setting it to 365 will show related posts from the last year only."
|
languages/crp-el_GR.mo
CHANGED
Binary file
|
languages/crp-el_GR.po
CHANGED
@@ -5,8 +5,8 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Contextual Related Posts\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-09-
|
9 |
-
"PO-Revision-Date: 2015-09-
|
10 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
11 |
"Language-Team: Greek (http://www.transifex.com/projects/p/contextual-related-"
|
12 |
"posts/language/el/)\n"
|
@@ -21,38 +21,34 @@ msgstr ""
|
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin/admin.php:
|
29 |
msgid ""
|
30 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
31 |
"displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
#, php-format
|
40 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Options set to Default."
|
45 |
msgstr "Οι επιλογές ορίστηκαν ως Προεπιλογή."
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
msgid "Index recreated"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: admin/admin.php:
|
52 |
-
msgid "Contextual Related Posts"
|
53 |
-
msgstr "Άρθρα Σχετικά με το Περιεχόμενο"
|
54 |
-
|
55 |
-
#: admin/admin.php:249
|
56 |
msgid "Related Posts"
|
57 |
msgstr "Σχετικά Άρθρα"
|
58 |
|
@@ -96,20 +92,20 @@ msgstr "Γενικές επιλογές"
|
|
96 |
msgid "List tuning options"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
100 |
msgid "Output options"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
104 |
#: includes/class-crp-widget.php:93
|
105 |
msgid "Thumbnail options"
|
106 |
msgstr "Επιλογές μικρογραφιών"
|
107 |
|
108 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
109 |
msgid "Styles"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
113 |
msgid "Feed options"
|
114 |
msgstr "Επιλογές καναλιού"
|
115 |
|
@@ -228,13 +224,13 @@ msgid ""
|
|
228 |
"in the list."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
232 |
-
#: admin/main-view.php:
|
233 |
-
#: admin/main-view.php:
|
234 |
msgid "Save Options"
|
235 |
msgstr "Αποθήκευση επιλογών"
|
236 |
|
237 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
238 |
msgid "Number of related posts to display: "
|
239 |
msgstr "Αριθμός σχετικών άρθρων για προβολή:"
|
240 |
|
@@ -298,7 +294,7 @@ msgstr ""
|
|
298 |
msgid "List of post or page IDs to exclude from the results:"
|
299 |
msgstr "Κατάλογος ID άρθρων ή σελίδων για να αποκλείσετε από τα αποτελέσματα:"
|
300 |
|
301 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
302 |
msgid ""
|
303 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
304 |
msgstr ""
|
@@ -316,34 +312,38 @@ msgid ""
|
|
316 |
"prompt you with options."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
320 |
msgid "Title of related posts:"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: admin/main-view.php:
|
324 |
msgid ""
|
325 |
"This is the main heading of the related posts. You can also display the "
|
326 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
327 |
"Posts to %postname%</code>"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/main-view.php:
|
331 |
msgid "When there are no posts, what should be shown?"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: admin/main-view.php:
|
335 |
msgid "Blank Output"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin/main-view.php:
|
339 |
msgid "Display:"
|
340 |
msgstr "Προβολή:"
|
341 |
|
342 |
-
#: admin/main-view.php:
|
343 |
msgid "Show post excerpt in list?"
|
344 |
msgstr "Προβολή αποσπασμάτων άρθρων σε κατάλογο;"
|
345 |
|
346 |
-
#: admin/main-view.php:
|
347 |
#, php-format
|
348 |
msgid ""
|
349 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -351,35 +351,35 @@ msgid ""
|
|
351 |
"automatic excerpt which refers to the first %d words of the post's content"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/main-view.php:
|
355 |
msgid ""
|
356 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
357 |
"is disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/main-view.php:
|
361 |
msgid "Length of excerpt (in words):"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/main-view.php:
|
365 |
msgid "Show post author in list?"
|
366 |
msgstr "Προβολή συντάκτη άρθρου σε κατάλογο;"
|
367 |
|
368 |
-
#: admin/main-view.php:
|
369 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/main-view.php:
|
373 |
msgid ""
|
374 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
375 |
"disabled."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: admin/main-view.php:
|
379 |
msgid "Show post date in list?"
|
380 |
msgstr "Προβολή ημερομηνίας άρθρου σε κατάλογο;"
|
381 |
|
382 |
-
#: admin/main-view.php:
|
383 |
msgid ""
|
384 |
"Displays the date of the post. Uses the same date format set in General "
|
385 |
"Options"
|
@@ -387,129 +387,129 @@ msgstr ""
|
|
387 |
"Προβάλλει την ημερομηνία του άρθρου. Χρησιμοποιεί την ίδια μορφοποίηση "
|
388 |
"ημερομηνίας που ορίστηκε στις Γενικές Επιλογές"
|
389 |
|
390 |
-
#: admin/main-view.php:
|
391 |
msgid ""
|
392 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
393 |
"disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid "Limit post title length (in characters)"
|
398 |
msgstr "Όριο μήκους τίτλου άρθρου (σε χαρακτήρες)"
|
399 |
|
400 |
-
#: admin/main-view.php:
|
401 |
msgid ""
|
402 |
"Any title longer than the number of characters set above will be cut and "
|
403 |
"appended with an ellipsis (…)"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/main-view.php:
|
407 |
msgid "Open links in new window"
|
408 |
msgstr "Άνοιγμα συνδέσμων σε νέο παράθυρο"
|
409 |
|
410 |
-
#: admin/main-view.php:
|
411 |
msgid "Add nofollow attribute to links in the list"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
msgid "Exclusion settings:"
|
416 |
msgstr "Ρυθμίσεις αποκλεισμού:"
|
417 |
|
418 |
-
#: admin/main-view.php:
|
419 |
msgid "Exclude display of related posts on these posts / pages"
|
420 |
msgstr "Αποκλεισμός προβολής σχετικών άρθρων σε αυτά τα άρθρα / σελίδες"
|
421 |
|
422 |
-
#: admin/main-view.php:
|
423 |
msgid "Exclude display of related posts on these post types."
|
424 |
msgstr "Αποκλεισμός προβολής σχετικών άρθρων σε αυτούς τους τύπους άρθρων."
|
425 |
|
426 |
-
#: admin/main-view.php:
|
427 |
msgid ""
|
428 |
"The related posts will not display on any of the above selected post types"
|
429 |
msgstr ""
|
430 |
"Τα σχετικά άρθρα δε θα προβάλλονται σε κανέναν από τους παραπάνω "
|
431 |
"επιλεγμένους τύπους άρθρων"
|
432 |
|
433 |
-
#: admin/main-view.php:
|
434 |
msgid "Customize the output:"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/main-view.php:
|
438 |
msgid "HTML to display before the list of posts: "
|
439 |
msgstr "HTML για προβολή πριν τον κατάλογο άρθρων:"
|
440 |
|
441 |
-
#: admin/main-view.php:
|
442 |
msgid "HTML to display before each list item: "
|
443 |
msgstr "HTML για προβολή πριν από κάθε στοιχείο καταλόγου:"
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
msgid "HTML to display after each list item: "
|
447 |
msgstr "HTML για προβολή μετά από κάθε στοιχείο καταλόγου:"
|
448 |
|
449 |
-
#: admin/main-view.php:
|
450 |
msgid "HTML to display after the list of posts: "
|
451 |
msgstr "HTML για προβολή μετά τον κατάλογο άρθρων:"
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
msgid "Location of post thumbnail:"
|
455 |
msgstr "Τοποθεσία μικρογραφίας άρθρου:"
|
456 |
|
457 |
-
#: admin/main-view.php:
|
458 |
msgid "Display thumbnails inline with posts, before title"
|
459 |
msgstr "Προβολή μικρογραφιών σε σειρά με τα άρθρα, πριν τον τίτλο"
|
460 |
|
461 |
-
#: admin/main-view.php:
|
462 |
msgid "Display thumbnails inline with posts, after title"
|
463 |
msgstr "Προβολή μικρογραφιών σε σειρά με τα άρθρα, μετά τον τίτλο"
|
464 |
|
465 |
-
#: admin/main-view.php:
|
466 |
msgid "Display only thumbnails, no text"
|
467 |
msgstr "Προβολή μόνο μικρογραφιών, όχι κείμενο"
|
468 |
|
469 |
-
#: admin/main-view.php:
|
470 |
msgid "Do not display thumbnails, only text."
|
471 |
msgstr "Όχι προβολή μικρογραφιών, μόνο κείμενο."
|
472 |
|
473 |
-
#: admin/main-view.php:
|
474 |
msgid ""
|
475 |
"This setting cannot be changed because an inbuilt style has been selected "
|
476 |
"under the Styles section. If you would like to change this option, please "
|
477 |
"select <strong>No styles</strong> under the Styles section."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/main-view.php:
|
481 |
msgid "Thumbnail size:"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: admin/main-view.php:
|
485 |
msgid "Custom size"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/main-view.php:
|
489 |
msgid "You can choose from existing image sizes above or create a custom size."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/main-view.php:
|
493 |
msgid ""
|
494 |
"If you choose an existing size, then the width, height and crop mode "
|
495 |
"settings in the three options below will be automatically updated to reflect "
|
496 |
"the correct dimensions of the setting."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/main-view.php:
|
500 |
msgid ""
|
501 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
502 |
"settings below. For best results, use a cropped image with the same width "
|
503 |
"and height. The default setting is 150x150 cropped image."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/main-view.php:
|
507 |
msgid ""
|
508 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
509 |
"images."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/main-view.php:
|
513 |
#, php-format
|
514 |
msgid ""
|
515 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -517,103 +517,103 @@ msgid ""
|
|
517 |
"all image sizes."
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: admin/main-view.php:
|
521 |
msgid "Width of the thumbnail:"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/main-view.php:
|
525 |
msgid "Height of the thumbnail: "
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/main-view.php:
|
529 |
msgid "Crop mode:"
|
530 |
msgstr "Περικοπή:"
|
531 |
|
532 |
-
#: admin/main-view.php:
|
533 |
msgid ""
|
534 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
535 |
"proportionately/soft crop the thumbnails."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/main-view.php:
|
539 |
#, php-format
|
540 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/main-view.php:
|
544 |
msgid "Image size attributes:"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/main-view.php:
|
548 |
msgid "Style attributes are used for width and height."
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/main-view.php:
|
552 |
msgid "HTML width and height attributes are used for width and height."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/main-view.php:
|
556 |
msgid "No HTML or Style attributes set for width and height"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/main-view.php:
|
560 |
msgid "Post thumbnail meta field name:"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/main-view.php:
|
564 |
msgid ""
|
565 |
"The value of this field should contain a direct link to the image. This is "
|
566 |
"set in the meta box in the <em>Add New Post</em> screen."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: admin/main-view.php:
|
570 |
msgid "Extract the first image from the post?"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: admin/main-view.php:
|
574 |
msgid ""
|
575 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
576 |
"specified in the meta field."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/main-view.php:
|
580 |
msgid "Use default thumbnail?"
|
581 |
msgstr "Χρήση προεπιλεγμένης μικρογραφίας;"
|
582 |
|
583 |
-
#: admin/main-view.php:
|
584 |
msgid ""
|
585 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
586 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/main-view.php:
|
590 |
msgid "Default thumbnail:"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/main-view.php:
|
594 |
msgid ""
|
595 |
-
"
|
596 |
-
"
|
597 |
-
"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/main-view.php:
|
601 |
msgid "Style of the related posts:"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/main-view.php:
|
605 |
msgid "No styles"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: admin/main-view.php:
|
609 |
msgid "Select this option if you plan to add your own styles"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: admin/main-view.php:
|
613 |
msgid "Rounded Thumbnails"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: admin/main-view.php:
|
617 |
msgid ""
|
618 |
"Enabling this option will turn on the thumbnails and set their width and "
|
619 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -621,65 +621,65 @@ msgid ""
|
|
621 |
"settings."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/main-view.php:
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/main-view.php:
|
631 |
msgid "Text only"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/main-view.php:
|
635 |
msgid ""
|
636 |
"Enabling this option will disable thumbnails and no longer include the "
|
637 |
"default style sheet included in the plugin."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
msgid "Custom CSS to add to header:"
|
642 |
msgstr "Σύνδεσμος CSS για προσθήκη στην επικεφαλίδα:"
|
643 |
|
644 |
-
#: admin/main-view.php:
|
645 |
msgid ""
|
646 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
647 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
648 |
"\">FAQ</a> for available CSS classes to style."
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/main-view.php:
|
652 |
msgid ""
|
653 |
"Below options override the related posts settings for your blog feed. These "
|
654 |
"only apply if you have selected to add related posts to Feeds in the General "
|
655 |
"Options tab."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/main-view.php:
|
659 |
msgid "Maximum width of the thumbnail: "
|
660 |
msgstr "Μέγιστο πλάτος της μικρογραφίας:"
|
661 |
|
662 |
-
#: admin/main-view.php:
|
663 |
msgid "Maximum height of the thumbnail: "
|
664 |
msgstr "Μέγιστο ύψος της μικρογραφίας:"
|
665 |
|
666 |
-
#: admin/main-view.php:
|
667 |
msgid "Default Options"
|
668 |
msgstr "Προεπιλεγμένες Επιλογές "
|
669 |
|
670 |
-
#: admin/main-view.php:
|
671 |
msgid "Do you want to set options to Default?"
|
672 |
msgstr "Θέλετε να ορίσετε τις επιλογές ως Προεπιλογές;"
|
673 |
|
674 |
-
#: admin/main-view.php:
|
675 |
msgid "Recreate Index"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: admin/main-view.php:
|
679 |
msgid "Are you sure you want to recreate the index?"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: admin/main-view.php:
|
683 |
msgid ""
|
684 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
685 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -765,7 +765,7 @@ msgid "Quick links"
|
|
765 |
msgstr ""
|
766 |
|
767 |
#: admin/sidebar-view.php:57
|
768 |
-
msgid "
|
769 |
msgstr ""
|
770 |
|
771 |
#: admin/sidebar-view.php:58
|
@@ -873,6 +873,9 @@ msgstr ""
|
|
873 |
msgid " by "
|
874 |
msgstr ""
|
875 |
|
|
|
|
|
|
|
876 |
#~ msgid "Options saved successfully."
|
877 |
#~ msgstr "Οι επιλογές αποθηκεύτηκαν επιτυχώς."
|
878 |
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Contextual Related Posts\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
9 |
+
"PO-Revision-Date: 2015-09-05 11:13+0100\n"
|
10 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
11 |
"Language-Team: Greek (http://www.transifex.com/projects/p/contextual-related-"
|
12 |
"posts/language/el/)\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: .\n"
|
23 |
|
24 |
+
#: admin/admin.php:190
|
25 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: admin/admin.php:193
|
29 |
msgid ""
|
30 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
31 |
"displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/admin.php:196
|
35 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:199
|
39 |
#, php-format
|
40 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: admin/admin.php:223
|
44 |
msgid "Options set to Default."
|
45 |
msgstr "Οι επιλογές ορίστηκαν ως Προεπιλογή."
|
46 |
|
47 |
+
#: admin/admin.php:232
|
48 |
msgid "Index recreated"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
52 |
msgid "Related Posts"
|
53 |
msgstr "Σχετικά Άρθρα"
|
54 |
|
92 |
msgid "List tuning options"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
96 |
msgid "Output options"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
100 |
#: includes/class-crp-widget.php:93
|
101 |
msgid "Thumbnail options"
|
102 |
msgstr "Επιλογές μικρογραφιών"
|
103 |
|
104 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
105 |
msgid "Styles"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
109 |
msgid "Feed options"
|
110 |
msgstr "Επιλογές καναλιού"
|
111 |
|
224 |
"in the list."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
228 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
229 |
+
#: admin/main-view.php:755
|
230 |
msgid "Save Options"
|
231 |
msgstr "Αποθήκευση επιλογών"
|
232 |
|
233 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
234 |
msgid "Number of related posts to display: "
|
235 |
msgstr "Αριθμός σχετικών άρθρων για προβολή:"
|
236 |
|
294 |
msgid "List of post or page IDs to exclude from the results:"
|
295 |
msgstr "Κατάλογος ID άρθρων ή σελίδων για να αποκλείσετε από τα αποτελέσματα:"
|
296 |
|
297 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
298 |
msgid ""
|
299 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
300 |
msgstr ""
|
312 |
"prompt you with options."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/main-view.php:214
|
316 |
+
msgid "Excluded category IDs are:"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: admin/main-view.php:255
|
320 |
msgid "Title of related posts:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin/main-view.php:258
|
324 |
msgid ""
|
325 |
"This is the main heading of the related posts. You can also display the "
|
326 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
327 |
"Posts to %postname%</code>"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin/main-view.php:262
|
331 |
msgid "When there are no posts, what should be shown?"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin/main-view.php:266
|
335 |
msgid "Blank Output"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/main-view.php:271
|
339 |
msgid "Display:"
|
340 |
msgstr "Προβολή:"
|
341 |
|
342 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
343 |
msgid "Show post excerpt in list?"
|
344 |
msgstr "Προβολή αποσπασμάτων άρθρων σε κατάλογο;"
|
345 |
|
346 |
+
#: admin/main-view.php:280
|
347 |
#, php-format
|
348 |
msgid ""
|
349 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
351 |
"automatic excerpt which refers to the first %d words of the post's content"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/main-view.php:283
|
355 |
msgid ""
|
356 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
357 |
"is disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/main-view.php:288
|
361 |
msgid "Length of excerpt (in words):"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/main-view.php:294
|
365 |
msgid "Show post author in list?"
|
366 |
msgstr "Προβολή συντάκτη άρθρου σε κατάλογο;"
|
367 |
|
368 |
+
#: admin/main-view.php:297
|
369 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin/main-view.php:300
|
373 |
msgid ""
|
374 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
375 |
"disabled."
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin/main-view.php:305
|
379 |
msgid "Show post date in list?"
|
380 |
msgstr "Προβολή ημερομηνίας άρθρου σε κατάλογο;"
|
381 |
|
382 |
+
#: admin/main-view.php:308
|
383 |
msgid ""
|
384 |
"Displays the date of the post. Uses the same date format set in General "
|
385 |
"Options"
|
387 |
"Προβάλλει την ημερομηνία του άρθρου. Χρησιμοποιεί την ίδια μορφοποίηση "
|
388 |
"ημερομηνίας που ορίστηκε στις Γενικές Επιλογές"
|
389 |
|
390 |
+
#: admin/main-view.php:311
|
391 |
msgid ""
|
392 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
393 |
"disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/main-view.php:316
|
397 |
msgid "Limit post title length (in characters)"
|
398 |
msgstr "Όριο μήκους τίτλου άρθρου (σε χαρακτήρες)"
|
399 |
|
400 |
+
#: admin/main-view.php:319
|
401 |
msgid ""
|
402 |
"Any title longer than the number of characters set above will be cut and "
|
403 |
"appended with an ellipsis (…)"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin/main-view.php:323
|
407 |
msgid "Open links in new window"
|
408 |
msgstr "Άνοιγμα συνδέσμων σε νέο παράθυρο"
|
409 |
|
410 |
+
#: admin/main-view.php:329
|
411 |
msgid "Add nofollow attribute to links in the list"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/main-view.php:362
|
415 |
msgid "Exclusion settings:"
|
416 |
msgstr "Ρυθμίσεις αποκλεισμού:"
|
417 |
|
418 |
+
#: admin/main-view.php:364
|
419 |
msgid "Exclude display of related posts on these posts / pages"
|
420 |
msgstr "Αποκλεισμός προβολής σχετικών άρθρων σε αυτά τα άρθρα / σελίδες"
|
421 |
|
422 |
+
#: admin/main-view.php:370
|
423 |
msgid "Exclude display of related posts on these post types."
|
424 |
msgstr "Αποκλεισμός προβολής σχετικών άρθρων σε αυτούς τους τύπους άρθρων."
|
425 |
|
426 |
+
#: admin/main-view.php:377
|
427 |
msgid ""
|
428 |
"The related posts will not display on any of the above selected post types"
|
429 |
msgstr ""
|
430 |
"Τα σχετικά άρθρα δε θα προβάλλονται σε κανέναν από τους παραπάνω "
|
431 |
"επιλεγμένους τύπους άρθρων"
|
432 |
|
433 |
+
#: admin/main-view.php:407
|
434 |
msgid "Customize the output:"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/main-view.php:409
|
438 |
msgid "HTML to display before the list of posts: "
|
439 |
msgstr "HTML για προβολή πριν τον κατάλογο άρθρων:"
|
440 |
|
441 |
+
#: admin/main-view.php:412
|
442 |
msgid "HTML to display before each list item: "
|
443 |
msgstr "HTML για προβολή πριν από κάθε στοιχείο καταλόγου:"
|
444 |
|
445 |
+
#: admin/main-view.php:415
|
446 |
msgid "HTML to display after each list item: "
|
447 |
msgstr "HTML για προβολή μετά από κάθε στοιχείο καταλόγου:"
|
448 |
|
449 |
+
#: admin/main-view.php:418
|
450 |
msgid "HTML to display after the list of posts: "
|
451 |
msgstr "HTML για προβολή μετά τον κατάλογο άρθρων:"
|
452 |
|
453 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
454 |
msgid "Location of post thumbnail:"
|
455 |
msgstr "Τοποθεσία μικρογραφίας άρθρου:"
|
456 |
|
457 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
458 |
msgid "Display thumbnails inline with posts, before title"
|
459 |
msgstr "Προβολή μικρογραφιών σε σειρά με τα άρθρα, πριν τον τίτλο"
|
460 |
|
461 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
462 |
msgid "Display thumbnails inline with posts, after title"
|
463 |
msgstr "Προβολή μικρογραφιών σε σειρά με τα άρθρα, μετά τον τίτλο"
|
464 |
|
465 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
466 |
msgid "Display only thumbnails, no text"
|
467 |
msgstr "Προβολή μόνο μικρογραφιών, όχι κείμενο"
|
468 |
|
469 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
470 |
msgid "Do not display thumbnails, only text."
|
471 |
msgstr "Όχι προβολή μικρογραφιών, μόνο κείμενο."
|
472 |
|
473 |
+
#: admin/main-view.php:478
|
474 |
msgid ""
|
475 |
"This setting cannot be changed because an inbuilt style has been selected "
|
476 |
"under the Styles section. If you would like to change this option, please "
|
477 |
"select <strong>No styles</strong> under the Styles section."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin/main-view.php:482
|
481 |
msgid "Thumbnail size:"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: admin/main-view.php:506
|
485 |
msgid "Custom size"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/main-view.php:509
|
489 |
msgid "You can choose from existing image sizes above or create a custom size."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/main-view.php:510
|
493 |
msgid ""
|
494 |
"If you choose an existing size, then the width, height and crop mode "
|
495 |
"settings in the three options below will be automatically updated to reflect "
|
496 |
"the correct dimensions of the setting."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/main-view.php:511
|
500 |
msgid ""
|
501 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
502 |
"settings below. For best results, use a cropped image with the same width "
|
503 |
"and height. The default setting is 150x150 cropped image."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: admin/main-view.php:512
|
507 |
msgid ""
|
508 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
509 |
"images."
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/main-view.php:513
|
513 |
#, php-format
|
514 |
msgid ""
|
515 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
517 |
"all image sizes."
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin/main-view.php:517
|
521 |
msgid "Width of the thumbnail:"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/main-view.php:520
|
525 |
msgid "Height of the thumbnail: "
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/main-view.php:525
|
529 |
msgid "Crop mode:"
|
530 |
msgstr "Περικοπή:"
|
531 |
|
532 |
+
#: admin/main-view.php:529
|
533 |
msgid ""
|
534 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
535 |
"proportionately/soft crop the thumbnails."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: admin/main-view.php:530
|
539 |
#, php-format
|
540 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/main-view.php:534
|
544 |
msgid "Image size attributes:"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/main-view.php:538
|
548 |
msgid "Style attributes are used for width and height."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/main-view.php:543
|
552 |
msgid "HTML width and height attributes are used for width and height."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/main-view.php:548
|
556 |
msgid "No HTML or Style attributes set for width and height"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/main-view.php:553
|
560 |
msgid "Post thumbnail meta field name:"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/main-view.php:555
|
564 |
msgid ""
|
565 |
"The value of this field should contain a direct link to the image. This is "
|
566 |
"set in the meta box in the <em>Add New Post</em> screen."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: admin/main-view.php:558
|
570 |
msgid "Extract the first image from the post?"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: admin/main-view.php:560
|
574 |
msgid ""
|
575 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
576 |
"specified in the meta field."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: admin/main-view.php:563
|
580 |
msgid "Use default thumbnail?"
|
581 |
msgstr "Χρήση προεπιλεγμένης μικρογραφίας;"
|
582 |
|
583 |
+
#: admin/main-view.php:565
|
584 |
msgid ""
|
585 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
586 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/main-view.php:568
|
590 |
msgid "Default thumbnail:"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/main-view.php:571
|
594 |
msgid ""
|
595 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
596 |
+
"then it will check the meta field. If this is not available, then it will "
|
597 |
+
"show the default image as specified above."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/main-view.php:612
|
601 |
msgid "Style of the related posts:"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/main-view.php:615
|
605 |
msgid "No styles"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/main-view.php:617
|
609 |
msgid "Select this option if you plan to add your own styles"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/main-view.php:621
|
613 |
msgid "Rounded Thumbnails"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/main-view.php:624
|
617 |
msgid ""
|
618 |
"Enabling this option will turn on the thumbnails and set their width and "
|
619 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
621 |
"settings."
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/main-view.php:625
|
625 |
#, php-format
|
626 |
msgid ""
|
627 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/main-view.php:629
|
631 |
msgid "Text only"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/main-view.php:631
|
635 |
msgid ""
|
636 |
"Enabling this option will disable thumbnails and no longer include the "
|
637 |
"default style sheet included in the plugin."
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/main-view.php:646
|
641 |
msgid "Custom CSS to add to header:"
|
642 |
msgstr "Σύνδεσμος CSS για προσθήκη στην επικεφαλίδα:"
|
643 |
|
644 |
+
#: admin/main-view.php:650
|
645 |
msgid ""
|
646 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
647 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
648 |
"\">FAQ</a> for available CSS classes to style."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/main-view.php:690
|
652 |
msgid ""
|
653 |
"Below options override the related posts settings for your blog feed. These "
|
654 |
"only apply if you have selected to add related posts to Feeds in the General "
|
655 |
"Options tab."
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: admin/main-view.php:718
|
659 |
msgid "Maximum width of the thumbnail: "
|
660 |
msgstr "Μέγιστο πλάτος της μικρογραφίας:"
|
661 |
|
662 |
+
#: admin/main-view.php:721
|
663 |
msgid "Maximum height of the thumbnail: "
|
664 |
msgstr "Μέγιστο ύψος της μικρογραφίας:"
|
665 |
|
666 |
+
#: admin/main-view.php:756
|
667 |
msgid "Default Options"
|
668 |
msgstr "Προεπιλεγμένες Επιλογές "
|
669 |
|
670 |
+
#: admin/main-view.php:756
|
671 |
msgid "Do you want to set options to Default?"
|
672 |
msgstr "Θέλετε να ορίσετε τις επιλογές ως Προεπιλογές;"
|
673 |
|
674 |
+
#: admin/main-view.php:757
|
675 |
msgid "Recreate Index"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: admin/main-view.php:757
|
679 |
msgid "Are you sure you want to recreate the index?"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: admin/main-view.php:762
|
683 |
msgid ""
|
684 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
685 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
765 |
msgstr ""
|
766 |
|
767 |
#: admin/sidebar-view.php:57
|
768 |
+
msgid "Plugin homepage"
|
769 |
msgstr ""
|
770 |
|
771 |
#: admin/sidebar-view.php:58
|
873 |
msgid " by "
|
874 |
msgstr ""
|
875 |
|
876 |
+
#~ msgid "Contextual Related Posts"
|
877 |
+
#~ msgstr "Άρθρα Σχετικά με το Περιεχόμενο"
|
878 |
+
|
879 |
#~ msgid "Options saved successfully."
|
880 |
#~ msgstr "Οι επιλογές αποθηκεύτηκαν επιτυχώς."
|
881 |
|
languages/crp-en_US.mo
CHANGED
Binary file
|
languages/crp-en_US.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: WebberZone <plugins@webberzone.com>\n"
|
@@ -17,38 +17,34 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin/admin.php:
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Options set to Default."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Index recreated"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
msgid "Contextual Related Posts"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: admin/admin.php:249
|
52 |
msgid "Related Posts"
|
53 |
msgstr ""
|
54 |
|
@@ -90,20 +86,20 @@ msgstr ""
|
|
90 |
msgid "List tuning options"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
94 |
msgid "Output options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
98 |
#: includes/class-crp-widget.php:93
|
99 |
msgid "Thumbnail options"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
103 |
msgid "Styles"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
107 |
msgid "Feed options"
|
108 |
msgstr ""
|
109 |
|
@@ -219,13 +215,13 @@ msgid ""
|
|
219 |
"in the list."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
223 |
-
#: admin/main-view.php:
|
224 |
-
#: admin/main-view.php:
|
225 |
msgid "Save Options"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
229 |
msgid "Number of related posts to display: "
|
230 |
msgstr ""
|
231 |
|
@@ -285,7 +281,7 @@ msgstr ""
|
|
285 |
msgid "List of post or page IDs to exclude from the results:"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
289 |
msgid ""
|
290 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
291 |
msgstr ""
|
@@ -301,34 +297,38 @@ msgid ""
|
|
301 |
"prompt you with options."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
305 |
msgid "Title of related posts:"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin/main-view.php:
|
309 |
msgid ""
|
310 |
"This is the main heading of the related posts. You can also display the "
|
311 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
312 |
"Posts to %postname%</code>"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/main-view.php:
|
316 |
msgid "When there are no posts, what should be shown?"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/main-view.php:
|
320 |
msgid "Blank Output"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: admin/main-view.php:
|
324 |
msgid "Display:"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: admin/main-view.php:
|
328 |
msgid "Show post excerpt in list?"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: admin/main-view.php:
|
332 |
#, php-format
|
333 |
msgid ""
|
334 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -336,161 +336,161 @@ msgid ""
|
|
336 |
"automatic excerpt which refers to the first %d words of the post's content"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin/main-view.php:
|
340 |
msgid ""
|
341 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
342 |
"is disabled."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/main-view.php:
|
346 |
msgid "Length of excerpt (in words):"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin/main-view.php:
|
350 |
msgid "Show post author in list?"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin/main-view.php:
|
354 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin/main-view.php:
|
358 |
msgid ""
|
359 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
360 |
"disabled."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: admin/main-view.php:
|
364 |
msgid "Show post date in list?"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/main-view.php:
|
368 |
msgid ""
|
369 |
"Displays the date of the post. Uses the same date format set in General "
|
370 |
"Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin/main-view.php:
|
374 |
msgid ""
|
375 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
376 |
"disabled."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/main-view.php:
|
380 |
msgid "Limit post title length (in characters)"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/main-view.php:
|
384 |
msgid ""
|
385 |
"Any title longer than the number of characters set above will be cut and "
|
386 |
"appended with an ellipsis (…)"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/main-view.php:
|
390 |
msgid "Open links in new window"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin/main-view.php:
|
394 |
msgid "Add nofollow attribute to links in the list"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/main-view.php:
|
398 |
msgid "Exclusion settings:"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/main-view.php:
|
402 |
msgid "Exclude display of related posts on these posts / pages"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin/main-view.php:
|
406 |
msgid "Exclude display of related posts on these post types."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/main-view.php:
|
410 |
msgid ""
|
411 |
"The related posts will not display on any of the above selected post types"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
msgid "Customize the output:"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin/main-view.php:
|
419 |
msgid "HTML to display before the list of posts: "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: admin/main-view.php:
|
423 |
msgid "HTML to display before each list item: "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: admin/main-view.php:
|
427 |
msgid "HTML to display after each list item: "
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/main-view.php:
|
431 |
msgid "HTML to display after the list of posts: "
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin/main-view.php:
|
435 |
msgid "Location of post thumbnail:"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin/main-view.php:
|
439 |
msgid "Display thumbnails inline with posts, before title"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/main-view.php:
|
443 |
msgid "Display thumbnails inline with posts, after title"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/main-view.php:
|
447 |
msgid "Display only thumbnails, no text"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/main-view.php:
|
451 |
msgid "Do not display thumbnails, only text."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/main-view.php:
|
455 |
msgid ""
|
456 |
"This setting cannot be changed because an inbuilt style has been selected "
|
457 |
"under the Styles section. If you would like to change this option, please "
|
458 |
"select <strong>No styles</strong> under the Styles section."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin/main-view.php:
|
462 |
msgid "Thumbnail size:"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/main-view.php:
|
466 |
msgid "Custom size"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/main-view.php:
|
470 |
msgid "You can choose from existing image sizes above or create a custom size."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/main-view.php:
|
474 |
msgid ""
|
475 |
"If you choose an existing size, then the width, height and crop mode "
|
476 |
"settings in the three options below will be automatically updated to reflect "
|
477 |
"the correct dimensions of the setting."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/main-view.php:
|
481 |
msgid ""
|
482 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
483 |
"settings below. For best results, use a cropped image with the same width "
|
484 |
"and height. The default setting is 150x150 cropped image."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/main-view.php:
|
488 |
msgid ""
|
489 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
490 |
"images."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/main-view.php:
|
494 |
#, php-format
|
495 |
msgid ""
|
496 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -498,103 +498,103 @@ msgid ""
|
|
498 |
"all image sizes."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/main-view.php:
|
502 |
msgid "Width of the thumbnail:"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/main-view.php:
|
506 |
msgid "Height of the thumbnail: "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/main-view.php:
|
510 |
msgid "Crop mode:"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/main-view.php:
|
514 |
msgid ""
|
515 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
516 |
"proportionately/soft crop the thumbnails."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/main-view.php:
|
520 |
#, php-format
|
521 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/main-view.php:
|
525 |
msgid "Image size attributes:"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/main-view.php:
|
529 |
msgid "Style attributes are used for width and height."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/main-view.php:
|
533 |
msgid "HTML width and height attributes are used for width and height."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/main-view.php:
|
537 |
msgid "No HTML or Style attributes set for width and height"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/main-view.php:
|
541 |
msgid "Post thumbnail meta field name:"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/main-view.php:
|
545 |
msgid ""
|
546 |
"The value of this field should contain a direct link to the image. This is "
|
547 |
"set in the meta box in the <em>Add New Post</em> screen."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/main-view.php:
|
551 |
msgid "Extract the first image from the post?"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/main-view.php:
|
555 |
msgid ""
|
556 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
557 |
"specified in the meta field."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/main-view.php:
|
561 |
msgid "Use default thumbnail?"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/main-view.php:
|
565 |
msgid ""
|
566 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
567 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/main-view.php:
|
571 |
msgid "Default thumbnail:"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: admin/main-view.php:
|
575 |
msgid ""
|
576 |
-
"
|
577 |
-
"
|
578 |
-
"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: admin/main-view.php:
|
582 |
msgid "Style of the related posts:"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/main-view.php:
|
586 |
msgid "No styles"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/main-view.php:
|
590 |
msgid "Select this option if you plan to add your own styles"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/main-view.php:
|
594 |
msgid "Rounded Thumbnails"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/main-view.php:
|
598 |
msgid ""
|
599 |
"Enabling this option will turn on the thumbnails and set their width and "
|
600 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -602,65 +602,65 @@ msgid ""
|
|
602 |
"settings."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/main-view.php:
|
606 |
#, php-format
|
607 |
msgid ""
|
608 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/main-view.php:
|
612 |
msgid "Text only"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/main-view.php:
|
616 |
msgid ""
|
617 |
"Enabling this option will disable thumbnails and no longer include the "
|
618 |
"default style sheet included in the plugin."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/main-view.php:
|
622 |
msgid "Custom CSS to add to header:"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: admin/main-view.php:
|
626 |
msgid ""
|
627 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
628 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
629 |
"\">FAQ</a> for available CSS classes to style."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/main-view.php:
|
633 |
msgid ""
|
634 |
"Below options override the related posts settings for your blog feed. These "
|
635 |
"only apply if you have selected to add related posts to Feeds in the General "
|
636 |
"Options tab."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/main-view.php:
|
640 |
msgid "Maximum width of the thumbnail: "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: admin/main-view.php:
|
644 |
msgid "Maximum height of the thumbnail: "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: admin/main-view.php:
|
648 |
msgid "Default Options"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/main-view.php:
|
652 |
msgid "Do you want to set options to Default?"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: admin/main-view.php:
|
656 |
msgid "Recreate Index"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/main-view.php:
|
660 |
msgid "Are you sure you want to recreate the index?"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: admin/main-view.php:
|
664 |
msgid ""
|
665 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
666 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -746,7 +746,7 @@ msgid "Quick links"
|
|
746 |
msgstr ""
|
747 |
|
748 |
#: admin/sidebar-view.php:57
|
749 |
-
msgid "
|
750 |
msgstr ""
|
751 |
|
752 |
#: admin/sidebar-view.php:58
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: WebberZone <plugins@webberzone.com>\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin/admin.php:190
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin/admin.php:193
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin/admin.php:196
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/admin.php:199
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/admin.php:223
|
40 |
msgid "Options set to Default."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: admin/admin.php:232
|
44 |
msgid "Index recreated"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
48 |
msgid "Related Posts"
|
49 |
msgstr ""
|
50 |
|
86 |
msgid "List tuning options"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
90 |
msgid "Output options"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
94 |
#: includes/class-crp-widget.php:93
|
95 |
msgid "Thumbnail options"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
99 |
msgid "Styles"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
103 |
msgid "Feed options"
|
104 |
msgstr ""
|
105 |
|
215 |
"in the list."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
219 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
220 |
+
#: admin/main-view.php:755
|
221 |
msgid "Save Options"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
225 |
msgid "Number of related posts to display: "
|
226 |
msgstr ""
|
227 |
|
281 |
msgid "List of post or page IDs to exclude from the results:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
285 |
msgid ""
|
286 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
287 |
msgstr ""
|
297 |
"prompt you with options."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/main-view.php:214
|
301 |
+
msgid "Excluded category IDs are:"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: admin/main-view.php:255
|
305 |
msgid "Title of related posts:"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin/main-view.php:258
|
309 |
msgid ""
|
310 |
"This is the main heading of the related posts. You can also display the "
|
311 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
312 |
"Posts to %postname%</code>"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/main-view.php:262
|
316 |
msgid "When there are no posts, what should be shown?"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/main-view.php:266
|
320 |
msgid "Blank Output"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin/main-view.php:271
|
324 |
msgid "Display:"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
328 |
msgid "Show post excerpt in list?"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin/main-view.php:280
|
332 |
#, php-format
|
333 |
msgid ""
|
334 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
336 |
"automatic excerpt which refers to the first %d words of the post's content"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/main-view.php:283
|
340 |
msgid ""
|
341 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
342 |
"is disabled."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin/main-view.php:288
|
346 |
msgid "Length of excerpt (in words):"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin/main-view.php:294
|
350 |
msgid "Show post author in list?"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: admin/main-view.php:297
|
354 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/main-view.php:300
|
358 |
msgid ""
|
359 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
360 |
"disabled."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/main-view.php:305
|
364 |
msgid "Show post date in list?"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: admin/main-view.php:308
|
368 |
msgid ""
|
369 |
"Displays the date of the post. Uses the same date format set in General "
|
370 |
"Options"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/main-view.php:311
|
374 |
msgid ""
|
375 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
376 |
"disabled."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/main-view.php:316
|
380 |
msgid "Limit post title length (in characters)"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/main-view.php:319
|
384 |
msgid ""
|
385 |
"Any title longer than the number of characters set above will be cut and "
|
386 |
"appended with an ellipsis (…)"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin/main-view.php:323
|
390 |
msgid "Open links in new window"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin/main-view.php:329
|
394 |
msgid "Add nofollow attribute to links in the list"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/main-view.php:362
|
398 |
msgid "Exclusion settings:"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/main-view.php:364
|
402 |
msgid "Exclude display of related posts on these posts / pages"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/main-view.php:370
|
406 |
msgid "Exclude display of related posts on these post types."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/main-view.php:377
|
410 |
msgid ""
|
411 |
"The related posts will not display on any of the above selected post types"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/main-view.php:407
|
415 |
msgid "Customize the output:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin/main-view.php:409
|
419 |
msgid "HTML to display before the list of posts: "
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin/main-view.php:412
|
423 |
msgid "HTML to display before each list item: "
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin/main-view.php:415
|
427 |
msgid "HTML to display after each list item: "
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin/main-view.php:418
|
431 |
msgid "HTML to display after the list of posts: "
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
435 |
msgid "Location of post thumbnail:"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
439 |
msgid "Display thumbnails inline with posts, before title"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
443 |
msgid "Display thumbnails inline with posts, after title"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
447 |
msgid "Display only thumbnails, no text"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
451 |
msgid "Do not display thumbnails, only text."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin/main-view.php:478
|
455 |
msgid ""
|
456 |
"This setting cannot be changed because an inbuilt style has been selected "
|
457 |
"under the Styles section. If you would like to change this option, please "
|
458 |
"select <strong>No styles</strong> under the Styles section."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/main-view.php:482
|
462 |
msgid "Thumbnail size:"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin/main-view.php:506
|
466 |
msgid "Custom size"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/main-view.php:509
|
470 |
msgid "You can choose from existing image sizes above or create a custom size."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/main-view.php:510
|
474 |
msgid ""
|
475 |
"If you choose an existing size, then the width, height and crop mode "
|
476 |
"settings in the three options below will be automatically updated to reflect "
|
477 |
"the correct dimensions of the setting."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin/main-view.php:511
|
481 |
msgid ""
|
482 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
483 |
"settings below. For best results, use a cropped image with the same width "
|
484 |
"and height. The default setting is 150x150 cropped image."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/main-view.php:512
|
488 |
msgid ""
|
489 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
490 |
"images."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/main-view.php:513
|
494 |
#, php-format
|
495 |
msgid ""
|
496 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
498 |
"all image sizes."
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: admin/main-view.php:517
|
502 |
msgid "Width of the thumbnail:"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/main-view.php:520
|
506 |
msgid "Height of the thumbnail: "
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/main-view.php:525
|
510 |
msgid "Crop mode:"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/main-view.php:529
|
514 |
msgid ""
|
515 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
516 |
"proportionately/soft crop the thumbnails."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/main-view.php:530
|
520 |
#, php-format
|
521 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/main-view.php:534
|
525 |
msgid "Image size attributes:"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/main-view.php:538
|
529 |
msgid "Style attributes are used for width and height."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/main-view.php:543
|
533 |
msgid "HTML width and height attributes are used for width and height."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/main-view.php:548
|
537 |
msgid "No HTML or Style attributes set for width and height"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/main-view.php:553
|
541 |
msgid "Post thumbnail meta field name:"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/main-view.php:555
|
545 |
msgid ""
|
546 |
"The value of this field should contain a direct link to the image. This is "
|
547 |
"set in the meta box in the <em>Add New Post</em> screen."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/main-view.php:558
|
551 |
msgid "Extract the first image from the post?"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/main-view.php:560
|
555 |
msgid ""
|
556 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
557 |
"specified in the meta field."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/main-view.php:563
|
561 |
msgid "Use default thumbnail?"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/main-view.php:565
|
565 |
msgid ""
|
566 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
567 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/main-view.php:568
|
571 |
msgid "Default thumbnail:"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: admin/main-view.php:571
|
575 |
msgid ""
|
576 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
577 |
+
"then it will check the meta field. If this is not available, then it will "
|
578 |
+
"show the default image as specified above."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/main-view.php:612
|
582 |
msgid "Style of the related posts:"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/main-view.php:615
|
586 |
msgid "No styles"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/main-view.php:617
|
590 |
msgid "Select this option if you plan to add your own styles"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/main-view.php:621
|
594 |
msgid "Rounded Thumbnails"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: admin/main-view.php:624
|
598 |
msgid ""
|
599 |
"Enabling this option will turn on the thumbnails and set their width and "
|
600 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
602 |
"settings."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: admin/main-view.php:625
|
606 |
#, php-format
|
607 |
msgid ""
|
608 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/main-view.php:629
|
612 |
msgid "Text only"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/main-view.php:631
|
616 |
msgid ""
|
617 |
"Enabling this option will disable thumbnails and no longer include the "
|
618 |
"default style sheet included in the plugin."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/main-view.php:646
|
622 |
msgid "Custom CSS to add to header:"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/main-view.php:650
|
626 |
msgid ""
|
627 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
628 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
629 |
"\">FAQ</a> for available CSS classes to style."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/main-view.php:690
|
633 |
msgid ""
|
634 |
"Below options override the related posts settings for your blog feed. These "
|
635 |
"only apply if you have selected to add related posts to Feeds in the General "
|
636 |
"Options tab."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:718
|
640 |
msgid "Maximum width of the thumbnail: "
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/main-view.php:721
|
644 |
msgid "Maximum height of the thumbnail: "
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/main-view.php:756
|
648 |
msgid "Default Options"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/main-view.php:756
|
652 |
msgid "Do you want to set options to Default?"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/main-view.php:757
|
656 |
msgid "Recreate Index"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: admin/main-view.php:757
|
660 |
msgid "Are you sure you want to recreate the index?"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: admin/main-view.php:762
|
664 |
msgid ""
|
665 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
666 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
746 |
msgstr ""
|
747 |
|
748 |
#: admin/sidebar-view.php:57
|
749 |
+
msgid "Plugin homepage"
|
750 |
msgstr ""
|
751 |
|
752 |
#: admin/sidebar-view.php:58
|
languages/crp-en_US.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Contextual Related Posts\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2015-09-
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
9 |
"Language-Team: plugins@webberzone.com\n"
|
@@ -17,38 +17,34 @@ msgstr ""
|
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin/admin.php:
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Options set to Default."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Index recreated"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
msgid "Contextual Related Posts"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: admin/admin.php:249
|
52 |
msgid "Related Posts"
|
53 |
msgstr ""
|
54 |
|
@@ -90,20 +86,20 @@ msgstr ""
|
|
90 |
msgid "List tuning options"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
94 |
msgid "Output options"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
98 |
#: includes/class-crp-widget.php:93
|
99 |
msgid "Thumbnail options"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
103 |
msgid "Styles"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
107 |
msgid "Feed options"
|
108 |
msgstr ""
|
109 |
|
@@ -219,13 +215,13 @@ msgid ""
|
|
219 |
"in the list."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
223 |
-
#: admin/main-view.php:
|
224 |
-
#: admin/main-view.php:
|
225 |
msgid "Save Options"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
229 |
msgid "Number of related posts to display: "
|
230 |
msgstr ""
|
231 |
|
@@ -285,7 +281,7 @@ msgstr ""
|
|
285 |
msgid "List of post or page IDs to exclude from the results:"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
289 |
msgid ""
|
290 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
291 |
msgstr ""
|
@@ -301,34 +297,38 @@ msgid ""
|
|
301 |
"prompt you with options."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
305 |
msgid "Title of related posts:"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin/main-view.php:
|
309 |
msgid ""
|
310 |
"This is the main heading of the related posts. You can also display the "
|
311 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
312 |
"Posts to %postname%</code>"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/main-view.php:
|
316 |
msgid "When there are no posts, what should be shown?"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/main-view.php:
|
320 |
msgid "Blank Output"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: admin/main-view.php:
|
324 |
msgid "Display:"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: admin/main-view.php:
|
328 |
msgid "Show post excerpt in list?"
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: admin/main-view.php:
|
332 |
#, php-format
|
333 |
msgid ""
|
334 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -336,161 +336,161 @@ msgid ""
|
|
336 |
"automatic excerpt which refers to the first %d words of the post's content"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin/main-view.php:
|
340 |
msgid ""
|
341 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
342 |
"is disabled."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/main-view.php:
|
346 |
msgid "Length of excerpt (in words):"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: admin/main-view.php:
|
350 |
msgid "Show post author in list?"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: admin/main-view.php:
|
354 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin/main-view.php:
|
358 |
msgid ""
|
359 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
360 |
"disabled."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: admin/main-view.php:
|
364 |
msgid "Show post date in list?"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/main-view.php:
|
368 |
msgid ""
|
369 |
"Displays the date of the post. Uses the same date format set in General "
|
370 |
"Options"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin/main-view.php:
|
374 |
msgid ""
|
375 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
376 |
"disabled."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/main-view.php:
|
380 |
msgid "Limit post title length (in characters)"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/main-view.php:
|
384 |
msgid ""
|
385 |
"Any title longer than the number of characters set above will be cut and "
|
386 |
"appended with an ellipsis (…)"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/main-view.php:
|
390 |
msgid "Open links in new window"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin/main-view.php:
|
394 |
msgid "Add nofollow attribute to links in the list"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/main-view.php:
|
398 |
msgid "Exclusion settings:"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/main-view.php:
|
402 |
msgid "Exclude display of related posts on these posts / pages"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: admin/main-view.php:
|
406 |
msgid "Exclude display of related posts on these post types."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/main-view.php:
|
410 |
msgid ""
|
411 |
"The related posts will not display on any of the above selected post types"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
msgid "Customize the output:"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin/main-view.php:
|
419 |
msgid "HTML to display before the list of posts: "
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: admin/main-view.php:
|
423 |
msgid "HTML to display before each list item: "
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: admin/main-view.php:
|
427 |
msgid "HTML to display after each list item: "
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/main-view.php:
|
431 |
msgid "HTML to display after the list of posts: "
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin/main-view.php:
|
435 |
msgid "Location of post thumbnail:"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin/main-view.php:
|
439 |
msgid "Display thumbnails inline with posts, before title"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/main-view.php:
|
443 |
msgid "Display thumbnails inline with posts, after title"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/main-view.php:
|
447 |
msgid "Display only thumbnails, no text"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/main-view.php:
|
451 |
msgid "Do not display thumbnails, only text."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/main-view.php:
|
455 |
msgid ""
|
456 |
"This setting cannot be changed because an inbuilt style has been selected "
|
457 |
"under the Styles section. If you would like to change this option, please "
|
458 |
"select <strong>No styles</strong> under the Styles section."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: admin/main-view.php:
|
462 |
msgid "Thumbnail size:"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/main-view.php:
|
466 |
msgid "Custom size"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: admin/main-view.php:
|
470 |
msgid "You can choose from existing image sizes above or create a custom size."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/main-view.php:
|
474 |
msgid ""
|
475 |
"If you choose an existing size, then the width, height and crop mode "
|
476 |
"settings in the three options below will be automatically updated to reflect "
|
477 |
"the correct dimensions of the setting."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/main-view.php:
|
481 |
msgid ""
|
482 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
483 |
"settings below. For best results, use a cropped image with the same width "
|
484 |
"and height. The default setting is 150x150 cropped image."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/main-view.php:
|
488 |
msgid ""
|
489 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
490 |
"images."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/main-view.php:
|
494 |
#, php-format
|
495 |
msgid ""
|
496 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -498,103 +498,103 @@ msgid ""
|
|
498 |
"all image sizes."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/main-view.php:
|
502 |
msgid "Width of the thumbnail:"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/main-view.php:
|
506 |
msgid "Height of the thumbnail: "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/main-view.php:
|
510 |
msgid "Crop mode:"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/main-view.php:
|
514 |
msgid ""
|
515 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
516 |
"proportionately/soft crop the thumbnails."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/main-view.php:
|
520 |
#, php-format
|
521 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/main-view.php:
|
525 |
msgid "Image size attributes:"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: admin/main-view.php:
|
529 |
msgid "Style attributes are used for width and height."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/main-view.php:
|
533 |
msgid "HTML width and height attributes are used for width and height."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/main-view.php:
|
537 |
msgid "No HTML or Style attributes set for width and height"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/main-view.php:
|
541 |
msgid "Post thumbnail meta field name:"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/main-view.php:
|
545 |
msgid ""
|
546 |
"The value of this field should contain a direct link to the image. This is "
|
547 |
"set in the meta box in the <em>Add New Post</em> screen."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/main-view.php:
|
551 |
msgid "Extract the first image from the post?"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/main-view.php:
|
555 |
msgid ""
|
556 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
557 |
"specified in the meta field."
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/main-view.php:
|
561 |
msgid "Use default thumbnail?"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/main-view.php:
|
565 |
msgid ""
|
566 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
567 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/main-view.php:
|
571 |
msgid "Default thumbnail:"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: admin/main-view.php:
|
575 |
msgid ""
|
576 |
-
"
|
577 |
-
"
|
578 |
-
"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: admin/main-view.php:
|
582 |
msgid "Style of the related posts:"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/main-view.php:
|
586 |
msgid "No styles"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/main-view.php:
|
590 |
msgid "Select this option if you plan to add your own styles"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: admin/main-view.php:
|
594 |
msgid "Rounded Thumbnails"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/main-view.php:
|
598 |
msgid ""
|
599 |
"Enabling this option will turn on the thumbnails and set their width and "
|
600 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -602,65 +602,65 @@ msgid ""
|
|
602 |
"settings."
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/main-view.php:
|
606 |
#, php-format
|
607 |
msgid ""
|
608 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/main-view.php:
|
612 |
msgid "Text only"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/main-view.php:
|
616 |
msgid ""
|
617 |
"Enabling this option will disable thumbnails and no longer include the "
|
618 |
"default style sheet included in the plugin."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: admin/main-view.php:
|
622 |
msgid "Custom CSS to add to header:"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: admin/main-view.php:
|
626 |
msgid ""
|
627 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
628 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
629 |
"\">FAQ</a> for available CSS classes to style."
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/main-view.php:
|
633 |
msgid ""
|
634 |
"Below options override the related posts settings for your blog feed. These "
|
635 |
"only apply if you have selected to add related posts to Feeds in the General "
|
636 |
"Options tab."
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: admin/main-view.php:
|
640 |
msgid "Maximum width of the thumbnail: "
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: admin/main-view.php:
|
644 |
msgid "Maximum height of the thumbnail: "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: admin/main-view.php:
|
648 |
msgid "Default Options"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/main-view.php:
|
652 |
msgid "Do you want to set options to Default?"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: admin/main-view.php:
|
656 |
msgid "Recreate Index"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/main-view.php:
|
660 |
msgid "Are you sure you want to recreate the index?"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: admin/main-view.php:
|
664 |
msgid ""
|
665 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
666 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -746,7 +746,7 @@ msgid "Quick links"
|
|
746 |
msgstr ""
|
747 |
|
748 |
#: admin/sidebar-view.php:57
|
749 |
-
msgid "
|
750 |
msgstr ""
|
751 |
|
752 |
#: admin/sidebar-view.php:58
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Contextual Related Posts\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
7 |
"PO-Revision-Date: \n"
|
8 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
9 |
"Language-Team: plugins@webberzone.com\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin/admin.php:190
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin/admin.php:193
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin/admin.php:196
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/admin.php:199
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/admin.php:223
|
40 |
msgid "Options set to Default."
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: admin/admin.php:232
|
44 |
msgid "Index recreated"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
48 |
msgid "Related Posts"
|
49 |
msgstr ""
|
50 |
|
86 |
msgid "List tuning options"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
90 |
msgid "Output options"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
94 |
#: includes/class-crp-widget.php:93
|
95 |
msgid "Thumbnail options"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
99 |
msgid "Styles"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
103 |
msgid "Feed options"
|
104 |
msgstr ""
|
105 |
|
215 |
"in the list."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
219 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
220 |
+
#: admin/main-view.php:755
|
221 |
msgid "Save Options"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
225 |
msgid "Number of related posts to display: "
|
226 |
msgstr ""
|
227 |
|
281 |
msgid "List of post or page IDs to exclude from the results:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
285 |
msgid ""
|
286 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
287 |
msgstr ""
|
297 |
"prompt you with options."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/main-view.php:214
|
301 |
+
msgid "Excluded category IDs are:"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: admin/main-view.php:255
|
305 |
msgid "Title of related posts:"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin/main-view.php:258
|
309 |
msgid ""
|
310 |
"This is the main heading of the related posts. You can also display the "
|
311 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
312 |
"Posts to %postname%</code>"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/main-view.php:262
|
316 |
msgid "When there are no posts, what should be shown?"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/main-view.php:266
|
320 |
msgid "Blank Output"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: admin/main-view.php:271
|
324 |
msgid "Display:"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
328 |
msgid "Show post excerpt in list?"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: admin/main-view.php:280
|
332 |
#, php-format
|
333 |
msgid ""
|
334 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
336 |
"automatic excerpt which refers to the first %d words of the post's content"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: admin/main-view.php:283
|
340 |
msgid ""
|
341 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
342 |
"is disabled."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin/main-view.php:288
|
346 |
msgid "Length of excerpt (in words):"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: admin/main-view.php:294
|
350 |
msgid "Show post author in list?"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: admin/main-view.php:297
|
354 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/main-view.php:300
|
358 |
msgid ""
|
359 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
360 |
"disabled."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/main-view.php:305
|
364 |
msgid "Show post date in list?"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: admin/main-view.php:308
|
368 |
msgid ""
|
369 |
"Displays the date of the post. Uses the same date format set in General "
|
370 |
"Options"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/main-view.php:311
|
374 |
msgid ""
|
375 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
376 |
"disabled."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/main-view.php:316
|
380 |
msgid "Limit post title length (in characters)"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/main-view.php:319
|
384 |
msgid ""
|
385 |
"Any title longer than the number of characters set above will be cut and "
|
386 |
"appended with an ellipsis (…)"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: admin/main-view.php:323
|
390 |
msgid "Open links in new window"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin/main-view.php:329
|
394 |
msgid "Add nofollow attribute to links in the list"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/main-view.php:362
|
398 |
msgid "Exclusion settings:"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/main-view.php:364
|
402 |
msgid "Exclude display of related posts on these posts / pages"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/main-view.php:370
|
406 |
msgid "Exclude display of related posts on these post types."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/main-view.php:377
|
410 |
msgid ""
|
411 |
"The related posts will not display on any of the above selected post types"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/main-view.php:407
|
415 |
msgid "Customize the output:"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin/main-view.php:409
|
419 |
msgid "HTML to display before the list of posts: "
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin/main-view.php:412
|
423 |
msgid "HTML to display before each list item: "
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: admin/main-view.php:415
|
427 |
msgid "HTML to display after each list item: "
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin/main-view.php:418
|
431 |
msgid "HTML to display after the list of posts: "
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
435 |
msgid "Location of post thumbnail:"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
439 |
msgid "Display thumbnails inline with posts, before title"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
443 |
msgid "Display thumbnails inline with posts, after title"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
447 |
msgid "Display only thumbnails, no text"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
451 |
msgid "Do not display thumbnails, only text."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin/main-view.php:478
|
455 |
msgid ""
|
456 |
"This setting cannot be changed because an inbuilt style has been selected "
|
457 |
"under the Styles section. If you would like to change this option, please "
|
458 |
"select <strong>No styles</strong> under the Styles section."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/main-view.php:482
|
462 |
msgid "Thumbnail size:"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: admin/main-view.php:506
|
466 |
msgid "Custom size"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: admin/main-view.php:509
|
470 |
msgid "You can choose from existing image sizes above or create a custom size."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/main-view.php:510
|
474 |
msgid ""
|
475 |
"If you choose an existing size, then the width, height and crop mode "
|
476 |
"settings in the three options below will be automatically updated to reflect "
|
477 |
"the correct dimensions of the setting."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin/main-view.php:511
|
481 |
msgid ""
|
482 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
483 |
"settings below. For best results, use a cropped image with the same width "
|
484 |
"and height. The default setting is 150x150 cropped image."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/main-view.php:512
|
488 |
msgid ""
|
489 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
490 |
"images."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/main-view.php:513
|
494 |
#, php-format
|
495 |
msgid ""
|
496 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
498 |
"all image sizes."
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: admin/main-view.php:517
|
502 |
msgid "Width of the thumbnail:"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/main-view.php:520
|
506 |
msgid "Height of the thumbnail: "
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/main-view.php:525
|
510 |
msgid "Crop mode:"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/main-view.php:529
|
514 |
msgid ""
|
515 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
516 |
"proportionately/soft crop the thumbnails."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/main-view.php:530
|
520 |
#, php-format
|
521 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/main-view.php:534
|
525 |
msgid "Image size attributes:"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: admin/main-view.php:538
|
529 |
msgid "Style attributes are used for width and height."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/main-view.php:543
|
533 |
msgid "HTML width and height attributes are used for width and height."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/main-view.php:548
|
537 |
msgid "No HTML or Style attributes set for width and height"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/main-view.php:553
|
541 |
msgid "Post thumbnail meta field name:"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/main-view.php:555
|
545 |
msgid ""
|
546 |
"The value of this field should contain a direct link to the image. This is "
|
547 |
"set in the meta box in the <em>Add New Post</em> screen."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/main-view.php:558
|
551 |
msgid "Extract the first image from the post?"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/main-view.php:560
|
555 |
msgid ""
|
556 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
557 |
"specified in the meta field."
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/main-view.php:563
|
561 |
msgid "Use default thumbnail?"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/main-view.php:565
|
565 |
msgid ""
|
566 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
567 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/main-view.php:568
|
571 |
msgid "Default thumbnail:"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: admin/main-view.php:571
|
575 |
msgid ""
|
576 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
577 |
+
"then it will check the meta field. If this is not available, then it will "
|
578 |
+
"show the default image as specified above."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/main-view.php:612
|
582 |
msgid "Style of the related posts:"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/main-view.php:615
|
586 |
msgid "No styles"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/main-view.php:617
|
590 |
msgid "Select this option if you plan to add your own styles"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/main-view.php:621
|
594 |
msgid "Rounded Thumbnails"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: admin/main-view.php:624
|
598 |
msgid ""
|
599 |
"Enabling this option will turn on the thumbnails and set their width and "
|
600 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
602 |
"settings."
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: admin/main-view.php:625
|
606 |
#, php-format
|
607 |
msgid ""
|
608 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/main-view.php:629
|
612 |
msgid "Text only"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/main-view.php:631
|
616 |
msgid ""
|
617 |
"Enabling this option will disable thumbnails and no longer include the "
|
618 |
"default style sheet included in the plugin."
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/main-view.php:646
|
622 |
msgid "Custom CSS to add to header:"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/main-view.php:650
|
626 |
msgid ""
|
627 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
628 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
629 |
"\">FAQ</a> for available CSS classes to style."
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/main-view.php:690
|
633 |
msgid ""
|
634 |
"Below options override the related posts settings for your blog feed. These "
|
635 |
"only apply if you have selected to add related posts to Feeds in the General "
|
636 |
"Options tab."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:718
|
640 |
msgid "Maximum width of the thumbnail: "
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/main-view.php:721
|
644 |
msgid "Maximum height of the thumbnail: "
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/main-view.php:756
|
648 |
msgid "Default Options"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/main-view.php:756
|
652 |
msgid "Do you want to set options to Default?"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/main-view.php:757
|
656 |
msgid "Recreate Index"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: admin/main-view.php:757
|
660 |
msgid "Are you sure you want to recreate the index?"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: admin/main-view.php:762
|
664 |
msgid ""
|
665 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
666 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
746 |
msgstr ""
|
747 |
|
748 |
#: admin/sidebar-view.php:57
|
749 |
+
msgid "Plugin homepage"
|
750 |
msgstr ""
|
751 |
|
752 |
#: admin/sidebar-view.php:58
|
languages/crp-es_ES.mo
CHANGED
Binary file
|
languages/crp-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -16,38 +16,34 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin/admin.php:
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Restablecer opciones originales"
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Index recreated"
|
44 |
msgstr "Recrear el Index"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
msgid "Contextual Related Posts"
|
48 |
-
msgstr "Posts Relacionados Contextualmente"
|
49 |
-
|
50 |
-
#: admin/admin.php:249
|
51 |
msgid "Related Posts"
|
52 |
msgstr "Post Relacionados"
|
53 |
|
@@ -90,22 +86,22 @@ msgstr ""
|
|
90 |
msgid "List tuning options"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
94 |
#, fuzzy
|
95 |
msgid "Output options"
|
96 |
msgstr "Opciones de Salida:"
|
97 |
|
98 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
99 |
#: includes/class-crp-widget.php:93
|
100 |
#, fuzzy
|
101 |
msgid "Thumbnail options"
|
102 |
msgstr "Opciones de miniaturas en el post:"
|
103 |
|
104 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
105 |
msgid "Styles"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
109 |
#, fuzzy
|
110 |
msgid "Feed options"
|
111 |
msgstr "Opciones:"
|
@@ -229,14 +225,14 @@ msgid ""
|
|
229 |
"in the list."
|
230 |
msgstr "Posts relacionados contextualmente"
|
231 |
|
232 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
233 |
-
#: admin/main-view.php:
|
234 |
-
#: admin/main-view.php:
|
235 |
#, fuzzy
|
236 |
msgid "Save Options"
|
237 |
msgstr "Opciones:"
|
238 |
|
239 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
240 |
msgid "Number of related posts to display: "
|
241 |
msgstr "Número de posts relacionados a mostrar:"
|
242 |
|
@@ -296,7 +292,7 @@ msgstr ""
|
|
296 |
msgid "List of post or page IDs to exclude from the results:"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
300 |
msgid ""
|
301 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
302 |
msgstr ""
|
@@ -312,34 +308,38 @@ msgid ""
|
|
312 |
"prompt you with options."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
316 |
msgid "Title of related posts:"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/main-view.php:
|
320 |
msgid ""
|
321 |
"This is the main heading of the related posts. You can also display the "
|
322 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
323 |
"Posts to %postname%</code>"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin/main-view.php:
|
327 |
msgid "When there are no posts, what should be shown?"
|
328 |
msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
|
329 |
|
330 |
-
#: admin/main-view.php:
|
331 |
msgid "Blank Output"
|
332 |
msgstr "Salida vacía"
|
333 |
|
334 |
-
#: admin/main-view.php:
|
335 |
msgid "Display:"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin/main-view.php:
|
339 |
msgid "Show post excerpt in list?"
|
340 |
msgstr "¿Mostrar extracto con los items?"
|
341 |
|
342 |
-
#: admin/main-view.php:
|
343 |
#, php-format
|
344 |
msgid ""
|
345 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -347,168 +347,168 @@ msgid ""
|
|
347 |
"automatic excerpt which refers to the first %d words of the post's content"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/main-view.php:
|
351 |
msgid ""
|
352 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
353 |
"is disabled."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/main-view.php:
|
357 |
msgid "Length of excerpt (in words):"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/main-view.php:
|
361 |
#, fuzzy
|
362 |
msgid "Show post author in list?"
|
363 |
msgstr "¿Mostrar extracto con los items?"
|
364 |
|
365 |
-
#: admin/main-view.php:
|
366 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin/main-view.php:
|
370 |
msgid ""
|
371 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
372 |
"disabled."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/main-view.php:
|
376 |
#, fuzzy
|
377 |
msgid "Show post date in list?"
|
378 |
msgstr "¿Mostrar extracto con los items?"
|
379 |
|
380 |
-
#: admin/main-view.php:
|
381 |
msgid ""
|
382 |
"Displays the date of the post. Uses the same date format set in General "
|
383 |
"Options"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/main-view.php:
|
387 |
msgid ""
|
388 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
389 |
"disabled."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin/main-view.php:
|
393 |
msgid "Limit post title length (in characters)"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid ""
|
398 |
"Any title longer than the number of characters set above will be cut and "
|
399 |
"appended with an ellipsis (…)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/main-view.php:
|
403 |
msgid "Open links in new window"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/main-view.php:
|
407 |
msgid "Add nofollow attribute to links in the list"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin/main-view.php:
|
411 |
#, fuzzy
|
412 |
msgid "Exclusion settings:"
|
413 |
msgstr "sitio del plugin"
|
414 |
|
415 |
-
#: admin/main-view.php:
|
416 |
#, fuzzy
|
417 |
msgid "Exclude display of related posts on these posts / pages"
|
418 |
msgstr "Agregar posts relacionados al feed"
|
419 |
|
420 |
-
#: admin/main-view.php:
|
421 |
#, fuzzy
|
422 |
msgid "Exclude display of related posts on these post types."
|
423 |
msgstr "Agregar posts relacionados al feed"
|
424 |
|
425 |
-
#: admin/main-view.php:
|
426 |
msgid ""
|
427 |
"The related posts will not display on any of the above selected post types"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: admin/main-view.php:
|
431 |
msgid "Customize the output:"
|
432 |
msgstr "Personalizar la salida:"
|
433 |
|
434 |
-
#: admin/main-view.php:
|
435 |
msgid "HTML to display before the list of posts: "
|
436 |
msgstr "HTML a mostrar antes de todos los items:"
|
437 |
|
438 |
-
#: admin/main-view.php:
|
439 |
msgid "HTML to display before each list item: "
|
440 |
msgstr "HTML a mostrar antes de cada item:"
|
441 |
|
442 |
-
#: admin/main-view.php:
|
443 |
msgid "HTML to display after each list item: "
|
444 |
msgstr "HTML a mostrar despues de cada item:"
|
445 |
|
446 |
-
#: admin/main-view.php:
|
447 |
msgid "HTML to display after the list of posts: "
|
448 |
msgstr "HTML a mostrar despues de todos los items:"
|
449 |
|
450 |
-
#: admin/main-view.php:
|
451 |
msgid "Location of post thumbnail:"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/main-view.php:
|
455 |
#, fuzzy
|
456 |
msgid "Display thumbnails inline with posts, before title"
|
457 |
msgstr "Miniaturas en línea con los posts"
|
458 |
|
459 |
-
#: admin/main-view.php:
|
460 |
#, fuzzy
|
461 |
msgid "Display thumbnails inline with posts, after title"
|
462 |
msgstr "Miniaturas en línea con los posts"
|
463 |
|
464 |
-
#: admin/main-view.php:
|
465 |
msgid "Display only thumbnails, no text"
|
466 |
msgstr "Solo miniaturas, sin texto"
|
467 |
|
468 |
-
#: admin/main-view.php:
|
469 |
msgid "Do not display thumbnails, only text."
|
470 |
msgstr "No mostrar miniaturas, solo texto."
|
471 |
|
472 |
-
#: admin/main-view.php:
|
473 |
msgid ""
|
474 |
"This setting cannot be changed because an inbuilt style has been selected "
|
475 |
"under the Styles section. If you would like to change this option, please "
|
476 |
"select <strong>No styles</strong> under the Styles section."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/main-view.php:
|
480 |
msgid "Thumbnail size:"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/main-view.php:
|
484 |
msgid "Custom size"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/main-view.php:
|
488 |
msgid "You can choose from existing image sizes above or create a custom size."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/main-view.php:
|
492 |
msgid ""
|
493 |
"If you choose an existing size, then the width, height and crop mode "
|
494 |
"settings in the three options below will be automatically updated to reflect "
|
495 |
"the correct dimensions of the setting."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/main-view.php:
|
499 |
msgid ""
|
500 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
501 |
"settings below. For best results, use a cropped image with the same width "
|
502 |
"and height. The default setting is 150x150 cropped image."
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/main-view.php:
|
506 |
msgid ""
|
507 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
508 |
"images."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin/main-view.php:
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -516,105 +516,109 @@ msgid ""
|
|
516 |
"all image sizes."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/main-view.php:
|
520 |
msgid "Width of the thumbnail:"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/main-view.php:
|
524 |
msgid "Height of the thumbnail: "
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/main-view.php:
|
528 |
msgid "Crop mode:"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/main-view.php:
|
532 |
msgid ""
|
533 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
534 |
"proportionately/soft crop the thumbnails."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: admin/main-view.php:
|
538 |
#, php-format
|
539 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/main-view.php:
|
543 |
msgid "Image size attributes:"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/main-view.php:
|
547 |
msgid "Style attributes are used for width and height."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/main-view.php:
|
551 |
msgid "HTML width and height attributes are used for width and height."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/main-view.php:
|
555 |
msgid "No HTML or Style attributes set for width and height"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/main-view.php:
|
559 |
#, fuzzy
|
560 |
msgid "Post thumbnail meta field name:"
|
561 |
msgstr "Opciones de miniaturas en el post:"
|
562 |
|
563 |
-
#: admin/main-view.php:
|
564 |
msgid ""
|
565 |
"The value of this field should contain a direct link to the image. This is "
|
566 |
"set in the meta box in the <em>Add New Post</em> screen."
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: admin/main-view.php:
|
570 |
msgid "Extract the first image from the post?"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: admin/main-view.php:
|
574 |
msgid ""
|
575 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
576 |
"specified in the meta field."
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/main-view.php:
|
580 |
msgid "Use default thumbnail?"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: admin/main-view.php:
|
584 |
msgid ""
|
585 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
586 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: admin/main-view.php:
|
590 |
#, fuzzy
|
591 |
msgid "Default thumbnail:"
|
592 |
msgstr "Opciones de Salida:"
|
593 |
|
594 |
-
#: admin/main-view.php:
|
|
|
595 |
msgid ""
|
596 |
-
"
|
597 |
-
"
|
598 |
-
"
|
599 |
msgstr ""
|
|
|
|
|
|
|
600 |
|
601 |
-
#: admin/main-view.php:
|
602 |
msgid "Style of the related posts:"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/main-view.php:
|
606 |
msgid "No styles"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/main-view.php:
|
610 |
msgid "Select this option if you plan to add your own styles"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: admin/main-view.php:
|
614 |
msgid "Rounded Thumbnails"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: admin/main-view.php:
|
618 |
msgid ""
|
619 |
"Enabling this option will turn on the thumbnails and set their width and "
|
620 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -622,66 +626,66 @@ msgid ""
|
|
622 |
"settings."
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: admin/main-view.php:
|
626 |
#, php-format
|
627 |
msgid ""
|
628 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/main-view.php:
|
632 |
msgid "Text only"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: admin/main-view.php:
|
636 |
msgid ""
|
637 |
"Enabling this option will disable thumbnails and no longer include the "
|
638 |
"default style sheet included in the plugin."
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/main-view.php:
|
642 |
msgid "Custom CSS to add to header:"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/main-view.php:
|
646 |
msgid ""
|
647 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
648 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
649 |
"\">FAQ</a> for available CSS classes to style."
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/main-view.php:
|
653 |
msgid ""
|
654 |
"Below options override the related posts settings for your blog feed. These "
|
655 |
"only apply if you have selected to add related posts to Feeds in the General "
|
656 |
"Options tab."
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: admin/main-view.php:
|
660 |
msgid "Maximum width of the thumbnail: "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: admin/main-view.php:
|
664 |
msgid "Maximum height of the thumbnail: "
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: admin/main-view.php:
|
668 |
#, fuzzy
|
669 |
msgid "Default Options"
|
670 |
msgstr "Opciones de Salida:"
|
671 |
|
672 |
-
#: admin/main-view.php:
|
673 |
msgid "Do you want to set options to Default?"
|
674 |
msgstr "¿Quieres resetear las opciones?"
|
675 |
|
676 |
-
#: admin/main-view.php:
|
677 |
msgid "Recreate Index"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: admin/main-view.php:
|
681 |
msgid "Are you sure you want to recreate the index?"
|
682 |
msgstr "¿Está seguro que quiere recrear el index?"
|
683 |
|
684 |
-
#: admin/main-view.php:
|
685 |
msgid ""
|
686 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
687 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -770,9 +774,8 @@ msgid "Quick links"
|
|
770 |
msgstr "Links rápidos"
|
771 |
|
772 |
#: admin/sidebar-view.php:57
|
773 |
-
|
774 |
-
|
775 |
-
msgstr "Posts relacionados contextualmente"
|
776 |
|
777 |
#: admin/sidebar-view.php:58
|
778 |
msgid "FAQ"
|
@@ -890,6 +893,13 @@ msgstr ""
|
|
890 |
msgid " by "
|
891 |
msgstr ""
|
892 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
893 |
#~ msgid "Options saved successfully."
|
894 |
#~ msgstr "Opciones guardadas correctament."
|
895 |
|
@@ -912,16 +922,6 @@ msgstr ""
|
|
912 |
#~ msgid "Length of excerpt (in words): "
|
913 |
#~ msgstr "Tamaño del extracto (en palabras):"
|
914 |
|
915 |
-
#, fuzzy
|
916 |
-
#~ msgid ""
|
917 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
918 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
919 |
-
#~ "it will show the default image as specified above."
|
920 |
-
#~ msgstr ""
|
921 |
-
#~ "El plugin primero verificará si el post contiene miniaturas. Si no tiene "
|
922 |
-
#~ "ninguno verificará el campo meta. Si no está disponible, entonces "
|
923 |
-
#~ "mostrará la imágen padrón especificada a continuación:"
|
924 |
-
|
925 |
#~ msgid "Post thumbnail options:"
|
926 |
#~ msgstr "Opciones de miniaturas en el post:"
|
927 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin/admin.php:190
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin/admin.php:193
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:196
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:199
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:223
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Restablecer opciones originales"
|
41 |
|
42 |
+
#: admin/admin.php:232
|
43 |
msgid "Index recreated"
|
44 |
msgstr "Recrear el Index"
|
45 |
|
46 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
47 |
msgid "Related Posts"
|
48 |
msgstr "Post Relacionados"
|
49 |
|
86 |
msgid "List tuning options"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
90 |
#, fuzzy
|
91 |
msgid "Output options"
|
92 |
msgstr "Opciones de Salida:"
|
93 |
|
94 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
95 |
#: includes/class-crp-widget.php:93
|
96 |
#, fuzzy
|
97 |
msgid "Thumbnail options"
|
98 |
msgstr "Opciones de miniaturas en el post:"
|
99 |
|
100 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
101 |
msgid "Styles"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
105 |
#, fuzzy
|
106 |
msgid "Feed options"
|
107 |
msgstr "Opciones:"
|
225 |
"in the list."
|
226 |
msgstr "Posts relacionados contextualmente"
|
227 |
|
228 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
229 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
230 |
+
#: admin/main-view.php:755
|
231 |
#, fuzzy
|
232 |
msgid "Save Options"
|
233 |
msgstr "Opciones:"
|
234 |
|
235 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
236 |
msgid "Number of related posts to display: "
|
237 |
msgstr "Número de posts relacionados a mostrar:"
|
238 |
|
292 |
msgid "List of post or page IDs to exclude from the results:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
296 |
msgid ""
|
297 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
298 |
msgstr ""
|
308 |
"prompt you with options."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin/main-view.php:214
|
312 |
+
msgid "Excluded category IDs are:"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: admin/main-view.php:255
|
316 |
msgid "Title of related posts:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/main-view.php:258
|
320 |
msgid ""
|
321 |
"This is the main heading of the related posts. You can also display the "
|
322 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
323 |
"Posts to %postname%</code>"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin/main-view.php:262
|
327 |
msgid "When there are no posts, what should be shown?"
|
328 |
msgstr "Cuando no hay posts, ¿Qué se debe mostrar?"
|
329 |
|
330 |
+
#: admin/main-view.php:266
|
331 |
msgid "Blank Output"
|
332 |
msgstr "Salida vacía"
|
333 |
|
334 |
+
#: admin/main-view.php:271
|
335 |
msgid "Display:"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
339 |
msgid "Show post excerpt in list?"
|
340 |
msgstr "¿Mostrar extracto con los items?"
|
341 |
|
342 |
+
#: admin/main-view.php:280
|
343 |
#, php-format
|
344 |
msgid ""
|
345 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
347 |
"automatic excerpt which refers to the first %d words of the post's content"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/main-view.php:283
|
351 |
msgid ""
|
352 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
353 |
"is disabled."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/main-view.php:288
|
357 |
msgid "Length of excerpt (in words):"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/main-view.php:294
|
361 |
#, fuzzy
|
362 |
msgid "Show post author in list?"
|
363 |
msgstr "¿Mostrar extracto con los items?"
|
364 |
|
365 |
+
#: admin/main-view.php:297
|
366 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin/main-view.php:300
|
370 |
msgid ""
|
371 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
372 |
"disabled."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin/main-view.php:305
|
376 |
#, fuzzy
|
377 |
msgid "Show post date in list?"
|
378 |
msgstr "¿Mostrar extracto con los items?"
|
379 |
|
380 |
+
#: admin/main-view.php:308
|
381 |
msgid ""
|
382 |
"Displays the date of the post. Uses the same date format set in General "
|
383 |
"Options"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/main-view.php:311
|
387 |
msgid ""
|
388 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
389 |
"disabled."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/main-view.php:316
|
393 |
msgid "Limit post title length (in characters)"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/main-view.php:319
|
397 |
msgid ""
|
398 |
"Any title longer than the number of characters set above will be cut and "
|
399 |
"appended with an ellipsis (…)"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin/main-view.php:323
|
403 |
msgid "Open links in new window"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin/main-view.php:329
|
407 |
msgid "Add nofollow attribute to links in the list"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/main-view.php:362
|
411 |
#, fuzzy
|
412 |
msgid "Exclusion settings:"
|
413 |
msgstr "sitio del plugin"
|
414 |
|
415 |
+
#: admin/main-view.php:364
|
416 |
#, fuzzy
|
417 |
msgid "Exclude display of related posts on these posts / pages"
|
418 |
msgstr "Agregar posts relacionados al feed"
|
419 |
|
420 |
+
#: admin/main-view.php:370
|
421 |
#, fuzzy
|
422 |
msgid "Exclude display of related posts on these post types."
|
423 |
msgstr "Agregar posts relacionados al feed"
|
424 |
|
425 |
+
#: admin/main-view.php:377
|
426 |
msgid ""
|
427 |
"The related posts will not display on any of the above selected post types"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: admin/main-view.php:407
|
431 |
msgid "Customize the output:"
|
432 |
msgstr "Personalizar la salida:"
|
433 |
|
434 |
+
#: admin/main-view.php:409
|
435 |
msgid "HTML to display before the list of posts: "
|
436 |
msgstr "HTML a mostrar antes de todos los items:"
|
437 |
|
438 |
+
#: admin/main-view.php:412
|
439 |
msgid "HTML to display before each list item: "
|
440 |
msgstr "HTML a mostrar antes de cada item:"
|
441 |
|
442 |
+
#: admin/main-view.php:415
|
443 |
msgid "HTML to display after each list item: "
|
444 |
msgstr "HTML a mostrar despues de cada item:"
|
445 |
|
446 |
+
#: admin/main-view.php:418
|
447 |
msgid "HTML to display after the list of posts: "
|
448 |
msgstr "HTML a mostrar despues de todos los items:"
|
449 |
|
450 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
451 |
msgid "Location of post thumbnail:"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
455 |
#, fuzzy
|
456 |
msgid "Display thumbnails inline with posts, before title"
|
457 |
msgstr "Miniaturas en línea con los posts"
|
458 |
|
459 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
460 |
#, fuzzy
|
461 |
msgid "Display thumbnails inline with posts, after title"
|
462 |
msgstr "Miniaturas en línea con los posts"
|
463 |
|
464 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
465 |
msgid "Display only thumbnails, no text"
|
466 |
msgstr "Solo miniaturas, sin texto"
|
467 |
|
468 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
469 |
msgid "Do not display thumbnails, only text."
|
470 |
msgstr "No mostrar miniaturas, solo texto."
|
471 |
|
472 |
+
#: admin/main-view.php:478
|
473 |
msgid ""
|
474 |
"This setting cannot be changed because an inbuilt style has been selected "
|
475 |
"under the Styles section. If you would like to change this option, please "
|
476 |
"select <strong>No styles</strong> under the Styles section."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/main-view.php:482
|
480 |
msgid "Thumbnail size:"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/main-view.php:506
|
484 |
msgid "Custom size"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/main-view.php:509
|
488 |
msgid "You can choose from existing image sizes above or create a custom size."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/main-view.php:510
|
492 |
msgid ""
|
493 |
"If you choose an existing size, then the width, height and crop mode "
|
494 |
"settings in the three options below will be automatically updated to reflect "
|
495 |
"the correct dimensions of the setting."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: admin/main-view.php:511
|
499 |
msgid ""
|
500 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
501 |
"settings below. For best results, use a cropped image with the same width "
|
502 |
"and height. The default setting is 150x150 cropped image."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/main-view.php:512
|
506 |
msgid ""
|
507 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
508 |
"images."
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/main-view.php:513
|
512 |
#, php-format
|
513 |
msgid ""
|
514 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
516 |
"all image sizes."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/main-view.php:517
|
520 |
msgid "Width of the thumbnail:"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/main-view.php:520
|
524 |
msgid "Height of the thumbnail: "
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/main-view.php:525
|
528 |
msgid "Crop mode:"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/main-view.php:529
|
532 |
msgid ""
|
533 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
534 |
"proportionately/soft crop the thumbnails."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/main-view.php:530
|
538 |
#, php-format
|
539 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: admin/main-view.php:534
|
543 |
msgid "Image size attributes:"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/main-view.php:538
|
547 |
msgid "Style attributes are used for width and height."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/main-view.php:543
|
551 |
msgid "HTML width and height attributes are used for width and height."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/main-view.php:548
|
555 |
msgid "No HTML or Style attributes set for width and height"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/main-view.php:553
|
559 |
#, fuzzy
|
560 |
msgid "Post thumbnail meta field name:"
|
561 |
msgstr "Opciones de miniaturas en el post:"
|
562 |
|
563 |
+
#: admin/main-view.php:555
|
564 |
msgid ""
|
565 |
"The value of this field should contain a direct link to the image. This is "
|
566 |
"set in the meta box in the <em>Add New Post</em> screen."
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: admin/main-view.php:558
|
570 |
msgid "Extract the first image from the post?"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: admin/main-view.php:560
|
574 |
msgid ""
|
575 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
576 |
"specified in the meta field."
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: admin/main-view.php:563
|
580 |
msgid "Use default thumbnail?"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: admin/main-view.php:565
|
584 |
msgid ""
|
585 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
586 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/main-view.php:568
|
590 |
#, fuzzy
|
591 |
msgid "Default thumbnail:"
|
592 |
msgstr "Opciones de Salida:"
|
593 |
|
594 |
+
#: admin/main-view.php:571
|
595 |
+
#, fuzzy
|
596 |
msgid ""
|
597 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
598 |
+
"then it will check the meta field. If this is not available, then it will "
|
599 |
+
"show the default image as specified above."
|
600 |
msgstr ""
|
601 |
+
"El plugin primero verificará si el post contiene miniaturas. Si no tiene "
|
602 |
+
"ninguno verificará el campo meta. Si no está disponible, entonces mostrará "
|
603 |
+
"la imágen padrón especificada a continuación:"
|
604 |
|
605 |
+
#: admin/main-view.php:612
|
606 |
msgid "Style of the related posts:"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: admin/main-view.php:615
|
610 |
msgid "No styles"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: admin/main-view.php:617
|
614 |
msgid "Select this option if you plan to add your own styles"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/main-view.php:621
|
618 |
msgid "Rounded Thumbnails"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/main-view.php:624
|
622 |
msgid ""
|
623 |
"Enabling this option will turn on the thumbnails and set their width and "
|
624 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
626 |
"settings."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/main-view.php:625
|
630 |
#, php-format
|
631 |
msgid ""
|
632 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/main-view.php:629
|
636 |
msgid "Text only"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:631
|
640 |
msgid ""
|
641 |
"Enabling this option will disable thumbnails and no longer include the "
|
642 |
"default style sheet included in the plugin."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/main-view.php:646
|
646 |
msgid "Custom CSS to add to header:"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/main-view.php:650
|
650 |
msgid ""
|
651 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
652 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
653 |
"\">FAQ</a> for available CSS classes to style."
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: admin/main-view.php:690
|
657 |
msgid ""
|
658 |
"Below options override the related posts settings for your blog feed. These "
|
659 |
"only apply if you have selected to add related posts to Feeds in the General "
|
660 |
"Options tab."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: admin/main-view.php:718
|
664 |
msgid "Maximum width of the thumbnail: "
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: admin/main-view.php:721
|
668 |
msgid "Maximum height of the thumbnail: "
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: admin/main-view.php:756
|
672 |
#, fuzzy
|
673 |
msgid "Default Options"
|
674 |
msgstr "Opciones de Salida:"
|
675 |
|
676 |
+
#: admin/main-view.php:756
|
677 |
msgid "Do you want to set options to Default?"
|
678 |
msgstr "¿Quieres resetear las opciones?"
|
679 |
|
680 |
+
#: admin/main-view.php:757
|
681 |
msgid "Recreate Index"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: admin/main-view.php:757
|
685 |
msgid "Are you sure you want to recreate the index?"
|
686 |
msgstr "¿Está seguro que quiere recrear el index?"
|
687 |
|
688 |
+
#: admin/main-view.php:762
|
689 |
msgid ""
|
690 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
691 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
774 |
msgstr "Links rápidos"
|
775 |
|
776 |
#: admin/sidebar-view.php:57
|
777 |
+
msgid "Plugin homepage"
|
778 |
+
msgstr ""
|
|
|
779 |
|
780 |
#: admin/sidebar-view.php:58
|
781 |
msgid "FAQ"
|
893 |
msgid " by "
|
894 |
msgstr ""
|
895 |
|
896 |
+
#~ msgid "Contextual Related Posts"
|
897 |
+
#~ msgstr "Posts Relacionados Contextualmente"
|
898 |
+
|
899 |
+
#, fuzzy
|
900 |
+
#~ msgid "Contextual Related Posts plugin page"
|
901 |
+
#~ msgstr "Posts relacionados contextualmente"
|
902 |
+
|
903 |
#~ msgid "Options saved successfully."
|
904 |
#~ msgstr "Opciones guardadas correctament."
|
905 |
|
922 |
#~ msgid "Length of excerpt (in words): "
|
923 |
#~ msgstr "Tamaño del extracto (en palabras):"
|
924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
925 |
#~ msgid "Post thumbnail options:"
|
926 |
#~ msgstr "Opciones de miniaturas en el post:"
|
927 |
|
languages/crp-fr_FR.mo
CHANGED
Binary file
|
languages/crp-fr_FR.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Contextual Related Posts\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
-
"POT-Creation-Date: 2015-09-
|
11 |
-
"PO-Revision-Date: 2015-09-
|
12 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
13 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/"
|
14 |
"contextual-related-posts/language/fr_FR/)\n"
|
@@ -23,38 +23,34 @@ msgstr ""
|
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
-
#: admin/admin.php:
|
27 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid ""
|
32 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
33 |
"displayed."
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin/admin.php:
|
37 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/admin.php:
|
41 |
#, php-format
|
42 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: admin/admin.php:
|
46 |
msgid "Options set to Default."
|
47 |
msgstr "Options remises à la valeur par défaut."
|
48 |
|
49 |
-
#: admin/admin.php:
|
50 |
msgid "Index recreated"
|
51 |
msgstr "Index recrée"
|
52 |
|
53 |
-
#: admin/admin.php:
|
54 |
-
msgid "Contextual Related Posts"
|
55 |
-
msgstr "Articles relatifs contextuels"
|
56 |
-
|
57 |
-
#: admin/admin.php:249
|
58 |
msgid "Related Posts"
|
59 |
msgstr "Articles relatifs"
|
60 |
|
@@ -98,20 +94,20 @@ msgstr "Options générales"
|
|
98 |
msgid "List tuning options"
|
99 |
msgstr "Liste des options de réglages"
|
100 |
|
101 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
102 |
msgid "Output options"
|
103 |
msgstr "Options de sortie"
|
104 |
|
105 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
106 |
#: includes/class-crp-widget.php:93
|
107 |
msgid "Thumbnail options"
|
108 |
msgstr "Options de la miniature"
|
109 |
|
110 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
111 |
msgid "Styles"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
115 |
msgid "Feed options"
|
116 |
msgstr "Options du flux"
|
117 |
|
@@ -235,13 +231,13 @@ msgstr ""
|
|
235 |
"Ajoute un lien nofollow vers la page d'accueil de Contextual Related Posts "
|
236 |
"comme la dernière fois dans la liste."
|
237 |
|
238 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
239 |
-
#: admin/main-view.php:
|
240 |
-
#: admin/main-view.php:
|
241 |
msgid "Save Options"
|
242 |
msgstr "Sauvegarder les options"
|
243 |
|
244 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
245 |
msgid "Number of related posts to display: "
|
246 |
msgstr "Nombre d'articles relatifs à afficher :"
|
247 |
|
@@ -305,7 +301,7 @@ msgstr ""
|
|
305 |
msgid "List of post or page IDs to exclude from the results:"
|
306 |
msgstr "La liste des IDs d'articles ou de pages à exclure des résultats :"
|
307 |
|
308 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
309 |
msgid ""
|
310 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
311 |
msgstr ""
|
@@ -326,11 +322,15 @@ msgstr ""
|
|
326 |
"possède l'auto-remplissage, commencez à remplir le début du nom de la "
|
327 |
"catégorie pour voir des résultats s'afficher."
|
328 |
|
329 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
330 |
msgid "Title of related posts:"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: admin/main-view.php:
|
334 |
msgid ""
|
335 |
"This is the main heading of the related posts. You can also display the "
|
336 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
@@ -340,23 +340,23 @@ msgstr ""
|
|
340 |
"afficher le titre de l'article en utilisant <code>%postname%</code>. p.ex. "
|
341 |
"<code>Articles relatifs à %postname%</code>"
|
342 |
|
343 |
-
#: admin/main-view.php:
|
344 |
msgid "When there are no posts, what should be shown?"
|
345 |
msgstr "Quand il n'y a aucun article, qu'est-ce qui doit être affiché ?"
|
346 |
|
347 |
-
#: admin/main-view.php:
|
348 |
msgid "Blank Output"
|
349 |
msgstr "Sortie vide"
|
350 |
|
351 |
-
#: admin/main-view.php:
|
352 |
msgid "Display:"
|
353 |
msgstr "Affichage :"
|
354 |
|
355 |
-
#: admin/main-view.php:
|
356 |
msgid "Show post excerpt in list?"
|
357 |
msgstr "Afficher l'extrait de l'article en liste ?"
|
358 |
|
359 |
-
#: admin/main-view.php:
|
360 |
#, php-format
|
361 |
msgid ""
|
362 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -368,36 +368,36 @@ msgstr ""
|
|
368 |
"extrait automatique sera affiché qui prendra en compte les premiers %d mots "
|
369 |
"du contenu de celui-ci."
|
370 |
|
371 |
-
#: admin/main-view.php:
|
372 |
msgid ""
|
373 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
374 |
"is disabled."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/main-view.php:
|
378 |
msgid "Length of excerpt (in words):"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/main-view.php:
|
382 |
msgid "Show post author in list?"
|
383 |
msgstr "Afficher l'auteur de l'article en liste ?"
|
384 |
|
385 |
-
#: admin/main-view.php:
|
386 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
387 |
msgstr ""
|
388 |
"Affiche le nom de l'auteur préfixé avec \"de\". p.ex. de Pierre Paul Jacques"
|
389 |
|
390 |
-
#: admin/main-view.php:
|
391 |
msgid ""
|
392 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
393 |
"disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid "Show post date in list?"
|
398 |
msgstr "Afficher la date de l'article en liste ?"
|
399 |
|
400 |
-
#: admin/main-view.php:
|
401 |
msgid ""
|
402 |
"Displays the date of the post. Uses the same date format set in General "
|
403 |
"Options"
|
@@ -405,129 +405,129 @@ msgstr ""
|
|
405 |
"Affiche la date de l'article. Utilise le même format que celui de vos "
|
406 |
"options générales"
|
407 |
|
408 |
-
#: admin/main-view.php:
|
409 |
msgid ""
|
410 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
411 |
"disabled."
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
msgid "Limit post title length (in characters)"
|
416 |
msgstr "Limiter la longueur du titre de l'article (en caractères)"
|
417 |
|
418 |
-
#: admin/main-view.php:
|
419 |
msgid ""
|
420 |
"Any title longer than the number of characters set above will be cut and "
|
421 |
"appended with an ellipsis (…)"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/main-view.php:
|
425 |
msgid "Open links in new window"
|
426 |
msgstr "Ouvrir les liens dans une nouvelle fenêtre"
|
427 |
|
428 |
-
#: admin/main-view.php:
|
429 |
msgid "Add nofollow attribute to links in the list"
|
430 |
msgstr "Ajouter un attribut de nofollow aux liens de la liste"
|
431 |
|
432 |
-
#: admin/main-view.php:
|
433 |
msgid "Exclusion settings:"
|
434 |
msgstr "Réglages d'exclusion :"
|
435 |
|
436 |
-
#: admin/main-view.php:
|
437 |
msgid "Exclude display of related posts on these posts / pages"
|
438 |
msgstr "Exclure l'affichage des articles relatifs sur ces articles / pages"
|
439 |
|
440 |
-
#: admin/main-view.php:
|
441 |
msgid "Exclude display of related posts on these post types."
|
442 |
msgstr "Exclure l'affichage des articles relatifs sur ces types d'articles."
|
443 |
|
444 |
-
#: admin/main-view.php:
|
445 |
msgid ""
|
446 |
"The related posts will not display on any of the above selected post types"
|
447 |
msgstr ""
|
448 |
"Les articles relatifs ne seront pas affichés sur aucun des types d'articles "
|
449 |
"ci-dessus "
|
450 |
|
451 |
-
#: admin/main-view.php:
|
452 |
msgid "Customize the output:"
|
453 |
msgstr "Personnaliser la sortie :"
|
454 |
|
455 |
-
#: admin/main-view.php:
|
456 |
msgid "HTML to display before the list of posts: "
|
457 |
msgstr "HTML à afficher avant la liste des articles :"
|
458 |
|
459 |
-
#: admin/main-view.php:
|
460 |
msgid "HTML to display before each list item: "
|
461 |
msgstr "HTML à afficher avant chaque élément de la liste :"
|
462 |
|
463 |
-
#: admin/main-view.php:
|
464 |
msgid "HTML to display after each list item: "
|
465 |
msgstr "HTML à afficher après chaque élément de la liste :"
|
466 |
|
467 |
-
#: admin/main-view.php:
|
468 |
msgid "HTML to display after the list of posts: "
|
469 |
msgstr "HTML à afficher après la liste d'articles :"
|
470 |
|
471 |
-
#: admin/main-view.php:
|
472 |
msgid "Location of post thumbnail:"
|
473 |
msgstr "Emplacement de la miniature de l'article :"
|
474 |
|
475 |
-
#: admin/main-view.php:
|
476 |
msgid "Display thumbnails inline with posts, before title"
|
477 |
msgstr "Afficher les miniatures avec l'article, avant le titre"
|
478 |
|
479 |
-
#: admin/main-view.php:
|
480 |
msgid "Display thumbnails inline with posts, after title"
|
481 |
msgstr "Afficher les miniatures avec l'article, après le titre"
|
482 |
|
483 |
-
#: admin/main-view.php:
|
484 |
msgid "Display only thumbnails, no text"
|
485 |
msgstr "Que les miniatures, pas de texte"
|
486 |
|
487 |
-
#: admin/main-view.php:
|
488 |
msgid "Do not display thumbnails, only text."
|
489 |
msgstr "Pas de miniature, que le texte"
|
490 |
|
491 |
-
#: admin/main-view.php:
|
492 |
msgid ""
|
493 |
"This setting cannot be changed because an inbuilt style has been selected "
|
494 |
"under the Styles section. If you would like to change this option, please "
|
495 |
"select <strong>No styles</strong> under the Styles section."
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/main-view.php:
|
499 |
msgid "Thumbnail size:"
|
500 |
msgstr "Taille des miniatures :"
|
501 |
|
502 |
-
#: admin/main-view.php:
|
503 |
msgid "Custom size"
|
504 |
msgstr "Taille personnalisée"
|
505 |
|
506 |
-
#: admin/main-view.php:
|
507 |
msgid "You can choose from existing image sizes above or create a custom size."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/main-view.php:
|
511 |
msgid ""
|
512 |
"If you choose an existing size, then the width, height and crop mode "
|
513 |
"settings in the three options below will be automatically updated to reflect "
|
514 |
"the correct dimensions of the setting."
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/main-view.php:
|
518 |
msgid ""
|
519 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
520 |
"settings below. For best results, use a cropped image with the same width "
|
521 |
"and height. The default setting is 150x150 cropped image."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/main-view.php:
|
525 |
msgid ""
|
526 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
527 |
"images."
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/main-view.php:
|
531 |
#, php-format
|
532 |
msgid ""
|
533 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -535,19 +535,19 @@ msgid ""
|
|
535 |
"all image sizes."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/main-view.php:
|
539 |
msgid "Width of the thumbnail:"
|
540 |
msgstr "Largeur des miniatures :"
|
541 |
|
542 |
-
#: admin/main-view.php:
|
543 |
msgid "Height of the thumbnail: "
|
544 |
msgstr "Hauteur des miniatures :"
|
545 |
|
546 |
-
#: admin/main-view.php:
|
547 |
msgid "Crop mode:"
|
548 |
msgstr "Mode de recadrage:"
|
549 |
|
550 |
-
#: admin/main-view.php:
|
551 |
msgid ""
|
552 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
553 |
"proportionately/soft crop the thumbnails."
|
@@ -555,45 +555,45 @@ msgstr ""
|
|
555 |
"Par défaut, les miniatures seront recadrées de façon non proportionnée. "
|
556 |
"Décochez cette case pour recadrer de façon proportionnée les miniatures. "
|
557 |
|
558 |
-
#: admin/main-view.php:
|
559 |
#, php-format
|
560 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
561 |
msgstr ""
|
562 |
"<a href='%s' target='_blank'>La différence entre le soft le hard crop</a>"
|
563 |
|
564 |
-
#: admin/main-view.php:
|
565 |
msgid "Image size attributes:"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/main-view.php:
|
569 |
msgid "Style attributes are used for width and height."
|
570 |
msgstr "Les attributs de style sont utilisés pour la hauteur et la largeur."
|
571 |
|
572 |
-
#: admin/main-view.php:
|
573 |
msgid "HTML width and height attributes are used for width and height."
|
574 |
msgstr ""
|
575 |
"Les attributs HTML de hauteur et largeur sont utilisés pour la hauteur et la "
|
576 |
"largeur."
|
577 |
|
578 |
-
#: admin/main-view.php:
|
579 |
msgid "No HTML or Style attributes set for width and height"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/main-view.php:
|
583 |
msgid "Post thumbnail meta field name:"
|
584 |
msgstr "Nom du champ méta de la miniature de l'article"
|
585 |
|
586 |
-
#: admin/main-view.php:
|
587 |
msgid ""
|
588 |
"The value of this field should contain a direct link to the image. This is "
|
589 |
"set in the meta box in the <em>Add New Post</em> screen."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/main-view.php:
|
593 |
msgid "Extract the first image from the post?"
|
594 |
msgstr "Extraire la première image de l'article ?"
|
595 |
|
596 |
-
#: admin/main-view.php:
|
597 |
msgid ""
|
598 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
599 |
"specified in the meta field."
|
@@ -601,11 +601,11 @@ msgstr ""
|
|
601 |
"Cela se produit uniquement que s'il n'y a aucune miniature d'article et "
|
602 |
"qu'aucune URL d'image n'est spécifiée dans le champ des métadonnées."
|
603 |
|
604 |
-
#: admin/main-view.php:
|
605 |
msgid "Use default thumbnail?"
|
606 |
msgstr "Utiliser la miniature par défaut ?"
|
607 |
|
608 |
-
#: admin/main-view.php:
|
609 |
msgid ""
|
610 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
611 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -614,34 +614,38 @@ msgstr ""
|
|
614 |
"dessous est utilisée. Si décoché et qu'aucune miniature n'est trouvée, "
|
615 |
"aucune image ne sera affichée."
|
616 |
|
617 |
-
#: admin/main-view.php:
|
618 |
msgid "Default thumbnail:"
|
619 |
msgstr "Miniature par défaut"
|
620 |
|
621 |
-
#: admin/main-view.php:
|
622 |
msgid ""
|
623 |
-
"
|
624 |
-
"
|
625 |
-
"
|
626 |
msgstr ""
|
|
|
|
|
|
|
|
|
627 |
|
628 |
-
#: admin/main-view.php:
|
629 |
msgid "Style of the related posts:"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/main-view.php:
|
633 |
msgid "No styles"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/main-view.php:
|
637 |
msgid "Select this option if you plan to add your own styles"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
msgid "Rounded Thumbnails"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/main-view.php:
|
645 |
msgid ""
|
646 |
"Enabling this option will turn on the thumbnails and set their width and "
|
647 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -653,27 +657,27 @@ msgstr ""
|
|
653 |
"l'affichage de l'auteur, l'extrait et de la date s'ils sont déjà activés. La "
|
654 |
"désactivation de cette option ne réinitialisera aucun réglage."
|
655 |
|
656 |
-
#: admin/main-view.php:
|
657 |
#, php-format
|
658 |
msgid ""
|
659 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/main-view.php:
|
663 |
msgid "Text only"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: admin/main-view.php:
|
667 |
msgid ""
|
668 |
"Enabling this option will disable thumbnails and no longer include the "
|
669 |
"default style sheet included in the plugin."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: admin/main-view.php:
|
673 |
msgid "Custom CSS to add to header:"
|
674 |
msgstr "CSS personnalisé a ajouter dans l'en-tête :"
|
675 |
|
676 |
-
#: admin/main-view.php:
|
677 |
msgid ""
|
678 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
679 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
@@ -683,7 +687,7 @@ msgstr ""
|
|
683 |
"\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
|
684 |
"\"_blank\">FAQ</a> pour connaitre les classes de style CSS disponibles."
|
685 |
|
686 |
-
#: admin/main-view.php:
|
687 |
msgid ""
|
688 |
"Below options override the related posts settings for your blog feed. These "
|
689 |
"only apply if you have selected to add related posts to Feeds in the General "
|
@@ -693,31 +697,31 @@ msgstr ""
|
|
693 |
"les flux de votre blog. Celles-ci ne s'appliquent si vous avez choisi "
|
694 |
"d'ajouter des articles relatifs à vos flux dans l'onglet Options générales."
|
695 |
|
696 |
-
#: admin/main-view.php:
|
697 |
msgid "Maximum width of the thumbnail: "
|
698 |
msgstr "Largeur maximale de la miniature :"
|
699 |
|
700 |
-
#: admin/main-view.php:
|
701 |
msgid "Maximum height of the thumbnail: "
|
702 |
msgstr "Hauteur maximale de la miniature :"
|
703 |
|
704 |
-
#: admin/main-view.php:
|
705 |
msgid "Default Options"
|
706 |
msgstr "options par défaut"
|
707 |
|
708 |
-
#: admin/main-view.php:
|
709 |
msgid "Do you want to set options to Default?"
|
710 |
msgstr "Voulez-vous réinitialiser les options à leurs valeurs par défaut ?"
|
711 |
|
712 |
-
#: admin/main-view.php:
|
713 |
msgid "Recreate Index"
|
714 |
msgstr "Recréer l'index"
|
715 |
|
716 |
-
#: admin/main-view.php:
|
717 |
msgid "Are you sure you want to recreate the index?"
|
718 |
msgstr "Voulez-vous vraiment recréer l'index ?"
|
719 |
|
720 |
-
#: admin/main-view.php:
|
721 |
msgid ""
|
722 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
723 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -806,8 +810,8 @@ msgid "Quick links"
|
|
806 |
msgstr "Liens rapides"
|
807 |
|
808 |
#: admin/sidebar-view.php:57
|
809 |
-
msgid "
|
810 |
-
msgstr "
|
811 |
|
812 |
#: admin/sidebar-view.php:58
|
813 |
msgid "FAQ"
|
@@ -915,6 +919,12 @@ msgstr "L'argument filter est devenu obsolète"
|
|
915 |
msgid " by "
|
916 |
msgstr " par"
|
917 |
|
|
|
|
|
|
|
|
|
|
|
|
|
918 |
#~ msgid "Options saved successfully."
|
919 |
#~ msgstr "Options sauvegardées avec succès."
|
920 |
|
@@ -1006,16 +1016,6 @@ msgstr " par"
|
|
1006 |
#~ "La valeur de ce champ doit contenir la source de l'image et se trouve "
|
1007 |
#~ "dans l'écran <em>Ajouter un nouvel article</em>"
|
1008 |
|
1009 |
-
#~ msgid ""
|
1010 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
1011 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
1012 |
-
#~ "it will show the default image as specified above."
|
1013 |
-
#~ msgstr ""
|
1014 |
-
#~ "L'extension va d'abord vérifier si l'article contient une miniature. Si "
|
1015 |
-
#~ "ce n'est pas le cas alors elle vérifie les métadonnées. Si aucune n'est "
|
1016 |
-
#~ "toujours disponible, alors elle affichera l'image par défaut comme "
|
1017 |
-
#~ "indiquée ci-dessus."
|
1018 |
-
|
1019 |
#~ msgid "Use default style included in the plugin?"
|
1020 |
#~ msgstr "Utiliser les styles par défaut inclus dans l'extension ?"
|
1021 |
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Contextual Related Posts\n"
|
9 |
"Report-Msgid-Bugs-To: \n"
|
10 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
11 |
+
"PO-Revision-Date: 2015-09-05 11:13+0100\n"
|
12 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
13 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/"
|
14 |
"contextual-related-posts/language/fr_FR/)\n"
|
23 |
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
|
26 |
+
#: admin/admin.php:190
|
27 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin/admin.php:193
|
31 |
msgid ""
|
32 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
33 |
"displayed."
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: admin/admin.php:196
|
37 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: admin/admin.php:199
|
41 |
#, php-format
|
42 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: admin/admin.php:223
|
46 |
msgid "Options set to Default."
|
47 |
msgstr "Options remises à la valeur par défaut."
|
48 |
|
49 |
+
#: admin/admin.php:232
|
50 |
msgid "Index recreated"
|
51 |
msgstr "Index recrée"
|
52 |
|
53 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
54 |
msgid "Related Posts"
|
55 |
msgstr "Articles relatifs"
|
56 |
|
94 |
msgid "List tuning options"
|
95 |
msgstr "Liste des options de réglages"
|
96 |
|
97 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
98 |
msgid "Output options"
|
99 |
msgstr "Options de sortie"
|
100 |
|
101 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
102 |
#: includes/class-crp-widget.php:93
|
103 |
msgid "Thumbnail options"
|
104 |
msgstr "Options de la miniature"
|
105 |
|
106 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
107 |
msgid "Styles"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
111 |
msgid "Feed options"
|
112 |
msgstr "Options du flux"
|
113 |
|
231 |
"Ajoute un lien nofollow vers la page d'accueil de Contextual Related Posts "
|
232 |
"comme la dernière fois dans la liste."
|
233 |
|
234 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
235 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
236 |
+
#: admin/main-view.php:755
|
237 |
msgid "Save Options"
|
238 |
msgstr "Sauvegarder les options"
|
239 |
|
240 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
241 |
msgid "Number of related posts to display: "
|
242 |
msgstr "Nombre d'articles relatifs à afficher :"
|
243 |
|
301 |
msgid "List of post or page IDs to exclude from the results:"
|
302 |
msgstr "La liste des IDs d'articles ou de pages à exclure des résultats :"
|
303 |
|
304 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
305 |
msgid ""
|
306 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
307 |
msgstr ""
|
322 |
"possède l'auto-remplissage, commencez à remplir le début du nom de la "
|
323 |
"catégorie pour voir des résultats s'afficher."
|
324 |
|
325 |
+
#: admin/main-view.php:214
|
326 |
+
msgid "Excluded category IDs are:"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: admin/main-view.php:255
|
330 |
msgid "Title of related posts:"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin/main-view.php:258
|
334 |
msgid ""
|
335 |
"This is the main heading of the related posts. You can also display the "
|
336 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
340 |
"afficher le titre de l'article en utilisant <code>%postname%</code>. p.ex. "
|
341 |
"<code>Articles relatifs à %postname%</code>"
|
342 |
|
343 |
+
#: admin/main-view.php:262
|
344 |
msgid "When there are no posts, what should be shown?"
|
345 |
msgstr "Quand il n'y a aucun article, qu'est-ce qui doit être affiché ?"
|
346 |
|
347 |
+
#: admin/main-view.php:266
|
348 |
msgid "Blank Output"
|
349 |
msgstr "Sortie vide"
|
350 |
|
351 |
+
#: admin/main-view.php:271
|
352 |
msgid "Display:"
|
353 |
msgstr "Affichage :"
|
354 |
|
355 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
356 |
msgid "Show post excerpt in list?"
|
357 |
msgstr "Afficher l'extrait de l'article en liste ?"
|
358 |
|
359 |
+
#: admin/main-view.php:280
|
360 |
#, php-format
|
361 |
msgid ""
|
362 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
368 |
"extrait automatique sera affiché qui prendra en compte les premiers %d mots "
|
369 |
"du contenu de celui-ci."
|
370 |
|
371 |
+
#: admin/main-view.php:283
|
372 |
msgid ""
|
373 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
374 |
"is disabled."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin/main-view.php:288
|
378 |
msgid "Length of excerpt (in words):"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/main-view.php:294
|
382 |
msgid "Show post author in list?"
|
383 |
msgstr "Afficher l'auteur de l'article en liste ?"
|
384 |
|
385 |
+
#: admin/main-view.php:297
|
386 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
387 |
msgstr ""
|
388 |
"Affiche le nom de l'auteur préfixé avec \"de\". p.ex. de Pierre Paul Jacques"
|
389 |
|
390 |
+
#: admin/main-view.php:300
|
391 |
msgid ""
|
392 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
393 |
"disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/main-view.php:305
|
397 |
msgid "Show post date in list?"
|
398 |
msgstr "Afficher la date de l'article en liste ?"
|
399 |
|
400 |
+
#: admin/main-view.php:308
|
401 |
msgid ""
|
402 |
"Displays the date of the post. Uses the same date format set in General "
|
403 |
"Options"
|
405 |
"Affiche la date de l'article. Utilise le même format que celui de vos "
|
406 |
"options générales"
|
407 |
|
408 |
+
#: admin/main-view.php:311
|
409 |
msgid ""
|
410 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
411 |
"disabled."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/main-view.php:316
|
415 |
msgid "Limit post title length (in characters)"
|
416 |
msgstr "Limiter la longueur du titre de l'article (en caractères)"
|
417 |
|
418 |
+
#: admin/main-view.php:319
|
419 |
msgid ""
|
420 |
"Any title longer than the number of characters set above will be cut and "
|
421 |
"appended with an ellipsis (…)"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin/main-view.php:323
|
425 |
msgid "Open links in new window"
|
426 |
msgstr "Ouvrir les liens dans une nouvelle fenêtre"
|
427 |
|
428 |
+
#: admin/main-view.php:329
|
429 |
msgid "Add nofollow attribute to links in the list"
|
430 |
msgstr "Ajouter un attribut de nofollow aux liens de la liste"
|
431 |
|
432 |
+
#: admin/main-view.php:362
|
433 |
msgid "Exclusion settings:"
|
434 |
msgstr "Réglages d'exclusion :"
|
435 |
|
436 |
+
#: admin/main-view.php:364
|
437 |
msgid "Exclude display of related posts on these posts / pages"
|
438 |
msgstr "Exclure l'affichage des articles relatifs sur ces articles / pages"
|
439 |
|
440 |
+
#: admin/main-view.php:370
|
441 |
msgid "Exclude display of related posts on these post types."
|
442 |
msgstr "Exclure l'affichage des articles relatifs sur ces types d'articles."
|
443 |
|
444 |
+
#: admin/main-view.php:377
|
445 |
msgid ""
|
446 |
"The related posts will not display on any of the above selected post types"
|
447 |
msgstr ""
|
448 |
"Les articles relatifs ne seront pas affichés sur aucun des types d'articles "
|
449 |
"ci-dessus "
|
450 |
|
451 |
+
#: admin/main-view.php:407
|
452 |
msgid "Customize the output:"
|
453 |
msgstr "Personnaliser la sortie :"
|
454 |
|
455 |
+
#: admin/main-view.php:409
|
456 |
msgid "HTML to display before the list of posts: "
|
457 |
msgstr "HTML à afficher avant la liste des articles :"
|
458 |
|
459 |
+
#: admin/main-view.php:412
|
460 |
msgid "HTML to display before each list item: "
|
461 |
msgstr "HTML à afficher avant chaque élément de la liste :"
|
462 |
|
463 |
+
#: admin/main-view.php:415
|
464 |
msgid "HTML to display after each list item: "
|
465 |
msgstr "HTML à afficher après chaque élément de la liste :"
|
466 |
|
467 |
+
#: admin/main-view.php:418
|
468 |
msgid "HTML to display after the list of posts: "
|
469 |
msgstr "HTML à afficher après la liste d'articles :"
|
470 |
|
471 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
472 |
msgid "Location of post thumbnail:"
|
473 |
msgstr "Emplacement de la miniature de l'article :"
|
474 |
|
475 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
476 |
msgid "Display thumbnails inline with posts, before title"
|
477 |
msgstr "Afficher les miniatures avec l'article, avant le titre"
|
478 |
|
479 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
480 |
msgid "Display thumbnails inline with posts, after title"
|
481 |
msgstr "Afficher les miniatures avec l'article, après le titre"
|
482 |
|
483 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
484 |
msgid "Display only thumbnails, no text"
|
485 |
msgstr "Que les miniatures, pas de texte"
|
486 |
|
487 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
488 |
msgid "Do not display thumbnails, only text."
|
489 |
msgstr "Pas de miniature, que le texte"
|
490 |
|
491 |
+
#: admin/main-view.php:478
|
492 |
msgid ""
|
493 |
"This setting cannot be changed because an inbuilt style has been selected "
|
494 |
"under the Styles section. If you would like to change this option, please "
|
495 |
"select <strong>No styles</strong> under the Styles section."
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: admin/main-view.php:482
|
499 |
msgid "Thumbnail size:"
|
500 |
msgstr "Taille des miniatures :"
|
501 |
|
502 |
+
#: admin/main-view.php:506
|
503 |
msgid "Custom size"
|
504 |
msgstr "Taille personnalisée"
|
505 |
|
506 |
+
#: admin/main-view.php:509
|
507 |
msgid "You can choose from existing image sizes above or create a custom size."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: admin/main-view.php:510
|
511 |
msgid ""
|
512 |
"If you choose an existing size, then the width, height and crop mode "
|
513 |
"settings in the three options below will be automatically updated to reflect "
|
514 |
"the correct dimensions of the setting."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: admin/main-view.php:511
|
518 |
msgid ""
|
519 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
520 |
"settings below. For best results, use a cropped image with the same width "
|
521 |
"and height. The default setting is 150x150 cropped image."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/main-view.php:512
|
525 |
msgid ""
|
526 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
527 |
"images."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/main-view.php:513
|
531 |
#, php-format
|
532 |
msgid ""
|
533 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
535 |
"all image sizes."
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: admin/main-view.php:517
|
539 |
msgid "Width of the thumbnail:"
|
540 |
msgstr "Largeur des miniatures :"
|
541 |
|
542 |
+
#: admin/main-view.php:520
|
543 |
msgid "Height of the thumbnail: "
|
544 |
msgstr "Hauteur des miniatures :"
|
545 |
|
546 |
+
#: admin/main-view.php:525
|
547 |
msgid "Crop mode:"
|
548 |
msgstr "Mode de recadrage:"
|
549 |
|
550 |
+
#: admin/main-view.php:529
|
551 |
msgid ""
|
552 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
553 |
"proportionately/soft crop the thumbnails."
|
555 |
"Par défaut, les miniatures seront recadrées de façon non proportionnée. "
|
556 |
"Décochez cette case pour recadrer de façon proportionnée les miniatures. "
|
557 |
|
558 |
+
#: admin/main-view.php:530
|
559 |
#, php-format
|
560 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
561 |
msgstr ""
|
562 |
"<a href='%s' target='_blank'>La différence entre le soft le hard crop</a>"
|
563 |
|
564 |
+
#: admin/main-view.php:534
|
565 |
msgid "Image size attributes:"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/main-view.php:538
|
569 |
msgid "Style attributes are used for width and height."
|
570 |
msgstr "Les attributs de style sont utilisés pour la hauteur et la largeur."
|
571 |
|
572 |
+
#: admin/main-view.php:543
|
573 |
msgid "HTML width and height attributes are used for width and height."
|
574 |
msgstr ""
|
575 |
"Les attributs HTML de hauteur et largeur sont utilisés pour la hauteur et la "
|
576 |
"largeur."
|
577 |
|
578 |
+
#: admin/main-view.php:548
|
579 |
msgid "No HTML or Style attributes set for width and height"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/main-view.php:553
|
583 |
msgid "Post thumbnail meta field name:"
|
584 |
msgstr "Nom du champ méta de la miniature de l'article"
|
585 |
|
586 |
+
#: admin/main-view.php:555
|
587 |
msgid ""
|
588 |
"The value of this field should contain a direct link to the image. This is "
|
589 |
"set in the meta box in the <em>Add New Post</em> screen."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/main-view.php:558
|
593 |
msgid "Extract the first image from the post?"
|
594 |
msgstr "Extraire la première image de l'article ?"
|
595 |
|
596 |
+
#: admin/main-view.php:560
|
597 |
msgid ""
|
598 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
599 |
"specified in the meta field."
|
601 |
"Cela se produit uniquement que s'il n'y a aucune miniature d'article et "
|
602 |
"qu'aucune URL d'image n'est spécifiée dans le champ des métadonnées."
|
603 |
|
604 |
+
#: admin/main-view.php:563
|
605 |
msgid "Use default thumbnail?"
|
606 |
msgstr "Utiliser la miniature par défaut ?"
|
607 |
|
608 |
+
#: admin/main-view.php:565
|
609 |
msgid ""
|
610 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
611 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
614 |
"dessous est utilisée. Si décoché et qu'aucune miniature n'est trouvée, "
|
615 |
"aucune image ne sera affichée."
|
616 |
|
617 |
+
#: admin/main-view.php:568
|
618 |
msgid "Default thumbnail:"
|
619 |
msgstr "Miniature par défaut"
|
620 |
|
621 |
+
#: admin/main-view.php:571
|
622 |
msgid ""
|
623 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
624 |
+
"then it will check the meta field. If this is not available, then it will "
|
625 |
+
"show the default image as specified above."
|
626 |
msgstr ""
|
627 |
+
"L'extension va d'abord vérifier si l'article contient une miniature. Si ce "
|
628 |
+
"n'est pas le cas alors elle vérifie les métadonnées. Si aucune n'est "
|
629 |
+
"toujours disponible, alors elle affichera l'image par défaut comme indiquée "
|
630 |
+
"ci-dessus."
|
631 |
|
632 |
+
#: admin/main-view.php:612
|
633 |
msgid "Style of the related posts:"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/main-view.php:615
|
637 |
msgid "No styles"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/main-view.php:617
|
641 |
msgid "Select this option if you plan to add your own styles"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/main-view.php:621
|
645 |
msgid "Rounded Thumbnails"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: admin/main-view.php:624
|
649 |
msgid ""
|
650 |
"Enabling this option will turn on the thumbnails and set their width and "
|
651 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
657 |
"l'affichage de l'auteur, l'extrait et de la date s'ils sont déjà activés. La "
|
658 |
"désactivation de cette option ne réinitialisera aucun réglage."
|
659 |
|
660 |
+
#: admin/main-view.php:625
|
661 |
#, php-format
|
662 |
msgid ""
|
663 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: admin/main-view.php:629
|
667 |
msgid "Text only"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: admin/main-view.php:631
|
671 |
msgid ""
|
672 |
"Enabling this option will disable thumbnails and no longer include the "
|
673 |
"default style sheet included in the plugin."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: admin/main-view.php:646
|
677 |
msgid "Custom CSS to add to header:"
|
678 |
msgstr "CSS personnalisé a ajouter dans l'en-tête :"
|
679 |
|
680 |
+
#: admin/main-view.php:650
|
681 |
msgid ""
|
682 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
683 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
687 |
"\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
|
688 |
"\"_blank\">FAQ</a> pour connaitre les classes de style CSS disponibles."
|
689 |
|
690 |
+
#: admin/main-view.php:690
|
691 |
msgid ""
|
692 |
"Below options override the related posts settings for your blog feed. These "
|
693 |
"only apply if you have selected to add related posts to Feeds in the General "
|
697 |
"les flux de votre blog. Celles-ci ne s'appliquent si vous avez choisi "
|
698 |
"d'ajouter des articles relatifs à vos flux dans l'onglet Options générales."
|
699 |
|
700 |
+
#: admin/main-view.php:718
|
701 |
msgid "Maximum width of the thumbnail: "
|
702 |
msgstr "Largeur maximale de la miniature :"
|
703 |
|
704 |
+
#: admin/main-view.php:721
|
705 |
msgid "Maximum height of the thumbnail: "
|
706 |
msgstr "Hauteur maximale de la miniature :"
|
707 |
|
708 |
+
#: admin/main-view.php:756
|
709 |
msgid "Default Options"
|
710 |
msgstr "options par défaut"
|
711 |
|
712 |
+
#: admin/main-view.php:756
|
713 |
msgid "Do you want to set options to Default?"
|
714 |
msgstr "Voulez-vous réinitialiser les options à leurs valeurs par défaut ?"
|
715 |
|
716 |
+
#: admin/main-view.php:757
|
717 |
msgid "Recreate Index"
|
718 |
msgstr "Recréer l'index"
|
719 |
|
720 |
+
#: admin/main-view.php:757
|
721 |
msgid "Are you sure you want to recreate the index?"
|
722 |
msgstr "Voulez-vous vraiment recréer l'index ?"
|
723 |
|
724 |
+
#: admin/main-view.php:762
|
725 |
msgid ""
|
726 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
727 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
810 |
msgstr "Liens rapides"
|
811 |
|
812 |
#: admin/sidebar-view.php:57
|
813 |
+
msgid "Plugin homepage"
|
814 |
+
msgstr ""
|
815 |
|
816 |
#: admin/sidebar-view.php:58
|
817 |
msgid "FAQ"
|
919 |
msgid " by "
|
920 |
msgstr " par"
|
921 |
|
922 |
+
#~ msgid "Contextual Related Posts"
|
923 |
+
#~ msgstr "Articles relatifs contextuels"
|
924 |
+
|
925 |
+
#~ msgid "Contextual Related Posts plugin page"
|
926 |
+
#~ msgstr "Page de l'extension Contextual Related Posts"
|
927 |
+
|
928 |
#~ msgid "Options saved successfully."
|
929 |
#~ msgstr "Options sauvegardées avec succès."
|
930 |
|
1016 |
#~ "La valeur de ce champ doit contenir la source de l'image et se trouve "
|
1017 |
#~ "dans l'écran <em>Ajouter un nouvel article</em>"
|
1018 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
#~ msgid "Use default style included in the plugin?"
|
1020 |
#~ msgstr "Utiliser les styles par défaut inclus dans l'extension ?"
|
1021 |
|
languages/crp-it_IT.mo
CHANGED
Binary file
|
languages/crp-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
@@ -16,38 +16,34 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin/admin.php:
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Opzioni impostate alle predefinite."
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Index recreated"
|
44 |
msgstr "E' stato ricreato l'indice"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
msgid "Contextual Related Posts"
|
48 |
-
msgstr "Contextual Related Posts"
|
49 |
-
|
50 |
-
#: admin/admin.php:249
|
51 |
msgid "Related Posts"
|
52 |
msgstr "Related Posts"
|
53 |
|
@@ -91,22 +87,22 @@ msgstr "Le opzioni sono state salvate con successo."
|
|
91 |
msgid "List tuning options"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
95 |
#, fuzzy
|
96 |
msgid "Output options"
|
97 |
msgstr "Le opzioni sono state salvate con successo."
|
98 |
|
99 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
100 |
#: includes/class-crp-widget.php:93
|
101 |
#, fuzzy
|
102 |
msgid "Thumbnail options"
|
103 |
msgstr "Opzioni miniature articolo:"
|
104 |
|
105 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
106 |
msgid "Styles"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
110 |
#, fuzzy
|
111 |
msgid "Feed options"
|
112 |
msgstr "Le opzioni sono state salvate con successo."
|
@@ -233,14 +229,14 @@ msgid ""
|
|
233 |
"in the list."
|
234 |
msgstr "Contextual Related Posts "
|
235 |
|
236 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
237 |
-
#: admin/main-view.php:
|
238 |
-
#: admin/main-view.php:
|
239 |
#, fuzzy
|
240 |
msgid "Save Options"
|
241 |
msgstr "Le opzioni sono state salvate con successo."
|
242 |
|
243 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
244 |
msgid "Number of related posts to display: "
|
245 |
msgstr "numero di articoli correlati da mostrare:"
|
246 |
|
@@ -305,7 +301,7 @@ msgstr ""
|
|
305 |
msgid "List of post or page IDs to exclude from the results:"
|
306 |
msgstr "Escludi categorie:"
|
307 |
|
308 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
309 |
msgid ""
|
310 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
311 |
msgstr ""
|
@@ -322,35 +318,39 @@ msgid ""
|
|
322 |
"prompt you with options."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
326 |
msgid "Title of related posts:"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/main-view.php:
|
330 |
msgid ""
|
331 |
"This is the main heading of the related posts. You can also display the "
|
332 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
333 |
"Posts to %postname%</code>"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: admin/main-view.php:
|
337 |
msgid "When there are no posts, what should be shown?"
|
338 |
msgstr "Cosa desideri mostrare in assenza di articoli?"
|
339 |
|
340 |
-
#: admin/main-view.php:
|
341 |
msgid "Blank Output"
|
342 |
msgstr "nulla"
|
343 |
|
344 |
-
#: admin/main-view.php:
|
345 |
#, fuzzy
|
346 |
msgid "Display:"
|
347 |
msgstr "Numero degli articoli più popolari da mostrare:"
|
348 |
|
349 |
-
#: admin/main-view.php:
|
350 |
msgid "Show post excerpt in list?"
|
351 |
msgstr "Desideri mostrare gli estratti?"
|
352 |
|
353 |
-
#: admin/main-view.php:
|
354 |
#, php-format
|
355 |
msgid ""
|
356 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -358,169 +358,169 @@ msgid ""
|
|
358 |
"automatic excerpt which refers to the first %d words of the post's content"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/main-view.php:
|
362 |
msgid ""
|
363 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
364 |
"is disabled."
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/main-view.php:
|
368 |
msgid "Length of excerpt (in words):"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: admin/main-view.php:
|
372 |
#, fuzzy
|
373 |
msgid "Show post author in list?"
|
374 |
msgstr "Desideri mostrare gli estratti?"
|
375 |
|
376 |
-
#: admin/main-view.php:
|
377 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin/main-view.php:
|
381 |
msgid ""
|
382 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
383 |
"disabled."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/main-view.php:
|
387 |
#, fuzzy
|
388 |
msgid "Show post date in list?"
|
389 |
msgstr "Desideri mostrare gli estratti?"
|
390 |
|
391 |
-
#: admin/main-view.php:
|
392 |
msgid ""
|
393 |
"Displays the date of the post. Uses the same date format set in General "
|
394 |
"Options"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/main-view.php:
|
398 |
msgid ""
|
399 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
400 |
"disabled."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/main-view.php:
|
404 |
msgid "Limit post title length (in characters)"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/main-view.php:
|
408 |
msgid ""
|
409 |
"Any title longer than the number of characters set above will be cut and "
|
410 |
"appended with an ellipsis (…)"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin/main-view.php:
|
414 |
msgid "Open links in new window"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin/main-view.php:
|
418 |
msgid "Add nofollow attribute to links in the list"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin/main-view.php:
|
422 |
#, fuzzy
|
423 |
msgid "Exclusion settings:"
|
424 |
msgstr "Impostazioni"
|
425 |
|
426 |
-
#: admin/main-view.php:
|
427 |
#, fuzzy
|
428 |
msgid "Exclude display of related posts on these posts / pages"
|
429 |
msgstr "aggiungi gli articoli correlati al feed"
|
430 |
|
431 |
-
#: admin/main-view.php:
|
432 |
#, fuzzy
|
433 |
msgid "Exclude display of related posts on these post types."
|
434 |
msgstr "aggiungi gli articoli correlati al feed"
|
435 |
|
436 |
-
#: admin/main-view.php:
|
437 |
msgid ""
|
438 |
"The related posts will not display on any of the above selected post types"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/main-view.php:
|
442 |
msgid "Customize the output:"
|
443 |
msgstr "Personalizzazione output:"
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
msgid "HTML to display before the list of posts: "
|
447 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
448 |
|
449 |
-
#: admin/main-view.php:
|
450 |
msgid "HTML to display before each list item: "
|
451 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
msgid "HTML to display after each list item: "
|
455 |
msgstr "HTML da mostrare dopo ogni lista:"
|
456 |
|
457 |
-
#: admin/main-view.php:
|
458 |
msgid "HTML to display after the list of posts: "
|
459 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
460 |
|
461 |
-
#: admin/main-view.php:
|
462 |
#, fuzzy
|
463 |
msgid "Location of post thumbnail:"
|
464 |
msgstr "Opzioni miniature articolo:"
|
465 |
|
466 |
-
#: admin/main-view.php:
|
467 |
#, fuzzy
|
468 |
msgid "Display thumbnails inline with posts, before title"
|
469 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
470 |
|
471 |
-
#: admin/main-view.php:
|
472 |
#, fuzzy
|
473 |
msgid "Display thumbnails inline with posts, after title"
|
474 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
475 |
|
476 |
-
#: admin/main-view.php:
|
477 |
msgid "Display only thumbnails, no text"
|
478 |
msgstr "Mostra le sole miniature, nessun testo"
|
479 |
|
480 |
-
#: admin/main-view.php:
|
481 |
msgid "Do not display thumbnails, only text."
|
482 |
msgstr "Non mostrare le miniature, solo testo."
|
483 |
|
484 |
-
#: admin/main-view.php:
|
485 |
msgid ""
|
486 |
"This setting cannot be changed because an inbuilt style has been selected "
|
487 |
"under the Styles section. If you would like to change this option, please "
|
488 |
"select <strong>No styles</strong> under the Styles section."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/main-view.php:
|
492 |
msgid "Thumbnail size:"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/main-view.php:
|
496 |
msgid "Custom size"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/main-view.php:
|
500 |
msgid "You can choose from existing image sizes above or create a custom size."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/main-view.php:
|
504 |
msgid ""
|
505 |
"If you choose an existing size, then the width, height and crop mode "
|
506 |
"settings in the three options below will be automatically updated to reflect "
|
507 |
"the correct dimensions of the setting."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/main-view.php:
|
511 |
msgid ""
|
512 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
513 |
"settings below. For best results, use a cropped image with the same width "
|
514 |
"and height. The default setting is 150x150 cropped image."
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/main-view.php:
|
518 |
msgid ""
|
519 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
520 |
"images."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/main-view.php:
|
524 |
#, php-format
|
525 |
msgid ""
|
526 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -528,71 +528,71 @@ msgid ""
|
|
528 |
"all image sizes."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/main-view.php:
|
532 |
msgid "Width of the thumbnail:"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/main-view.php:
|
536 |
msgid "Height of the thumbnail: "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/main-view.php:
|
540 |
msgid "Crop mode:"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/main-view.php:
|
544 |
msgid ""
|
545 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
546 |
"proportionately/soft crop the thumbnails."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/main-view.php:
|
550 |
#, php-format
|
551 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/main-view.php:
|
555 |
msgid "Image size attributes:"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/main-view.php:
|
559 |
msgid "Style attributes are used for width and height."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/main-view.php:
|
563 |
msgid "HTML width and height attributes are used for width and height."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/main-view.php:
|
567 |
msgid "No HTML or Style attributes set for width and height"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/main-view.php:
|
571 |
#, fuzzy
|
572 |
msgid "Post thumbnail meta field name:"
|
573 |
msgstr "Opzioni miniature articolo:"
|
574 |
|
575 |
-
#: admin/main-view.php:
|
576 |
msgid ""
|
577 |
"The value of this field should contain a direct link to the image. This is "
|
578 |
"set in the meta box in the <em>Add New Post</em> screen."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: admin/main-view.php:
|
582 |
msgid "Extract the first image from the post?"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/main-view.php:
|
586 |
msgid ""
|
587 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
588 |
"specified in the meta field."
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: admin/main-view.php:
|
592 |
msgid "Use default thumbnail?"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: admin/main-view.php:
|
596 |
#, fuzzy
|
597 |
msgid ""
|
598 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
@@ -601,35 +601,40 @@ msgstr ""
|
|
601 |
"Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
|
602 |
"sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
|
603 |
|
604 |
-
#: admin/main-view.php:
|
605 |
#, fuzzy
|
606 |
msgid "Default thumbnail:"
|
607 |
msgstr "Opzioni impostate alle predefinite."
|
608 |
|
609 |
-
#: admin/main-view.php:
|
|
|
610 |
msgid ""
|
611 |
-
"
|
612 |
-
"
|
613 |
-
"
|
614 |
msgstr ""
|
|
|
|
|
|
|
|
|
615 |
|
616 |
-
#: admin/main-view.php:
|
617 |
msgid "Style of the related posts:"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/main-view.php:
|
621 |
msgid "No styles"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: admin/main-view.php:
|
625 |
msgid "Select this option if you plan to add your own styles"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/main-view.php:
|
629 |
msgid "Rounded Thumbnails"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/main-view.php:
|
633 |
msgid ""
|
634 |
"Enabling this option will turn on the thumbnails and set their width and "
|
635 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -637,68 +642,68 @@ msgid ""
|
|
637 |
"settings."
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
#, php-format
|
642 |
msgid ""
|
643 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: admin/main-view.php:
|
647 |
msgid "Text only"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/main-view.php:
|
651 |
msgid ""
|
652 |
"Enabling this option will disable thumbnails and no longer include the "
|
653 |
"default style sheet included in the plugin."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: admin/main-view.php:
|
657 |
msgid "Custom CSS to add to header:"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: admin/main-view.php:
|
661 |
msgid ""
|
662 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
663 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
664 |
"\">FAQ</a> for available CSS classes to style."
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: admin/main-view.php:
|
668 |
msgid ""
|
669 |
"Below options override the related posts settings for your blog feed. These "
|
670 |
"only apply if you have selected to add related posts to Feeds in the General "
|
671 |
"Options tab."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: admin/main-view.php:
|
675 |
#, fuzzy
|
676 |
msgid "Maximum width of the thumbnail: "
|
677 |
msgstr "Opzioni miniature articolo:"
|
678 |
|
679 |
-
#: admin/main-view.php:
|
680 |
#, fuzzy
|
681 |
msgid "Maximum height of the thumbnail: "
|
682 |
msgstr "Opzioni miniature articolo:"
|
683 |
|
684 |
-
#: admin/main-view.php:
|
685 |
#, fuzzy
|
686 |
msgid "Default Options"
|
687 |
msgstr "Opzioni impostate alle predefinite."
|
688 |
|
689 |
-
#: admin/main-view.php:
|
690 |
msgid "Do you want to set options to Default?"
|
691 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
692 |
|
693 |
-
#: admin/main-view.php:
|
694 |
msgid "Recreate Index"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: admin/main-view.php:
|
698 |
msgid "Are you sure you want to recreate the index?"
|
699 |
msgstr "Sei certo di volere ricreare l'indice?"
|
700 |
|
701 |
-
#: admin/main-view.php:
|
702 |
msgid ""
|
703 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
704 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -788,9 +793,8 @@ msgid "Quick links"
|
|
788 |
msgstr "Collegamenti veloci"
|
789 |
|
790 |
#: admin/sidebar-view.php:57
|
791 |
-
|
792 |
-
|
793 |
-
msgstr "Contextual Related Posts "
|
794 |
|
795 |
#: admin/sidebar-view.php:58
|
796 |
msgid "FAQ"
|
@@ -911,6 +915,13 @@ msgstr ""
|
|
911 |
msgid " by "
|
912 |
msgstr ""
|
913 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
914 |
#~ msgid "Options saved successfully."
|
915 |
#~ msgstr "Le opzioni sono state salvate correttamente."
|
916 |
|
@@ -933,17 +944,6 @@ msgstr ""
|
|
933 |
#~ msgid "Length of excerpt (in words): "
|
934 |
#~ msgstr "Lunghezza estratto (in parole): "
|
935 |
|
936 |
-
#, fuzzy
|
937 |
-
#~ msgid ""
|
938 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
939 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
940 |
-
#~ "it will show the default image as specified above."
|
941 |
-
#~ msgstr ""
|
942 |
-
#~ "Come prima operazione, il plugin controllerà la presenza di una miniatura "
|
943 |
-
#~ "nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
|
944 |
-
#~ "meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
945 |
-
#~ "specificato qui sotto:"
|
946 |
-
|
947 |
#~ msgid "Post thumbnail options:"
|
948 |
#~ msgstr "Opzioni miniature articolo:"
|
949 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts in italiano\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: Gianni Diurno | http://gidibao.net/ <gidibao@gmail.com>\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin/admin.php:190
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin/admin.php:193
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:196
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:199
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:223
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Opzioni impostate alle predefinite."
|
41 |
|
42 |
+
#: admin/admin.php:232
|
43 |
msgid "Index recreated"
|
44 |
msgstr "E' stato ricreato l'indice"
|
45 |
|
46 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
47 |
msgid "Related Posts"
|
48 |
msgstr "Related Posts"
|
49 |
|
87 |
msgid "List tuning options"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
91 |
#, fuzzy
|
92 |
msgid "Output options"
|
93 |
msgstr "Le opzioni sono state salvate con successo."
|
94 |
|
95 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
96 |
#: includes/class-crp-widget.php:93
|
97 |
#, fuzzy
|
98 |
msgid "Thumbnail options"
|
99 |
msgstr "Opzioni miniature articolo:"
|
100 |
|
101 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
102 |
msgid "Styles"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
106 |
#, fuzzy
|
107 |
msgid "Feed options"
|
108 |
msgstr "Le opzioni sono state salvate con successo."
|
229 |
"in the list."
|
230 |
msgstr "Contextual Related Posts "
|
231 |
|
232 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
233 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
234 |
+
#: admin/main-view.php:755
|
235 |
#, fuzzy
|
236 |
msgid "Save Options"
|
237 |
msgstr "Le opzioni sono state salvate con successo."
|
238 |
|
239 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
240 |
msgid "Number of related posts to display: "
|
241 |
msgstr "numero di articoli correlati da mostrare:"
|
242 |
|
301 |
msgid "List of post or page IDs to exclude from the results:"
|
302 |
msgstr "Escludi categorie:"
|
303 |
|
304 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
305 |
msgid ""
|
306 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
307 |
msgstr ""
|
318 |
"prompt you with options."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin/main-view.php:214
|
322 |
+
msgid "Excluded category IDs are:"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: admin/main-view.php:255
|
326 |
msgid "Title of related posts:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/main-view.php:258
|
330 |
msgid ""
|
331 |
"This is the main heading of the related posts. You can also display the "
|
332 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
333 |
"Posts to %postname%</code>"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: admin/main-view.php:262
|
337 |
msgid "When there are no posts, what should be shown?"
|
338 |
msgstr "Cosa desideri mostrare in assenza di articoli?"
|
339 |
|
340 |
+
#: admin/main-view.php:266
|
341 |
msgid "Blank Output"
|
342 |
msgstr "nulla"
|
343 |
|
344 |
+
#: admin/main-view.php:271
|
345 |
#, fuzzy
|
346 |
msgid "Display:"
|
347 |
msgstr "Numero degli articoli più popolari da mostrare:"
|
348 |
|
349 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
350 |
msgid "Show post excerpt in list?"
|
351 |
msgstr "Desideri mostrare gli estratti?"
|
352 |
|
353 |
+
#: admin/main-view.php:280
|
354 |
#, php-format
|
355 |
msgid ""
|
356 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
358 |
"automatic excerpt which refers to the first %d words of the post's content"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: admin/main-view.php:283
|
362 |
msgid ""
|
363 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
364 |
"is disabled."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: admin/main-view.php:288
|
368 |
msgid "Length of excerpt (in words):"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/main-view.php:294
|
372 |
#, fuzzy
|
373 |
msgid "Show post author in list?"
|
374 |
msgstr "Desideri mostrare gli estratti?"
|
375 |
|
376 |
+
#: admin/main-view.php:297
|
377 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin/main-view.php:300
|
381 |
msgid ""
|
382 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
383 |
"disabled."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/main-view.php:305
|
387 |
#, fuzzy
|
388 |
msgid "Show post date in list?"
|
389 |
msgstr "Desideri mostrare gli estratti?"
|
390 |
|
391 |
+
#: admin/main-view.php:308
|
392 |
msgid ""
|
393 |
"Displays the date of the post. Uses the same date format set in General "
|
394 |
"Options"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/main-view.php:311
|
398 |
msgid ""
|
399 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
400 |
"disabled."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/main-view.php:316
|
404 |
msgid "Limit post title length (in characters)"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin/main-view.php:319
|
408 |
msgid ""
|
409 |
"Any title longer than the number of characters set above will be cut and "
|
410 |
"appended with an ellipsis (…)"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/main-view.php:323
|
414 |
msgid "Open links in new window"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/main-view.php:329
|
418 |
msgid "Add nofollow attribute to links in the list"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin/main-view.php:362
|
422 |
#, fuzzy
|
423 |
msgid "Exclusion settings:"
|
424 |
msgstr "Impostazioni"
|
425 |
|
426 |
+
#: admin/main-view.php:364
|
427 |
#, fuzzy
|
428 |
msgid "Exclude display of related posts on these posts / pages"
|
429 |
msgstr "aggiungi gli articoli correlati al feed"
|
430 |
|
431 |
+
#: admin/main-view.php:370
|
432 |
#, fuzzy
|
433 |
msgid "Exclude display of related posts on these post types."
|
434 |
msgstr "aggiungi gli articoli correlati al feed"
|
435 |
|
436 |
+
#: admin/main-view.php:377
|
437 |
msgid ""
|
438 |
"The related posts will not display on any of the above selected post types"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/main-view.php:407
|
442 |
msgid "Customize the output:"
|
443 |
msgstr "Personalizzazione output:"
|
444 |
|
445 |
+
#: admin/main-view.php:409
|
446 |
msgid "HTML to display before the list of posts: "
|
447 |
msgstr "HTML da mostrare davanti alla lista degli articoli:"
|
448 |
|
449 |
+
#: admin/main-view.php:412
|
450 |
msgid "HTML to display before each list item: "
|
451 |
msgstr "HTML da mostrare davanti ad ogni singola lista:"
|
452 |
|
453 |
+
#: admin/main-view.php:415
|
454 |
msgid "HTML to display after each list item: "
|
455 |
msgstr "HTML da mostrare dopo ogni lista:"
|
456 |
|
457 |
+
#: admin/main-view.php:418
|
458 |
msgid "HTML to display after the list of posts: "
|
459 |
msgstr "HTML da mostrare dopo la lista degli articoli:"
|
460 |
|
461 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
462 |
#, fuzzy
|
463 |
msgid "Location of post thumbnail:"
|
464 |
msgstr "Opzioni miniature articolo:"
|
465 |
|
466 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
467 |
#, fuzzy
|
468 |
msgid "Display thumbnails inline with posts, before title"
|
469 |
msgstr "Mostra gli articoli con le miniature inline prima del titolo"
|
470 |
|
471 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
472 |
#, fuzzy
|
473 |
msgid "Display thumbnails inline with posts, after title"
|
474 |
msgstr "Mostra gli articoli con le miniature inline dopo il titolo"
|
475 |
|
476 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
477 |
msgid "Display only thumbnails, no text"
|
478 |
msgstr "Mostra le sole miniature, nessun testo"
|
479 |
|
480 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
481 |
msgid "Do not display thumbnails, only text."
|
482 |
msgstr "Non mostrare le miniature, solo testo."
|
483 |
|
484 |
+
#: admin/main-view.php:478
|
485 |
msgid ""
|
486 |
"This setting cannot be changed because an inbuilt style has been selected "
|
487 |
"under the Styles section. If you would like to change this option, please "
|
488 |
"select <strong>No styles</strong> under the Styles section."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/main-view.php:482
|
492 |
msgid "Thumbnail size:"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/main-view.php:506
|
496 |
msgid "Custom size"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/main-view.php:509
|
500 |
msgid "You can choose from existing image sizes above or create a custom size."
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/main-view.php:510
|
504 |
msgid ""
|
505 |
"If you choose an existing size, then the width, height and crop mode "
|
506 |
"settings in the three options below will be automatically updated to reflect "
|
507 |
"the correct dimensions of the setting."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: admin/main-view.php:511
|
511 |
msgid ""
|
512 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
513 |
"settings below. For best results, use a cropped image with the same width "
|
514 |
"and height. The default setting is 150x150 cropped image."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: admin/main-view.php:512
|
518 |
msgid ""
|
519 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
520 |
"images."
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/main-view.php:513
|
524 |
#, php-format
|
525 |
msgid ""
|
526 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
528 |
"all image sizes."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/main-view.php:517
|
532 |
msgid "Width of the thumbnail:"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/main-view.php:520
|
536 |
msgid "Height of the thumbnail: "
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/main-view.php:525
|
540 |
msgid "Crop mode:"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/main-view.php:529
|
544 |
msgid ""
|
545 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
546 |
"proportionately/soft crop the thumbnails."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/main-view.php:530
|
550 |
#, php-format
|
551 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/main-view.php:534
|
555 |
msgid "Image size attributes:"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/main-view.php:538
|
559 |
msgid "Style attributes are used for width and height."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/main-view.php:543
|
563 |
msgid "HTML width and height attributes are used for width and height."
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/main-view.php:548
|
567 |
msgid "No HTML or Style attributes set for width and height"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/main-view.php:553
|
571 |
#, fuzzy
|
572 |
msgid "Post thumbnail meta field name:"
|
573 |
msgstr "Opzioni miniature articolo:"
|
574 |
|
575 |
+
#: admin/main-view.php:555
|
576 |
msgid ""
|
577 |
"The value of this field should contain a direct link to the image. This is "
|
578 |
"set in the meta box in the <em>Add New Post</em> screen."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/main-view.php:558
|
582 |
msgid "Extract the first image from the post?"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/main-view.php:560
|
586 |
msgid ""
|
587 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
588 |
"specified in the meta field."
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/main-view.php:563
|
592 |
msgid "Use default thumbnail?"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/main-view.php:565
|
596 |
#, fuzzy
|
597 |
msgid ""
|
598 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
601 |
"Se attiva, in assenza di miniatura ne mostrerà una predefinita da URL qui "
|
602 |
"sotto. Se inattiva e senza miniatura, non verrà mostrata nessuna immagine."
|
603 |
|
604 |
+
#: admin/main-view.php:568
|
605 |
#, fuzzy
|
606 |
msgid "Default thumbnail:"
|
607 |
msgstr "Opzioni impostate alle predefinite."
|
608 |
|
609 |
+
#: admin/main-view.php:571
|
610 |
+
#, fuzzy
|
611 |
msgid ""
|
612 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
613 |
+
"then it will check the meta field. If this is not available, then it will "
|
614 |
+
"show the default image as specified above."
|
615 |
msgstr ""
|
616 |
+
"Come prima operazione, il plugin controllerà la presenza di una miniatura "
|
617 |
+
"nell'articolo. Nel caso in cui non fosse presente, verificherà il campo "
|
618 |
+
"meta. Qualora non fosse disponibile, mostrerà l'immagine predefinita come "
|
619 |
+
"specificato qui sotto:"
|
620 |
|
621 |
+
#: admin/main-view.php:612
|
622 |
msgid "Style of the related posts:"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: admin/main-view.php:615
|
626 |
msgid "No styles"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/main-view.php:617
|
630 |
msgid "Select this option if you plan to add your own styles"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/main-view.php:621
|
634 |
msgid "Rounded Thumbnails"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: admin/main-view.php:624
|
638 |
msgid ""
|
639 |
"Enabling this option will turn on the thumbnails and set their width and "
|
640 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
642 |
"settings."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/main-view.php:625
|
646 |
#, php-format
|
647 |
msgid ""
|
648 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/main-view.php:629
|
652 |
msgid "Text only"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/main-view.php:631
|
656 |
msgid ""
|
657 |
"Enabling this option will disable thumbnails and no longer include the "
|
658 |
"default style sheet included in the plugin."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: admin/main-view.php:646
|
662 |
msgid "Custom CSS to add to header:"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: admin/main-view.php:650
|
666 |
msgid ""
|
667 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
668 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
669 |
"\">FAQ</a> for available CSS classes to style."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: admin/main-view.php:690
|
673 |
msgid ""
|
674 |
"Below options override the related posts settings for your blog feed. These "
|
675 |
"only apply if you have selected to add related posts to Feeds in the General "
|
676 |
"Options tab."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: admin/main-view.php:718
|
680 |
#, fuzzy
|
681 |
msgid "Maximum width of the thumbnail: "
|
682 |
msgstr "Opzioni miniature articolo:"
|
683 |
|
684 |
+
#: admin/main-view.php:721
|
685 |
#, fuzzy
|
686 |
msgid "Maximum height of the thumbnail: "
|
687 |
msgstr "Opzioni miniature articolo:"
|
688 |
|
689 |
+
#: admin/main-view.php:756
|
690 |
#, fuzzy
|
691 |
msgid "Default Options"
|
692 |
msgstr "Opzioni impostate alle predefinite."
|
693 |
|
694 |
+
#: admin/main-view.php:756
|
695 |
msgid "Do you want to set options to Default?"
|
696 |
msgstr "Sei certo di volere impostare alle opzioni predefinite?"
|
697 |
|
698 |
+
#: admin/main-view.php:757
|
699 |
msgid "Recreate Index"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: admin/main-view.php:757
|
703 |
msgid "Are you sure you want to recreate the index?"
|
704 |
msgstr "Sei certo di volere ricreare l'indice?"
|
705 |
|
706 |
+
#: admin/main-view.php:762
|
707 |
msgid ""
|
708 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
709 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
793 |
msgstr "Collegamenti veloci"
|
794 |
|
795 |
#: admin/sidebar-view.php:57
|
796 |
+
msgid "Plugin homepage"
|
797 |
+
msgstr ""
|
|
|
798 |
|
799 |
#: admin/sidebar-view.php:58
|
800 |
msgid "FAQ"
|
915 |
msgid " by "
|
916 |
msgstr ""
|
917 |
|
918 |
+
#~ msgid "Contextual Related Posts"
|
919 |
+
#~ msgstr "Contextual Related Posts"
|
920 |
+
|
921 |
+
#, fuzzy
|
922 |
+
#~ msgid "Contextual Related Posts plugin page"
|
923 |
+
#~ msgstr "Contextual Related Posts "
|
924 |
+
|
925 |
#~ msgid "Options saved successfully."
|
926 |
#~ msgstr "Le opzioni sono state salvate correttamente."
|
927 |
|
944 |
#~ msgid "Length of excerpt (in words): "
|
945 |
#~ msgstr "Lunghezza estratto (in parole): "
|
946 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
#~ msgid "Post thumbnail options:"
|
948 |
#~ msgstr "Opzioni miniature articolo:"
|
949 |
|
languages/crp-lt_LT.mo
CHANGED
Binary file
|
languages/crp-lt_LT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: me@ajaydsouza.com\n"
|
@@ -16,38 +16,34 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin/admin.php:
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Opcijas iestatīts uz Default."
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Index recreated"
|
44 |
msgstr "indekss pārbūvēts"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
msgid "Contextual Related Posts"
|
48 |
-
msgstr "Konteksta Related Posts"
|
49 |
-
|
50 |
-
#: admin/admin.php:249
|
51 |
msgid "Related Posts"
|
52 |
msgstr "Related Posts"
|
53 |
|
@@ -90,20 +86,20 @@ msgstr "Настройки сохранены."
|
|
90 |
msgid "List tuning options"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
94 |
msgid "Output options"
|
95 |
msgstr "Izejas opcijas:"
|
96 |
|
97 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
98 |
#: includes/class-crp-widget.php:93
|
99 |
msgid "Thumbnail options"
|
100 |
msgstr "sīktēlu iespējas"
|
101 |
|
102 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
103 |
msgid "Styles"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
107 |
msgid "Feed options"
|
108 |
msgstr "Iespējas:"
|
109 |
|
@@ -228,13 +224,13 @@ msgid ""
|
|
228 |
"in the list."
|
229 |
msgstr "Konteksta saistītus amatus"
|
230 |
|
231 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
232 |
-
#: admin/main-view.php:
|
233 |
-
#: admin/main-view.php:
|
234 |
msgid "Save Options"
|
235 |
msgstr "Saglabāt opcijas"
|
236 |
|
237 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
238 |
msgid "Number of related posts to display: "
|
239 |
msgstr "Skaits saistītus amatus, lai parādītu:"
|
240 |
|
@@ -298,7 +294,7 @@ msgstr ""
|
|
298 |
msgid "List of post or page IDs to exclude from the results:"
|
299 |
msgstr "Исключить рубрики:"
|
300 |
|
301 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
302 |
msgid ""
|
303 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
304 |
msgstr ""
|
@@ -315,35 +311,39 @@ msgid ""
|
|
315 |
"prompt you with options."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
319 |
msgid "Title of related posts:"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin/main-view.php:
|
323 |
msgid ""
|
324 |
"This is the main heading of the related posts. You can also display the "
|
325 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
326 |
"Posts to %postname%</code>"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/main-view.php:
|
330 |
msgid "When there are no posts, what should be shown?"
|
331 |
msgstr "Ja nav amati, kas būtu redzams?"
|
332 |
|
333 |
-
#: admin/main-view.php:
|
334 |
msgid "Blank Output"
|
335 |
msgstr "tukša izeja"
|
336 |
|
337 |
-
#: admin/main-view.php:
|
338 |
#, fuzzy
|
339 |
msgid "Display:"
|
340 |
msgstr "Количество Популярных записей в списке:"
|
341 |
|
342 |
-
#: admin/main-view.php:
|
343 |
msgid "Show post excerpt in list?"
|
344 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
345 |
|
346 |
-
#: admin/main-view.php:
|
347 |
#, php-format
|
348 |
msgid ""
|
349 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -351,166 +351,166 @@ msgid ""
|
|
351 |
"automatic excerpt which refers to the first %d words of the post's content"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/main-view.php:
|
355 |
msgid ""
|
356 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
357 |
"is disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/main-view.php:
|
361 |
msgid "Length of excerpt (in words):"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/main-view.php:
|
365 |
#, fuzzy
|
366 |
msgid "Show post author in list?"
|
367 |
msgstr "Показывать текст записи в списке?"
|
368 |
|
369 |
-
#: admin/main-view.php:
|
370 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: admin/main-view.php:
|
374 |
msgid ""
|
375 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
376 |
"disabled."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/main-view.php:
|
380 |
#, fuzzy
|
381 |
msgid "Show post date in list?"
|
382 |
msgstr "Показывать текст записи в списке?"
|
383 |
|
384 |
-
#: admin/main-view.php:
|
385 |
msgid ""
|
386 |
"Displays the date of the post. Uses the same date format set in General "
|
387 |
"Options"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/main-view.php:
|
391 |
msgid ""
|
392 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
393 |
"disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid "Limit post title length (in characters)"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: admin/main-view.php:
|
401 |
msgid ""
|
402 |
"Any title longer than the number of characters set above will be cut and "
|
403 |
"appended with an ellipsis (…)"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/main-view.php:
|
407 |
msgid "Open links in new window"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin/main-view.php:
|
411 |
msgid "Add nofollow attribute to links in the list"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
#, fuzzy
|
416 |
msgid "Exclusion settings:"
|
417 |
msgstr "spraudnis iestatījumu lapa"
|
418 |
|
419 |
-
#: admin/main-view.php:
|
420 |
msgid "Exclude display of related posts on these posts / pages"
|
421 |
msgstr "Pievienot saistītus amatus barībā"
|
422 |
|
423 |
-
#: admin/main-view.php:
|
424 |
#, fuzzy
|
425 |
msgid "Exclude display of related posts on these post types."
|
426 |
msgstr "Pievienot saistītus amatus barībā"
|
427 |
|
428 |
-
#: admin/main-view.php:
|
429 |
msgid ""
|
430 |
"The related posts will not display on any of the above selected post types"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/main-view.php:
|
434 |
msgid "Customize the output:"
|
435 |
msgstr "Pielāgot izejas:"
|
436 |
|
437 |
-
#: admin/main-view.php:
|
438 |
msgid "HTML to display before the list of posts: "
|
439 |
msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
|
440 |
|
441 |
-
#: admin/main-view.php:
|
442 |
msgid "HTML to display before each list item: "
|
443 |
msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
msgid "HTML to display after each list item: "
|
447 |
msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
|
448 |
|
449 |
-
#: admin/main-view.php:
|
450 |
msgid "HTML to display after the list of posts: "
|
451 |
msgstr "HTML, lai parādītu pēc amatu sarakstā:"
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
#, fuzzy
|
455 |
msgid "Location of post thumbnail:"
|
456 |
msgstr "Настройки превью к записям:"
|
457 |
|
458 |
-
#: admin/main-view.php:
|
459 |
msgid "Display thumbnails inline with posts, before title"
|
460 |
msgstr "Rādīt skices ar ziņojumiem"
|
461 |
|
462 |
-
#: admin/main-view.php:
|
463 |
msgid "Display thumbnails inline with posts, after title"
|
464 |
msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
|
465 |
|
466 |
-
#: admin/main-view.php:
|
467 |
msgid "Display only thumbnails, no text"
|
468 |
msgstr "Attēlotu tikai sīktēlus, teksts"
|
469 |
|
470 |
-
#: admin/main-view.php:
|
471 |
msgid "Do not display thumbnails, only text."
|
472 |
msgstr "Nerādīt sīktēlus, tikai tekstu."
|
473 |
|
474 |
-
#: admin/main-view.php:
|
475 |
msgid ""
|
476 |
"This setting cannot be changed because an inbuilt style has been selected "
|
477 |
"under the Styles section. If you would like to change this option, please "
|
478 |
"select <strong>No styles</strong> under the Styles section."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/main-view.php:
|
482 |
msgid "Thumbnail size:"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/main-view.php:
|
486 |
msgid "Custom size"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/main-view.php:
|
490 |
msgid "You can choose from existing image sizes above or create a custom size."
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/main-view.php:
|
494 |
msgid ""
|
495 |
"If you choose an existing size, then the width, height and crop mode "
|
496 |
"settings in the three options below will be automatically updated to reflect "
|
497 |
"the correct dimensions of the setting."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/main-view.php:
|
501 |
msgid ""
|
502 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
503 |
"settings below. For best results, use a cropped image with the same width "
|
504 |
"and height. The default setting is 150x150 cropped image."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/main-view.php:
|
508 |
msgid ""
|
509 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
510 |
"images."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/main-view.php:
|
514 |
#, php-format
|
515 |
msgid ""
|
516 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -518,71 +518,71 @@ msgid ""
|
|
518 |
"all image sizes."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/main-view.php:
|
522 |
msgid "Width of the thumbnail:"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: admin/main-view.php:
|
526 |
msgid "Height of the thumbnail: "
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: admin/main-view.php:
|
530 |
msgid "Crop mode:"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin/main-view.php:
|
534 |
msgid ""
|
535 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
536 |
"proportionately/soft crop the thumbnails."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/main-view.php:
|
540 |
#, php-format
|
541 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/main-view.php:
|
545 |
msgid "Image size attributes:"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/main-view.php:
|
549 |
msgid "Style attributes are used for width and height."
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/main-view.php:
|
553 |
msgid "HTML width and height attributes are used for width and height."
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/main-view.php:
|
557 |
msgid "No HTML or Style attributes set for width and height"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/main-view.php:
|
561 |
#, fuzzy
|
562 |
msgid "Post thumbnail meta field name:"
|
563 |
msgstr "Attēlu rīki post:"
|
564 |
|
565 |
-
#: admin/main-view.php:
|
566 |
msgid ""
|
567 |
"The value of this field should contain a direct link to the image. This is "
|
568 |
"set in the meta box in the <em>Add New Post</em> screen."
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/main-view.php:
|
572 |
msgid "Extract the first image from the post?"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: admin/main-view.php:
|
576 |
msgid ""
|
577 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
578 |
"specified in the meta field."
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: admin/main-view.php:
|
582 |
msgid "Use default thumbnail?"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: admin/main-view.php:
|
586 |
#, fuzzy
|
587 |
msgid ""
|
588 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
@@ -592,35 +592,39 @@ msgstr ""
|
|
592 |
"добавлено стандартное изображение. Если превью задано к записи - будет "
|
593 |
"отображаться только оно."
|
594 |
|
595 |
-
#: admin/main-view.php:
|
596 |
#, fuzzy
|
597 |
msgid "Default thumbnail:"
|
598 |
msgstr "noklusējuma opcijas"
|
599 |
|
600 |
-
#: admin/main-view.php:
|
|
|
601 |
msgid ""
|
602 |
-
"
|
603 |
-
"
|
604 |
-
"
|
605 |
msgstr ""
|
|
|
|
|
|
|
606 |
|
607 |
-
#: admin/main-view.php:
|
608 |
msgid "Style of the related posts:"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/main-view.php:
|
612 |
msgid "No styles"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/main-view.php:
|
616 |
msgid "Select this option if you plan to add your own styles"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: admin/main-view.php:
|
620 |
msgid "Rounded Thumbnails"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: admin/main-view.php:
|
624 |
msgid ""
|
625 |
"Enabling this option will turn on the thumbnails and set their width and "
|
626 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -628,67 +632,67 @@ msgid ""
|
|
628 |
"settings."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: admin/main-view.php:
|
632 |
#, php-format
|
633 |
msgid ""
|
634 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/main-view.php:
|
638 |
msgid "Text only"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/main-view.php:
|
642 |
msgid ""
|
643 |
"Enabling this option will disable thumbnails and no longer include the "
|
644 |
"default style sheet included in the plugin."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: admin/main-view.php:
|
648 |
msgid "Custom CSS to add to header:"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: admin/main-view.php:
|
652 |
msgid ""
|
653 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
654 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
655 |
"\">FAQ</a> for available CSS classes to style."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/main-view.php:
|
659 |
msgid ""
|
660 |
"Below options override the related posts settings for your blog feed. These "
|
661 |
"only apply if you have selected to add related posts to Feeds in the General "
|
662 |
"Options tab."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: admin/main-view.php:
|
666 |
#, fuzzy
|
667 |
msgid "Maximum width of the thumbnail: "
|
668 |
msgstr "Настройки превью к записям:"
|
669 |
|
670 |
-
#: admin/main-view.php:
|
671 |
#, fuzzy
|
672 |
msgid "Maximum height of the thumbnail: "
|
673 |
msgstr "Настройки превью к записям:"
|
674 |
|
675 |
-
#: admin/main-view.php:
|
676 |
msgid "Default Options"
|
677 |
msgstr "noklusējuma opcijas"
|
678 |
|
679 |
-
#: admin/main-view.php:
|
680 |
msgid "Do you want to set options to Default?"
|
681 |
msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
|
682 |
|
683 |
-
#: admin/main-view.php:
|
684 |
msgid "Recreate Index"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: admin/main-view.php:
|
688 |
msgid "Are you sure you want to recreate the index?"
|
689 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
690 |
|
691 |
-
#: admin/main-view.php:
|
692 |
msgid ""
|
693 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
694 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -778,8 +782,8 @@ msgid "Quick links"
|
|
778 |
msgstr "Ātrās saites"
|
779 |
|
780 |
#: admin/sidebar-view.php:57
|
781 |
-
msgid "
|
782 |
-
msgstr "
|
783 |
|
784 |
#: admin/sidebar-view.php:58
|
785 |
msgid "FAQ"
|
@@ -891,6 +895,12 @@ msgstr ""
|
|
891 |
msgid " by "
|
892 |
msgstr ""
|
893 |
|
|
|
|
|
|
|
|
|
|
|
|
|
894 |
#~ msgid "Options saved successfully."
|
895 |
#~ msgstr "Opcijas veiksmīgi saglabāts."
|
896 |
|
@@ -911,16 +921,6 @@ msgstr ""
|
|
911 |
#~ msgid "Length of excerpt (in words): "
|
912 |
#~ msgstr "Garums izrakstā (vārdiem)"
|
913 |
|
914 |
-
#, fuzzy
|
915 |
-
#~ msgid ""
|
916 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
917 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
918 |
-
#~ "it will show the default image as specified above."
|
919 |
-
#~ msgstr ""
|
920 |
-
#~ "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad "
|
921 |
-
#~ "tas būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas "
|
922 |
-
#~ "rādīs noklusējuma attēlu, kā minēts iepriekš"
|
923 |
-
|
924 |
#~ msgid "Post thumbnail options:"
|
925 |
#~ msgstr "Post sīktēlu iespējas:"
|
926 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: me@ajaydsouza.com\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin/admin.php:190
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin/admin.php:193
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:196
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:199
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:223
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Opcijas iestatīts uz Default."
|
41 |
|
42 |
+
#: admin/admin.php:232
|
43 |
msgid "Index recreated"
|
44 |
msgstr "indekss pārbūvēts"
|
45 |
|
46 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
47 |
msgid "Related Posts"
|
48 |
msgstr "Related Posts"
|
49 |
|
86 |
msgid "List tuning options"
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
90 |
msgid "Output options"
|
91 |
msgstr "Izejas opcijas:"
|
92 |
|
93 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
94 |
#: includes/class-crp-widget.php:93
|
95 |
msgid "Thumbnail options"
|
96 |
msgstr "sīktēlu iespējas"
|
97 |
|
98 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
99 |
msgid "Styles"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
103 |
msgid "Feed options"
|
104 |
msgstr "Iespējas:"
|
105 |
|
224 |
"in the list."
|
225 |
msgstr "Konteksta saistītus amatus"
|
226 |
|
227 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
228 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
229 |
+
#: admin/main-view.php:755
|
230 |
msgid "Save Options"
|
231 |
msgstr "Saglabāt opcijas"
|
232 |
|
233 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
234 |
msgid "Number of related posts to display: "
|
235 |
msgstr "Skaits saistītus amatus, lai parādītu:"
|
236 |
|
294 |
msgid "List of post or page IDs to exclude from the results:"
|
295 |
msgstr "Исключить рубрики:"
|
296 |
|
297 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
298 |
msgid ""
|
299 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
300 |
msgstr ""
|
311 |
"prompt you with options."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: admin/main-view.php:214
|
315 |
+
msgid "Excluded category IDs are:"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: admin/main-view.php:255
|
319 |
msgid "Title of related posts:"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin/main-view.php:258
|
323 |
msgid ""
|
324 |
"This is the main heading of the related posts. You can also display the "
|
325 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
326 |
"Posts to %postname%</code>"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/main-view.php:262
|
330 |
msgid "When there are no posts, what should be shown?"
|
331 |
msgstr "Ja nav amati, kas būtu redzams?"
|
332 |
|
333 |
+
#: admin/main-view.php:266
|
334 |
msgid "Blank Output"
|
335 |
msgstr "tukša izeja"
|
336 |
|
337 |
+
#: admin/main-view.php:271
|
338 |
#, fuzzy
|
339 |
msgid "Display:"
|
340 |
msgstr "Количество Популярных записей в списке:"
|
341 |
|
342 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
343 |
msgid "Show post excerpt in list?"
|
344 |
msgstr "Rādīt post izvilkumu sarakstā?"
|
345 |
|
346 |
+
#: admin/main-view.php:280
|
347 |
#, php-format
|
348 |
msgid ""
|
349 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
351 |
"automatic excerpt which refers to the first %d words of the post's content"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/main-view.php:283
|
355 |
msgid ""
|
356 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
357 |
"is disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/main-view.php:288
|
361 |
msgid "Length of excerpt (in words):"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/main-view.php:294
|
365 |
#, fuzzy
|
366 |
msgid "Show post author in list?"
|
367 |
msgstr "Показывать текст записи в списке?"
|
368 |
|
369 |
+
#: admin/main-view.php:297
|
370 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/main-view.php:300
|
374 |
msgid ""
|
375 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
376 |
"disabled."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/main-view.php:305
|
380 |
#, fuzzy
|
381 |
msgid "Show post date in list?"
|
382 |
msgstr "Показывать текст записи в списке?"
|
383 |
|
384 |
+
#: admin/main-view.php:308
|
385 |
msgid ""
|
386 |
"Displays the date of the post. Uses the same date format set in General "
|
387 |
"Options"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/main-view.php:311
|
391 |
msgid ""
|
392 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
393 |
"disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/main-view.php:316
|
397 |
msgid "Limit post title length (in characters)"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: admin/main-view.php:319
|
401 |
msgid ""
|
402 |
"Any title longer than the number of characters set above will be cut and "
|
403 |
"appended with an ellipsis (…)"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin/main-view.php:323
|
407 |
msgid "Open links in new window"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/main-view.php:329
|
411 |
msgid "Add nofollow attribute to links in the list"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/main-view.php:362
|
415 |
#, fuzzy
|
416 |
msgid "Exclusion settings:"
|
417 |
msgstr "spraudnis iestatījumu lapa"
|
418 |
|
419 |
+
#: admin/main-view.php:364
|
420 |
msgid "Exclude display of related posts on these posts / pages"
|
421 |
msgstr "Pievienot saistītus amatus barībā"
|
422 |
|
423 |
+
#: admin/main-view.php:370
|
424 |
#, fuzzy
|
425 |
msgid "Exclude display of related posts on these post types."
|
426 |
msgstr "Pievienot saistītus amatus barībā"
|
427 |
|
428 |
+
#: admin/main-view.php:377
|
429 |
msgid ""
|
430 |
"The related posts will not display on any of the above selected post types"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/main-view.php:407
|
434 |
msgid "Customize the output:"
|
435 |
msgstr "Pielāgot izejas:"
|
436 |
|
437 |
+
#: admin/main-view.php:409
|
438 |
msgid "HTML to display before the list of posts: "
|
439 |
msgstr "HTML, lai parādītu, pirms amatu sarakstu:"
|
440 |
|
441 |
+
#: admin/main-view.php:412
|
442 |
msgid "HTML to display before each list item: "
|
443 |
msgstr "HTML, lai parādītu pirms katras saraksta elementa:"
|
444 |
|
445 |
+
#: admin/main-view.php:415
|
446 |
msgid "HTML to display after each list item: "
|
447 |
msgstr "HTML, lai parādītu pēc katra saraksta elementa:"
|
448 |
|
449 |
+
#: admin/main-view.php:418
|
450 |
msgid "HTML to display after the list of posts: "
|
451 |
msgstr "HTML, lai parādītu pēc amatu sarakstā:"
|
452 |
|
453 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
454 |
#, fuzzy
|
455 |
msgid "Location of post thumbnail:"
|
456 |
msgstr "Настройки превью к записям:"
|
457 |
|
458 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
459 |
msgid "Display thumbnails inline with posts, before title"
|
460 |
msgstr "Rādīt skices ar ziņojumiem"
|
461 |
|
462 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
463 |
msgid "Display thumbnails inline with posts, after title"
|
464 |
msgstr "Rādīt sīktēlus saskaņā ar soobscheniyamiazat skicēm ar ziņojumiem"
|
465 |
|
466 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
467 |
msgid "Display only thumbnails, no text"
|
468 |
msgstr "Attēlotu tikai sīktēlus, teksts"
|
469 |
|
470 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
471 |
msgid "Do not display thumbnails, only text."
|
472 |
msgstr "Nerādīt sīktēlus, tikai tekstu."
|
473 |
|
474 |
+
#: admin/main-view.php:478
|
475 |
msgid ""
|
476 |
"This setting cannot be changed because an inbuilt style has been selected "
|
477 |
"under the Styles section. If you would like to change this option, please "
|
478 |
"select <strong>No styles</strong> under the Styles section."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/main-view.php:482
|
482 |
msgid "Thumbnail size:"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/main-view.php:506
|
486 |
msgid "Custom size"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/main-view.php:509
|
490 |
msgid "You can choose from existing image sizes above or create a custom size."
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/main-view.php:510
|
494 |
msgid ""
|
495 |
"If you choose an existing size, then the width, height and crop mode "
|
496 |
"settings in the three options below will be automatically updated to reflect "
|
497 |
"the correct dimensions of the setting."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/main-view.php:511
|
501 |
msgid ""
|
502 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
503 |
"settings below. For best results, use a cropped image with the same width "
|
504 |
"and height. The default setting is 150x150 cropped image."
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/main-view.php:512
|
508 |
msgid ""
|
509 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
510 |
"images."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/main-view.php:513
|
514 |
#, php-format
|
515 |
msgid ""
|
516 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
518 |
"all image sizes."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/main-view.php:517
|
522 |
msgid "Width of the thumbnail:"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/main-view.php:520
|
526 |
msgid "Height of the thumbnail: "
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/main-view.php:525
|
530 |
msgid "Crop mode:"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/main-view.php:529
|
534 |
msgid ""
|
535 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
536 |
"proportionately/soft crop the thumbnails."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/main-view.php:530
|
540 |
#, php-format
|
541 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/main-view.php:534
|
545 |
msgid "Image size attributes:"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/main-view.php:538
|
549 |
msgid "Style attributes are used for width and height."
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/main-view.php:543
|
553 |
msgid "HTML width and height attributes are used for width and height."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: admin/main-view.php:548
|
557 |
msgid "No HTML or Style attributes set for width and height"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/main-view.php:553
|
561 |
#, fuzzy
|
562 |
msgid "Post thumbnail meta field name:"
|
563 |
msgstr "Attēlu rīki post:"
|
564 |
|
565 |
+
#: admin/main-view.php:555
|
566 |
msgid ""
|
567 |
"The value of this field should contain a direct link to the image. This is "
|
568 |
"set in the meta box in the <em>Add New Post</em> screen."
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: admin/main-view.php:558
|
572 |
msgid "Extract the first image from the post?"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: admin/main-view.php:560
|
576 |
msgid ""
|
577 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
578 |
"specified in the meta field."
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/main-view.php:563
|
582 |
msgid "Use default thumbnail?"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: admin/main-view.php:565
|
586 |
#, fuzzy
|
587 |
msgid ""
|
588 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
592 |
"добавлено стандартное изображение. Если превью задано к записи - будет "
|
593 |
"отображаться только оно."
|
594 |
|
595 |
+
#: admin/main-view.php:568
|
596 |
#, fuzzy
|
597 |
msgid "Default thumbnail:"
|
598 |
msgstr "noklusējuma opcijas"
|
599 |
|
600 |
+
#: admin/main-view.php:571
|
601 |
+
#, fuzzy
|
602 |
msgid ""
|
603 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
604 |
+
"then it will check the meta field. If this is not available, then it will "
|
605 |
+
"show the default image as specified above."
|
606 |
msgstr ""
|
607 |
+
"Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
|
608 |
+
"būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
|
609 |
+
"noklusējuma attēlu, kā minēts iepriekš"
|
610 |
|
611 |
+
#: admin/main-view.php:612
|
612 |
msgid "Style of the related posts:"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/main-view.php:615
|
616 |
msgid "No styles"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/main-view.php:617
|
620 |
msgid "Select this option if you plan to add your own styles"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/main-view.php:621
|
624 |
msgid "Rounded Thumbnails"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: admin/main-view.php:624
|
628 |
msgid ""
|
629 |
"Enabling this option will turn on the thumbnails and set their width and "
|
630 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
632 |
"settings."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/main-view.php:625
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/main-view.php:629
|
642 |
msgid "Text only"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/main-view.php:631
|
646 |
msgid ""
|
647 |
"Enabling this option will disable thumbnails and no longer include the "
|
648 |
"default style sheet included in the plugin."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/main-view.php:646
|
652 |
msgid "Custom CSS to add to header:"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/main-view.php:650
|
656 |
msgid ""
|
657 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
658 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
659 |
"\">FAQ</a> for available CSS classes to style."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: admin/main-view.php:690
|
663 |
msgid ""
|
664 |
"Below options override the related posts settings for your blog feed. These "
|
665 |
"only apply if you have selected to add related posts to Feeds in the General "
|
666 |
"Options tab."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: admin/main-view.php:718
|
670 |
#, fuzzy
|
671 |
msgid "Maximum width of the thumbnail: "
|
672 |
msgstr "Настройки превью к записям:"
|
673 |
|
674 |
+
#: admin/main-view.php:721
|
675 |
#, fuzzy
|
676 |
msgid "Maximum height of the thumbnail: "
|
677 |
msgstr "Настройки превью к записям:"
|
678 |
|
679 |
+
#: admin/main-view.php:756
|
680 |
msgid "Default Options"
|
681 |
msgstr "noklusējuma opcijas"
|
682 |
|
683 |
+
#: admin/main-view.php:756
|
684 |
msgid "Do you want to set options to Default?"
|
685 |
msgstr "Vai jūs vēlaties, lai uzstādītu iespējas Default?"
|
686 |
|
687 |
+
#: admin/main-view.php:757
|
688 |
msgid "Recreate Index"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: admin/main-view.php:757
|
692 |
msgid "Are you sure you want to recreate the index?"
|
693 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
694 |
|
695 |
+
#: admin/main-view.php:762
|
696 |
msgid ""
|
697 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
698 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
782 |
msgstr "Ātrās saites"
|
783 |
|
784 |
#: admin/sidebar-view.php:57
|
785 |
+
msgid "Plugin homepage"
|
786 |
+
msgstr ""
|
787 |
|
788 |
#: admin/sidebar-view.php:58
|
789 |
msgid "FAQ"
|
895 |
msgid " by "
|
896 |
msgstr ""
|
897 |
|
898 |
+
#~ msgid "Contextual Related Posts"
|
899 |
+
#~ msgstr "Konteksta Related Posts"
|
900 |
+
|
901 |
+
#~ msgid "Contextual Related Posts plugin page"
|
902 |
+
#~ msgstr "Konteksta saistītus amatus"
|
903 |
+
|
904 |
#~ msgid "Options saved successfully."
|
905 |
#~ msgstr "Opcijas veiksmīgi saglabāts."
|
906 |
|
921 |
#~ msgid "Length of excerpt (in words): "
|
922 |
#~ msgstr "Garums izrakstā (vārdiem)"
|
923 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
924 |
#~ msgid "Post thumbnail options:"
|
925 |
#~ msgstr "Post sīktēlu iespējas:"
|
926 |
|
languages/crp-nl_NL.mo
CHANGED
Binary file
|
languages/crp-nl_NL.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: http://WPwebshop.com <info@wppg.me>\n"
|
@@ -17,38 +17,34 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.8.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: admin/admin.php:
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Options set to Default."
|
41 |
msgstr "Opties ingesteld op standaard."
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Index recreated"
|
45 |
msgstr "Index opnieuw gemaakt"
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
msgid "Contextual Related Posts"
|
49 |
-
msgstr "Contextual Related Posts"
|
50 |
-
|
51 |
-
#: admin/admin.php:249
|
52 |
msgid "Related Posts"
|
53 |
msgstr "Gerelateerde Berichten"
|
54 |
|
@@ -92,22 +88,22 @@ msgstr "Opties succesvol opgeslagen."
|
|
92 |
msgid "List tuning options"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
96 |
#, fuzzy
|
97 |
msgid "Output options"
|
98 |
msgstr "Opties succesvol opgeslagen."
|
99 |
|
100 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
101 |
#: includes/class-crp-widget.php:93
|
102 |
#, fuzzy
|
103 |
msgid "Thumbnail options"
|
104 |
msgstr "Bericht miniatuurafbeelding opties:"
|
105 |
|
106 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
107 |
msgid "Styles"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
111 |
#, fuzzy
|
112 |
msgid "Feed options"
|
113 |
msgstr "Opties succesvol opgeslagen."
|
@@ -234,14 +230,14 @@ msgid ""
|
|
234 |
"in the list."
|
235 |
msgstr "Contextual Related Posts "
|
236 |
|
237 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
238 |
-
#: admin/main-view.php:
|
239 |
-
#: admin/main-view.php:
|
240 |
#, fuzzy
|
241 |
msgid "Save Options"
|
242 |
msgstr "Opties succesvol opgeslagen."
|
243 |
|
244 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
245 |
msgid "Number of related posts to display: "
|
246 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
247 |
|
@@ -302,7 +298,7 @@ msgstr ""
|
|
302 |
msgid "List of post or page IDs to exclude from the results:"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
306 |
msgid ""
|
307 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
308 |
msgstr ""
|
@@ -318,35 +314,39 @@ msgid ""
|
|
318 |
"prompt you with options."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
322 |
msgid "Title of related posts:"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: admin/main-view.php:
|
326 |
msgid ""
|
327 |
"This is the main heading of the related posts. You can also display the "
|
328 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
329 |
"Posts to %postname%</code>"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: admin/main-view.php:
|
333 |
msgid "When there are no posts, what should be shown?"
|
334 |
msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
|
335 |
|
336 |
-
#: admin/main-view.php:
|
337 |
msgid "Blank Output"
|
338 |
msgstr "Lege Output"
|
339 |
|
340 |
-
#: admin/main-view.php:
|
341 |
#, fuzzy
|
342 |
msgid "Display:"
|
343 |
msgstr "Aantal populaire berichten om weer te geven:"
|
344 |
|
345 |
-
#: admin/main-view.php:
|
346 |
msgid "Show post excerpt in list?"
|
347 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
348 |
|
349 |
-
#: admin/main-view.php:
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -354,169 +354,169 @@ msgid ""
|
|
354 |
"automatic excerpt which refers to the first %d words of the post's content"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin/main-view.php:
|
358 |
msgid ""
|
359 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
360 |
"is disabled."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: admin/main-view.php:
|
364 |
msgid "Length of excerpt (in words):"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/main-view.php:
|
368 |
#, fuzzy
|
369 |
msgid "Show post author in list?"
|
370 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
371 |
|
372 |
-
#: admin/main-view.php:
|
373 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin/main-view.php:
|
377 |
msgid ""
|
378 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
379 |
"disabled."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/main-view.php:
|
383 |
#, fuzzy
|
384 |
msgid "Show post date in list?"
|
385 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
386 |
|
387 |
-
#: admin/main-view.php:
|
388 |
msgid ""
|
389 |
"Displays the date of the post. Uses the same date format set in General "
|
390 |
"Options"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin/main-view.php:
|
394 |
msgid ""
|
395 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
396 |
"disabled."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: admin/main-view.php:
|
400 |
msgid "Limit post title length (in characters)"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/main-view.php:
|
404 |
msgid ""
|
405 |
"Any title longer than the number of characters set above will be cut and "
|
406 |
"appended with an ellipsis (…)"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: admin/main-view.php:
|
410 |
msgid "Open links in new window"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin/main-view.php:
|
414 |
msgid "Add nofollow attribute to links in the list"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin/main-view.php:
|
418 |
#, fuzzy
|
419 |
msgid "Exclusion settings:"
|
420 |
msgstr "Instellingen"
|
421 |
|
422 |
-
#: admin/main-view.php:
|
423 |
#, fuzzy
|
424 |
msgid "Exclude display of related posts on these posts / pages"
|
425 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
426 |
|
427 |
-
#: admin/main-view.php:
|
428 |
#, fuzzy
|
429 |
msgid "Exclude display of related posts on these post types."
|
430 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
431 |
|
432 |
-
#: admin/main-view.php:
|
433 |
msgid ""
|
434 |
"The related posts will not display on any of the above selected post types"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/main-view.php:
|
438 |
msgid "Customize the output:"
|
439 |
msgstr "Aanpassen van de output:"
|
440 |
|
441 |
-
#: admin/main-view.php:
|
442 |
msgid "HTML to display before the list of posts: "
|
443 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
msgid "HTML to display before each list item: "
|
447 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
448 |
|
449 |
-
#: admin/main-view.php:
|
450 |
msgid "HTML to display after each list item: "
|
451 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
msgid "HTML to display after the list of posts: "
|
455 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
456 |
|
457 |
-
#: admin/main-view.php:
|
458 |
#, fuzzy
|
459 |
msgid "Location of post thumbnail:"
|
460 |
msgstr "Bericht miniatuurafbeelding opties:"
|
461 |
|
462 |
-
#: admin/main-view.php:
|
463 |
#, fuzzy
|
464 |
msgid "Display thumbnails inline with posts, before title"
|
465 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
466 |
|
467 |
-
#: admin/main-view.php:
|
468 |
#, fuzzy
|
469 |
msgid "Display thumbnails inline with posts, after title"
|
470 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
471 |
|
472 |
-
#: admin/main-view.php:
|
473 |
msgid "Display only thumbnails, no text"
|
474 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
475 |
|
476 |
-
#: admin/main-view.php:
|
477 |
msgid "Do not display thumbnails, only text."
|
478 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
479 |
|
480 |
-
#: admin/main-view.php:
|
481 |
msgid ""
|
482 |
"This setting cannot be changed because an inbuilt style has been selected "
|
483 |
"under the Styles section. If you would like to change this option, please "
|
484 |
"select <strong>No styles</strong> under the Styles section."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/main-view.php:
|
488 |
msgid "Thumbnail size:"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/main-view.php:
|
492 |
msgid "Custom size"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/main-view.php:
|
496 |
msgid "You can choose from existing image sizes above or create a custom size."
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/main-view.php:
|
500 |
msgid ""
|
501 |
"If you choose an existing size, then the width, height and crop mode "
|
502 |
"settings in the three options below will be automatically updated to reflect "
|
503 |
"the correct dimensions of the setting."
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/main-view.php:
|
507 |
msgid ""
|
508 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
509 |
"settings below. For best results, use a cropped image with the same width "
|
510 |
"and height. The default setting is 150x150 cropped image."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/main-view.php:
|
514 |
msgid ""
|
515 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
516 |
"images."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/main-view.php:
|
520 |
#, php-format
|
521 |
msgid ""
|
522 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -524,106 +524,111 @@ msgid ""
|
|
524 |
"all image sizes."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/main-view.php:
|
528 |
msgid "Width of the thumbnail:"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/main-view.php:
|
532 |
msgid "Height of the thumbnail: "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/main-view.php:
|
536 |
msgid "Crop mode:"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/main-view.php:
|
540 |
msgid ""
|
541 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
542 |
"proportionately/soft crop the thumbnails."
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/main-view.php:
|
546 |
#, php-format
|
547 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/main-view.php:
|
551 |
msgid "Image size attributes:"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/main-view.php:
|
555 |
msgid "Style attributes are used for width and height."
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/main-view.php:
|
559 |
msgid "HTML width and height attributes are used for width and height."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/main-view.php:
|
563 |
msgid "No HTML or Style attributes set for width and height"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/main-view.php:
|
567 |
#, fuzzy
|
568 |
msgid "Post thumbnail meta field name:"
|
569 |
msgstr "Berichtopties miniatuurafbeelding:"
|
570 |
|
571 |
-
#: admin/main-view.php:
|
572 |
msgid ""
|
573 |
"The value of this field should contain a direct link to the image. This is "
|
574 |
"set in the meta box in the <em>Add New Post</em> screen."
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/main-view.php:
|
578 |
msgid "Extract the first image from the post?"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: admin/main-view.php:
|
582 |
msgid ""
|
583 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
584 |
"specified in the meta field."
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: admin/main-view.php:
|
588 |
#, fuzzy
|
589 |
msgid "Use default thumbnail?"
|
590 |
msgstr "Bericht miniatuurafbeelding opties:"
|
591 |
|
592 |
-
#: admin/main-view.php:
|
593 |
msgid ""
|
594 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
595 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: admin/main-view.php:
|
599 |
#, fuzzy
|
600 |
msgid "Default thumbnail:"
|
601 |
msgstr "Bericht miniatuurafbeelding opties:"
|
602 |
|
603 |
-
#: admin/main-view.php:
|
|
|
604 |
msgid ""
|
605 |
-
"
|
606 |
-
"
|
607 |
-
"
|
608 |
msgstr ""
|
|
|
|
|
|
|
|
|
609 |
|
610 |
-
#: admin/main-view.php:
|
611 |
msgid "Style of the related posts:"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/main-view.php:
|
615 |
msgid "No styles"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/main-view.php:
|
619 |
msgid "Select this option if you plan to add your own styles"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: admin/main-view.php:
|
623 |
msgid "Rounded Thumbnails"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/main-view.php:
|
627 |
msgid ""
|
628 |
"Enabling this option will turn on the thumbnails and set their width and "
|
629 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -631,68 +636,68 @@ msgid ""
|
|
631 |
"settings."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/main-view.php:
|
635 |
#, php-format
|
636 |
msgid ""
|
637 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
msgid "Text only"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: admin/main-view.php:
|
645 |
msgid ""
|
646 |
"Enabling this option will disable thumbnails and no longer include the "
|
647 |
"default style sheet included in the plugin."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: admin/main-view.php:
|
651 |
msgid "Custom CSS to add to header:"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/main-view.php:
|
655 |
msgid ""
|
656 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
657 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
658 |
"\">FAQ</a> for available CSS classes to style."
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: admin/main-view.php:
|
662 |
msgid ""
|
663 |
"Below options override the related posts settings for your blog feed. These "
|
664 |
"only apply if you have selected to add related posts to Feeds in the General "
|
665 |
"Options tab."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: admin/main-view.php:
|
669 |
#, fuzzy
|
670 |
msgid "Maximum width of the thumbnail: "
|
671 |
msgstr "Bericht miniatuurafbeelding opties:"
|
672 |
|
673 |
-
#: admin/main-view.php:
|
674 |
#, fuzzy
|
675 |
msgid "Maximum height of the thumbnail: "
|
676 |
msgstr "Bericht miniatuurafbeelding opties:"
|
677 |
|
678 |
-
#: admin/main-view.php:
|
679 |
#, fuzzy
|
680 |
msgid "Default Options"
|
681 |
msgstr "Opties ingesteld op Standaard."
|
682 |
|
683 |
-
#: admin/main-view.php:
|
684 |
msgid "Do you want to set options to Default?"
|
685 |
msgstr "Wil je opties terug naar standaard instellen?"
|
686 |
|
687 |
-
#: admin/main-view.php:
|
688 |
msgid "Recreate Index"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: admin/main-view.php:
|
692 |
msgid "Are you sure you want to recreate the index?"
|
693 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
694 |
|
695 |
-
#: admin/main-view.php:
|
696 |
msgid ""
|
697 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
698 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -782,9 +787,8 @@ msgid "Quick links"
|
|
782 |
msgstr "Quick links"
|
783 |
|
784 |
#: admin/sidebar-view.php:57
|
785 |
-
|
786 |
-
|
787 |
-
msgstr "Contextual Related Posts "
|
788 |
|
789 |
#: admin/sidebar-view.php:58
|
790 |
msgid "FAQ"
|
@@ -905,6 +909,13 @@ msgstr ""
|
|
905 |
msgid " by "
|
906 |
msgstr ""
|
907 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
#~ msgid "Options saved successfully."
|
909 |
#~ msgstr "Opties succesvol opgeslagen."
|
910 |
|
@@ -927,17 +938,6 @@ msgstr ""
|
|
927 |
#~ msgid "Length of excerpt (in words): "
|
928 |
#~ msgstr "Lengte van uittreksel (in woorden):"
|
929 |
|
930 |
-
#, fuzzy
|
931 |
-
#~ msgid ""
|
932 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
933 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
934 |
-
#~ "it will show the default image as specified above."
|
935 |
-
#~ msgstr ""
|
936 |
-
#~ "De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
|
937 |
-
#~ "bevat, zoniet dan zal de plugin het metaveld controleren. Wanneer het "
|
938 |
-
#~ "geen miniatuurafbeelding bevat wordt de standaard afbeelding getoond "
|
939 |
-
#~ "zoals hieronder aangegeven:"
|
940 |
-
|
941 |
#~ msgid "Post thumbnail options:"
|
942 |
#~ msgstr "Berichtopties miniatuurafbeelding:"
|
943 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: http://WPwebshop.com <info@wppg.me>\n"
|
17 |
"X-Generator: Poedit 1.8.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: admin/admin.php:190
|
21 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: admin/admin.php:193
|
25 |
msgid ""
|
26 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
27 |
"displayed."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin/admin.php:196
|
31 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: admin/admin.php:199
|
35 |
#, php-format
|
36 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/admin.php:223
|
40 |
msgid "Options set to Default."
|
41 |
msgstr "Opties ingesteld op standaard."
|
42 |
|
43 |
+
#: admin/admin.php:232
|
44 |
msgid "Index recreated"
|
45 |
msgstr "Index opnieuw gemaakt"
|
46 |
|
47 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
48 |
msgid "Related Posts"
|
49 |
msgstr "Gerelateerde Berichten"
|
50 |
|
88 |
msgid "List tuning options"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
92 |
#, fuzzy
|
93 |
msgid "Output options"
|
94 |
msgstr "Opties succesvol opgeslagen."
|
95 |
|
96 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
97 |
#: includes/class-crp-widget.php:93
|
98 |
#, fuzzy
|
99 |
msgid "Thumbnail options"
|
100 |
msgstr "Bericht miniatuurafbeelding opties:"
|
101 |
|
102 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
103 |
msgid "Styles"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
107 |
#, fuzzy
|
108 |
msgid "Feed options"
|
109 |
msgstr "Opties succesvol opgeslagen."
|
230 |
"in the list."
|
231 |
msgstr "Contextual Related Posts "
|
232 |
|
233 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
234 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
235 |
+
#: admin/main-view.php:755
|
236 |
#, fuzzy
|
237 |
msgid "Save Options"
|
238 |
msgstr "Opties succesvol opgeslagen."
|
239 |
|
240 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
241 |
msgid "Number of related posts to display: "
|
242 |
msgstr "Aantal weer te geven gerelateerde berichten:"
|
243 |
|
298 |
msgid "List of post or page IDs to exclude from the results:"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
302 |
msgid ""
|
303 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
304 |
msgstr ""
|
314 |
"prompt you with options."
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin/main-view.php:214
|
318 |
+
msgid "Excluded category IDs are:"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: admin/main-view.php:255
|
322 |
msgid "Title of related posts:"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin/main-view.php:258
|
326 |
msgid ""
|
327 |
"This is the main heading of the related posts. You can also display the "
|
328 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
329 |
"Posts to %postname%</code>"
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: admin/main-view.php:262
|
333 |
msgid "When there are no posts, what should be shown?"
|
334 |
msgstr "Wat moet er weergegeven worden wanneer er geen berichten zijn?"
|
335 |
|
336 |
+
#: admin/main-view.php:266
|
337 |
msgid "Blank Output"
|
338 |
msgstr "Lege Output"
|
339 |
|
340 |
+
#: admin/main-view.php:271
|
341 |
#, fuzzy
|
342 |
msgid "Display:"
|
343 |
msgstr "Aantal populaire berichten om weer te geven:"
|
344 |
|
345 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
346 |
msgid "Show post excerpt in list?"
|
347 |
msgstr "Laat bericht uittreksel zien in lijst?"
|
348 |
|
349 |
+
#: admin/main-view.php:280
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
354 |
"automatic excerpt which refers to the first %d words of the post's content"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: admin/main-view.php:283
|
358 |
msgid ""
|
359 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
360 |
"is disabled."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/main-view.php:288
|
364 |
msgid "Length of excerpt (in words):"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: admin/main-view.php:294
|
368 |
#, fuzzy
|
369 |
msgid "Show post author in list?"
|
370 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
371 |
|
372 |
+
#: admin/main-view.php:297
|
373 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/main-view.php:300
|
377 |
msgid ""
|
378 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
379 |
"disabled."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: admin/main-view.php:305
|
383 |
#, fuzzy
|
384 |
msgid "Show post date in list?"
|
385 |
msgstr "Laat bericht samenvatting zien in lijst?"
|
386 |
|
387 |
+
#: admin/main-view.php:308
|
388 |
msgid ""
|
389 |
"Displays the date of the post. Uses the same date format set in General "
|
390 |
"Options"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin/main-view.php:311
|
394 |
msgid ""
|
395 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
396 |
"disabled."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/main-view.php:316
|
400 |
msgid "Limit post title length (in characters)"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/main-view.php:319
|
404 |
msgid ""
|
405 |
"Any title longer than the number of characters set above will be cut and "
|
406 |
"appended with an ellipsis (…)"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/main-view.php:323
|
410 |
msgid "Open links in new window"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/main-view.php:329
|
414 |
msgid "Add nofollow attribute to links in the list"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/main-view.php:362
|
418 |
#, fuzzy
|
419 |
msgid "Exclusion settings:"
|
420 |
msgstr "Instellingen"
|
421 |
|
422 |
+
#: admin/main-view.php:364
|
423 |
#, fuzzy
|
424 |
msgid "Exclude display of related posts on these posts / pages"
|
425 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
426 |
|
427 |
+
#: admin/main-view.php:370
|
428 |
#, fuzzy
|
429 |
msgid "Exclude display of related posts on these post types."
|
430 |
msgstr "Voeg gerelateerde berichten toe aan feed"
|
431 |
|
432 |
+
#: admin/main-view.php:377
|
433 |
msgid ""
|
434 |
"The related posts will not display on any of the above selected post types"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/main-view.php:407
|
438 |
msgid "Customize the output:"
|
439 |
msgstr "Aanpassen van de output:"
|
440 |
|
441 |
+
#: admin/main-view.php:409
|
442 |
msgid "HTML to display before the list of posts: "
|
443 |
msgstr "Weer te geven HTML voor de berichtenlijst:"
|
444 |
|
445 |
+
#: admin/main-view.php:412
|
446 |
msgid "HTML to display before each list item: "
|
447 |
msgstr "Weer te geven HTML voor elk item in de lijst:"
|
448 |
|
449 |
+
#: admin/main-view.php:415
|
450 |
msgid "HTML to display after each list item: "
|
451 |
msgstr "Weer te geven HTML na elk item in de lijst:"
|
452 |
|
453 |
+
#: admin/main-view.php:418
|
454 |
msgid "HTML to display after the list of posts: "
|
455 |
msgstr "Weer te geven HTML na de berichtenlijst:"
|
456 |
|
457 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
458 |
#, fuzzy
|
459 |
msgid "Location of post thumbnail:"
|
460 |
msgstr "Bericht miniatuurafbeelding opties:"
|
461 |
|
462 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
463 |
#, fuzzy
|
464 |
msgid "Display thumbnails inline with posts, before title"
|
465 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
466 |
|
467 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
468 |
#, fuzzy
|
469 |
msgid "Display thumbnails inline with posts, after title"
|
470 |
msgstr "Toon miniatuurafbeeldingen inline met berichten"
|
471 |
|
472 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
473 |
msgid "Display only thumbnails, no text"
|
474 |
msgstr "Alleen miniatuurafbeeldingen weergeven, geen tekst"
|
475 |
|
476 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
477 |
msgid "Do not display thumbnails, only text."
|
478 |
msgstr "Geen miniatuurafbeeldingen weergeven, alleen tekst."
|
479 |
|
480 |
+
#: admin/main-view.php:478
|
481 |
msgid ""
|
482 |
"This setting cannot be changed because an inbuilt style has been selected "
|
483 |
"under the Styles section. If you would like to change this option, please "
|
484 |
"select <strong>No styles</strong> under the Styles section."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/main-view.php:482
|
488 |
msgid "Thumbnail size:"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/main-view.php:506
|
492 |
msgid "Custom size"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/main-view.php:509
|
496 |
msgid "You can choose from existing image sizes above or create a custom size."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/main-view.php:510
|
500 |
msgid ""
|
501 |
"If you choose an existing size, then the width, height and crop mode "
|
502 |
"settings in the three options below will be automatically updated to reflect "
|
503 |
"the correct dimensions of the setting."
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: admin/main-view.php:511
|
507 |
msgid ""
|
508 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
509 |
"settings below. For best results, use a cropped image with the same width "
|
510 |
"and height. The default setting is 150x150 cropped image."
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/main-view.php:512
|
514 |
msgid ""
|
515 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
516 |
"images."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/main-view.php:513
|
520 |
#, php-format
|
521 |
msgid ""
|
522 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
524 |
"all image sizes."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/main-view.php:517
|
528 |
msgid "Width of the thumbnail:"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/main-view.php:520
|
532 |
msgid "Height of the thumbnail: "
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/main-view.php:525
|
536 |
msgid "Crop mode:"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/main-view.php:529
|
540 |
msgid ""
|
541 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
542 |
"proportionately/soft crop the thumbnails."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/main-view.php:530
|
546 |
#, php-format
|
547 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/main-view.php:534
|
551 |
msgid "Image size attributes:"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/main-view.php:538
|
555 |
msgid "Style attributes are used for width and height."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/main-view.php:543
|
559 |
msgid "HTML width and height attributes are used for width and height."
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/main-view.php:548
|
563 |
msgid "No HTML or Style attributes set for width and height"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/main-view.php:553
|
567 |
#, fuzzy
|
568 |
msgid "Post thumbnail meta field name:"
|
569 |
msgstr "Berichtopties miniatuurafbeelding:"
|
570 |
|
571 |
+
#: admin/main-view.php:555
|
572 |
msgid ""
|
573 |
"The value of this field should contain a direct link to the image. This is "
|
574 |
"set in the meta box in the <em>Add New Post</em> screen."
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: admin/main-view.php:558
|
578 |
msgid "Extract the first image from the post?"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: admin/main-view.php:560
|
582 |
msgid ""
|
583 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
584 |
"specified in the meta field."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: admin/main-view.php:563
|
588 |
#, fuzzy
|
589 |
msgid "Use default thumbnail?"
|
590 |
msgstr "Bericht miniatuurafbeelding opties:"
|
591 |
|
592 |
+
#: admin/main-view.php:565
|
593 |
msgid ""
|
594 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
595 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: admin/main-view.php:568
|
599 |
#, fuzzy
|
600 |
msgid "Default thumbnail:"
|
601 |
msgstr "Bericht miniatuurafbeelding opties:"
|
602 |
|
603 |
+
#: admin/main-view.php:571
|
604 |
+
#, fuzzy
|
605 |
msgid ""
|
606 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
607 |
+
"then it will check the meta field. If this is not available, then it will "
|
608 |
+
"show the default image as specified above."
|
609 |
msgstr ""
|
610 |
+
"De plugin zal eerst controleren of het bericht een miniatuurafbeelding "
|
611 |
+
"bevat, zoniet dan zal de plugin het metaveld controleren. Wanneer het geen "
|
612 |
+
"miniatuurafbeelding bevat wordt de standaard afbeelding getoond zoals "
|
613 |
+
"hieronder aangegeven:"
|
614 |
|
615 |
+
#: admin/main-view.php:612
|
616 |
msgid "Style of the related posts:"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: admin/main-view.php:615
|
620 |
msgid "No styles"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: admin/main-view.php:617
|
624 |
msgid "Select this option if you plan to add your own styles"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: admin/main-view.php:621
|
628 |
msgid "Rounded Thumbnails"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/main-view.php:624
|
632 |
msgid ""
|
633 |
"Enabling this option will turn on the thumbnails and set their width and "
|
634 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
636 |
"settings."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:625
|
640 |
#, php-format
|
641 |
msgid ""
|
642 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/main-view.php:629
|
646 |
msgid "Text only"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: admin/main-view.php:631
|
650 |
msgid ""
|
651 |
"Enabling this option will disable thumbnails and no longer include the "
|
652 |
"default style sheet included in the plugin."
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/main-view.php:646
|
656 |
msgid "Custom CSS to add to header:"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: admin/main-view.php:650
|
660 |
msgid ""
|
661 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
662 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
663 |
"\">FAQ</a> for available CSS classes to style."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: admin/main-view.php:690
|
667 |
msgid ""
|
668 |
"Below options override the related posts settings for your blog feed. These "
|
669 |
"only apply if you have selected to add related posts to Feeds in the General "
|
670 |
"Options tab."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: admin/main-view.php:718
|
674 |
#, fuzzy
|
675 |
msgid "Maximum width of the thumbnail: "
|
676 |
msgstr "Bericht miniatuurafbeelding opties:"
|
677 |
|
678 |
+
#: admin/main-view.php:721
|
679 |
#, fuzzy
|
680 |
msgid "Maximum height of the thumbnail: "
|
681 |
msgstr "Bericht miniatuurafbeelding opties:"
|
682 |
|
683 |
+
#: admin/main-view.php:756
|
684 |
#, fuzzy
|
685 |
msgid "Default Options"
|
686 |
msgstr "Opties ingesteld op Standaard."
|
687 |
|
688 |
+
#: admin/main-view.php:756
|
689 |
msgid "Do you want to set options to Default?"
|
690 |
msgstr "Wil je opties terug naar standaard instellen?"
|
691 |
|
692 |
+
#: admin/main-view.php:757
|
693 |
msgid "Recreate Index"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: admin/main-view.php:757
|
697 |
msgid "Are you sure you want to recreate the index?"
|
698 |
msgstr "Weet je zeker dat je de index opnieuw wilt creeëren?"
|
699 |
|
700 |
+
#: admin/main-view.php:762
|
701 |
msgid ""
|
702 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
703 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
787 |
msgstr "Quick links"
|
788 |
|
789 |
#: admin/sidebar-view.php:57
|
790 |
+
msgid "Plugin homepage"
|
791 |
+
msgstr ""
|
|
|
792 |
|
793 |
#: admin/sidebar-view.php:58
|
794 |
msgid "FAQ"
|
909 |
msgid " by "
|
910 |
msgstr ""
|
911 |
|
912 |
+
#~ msgid "Contextual Related Posts"
|
913 |
+
#~ msgstr "Contextual Related Posts"
|
914 |
+
|
915 |
+
#, fuzzy
|
916 |
+
#~ msgid "Contextual Related Posts plugin page"
|
917 |
+
#~ msgstr "Contextual Related Posts "
|
918 |
+
|
919 |
#~ msgid "Options saved successfully."
|
920 |
#~ msgstr "Opties succesvol opgeslagen."
|
921 |
|
938 |
#~ msgid "Length of excerpt (in words): "
|
939 |
#~ msgstr "Lengte van uittreksel (in woorden):"
|
940 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
#~ msgid "Post thumbnail options:"
|
942 |
#~ msgstr "Berichtopties miniatuurafbeelding:"
|
943 |
|
languages/crp-pt_BR.mo
CHANGED
Binary file
|
languages/crp-pt_BR.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Contextual Related Posts\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
-
"POT-Creation-Date: 2015-09-
|
8 |
-
"PO-Revision-Date: 2015-09-
|
9 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
10 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
|
11 |
"contextual-related-posts/language/pt_BR/)\n"
|
@@ -20,38 +20,34 @@ msgstr ""
|
|
20 |
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
25 |
msgstr ""
|
26 |
|
27 |
-
#: admin/admin.php:
|
28 |
msgid ""
|
29 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
30 |
"displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: admin/admin.php:
|
38 |
#, php-format
|
39 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Options set to Default."
|
44 |
msgstr "Opções redefinidas ao padrão."
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
msgid "Index recreated"
|
48 |
msgstr "O índice foi recriado"
|
49 |
|
50 |
-
#: admin/admin.php:
|
51 |
-
msgid "Contextual Related Posts"
|
52 |
-
msgstr "Posts Relacionados Contextuais"
|
53 |
-
|
54 |
-
#: admin/admin.php:249
|
55 |
msgid "Related Posts"
|
56 |
msgstr "Posts Relacionados"
|
57 |
|
@@ -95,20 +91,20 @@ msgstr "Opções gerais"
|
|
95 |
msgid "List tuning options"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
99 |
msgid "Output options"
|
100 |
msgstr "Opções de Resultado"
|
101 |
|
102 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
103 |
#: includes/class-crp-widget.php:93
|
104 |
msgid "Thumbnail options"
|
105 |
msgstr "Opções de miniatura"
|
106 |
|
107 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
108 |
msgid "Styles"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
112 |
msgid "Feed options"
|
113 |
msgstr "Opções de Feed"
|
114 |
|
@@ -226,13 +222,13 @@ msgstr ""
|
|
226 |
"Adiciona um link nofollow à página inicial de Posts Relacionados Contextuais "
|
227 |
"na última vez da lista."
|
228 |
|
229 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
230 |
-
#: admin/main-view.php:
|
231 |
-
#: admin/main-view.php:
|
232 |
msgid "Save Options"
|
233 |
msgstr "Salvar Opções"
|
234 |
|
235 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
236 |
msgid "Number of related posts to display: "
|
237 |
msgstr "Número de posts relacionados a exibir?"
|
238 |
|
@@ -292,7 +288,7 @@ msgstr ""
|
|
292 |
msgid "List of post or page IDs to exclude from the results:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
296 |
msgid ""
|
297 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
298 |
msgstr ""
|
@@ -308,34 +304,38 @@ msgid ""
|
|
308 |
"prompt you with options."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
312 |
msgid "Title of related posts:"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/main-view.php:
|
316 |
msgid ""
|
317 |
"This is the main heading of the related posts. You can also display the "
|
318 |
"current post title by using <code>%postname%</code>. e.g. <code>Related Posts "
|
319 |
"to %postname%</code>"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: admin/main-view.php:
|
323 |
msgid "When there are no posts, what should be shown?"
|
324 |
msgstr "O que mostrar quando não houver nenhum post relacionado?"
|
325 |
|
326 |
-
#: admin/main-view.php:
|
327 |
msgid "Blank Output"
|
328 |
msgstr "Resultado em Branco"
|
329 |
|
330 |
-
#: admin/main-view.php:
|
331 |
msgid "Display:"
|
332 |
msgstr "Mostrar:"
|
333 |
|
334 |
-
#: admin/main-view.php:
|
335 |
msgid "Show post excerpt in list?"
|
336 |
msgstr "Lista de resumos dos posts?"
|
337 |
|
338 |
-
#: admin/main-view.php:
|
339 |
#, php-format
|
340 |
msgid ""
|
341 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -343,161 +343,161 @@ msgid ""
|
|
343 |
"automatic excerpt which refers to the first %d words of the post's content"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin/main-view.php:
|
347 |
msgid ""
|
348 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display is "
|
349 |
"disabled."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/main-view.php:
|
353 |
msgid "Length of excerpt (in words):"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/main-view.php:
|
357 |
msgid "Show post author in list?"
|
358 |
msgstr "Mostra o autor do post na lista?"
|
359 |
|
360 |
-
#: admin/main-view.php:
|
361 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: admin/main-view.php:
|
365 |
msgid ""
|
366 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
367 |
"disabled."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/main-view.php:
|
371 |
msgid "Show post date in list?"
|
372 |
msgstr "Mostrar data do post na lista?"
|
373 |
|
374 |
-
#: admin/main-view.php:
|
375 |
msgid ""
|
376 |
"Displays the date of the post. Uses the same date format set in General "
|
377 |
"Options"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin/main-view.php:
|
381 |
msgid ""
|
382 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
383 |
"disabled."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/main-view.php:
|
387 |
msgid "Limit post title length (in characters)"
|
388 |
msgstr "Limite do título do post (em caracteres)"
|
389 |
|
390 |
-
#: admin/main-view.php:
|
391 |
msgid ""
|
392 |
"Any title longer than the number of characters set above will be cut and "
|
393 |
"appended with an ellipsis (…)"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid "Open links in new window"
|
398 |
msgstr "Abrir links numa nova janela"
|
399 |
|
400 |
-
#: admin/main-view.php:
|
401 |
msgid "Add nofollow attribute to links in the list"
|
402 |
msgstr "Adicionar atributo nofollow aos links na lista"
|
403 |
|
404 |
-
#: admin/main-view.php:
|
405 |
msgid "Exclusion settings:"
|
406 |
msgstr "Configurações de exclusão:"
|
407 |
|
408 |
-
#: admin/main-view.php:
|
409 |
msgid "Exclude display of related posts on these posts / pages"
|
410 |
msgstr "Não exibir posts relacionados nestes posts/páginas?"
|
411 |
|
412 |
-
#: admin/main-view.php:
|
413 |
msgid "Exclude display of related posts on these post types."
|
414 |
msgstr "Excluir exibição de posts relacionados nestes tipos de post."
|
415 |
|
416 |
-
#: admin/main-view.php:
|
417 |
msgid ""
|
418 |
"The related posts will not display on any of the above selected post types"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: admin/main-view.php:
|
422 |
msgid "Customize the output:"
|
423 |
msgstr "Personalizar o resultado:"
|
424 |
|
425 |
-
#: admin/main-view.php:
|
426 |
msgid "HTML to display before the list of posts: "
|
427 |
msgstr "HTML para exibir antes da lista de posts: "
|
428 |
|
429 |
-
#: admin/main-view.php:
|
430 |
msgid "HTML to display before each list item: "
|
431 |
msgstr "HTML para exibir antes de cada item da lista: "
|
432 |
|
433 |
-
#: admin/main-view.php:
|
434 |
msgid "HTML to display after each list item: "
|
435 |
msgstr "HTML para exibir depois de cada item da lista: "
|
436 |
|
437 |
-
#: admin/main-view.php:
|
438 |
msgid "HTML to display after the list of posts: "
|
439 |
msgstr "HTML para exibir depois da lista de posts: "
|
440 |
|
441 |
-
#: admin/main-view.php:
|
442 |
msgid "Location of post thumbnail:"
|
443 |
msgstr "Localização da miniatura do post:"
|
444 |
|
445 |
-
#: admin/main-view.php:
|
446 |
msgid "Display thumbnails inline with posts, before title"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/main-view.php:
|
450 |
msgid "Display thumbnails inline with posts, after title"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin/main-view.php:
|
454 |
msgid "Display only thumbnails, no text"
|
455 |
msgstr "Mostrar somente miniaturas, sem texto"
|
456 |
|
457 |
-
#: admin/main-view.php:
|
458 |
msgid "Do not display thumbnails, only text."
|
459 |
msgstr "Não mostrar miniaturas, somente texto"
|
460 |
|
461 |
-
#: admin/main-view.php:
|
462 |
msgid ""
|
463 |
"This setting cannot be changed because an inbuilt style has been selected "
|
464 |
"under the Styles section. If you would like to change this option, please "
|
465 |
"select <strong>No styles</strong> under the Styles section."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/main-view.php:
|
469 |
msgid "Thumbnail size:"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/main-view.php:
|
473 |
msgid "Custom size"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: admin/main-view.php:
|
477 |
msgid "You can choose from existing image sizes above or create a custom size."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/main-view.php:
|
481 |
msgid ""
|
482 |
"If you choose an existing size, then the width, height and crop mode settings "
|
483 |
"in the three options below will be automatically updated to reflect the "
|
484 |
"correct dimensions of the setting."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/main-view.php:
|
488 |
msgid ""
|
489 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
490 |
"settings below. For best results, use a cropped image with the same width and "
|
491 |
"height. The default setting is 150x150 cropped image."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/main-view.php:
|
495 |
msgid ""
|
496 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
497 |
"images."
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/main-view.php:
|
501 |
#, php-format
|
502 |
msgid ""
|
503 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</a> "
|
@@ -505,60 +505,60 @@ msgid ""
|
|
505 |
"image sizes."
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: admin/main-view.php:
|
509 |
msgid "Width of the thumbnail:"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/main-view.php:
|
513 |
msgid "Height of the thumbnail: "
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: admin/main-view.php:
|
517 |
msgid "Crop mode:"
|
518 |
msgstr "Modo de recorte:"
|
519 |
|
520 |
-
#: admin/main-view.php:
|
521 |
msgid ""
|
522 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
523 |
"proportionately/soft crop the thumbnails."
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/main-view.php:
|
527 |
#, php-format
|
528 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/main-view.php:
|
532 |
msgid "Image size attributes:"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: admin/main-view.php:
|
536 |
msgid "Style attributes are used for width and height."
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: admin/main-view.php:
|
540 |
msgid "HTML width and height attributes are used for width and height."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/main-view.php:
|
544 |
msgid "No HTML or Style attributes set for width and height"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: admin/main-view.php:
|
548 |
msgid "Post thumbnail meta field name:"
|
549 |
msgstr "Nome do campo meta da miniatura do post:"
|
550 |
|
551 |
-
#: admin/main-view.php:
|
552 |
msgid ""
|
553 |
"The value of this field should contain a direct link to the image. This is "
|
554 |
"set in the meta box in the <em>Add New Post</em> screen."
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/main-view.php:
|
558 |
msgid "Extract the first image from the post?"
|
559 |
msgstr "Extrair a primeira imagem do post?"
|
560 |
|
561 |
-
#: admin/main-view.php:
|
562 |
msgid ""
|
563 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
564 |
"specified in the meta field."
|
@@ -566,11 +566,11 @@ msgstr ""
|
|
566 |
"Isso só acontecerá se não houver nenhum conjunto de miniaturas de post e "
|
567 |
"nenhuma URL de imagem for definido no campo meta."
|
568 |
|
569 |
-
#: admin/main-view.php:
|
570 |
msgid "Use default thumbnail?"
|
571 |
msgstr "Usar miniatura padrão?"
|
572 |
|
573 |
-
#: admin/main-view.php:
|
574 |
msgid ""
|
575 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
576 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -579,34 +579,37 @@ msgstr ""
|
|
579 |
"URL abaixo. Se desmarcada e não encontrar nenhuma miniatura, a imagem não "
|
580 |
"será exibida."
|
581 |
|
582 |
-
#: admin/main-view.php:
|
583 |
msgid "Default thumbnail:"
|
584 |
msgstr "Miniatura padrão:"
|
585 |
|
586 |
-
#: admin/main-view.php:
|
587 |
msgid ""
|
588 |
-
"
|
589 |
-
"
|
590 |
-
"
|
591 |
msgstr ""
|
|
|
|
|
|
|
592 |
|
593 |
-
#: admin/main-view.php:
|
594 |
msgid "Style of the related posts:"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: admin/main-view.php:
|
598 |
msgid "No styles"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: admin/main-view.php:
|
602 |
msgid "Select this option if you plan to add your own styles"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: admin/main-view.php:
|
606 |
msgid "Rounded Thumbnails"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: admin/main-view.php:
|
610 |
msgid ""
|
611 |
"Enabling this option will turn on the thumbnails and set their width and "
|
612 |
"height to 150px. It will also turn off the display of the author, excerpt and "
|
@@ -617,27 +620,27 @@ msgstr ""
|
|
617 |
"já estejam habilitados. Desabilitar esta opção não irá reverter quaisquer "
|
618 |
"configurações."
|
619 |
|
620 |
-
#: admin/main-view.php:
|
621 |
#, php-format
|
622 |
msgid ""
|
623 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/main-view.php:
|
627 |
msgid "Text only"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/main-view.php:
|
631 |
msgid ""
|
632 |
"Enabling this option will disable thumbnails and no longer include the "
|
633 |
"default style sheet included in the plugin."
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/main-view.php:
|
637 |
msgid "Custom CSS to add to header:"
|
638 |
msgstr "CSS personalizado para adicionar ao cabeçalho:"
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
msgid ""
|
642 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
643 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
@@ -647,38 +650,38 @@ msgstr ""
|
|
647 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
648 |
"\">FAQ</a> para saber as classes CSS disponíveis para estilizar."
|
649 |
|
650 |
-
#: admin/main-view.php:
|
651 |
msgid ""
|
652 |
"Below options override the related posts settings for your blog feed. These "
|
653 |
"only apply if you have selected to add related posts to Feeds in the General "
|
654 |
"Options tab."
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: admin/main-view.php:
|
658 |
msgid "Maximum width of the thumbnail: "
|
659 |
msgstr "Largura máxima da miniatura:"
|
660 |
|
661 |
-
#: admin/main-view.php:
|
662 |
msgid "Maximum height of the thumbnail: "
|
663 |
msgstr "Altura máxima da miniatura:"
|
664 |
|
665 |
-
#: admin/main-view.php:
|
666 |
msgid "Default Options"
|
667 |
msgstr "Opções Padrão"
|
668 |
|
669 |
-
#: admin/main-view.php:
|
670 |
msgid "Do you want to set options to Default?"
|
671 |
msgstr "Você quer definir opções para o padrão?"
|
672 |
|
673 |
-
#: admin/main-view.php:
|
674 |
msgid "Recreate Index"
|
675 |
msgstr "Recriar Índice"
|
676 |
|
677 |
-
#: admin/main-view.php:
|
678 |
msgid "Are you sure you want to recreate the index?"
|
679 |
msgstr "Tem certeza de que deseja recriar o índice?"
|
680 |
|
681 |
-
#: admin/main-view.php:
|
682 |
msgid ""
|
683 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
684 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -767,8 +770,8 @@ msgid "Quick links"
|
|
767 |
msgstr "Links Rápidos"
|
768 |
|
769 |
#: admin/sidebar-view.php:57
|
770 |
-
msgid "
|
771 |
-
msgstr "
|
772 |
|
773 |
#: admin/sidebar-view.php:58
|
774 |
msgid "FAQ"
|
@@ -876,6 +879,12 @@ msgstr ""
|
|
876 |
msgid " by "
|
877 |
msgstr "por"
|
878 |
|
|
|
|
|
|
|
|
|
|
|
|
|
879 |
#~ msgid "Options saved successfully."
|
880 |
#~ msgstr "Opções salvas com sucesso."
|
881 |
|
@@ -907,15 +916,6 @@ msgstr "por"
|
|
907 |
#~ "O valor deste campo deve conter a fonte de imagem e está definida na tela "
|
908 |
#~ "<em>Adicionar Novo Post</em>"
|
909 |
|
910 |
-
#~ msgid ""
|
911 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
912 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
913 |
-
#~ "it will show the default image as specified above."
|
914 |
-
#~ msgstr ""
|
915 |
-
#~ "O plugin irá verificar primeiro se o post contém uma miniatura. Se não, "
|
916 |
-
#~ "então ele irá verificar o campo de meta. Se este não estiver disponível, "
|
917 |
-
#~ "então mostrará a imagem padrão conforme especificado acima."
|
918 |
-
|
919 |
#~ msgid "Use default style included in the plugin?"
|
920 |
#~ msgstr "Use o estilo padrão incluído no plugin?"
|
921 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Contextual Related Posts\n"
|
6 |
"Report-Msgid-Bugs-To: \n"
|
7 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
8 |
+
"PO-Revision-Date: 2015-09-05 11:13+0100\n"
|
9 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
10 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/"
|
11 |
"contextual-related-posts/language/pt_BR/)\n"
|
20 |
"X-Poedit-SourceCharset: UTF-8\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
|
23 |
+
#: admin/admin.php:190
|
24 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: admin/admin.php:193
|
28 |
msgid ""
|
29 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
30 |
"displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:196
|
34 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/admin.php:199
|
38 |
#, php-format
|
39 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: admin/admin.php:223
|
43 |
msgid "Options set to Default."
|
44 |
msgstr "Opções redefinidas ao padrão."
|
45 |
|
46 |
+
#: admin/admin.php:232
|
47 |
msgid "Index recreated"
|
48 |
msgstr "O índice foi recriado"
|
49 |
|
50 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
51 |
msgid "Related Posts"
|
52 |
msgstr "Posts Relacionados"
|
53 |
|
91 |
msgid "List tuning options"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
95 |
msgid "Output options"
|
96 |
msgstr "Opções de Resultado"
|
97 |
|
98 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
99 |
#: includes/class-crp-widget.php:93
|
100 |
msgid "Thumbnail options"
|
101 |
msgstr "Opções de miniatura"
|
102 |
|
103 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
104 |
msgid "Styles"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
108 |
msgid "Feed options"
|
109 |
msgstr "Opções de Feed"
|
110 |
|
222 |
"Adiciona um link nofollow à página inicial de Posts Relacionados Contextuais "
|
223 |
"na última vez da lista."
|
224 |
|
225 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
226 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
227 |
+
#: admin/main-view.php:755
|
228 |
msgid "Save Options"
|
229 |
msgstr "Salvar Opções"
|
230 |
|
231 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
232 |
msgid "Number of related posts to display: "
|
233 |
msgstr "Número de posts relacionados a exibir?"
|
234 |
|
288 |
msgid "List of post or page IDs to exclude from the results:"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
292 |
msgid ""
|
293 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
294 |
msgstr ""
|
304 |
"prompt you with options."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: admin/main-view.php:214
|
308 |
+
msgid "Excluded category IDs are:"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: admin/main-view.php:255
|
312 |
msgid "Title of related posts:"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/main-view.php:258
|
316 |
msgid ""
|
317 |
"This is the main heading of the related posts. You can also display the "
|
318 |
"current post title by using <code>%postname%</code>. e.g. <code>Related Posts "
|
319 |
"to %postname%</code>"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin/main-view.php:262
|
323 |
msgid "When there are no posts, what should be shown?"
|
324 |
msgstr "O que mostrar quando não houver nenhum post relacionado?"
|
325 |
|
326 |
+
#: admin/main-view.php:266
|
327 |
msgid "Blank Output"
|
328 |
msgstr "Resultado em Branco"
|
329 |
|
330 |
+
#: admin/main-view.php:271
|
331 |
msgid "Display:"
|
332 |
msgstr "Mostrar:"
|
333 |
|
334 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
335 |
msgid "Show post excerpt in list?"
|
336 |
msgstr "Lista de resumos dos posts?"
|
337 |
|
338 |
+
#: admin/main-view.php:280
|
339 |
#, php-format
|
340 |
msgid ""
|
341 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
343 |
"automatic excerpt which refers to the first %d words of the post's content"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: admin/main-view.php:283
|
347 |
msgid ""
|
348 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display is "
|
349 |
"disabled."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/main-view.php:288
|
353 |
msgid "Length of excerpt (in words):"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/main-view.php:294
|
357 |
msgid "Show post author in list?"
|
358 |
msgstr "Mostra o autor do post na lista?"
|
359 |
|
360 |
+
#: admin/main-view.php:297
|
361 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/main-view.php:300
|
365 |
msgid ""
|
366 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
367 |
"disabled."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: admin/main-view.php:305
|
371 |
msgid "Show post date in list?"
|
372 |
msgstr "Mostrar data do post na lista?"
|
373 |
|
374 |
+
#: admin/main-view.php:308
|
375 |
msgid ""
|
376 |
"Displays the date of the post. Uses the same date format set in General "
|
377 |
"Options"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: admin/main-view.php:311
|
381 |
msgid ""
|
382 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
383 |
"disabled."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/main-view.php:316
|
387 |
msgid "Limit post title length (in characters)"
|
388 |
msgstr "Limite do título do post (em caracteres)"
|
389 |
|
390 |
+
#: admin/main-view.php:319
|
391 |
msgid ""
|
392 |
"Any title longer than the number of characters set above will be cut and "
|
393 |
"appended with an ellipsis (…)"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/main-view.php:323
|
397 |
msgid "Open links in new window"
|
398 |
msgstr "Abrir links numa nova janela"
|
399 |
|
400 |
+
#: admin/main-view.php:329
|
401 |
msgid "Add nofollow attribute to links in the list"
|
402 |
msgstr "Adicionar atributo nofollow aos links na lista"
|
403 |
|
404 |
+
#: admin/main-view.php:362
|
405 |
msgid "Exclusion settings:"
|
406 |
msgstr "Configurações de exclusão:"
|
407 |
|
408 |
+
#: admin/main-view.php:364
|
409 |
msgid "Exclude display of related posts on these posts / pages"
|
410 |
msgstr "Não exibir posts relacionados nestes posts/páginas?"
|
411 |
|
412 |
+
#: admin/main-view.php:370
|
413 |
msgid "Exclude display of related posts on these post types."
|
414 |
msgstr "Excluir exibição de posts relacionados nestes tipos de post."
|
415 |
|
416 |
+
#: admin/main-view.php:377
|
417 |
msgid ""
|
418 |
"The related posts will not display on any of the above selected post types"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin/main-view.php:407
|
422 |
msgid "Customize the output:"
|
423 |
msgstr "Personalizar o resultado:"
|
424 |
|
425 |
+
#: admin/main-view.php:409
|
426 |
msgid "HTML to display before the list of posts: "
|
427 |
msgstr "HTML para exibir antes da lista de posts: "
|
428 |
|
429 |
+
#: admin/main-view.php:412
|
430 |
msgid "HTML to display before each list item: "
|
431 |
msgstr "HTML para exibir antes de cada item da lista: "
|
432 |
|
433 |
+
#: admin/main-view.php:415
|
434 |
msgid "HTML to display after each list item: "
|
435 |
msgstr "HTML para exibir depois de cada item da lista: "
|
436 |
|
437 |
+
#: admin/main-view.php:418
|
438 |
msgid "HTML to display after the list of posts: "
|
439 |
msgstr "HTML para exibir depois da lista de posts: "
|
440 |
|
441 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
442 |
msgid "Location of post thumbnail:"
|
443 |
msgstr "Localização da miniatura do post:"
|
444 |
|
445 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
446 |
msgid "Display thumbnails inline with posts, before title"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
450 |
msgid "Display thumbnails inline with posts, after title"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
454 |
msgid "Display only thumbnails, no text"
|
455 |
msgstr "Mostrar somente miniaturas, sem texto"
|
456 |
|
457 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
458 |
msgid "Do not display thumbnails, only text."
|
459 |
msgstr "Não mostrar miniaturas, somente texto"
|
460 |
|
461 |
+
#: admin/main-view.php:478
|
462 |
msgid ""
|
463 |
"This setting cannot be changed because an inbuilt style has been selected "
|
464 |
"under the Styles section. If you would like to change this option, please "
|
465 |
"select <strong>No styles</strong> under the Styles section."
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/main-view.php:482
|
469 |
msgid "Thumbnail size:"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/main-view.php:506
|
473 |
msgid "Custom size"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin/main-view.php:509
|
477 |
msgid "You can choose from existing image sizes above or create a custom size."
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: admin/main-view.php:510
|
481 |
msgid ""
|
482 |
"If you choose an existing size, then the width, height and crop mode settings "
|
483 |
"in the three options below will be automatically updated to reflect the "
|
484 |
"correct dimensions of the setting."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/main-view.php:511
|
488 |
msgid ""
|
489 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
490 |
"settings below. For best results, use a cropped image with the same width and "
|
491 |
"height. The default setting is 150x150 cropped image."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: admin/main-view.php:512
|
495 |
msgid ""
|
496 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
497 |
"images."
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/main-view.php:513
|
501 |
#, php-format
|
502 |
msgid ""
|
503 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</a> "
|
505 |
"image sizes."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/main-view.php:517
|
509 |
msgid "Width of the thumbnail:"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/main-view.php:520
|
513 |
msgid "Height of the thumbnail: "
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/main-view.php:525
|
517 |
msgid "Crop mode:"
|
518 |
msgstr "Modo de recorte:"
|
519 |
|
520 |
+
#: admin/main-view.php:529
|
521 |
msgid ""
|
522 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
523 |
"proportionately/soft crop the thumbnails."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/main-view.php:530
|
527 |
#, php-format
|
528 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/main-view.php:534
|
532 |
msgid "Image size attributes:"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: admin/main-view.php:538
|
536 |
msgid "Style attributes are used for width and height."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/main-view.php:543
|
540 |
msgid "HTML width and height attributes are used for width and height."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/main-view.php:548
|
544 |
msgid "No HTML or Style attributes set for width and height"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/main-view.php:553
|
548 |
msgid "Post thumbnail meta field name:"
|
549 |
msgstr "Nome do campo meta da miniatura do post:"
|
550 |
|
551 |
+
#: admin/main-view.php:555
|
552 |
msgid ""
|
553 |
"The value of this field should contain a direct link to the image. This is "
|
554 |
"set in the meta box in the <em>Add New Post</em> screen."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/main-view.php:558
|
558 |
msgid "Extract the first image from the post?"
|
559 |
msgstr "Extrair a primeira imagem do post?"
|
560 |
|
561 |
+
#: admin/main-view.php:560
|
562 |
msgid ""
|
563 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
564 |
"specified in the meta field."
|
566 |
"Isso só acontecerá se não houver nenhum conjunto de miniaturas de post e "
|
567 |
"nenhuma URL de imagem for definido no campo meta."
|
568 |
|
569 |
+
#: admin/main-view.php:563
|
570 |
msgid "Use default thumbnail?"
|
571 |
msgstr "Usar miniatura padrão?"
|
572 |
|
573 |
+
#: admin/main-view.php:565
|
574 |
msgid ""
|
575 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
576 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
579 |
"URL abaixo. Se desmarcada e não encontrar nenhuma miniatura, a imagem não "
|
580 |
"será exibida."
|
581 |
|
582 |
+
#: admin/main-view.php:568
|
583 |
msgid "Default thumbnail:"
|
584 |
msgstr "Miniatura padrão:"
|
585 |
|
586 |
+
#: admin/main-view.php:571
|
587 |
msgid ""
|
588 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
589 |
+
"then it will check the meta field. If this is not available, then it will "
|
590 |
+
"show the default image as specified above."
|
591 |
msgstr ""
|
592 |
+
"O plugin irá verificar primeiro se o post contém uma miniatura. Se não, então "
|
593 |
+
"ele irá verificar o campo de meta. Se este não estiver disponível, então "
|
594 |
+
"mostrará a imagem padrão conforme especificado acima."
|
595 |
|
596 |
+
#: admin/main-view.php:612
|
597 |
msgid "Style of the related posts:"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/main-view.php:615
|
601 |
msgid "No styles"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: admin/main-view.php:617
|
605 |
msgid "Select this option if you plan to add your own styles"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: admin/main-view.php:621
|
609 |
msgid "Rounded Thumbnails"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/main-view.php:624
|
613 |
msgid ""
|
614 |
"Enabling this option will turn on the thumbnails and set their width and "
|
615 |
"height to 150px. It will also turn off the display of the author, excerpt and "
|
620 |
"já estejam habilitados. Desabilitar esta opção não irá reverter quaisquer "
|
621 |
"configurações."
|
622 |
|
623 |
+
#: admin/main-view.php:625
|
624 |
#, php-format
|
625 |
msgid ""
|
626 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/main-view.php:629
|
630 |
msgid "Text only"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: admin/main-view.php:631
|
634 |
msgid ""
|
635 |
"Enabling this option will disable thumbnails and no longer include the "
|
636 |
"default style sheet included in the plugin."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:646
|
640 |
msgid "Custom CSS to add to header:"
|
641 |
msgstr "CSS personalizado para adicionar ao cabeçalho:"
|
642 |
|
643 |
+
#: admin/main-view.php:650
|
644 |
msgid ""
|
645 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
646 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
650 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
651 |
"\">FAQ</a> para saber as classes CSS disponíveis para estilizar."
|
652 |
|
653 |
+
#: admin/main-view.php:690
|
654 |
msgid ""
|
655 |
"Below options override the related posts settings for your blog feed. These "
|
656 |
"only apply if you have selected to add related posts to Feeds in the General "
|
657 |
"Options tab."
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: admin/main-view.php:718
|
661 |
msgid "Maximum width of the thumbnail: "
|
662 |
msgstr "Largura máxima da miniatura:"
|
663 |
|
664 |
+
#: admin/main-view.php:721
|
665 |
msgid "Maximum height of the thumbnail: "
|
666 |
msgstr "Altura máxima da miniatura:"
|
667 |
|
668 |
+
#: admin/main-view.php:756
|
669 |
msgid "Default Options"
|
670 |
msgstr "Opções Padrão"
|
671 |
|
672 |
+
#: admin/main-view.php:756
|
673 |
msgid "Do you want to set options to Default?"
|
674 |
msgstr "Você quer definir opções para o padrão?"
|
675 |
|
676 |
+
#: admin/main-view.php:757
|
677 |
msgid "Recreate Index"
|
678 |
msgstr "Recriar Índice"
|
679 |
|
680 |
+
#: admin/main-view.php:757
|
681 |
msgid "Are you sure you want to recreate the index?"
|
682 |
msgstr "Tem certeza de que deseja recriar o índice?"
|
683 |
|
684 |
+
#: admin/main-view.php:762
|
685 |
msgid ""
|
686 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
687 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
770 |
msgstr "Links Rápidos"
|
771 |
|
772 |
#: admin/sidebar-view.php:57
|
773 |
+
msgid "Plugin homepage"
|
774 |
+
msgstr ""
|
775 |
|
776 |
#: admin/sidebar-view.php:58
|
777 |
msgid "FAQ"
|
879 |
msgid " by "
|
880 |
msgstr "por"
|
881 |
|
882 |
+
#~ msgid "Contextual Related Posts"
|
883 |
+
#~ msgstr "Posts Relacionados Contextuais"
|
884 |
+
|
885 |
+
#~ msgid "Contextual Related Posts plugin page"
|
886 |
+
#~ msgstr "Página do plugin Posts Relacionados Contextuais"
|
887 |
+
|
888 |
#~ msgid "Options saved successfully."
|
889 |
#~ msgstr "Opções salvas com sucesso."
|
890 |
|
916 |
#~ "O valor deste campo deve conter a fonte de imagem e está definida na tela "
|
917 |
#~ "<em>Adicionar Novo Post</em>"
|
918 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
919 |
#~ msgid "Use default style included in the plugin?"
|
920 |
#~ msgstr "Use o estilo padrão incluído no plugin?"
|
921 |
|
languages/crp-ro_RO.mo
CHANGED
Binary file
|
languages/crp-ro_RO.po
CHANGED
@@ -5,8 +5,8 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Contextual Related Posts\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-09-
|
9 |
-
"PO-Revision-Date: 2015-09-
|
10 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
11 |
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/"
|
12 |
"contextual-related-posts/language/ro_RO/)\n"
|
@@ -22,38 +22,34 @@ msgstr ""
|
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
-
#: admin/admin.php:
|
26 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid ""
|
31 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
32 |
"displayed."
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: admin/admin.php:
|
36 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
#, php-format
|
41 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: admin/admin.php:
|
45 |
msgid "Options set to Default."
|
46 |
msgstr "Opțiuni setate ca predefinite."
|
47 |
|
48 |
-
#: admin/admin.php:
|
49 |
msgid "Index recreated"
|
50 |
msgstr "Index recreat"
|
51 |
|
52 |
-
#: admin/admin.php:
|
53 |
-
msgid "Contextual Related Posts"
|
54 |
-
msgstr "Contextual Related Posts"
|
55 |
-
|
56 |
-
#: admin/admin.php:249
|
57 |
msgid "Related Posts"
|
58 |
msgstr "Articole asociate"
|
59 |
|
@@ -97,20 +93,20 @@ msgstr "Opțiuni generale"
|
|
97 |
msgid "List tuning options"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
101 |
msgid "Output options"
|
102 |
msgstr "Opțiuni de afișare"
|
103 |
|
104 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
105 |
#: includes/class-crp-widget.php:93
|
106 |
msgid "Thumbnail options"
|
107 |
msgstr "Opțiuni imagini miniatură"
|
108 |
|
109 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
110 |
msgid "Styles"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
114 |
msgid "Feed options"
|
115 |
msgstr "Opțiuni flux"
|
116 |
|
@@ -236,13 +232,13 @@ msgstr ""
|
|
236 |
"Adaugă ca ultima in listă o legatură nofollow catre pagina principală a "
|
237 |
"Contextual Related Posts."
|
238 |
|
239 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
240 |
-
#: admin/main-view.php:
|
241 |
-
#: admin/main-view.php:
|
242 |
msgid "Save Options"
|
243 |
msgstr "Salvați opțiunile"
|
244 |
|
245 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
246 |
msgid "Number of related posts to display: "
|
247 |
msgstr "Numărul de articole asociate de afișat."
|
248 |
|
@@ -306,7 +302,7 @@ msgstr ""
|
|
306 |
msgid "List of post or page IDs to exclude from the results:"
|
307 |
msgstr "Listă de ID-uri de articol sau pagină de exclus din rezultate:"
|
308 |
|
309 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
310 |
msgid ""
|
311 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
312 |
msgstr ""
|
@@ -327,11 +323,15 @@ msgstr ""
|
|
327 |
"utilizează autocompletare, asa că începeți să tastați numele categoriei "
|
328 |
"dorite și vi se vor afișa opțiunile."
|
329 |
|
330 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
331 |
msgid "Title of related posts:"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: admin/main-view.php:
|
335 |
msgid ""
|
336 |
"This is the main heading of the related posts. You can also display the "
|
337 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
@@ -341,23 +341,23 @@ msgstr ""
|
|
341 |
"asemenea titlul articolului curent folosind <code>%postname%</code>. "
|
342 |
"Exemplu: <code>Articole asociate cu %postname%</code>"
|
343 |
|
344 |
-
#: admin/main-view.php:
|
345 |
msgid "When there are no posts, what should be shown?"
|
346 |
msgstr "Ce se va afișa cănd nu există articole?"
|
347 |
|
348 |
-
#: admin/main-view.php:
|
349 |
msgid "Blank Output"
|
350 |
msgstr "Afișaj gol"
|
351 |
|
352 |
-
#: admin/main-view.php:
|
353 |
msgid "Display:"
|
354 |
msgstr "Afișare:"
|
355 |
|
356 |
-
#: admin/main-view.php:
|
357 |
msgid "Show post excerpt in list?"
|
358 |
msgstr "Arată extrasul articolului in listă?"
|
359 |
|
360 |
-
#: admin/main-view.php:
|
361 |
#, php-format
|
362 |
msgid ""
|
363 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -368,165 +368,165 @@ msgstr ""
|
|
368 |
"opțional al editorului ), va fi generat un extras automat ce va conține "
|
369 |
"primele %d cuvinte din conținutul articolului."
|
370 |
|
371 |
-
#: admin/main-view.php:
|
372 |
msgid ""
|
373 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
374 |
"is disabled."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/main-view.php:
|
378 |
msgid "Length of excerpt (in words):"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/main-view.php:
|
382 |
msgid "Show post author in list?"
|
383 |
msgstr "Afișați autorul articolului în listă?"
|
384 |
|
385 |
-
#: admin/main-view.php:
|
386 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
387 |
msgstr "Afișează numele autorului cu prefixul \"de\". Exemplu: de John Doe"
|
388 |
|
389 |
-
#: admin/main-view.php:
|
390 |
msgid ""
|
391 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
392 |
"disabled."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/main-view.php:
|
396 |
msgid "Show post date in list?"
|
397 |
msgstr "Afișați data articolului în listă?"
|
398 |
|
399 |
-
#: admin/main-view.php:
|
400 |
msgid ""
|
401 |
"Displays the date of the post. Uses the same date format set in General "
|
402 |
"Options"
|
403 |
msgstr ""
|
404 |
"Afișează data articolului. Utilizează formatul setat in Opțiuni Generale."
|
405 |
|
406 |
-
#: admin/main-view.php:
|
407 |
msgid ""
|
408 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
409 |
"disabled."
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin/main-view.php:
|
413 |
msgid "Limit post title length (in characters)"
|
414 |
msgstr "Limita titlului articolului (în caractere)"
|
415 |
|
416 |
-
#: admin/main-view.php:
|
417 |
msgid ""
|
418 |
"Any title longer than the number of characters set above will be cut and "
|
419 |
"appended with an ellipsis (…)"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: admin/main-view.php:
|
423 |
msgid "Open links in new window"
|
424 |
msgstr "Se deschide într-o fereastră nouă"
|
425 |
|
426 |
-
#: admin/main-view.php:
|
427 |
msgid "Add nofollow attribute to links in the list"
|
428 |
msgstr "Adaugă atribut nofollow legăturilor din listă"
|
429 |
|
430 |
-
#: admin/main-view.php:
|
431 |
msgid "Exclusion settings:"
|
432 |
msgstr "Setări de excludere:"
|
433 |
|
434 |
-
#: admin/main-view.php:
|
435 |
msgid "Exclude display of related posts on these posts / pages"
|
436 |
msgstr "Exclude afișarea articolelor asociate pentru aceste articole / pagini"
|
437 |
|
438 |
-
#: admin/main-view.php:
|
439 |
msgid "Exclude display of related posts on these post types."
|
440 |
msgstr ""
|
441 |
"Exclude afișarea articolelor asociate pentru aceste tipuri de articole."
|
442 |
|
443 |
-
#: admin/main-view.php:
|
444 |
msgid ""
|
445 |
"The related posts will not display on any of the above selected post types"
|
446 |
msgstr ""
|
447 |
"Articolele asociate nu vor fi afișate pentru niciunul dintre tipurile de "
|
448 |
"articole selectate mai sus"
|
449 |
|
450 |
-
#: admin/main-view.php:
|
451 |
msgid "Customize the output:"
|
452 |
msgstr "Personalizați afișajul:"
|
453 |
|
454 |
-
#: admin/main-view.php:
|
455 |
msgid "HTML to display before the list of posts: "
|
456 |
msgstr "Cod HTML de afișat înaintea listei de articole:"
|
457 |
|
458 |
-
#: admin/main-view.php:
|
459 |
msgid "HTML to display before each list item: "
|
460 |
msgstr "Cod HTML de afișat înaintea fiecarei intrari din listă:"
|
461 |
|
462 |
-
#: admin/main-view.php:
|
463 |
msgid "HTML to display after each list item: "
|
464 |
msgstr "Cod HTML de afișat după fiecare intrare din listă:"
|
465 |
|
466 |
-
#: admin/main-view.php:
|
467 |
msgid "HTML to display after the list of posts: "
|
468 |
msgstr "Cod HTML de afișat după lista de articole:"
|
469 |
|
470 |
-
#: admin/main-view.php:
|
471 |
msgid "Location of post thumbnail:"
|
472 |
msgstr "Poziția imaginii miniatură:"
|
473 |
|
474 |
-
#: admin/main-view.php:
|
475 |
msgid "Display thumbnails inline with posts, before title"
|
476 |
msgstr "Afișează imagini miniatură în linie cu articolele, înaintea titlului"
|
477 |
|
478 |
-
#: admin/main-view.php:
|
479 |
msgid "Display thumbnails inline with posts, after title"
|
480 |
msgstr "Afișează imagini miniatură în linie cu articolele, după titlu"
|
481 |
|
482 |
-
#: admin/main-view.php:
|
483 |
msgid "Display only thumbnails, no text"
|
484 |
msgstr "Afișează doar imagini miniatură, fără text"
|
485 |
|
486 |
-
#: admin/main-view.php:
|
487 |
msgid "Do not display thumbnails, only text."
|
488 |
msgstr "Nu afișează imagini miniatură, doar text."
|
489 |
|
490 |
-
#: admin/main-view.php:
|
491 |
msgid ""
|
492 |
"This setting cannot be changed because an inbuilt style has been selected "
|
493 |
"under the Styles section. If you would like to change this option, please "
|
494 |
"select <strong>No styles</strong> under the Styles section."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/main-view.php:
|
498 |
msgid "Thumbnail size:"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/main-view.php:
|
502 |
msgid "Custom size"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/main-view.php:
|
506 |
msgid "You can choose from existing image sizes above or create a custom size."
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/main-view.php:
|
510 |
msgid ""
|
511 |
"If you choose an existing size, then the width, height and crop mode "
|
512 |
"settings in the three options below will be automatically updated to reflect "
|
513 |
"the correct dimensions of the setting."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: admin/main-view.php:
|
517 |
msgid ""
|
518 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
519 |
"settings below. For best results, use a cropped image with the same width "
|
520 |
"and height. The default setting is 150x150 cropped image."
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: admin/main-view.php:
|
524 |
msgid ""
|
525 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
526 |
"images."
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: admin/main-view.php:
|
530 |
#, php-format
|
531 |
msgid ""
|
532 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -534,62 +534,62 @@ msgid ""
|
|
534 |
"all image sizes."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: admin/main-view.php:
|
538 |
msgid "Width of the thumbnail:"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/main-view.php:
|
542 |
msgid "Height of the thumbnail: "
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/main-view.php:
|
546 |
msgid "Crop mode:"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/main-view.php:
|
550 |
msgid ""
|
551 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
552 |
"proportionately/soft crop the thumbnails."
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/main-view.php:
|
556 |
#, php-format
|
557 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/main-view.php:
|
561 |
msgid "Image size attributes:"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/main-view.php:
|
565 |
msgid "Style attributes are used for width and height."
|
566 |
msgstr "Atributele de stil sunt folosite pentru lățime și înălțime."
|
567 |
|
568 |
-
#: admin/main-view.php:
|
569 |
msgid "HTML width and height attributes are used for width and height."
|
570 |
msgstr ""
|
571 |
"Atributele HTML de lătime și înălțime sunt folosite pentru lățime și "
|
572 |
"înălțime."
|
573 |
|
574 |
-
#: admin/main-view.php:
|
575 |
msgid "No HTML or Style attributes set for width and height"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: admin/main-view.php:
|
579 |
msgid "Post thumbnail meta field name:"
|
580 |
msgstr "Numele câmpului meta al imaginii miniatură a articolului:"
|
581 |
|
582 |
-
#: admin/main-view.php:
|
583 |
msgid ""
|
584 |
"The value of this field should contain a direct link to the image. This is "
|
585 |
"set in the meta box in the <em>Add New Post</em> screen."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/main-view.php:
|
589 |
msgid "Extract the first image from the post?"
|
590 |
msgstr "Extrageți prima imagine din articol?"
|
591 |
|
592 |
-
#: admin/main-view.php:
|
593 |
msgid ""
|
594 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
595 |
"specified in the meta field."
|
@@ -597,11 +597,11 @@ msgstr ""
|
|
597 |
"Asta se va întâmpla doar daca nu exista o imagine miniatură setata și nu a "
|
598 |
"fost specificată adresa URL a unei imagini in câmpul meta."
|
599 |
|
600 |
-
#: admin/main-view.php:
|
601 |
msgid "Use default thumbnail?"
|
602 |
msgstr "Folosiți imaginea miniatură predefinită?"
|
603 |
|
604 |
-
#: admin/main-view.php:
|
605 |
msgid ""
|
606 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
607 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
@@ -610,34 +610,37 @@ msgstr ""
|
|
610 |
"adresa URL de mai jos. Daca nu bifați și nu se găsește o imagine miniatură, "
|
611 |
"nicio imagine nu va fi afișată."
|
612 |
|
613 |
-
#: admin/main-view.php:
|
614 |
msgid "Default thumbnail:"
|
615 |
msgstr "Imagine miniatură predefinită:"
|
616 |
|
617 |
-
#: admin/main-view.php:
|
618 |
msgid ""
|
619 |
-
"
|
620 |
-
"
|
621 |
-
"
|
622 |
msgstr ""
|
|
|
|
|
|
|
623 |
|
624 |
-
#: admin/main-view.php:
|
625 |
msgid "Style of the related posts:"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: admin/main-view.php:
|
629 |
msgid "No styles"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/main-view.php:
|
633 |
msgid "Select this option if you plan to add your own styles"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/main-view.php:
|
637 |
msgid "Rounded Thumbnails"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: admin/main-view.php:
|
641 |
msgid ""
|
642 |
"Enabling this option will turn on the thumbnails and set their width and "
|
643 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -645,27 +648,27 @@ msgid ""
|
|
645 |
"settings."
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/main-view.php:
|
649 |
#, php-format
|
650 |
msgid ""
|
651 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: admin/main-view.php:
|
655 |
msgid "Text only"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/main-view.php:
|
659 |
msgid ""
|
660 |
"Enabling this option will disable thumbnails and no longer include the "
|
661 |
"default style sheet included in the plugin."
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: admin/main-view.php:
|
665 |
msgid "Custom CSS to add to header:"
|
666 |
msgstr "Cod CSS personalizat de adăugat în header:"
|
667 |
|
668 |
-
#: admin/main-view.php:
|
669 |
msgid ""
|
670 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
671 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
@@ -675,7 +678,7 @@ msgstr ""
|
|
675 |
"\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
|
676 |
"\"_blank\">Întrebări / Răspunsuri</a> pentru clasele disponibile stilizării."
|
677 |
|
678 |
-
#: admin/main-view.php:
|
679 |
msgid ""
|
680 |
"Below options override the related posts settings for your blog feed. These "
|
681 |
"only apply if you have selected to add related posts to Feeds in the General "
|
@@ -685,31 +688,31 @@ msgstr ""
|
|
685 |
"blogului. Acestea se aplică doar dacă ați selectat adăugarea articolelor "
|
686 |
"asociatele la Flux in sectiunea de Setări Generale."
|
687 |
|
688 |
-
#: admin/main-view.php:
|
689 |
msgid "Maximum width of the thumbnail: "
|
690 |
msgstr "Lățimea maximă a imaginii miniatură:"
|
691 |
|
692 |
-
#: admin/main-view.php:
|
693 |
msgid "Maximum height of the thumbnail: "
|
694 |
msgstr "Înălțimea maximăa a imaginii miniatură:"
|
695 |
|
696 |
-
#: admin/main-view.php:
|
697 |
msgid "Default Options"
|
698 |
msgstr "Opțiuni predefinite"
|
699 |
|
700 |
-
#: admin/main-view.php:
|
701 |
msgid "Do you want to set options to Default?"
|
702 |
msgstr "Doriți încărcarea opțiunilor predefinite?"
|
703 |
|
704 |
-
#: admin/main-view.php:
|
705 |
msgid "Recreate Index"
|
706 |
msgstr "Recreare index"
|
707 |
|
708 |
-
#: admin/main-view.php:
|
709 |
msgid "Are you sure you want to recreate the index?"
|
710 |
msgstr "Sunteți sigur că doriți recrearea indexului?"
|
711 |
|
712 |
-
#: admin/main-view.php:
|
713 |
msgid ""
|
714 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
715 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -799,8 +802,8 @@ msgid "Quick links"
|
|
799 |
msgstr "Legături rapide"
|
800 |
|
801 |
#: admin/sidebar-view.php:57
|
802 |
-
msgid "
|
803 |
-
msgstr "
|
804 |
|
805 |
#: admin/sidebar-view.php:58
|
806 |
msgid "FAQ"
|
@@ -907,6 +910,12 @@ msgstr ""
|
|
907 |
msgid " by "
|
908 |
msgstr "de"
|
909 |
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
#~ msgid "Options saved successfully."
|
911 |
#~ msgstr "Opțiuni salvate cu succes."
|
912 |
|
@@ -970,15 +979,6 @@ msgstr "de"
|
|
970 |
#~ "Valoarea acestui câmp ar trebui să conțină sursa imaginii și este setată "
|
971 |
#~ "in ecranul de <em>Adaugare articol nou</em>"
|
972 |
|
973 |
-
#~ msgid ""
|
974 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
975 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
976 |
-
#~ "it will show the default image as specified above."
|
977 |
-
#~ msgstr ""
|
978 |
-
#~ "Modului va verifica întâi dacă articolul conține o imagine miniatură. "
|
979 |
-
#~ "Dacă nu, va verifica câmpul meta. Dacă acesta nu este disponibil, va "
|
980 |
-
#~ "afișa imaginea predefinită specificată mai deasupra."
|
981 |
-
|
982 |
#~ msgid "Use default style included in the plugin?"
|
983 |
#~ msgstr "Utilizați stilurile predefinite incluse în modul?"
|
984 |
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Contextual Related Posts\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
9 |
+
"PO-Revision-Date: 2015-09-05 11:13+0100\n"
|
10 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
11 |
"Language-Team: Romanian (Romania) (http://www.transifex.com/projects/p/"
|
12 |
"contextual-related-posts/language/ro_RO/)\n"
|
22 |
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
"X-Poedit-SearchPath-0: .\n"
|
24 |
|
25 |
+
#: admin/admin.php:190
|
26 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:193
|
30 |
msgid ""
|
31 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
32 |
"displayed."
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin/admin.php:196
|
36 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin/admin.php:199
|
40 |
#, php-format
|
41 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: admin/admin.php:223
|
45 |
msgid "Options set to Default."
|
46 |
msgstr "Opțiuni setate ca predefinite."
|
47 |
|
48 |
+
#: admin/admin.php:232
|
49 |
msgid "Index recreated"
|
50 |
msgstr "Index recreat"
|
51 |
|
52 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
53 |
msgid "Related Posts"
|
54 |
msgstr "Articole asociate"
|
55 |
|
93 |
msgid "List tuning options"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
97 |
msgid "Output options"
|
98 |
msgstr "Opțiuni de afișare"
|
99 |
|
100 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
101 |
#: includes/class-crp-widget.php:93
|
102 |
msgid "Thumbnail options"
|
103 |
msgstr "Opțiuni imagini miniatură"
|
104 |
|
105 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
106 |
msgid "Styles"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
110 |
msgid "Feed options"
|
111 |
msgstr "Opțiuni flux"
|
112 |
|
232 |
"Adaugă ca ultima in listă o legatură nofollow catre pagina principală a "
|
233 |
"Contextual Related Posts."
|
234 |
|
235 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
236 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
237 |
+
#: admin/main-view.php:755
|
238 |
msgid "Save Options"
|
239 |
msgstr "Salvați opțiunile"
|
240 |
|
241 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
242 |
msgid "Number of related posts to display: "
|
243 |
msgstr "Numărul de articole asociate de afișat."
|
244 |
|
302 |
msgid "List of post or page IDs to exclude from the results:"
|
303 |
msgstr "Listă de ID-uri de articol sau pagină de exclus din rezultate:"
|
304 |
|
305 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
306 |
msgid ""
|
307 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
308 |
msgstr ""
|
323 |
"utilizează autocompletare, asa că începeți să tastați numele categoriei "
|
324 |
"dorite și vi se vor afișa opțiunile."
|
325 |
|
326 |
+
#: admin/main-view.php:214
|
327 |
+
msgid "Excluded category IDs are:"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: admin/main-view.php:255
|
331 |
msgid "Title of related posts:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin/main-view.php:258
|
335 |
msgid ""
|
336 |
"This is the main heading of the related posts. You can also display the "
|
337 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
341 |
"asemenea titlul articolului curent folosind <code>%postname%</code>. "
|
342 |
"Exemplu: <code>Articole asociate cu %postname%</code>"
|
343 |
|
344 |
+
#: admin/main-view.php:262
|
345 |
msgid "When there are no posts, what should be shown?"
|
346 |
msgstr "Ce se va afișa cănd nu există articole?"
|
347 |
|
348 |
+
#: admin/main-view.php:266
|
349 |
msgid "Blank Output"
|
350 |
msgstr "Afișaj gol"
|
351 |
|
352 |
+
#: admin/main-view.php:271
|
353 |
msgid "Display:"
|
354 |
msgstr "Afișare:"
|
355 |
|
356 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
357 |
msgid "Show post excerpt in list?"
|
358 |
msgstr "Arată extrasul articolului in listă?"
|
359 |
|
360 |
+
#: admin/main-view.php:280
|
361 |
#, php-format
|
362 |
msgid ""
|
363 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
368 |
"opțional al editorului ), va fi generat un extras automat ce va conține "
|
369 |
"primele %d cuvinte din conținutul articolului."
|
370 |
|
371 |
+
#: admin/main-view.php:283
|
372 |
msgid ""
|
373 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
374 |
"is disabled."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: admin/main-view.php:288
|
378 |
msgid "Length of excerpt (in words):"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/main-view.php:294
|
382 |
msgid "Show post author in list?"
|
383 |
msgstr "Afișați autorul articolului în listă?"
|
384 |
|
385 |
+
#: admin/main-view.php:297
|
386 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
387 |
msgstr "Afișează numele autorului cu prefixul \"de\". Exemplu: de John Doe"
|
388 |
|
389 |
+
#: admin/main-view.php:300
|
390 |
msgid ""
|
391 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
392 |
"disabled."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/main-view.php:305
|
396 |
msgid "Show post date in list?"
|
397 |
msgstr "Afișați data articolului în listă?"
|
398 |
|
399 |
+
#: admin/main-view.php:308
|
400 |
msgid ""
|
401 |
"Displays the date of the post. Uses the same date format set in General "
|
402 |
"Options"
|
403 |
msgstr ""
|
404 |
"Afișează data articolului. Utilizează formatul setat in Opțiuni Generale."
|
405 |
|
406 |
+
#: admin/main-view.php:311
|
407 |
msgid ""
|
408 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
409 |
"disabled."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: admin/main-view.php:316
|
413 |
msgid "Limit post title length (in characters)"
|
414 |
msgstr "Limita titlului articolului (în caractere)"
|
415 |
|
416 |
+
#: admin/main-view.php:319
|
417 |
msgid ""
|
418 |
"Any title longer than the number of characters set above will be cut and "
|
419 |
"appended with an ellipsis (…)"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin/main-view.php:323
|
423 |
msgid "Open links in new window"
|
424 |
msgstr "Se deschide într-o fereastră nouă"
|
425 |
|
426 |
+
#: admin/main-view.php:329
|
427 |
msgid "Add nofollow attribute to links in the list"
|
428 |
msgstr "Adaugă atribut nofollow legăturilor din listă"
|
429 |
|
430 |
+
#: admin/main-view.php:362
|
431 |
msgid "Exclusion settings:"
|
432 |
msgstr "Setări de excludere:"
|
433 |
|
434 |
+
#: admin/main-view.php:364
|
435 |
msgid "Exclude display of related posts on these posts / pages"
|
436 |
msgstr "Exclude afișarea articolelor asociate pentru aceste articole / pagini"
|
437 |
|
438 |
+
#: admin/main-view.php:370
|
439 |
msgid "Exclude display of related posts on these post types."
|
440 |
msgstr ""
|
441 |
"Exclude afișarea articolelor asociate pentru aceste tipuri de articole."
|
442 |
|
443 |
+
#: admin/main-view.php:377
|
444 |
msgid ""
|
445 |
"The related posts will not display on any of the above selected post types"
|
446 |
msgstr ""
|
447 |
"Articolele asociate nu vor fi afișate pentru niciunul dintre tipurile de "
|
448 |
"articole selectate mai sus"
|
449 |
|
450 |
+
#: admin/main-view.php:407
|
451 |
msgid "Customize the output:"
|
452 |
msgstr "Personalizați afișajul:"
|
453 |
|
454 |
+
#: admin/main-view.php:409
|
455 |
msgid "HTML to display before the list of posts: "
|
456 |
msgstr "Cod HTML de afișat înaintea listei de articole:"
|
457 |
|
458 |
+
#: admin/main-view.php:412
|
459 |
msgid "HTML to display before each list item: "
|
460 |
msgstr "Cod HTML de afișat înaintea fiecarei intrari din listă:"
|
461 |
|
462 |
+
#: admin/main-view.php:415
|
463 |
msgid "HTML to display after each list item: "
|
464 |
msgstr "Cod HTML de afișat după fiecare intrare din listă:"
|
465 |
|
466 |
+
#: admin/main-view.php:418
|
467 |
msgid "HTML to display after the list of posts: "
|
468 |
msgstr "Cod HTML de afișat după lista de articole:"
|
469 |
|
470 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
471 |
msgid "Location of post thumbnail:"
|
472 |
msgstr "Poziția imaginii miniatură:"
|
473 |
|
474 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
475 |
msgid "Display thumbnails inline with posts, before title"
|
476 |
msgstr "Afișează imagini miniatură în linie cu articolele, înaintea titlului"
|
477 |
|
478 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
479 |
msgid "Display thumbnails inline with posts, after title"
|
480 |
msgstr "Afișează imagini miniatură în linie cu articolele, după titlu"
|
481 |
|
482 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
483 |
msgid "Display only thumbnails, no text"
|
484 |
msgstr "Afișează doar imagini miniatură, fără text"
|
485 |
|
486 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
487 |
msgid "Do not display thumbnails, only text."
|
488 |
msgstr "Nu afișează imagini miniatură, doar text."
|
489 |
|
490 |
+
#: admin/main-view.php:478
|
491 |
msgid ""
|
492 |
"This setting cannot be changed because an inbuilt style has been selected "
|
493 |
"under the Styles section. If you would like to change this option, please "
|
494 |
"select <strong>No styles</strong> under the Styles section."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: admin/main-view.php:482
|
498 |
msgid "Thumbnail size:"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: admin/main-view.php:506
|
502 |
msgid "Custom size"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/main-view.php:509
|
506 |
msgid "You can choose from existing image sizes above or create a custom size."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/main-view.php:510
|
510 |
msgid ""
|
511 |
"If you choose an existing size, then the width, height and crop mode "
|
512 |
"settings in the three options below will be automatically updated to reflect "
|
513 |
"the correct dimensions of the setting."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/main-view.php:511
|
517 |
msgid ""
|
518 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
519 |
"settings below. For best results, use a cropped image with the same width "
|
520 |
"and height. The default setting is 150x150 cropped image."
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/main-view.php:512
|
524 |
msgid ""
|
525 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
526 |
"images."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/main-view.php:513
|
530 |
#, php-format
|
531 |
msgid ""
|
532 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
534 |
"all image sizes."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/main-view.php:517
|
538 |
msgid "Width of the thumbnail:"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/main-view.php:520
|
542 |
msgid "Height of the thumbnail: "
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/main-view.php:525
|
546 |
msgid "Crop mode:"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/main-view.php:529
|
550 |
msgid ""
|
551 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
552 |
"proportionately/soft crop the thumbnails."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/main-view.php:530
|
556 |
#, php-format
|
557 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/main-view.php:534
|
561 |
msgid "Image size attributes:"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/main-view.php:538
|
565 |
msgid "Style attributes are used for width and height."
|
566 |
msgstr "Atributele de stil sunt folosite pentru lățime și înălțime."
|
567 |
|
568 |
+
#: admin/main-view.php:543
|
569 |
msgid "HTML width and height attributes are used for width and height."
|
570 |
msgstr ""
|
571 |
"Atributele HTML de lătime și înălțime sunt folosite pentru lățime și "
|
572 |
"înălțime."
|
573 |
|
574 |
+
#: admin/main-view.php:548
|
575 |
msgid "No HTML or Style attributes set for width and height"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/main-view.php:553
|
579 |
msgid "Post thumbnail meta field name:"
|
580 |
msgstr "Numele câmpului meta al imaginii miniatură a articolului:"
|
581 |
|
582 |
+
#: admin/main-view.php:555
|
583 |
msgid ""
|
584 |
"The value of this field should contain a direct link to the image. This is "
|
585 |
"set in the meta box in the <em>Add New Post</em> screen."
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/main-view.php:558
|
589 |
msgid "Extract the first image from the post?"
|
590 |
msgstr "Extrageți prima imagine din articol?"
|
591 |
|
592 |
+
#: admin/main-view.php:560
|
593 |
msgid ""
|
594 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
595 |
"specified in the meta field."
|
597 |
"Asta se va întâmpla doar daca nu exista o imagine miniatură setata și nu a "
|
598 |
"fost specificată adresa URL a unei imagini in câmpul meta."
|
599 |
|
600 |
+
#: admin/main-view.php:563
|
601 |
msgid "Use default thumbnail?"
|
602 |
msgstr "Folosiți imaginea miniatură predefinită?"
|
603 |
|
604 |
+
#: admin/main-view.php:565
|
605 |
msgid ""
|
606 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
607 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
610 |
"adresa URL de mai jos. Daca nu bifați și nu se găsește o imagine miniatură, "
|
611 |
"nicio imagine nu va fi afișată."
|
612 |
|
613 |
+
#: admin/main-view.php:568
|
614 |
msgid "Default thumbnail:"
|
615 |
msgstr "Imagine miniatură predefinită:"
|
616 |
|
617 |
+
#: admin/main-view.php:571
|
618 |
msgid ""
|
619 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
620 |
+
"then it will check the meta field. If this is not available, then it will "
|
621 |
+
"show the default image as specified above."
|
622 |
msgstr ""
|
623 |
+
"Modului va verifica întâi dacă articolul conține o imagine miniatură. Dacă "
|
624 |
+
"nu, va verifica câmpul meta. Dacă acesta nu este disponibil, va afișa "
|
625 |
+
"imaginea predefinită specificată mai deasupra."
|
626 |
|
627 |
+
#: admin/main-view.php:612
|
628 |
msgid "Style of the related posts:"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/main-view.php:615
|
632 |
msgid "No styles"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/main-view.php:617
|
636 |
msgid "Select this option if you plan to add your own styles"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:621
|
640 |
msgid "Rounded Thumbnails"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/main-view.php:624
|
644 |
msgid ""
|
645 |
"Enabling this option will turn on the thumbnails and set their width and "
|
646 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
648 |
"settings."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/main-view.php:625
|
652 |
#, php-format
|
653 |
msgid ""
|
654 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: admin/main-view.php:629
|
658 |
msgid "Text only"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: admin/main-view.php:631
|
662 |
msgid ""
|
663 |
"Enabling this option will disable thumbnails and no longer include the "
|
664 |
"default style sheet included in the plugin."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: admin/main-view.php:646
|
668 |
msgid "Custom CSS to add to header:"
|
669 |
msgstr "Cod CSS personalizat de adăugat în header:"
|
670 |
|
671 |
+
#: admin/main-view.php:650
|
672 |
msgid ""
|
673 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
674 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
678 |
"\"http://wordpress.org/extend/plugins/contextual-related-posts/faq/\" target="
|
679 |
"\"_blank\">Întrebări / Răspunsuri</a> pentru clasele disponibile stilizării."
|
680 |
|
681 |
+
#: admin/main-view.php:690
|
682 |
msgid ""
|
683 |
"Below options override the related posts settings for your blog feed. These "
|
684 |
"only apply if you have selected to add related posts to Feeds in the General "
|
688 |
"blogului. Acestea se aplică doar dacă ați selectat adăugarea articolelor "
|
689 |
"asociatele la Flux in sectiunea de Setări Generale."
|
690 |
|
691 |
+
#: admin/main-view.php:718
|
692 |
msgid "Maximum width of the thumbnail: "
|
693 |
msgstr "Lățimea maximă a imaginii miniatură:"
|
694 |
|
695 |
+
#: admin/main-view.php:721
|
696 |
msgid "Maximum height of the thumbnail: "
|
697 |
msgstr "Înălțimea maximăa a imaginii miniatură:"
|
698 |
|
699 |
+
#: admin/main-view.php:756
|
700 |
msgid "Default Options"
|
701 |
msgstr "Opțiuni predefinite"
|
702 |
|
703 |
+
#: admin/main-view.php:756
|
704 |
msgid "Do you want to set options to Default?"
|
705 |
msgstr "Doriți încărcarea opțiunilor predefinite?"
|
706 |
|
707 |
+
#: admin/main-view.php:757
|
708 |
msgid "Recreate Index"
|
709 |
msgstr "Recreare index"
|
710 |
|
711 |
+
#: admin/main-view.php:757
|
712 |
msgid "Are you sure you want to recreate the index?"
|
713 |
msgstr "Sunteți sigur că doriți recrearea indexului?"
|
714 |
|
715 |
+
#: admin/main-view.php:762
|
716 |
msgid ""
|
717 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
718 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
802 |
msgstr "Legături rapide"
|
803 |
|
804 |
#: admin/sidebar-view.php:57
|
805 |
+
msgid "Plugin homepage"
|
806 |
+
msgstr ""
|
807 |
|
808 |
#: admin/sidebar-view.php:58
|
809 |
msgid "FAQ"
|
910 |
msgid " by "
|
911 |
msgstr "de"
|
912 |
|
913 |
+
#~ msgid "Contextual Related Posts"
|
914 |
+
#~ msgstr "Contextual Related Posts"
|
915 |
+
|
916 |
+
#~ msgid "Contextual Related Posts plugin page"
|
917 |
+
#~ msgstr "Pagina modulului Contextual Related Posts"
|
918 |
+
|
919 |
#~ msgid "Options saved successfully."
|
920 |
#~ msgstr "Opțiuni salvate cu succes."
|
921 |
|
979 |
#~ "Valoarea acestui câmp ar trebui să conțină sursa imaginii și este setată "
|
980 |
#~ "in ecranul de <em>Adaugare articol nou</em>"
|
981 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
982 |
#~ msgid "Use default style included in the plugin?"
|
983 |
#~ msgstr "Utilizați stilurile predefinite incluse în modul?"
|
984 |
|
languages/crp-ru_RU.mo
CHANGED
Binary file
|
languages/crp-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: me@ajaydsouza.com\n"
|
@@ -16,38 +16,34 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin/admin.php:
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Опции возвращены к стандартным"
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Index recreated"
|
44 |
msgstr "Индекс воссоздан"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
msgid "Contextual Related Posts"
|
48 |
-
msgstr "Контекстные похожие посты"
|
49 |
-
|
50 |
-
#: admin/admin.php:249
|
51 |
msgid "Related Posts"
|
52 |
msgstr "Похожие посты"
|
53 |
|
@@ -91,22 +87,22 @@ msgstr "Izejas opcijas:"
|
|
91 |
msgid "List tuning options"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
95 |
#, fuzzy
|
96 |
msgid "Output options"
|
97 |
msgstr "Izejas opcijas:"
|
98 |
|
99 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
100 |
#: includes/class-crp-widget.php:93
|
101 |
#, fuzzy
|
102 |
msgid "Thumbnail options"
|
103 |
msgstr "sīktēlu iespējas"
|
104 |
|
105 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
106 |
msgid "Styles"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
110 |
#, fuzzy
|
111 |
msgid "Feed options"
|
112 |
msgstr "Iespējas:"
|
@@ -235,14 +231,14 @@ msgid ""
|
|
235 |
"in the list."
|
236 |
msgstr "Контекстные похожие посты"
|
237 |
|
238 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
239 |
-
#: admin/main-view.php:
|
240 |
-
#: admin/main-view.php:
|
241 |
#, fuzzy
|
242 |
msgid "Save Options"
|
243 |
msgstr "Saglabāt opcijas"
|
244 |
|
245 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
246 |
msgid "Number of related posts to display: "
|
247 |
msgstr "Количество отображаемых похожих постов:"
|
248 |
|
@@ -306,7 +302,7 @@ msgstr ""
|
|
306 |
msgid "List of post or page IDs to exclude from the results:"
|
307 |
msgstr "Исключить рубрики:"
|
308 |
|
309 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
310 |
msgid ""
|
311 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
312 |
msgstr ""
|
@@ -323,35 +319,39 @@ msgid ""
|
|
323 |
"prompt you with options."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
327 |
msgid "Title of related posts:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: admin/main-view.php:
|
331 |
msgid ""
|
332 |
"This is the main heading of the related posts. You can also display the "
|
333 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
334 |
"Posts to %postname%</code>"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: admin/main-view.php:
|
338 |
msgid "When there are no posts, what should be shown?"
|
339 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
340 |
|
341 |
-
#: admin/main-view.php:
|
342 |
msgid "Blank Output"
|
343 |
msgstr "Пустой выход"
|
344 |
|
345 |
-
#: admin/main-view.php:
|
346 |
#, fuzzy
|
347 |
msgid "Display:"
|
348 |
msgstr "Количество Популярных записей в списке:"
|
349 |
|
350 |
-
#: admin/main-view.php:
|
351 |
msgid "Show post excerpt in list?"
|
352 |
msgstr "Показать выдержки из поста в списке?"
|
353 |
|
354 |
-
#: admin/main-view.php:
|
355 |
#, php-format
|
356 |
msgid ""
|
357 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -359,169 +359,169 @@ msgid ""
|
|
359 |
"automatic excerpt which refers to the first %d words of the post's content"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin/main-view.php:
|
363 |
msgid ""
|
364 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
365 |
"is disabled."
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: admin/main-view.php:
|
369 |
msgid "Length of excerpt (in words):"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/main-view.php:
|
373 |
#, fuzzy
|
374 |
msgid "Show post author in list?"
|
375 |
msgstr "Показывать текст записи в списке?"
|
376 |
|
377 |
-
#: admin/main-view.php:
|
378 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/main-view.php:
|
382 |
msgid ""
|
383 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
384 |
"disabled."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin/main-view.php:
|
388 |
#, fuzzy
|
389 |
msgid "Show post date in list?"
|
390 |
msgstr "Показывать текст записи в списке?"
|
391 |
|
392 |
-
#: admin/main-view.php:
|
393 |
msgid ""
|
394 |
"Displays the date of the post. Uses the same date format set in General "
|
395 |
"Options"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin/main-view.php:
|
399 |
msgid ""
|
400 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
401 |
"disabled."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: admin/main-view.php:
|
405 |
msgid "Limit post title length (in characters)"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: admin/main-view.php:
|
409 |
msgid ""
|
410 |
"Any title longer than the number of characters set above will be cut and "
|
411 |
"appended with an ellipsis (…)"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: admin/main-view.php:
|
415 |
msgid "Open links in new window"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: admin/main-view.php:
|
419 |
msgid "Add nofollow attribute to links in the list"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: admin/main-view.php:
|
423 |
#, fuzzy
|
424 |
msgid "Exclusion settings:"
|
425 |
msgstr "spraudnis iestatījumu lapa"
|
426 |
|
427 |
-
#: admin/main-view.php:
|
428 |
#, fuzzy
|
429 |
msgid "Exclude display of related posts on these posts / pages"
|
430 |
msgstr "Pievienot saistītus amatus barībā"
|
431 |
|
432 |
-
#: admin/main-view.php:
|
433 |
#, fuzzy
|
434 |
msgid "Exclude display of related posts on these post types."
|
435 |
msgstr "Pievienot saistītus amatus barībā"
|
436 |
|
437 |
-
#: admin/main-view.php:
|
438 |
msgid ""
|
439 |
"The related posts will not display on any of the above selected post types"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: admin/main-view.php:
|
443 |
msgid "Customize the output:"
|
444 |
msgstr "Настройки выхода:"
|
445 |
|
446 |
-
#: admin/main-view.php:
|
447 |
msgid "HTML to display before the list of posts: "
|
448 |
msgstr "HTML для показа перед списком сообщений: "
|
449 |
|
450 |
-
#: admin/main-view.php:
|
451 |
msgid "HTML to display before each list item: "
|
452 |
msgstr "HTML для показа перед каждым элементом списка: "
|
453 |
|
454 |
-
#: admin/main-view.php:
|
455 |
msgid "HTML to display after each list item: "
|
456 |
msgstr "HTML для отображения после каждого элемента списка: "
|
457 |
|
458 |
-
#: admin/main-view.php:
|
459 |
msgid "HTML to display after the list of posts: "
|
460 |
msgstr "HTML для отображения после списка сообщений: "
|
461 |
|
462 |
-
#: admin/main-view.php:
|
463 |
#, fuzzy
|
464 |
msgid "Location of post thumbnail:"
|
465 |
msgstr "Настройки превью к записям:"
|
466 |
|
467 |
-
#: admin/main-view.php:
|
468 |
#, fuzzy
|
469 |
msgid "Display thumbnails inline with posts, before title"
|
470 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
471 |
|
472 |
-
#: admin/main-view.php:
|
473 |
#, fuzzy
|
474 |
msgid "Display thumbnails inline with posts, after title"
|
475 |
msgstr "Отображать превью к записи сразу после заголовка"
|
476 |
|
477 |
-
#: admin/main-view.php:
|
478 |
msgid "Display only thumbnails, no text"
|
479 |
msgstr "Показывать только изображения, без текста"
|
480 |
|
481 |
-
#: admin/main-view.php:
|
482 |
msgid "Do not display thumbnails, only text."
|
483 |
msgstr "Не показывать изображения, только текст"
|
484 |
|
485 |
-
#: admin/main-view.php:
|
486 |
msgid ""
|
487 |
"This setting cannot be changed because an inbuilt style has been selected "
|
488 |
"under the Styles section. If you would like to change this option, please "
|
489 |
"select <strong>No styles</strong> under the Styles section."
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/main-view.php:
|
493 |
msgid "Thumbnail size:"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/main-view.php:
|
497 |
msgid "Custom size"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/main-view.php:
|
501 |
msgid "You can choose from existing image sizes above or create a custom size."
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/main-view.php:
|
505 |
msgid ""
|
506 |
"If you choose an existing size, then the width, height and crop mode "
|
507 |
"settings in the three options below will be automatically updated to reflect "
|
508 |
"the correct dimensions of the setting."
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin/main-view.php:
|
512 |
msgid ""
|
513 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
514 |
"settings below. For best results, use a cropped image with the same width "
|
515 |
"and height. The default setting is 150x150 cropped image."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: admin/main-view.php:
|
519 |
msgid ""
|
520 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
521 |
"images."
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/main-view.php:
|
525 |
#, php-format
|
526 |
msgid ""
|
527 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -529,71 +529,71 @@ msgid ""
|
|
529 |
"all image sizes."
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: admin/main-view.php:
|
533 |
msgid "Width of the thumbnail:"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/main-view.php:
|
537 |
msgid "Height of the thumbnail: "
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/main-view.php:
|
541 |
msgid "Crop mode:"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/main-view.php:
|
545 |
msgid ""
|
546 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
547 |
"proportionately/soft crop the thumbnails."
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: admin/main-view.php:
|
551 |
#, php-format
|
552 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/main-view.php:
|
556 |
msgid "Image size attributes:"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/main-view.php:
|
560 |
msgid "Style attributes are used for width and height."
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/main-view.php:
|
564 |
msgid "HTML width and height attributes are used for width and height."
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/main-view.php:
|
568 |
msgid "No HTML or Style attributes set for width and height"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/main-view.php:
|
572 |
#, fuzzy
|
573 |
msgid "Post thumbnail meta field name:"
|
574 |
msgstr "Attēlu rīki post:"
|
575 |
|
576 |
-
#: admin/main-view.php:
|
577 |
msgid ""
|
578 |
"The value of this field should contain a direct link to the image. This is "
|
579 |
"set in the meta box in the <em>Add New Post</em> screen."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/main-view.php:
|
583 |
msgid "Extract the first image from the post?"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: admin/main-view.php:
|
587 |
msgid ""
|
588 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
589 |
"specified in the meta field."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/main-view.php:
|
593 |
msgid "Use default thumbnail?"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: admin/main-view.php:
|
597 |
#, fuzzy
|
598 |
msgid ""
|
599 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
@@ -603,35 +603,39 @@ msgstr ""
|
|
603 |
"добавлено стандартное изображение. Если превью задано к записи - будет "
|
604 |
"отображаться только оно."
|
605 |
|
606 |
-
#: admin/main-view.php:
|
607 |
#, fuzzy
|
608 |
msgid "Default thumbnail:"
|
609 |
msgstr "noklusējuma opcijas"
|
610 |
|
611 |
-
#: admin/main-view.php:
|
|
|
612 |
msgid ""
|
613 |
-
"
|
614 |
-
"
|
615 |
-
"
|
616 |
msgstr ""
|
|
|
|
|
|
|
617 |
|
618 |
-
#: admin/main-view.php:
|
619 |
msgid "Style of the related posts:"
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: admin/main-view.php:
|
623 |
msgid "No styles"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/main-view.php:
|
627 |
msgid "Select this option if you plan to add your own styles"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: admin/main-view.php:
|
631 |
msgid "Rounded Thumbnails"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/main-view.php:
|
635 |
msgid ""
|
636 |
"Enabling this option will turn on the thumbnails and set their width and "
|
637 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -639,69 +643,69 @@ msgid ""
|
|
639 |
"settings."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: admin/main-view.php:
|
643 |
#, php-format
|
644 |
msgid ""
|
645 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: admin/main-view.php:
|
649 |
msgid "Text only"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: admin/main-view.php:
|
653 |
msgid ""
|
654 |
"Enabling this option will disable thumbnails and no longer include the "
|
655 |
"default style sheet included in the plugin."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: admin/main-view.php:
|
659 |
msgid "Custom CSS to add to header:"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: admin/main-view.php:
|
663 |
msgid ""
|
664 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
665 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
666 |
"\">FAQ</a> for available CSS classes to style."
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: admin/main-view.php:
|
670 |
msgid ""
|
671 |
"Below options override the related posts settings for your blog feed. These "
|
672 |
"only apply if you have selected to add related posts to Feeds in the General "
|
673 |
"Options tab."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: admin/main-view.php:
|
677 |
#, fuzzy
|
678 |
msgid "Maximum width of the thumbnail: "
|
679 |
msgstr "Thumbnail platums"
|
680 |
|
681 |
-
#: admin/main-view.php:
|
682 |
#, fuzzy
|
683 |
msgid "Maximum height of the thumbnail: "
|
684 |
msgstr "sīktēls augstums"
|
685 |
|
686 |
-
#: admin/main-view.php:
|
687 |
#, fuzzy
|
688 |
msgid "Default Options"
|
689 |
msgstr "noklusējuma opcijas"
|
690 |
|
691 |
-
#: admin/main-view.php:
|
692 |
msgid "Do you want to set options to Default?"
|
693 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
694 |
|
695 |
-
#: admin/main-view.php:
|
696 |
#, fuzzy
|
697 |
msgid "Recreate Index"
|
698 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
699 |
|
700 |
-
#: admin/main-view.php:
|
701 |
msgid "Are you sure you want to recreate the index?"
|
702 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
703 |
|
704 |
-
#: admin/main-view.php:
|
705 |
msgid ""
|
706 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
707 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -791,9 +795,8 @@ msgid "Quick links"
|
|
791 |
msgstr "Быстрые ссылки"
|
792 |
|
793 |
#: admin/sidebar-view.php:57
|
794 |
-
|
795 |
-
|
796 |
-
msgstr "Konteksta saistītus amatus"
|
797 |
|
798 |
#: admin/sidebar-view.php:58
|
799 |
msgid "FAQ"
|
@@ -914,6 +917,13 @@ msgstr ""
|
|
914 |
msgid " by "
|
915 |
msgstr ""
|
916 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
917 |
#~ msgid "Options saved successfully."
|
918 |
#~ msgstr "Настройки сохранены успешно."
|
919 |
|
@@ -937,16 +947,6 @@ msgstr ""
|
|
937 |
#~ msgid "Length of excerpt (in words): "
|
938 |
#~ msgstr "Длина выдержки (в словах):"
|
939 |
|
940 |
-
#, fuzzy
|
941 |
-
#~ msgid ""
|
942 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
943 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
944 |
-
#~ "it will show the default image as specified above."
|
945 |
-
#~ msgstr ""
|
946 |
-
#~ "Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad "
|
947 |
-
#~ "tas būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas "
|
948 |
-
#~ "rādīs noklusējuma attēlu, kā minēts iepriekš"
|
949 |
-
|
950 |
#~ msgid "Post thumbnail options:"
|
951 |
#~ msgstr "Опции изображения поста:"
|
952 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: me@ajaydsouza.com\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin/admin.php:190
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin/admin.php:193
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:196
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:199
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:223
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "Опции возвращены к стандартным"
|
41 |
|
42 |
+
#: admin/admin.php:232
|
43 |
msgid "Index recreated"
|
44 |
msgstr "Индекс воссоздан"
|
45 |
|
46 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
47 |
msgid "Related Posts"
|
48 |
msgstr "Похожие посты"
|
49 |
|
87 |
msgid "List tuning options"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
91 |
#, fuzzy
|
92 |
msgid "Output options"
|
93 |
msgstr "Izejas opcijas:"
|
94 |
|
95 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
96 |
#: includes/class-crp-widget.php:93
|
97 |
#, fuzzy
|
98 |
msgid "Thumbnail options"
|
99 |
msgstr "sīktēlu iespējas"
|
100 |
|
101 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
102 |
msgid "Styles"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
106 |
#, fuzzy
|
107 |
msgid "Feed options"
|
108 |
msgstr "Iespējas:"
|
231 |
"in the list."
|
232 |
msgstr "Контекстные похожие посты"
|
233 |
|
234 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
235 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
236 |
+
#: admin/main-view.php:755
|
237 |
#, fuzzy
|
238 |
msgid "Save Options"
|
239 |
msgstr "Saglabāt opcijas"
|
240 |
|
241 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
242 |
msgid "Number of related posts to display: "
|
243 |
msgstr "Количество отображаемых похожих постов:"
|
244 |
|
302 |
msgid "List of post or page IDs to exclude from the results:"
|
303 |
msgstr "Исключить рубрики:"
|
304 |
|
305 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
306 |
msgid ""
|
307 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
308 |
msgstr ""
|
319 |
"prompt you with options."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: admin/main-view.php:214
|
323 |
+
msgid "Excluded category IDs are:"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: admin/main-view.php:255
|
327 |
msgid "Title of related posts:"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: admin/main-view.php:258
|
331 |
msgid ""
|
332 |
"This is the main heading of the related posts. You can also display the "
|
333 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
334 |
"Posts to %postname%</code>"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: admin/main-view.php:262
|
338 |
msgid "When there are no posts, what should be shown?"
|
339 |
msgstr "Когда нет сообщений, что должно быть показано?"
|
340 |
|
341 |
+
#: admin/main-view.php:266
|
342 |
msgid "Blank Output"
|
343 |
msgstr "Пустой выход"
|
344 |
|
345 |
+
#: admin/main-view.php:271
|
346 |
#, fuzzy
|
347 |
msgid "Display:"
|
348 |
msgstr "Количество Популярных записей в списке:"
|
349 |
|
350 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
351 |
msgid "Show post excerpt in list?"
|
352 |
msgstr "Показать выдержки из поста в списке?"
|
353 |
|
354 |
+
#: admin/main-view.php:280
|
355 |
#, php-format
|
356 |
msgid ""
|
357 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
359 |
"automatic excerpt which refers to the first %d words of the post's content"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin/main-view.php:283
|
363 |
msgid ""
|
364 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
365 |
"is disabled."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/main-view.php:288
|
369 |
msgid "Length of excerpt (in words):"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin/main-view.php:294
|
373 |
#, fuzzy
|
374 |
msgid "Show post author in list?"
|
375 |
msgstr "Показывать текст записи в списке?"
|
376 |
|
377 |
+
#: admin/main-view.php:297
|
378 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/main-view.php:300
|
382 |
msgid ""
|
383 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
384 |
"disabled."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin/main-view.php:305
|
388 |
#, fuzzy
|
389 |
msgid "Show post date in list?"
|
390 |
msgstr "Показывать текст записи в списке?"
|
391 |
|
392 |
+
#: admin/main-view.php:308
|
393 |
msgid ""
|
394 |
"Displays the date of the post. Uses the same date format set in General "
|
395 |
"Options"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin/main-view.php:311
|
399 |
msgid ""
|
400 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
401 |
"disabled."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin/main-view.php:316
|
405 |
msgid "Limit post title length (in characters)"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/main-view.php:319
|
409 |
msgid ""
|
410 |
"Any title longer than the number of characters set above will be cut and "
|
411 |
"appended with an ellipsis (…)"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/main-view.php:323
|
415 |
msgid "Open links in new window"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: admin/main-view.php:329
|
419 |
msgid "Add nofollow attribute to links in the list"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: admin/main-view.php:362
|
423 |
#, fuzzy
|
424 |
msgid "Exclusion settings:"
|
425 |
msgstr "spraudnis iestatījumu lapa"
|
426 |
|
427 |
+
#: admin/main-view.php:364
|
428 |
#, fuzzy
|
429 |
msgid "Exclude display of related posts on these posts / pages"
|
430 |
msgstr "Pievienot saistītus amatus barībā"
|
431 |
|
432 |
+
#: admin/main-view.php:370
|
433 |
#, fuzzy
|
434 |
msgid "Exclude display of related posts on these post types."
|
435 |
msgstr "Pievienot saistītus amatus barībā"
|
436 |
|
437 |
+
#: admin/main-view.php:377
|
438 |
msgid ""
|
439 |
"The related posts will not display on any of the above selected post types"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/main-view.php:407
|
443 |
msgid "Customize the output:"
|
444 |
msgstr "Настройки выхода:"
|
445 |
|
446 |
+
#: admin/main-view.php:409
|
447 |
msgid "HTML to display before the list of posts: "
|
448 |
msgstr "HTML для показа перед списком сообщений: "
|
449 |
|
450 |
+
#: admin/main-view.php:412
|
451 |
msgid "HTML to display before each list item: "
|
452 |
msgstr "HTML для показа перед каждым элементом списка: "
|
453 |
|
454 |
+
#: admin/main-view.php:415
|
455 |
msgid "HTML to display after each list item: "
|
456 |
msgstr "HTML для отображения после каждого элемента списка: "
|
457 |
|
458 |
+
#: admin/main-view.php:418
|
459 |
msgid "HTML to display after the list of posts: "
|
460 |
msgstr "HTML для отображения после списка сообщений: "
|
461 |
|
462 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
463 |
#, fuzzy
|
464 |
msgid "Location of post thumbnail:"
|
465 |
msgstr "Настройки превью к записям:"
|
466 |
|
467 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
468 |
#, fuzzy
|
469 |
msgid "Display thumbnails inline with posts, before title"
|
470 |
msgstr "Отображать превью к записи сразу перед заголовком"
|
471 |
|
472 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
473 |
#, fuzzy
|
474 |
msgid "Display thumbnails inline with posts, after title"
|
475 |
msgstr "Отображать превью к записи сразу после заголовка"
|
476 |
|
477 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
478 |
msgid "Display only thumbnails, no text"
|
479 |
msgstr "Показывать только изображения, без текста"
|
480 |
|
481 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
482 |
msgid "Do not display thumbnails, only text."
|
483 |
msgstr "Не показывать изображения, только текст"
|
484 |
|
485 |
+
#: admin/main-view.php:478
|
486 |
msgid ""
|
487 |
"This setting cannot be changed because an inbuilt style has been selected "
|
488 |
"under the Styles section. If you would like to change this option, please "
|
489 |
"select <strong>No styles</strong> under the Styles section."
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/main-view.php:482
|
493 |
msgid "Thumbnail size:"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/main-view.php:506
|
497 |
msgid "Custom size"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/main-view.php:509
|
501 |
msgid "You can choose from existing image sizes above or create a custom size."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/main-view.php:510
|
505 |
msgid ""
|
506 |
"If you choose an existing size, then the width, height and crop mode "
|
507 |
"settings in the three options below will be automatically updated to reflect "
|
508 |
"the correct dimensions of the setting."
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/main-view.php:511
|
512 |
msgid ""
|
513 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
514 |
"settings below. For best results, use a cropped image with the same width "
|
515 |
"and height. The default setting is 150x150 cropped image."
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: admin/main-view.php:512
|
519 |
msgid ""
|
520 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
521 |
"images."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/main-view.php:513
|
525 |
#, php-format
|
526 |
msgid ""
|
527 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
529 |
"all image sizes."
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: admin/main-view.php:517
|
533 |
msgid "Width of the thumbnail:"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/main-view.php:520
|
537 |
msgid "Height of the thumbnail: "
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/main-view.php:525
|
541 |
msgid "Crop mode:"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/main-view.php:529
|
545 |
msgid ""
|
546 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
547 |
"proportionately/soft crop the thumbnails."
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/main-view.php:530
|
551 |
#, php-format
|
552 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/main-view.php:534
|
556 |
msgid "Image size attributes:"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/main-view.php:538
|
560 |
msgid "Style attributes are used for width and height."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: admin/main-view.php:543
|
564 |
msgid "HTML width and height attributes are used for width and height."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: admin/main-view.php:548
|
568 |
msgid "No HTML or Style attributes set for width and height"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: admin/main-view.php:553
|
572 |
#, fuzzy
|
573 |
msgid "Post thumbnail meta field name:"
|
574 |
msgstr "Attēlu rīki post:"
|
575 |
|
576 |
+
#: admin/main-view.php:555
|
577 |
msgid ""
|
578 |
"The value of this field should contain a direct link to the image. This is "
|
579 |
"set in the meta box in the <em>Add New Post</em> screen."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/main-view.php:558
|
583 |
msgid "Extract the first image from the post?"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: admin/main-view.php:560
|
587 |
msgid ""
|
588 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
589 |
"specified in the meta field."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: admin/main-view.php:563
|
593 |
msgid "Use default thumbnail?"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/main-view.php:565
|
597 |
#, fuzzy
|
598 |
msgid ""
|
599 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
603 |
"добавлено стандартное изображение. Если превью задано к записи - будет "
|
604 |
"отображаться только оно."
|
605 |
|
606 |
+
#: admin/main-view.php:568
|
607 |
#, fuzzy
|
608 |
msgid "Default thumbnail:"
|
609 |
msgstr "noklusējuma opcijas"
|
610 |
|
611 |
+
#: admin/main-view.php:571
|
612 |
+
#, fuzzy
|
613 |
msgid ""
|
614 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
615 |
+
"then it will check the meta field. If this is not available, then it will "
|
616 |
+
"show the default image as specified above."
|
617 |
msgstr ""
|
618 |
+
"Spraudnis vispirms pārbaudīt, vai sūtījums satur sīktēlu. Ja tā nav, tad tas "
|
619 |
+
"būs pārbaudīt meta laukā. Ja šāda informācija nav pieejama, tad tas rādīs "
|
620 |
+
"noklusējuma attēlu, kā minēts iepriekš"
|
621 |
|
622 |
+
#: admin/main-view.php:612
|
623 |
msgid "Style of the related posts:"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/main-view.php:615
|
627 |
msgid "No styles"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/main-view.php:617
|
631 |
msgid "Select this option if you plan to add your own styles"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/main-view.php:621
|
635 |
msgid "Rounded Thumbnails"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: admin/main-view.php:624
|
639 |
msgid ""
|
640 |
"Enabling this option will turn on the thumbnails and set their width and "
|
641 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
643 |
"settings."
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: admin/main-view.php:625
|
647 |
#, php-format
|
648 |
msgid ""
|
649 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: admin/main-view.php:629
|
653 |
msgid "Text only"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: admin/main-view.php:631
|
657 |
msgid ""
|
658 |
"Enabling this option will disable thumbnails and no longer include the "
|
659 |
"default style sheet included in the plugin."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: admin/main-view.php:646
|
663 |
msgid "Custom CSS to add to header:"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: admin/main-view.php:650
|
667 |
msgid ""
|
668 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
669 |
"wordpress.org/extend/plugins/contextual-related-posts/faq/\" target=\"_blank"
|
670 |
"\">FAQ</a> for available CSS classes to style."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: admin/main-view.php:690
|
674 |
msgid ""
|
675 |
"Below options override the related posts settings for your blog feed. These "
|
676 |
"only apply if you have selected to add related posts to Feeds in the General "
|
677 |
"Options tab."
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: admin/main-view.php:718
|
681 |
#, fuzzy
|
682 |
msgid "Maximum width of the thumbnail: "
|
683 |
msgstr "Thumbnail platums"
|
684 |
|
685 |
+
#: admin/main-view.php:721
|
686 |
#, fuzzy
|
687 |
msgid "Maximum height of the thumbnail: "
|
688 |
msgstr "sīktēls augstums"
|
689 |
|
690 |
+
#: admin/main-view.php:756
|
691 |
#, fuzzy
|
692 |
msgid "Default Options"
|
693 |
msgstr "noklusējuma opcijas"
|
694 |
|
695 |
+
#: admin/main-view.php:756
|
696 |
msgid "Do you want to set options to Default?"
|
697 |
msgstr "Вы хотите задать параметры по умолчанию?"
|
698 |
|
699 |
+
#: admin/main-view.php:757
|
700 |
#, fuzzy
|
701 |
msgid "Recreate Index"
|
702 |
msgstr "Vai jūs tiešām vēlaties, lai atjaunotu indeksu?"
|
703 |
|
704 |
+
#: admin/main-view.php:757
|
705 |
msgid "Are you sure you want to recreate the index?"
|
706 |
msgstr "Вы уверены, что хотите воссоздать индекс?"
|
707 |
|
708 |
+
#: admin/main-view.php:762
|
709 |
msgid ""
|
710 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
711 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
795 |
msgstr "Быстрые ссылки"
|
796 |
|
797 |
#: admin/sidebar-view.php:57
|
798 |
+
msgid "Plugin homepage"
|
799 |
+
msgstr ""
|
|
|
800 |
|
801 |
#: admin/sidebar-view.php:58
|
802 |
msgid "FAQ"
|
917 |
msgid " by "
|
918 |
msgstr ""
|
919 |
|
920 |
+
#~ msgid "Contextual Related Posts"
|
921 |
+
#~ msgstr "Контекстные похожие посты"
|
922 |
+
|
923 |
+
#, fuzzy
|
924 |
+
#~ msgid "Contextual Related Posts plugin page"
|
925 |
+
#~ msgstr "Konteksta saistītus amatus"
|
926 |
+
|
927 |
#~ msgid "Options saved successfully."
|
928 |
#~ msgstr "Настройки сохранены успешно."
|
929 |
|
947 |
#~ msgid "Length of excerpt (in words): "
|
948 |
#~ msgstr "Длина выдержки (в словах):"
|
949 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
950 |
#~ msgid "Post thumbnail options:"
|
951 |
#~ msgstr "Опции изображения поста:"
|
952 |
|
languages/crp-zh_CN.mo
CHANGED
Binary file
|
languages/crp-zh_CN.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -16,38 +16,34 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: admin/admin.php:
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "已重置设置。"
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Index recreated"
|
44 |
msgstr "已重新创建索引"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
msgid "Contextual Related Posts"
|
48 |
-
msgstr "Contextual Related Posts"
|
49 |
-
|
50 |
-
#: admin/admin.php:249
|
51 |
msgid "Related Posts"
|
52 |
msgstr "相关日志"
|
53 |
|
@@ -89,21 +85,21 @@ msgstr "一般设置"
|
|
89 |
msgid "List tuning options"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin/main-view.php:34 admin/main-view.php:
|
93 |
#, fuzzy
|
94 |
msgid "Output options"
|
95 |
msgstr "显示设置"
|
96 |
|
97 |
-
#: admin/main-view.php:35 admin/main-view.php:
|
98 |
#: includes/class-crp-widget.php:93
|
99 |
msgid "Thumbnail options"
|
100 |
msgstr "缩略图设置:"
|
101 |
|
102 |
-
#: admin/main-view.php:36 admin/main-view.php:
|
103 |
msgid "Styles"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/main-view.php:37 admin/main-view.php:
|
107 |
#, fuzzy
|
108 |
msgid "Feed options"
|
109 |
msgstr "一般设置"
|
@@ -225,13 +221,13 @@ msgid ""
|
|
225 |
"in the list."
|
226 |
msgstr "相关日志"
|
227 |
|
228 |
-
#: admin/main-view.php:135 admin/main-view.php:
|
229 |
-
#: admin/main-view.php:
|
230 |
-
#: admin/main-view.php:
|
231 |
msgid "Save Options"
|
232 |
msgstr "保存设置"
|
233 |
|
234 |
-
#: admin/main-view.php:158 admin/main-view.php:
|
235 |
msgid "Number of related posts to display: "
|
236 |
msgstr "相关日志数量:"
|
237 |
|
@@ -295,7 +291,7 @@ msgstr "被索引的日志类型(包含自定义日志类型)"
|
|
295 |
msgid "List of post or page IDs to exclude from the results:"
|
296 |
msgstr "排除的文章或页面 ID:"
|
297 |
|
298 |
-
#: admin/main-view.php:197 admin/main-view.php:
|
299 |
msgid ""
|
300 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
301 |
msgstr ""
|
@@ -312,34 +308,38 @@ msgid ""
|
|
312 |
"prompt you with options."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/main-view.php:
|
|
|
|
|
|
|
|
|
316 |
msgid "Title of related posts:"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/main-view.php:
|
320 |
msgid ""
|
321 |
"This is the main heading of the related posts. You can also display the "
|
322 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
323 |
"Posts to %postname%</code>"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: admin/main-view.php:
|
327 |
msgid "When there are no posts, what should be shown?"
|
328 |
msgstr "当不存在相关日志时,显示什么?"
|
329 |
|
330 |
-
#: admin/main-view.php:
|
331 |
msgid "Blank Output"
|
332 |
msgstr "不显示"
|
333 |
|
334 |
-
#: admin/main-view.php:
|
335 |
msgid "Display:"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin/main-view.php:
|
339 |
msgid "Show post excerpt in list?"
|
340 |
msgstr "是否显示日志摘要?"
|
341 |
|
342 |
-
#: admin/main-view.php:
|
343 |
#, php-format
|
344 |
msgid ""
|
345 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
@@ -347,167 +347,167 @@ msgid ""
|
|
347 |
"automatic excerpt which refers to the first %d words of the post's content"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/main-view.php:
|
351 |
msgid ""
|
352 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
353 |
"is disabled."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/main-view.php:
|
357 |
msgid "Length of excerpt (in words):"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/main-view.php:
|
361 |
#, fuzzy
|
362 |
msgid "Show post author in list?"
|
363 |
msgstr "是否显示日志摘要?"
|
364 |
|
365 |
-
#: admin/main-view.php:
|
366 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: admin/main-view.php:
|
370 |
msgid ""
|
371 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
372 |
"disabled."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/main-view.php:
|
376 |
#, fuzzy
|
377 |
msgid "Show post date in list?"
|
378 |
msgstr "是否显示日志摘要?"
|
379 |
|
380 |
-
#: admin/main-view.php:
|
381 |
msgid ""
|
382 |
"Displays the date of the post. Uses the same date format set in General "
|
383 |
"Options"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/main-view.php:
|
387 |
msgid ""
|
388 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
389 |
"disabled."
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: admin/main-view.php:
|
393 |
msgid "Limit post title length (in characters)"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/main-view.php:
|
397 |
msgid ""
|
398 |
"Any title longer than the number of characters set above will be cut and "
|
399 |
"appended with an ellipsis (…)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/main-view.php:
|
403 |
msgid "Open links in new window"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: admin/main-view.php:
|
407 |
msgid "Add nofollow attribute to links in the list"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: admin/main-view.php:
|
411 |
#, fuzzy
|
412 |
msgid "Exclusion settings:"
|
413 |
msgstr "插件设置页面"
|
414 |
|
415 |
-
#: admin/main-view.php:
|
416 |
#, fuzzy
|
417 |
msgid "Exclude display of related posts on these posts / pages"
|
418 |
msgstr "添加相关日志到页面里"
|
419 |
|
420 |
-
#: admin/main-view.php:
|
421 |
#, fuzzy
|
422 |
msgid "Exclude display of related posts on these post types."
|
423 |
msgstr "添加相关日志到页面里"
|
424 |
|
425 |
-
#: admin/main-view.php:
|
426 |
#, fuzzy
|
427 |
msgid ""
|
428 |
"The related posts will not display on any of the above selected post types"
|
429 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
430 |
|
431 |
-
#: admin/main-view.php:
|
432 |
msgid "Customize the output:"
|
433 |
msgstr "自定义显示:"
|
434 |
|
435 |
-
#: admin/main-view.php:
|
436 |
msgid "HTML to display before the list of posts: "
|
437 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
438 |
|
439 |
-
#: admin/main-view.php:
|
440 |
msgid "HTML to display before each list item: "
|
441 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
442 |
|
443 |
-
#: admin/main-view.php:
|
444 |
msgid "HTML to display after each list item: "
|
445 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
446 |
|
447 |
-
#: admin/main-view.php:
|
448 |
msgid "HTML to display after the list of posts: "
|
449 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
450 |
|
451 |
-
#: admin/main-view.php:
|
452 |
msgid "Location of post thumbnail:"
|
453 |
msgstr "日志缩略图位置:"
|
454 |
|
455 |
-
#: admin/main-view.php:
|
456 |
msgid "Display thumbnails inline with posts, before title"
|
457 |
msgstr "在标题前显示缩略图"
|
458 |
|
459 |
-
#: admin/main-view.php:
|
460 |
msgid "Display thumbnails inline with posts, after title"
|
461 |
msgstr "在标题后显示缩略图"
|
462 |
|
463 |
-
#: admin/main-view.php:
|
464 |
msgid "Display only thumbnails, no text"
|
465 |
msgstr "不显示文本,只显示缩略图"
|
466 |
|
467 |
-
#: admin/main-view.php:
|
468 |
msgid "Do not display thumbnails, only text."
|
469 |
msgstr "不显示缩略图,只显示文本"
|
470 |
|
471 |
-
#: admin/main-view.php:
|
472 |
msgid ""
|
473 |
"This setting cannot be changed because an inbuilt style has been selected "
|
474 |
"under the Styles section. If you would like to change this option, please "
|
475 |
"select <strong>No styles</strong> under the Styles section."
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/main-view.php:
|
479 |
msgid "Thumbnail size:"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/main-view.php:
|
483 |
msgid "Custom size"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/main-view.php:
|
487 |
msgid "You can choose from existing image sizes above or create a custom size."
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/main-view.php:
|
491 |
msgid ""
|
492 |
"If you choose an existing size, then the width, height and crop mode "
|
493 |
"settings in the three options below will be automatically updated to reflect "
|
494 |
"the correct dimensions of the setting."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/main-view.php:
|
498 |
msgid ""
|
499 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
500 |
"settings below. For best results, use a cropped image with the same width "
|
501 |
"and height. The default setting is 150x150 cropped image."
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/main-view.php:
|
505 |
msgid ""
|
506 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
507 |
"images."
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/main-view.php:
|
511 |
#, php-format
|
512 |
msgid ""
|
513 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
@@ -515,107 +515,110 @@ msgid ""
|
|
515 |
"all image sizes."
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: admin/main-view.php:
|
519 |
msgid "Width of the thumbnail:"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/main-view.php:
|
523 |
msgid "Height of the thumbnail: "
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/main-view.php:
|
527 |
msgid "Crop mode:"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/main-view.php:
|
531 |
msgid ""
|
532 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
533 |
"proportionately/soft crop the thumbnails."
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/main-view.php:
|
537 |
#, php-format
|
538 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/main-view.php:
|
542 |
msgid "Image size attributes:"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/main-view.php:
|
546 |
msgid "Style attributes are used for width and height."
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/main-view.php:
|
550 |
msgid "HTML width and height attributes are used for width and height."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/main-view.php:
|
554 |
msgid "No HTML or Style attributes set for width and height"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: admin/main-view.php:
|
558 |
#, fuzzy
|
559 |
msgid "Post thumbnail meta field name:"
|
560 |
msgstr "日志缩略图自定义栏目的名称:"
|
561 |
|
562 |
-
#: admin/main-view.php:
|
563 |
msgid ""
|
564 |
"The value of this field should contain a direct link to the image. This is "
|
565 |
"set in the meta box in the <em>Add New Post</em> screen."
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/main-view.php:
|
569 |
msgid "Extract the first image from the post?"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: admin/main-view.php:
|
573 |
msgid ""
|
574 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
575 |
"specified in the meta field."
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: admin/main-view.php:
|
579 |
#, fuzzy
|
580 |
msgid "Use default thumbnail?"
|
581 |
msgstr "是否使用默认缩略图?"
|
582 |
|
583 |
-
#: admin/main-view.php:
|
584 |
msgid ""
|
585 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
586 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
587 |
msgstr ""
|
588 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
589 |
|
590 |
-
#: admin/main-view.php:
|
591 |
#, fuzzy
|
592 |
msgid "Default thumbnail:"
|
593 |
msgstr "默认缩略图:"
|
594 |
|
595 |
-
#: admin/main-view.php:
|
|
|
596 |
msgid ""
|
597 |
-
"
|
598 |
-
"
|
599 |
-
"
|
600 |
msgstr ""
|
|
|
|
|
601 |
|
602 |
-
#: admin/main-view.php:
|
603 |
msgid "Style of the related posts:"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: admin/main-view.php:
|
607 |
msgid "No styles"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: admin/main-view.php:
|
611 |
msgid "Select this option if you plan to add your own styles"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: admin/main-view.php:
|
615 |
msgid "Rounded Thumbnails"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: admin/main-view.php:
|
619 |
msgid ""
|
620 |
"Enabling this option will turn on the thumbnails and set their width and "
|
621 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
@@ -623,27 +626,27 @@ msgid ""
|
|
623 |
"settings."
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: admin/main-view.php:
|
627 |
#, php-format
|
628 |
msgid ""
|
629 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: admin/main-view.php:
|
633 |
msgid "Text only"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: admin/main-view.php:
|
637 |
msgid ""
|
638 |
"Enabling this option will disable thumbnails and no longer include the "
|
639 |
"default style sheet included in the plugin."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: admin/main-view.php:
|
643 |
msgid "Custom CSS to add to header:"
|
644 |
msgstr "添加自定义 CSS 到 header:"
|
645 |
|
646 |
-
#: admin/main-view.php:
|
647 |
#, fuzzy
|
648 |
msgid ""
|
649 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
@@ -653,38 +656,38 @@ msgstr ""
|
|
653 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
654 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
655 |
|
656 |
-
#: admin/main-view.php:
|
657 |
msgid ""
|
658 |
"Below options override the related posts settings for your blog feed. These "
|
659 |
"only apply if you have selected to add related posts to Feeds in the General "
|
660 |
"Options tab."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: admin/main-view.php:
|
664 |
msgid "Maximum width of the thumbnail: "
|
665 |
msgstr "缩略图最大宽度"
|
666 |
|
667 |
-
#: admin/main-view.php:
|
668 |
msgid "Maximum height of the thumbnail: "
|
669 |
msgstr "缩略图最大高度"
|
670 |
|
671 |
-
#: admin/main-view.php:
|
672 |
msgid "Default Options"
|
673 |
msgstr "默认设置"
|
674 |
|
675 |
-
#: admin/main-view.php:
|
676 |
msgid "Do you want to set options to Default?"
|
677 |
msgstr "是否要重置设置?"
|
678 |
|
679 |
-
#: admin/main-view.php:
|
680 |
msgid "Recreate Index"
|
681 |
msgstr "重建索引"
|
682 |
|
683 |
-
#: admin/main-view.php:
|
684 |
msgid "Are you sure you want to recreate the index?"
|
685 |
msgstr "是否要重建索引?"
|
686 |
|
687 |
-
#: admin/main-view.php:
|
688 |
msgid ""
|
689 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
690 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
@@ -774,9 +777,8 @@ msgid "Quick links"
|
|
774 |
msgstr "快捷链接"
|
775 |
|
776 |
#: admin/sidebar-view.php:57
|
777 |
-
|
778 |
-
|
779 |
-
msgstr "相关日志"
|
780 |
|
781 |
#: admin/sidebar-view.php:58
|
782 |
msgid "FAQ"
|
@@ -888,6 +890,13 @@ msgstr ""
|
|
888 |
msgid " by "
|
889 |
msgstr ""
|
890 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
891 |
#~ msgid "Options saved successfully."
|
892 |
#~ msgstr "成功保存设置。"
|
893 |
|
@@ -917,15 +926,6 @@ msgstr ""
|
|
917 |
#~ "<em>Add New Post</em> screen"
|
918 |
#~ msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
919 |
|
920 |
-
#, fuzzy
|
921 |
-
#~ msgid ""
|
922 |
-
#~ "The plugin will first check if the post contains a thumbnail. If it "
|
923 |
-
#~ "doesn't then it will check the meta field. If this is not available, then "
|
924 |
-
#~ "it will show the default image as specified above."
|
925 |
-
#~ msgstr ""
|
926 |
-
#~ "本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则"
|
927 |
-
#~ "显示上面默认图像"
|
928 |
-
|
929 |
#~ msgid "Post thumbnail options:"
|
930 |
#~ msgstr "日志缩略图设置:"
|
931 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contextual Related Posts\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-09-05 11:13+0100\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Ajay D'Souza <me@ajaydsouza.com>\n"
|
8 |
"Language-Team: \n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: admin/admin.php:190
|
20 |
msgid "Options saved successfully. If enabled, the cache has been cleared."
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: admin/admin.php:193
|
24 |
msgid ""
|
25 |
"Rounded Thumbnails style selected. Author, Excerpt and Date will not be "
|
26 |
"displayed."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:196
|
30 |
msgid "Text Only style selected. Thumbnails will not be displayed."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:199
|
34 |
#, php-format
|
35 |
msgid "Pre-built thumbnail size selected. Thumbnail set to %d x %d."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: admin/admin.php:223
|
39 |
msgid "Options set to Default."
|
40 |
msgstr "已重置设置。"
|
41 |
|
42 |
+
#: admin/admin.php:232
|
43 |
msgid "Index recreated"
|
44 |
msgstr "已重新创建索引"
|
45 |
|
46 |
+
#: admin/admin.php:250
|
|
|
|
|
|
|
|
|
47 |
msgid "Related Posts"
|
48 |
msgstr "相关日志"
|
49 |
|
85 |
msgid "List tuning options"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin/main-view.php:34 admin/main-view.php:239
|
89 |
#, fuzzy
|
90 |
msgid "Output options"
|
91 |
msgstr "显示设置"
|
92 |
|
93 |
+
#: admin/main-view.php:35 admin/main-view.php:443
|
94 |
#: includes/class-crp-widget.php:93
|
95 |
msgid "Thumbnail options"
|
96 |
msgstr "缩略图设置:"
|
97 |
|
98 |
+
#: admin/main-view.php:36 admin/main-view.php:596
|
99 |
msgid "Styles"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/main-view.php:37 admin/main-view.php:674
|
103 |
#, fuzzy
|
104 |
msgid "Feed options"
|
105 |
msgstr "一般设置"
|
221 |
"in the list."
|
222 |
msgstr "相关日志"
|
223 |
|
224 |
+
#: admin/main-view.php:135 admin/main-view.php:232 admin/main-view.php:436
|
225 |
+
#: admin/main-view.php:589 admin/main-view.php:667 admin/main-view.php:739
|
226 |
+
#: admin/main-view.php:755
|
227 |
msgid "Save Options"
|
228 |
msgstr "保存设置"
|
229 |
|
230 |
+
#: admin/main-view.php:158 admin/main-view.php:692
|
231 |
msgid "Number of related posts to display: "
|
232 |
msgstr "相关日志数量:"
|
233 |
|
291 |
msgid "List of post or page IDs to exclude from the results:"
|
292 |
msgstr "排除的文章或页面 ID:"
|
293 |
|
294 |
+
#: admin/main-view.php:197 admin/main-view.php:367
|
295 |
msgid ""
|
296 |
"Comma separated list of post, page or custom post type IDs. e.g. 188,320,500"
|
297 |
msgstr ""
|
308 |
"prompt you with options."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin/main-view.php:214
|
312 |
+
msgid "Excluded category IDs are:"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: admin/main-view.php:255
|
316 |
msgid "Title of related posts:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/main-view.php:258
|
320 |
msgid ""
|
321 |
"This is the main heading of the related posts. You can also display the "
|
322 |
"current post title by using <code>%postname%</code>. e.g. <code>Related "
|
323 |
"Posts to %postname%</code>"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: admin/main-view.php:262
|
327 |
msgid "When there are no posts, what should be shown?"
|
328 |
msgstr "当不存在相关日志时,显示什么?"
|
329 |
|
330 |
+
#: admin/main-view.php:266
|
331 |
msgid "Blank Output"
|
332 |
msgstr "不显示"
|
333 |
|
334 |
+
#: admin/main-view.php:271
|
335 |
msgid "Display:"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/main-view.php:277 admin/main-view.php:695
|
339 |
msgid "Show post excerpt in list?"
|
340 |
msgstr "是否显示日志摘要?"
|
341 |
|
342 |
+
#: admin/main-view.php:280
|
343 |
#, php-format
|
344 |
msgid ""
|
345 |
"Displays the excerpt of the post. If you do not provide an explicit excerpt "
|
347 |
"automatic excerpt which refers to the first %d words of the post's content"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: admin/main-view.php:283
|
351 |
msgid ""
|
352 |
"Rounded Thumbnails style selected under the Custom Styles. Excerpt display "
|
353 |
"is disabled."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/main-view.php:288
|
357 |
msgid "Length of excerpt (in words):"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/main-view.php:294
|
361 |
#, fuzzy
|
362 |
msgid "Show post author in list?"
|
363 |
msgstr "是否显示日志摘要?"
|
364 |
|
365 |
+
#: admin/main-view.php:297
|
366 |
msgid "Displays the author name prefixed with \"by\". e.g. by John Doe"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin/main-view.php:300
|
370 |
msgid ""
|
371 |
"Rounded Thumbnails style selected under the Custom Styles. Author display is "
|
372 |
"disabled."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin/main-view.php:305
|
376 |
#, fuzzy
|
377 |
msgid "Show post date in list?"
|
378 |
msgstr "是否显示日志摘要?"
|
379 |
|
380 |
+
#: admin/main-view.php:308
|
381 |
msgid ""
|
382 |
"Displays the date of the post. Uses the same date format set in General "
|
383 |
"Options"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/main-view.php:311
|
387 |
msgid ""
|
388 |
"Rounded Thumbnails style selected under the Custom Styles. Date display is "
|
389 |
"disabled."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: admin/main-view.php:316
|
393 |
msgid "Limit post title length (in characters)"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/main-view.php:319
|
397 |
msgid ""
|
398 |
"Any title longer than the number of characters set above will be cut and "
|
399 |
"appended with an ellipsis (…)"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin/main-view.php:323
|
403 |
msgid "Open links in new window"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: admin/main-view.php:329
|
407 |
msgid "Add nofollow attribute to links in the list"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: admin/main-view.php:362
|
411 |
#, fuzzy
|
412 |
msgid "Exclusion settings:"
|
413 |
msgstr "插件设置页面"
|
414 |
|
415 |
+
#: admin/main-view.php:364
|
416 |
#, fuzzy
|
417 |
msgid "Exclude display of related posts on these posts / pages"
|
418 |
msgstr "添加相关日志到页面里"
|
419 |
|
420 |
+
#: admin/main-view.php:370
|
421 |
#, fuzzy
|
422 |
msgid "Exclude display of related posts on these post types."
|
423 |
msgstr "添加相关日志到页面里"
|
424 |
|
425 |
+
#: admin/main-view.php:377
|
426 |
#, fuzzy
|
427 |
msgid ""
|
428 |
"The related posts will not display on any of the above selected post types"
|
429 |
msgstr "被索引的日志类型(包含自定义日志类型)"
|
430 |
|
431 |
+
#: admin/main-view.php:407
|
432 |
msgid "Customize the output:"
|
433 |
msgstr "自定义显示:"
|
434 |
|
435 |
+
#: admin/main-view.php:409
|
436 |
msgid "HTML to display before the list of posts: "
|
437 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
438 |
|
439 |
+
#: admin/main-view.php:412
|
440 |
msgid "HTML to display before each list item: "
|
441 |
msgstr "显示在每篇日志后面的 HTML 标签:"
|
442 |
|
443 |
+
#: admin/main-view.php:415
|
444 |
msgid "HTML to display after each list item: "
|
445 |
msgstr "显示在日志列表前面的 HTML 标签:"
|
446 |
|
447 |
+
#: admin/main-view.php:418
|
448 |
msgid "HTML to display after the list of posts: "
|
449 |
msgstr "显示在日志列表后面的 HTML 标签:"
|
450 |
|
451 |
+
#: admin/main-view.php:459 admin/main-view.php:698
|
452 |
msgid "Location of post thumbnail:"
|
453 |
msgstr "日志缩略图位置:"
|
454 |
|
455 |
+
#: admin/main-view.php:463 admin/main-view.php:702
|
456 |
msgid "Display thumbnails inline with posts, before title"
|
457 |
msgstr "在标题前显示缩略图"
|
458 |
|
459 |
+
#: admin/main-view.php:467 admin/main-view.php:706
|
460 |
msgid "Display thumbnails inline with posts, after title"
|
461 |
msgstr "在标题后显示缩略图"
|
462 |
|
463 |
+
#: admin/main-view.php:471 admin/main-view.php:710
|
464 |
msgid "Display only thumbnails, no text"
|
465 |
msgstr "不显示文本,只显示缩略图"
|
466 |
|
467 |
+
#: admin/main-view.php:475 admin/main-view.php:714
|
468 |
msgid "Do not display thumbnails, only text."
|
469 |
msgstr "不显示缩略图,只显示文本"
|
470 |
|
471 |
+
#: admin/main-view.php:478
|
472 |
msgid ""
|
473 |
"This setting cannot be changed because an inbuilt style has been selected "
|
474 |
"under the Styles section. If you would like to change this option, please "
|
475 |
"select <strong>No styles</strong> under the Styles section."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/main-view.php:482
|
479 |
msgid "Thumbnail size:"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/main-view.php:506
|
483 |
msgid "Custom size"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/main-view.php:509
|
487 |
msgid "You can choose from existing image sizes above or create a custom size."
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin/main-view.php:510
|
491 |
msgid ""
|
492 |
"If you choose an existing size, then the width, height and crop mode "
|
493 |
"settings in the three options below will be automatically updated to reflect "
|
494 |
"the correct dimensions of the setting."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: admin/main-view.php:511
|
498 |
msgid ""
|
499 |
"If you have chosen Custom size above, then enter the width, height and crop "
|
500 |
"settings below. For best results, use a cropped image with the same width "
|
501 |
"and height. The default setting is 150x150 cropped image."
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/main-view.php:512
|
505 |
msgid ""
|
506 |
"Any changes to the thumbnail settings doesn't automatically resize existing "
|
507 |
"images."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: admin/main-view.php:513
|
511 |
#, php-format
|
512 |
msgid ""
|
513 |
"I recommend using <a href='%s' class='thickbox'>OTF Regenerate Thumbnails</"
|
515 |
"all image sizes."
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: admin/main-view.php:517
|
519 |
msgid "Width of the thumbnail:"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/main-view.php:520
|
523 |
msgid "Height of the thumbnail: "
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/main-view.php:525
|
527 |
msgid "Crop mode:"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/main-view.php:529
|
531 |
msgid ""
|
532 |
"By default, thumbnails will be hard cropped. Uncheck this box to "
|
533 |
"proportionately/soft crop the thumbnails."
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: admin/main-view.php:530
|
537 |
#, php-format
|
538 |
msgid "<a href='%s' target='_blank'>Difference between soft and hard crop</a>"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: admin/main-view.php:534
|
542 |
msgid "Image size attributes:"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/main-view.php:538
|
546 |
msgid "Style attributes are used for width and height."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: admin/main-view.php:543
|
550 |
msgid "HTML width and height attributes are used for width and height."
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/main-view.php:548
|
554 |
msgid "No HTML or Style attributes set for width and height"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/main-view.php:553
|
558 |
#, fuzzy
|
559 |
msgid "Post thumbnail meta field name:"
|
560 |
msgstr "日志缩略图自定义栏目的名称:"
|
561 |
|
562 |
+
#: admin/main-view.php:555
|
563 |
msgid ""
|
564 |
"The value of this field should contain a direct link to the image. This is "
|
565 |
"set in the meta box in the <em>Add New Post</em> screen."
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/main-view.php:558
|
569 |
msgid "Extract the first image from the post?"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin/main-view.php:560
|
573 |
msgid ""
|
574 |
"This will only happen if there is no post thumbnail set and no image URL is "
|
575 |
"specified in the meta field."
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/main-view.php:563
|
579 |
#, fuzzy
|
580 |
msgid "Use default thumbnail?"
|
581 |
msgstr "是否使用默认缩略图?"
|
582 |
|
583 |
+
#: admin/main-view.php:565
|
584 |
msgid ""
|
585 |
"If checked, when no thumbnail is found, show a default one from the URL "
|
586 |
"below. If not checked and no thumbnail is found, no image will be shown."
|
587 |
msgstr ""
|
588 |
"勾选此项,当不存在缩略图时,显示以下默认缩略图,不勾选则不显示任何图像。"
|
589 |
|
590 |
+
#: admin/main-view.php:568
|
591 |
#, fuzzy
|
592 |
msgid "Default thumbnail:"
|
593 |
msgstr "默认缩略图:"
|
594 |
|
595 |
+
#: admin/main-view.php:571
|
596 |
+
#, fuzzy
|
597 |
msgid ""
|
598 |
+
"The plugin will first check if the post contains a thumbnail. If it doesn't "
|
599 |
+
"then it will check the meta field. If this is not available, then it will "
|
600 |
+
"show the default image as specified above."
|
601 |
msgstr ""
|
602 |
+
"本插件按先后顺序检测日志本身、缩略图自定义栏目是否含有缩略图,若不存在,则显"
|
603 |
+
"示上面默认图像"
|
604 |
|
605 |
+
#: admin/main-view.php:612
|
606 |
msgid "Style of the related posts:"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: admin/main-view.php:615
|
610 |
msgid "No styles"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: admin/main-view.php:617
|
614 |
msgid "Select this option if you plan to add your own styles"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: admin/main-view.php:621
|
618 |
msgid "Rounded Thumbnails"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: admin/main-view.php:624
|
622 |
msgid ""
|
623 |
"Enabling this option will turn on the thumbnails and set their width and "
|
624 |
"height to 150px. It will also turn off the display of the author, excerpt "
|
626 |
"settings."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: admin/main-view.php:625
|
630 |
#, php-format
|
631 |
msgid ""
|
632 |
"You can view the default style at <a href=\"%1$s\" target=\"_blank\">%1$s</a>"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/main-view.php:629
|
636 |
msgid "Text only"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/main-view.php:631
|
640 |
msgid ""
|
641 |
"Enabling this option will disable thumbnails and no longer include the "
|
642 |
"default style sheet included in the plugin."
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/main-view.php:646
|
646 |
msgid "Custom CSS to add to header:"
|
647 |
msgstr "添加自定义 CSS 到 header:"
|
648 |
|
649 |
+
#: admin/main-view.php:650
|
650 |
#, fuzzy
|
651 |
msgid ""
|
652 |
"Do not include <code>style</code> tags. Check out the <a href=\"http://"
|
656 |
"不要使用 <code>style</code> 标签。请查看 <a href=\"http://wordpress.org/"
|
657 |
"extend/plugins/contextual-related-posts/faq/\">FAQ</a> 中可用的 CSS classes。"
|
658 |
|
659 |
+
#: admin/main-view.php:690
|
660 |
msgid ""
|
661 |
"Below options override the related posts settings for your blog feed. These "
|
662 |
"only apply if you have selected to add related posts to Feeds in the General "
|
663 |
"Options tab."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: admin/main-view.php:718
|
667 |
msgid "Maximum width of the thumbnail: "
|
668 |
msgstr "缩略图最大宽度"
|
669 |
|
670 |
+
#: admin/main-view.php:721
|
671 |
msgid "Maximum height of the thumbnail: "
|
672 |
msgstr "缩略图最大高度"
|
673 |
|
674 |
+
#: admin/main-view.php:756
|
675 |
msgid "Default Options"
|
676 |
msgstr "默认设置"
|
677 |
|
678 |
+
#: admin/main-view.php:756
|
679 |
msgid "Do you want to set options to Default?"
|
680 |
msgstr "是否要重置设置?"
|
681 |
|
682 |
+
#: admin/main-view.php:757
|
683 |
msgid "Recreate Index"
|
684 |
msgstr "重建索引"
|
685 |
|
686 |
+
#: admin/main-view.php:757
|
687 |
msgid "Are you sure you want to recreate the index?"
|
688 |
msgstr "是否要重建索引?"
|
689 |
|
690 |
+
#: admin/main-view.php:762
|
691 |
msgid ""
|
692 |
"One or more FULLTEXT indices are missing. Please hit the <a href="
|
693 |
"\"#crp_recreate\">Recreate Index button</a> at the bottom of the page to fix "
|
777 |
msgstr "快捷链接"
|
778 |
|
779 |
#: admin/sidebar-view.php:57
|
780 |
+
msgid "Plugin homepage"
|
781 |
+
msgstr ""
|
|
|
782 |
|
783 |
#: admin/sidebar-view.php:58
|
784 |
msgid "FAQ"
|
890 |
msgid " by "
|
891 |
msgstr ""
|
892 |
|
893 |
+
#~ msgid "Contextual Related Posts"
|
894 |
+
#~ msgstr "Contextual Related Posts"
|
895 |
+
|
896 |
+
#, fuzzy
|
897 |
+
#~ msgid "Contextual Related Posts plugin page"
|
898 |
+
#~ msgstr "相关日志"
|
899 |
+
|
900 |
#~ msgid "Options saved successfully."
|
901 |
#~ msgstr "成功保存设置。"
|
902 |
|
926 |
#~ "<em>Add New Post</em> screen"
|
927 |
#~ msgstr "该栏目的值在 <em>文章编辑 » 自定义栏目</em> 填写,需填写图像地址"
|
928 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
929 |
#~ msgid "Post thumbnail options:"
|
930 |
#~ msgstr "日志缩略图设置:"
|
931 |
|
readme.txt
CHANGED
@@ -42,7 +42,7 @@ And the default inbuilt styles allow you to switch between gorgeous thumbnail-ri
|
|
42 |
|
43 |
= Extensions =
|
44 |
|
45 |
-
* [CRP Taxonomy Extender](https://webberzone.com/
|
46 |
|
47 |
= Donations =
|
48 |
|
@@ -141,7 +141,7 @@ The following functions are available in case you wish to do a manual install of
|
|
141 |
|
142 |
Echoes the list of posts wherever you add the this function. You can also use this function to display related posts on any type of page generated by WordPress including homepage and archive pages.
|
143 |
|
144 |
-
Usage: `<?php if(function_exists('
|
145 |
|
146 |
|
147 |
**get_crp_posts_id()**
|
@@ -178,6 +178,15 @@ In addition to the above, the shortcode takes every option that the plugin suppo
|
|
178 |
|
179 |
== Changelog ==
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
= 2.2.0 =
|
182 |
|
183 |
* Features:
|
@@ -259,7 +268,7 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
259 |
|
260 |
== Upgrade Notice ==
|
261 |
|
262 |
-
= 2.2 =
|
263 |
* New features. Deprecated functions. Upgrade highly recommended. Please do verify your settings after the upgrade.
|
264 |
Check the Changelog for more details
|
265 |
|
42 |
|
43 |
= Extensions =
|
44 |
|
45 |
+
* [CRP Taxonomy Extender](https://webberzone.com/downloads/crp-taxonomy/)
|
46 |
|
47 |
= Donations =
|
48 |
|
141 |
|
142 |
Echoes the list of posts wherever you add the this function. You can also use this function to display related posts on any type of page generated by WordPress including homepage and archive pages.
|
143 |
|
144 |
+
Usage: `<?php if(function_exists('echo_crp')) echo_crp(); ?>` to your template file where you want the related posts to be displayed.
|
145 |
|
146 |
|
147 |
**get_crp_posts_id()**
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
= 2.2.1 =
|
182 |
+
|
183 |
+
* Bugfixes:
|
184 |
+
* "No styles" would not get selected if "Rounded thumbnails' was enabled
|
185 |
+
* "Recreate Index" caused a fatal error: Call to undefined function `crp_single_activate()`
|
186 |
+
* Excerpt shortening was not working correctly
|
187 |
+
* Exclude categories wasn't working in some cases
|
188 |
+
* Additional check to see if default styles are off, then force No style
|
189 |
+
|
190 |
= 2.2.0 =
|
191 |
|
192 |
* Features:
|
268 |
|
269 |
== Upgrade Notice ==
|
270 |
|
271 |
+
= 2.2.1 =
|
272 |
* New features. Deprecated functions. Upgrade highly recommended. Please do verify your settings after the upgrade.
|
273 |
Check the Changelog for more details
|
274 |
|