Version Description
Release date: March 15th, 2016
- Behavior change: Migrated to new adminKit version, some functions previously in the admin classes are now handled upstream.
- New feature: Added
bcn_post_terms
filter tobcn_breadcrumb_trail::post_terms()
to control the terms included in a non-hierarchical term breadcrumb for a post. - New feature: Added
bcn_add_post_type_arg
filter tobcn_breadcrumb_trail::maybe_add_post_type_arg()
to control when the post_type argument is added to URLs for archives. - New feature: Added
bcn_pick_post_term
filter tobcn_breadcrumb_trail::post_hierarchy()
to allow overriding Breadcrumb NavXTs default term selection behavior. - Bug fix: Fixed issue with untranslatable title on the settings page.
- Bug fix: Cleanup of several trivial differences between
bcn_admin
andbcn_network_admin
. - Bug fix: Fixed improper display of Your settings are out of date. Migrate now. message on fresh installs.
- Bug fix: Clarified verbiage in regards to the paged breadcrumb.
- Bug fix: Added translation wrappers for date format strings in
bcn_breadcrumb_trail::do_archive_by_date()
. - Bug fix: Fixed issue where
bcn_breadcrumb_trail::is_builtin()
would cause PHP warnings when the passed in post type was not an actual post type. - Bug fix: Fixed issue that would cause a PHP error if
WP_Widget
is unavailable.
Download this release
Release Info
Developer | mtekk |
Plugin | Breadcrumb NavXT |
Version | 5.4.0 |
Comparing to | |
See all releases |
Code changes from version 5.3.1 to 5.4.0
- breadcrumb-navxt.php +8 -5
- class.bcn_admin.php +42 -23
- class.bcn_breadcrumb.php +2 -2
- class.bcn_breadcrumb_trail.php +55 -38
- class.bcn_network_admin.php +45 -26
- class.bcn_widget.php +2 -2
- includes/block_direct_access.php +1 -1
- includes/class.mtekk_adminkit.php +42 -9
- includes/class.mtekk_adminkit_uninstaller.php +1 -1
- includes/multibyte_supplicant.php +1 -1
- languages/breadcrumb-navxt-es_ES.mo +0 -0
- languages/breadcrumb-navxt-es_ES.po +0 -836
- languages/breadcrumb-navxt-et.mo +0 -0
- languages/breadcrumb-navxt-et.po +0 -836
- languages/breadcrumb-navxt-fi.mo +0 -0
- languages/breadcrumb-navxt-fi.po +0 -836
- languages/breadcrumb-navxt.pot +247 -226
- readme.txt +22 -7
breadcrumb-navxt.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 5.
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.us/
|
9 |
License: GPL2
|
10 |
Text Domain: breadcrumb-navxt
|
11 |
Domain Path: /languages
|
12 |
*/
|
13 |
-
/* Copyright 2007-
|
14 |
|
15 |
This program is free software; you can redistribute it and/or modify
|
16 |
it under the terms of the GNU General Public License as published by
|
@@ -51,13 +51,16 @@ if(!class_exists('mtekk_adminKit'))
|
|
51 |
require_once(dirname(__FILE__) . '/class.bcn_breadcrumb.php');
|
52 |
//Include the breadcrumb trail class
|
53 |
require_once(dirname(__FILE__) . '/class.bcn_breadcrumb_trail.php');
|
54 |
-
|
55 |
-
|
|
|
|
|
|
|
56 |
$breadcrumb_navxt = NULL;
|
57 |
//TODO change to extends mtekk_plugKit
|
58 |
class breadcrumb_navxt
|
59 |
{
|
60 |
-
const version = '5.
|
61 |
protected $name = 'Breadcrumb NavXT';
|
62 |
protected $identifier = 'breadcrumb-navxt';
|
63 |
protected $unique_prefix = 'bcn';
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 5.4.0
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.us/
|
9 |
License: GPL2
|
10 |
Text Domain: breadcrumb-navxt
|
11 |
Domain Path: /languages
|
12 |
*/
|
13 |
+
/* Copyright 2007-2016 John Havlik (email : john.havlik@mtekk.us)
|
14 |
|
15 |
This program is free software; you can redistribute it and/or modify
|
16 |
it under the terms of the GNU General Public License as published by
|
51 |
require_once(dirname(__FILE__) . '/class.bcn_breadcrumb.php');
|
52 |
//Include the breadcrumb trail class
|
53 |
require_once(dirname(__FILE__) . '/class.bcn_breadcrumb_trail.php');
|
54 |
+
if(class_exists('WP_Widget'))
|
55 |
+
{
|
56 |
+
//Include the WP 2.8+ widget class
|
57 |
+
require_once(dirname(__FILE__) . '/class.bcn_widget.php');
|
58 |
+
}
|
59 |
$breadcrumb_navxt = NULL;
|
60 |
//TODO change to extends mtekk_plugKit
|
61 |
class breadcrumb_navxt
|
62 |
{
|
63 |
+
const version = '5.4.0';
|
64 |
protected $name = 'Breadcrumb NavXT';
|
65 |
protected $identifier = 'breadcrumb-navxt';
|
66 |
protected $unique_prefix = 'bcn';
|
class.bcn_admin.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
/* Copyright 2007-
|
3 |
|
4 |
This program is free software; you can redistribute it and/or modify
|
5 |
it under the terms of the GNU General Public License as published by
|
@@ -42,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
|
|
42 |
*/
|
43 |
class bcn_admin extends mtekk_adminKit
|
44 |
{
|
45 |
-
const version = '5.
|
46 |
protected $full_name = 'Breadcrumb NavXT Settings';
|
47 |
protected $short_name = 'Breadcrumb NavXT';
|
48 |
protected $access_level = 'manage_options';
|
@@ -61,6 +61,7 @@ class bcn_admin extends mtekk_adminKit
|
|
61 |
{
|
62 |
$this->breadcrumb_trail =& $breadcrumb_trail;
|
63 |
$this->plugin_basename = $basename;
|
|
|
64 |
//Grab defaults from the breadcrumb_trail object
|
65 |
$this->opt =& $this->breadcrumb_trail->opt;
|
66 |
//We're going to make sure we load the parent's constructor
|
@@ -84,17 +85,6 @@ class bcn_admin extends mtekk_adminKit
|
|
84 |
parent::wp_loaded();
|
85 |
breadcrumb_navxt::setup_options($this->opt);
|
86 |
}
|
87 |
-
/**
|
88 |
-
* Makes sure the current user can manage options to proceed
|
89 |
-
*/
|
90 |
-
function security()
|
91 |
-
{
|
92 |
-
//If the user can not manage options we will die on them
|
93 |
-
if(!current_user_can($this->access_level))
|
94 |
-
{
|
95 |
-
wp_die(__('Insufficient privileges to proceed.', 'breadcrumb-navxt'));
|
96 |
-
}
|
97 |
-
}
|
98 |
/**
|
99 |
* Upgrades input options array, sets to $this->opt
|
100 |
*
|
@@ -201,6 +191,34 @@ class bcn_admin extends mtekk_adminKit
|
|
201 |
}
|
202 |
}
|
203 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
//Set the max title length to 20 if we are not limiting the title and the length was 0
|
205 |
if(!$opts['blimit_title'] && $opts['amax_title_length'] == 0)
|
206 |
{
|
@@ -237,12 +255,12 @@ class bcn_admin extends mtekk_adminKit
|
|
237 |
{
|
238 |
$general_tab = '<p>' . __('Tips for the settings are located below select options.', 'breadcrumb-navxt') .
|
239 |
'</p><h5>' . __('Resources', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
240 |
-
sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.", 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT tag archive.', 'breadcrumb-navxt') . '" href="
|
241 |
-
sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', 'breadcrumb-navxt'), '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb-navxt') . '" href="
|
242 |
-
sprintf(__('%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb-navxt') . '" href="
|
243 |
'<h5>' . __('Giving Back', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
244 |
sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', 'breadcrumb-navxt'),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb-navxt') . '" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">', '</a>') . '</li><li>' .
|
245 |
-
sprintf(__('%sTranslate%s: Is your language not available?
|
246 |
|
247 |
$screen->add_help_tab(
|
248 |
array(
|
@@ -251,13 +269,13 @@ class bcn_admin extends mtekk_adminKit
|
|
251 |
'content' => $general_tab
|
252 |
));
|
253 |
$quickstart_tab = '<p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb-navxt') .
|
254 |
-
'</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb-navxt') . '</h5><pre><code><div class="breadcrumbs">' . "
|
255 |
<?php if(function_exists('bcn_display'))
|
256 |
{
|
257 |
bcn_display();
|
258 |
}?>
|
259 |
</div></code></pre>" .
|
260 |
-
'<h5>' . __('Breadcrumb trail in list form', 'breadcrumb-navxt').'</h5><pre><code><ol class="breadcrumbs">'."
|
261 |
<?php if(function_exists('bcn_display_list'))
|
262 |
{
|
263 |
bcn_display_list();
|
@@ -370,10 +388,11 @@ class bcn_admin extends mtekk_adminKit
|
|
370 |
$this->deprecated_settings_warn();
|
371 |
//Do a check for multisite settings mode
|
372 |
$this->multisite_settings_warn();
|
|
|
373 |
//Display our messages
|
374 |
$this->messages();
|
375 |
?>
|
376 |
-
<div class="wrap"><h2><?php
|
377 |
<?php
|
378 |
//We exit after the version check if there is an action the user needs to take before saving settings
|
379 |
if(!$this->version_check(get_option($this->unique_prefix . '_version')))
|
@@ -397,8 +416,8 @@ class bcn_admin extends mtekk_adminKit
|
|
397 |
<table class="form-table">
|
398 |
<?php
|
399 |
$this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
|
400 |
-
$this->input_check(
|
401 |
-
$this->input_text(
|
402 |
do_action($this->unique_prefix . '_settings_current_item', $this->opt);
|
403 |
?>
|
404 |
</table>
|
@@ -411,7 +430,7 @@ class bcn_admin extends mtekk_adminKit
|
|
411 |
do_action($this->unique_prefix . '_settings_home', $this->opt);
|
412 |
?>
|
413 |
</table>
|
414 |
-
<h3><?php _e('Blog Breadcrumb
|
415 |
<table class="form-table adminkit-engroup">
|
416 |
<?php
|
417 |
$this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
|
1 |
<?php
|
2 |
+
/* Copyright 2007-2016 John Havlik (email : john.havlik@mtekk.us)
|
3 |
|
4 |
This program is free software; you can redistribute it and/or modify
|
5 |
it under the terms of the GNU General Public License as published by
|
42 |
*/
|
43 |
class bcn_admin extends mtekk_adminKit
|
44 |
{
|
45 |
+
const version = '5.4.0';
|
46 |
protected $full_name = 'Breadcrumb NavXT Settings';
|
47 |
protected $short_name = 'Breadcrumb NavXT';
|
48 |
protected $access_level = 'manage_options';
|
61 |
{
|
62 |
$this->breadcrumb_trail =& $breadcrumb_trail;
|
63 |
$this->plugin_basename = $basename;
|
64 |
+
$this->full_name = __('Breadcrumb NavXT Settings', 'breadcrumb-navxt');
|
65 |
//Grab defaults from the breadcrumb_trail object
|
66 |
$this->opt =& $this->breadcrumb_trail->opt;
|
67 |
//We're going to make sure we load the parent's constructor
|
85 |
parent::wp_loaded();
|
86 |
breadcrumb_navxt::setup_options($this->opt);
|
87 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
/**
|
89 |
* Upgrades input options array, sets to $this->opt
|
90 |
*
|
191 |
}
|
192 |
}
|
193 |
}
|
194 |
+
//Upgrading to 5.4.0
|
195 |
+
if(version_compare($version, '5.4.0', '<'))
|
196 |
+
{
|
197 |
+
//Migrate users to schema.org breadcrumbs for author and search if still on the defaults for posts
|
198 |
+
if($opts['Hpost_post_template'] === bcn_breadcrumb::get_default_template() && $opts['Hpost_post_template_no_anchor'] === bcn_breadcrumb::default_template_no_anchor)
|
199 |
+
{
|
200 |
+
if($opts['Hpaged_template'] === 'Page %htitle%')
|
201 |
+
{
|
202 |
+
$opts['Hpaged_template'] = $this->opt['Hpaged_template'];
|
203 |
+
}
|
204 |
+
if($opts['Hsearch_template'] === 'Search results for '<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>'' || $opts['Hsearch_template'] === 'Search results for '<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>'')
|
205 |
+
{
|
206 |
+
$opts['Hsearch_template'] = $this->opt['Hsearch_template'];
|
207 |
+
}
|
208 |
+
if($opts['Hsearch_template_no_anchor'] === 'Search results for '%htitle%'' || $opts['Hsearch_template_no_anchor'] === 'Search results for '%htitle%'')
|
209 |
+
{
|
210 |
+
$opts['Hsearch_template_no_anchor'] = $this->opt['Hsearch_template_no_anchor'];
|
211 |
+
}
|
212 |
+
if($opts['Hauthor_template'] === 'Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>')
|
213 |
+
{
|
214 |
+
$opts['Hauthor_template'] = $this->opt['Hauthor_template'];
|
215 |
+
}
|
216 |
+
if($opts['Hauthor_template_no_anchor'] === 'Articles by: %htitle%')
|
217 |
+
{
|
218 |
+
$opts['Hauthor_template_no_anchor'] = $this->opt['Hauthor_template_no_anchor'];
|
219 |
+
}
|
220 |
+
}
|
221 |
+
}
|
222 |
//Set the max title length to 20 if we are not limiting the title and the length was 0
|
223 |
if(!$opts['blimit_title'] && $opts['amax_title_length'] == 0)
|
224 |
{
|
255 |
{
|
256 |
$general_tab = '<p>' . __('Tips for the settings are located below select options.', 'breadcrumb-navxt') .
|
257 |
'</p><h5>' . __('Resources', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
258 |
+
sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.", 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT tag archive.', 'breadcrumb-navxt') . '" href="https://mtekk.us/archives/tag/breadcrumb-navxt">', '</a>') . '</li><li>' .
|
259 |
+
sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', 'breadcrumb-navxt'), '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb-navxt') . '" href="https://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . '</li><li>' .
|
260 |
+
sprintf(__('%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb-navxt') . '" href="https://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this::version . '/#respond">', '</a>') . '</li></ul>' .
|
261 |
'<h5>' . __('Giving Back', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
262 |
sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', 'breadcrumb-navxt'),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb-navxt') . '" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">', '</a>') . '</li><li>' .
|
263 |
+
sprintf(__('%sTranslate%s: Is your language not available? Visit the Breadcrumb NavXT translation project on WordPress.org to start translating.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT translation project.', 'breadcrumb-navxt') . '" href="https://translate.wordpress.org/projects/wp-plugins/breadcrumb-navxt">', '</a>') . '</li></ul>';
|
264 |
|
265 |
$screen->add_help_tab(
|
266 |
array(
|
269 |
'content' => $general_tab
|
270 |
));
|
271 |
$quickstart_tab = '<p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb-navxt') .
|
272 |
+
'</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb-navxt') . '</h5><pre><code><div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">' . "
|
273 |
<?php if(function_exists('bcn_display'))
|
274 |
{
|
275 |
bcn_display();
|
276 |
}?>
|
277 |
</div></code></pre>" .
|
278 |
+
'<h5>' . __('Breadcrumb trail in list form', 'breadcrumb-navxt').'</h5><pre><code><ol class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">'."
|
279 |
<?php if(function_exists('bcn_display_list'))
|
280 |
{
|
281 |
bcn_display_list();
|
388 |
$this->deprecated_settings_warn();
|
389 |
//Do a check for multisite settings mode
|
390 |
$this->multisite_settings_warn();
|
391 |
+
do_action($this->unique_prefix . '_settings_pre_messages', $this->opt);
|
392 |
//Display our messages
|
393 |
$this->messages();
|
394 |
?>
|
395 |
+
<div class="wrap"><h2><?php echo $this->full_name; ?></h2>
|
396 |
<?php
|
397 |
//We exit after the version check if there is an action the user needs to take before saving settings
|
398 |
if(!$this->version_check(get_option($this->unique_prefix . '_version')))
|
416 |
<table class="form-table">
|
417 |
<?php
|
418 |
$this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
|
419 |
+
$this->input_check(_x('Paged Breadcrumb', 'Paged as in when on an archive or post that is split into multiple pages', 'breadcrumb-navxt'), 'bpaged_display', __('Place the page number breadcrumb in the trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first of a paginated archive or post.', 'breadcrumb-navxt'));
|
420 |
+
$this->input_text(_x('Paged Template', 'Paged as in when on an archive or post that is split into multiple pages', 'breadcrumb-navxt'), 'Hpaged_template', 'large-text', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
|
421 |
do_action($this->unique_prefix . '_settings_current_item', $this->opt);
|
422 |
?>
|
423 |
</table>
|
430 |
do_action($this->unique_prefix . '_settings_home', $this->opt);
|
431 |
?>
|
432 |
</table>
|
433 |
+
<h3><?php _e('Blog Breadcrumb', 'breadcrumb-navxt'); ?></h3>
|
434 |
<table class="form-table adminkit-engroup">
|
435 |
<?php
|
436 |
$this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
|
class.bcn_breadcrumb.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2007-
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
@@ -21,7 +21,7 @@ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
|
|
21 |
class bcn_breadcrumb
|
22 |
{
|
23 |
//Our member variables
|
24 |
-
const version = '5.3.
|
25 |
//The main text that will be shown
|
26 |
protected $title;
|
27 |
//The breadcrumb's template, used durring assembly
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2007-2016 John Havlik (email : john.havlik@mtekk.us)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
21 |
class bcn_breadcrumb
|
22 |
{
|
23 |
//Our member variables
|
24 |
+
const version = '5.3.80';
|
25 |
//The main text that will be shown
|
26 |
protected $title;
|
27 |
//The breadcrumb's template, used durring assembly
|
class.bcn_breadcrumb_trail.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2007-
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
@@ -21,7 +21,7 @@ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
|
|
21 |
class bcn_breadcrumb_trail
|
22 |
{
|
23 |
//Our member variables
|
24 |
-
const version = '5.
|
25 |
//An array of breadcrumbs
|
26 |
public $breadcrumbs = array();
|
27 |
public $trail = array();
|
@@ -36,8 +36,6 @@ class bcn_breadcrumb_trail
|
|
36 |
load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
|
37 |
}
|
38 |
$this->trail = &$this->breadcrumbs;
|
39 |
-
//Load the translation domain as the next part needs it
|
40 |
-
//load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
|
41 |
//Initilize with default option values
|
42 |
$this->opt = array(
|
43 |
//Should the mainsite be shown
|
@@ -76,7 +74,7 @@ class bcn_breadcrumb_trail
|
|
76 |
'apost_page_root' => get_option('page_on_front'),
|
77 |
//Paged options
|
78 |
//The template for paged breadcrumb
|
79 |
-
'Hpaged_template' => __('Page %htitle%', 'breadcrumb-navxt'),
|
80 |
//Should we try filling out paged information
|
81 |
'bpaged_display' => false,
|
82 |
//The post options previously singleblogpost
|
@@ -102,9 +100,9 @@ class bcn_breadcrumb_trail
|
|
102 |
'S404_title' => __('404', 'breadcrumb-navxt'),
|
103 |
//Search page options
|
104 |
//The breadcrumb template for search breadcrumbs
|
105 |
-
'Hsearch_template' => __('Search results for '<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>'
|
106 |
//The breadcrumb template for search breadcrumbs, used when an anchor is not necessary
|
107 |
-
'Hsearch_template_no_anchor' => __('Search results for '%htitle%'
|
108 |
//Tag related stuff
|
109 |
//The breadcrumb template for tag breadcrumbs
|
110 |
'Htax_post_tag_template' => __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% tag archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
|
@@ -117,9 +115,9 @@ class bcn_breadcrumb_trail
|
|
117 |
'Htax_post_format_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
|
118 |
//Author page stuff
|
119 |
//The anchor template for author breadcrumbs
|
120 |
-
'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
|
121 |
//The anchor template for author breadcrumbs, used when anchors are not needed
|
122 |
-
'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
|
123 |
//Which of the various WordPress display types should the author breadcrumb display
|
124 |
'Sauthor_name' => 'display_name',
|
125 |
//Category stuff
|
@@ -258,7 +256,9 @@ class bcn_breadcrumb_trail
|
|
258 |
//Handle all hierarchical taxonomies, including categories
|
259 |
else if(is_taxonomy_hierarchical($this->opt['Spost_' . $type . '_taxonomy_type']))
|
260 |
{
|
261 |
-
|
|
|
|
|
262 |
{
|
263 |
//Fill out the term hiearchy
|
264 |
$parent = $this->term_parents($term->term_id, $this->opt['Spost_' . $type . '_taxonomy_type']);
|
@@ -303,35 +303,33 @@ class bcn_breadcrumb_trail
|
|
303 |
* @param string $taxonomy The name of the taxonomy that the term belongs to
|
304 |
*
|
305 |
* TODO Need to implement this cleaner
|
306 |
-
* TODO This still needs to be updated to the new method of adding breadcrumbs to the trail
|
307 |
*/
|
308 |
protected function post_terms($id, $taxonomy)
|
309 |
{
|
310 |
-
//
|
311 |
-
$
|
312 |
//Only process if we have terms
|
313 |
-
if(is_array($
|
314 |
{
|
315 |
-
|
316 |
-
$this->breadcrumbs[] = new bcn_breadcrumb();
|
317 |
-
//Figure out where we placed the crumb, make a nice pointer to it
|
318 |
-
$bcn_breadcrumb = &$this->breadcrumbs[count($this->breadcrumbs) - 1];
|
319 |
$is_first = true;
|
320 |
//Loop through all of the term results
|
321 |
-
foreach($
|
322 |
{
|
323 |
//Everything but the first term needs a comma separator
|
324 |
if($is_first == false)
|
325 |
{
|
326 |
-
$
|
327 |
}
|
328 |
//This is a bit hackish, but it compiles the term anchor and appends it to the current breadcrumb title
|
329 |
-
$
|
330 |
-
array('%title%', '%link%', '%htitle%', '%type%'),
|
331 |
array($term->name, $this->maybe_add_post_type_arg(get_term_link($term), NULL, $term->taxonomy), $term->name, $term->taxonomy),
|
332 |
-
$this->opt['Htax_' . $term->taxonomy . '_template'])
|
333 |
$is_first = false;
|
334 |
}
|
|
|
|
|
335 |
}
|
336 |
}
|
337 |
/**
|
@@ -488,7 +486,7 @@ class bcn_breadcrumb_trail
|
|
488 |
if(is_day() || is_single())
|
489 |
{
|
490 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
491 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('d'), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-day')));
|
492 |
//If this is a day archive, add current-item type
|
493 |
if(is_day())
|
494 |
{
|
@@ -508,7 +506,7 @@ class bcn_breadcrumb_trail
|
|
508 |
if(is_month() || is_day() || is_single())
|
509 |
{
|
510 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
511 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('F'), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-month')));
|
512 |
//If this is a month archive, add current-item type
|
513 |
if(is_month())
|
514 |
{
|
@@ -525,7 +523,7 @@ class bcn_breadcrumb_trail
|
|
525 |
}
|
526 |
}
|
527 |
//Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
528 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('Y'), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-year')));
|
529 |
//If this is a year archive, add current-item type
|
530 |
if(is_year())
|
531 |
{
|
@@ -636,7 +634,15 @@ class bcn_breadcrumb_trail
|
|
636 |
protected function is_builtin($post_type)
|
637 |
{
|
638 |
$type = get_post_type_object($post_type);
|
639 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
}
|
641 |
/**
|
642 |
* Determines if the current location is a for a root page or not
|
@@ -701,13 +707,10 @@ class bcn_breadcrumb_trail
|
|
701 |
{
|
702 |
$type = $this->get_type_string_query_var();
|
703 |
}
|
704 |
-
//
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
}
|
709 |
-
//If the type is not a post, add the type to query
|
710 |
-
if($type !== 'post')
|
711 |
{
|
712 |
$url = add_query_arg(array('post_type' => $type), $url);
|
713 |
}
|
@@ -753,6 +756,8 @@ class bcn_breadcrumb_trail
|
|
753 |
* @param post $type A post object we are using to figureout the type
|
754 |
* @param string $type_str The type string variable, passed by reference
|
755 |
* @param int $root_id The ID for the post type root
|
|
|
|
|
756 |
*/
|
757 |
protected function find_type($type, &$type_str, &$root_id)
|
758 |
{
|
@@ -772,7 +777,12 @@ class bcn_breadcrumb_trail
|
|
772 |
else if(is_post_type_archive() && !isset($type->taxonomy))
|
773 |
{
|
774 |
//We need the type for later, so save it
|
775 |
-
$type_str =
|
|
|
|
|
|
|
|
|
|
|
776 |
//This will assign a ID for root page of a custom post's taxonomy archive
|
777 |
if(is_numeric($this->opt['apost_' . $type_str . '_root']))
|
778 |
{
|
@@ -953,6 +963,13 @@ class bcn_breadcrumb_trail
|
|
953 |
else if(is_archive())
|
954 |
{
|
955 |
$type = $wp_query->get_queried_object();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
956 |
//For date based archives
|
957 |
if(is_date())
|
958 |
{
|
@@ -961,7 +978,7 @@ class bcn_breadcrumb_trail
|
|
961 |
}
|
962 |
//If we have a post type archive, and it does not have a root page generate the archive
|
963 |
else if(is_post_type_archive() && !isset($type->taxonomy)
|
964 |
-
&& (!is_numeric($this->opt['apost_' . $
|
965 |
{
|
966 |
$this->do_archive_by_post_type();
|
967 |
}
|
@@ -972,8 +989,8 @@ class bcn_breadcrumb_trail
|
|
972 |
$this->type_archive($type);
|
973 |
}
|
974 |
else
|
975 |
-
{
|
976 |
-
$this->type_archive($type);
|
977 |
}
|
978 |
}
|
979 |
//For 404 pages
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2007-2016 John Havlik (email : john.havlik@mtekk.us)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
21 |
class bcn_breadcrumb_trail
|
22 |
{
|
23 |
//Our member variables
|
24 |
+
const version = '5.4.0';
|
25 |
//An array of breadcrumbs
|
26 |
public $breadcrumbs = array();
|
27 |
public $trail = array();
|
36 |
load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
|
37 |
}
|
38 |
$this->trail = &$this->breadcrumbs;
|
|
|
|
|
39 |
//Initilize with default option values
|
40 |
$this->opt = array(
|
41 |
//Should the mainsite be shown
|
74 |
'apost_page_root' => get_option('page_on_front'),
|
75 |
//Paged options
|
76 |
//The template for paged breadcrumb
|
77 |
+
'Hpaged_template' => __('<span property="itemListElement" typeof="ListItem"><span property="name">Page %htitle%</span><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
|
78 |
//Should we try filling out paged information
|
79 |
'bpaged_display' => false,
|
80 |
//The post options previously singleblogpost
|
100 |
'S404_title' => __('404', 'breadcrumb-navxt'),
|
101 |
//Search page options
|
102 |
//The breadcrumb template for search breadcrumbs
|
103 |
+
'Hsearch_template' => __('<span property="itemListElement" typeof="ListItem"><span property="name">Search results for '<a property="item" typeof="WebPage" title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>'</span><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
|
104 |
//The breadcrumb template for search breadcrumbs, used when an anchor is not necessary
|
105 |
+
'Hsearch_template_no_anchor' => __('<span property="itemListElement" typeof="ListItem"><span property="name">Search results for '%htitle%'</span><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
|
106 |
//Tag related stuff
|
107 |
//The breadcrumb template for tag breadcrumbs
|
108 |
'Htax_post_tag_template' => __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% tag archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
|
115 |
'Htax_post_format_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
|
116 |
//Author page stuff
|
117 |
//The anchor template for author breadcrumbs
|
118 |
+
'Hauthor_template' => __('<span property="itemListElement" typeof="ListItem"><span property="name">Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
|
119 |
//The anchor template for author breadcrumbs, used when anchors are not needed
|
120 |
+
'Hauthor_template_no_anchor' => __('<span property="itemListElement" typeof="ListItem"><span property="name">Articles by: %htitle%</span><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
|
121 |
//Which of the various WordPress display types should the author breadcrumb display
|
122 |
'Sauthor_name' => 'display_name',
|
123 |
//Category stuff
|
256 |
//Handle all hierarchical taxonomies, including categories
|
257 |
else if(is_taxonomy_hierarchical($this->opt['Spost_' . $type . '_taxonomy_type']))
|
258 |
{
|
259 |
+
//Filter the results of post_pick_term
|
260 |
+
$term = apply_filters('bcn_pick_post_term', $this->pick_post_term($id, $type), $id, $type);
|
261 |
+
if($term !== false)
|
262 |
{
|
263 |
//Fill out the term hiearchy
|
264 |
$parent = $this->term_parents($term->term_id, $this->opt['Spost_' . $type . '_taxonomy_type']);
|
303 |
* @param string $taxonomy The name of the taxonomy that the term belongs to
|
304 |
*
|
305 |
* TODO Need to implement this cleaner
|
|
|
306 |
*/
|
307 |
protected function post_terms($id, $taxonomy)
|
308 |
{
|
309 |
+
//Apply a filter to the terms for the post referred to by ID
|
310 |
+
$bcn_terms = apply_filters('bcn_post_terms', get_the_terms($id, $taxonomy), $taxonomy, $id);
|
311 |
//Only process if we have terms
|
312 |
+
if(is_array($bcn_terms))
|
313 |
{
|
314 |
+
$title = '';
|
|
|
|
|
|
|
315 |
$is_first = true;
|
316 |
//Loop through all of the term results
|
317 |
+
foreach($bcn_terms as $term)
|
318 |
{
|
319 |
//Everything but the first term needs a comma separator
|
320 |
if($is_first == false)
|
321 |
{
|
322 |
+
$title .= ', ';
|
323 |
}
|
324 |
//This is a bit hackish, but it compiles the term anchor and appends it to the current breadcrumb title
|
325 |
+
$title .= str_replace(
|
326 |
+
array('%title%', '%link%', '%htitle%', '%type%'),
|
327 |
array($term->name, $this->maybe_add_post_type_arg(get_term_link($term), NULL, $term->taxonomy), $term->name, $term->taxonomy),
|
328 |
+
$this->opt['Htax_' . $term->taxonomy . '_template']);
|
329 |
$is_first = false;
|
330 |
}
|
331 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
|
332 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($title, NULL, array('taxonomy', $taxonomy)));
|
333 |
}
|
334 |
}
|
335 |
/**
|
486 |
if(is_day() || is_single())
|
487 |
{
|
488 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
489 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time(_x('d', 'day archive breadcrumb date format', 'breadcrumb-navxt')), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-day')));
|
490 |
//If this is a day archive, add current-item type
|
491 |
if(is_day())
|
492 |
{
|
506 |
if(is_month() || is_day() || is_single())
|
507 |
{
|
508 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
509 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time(_x('F', 'month archive breadcrumb date format', 'breadcrumb-navxt')), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-month')));
|
510 |
//If this is a month archive, add current-item type
|
511 |
if(is_month())
|
512 |
{
|
523 |
}
|
524 |
}
|
525 |
//Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
526 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time(_x('Y', 'year archive breadcrumb date format', 'breadcrumb-navxt')), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-year')));
|
527 |
//If this is a year archive, add current-item type
|
528 |
if(is_year())
|
529 |
{
|
634 |
protected function is_builtin($post_type)
|
635 |
{
|
636 |
$type = get_post_type_object($post_type);
|
637 |
+
//If we get a null, that means either then type wasn't found, or we had 'any' as a type, treat as builtin
|
638 |
+
if($type === null)
|
639 |
+
{
|
640 |
+
return true;
|
641 |
+
}
|
642 |
+
else
|
643 |
+
{
|
644 |
+
return $type->_builtin;
|
645 |
+
}
|
646 |
}
|
647 |
/**
|
648 |
* Determines if the current location is a for a root page or not
|
707 |
{
|
708 |
$type = $this->get_type_string_query_var();
|
709 |
}
|
710 |
+
//Add a query arg if we are not on the default post type for the archive in question and the post type is not post
|
711 |
+
$add_query_arg = (!($taxonomy && $type === $wp_taxonomies[$taxonomy]->object_type[0]) && $type !== 'post');
|
712 |
+
//Filter the add_query_arg logic, only add the query arg if necessary
|
713 |
+
if(apply_filters('bcn_add_post_type_arg', $add_query_arg, $type, $taxonomy))
|
|
|
|
|
|
|
714 |
{
|
715 |
$url = add_query_arg(array('post_type' => $type), $url);
|
716 |
}
|
756 |
* @param post $type A post object we are using to figureout the type
|
757 |
* @param string $type_str The type string variable, passed by reference
|
758 |
* @param int $root_id The ID for the post type root
|
759 |
+
*
|
760 |
+
* TODO, can probably clean up all the logic here and use the code for the CPT archives for all paths
|
761 |
*/
|
762 |
protected function find_type($type, &$type_str, &$root_id)
|
763 |
{
|
777 |
else if(is_post_type_archive() && !isset($type->taxonomy))
|
778 |
{
|
779 |
//We need the type for later, so save it
|
780 |
+
$type_str = get_query_var('post_type');
|
781 |
+
//May be an array, if so, rewind the iterator and grab first item
|
782 |
+
if(is_array($type_str))
|
783 |
+
{
|
784 |
+
$type_str = reset($type_str);
|
785 |
+
}
|
786 |
//This will assign a ID for root page of a custom post's taxonomy archive
|
787 |
if(is_numeric($this->opt['apost_' . $type_str . '_root']))
|
788 |
{
|
963 |
else if(is_archive())
|
964 |
{
|
965 |
$type = $wp_query->get_queried_object();
|
966 |
+
//We need the type for later, so save it
|
967 |
+
$type_str = get_query_var('post_type');
|
968 |
+
//May be an array, if so, rewind the iterator and grab first item
|
969 |
+
if(is_array($type_str))
|
970 |
+
{
|
971 |
+
$type_str = reset($type_str);
|
972 |
+
}
|
973 |
//For date based archives
|
974 |
if(is_date())
|
975 |
{
|
978 |
}
|
979 |
//If we have a post type archive, and it does not have a root page generate the archive
|
980 |
else if(is_post_type_archive() && !isset($type->taxonomy)
|
981 |
+
&& (!is_numeric($this->opt['apost_' . $type_str . '_root']) || $this->opt['bpost_' . $type_str . '_archive_display']))
|
982 |
{
|
983 |
$this->do_archive_by_post_type();
|
984 |
}
|
989 |
$this->type_archive($type);
|
990 |
}
|
991 |
else
|
992 |
+
{
|
993 |
+
$this->type_archive($type);
|
994 |
}
|
995 |
}
|
996 |
//For 404 pages
|
class.bcn_network_admin.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
/* Copyright 2007-
|
3 |
|
4 |
This program is free software; you can redistribute it and/or modify
|
5 |
it under the terms of the GNU General Public License as published by
|
@@ -42,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
|
|
42 |
*/
|
43 |
class bcn_network_admin extends mtekk_adminKit
|
44 |
{
|
45 |
-
const version = '5.
|
46 |
protected $full_name = 'Breadcrumb NavXT Network Settings';
|
47 |
protected $short_name = 'Breadcrumb NavXT';
|
48 |
protected $access_level = 'manage_network_options';
|
@@ -60,6 +60,7 @@ class bcn_network_admin extends mtekk_adminKit
|
|
60 |
{
|
61 |
$this->breadcrumb_trail = $breadcrumb_trail;
|
62 |
$this->plugin_basename = $basename;
|
|
|
63 |
//Grab defaults from the breadcrumb_trail object
|
64 |
$this->opt = $this->breadcrumb_trail->opt;
|
65 |
add_action('network_admin_menu', array($this, 'add_page'));
|
@@ -69,7 +70,7 @@ class bcn_network_admin extends mtekk_adminKit
|
|
69 |
/**
|
70 |
* admin initialization callback function
|
71 |
*
|
72 |
-
* is bound to
|
73 |
*
|
74 |
* @since 3.2.0
|
75 |
* @return void
|
@@ -97,7 +98,7 @@ class bcn_network_admin extends mtekk_adminKit
|
|
97 |
function add_page()
|
98 |
{
|
99 |
//Add the submenu page to "settings" menu
|
100 |
-
$hookname = add_submenu_page('settings.php',
|
101 |
// check capability of user to manage options (access control)
|
102 |
if(current_user_can($this->access_level))
|
103 |
{
|
@@ -154,17 +155,6 @@ class bcn_network_admin extends mtekk_adminKit
|
|
154 |
{
|
155 |
return delete_site_option($option);
|
156 |
}
|
157 |
-
/**
|
158 |
-
* Makes sure the current user can manage options to proceed
|
159 |
-
*/
|
160 |
-
function security()
|
161 |
-
{
|
162 |
-
//If the user can not manage options we will die on them
|
163 |
-
if(!current_user_can($this->access_level))
|
164 |
-
{
|
165 |
-
wp_die(__('Insufficient privileges to proceed.', 'breadcrumb-navxt'));
|
166 |
-
}
|
167 |
-
}
|
168 |
/**
|
169 |
* Upgrades input options array, sets to $this->opt
|
170 |
*
|
@@ -271,6 +261,34 @@ class bcn_network_admin extends mtekk_adminKit
|
|
271 |
}
|
272 |
}
|
273 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
//Set the max title length to 20 if we are not limiting the title and the length was 0
|
275 |
if(!$opts['blimit_title'] && $opts['amax_title_length'] == 0)
|
276 |
{
|
@@ -307,12 +325,12 @@ class bcn_network_admin extends mtekk_adminKit
|
|
307 |
{
|
308 |
$general_tab = '<p>' . __('Tips for the settings are located below select options.', 'breadcrumb-navxt') .
|
309 |
'</p><h5>' . __('Resources', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
310 |
-
sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.", 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT tag archive.', 'breadcrumb-navxt') . '" href="
|
311 |
-
sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', 'breadcrumb-navxt'), '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb-navxt') . '" href="
|
312 |
-
sprintf(__('%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb-navxt') . '" href="
|
313 |
'<h5>' . __('Giving Back', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
314 |
sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', 'breadcrumb-navxt'),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb-navxt') . '" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">', '</a>') . '</li><li>' .
|
315 |
-
sprintf(__('%sTranslate%s: Is your language not available?
|
316 |
|
317 |
$screen->add_help_tab(
|
318 |
array(
|
@@ -321,13 +339,13 @@ class bcn_network_admin extends mtekk_adminKit
|
|
321 |
'content' => $general_tab
|
322 |
));
|
323 |
$quickstart_tab = '<p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb-navxt') .
|
324 |
-
'</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb-navxt') . '</h5><pre><code><div class="breadcrumbs">' . "
|
325 |
<?php if(function_exists('bcn_display'))
|
326 |
{
|
327 |
bcn_display();
|
328 |
}?>
|
329 |
</div></code></pre>" .
|
330 |
-
'<h5>' . __('Breadcrumb trail in list form', 'breadcrumb-navxt').'</h5><pre><code><ol class="breadcrumbs">'."
|
331 |
<?php if(function_exists('bcn_display_list'))
|
332 |
{
|
333 |
bcn_display_list();
|
@@ -415,7 +433,7 @@ class bcn_network_admin extends mtekk_adminKit
|
|
415 |
else
|
416 |
{
|
417 |
$this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL.', 'breadcrumb-navxt');
|
418 |
-
$this->message['updated fade'][] = __('Warning:
|
419 |
}
|
420 |
}
|
421 |
}
|
@@ -441,10 +459,11 @@ class bcn_network_admin extends mtekk_adminKit
|
|
441 |
$this->deprecated_settings_warn();
|
442 |
//Do a check for multisite settings mode
|
443 |
$this->multisite_settings_warn();
|
|
|
444 |
//Display our messages
|
445 |
$this->messages();
|
446 |
?>
|
447 |
-
<div class="wrap"><h2><?php
|
448 |
<?php
|
449 |
//We exit after the version check if there is an action the user needs to take before saving settings
|
450 |
if(!$this->version_check(get_site_option($this->unique_prefix . '_version')))
|
@@ -468,8 +487,8 @@ class bcn_network_admin extends mtekk_adminKit
|
|
468 |
<table class="form-table">
|
469 |
<?php
|
470 |
$this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
|
471 |
-
$this->input_check(
|
472 |
-
$this->input_text(
|
473 |
do_action($this->unique_prefix . '_network_settings_current_item', $this->opt);
|
474 |
?>
|
475 |
</table>
|
@@ -721,7 +740,7 @@ class bcn_network_admin extends mtekk_adminKit
|
|
721 |
<input type="number" name="bcn_options[amax_title_length]" id="amax_title_length" min="1" step="1" value="<?php echo esc_html($this->opt['amax_title_length'], ENT_COMPAT, 'UTF-8'); ?>" class="small-text" />
|
722 |
</label>
|
723 |
</li>
|
724 |
-
</ul>
|
725 |
</td>
|
726 |
</tr>
|
727 |
</table>
|
1 |
<?php
|
2 |
+
/* Copyright 2007-2016 John Havlik (email : john.havlik@mtekk.us)
|
3 |
|
4 |
This program is free software; you can redistribute it and/or modify
|
5 |
it under the terms of the GNU General Public License as published by
|
42 |
*/
|
43 |
class bcn_network_admin extends mtekk_adminKit
|
44 |
{
|
45 |
+
const version = '5.4.0';
|
46 |
protected $full_name = 'Breadcrumb NavXT Network Settings';
|
47 |
protected $short_name = 'Breadcrumb NavXT';
|
48 |
protected $access_level = 'manage_network_options';
|
60 |
{
|
61 |
$this->breadcrumb_trail = $breadcrumb_trail;
|
62 |
$this->plugin_basename = $basename;
|
63 |
+
$this->full_name = __('Breadcrumb NavXT Network Settings', 'breadcrumb-navxt');
|
64 |
//Grab defaults from the breadcrumb_trail object
|
65 |
$this->opt = $this->breadcrumb_trail->opt;
|
66 |
add_action('network_admin_menu', array($this, 'add_page'));
|
70 |
/**
|
71 |
* admin initialization callback function
|
72 |
*
|
73 |
+
* is bound to wordpress action 'admin_init' on instantiation
|
74 |
*
|
75 |
* @since 3.2.0
|
76 |
* @return void
|
98 |
function add_page()
|
99 |
{
|
100 |
//Add the submenu page to "settings" menu
|
101 |
+
$hookname = add_submenu_page('settings.php', $this->full_name, $this->short_name, $this->access_level, $this->identifier, array($this, 'net_admin_page'));
|
102 |
// check capability of user to manage options (access control)
|
103 |
if(current_user_can($this->access_level))
|
104 |
{
|
155 |
{
|
156 |
return delete_site_option($option);
|
157 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
/**
|
159 |
* Upgrades input options array, sets to $this->opt
|
160 |
*
|
261 |
}
|
262 |
}
|
263 |
}
|
264 |
+
//Upgrading to 5.4.0
|
265 |
+
if(version_compare($version, '5.4.0', '<'))
|
266 |
+
{
|
267 |
+
//Migrate users to schema.org breadcrumbs for author and search if still on the defaults for posts
|
268 |
+
if($opts['Hpost_post_template'] === bcn_breadcrumb::get_default_template() && $opts['Hpost_post_template_no_anchor'] === bcn_breadcrumb::default_template_no_anchor)
|
269 |
+
{
|
270 |
+
if($opts['Hpaged_template'] === 'Page %htitle%')
|
271 |
+
{
|
272 |
+
$opts['Hpaged_template'] = $this->opt['Hpaged_template'];
|
273 |
+
}
|
274 |
+
if($opts['Hsearch_template'] === 'Search results for '<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>'' || $opts['Hsearch_template'] === 'Search results for '<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>'')
|
275 |
+
{
|
276 |
+
$opts['Hsearch_template'] = $this->opt['Hsearch_template'];
|
277 |
+
}
|
278 |
+
if($opts['Hsearch_template_no_anchor'] === 'Search results for '%htitle%'' || $opts['Hsearch_template_no_anchor'] === 'Search results for '%htitle%'')
|
279 |
+
{
|
280 |
+
$opts['Hsearch_template_no_anchor'] = $this->opt['Hsearch_template_no_anchor'];
|
281 |
+
}
|
282 |
+
if($opts['Hauthor_template'] === 'Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>')
|
283 |
+
{
|
284 |
+
$opts['Hauthor_template'] = $this->opt['Hauthor_template'];
|
285 |
+
}
|
286 |
+
if($opts['Hauthor_template_no_anchor'] === 'Articles by: %htitle%')
|
287 |
+
{
|
288 |
+
$opts['Hauthor_template_no_anchor'] = $this->opt['Hauthor_template_no_anchor'];
|
289 |
+
}
|
290 |
+
}
|
291 |
+
}
|
292 |
//Set the max title length to 20 if we are not limiting the title and the length was 0
|
293 |
if(!$opts['blimit_title'] && $opts['amax_title_length'] == 0)
|
294 |
{
|
325 |
{
|
326 |
$general_tab = '<p>' . __('Tips for the settings are located below select options.', 'breadcrumb-navxt') .
|
327 |
'</p><h5>' . __('Resources', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
328 |
+
sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.", 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT tag archive.', 'breadcrumb-navxt') . '" href="https://mtekk.us/archives/tag/breadcrumb-navxt">', '</a>') . '</li><li>' .
|
329 |
+
sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', 'breadcrumb-navxt'), '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb-navxt') . '" href="https://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . '</li><li>' .
|
330 |
+
sprintf(__('%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb-navxt') . '" href="https://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this::version . '/#respond">', '</a>') . '</li></ul>' .
|
331 |
'<h5>' . __('Giving Back', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
332 |
sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', 'breadcrumb-navxt'),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb-navxt') . '" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">', '</a>') . '</li><li>' .
|
333 |
+
sprintf(__('%sTranslate%s: Is your language not available? Visit the Breadcrumb NavXT translation project on WordPress.org to start translating.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT translation project.', 'breadcrumb-navxt') . '" href="https://translate.wordpress.org/projects/wp-plugins/breadcrumb-navxt">', '</a>') . '</li></ul>';
|
334 |
|
335 |
$screen->add_help_tab(
|
336 |
array(
|
339 |
'content' => $general_tab
|
340 |
));
|
341 |
$quickstart_tab = '<p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb-navxt') .
|
342 |
+
'</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb-navxt') . '</h5><pre><code><div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">' . "
|
343 |
<?php if(function_exists('bcn_display'))
|
344 |
{
|
345 |
bcn_display();
|
346 |
}?>
|
347 |
</div></code></pre>" .
|
348 |
+
'<h5>' . __('Breadcrumb trail in list form', 'breadcrumb-navxt').'</h5><pre><code><ol class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">'."
|
349 |
<?php if(function_exists('bcn_display_list'))
|
350 |
{
|
351 |
bcn_display_list();
|
433 |
else
|
434 |
{
|
435 |
$this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL.', 'breadcrumb-navxt');
|
436 |
+
$this->message['updated fade'][] = __('Warning: Individual site settings will override any settings set in this page.', 'breadcrumb-navxt');
|
437 |
}
|
438 |
}
|
439 |
}
|
459 |
$this->deprecated_settings_warn();
|
460 |
//Do a check for multisite settings mode
|
461 |
$this->multisite_settings_warn();
|
462 |
+
do_action($this->unique_prefix . '_network_settings_pre_messages', $this->opt);
|
463 |
//Display our messages
|
464 |
$this->messages();
|
465 |
?>
|
466 |
+
<div class="wrap"><h2><?php echo $this->full_name; ?></h2>
|
467 |
<?php
|
468 |
//We exit after the version check if there is an action the user needs to take before saving settings
|
469 |
if(!$this->version_check(get_site_option($this->unique_prefix . '_version')))
|
487 |
<table class="form-table">
|
488 |
<?php
|
489 |
$this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
|
490 |
+
$this->input_check(_x('Paged Breadcrumb', 'Paged as in when on an archive or post that is split into multiple pages', 'breadcrumb-navxt'), 'bpaged_display', __('Place the page number breadcrumb in the trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first of a paginated archive or post.', 'breadcrumb-navxt'));
|
491 |
+
$this->input_text(_x('Paged Template', 'Paged as in when on an archive or post that is split into multiple pages', 'breadcrumb-navxt'), 'Hpaged_template', 'large-text', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
|
492 |
do_action($this->unique_prefix . '_network_settings_current_item', $this->opt);
|
493 |
?>
|
494 |
</table>
|
740 |
<input type="number" name="bcn_options[amax_title_length]" id="amax_title_length" min="1" step="1" value="<?php echo esc_html($this->opt['amax_title_length'], ENT_COMPAT, 'UTF-8'); ?>" class="small-text" />
|
741 |
</label>
|
742 |
</li>
|
743 |
+
</ul>
|
744 |
</td>
|
745 |
</tr>
|
746 |
</table>
|
class.bcn_widget.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2009-
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
@@ -19,7 +19,7 @@
|
|
19 |
require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
|
20 |
class bcn_widget extends WP_Widget
|
21 |
{
|
22 |
-
const version = '5.
|
23 |
protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false);
|
24 |
//Default constructor
|
25 |
function __construct()
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2009-2016 John Havlik (email : john.havlik@mtekk.us)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
19 |
require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
|
20 |
class bcn_widget extends WP_Widget
|
21 |
{
|
22 |
+
const version = '5.4.0';
|
23 |
protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false);
|
24 |
//Default constructor
|
25 |
function __construct()
|
includes/block_direct_access.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
/* Copyright 2012-
|
3 |
|
4 |
This program is free software; you can redistribute it and/or modify
|
5 |
it under the terms of the GNU General Public License as published by
|
1 |
<?php
|
2 |
+
/* Copyright 2012-2016 John Havlik (email : john.havlik@mtekk.us)
|
3 |
|
4 |
This program is free software; you can redistribute it and/or modify
|
5 |
it under the terms of the GNU General Public License as published by
|
includes/class.mtekk_adminkit.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2009-
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
@@ -19,7 +19,7 @@
|
|
19 |
require_once(dirname(__FILE__) . '/block_direct_access.php');
|
20 |
abstract class mtekk_adminKit
|
21 |
{
|
22 |
-
const version = '1.
|
23 |
protected $full_name;
|
24 |
protected $short_name;
|
25 |
protected $plugin_basename;
|
@@ -102,6 +102,17 @@ abstract class mtekk_adminKit
|
|
102 |
{
|
103 |
check_admin_referer($this->unique_prefix . '_' . $mode);
|
104 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
function init()
|
106 |
{
|
107 |
//Admin Options reset hook
|
@@ -176,7 +187,7 @@ abstract class mtekk_adminKit
|
|
176 |
function add_page()
|
177 |
{
|
178 |
//Add the submenu page to "settings" menu
|
179 |
-
$hookname = add_submenu_page('options-general.php',
|
180 |
// check capability of user to manage options (access control)
|
181 |
if(current_user_can($this->access_level))
|
182 |
{
|
@@ -288,20 +299,26 @@ abstract class mtekk_adminKit
|
|
288 |
*/
|
289 |
function version_check($version)
|
290 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
291 |
//Do a quick version check
|
292 |
-
if(version_compare($version, $this::version, '<') && is_array($this->opt))
|
293 |
{
|
294 |
//Throw an error since the DB version is out of date
|
295 |
-
$this->message['error'][] = __('Your settings are
|
296 |
//Output any messages that there may be
|
297 |
$this->messages();
|
298 |
return false;
|
299 |
}
|
300 |
//Do a quick version check
|
301 |
-
else if(version_compare($version, $this::version, '>') && is_array($this->opt))
|
302 |
{
|
303 |
-
//
|
304 |
-
$this->message['error'][] = __('Your settings are for a newer version.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('
|
305 |
//Output any messages that there may be
|
306 |
$this->messages();
|
307 |
return true;
|
@@ -317,7 +334,7 @@ abstract class mtekk_adminKit
|
|
317 |
else if(!$this->opts_validate($this->opt))
|
318 |
{
|
319 |
//Throw an error since it appears the options contain invalid data
|
320 |
-
$this->message['error'][] = __('
|
321 |
//Output any messages that there may be
|
322 |
$this->messages();
|
323 |
return false;
|
@@ -408,6 +425,10 @@ abstract class mtekk_adminKit
|
|
408 |
case 's':
|
409 |
$opts[$option] = esc_html($input[$option]);
|
410 |
break;
|
|
|
|
|
|
|
|
|
411 |
//By default we have nothing to do, allows for internal settings
|
412 |
default:
|
413 |
break;
|
@@ -415,6 +436,18 @@ abstract class mtekk_adminKit
|
|
415 |
}
|
416 |
}
|
417 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
/**
|
419 |
* A better version of parse_args, will recrusivly follow arrays
|
420 |
*
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2009-2016 John Havlik (email : john.havlik@mtekk.us)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
19 |
require_once(dirname(__FILE__) . '/block_direct_access.php');
|
20 |
abstract class mtekk_adminKit
|
21 |
{
|
22 |
+
const version = '1.5.60';
|
23 |
protected $full_name;
|
24 |
protected $short_name;
|
25 |
protected $plugin_basename;
|
102 |
{
|
103 |
check_admin_referer($this->unique_prefix . '_' . $mode);
|
104 |
}
|
105 |
+
/**
|
106 |
+
* Makes sure the current user can manage options to proceed
|
107 |
+
*/
|
108 |
+
function security()
|
109 |
+
{
|
110 |
+
//If the user can not manage options we will die on them
|
111 |
+
if(!current_user_can($this->access_level))
|
112 |
+
{
|
113 |
+
wp_die(__('Insufficient privileges to proceed.', $this->identifier));
|
114 |
+
}
|
115 |
+
}
|
116 |
function init()
|
117 |
{
|
118 |
//Admin Options reset hook
|
187 |
function add_page()
|
188 |
{
|
189 |
//Add the submenu page to "settings" menu
|
190 |
+
$hookname = add_submenu_page('options-general.php', $this->full_name, $this->short_name, $this->access_level, $this->identifier, array($this, 'admin_page'));
|
191 |
// check capability of user to manage options (access control)
|
192 |
if(current_user_can($this->access_level))
|
193 |
{
|
299 |
*/
|
300 |
function version_check($version)
|
301 |
{
|
302 |
+
//If we didn't get a version, setup
|
303 |
+
if($version === false)
|
304 |
+
{
|
305 |
+
//Add the version, no need to autoload the db version
|
306 |
+
$this->add_option($this->unique_prefix . '_version', $this::version, '', 'no');
|
307 |
+
}
|
308 |
//Do a quick version check
|
309 |
+
if($version && version_compare($version, $this::version, '<') && is_array($this->opt))
|
310 |
{
|
311 |
//Throw an error since the DB version is out of date
|
312 |
+
$this->message['error'][] = __('Your settings are for an older version of this plugin and need to be migrated.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
|
313 |
//Output any messages that there may be
|
314 |
$this->messages();
|
315 |
return false;
|
316 |
}
|
317 |
//Do a quick version check
|
318 |
+
else if($version && version_compare($version, $this::version, '>') && is_array($this->opt))
|
319 |
{
|
320 |
+
//Let the user know that their settings are for a newer version
|
321 |
+
$this->message['error'][] = __('Your settings are for a newer version of this plugin.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Attempt back migration now.', $this->identifier));
|
322 |
//Output any messages that there may be
|
323 |
$this->messages();
|
324 |
return true;
|
334 |
else if(!$this->opts_validate($this->opt))
|
335 |
{
|
336 |
//Throw an error since it appears the options contain invalid data
|
337 |
+
$this->message['error'][] = __('One or more of your plugin settings are invalid.', $this->identifier) . $this->admin_anchor('fix', __('Attempt to fix settings now.', $this->identifier), __('Fix now.', $this->identifier));
|
338 |
//Output any messages that there may be
|
339 |
$this->messages();
|
340 |
return false;
|
425 |
case 's':
|
426 |
$opts[$option] = esc_html($input[$option]);
|
427 |
break;
|
428 |
+
//Deal with enumerated types
|
429 |
+
case 'E':
|
430 |
+
$opts[$option] = $this->opts_sanitize_enum($input[$option], $option);
|
431 |
+
break;
|
432 |
//By default we have nothing to do, allows for internal settings
|
433 |
default:
|
434 |
break;
|
436 |
}
|
437 |
}
|
438 |
}
|
439 |
+
/**
|
440 |
+
* Simple sanitization function for enumerated types, end users should overload this
|
441 |
+
* with something more usefull
|
442 |
+
*
|
443 |
+
* @param string $value The input value from the form
|
444 |
+
* @param string $option The option name
|
445 |
+
* @return string The sanitized enumerated string
|
446 |
+
*/
|
447 |
+
private function opts_sanitize_enum($value, $option)
|
448 |
+
{
|
449 |
+
return esc_html($value);
|
450 |
+
}
|
451 |
/**
|
452 |
* A better version of parse_args, will recrusivly follow arrays
|
453 |
*
|
includes/class.mtekk_adminkit_uninstaller.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2015 John Havlik (email : john.havlik@mtekk.us)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2015-2016 John Havlik (email : john.havlik@mtekk.us)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
includes/multibyte_supplicant.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
A small library that adds in fallbacks for some of the PHP multibyte string
|
4 |
functions. Mainly inteneded to be used with Breadcrumb NavXT
|
5 |
|
6 |
-
Copyright 2009-
|
7 |
|
8 |
This program is free software; you can redistribute it and/or modify
|
9 |
it under the terms of the GNU General Public License as published by
|
3 |
A small library that adds in fallbacks for some of the PHP multibyte string
|
4 |
functions. Mainly inteneded to be used with Breadcrumb NavXT
|
5 |
|
6 |
+
Copyright 2009-2016 John Havlik (email : john.havlik@mtekk.us)
|
7 |
|
8 |
This program is free software; you can redistribute it and/or modify
|
9 |
it under the terms of the GNU General Public License as published by
|
languages/breadcrumb-navxt-es_ES.mo
DELETED
Binary file
|
languages/breadcrumb-navxt-es_ES.po
DELETED
@@ -1,836 +0,0 @@
|
|
1 |
-
# Translation of Development (trunk) in Spanish (Spain)
|
2 |
-
# This file is distributed under the same license as the Development (trunk) package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-09-15 20:24:44+0000\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
-
"Project-Id-Version: Development (trunk)\n"
|
12 |
-
|
13 |
-
#: class.bcn_breadcrumb.php:91
|
14 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
15 |
-
msgstr ""
|
16 |
-
|
17 |
-
#: class.bcn_breadcrumb_trail.php:110
|
18 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
|
22 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: class.bcn_breadcrumb_trail.php:127
|
26 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: class.bcn_admin.php:246 class.bcn_network_admin.php:317
|
30 |
-
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
31 |
-
msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
|
32 |
-
|
33 |
-
#: class.bcn_admin.php:247 class.bcn_network_admin.php:318
|
34 |
-
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
35 |
-
msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
|
36 |
-
|
37 |
-
#: class.bcn_admin.php:247 class.bcn_network_admin.php:318
|
38 |
-
msgid "Go to the Breadcrumb NavXT translation project."
|
39 |
-
msgstr "Ir al proyecto de traducción de Breadcrumb NavXT"
|
40 |
-
|
41 |
-
#: class.bcn_admin.php:252 class.bcn_admin.php:390 class.bcn_admin.php:391
|
42 |
-
#: class.bcn_network_admin.php:323 class.bcn_network_admin.php:462
|
43 |
-
#: class.bcn_network_admin.php:463
|
44 |
-
msgid "General"
|
45 |
-
msgstr "General"
|
46 |
-
|
47 |
-
#: class.bcn_admin.php:255 class.bcn_network_admin.php:326
|
48 |
-
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
49 |
-
msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
|
50 |
-
|
51 |
-
#: class.bcn_admin.php:256 class.bcn_network_admin.php:327
|
52 |
-
msgid "Breadcrumb trail with separators"
|
53 |
-
msgstr "Ruta de Navegación con Separadores"
|
54 |
-
|
55 |
-
#: class.bcn_admin.php:262 class.bcn_network_admin.php:333
|
56 |
-
msgid "Breadcrumb trail in list form"
|
57 |
-
msgstr "Ruta de Navegación como Listado"
|
58 |
-
|
59 |
-
#: class.bcn_admin.php:271 class.bcn_network_admin.php:342
|
60 |
-
msgid "Quick Start"
|
61 |
-
msgstr "Inicio Rápido"
|
62 |
-
|
63 |
-
#: class.bcn_admin.php:274 class.bcn_network_admin.php:345
|
64 |
-
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
65 |
-
msgstr "Usando el código de Inicio Rápido de la sección anterior, el siguiente CSS puede utilizarse como base para darle estilo a su ruta de navegación."
|
66 |
-
|
67 |
-
#: class.bcn_admin.php:286 class.bcn_network_admin.php:357
|
68 |
-
msgid "Styling"
|
69 |
-
msgstr "Estilo"
|
70 |
-
|
71 |
-
#: class.bcn_admin.php:292 class.bcn_network_admin.php:363
|
72 |
-
msgid "Import/Export/Reset"
|
73 |
-
msgstr "Importar/Exportar/Reiniciar"
|
74 |
-
|
75 |
-
#: class.bcn_admin.php:316 class.bcn_network_admin.php:387
|
76 |
-
#: includes/class.mtekk_adminkit.php:808
|
77 |
-
msgid "Import"
|
78 |
-
msgstr "Importar"
|
79 |
-
|
80 |
-
#: class.bcn_admin.php:317 class.bcn_network_admin.php:388
|
81 |
-
#: includes/class.mtekk_adminkit.php:809
|
82 |
-
msgid "Export"
|
83 |
-
msgstr "Exportar"
|
84 |
-
|
85 |
-
#: class.bcn_admin.php:318 class.bcn_network_admin.php:389
|
86 |
-
#: includes/class.mtekk_adminkit.php:810
|
87 |
-
msgid "Reset"
|
88 |
-
msgstr "Reiniciar"
|
89 |
-
|
90 |
-
#: class.bcn_admin.php:336 class.bcn_network_admin.php:421
|
91 |
-
msgid "Warning: Your network settings will override any settings set in this page."
|
92 |
-
msgstr "Advertencia: los ajustes de red modificarán cualquier ajuste en esta página."
|
93 |
-
|
94 |
-
#: class.bcn_admin.php:340 class.bcn_admin.php:344
|
95 |
-
msgid "Warning: Your network settings may override any settings set in this page."
|
96 |
-
msgstr "Advertencia: los ajustes de red pueden modificar los ajustes de esta página."
|
97 |
-
|
98 |
-
#: class.bcn_admin.php:349 class.bcn_network_admin.php:420
|
99 |
-
msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL."
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: class.bcn_admin.php:361 class.bcn_network_admin.php:433
|
103 |
-
msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous > Deprecated), please %1$suse CSS instead%2$s."
|
104 |
-
msgstr "Advertencia: Estás usando un ajuste descontinuado de \"Longitud de Títulos\" (ver Misceláneos > Descontinuados), por favor %1$suse CSS en su lugar%2$s."
|
105 |
-
|
106 |
-
#: class.bcn_admin.php:361 class.bcn_admin.php:646
|
107 |
-
#: class.bcn_network_admin.php:433 class.bcn_network_admin.php:718
|
108 |
-
msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
|
109 |
-
msgstr "Ir a la guía sobre cómo recortar la longitud de los títulos con CSS"
|
110 |
-
|
111 |
-
#: class.bcn_admin.php:378
|
112 |
-
msgid "Breadcrumb NavXT Settings"
|
113 |
-
msgstr "Opciones de Configuración de Breadcrumb NavXT"
|
114 |
-
|
115 |
-
#: class.bcn_admin.php:390 class.bcn_network_admin.php:462
|
116 |
-
msgid "A collection of settings most likely to be modified are located under this tab."
|
117 |
-
msgstr "Un conjunto de ajustes que probablemente serán modificados se encuentra en esta pestaña."
|
118 |
-
|
119 |
-
#: class.bcn_admin.php:394 class.bcn_network_admin.php:466
|
120 |
-
msgid "Breadcrumb Separator"
|
121 |
-
msgstr "Separador de Navegación"
|
122 |
-
|
123 |
-
#: class.bcn_admin.php:394 class.bcn_network_admin.php:466
|
124 |
-
msgid "Placed in between each breadcrumb."
|
125 |
-
msgstr "Colocado en medio de cada opción de navegación."
|
126 |
-
|
127 |
-
#: class.bcn_admin.php:398 class.bcn_network_admin.php:470
|
128 |
-
msgid "Current Item"
|
129 |
-
msgstr "Item Actual"
|
130 |
-
|
131 |
-
#: class.bcn_admin.php:401 class.bcn_network_admin.php:473
|
132 |
-
msgid "Link Current Item"
|
133 |
-
msgstr "Incluir Vínculo a Item Actual"
|
134 |
-
|
135 |
-
#: class.bcn_admin.php:401 class.bcn_network_admin.php:473
|
136 |
-
msgid "Yes"
|
137 |
-
msgstr "Sí"
|
138 |
-
|
139 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
140 |
-
msgid "Paged Breadcrumb"
|
141 |
-
msgstr "Ruta de Navegación Paginada"
|
142 |
-
|
143 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
144 |
-
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
145 |
-
msgstr "Incluir la navegación paginada en la ruta de navegación"
|
146 |
-
|
147 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
148 |
-
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
149 |
-
msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
|
150 |
-
|
151 |
-
#: class.bcn_admin.php:403 class.bcn_network_admin.php:475
|
152 |
-
msgid "Paged Template"
|
153 |
-
msgstr "Plantilla de Entrada Paginada"
|
154 |
-
|
155 |
-
#: class.bcn_admin.php:403 class.bcn_network_admin.php:475
|
156 |
-
msgid "The template for paged breadcrumbs."
|
157 |
-
msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
|
158 |
-
|
159 |
-
#: class.bcn_admin.php:407 class.bcn_admin.php:410
|
160 |
-
#: class.bcn_network_admin.php:479 class.bcn_network_admin.php:482
|
161 |
-
msgid "Home Breadcrumb"
|
162 |
-
msgstr "Incluir Inicio"
|
163 |
-
|
164 |
-
#: class.bcn_admin.php:410 class.bcn_network_admin.php:482
|
165 |
-
msgid "Place the home breadcrumb in the trail."
|
166 |
-
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
167 |
-
|
168 |
-
#: class.bcn_admin.php:411 class.bcn_network_admin.php:483
|
169 |
-
msgid "Home Template"
|
170 |
-
msgstr "Plantilla de la Página de Inicio"
|
171 |
-
|
172 |
-
#: class.bcn_admin.php:411 class.bcn_network_admin.php:483
|
173 |
-
msgid "The template for the home breadcrumb."
|
174 |
-
msgstr "La plantilla de la ruta de navegación para la página de inicio."
|
175 |
-
|
176 |
-
#: class.bcn_admin.php:412 class.bcn_network_admin.php:484
|
177 |
-
msgid "Home Template (Unlinked)"
|
178 |
-
msgstr "Plantilla de la Página de Inicio (sin vínculo)"
|
179 |
-
|
180 |
-
#: class.bcn_admin.php:412 class.bcn_network_admin.php:484
|
181 |
-
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
182 |
-
msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
|
183 |
-
|
184 |
-
#: class.bcn_admin.php:416
|
185 |
-
msgid "Blog Breadcrumb "
|
186 |
-
msgstr "Migaja del Blog"
|
187 |
-
|
188 |
-
#: class.bcn_admin.php:419 class.bcn_network_admin.php:488
|
189 |
-
#: class.bcn_network_admin.php:491
|
190 |
-
msgid "Blog Breadcrumb"
|
191 |
-
msgstr "Incluir Inicio (del Blog)"
|
192 |
-
|
193 |
-
#: class.bcn_admin.php:419 class.bcn_network_admin.php:491
|
194 |
-
msgid "Place the blog breadcrumb in the trail."
|
195 |
-
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
196 |
-
|
197 |
-
#: class.bcn_admin.php:420 class.bcn_network_admin.php:492
|
198 |
-
msgid "Blog Template"
|
199 |
-
msgstr "Plantilla del Blog"
|
200 |
-
|
201 |
-
#: class.bcn_admin.php:420 class.bcn_network_admin.php:492
|
202 |
-
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
-
msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática."
|
204 |
-
|
205 |
-
#: class.bcn_admin.php:421 class.bcn_network_admin.php:493
|
206 |
-
msgid "Blog Template (Unlinked)"
|
207 |
-
msgstr "Plantilla del Blog (sin vínculo)"
|
208 |
-
|
209 |
-
#: class.bcn_admin.php:421 class.bcn_network_admin.php:493
|
210 |
-
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
-
msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática y el elemento de inicio no está enlazado."
|
212 |
-
|
213 |
-
#: class.bcn_admin.php:425 class.bcn_network_admin.php:497
|
214 |
-
msgid "Mainsite Breadcrumb"
|
215 |
-
msgstr "Migas (Breadcrumbs) del Sitio Principal"
|
216 |
-
|
217 |
-
#: class.bcn_admin.php:428 class.bcn_network_admin.php:500
|
218 |
-
msgid "Main Site Breadcrumb"
|
219 |
-
msgstr "Ruta del Sitio Principal"
|
220 |
-
|
221 |
-
#: class.bcn_admin.php:428 class.bcn_network_admin.php:500
|
222 |
-
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
223 |
-
msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
|
224 |
-
|
225 |
-
#: class.bcn_admin.php:429 class.bcn_network_admin.php:501
|
226 |
-
msgid "Main Site Home Template"
|
227 |
-
msgstr "Plantilla de Inicio del Sitio Principal"
|
228 |
-
|
229 |
-
#: class.bcn_admin.php:429 class.bcn_network_admin.php:501
|
230 |
-
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
-
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
|
232 |
-
|
233 |
-
#: class.bcn_admin.php:430 class.bcn_network_admin.php:502
|
234 |
-
msgid "Main Site Home Template (Unlinked)"
|
235 |
-
msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
|
236 |
-
|
237 |
-
#: class.bcn_admin.php:430 class.bcn_network_admin.php:502
|
238 |
-
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
-
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs y el elemento de navegación no está enlazado."
|
240 |
-
|
241 |
-
#: class.bcn_admin.php:437 class.bcn_network_admin.php:509
|
242 |
-
msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
|
243 |
-
msgstr "Los ajustes para todos los tipos de entradas (Entradas, Páginas, Personalizadas) se encuentran en esta pestaña."
|
244 |
-
|
245 |
-
#: class.bcn_admin.php:437 class.bcn_network_admin.php:509
|
246 |
-
msgid "Post Types"
|
247 |
-
msgstr "Tipos de Entradas"
|
248 |
-
|
249 |
-
#: class.bcn_admin.php:438 class.bcn_network_admin.php:510
|
250 |
-
msgid "Posts"
|
251 |
-
msgstr "Entradas"
|
252 |
-
|
253 |
-
#: class.bcn_admin.php:441 class.bcn_network_admin.php:513
|
254 |
-
msgid "Post Template"
|
255 |
-
msgstr "Plantilla de Entradas"
|
256 |
-
|
257 |
-
#: class.bcn_admin.php:441 class.bcn_network_admin.php:513
|
258 |
-
msgid "The template for post breadcrumbs."
|
259 |
-
msgstr "La plantilla de la ruta de navegación para entradas."
|
260 |
-
|
261 |
-
#: class.bcn_admin.php:442 class.bcn_network_admin.php:514
|
262 |
-
msgid "Post Template (Unlinked)"
|
263 |
-
msgstr "Plantilla de la Entrada (sin vínculo)"
|
264 |
-
|
265 |
-
#: class.bcn_admin.php:442 class.bcn_network_admin.php:514
|
266 |
-
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
267 |
-
msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
|
268 |
-
|
269 |
-
#: class.bcn_admin.php:443 class.bcn_network_admin.php:515
|
270 |
-
msgid "Post Hierarchy Display"
|
271 |
-
msgstr "Jerarquía para desplegar entradas"
|
272 |
-
|
273 |
-
#: class.bcn_admin.php:443 class.bcn_network_admin.php:515
|
274 |
-
msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
|
275 |
-
msgstr "Mostrar la jerarquía (especificada abajo) que lleva a la entrada en la ruta de navegación."
|
276 |
-
|
277 |
-
#: class.bcn_admin.php:447 class.bcn_network_admin.php:519
|
278 |
-
msgid "Post Hierarchy"
|
279 |
-
msgstr "Jerarquía de entradas"
|
280 |
-
|
281 |
-
#: class.bcn_admin.php:451 class.bcn_admin.php:569
|
282 |
-
#: class.bcn_network_admin.php:523 class.bcn_network_admin.php:641
|
283 |
-
msgid "Categories"
|
284 |
-
msgstr "Categorías"
|
285 |
-
|
286 |
-
#: class.bcn_admin.php:452 class.bcn_admin.php:530
|
287 |
-
#: class.bcn_network_admin.php:524 class.bcn_network_admin.php:602
|
288 |
-
msgid "Dates"
|
289 |
-
msgstr "Fechas"
|
290 |
-
|
291 |
-
#: class.bcn_admin.php:453 class.bcn_admin.php:576
|
292 |
-
#: class.bcn_network_admin.php:525 class.bcn_network_admin.php:648
|
293 |
-
msgid "Tags"
|
294 |
-
msgstr "Etiquetas"
|
295 |
-
|
296 |
-
#: class.bcn_admin.php:455 class.bcn_admin.php:529
|
297 |
-
#: class.bcn_network_admin.php:527 class.bcn_network_admin.php:601
|
298 |
-
msgid "Post Parent"
|
299 |
-
msgstr "Entrada o Página superior"
|
300 |
-
|
301 |
-
#: class.bcn_admin.php:471 class.bcn_admin.php:554
|
302 |
-
#: class.bcn_network_admin.php:543 class.bcn_network_admin.php:626
|
303 |
-
msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
|
304 |
-
msgstr "La jerarquia en la que se muestra la ruta de migas. Tome nota de que la opción de \"Entrada/Página Superior\" puede requerir un plugin adicional para comportarse como se espera, ya que este es un tipo de publicación sin jerarquía."
|
305 |
-
|
306 |
-
#: class.bcn_admin.php:475 class.bcn_network_admin.php:547
|
307 |
-
msgid "Pages"
|
308 |
-
msgstr "Páginas"
|
309 |
-
|
310 |
-
#: class.bcn_admin.php:478 class.bcn_network_admin.php:550
|
311 |
-
msgid "Page Template"
|
312 |
-
msgstr "Plantilla de la Página"
|
313 |
-
|
314 |
-
#: class.bcn_admin.php:478 class.bcn_network_admin.php:550
|
315 |
-
msgid "The template for page breadcrumbs."
|
316 |
-
msgstr "La plantilla de la ruta de navegación para páginas."
|
317 |
-
|
318 |
-
#: class.bcn_admin.php:479 class.bcn_network_admin.php:551
|
319 |
-
msgid "Page Template (Unlinked)"
|
320 |
-
msgstr "Plantilla de la Página (sin vínculo)"
|
321 |
-
|
322 |
-
#: class.bcn_admin.php:479 class.bcn_network_admin.php:551
|
323 |
-
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
324 |
-
msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
|
325 |
-
|
326 |
-
#: class.bcn_admin.php:482 class.bcn_network_admin.php:554
|
327 |
-
msgid "Attachments"
|
328 |
-
msgstr "Adjuntos"
|
329 |
-
|
330 |
-
#: class.bcn_admin.php:485 class.bcn_network_admin.php:557
|
331 |
-
msgid "Attachment Template"
|
332 |
-
msgstr "Plantilla de Archivo Adjunto"
|
333 |
-
|
334 |
-
#: class.bcn_admin.php:485 class.bcn_network_admin.php:557
|
335 |
-
msgid "The template for attachment breadcrumbs."
|
336 |
-
msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
|
337 |
-
|
338 |
-
#: class.bcn_admin.php:486 class.bcn_network_admin.php:558
|
339 |
-
msgid "Attachment Template (Unlinked)"
|
340 |
-
msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
|
341 |
-
|
342 |
-
#: class.bcn_admin.php:486 class.bcn_network_admin.php:558
|
343 |
-
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
344 |
-
msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
|
345 |
-
|
346 |
-
#: class.bcn_admin.php:506 class.bcn_admin.php:607
|
347 |
-
#: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
|
348 |
-
msgid "%s Template"
|
349 |
-
msgstr "Plantilla de %s"
|
350 |
-
|
351 |
-
#: class.bcn_admin.php:506 class.bcn_admin.php:607
|
352 |
-
#: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
|
353 |
-
msgid "The template for %s breadcrumbs."
|
354 |
-
msgstr "La plantilla de la ruta de navegación para %s."
|
355 |
-
|
356 |
-
#: class.bcn_admin.php:507 class.bcn_admin.php:608
|
357 |
-
#: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
|
358 |
-
msgid "%s Template (Unlinked)"
|
359 |
-
msgstr "Plantilla de %s (sin vínculo)"
|
360 |
-
|
361 |
-
#: class.bcn_admin.php:507 class.bcn_admin.php:608
|
362 |
-
#: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
|
363 |
-
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
364 |
-
msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
|
365 |
-
|
366 |
-
#: class.bcn_admin.php:512 class.bcn_network_admin.php:584
|
367 |
-
msgid "%s Root Page"
|
368 |
-
msgstr "%s Página Raíz"
|
369 |
-
|
370 |
-
#: class.bcn_admin.php:515 class.bcn_network_admin.php:587
|
371 |
-
msgid "— Select —"
|
372 |
-
msgstr "— Seleccione —"
|
373 |
-
|
374 |
-
#: class.bcn_admin.php:519 class.bcn_network_admin.php:591
|
375 |
-
msgid "%s Archive Display"
|
376 |
-
msgstr "Despliegue de Archivos de %s"
|
377 |
-
|
378 |
-
#: class.bcn_admin.php:519 class.bcn_network_admin.php:591
|
379 |
-
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
380 |
-
msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
|
381 |
-
|
382 |
-
#: class.bcn_admin.php:520 class.bcn_network_admin.php:592
|
383 |
-
msgid "%s Hierarchy Display"
|
384 |
-
msgstr "%s Jerarquía de Despliegue"
|
385 |
-
|
386 |
-
#: class.bcn_admin.php:520 class.bcn_network_admin.php:592
|
387 |
-
msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
|
388 |
-
msgstr "Mostrar la jerarquía (especificada abajo) que lleva a %s en la ruta de navegación."
|
389 |
-
|
390 |
-
#: class.bcn_admin.php:524 class.bcn_network_admin.php:596
|
391 |
-
msgid "%s Hierarchy"
|
392 |
-
msgstr "%s Jerarquía"
|
393 |
-
|
394 |
-
#: class.bcn_admin.php:550 class.bcn_network_admin.php:622
|
395 |
-
msgid "The hierarchy which the breadcrumb trail will show."
|
396 |
-
msgstr "La jerarquía que mostrará la ruta de migas."
|
397 |
-
|
398 |
-
#: class.bcn_admin.php:568 class.bcn_network_admin.php:640
|
399 |
-
msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
|
400 |
-
msgstr "Los ajustes para todas las taxonomías (incluyendo Categorías, Etiquetas y Personalizadas) están en esta pestaña."
|
401 |
-
|
402 |
-
#: class.bcn_admin.php:568 class.bcn_network_admin.php:640
|
403 |
-
msgid "Taxonomies"
|
404 |
-
msgstr "Taxonomías"
|
405 |
-
|
406 |
-
#: class.bcn_admin.php:572 class.bcn_network_admin.php:644
|
407 |
-
msgid "Category Template"
|
408 |
-
msgstr "Plantilla de Categoría"
|
409 |
-
|
410 |
-
#: class.bcn_admin.php:572 class.bcn_network_admin.php:644
|
411 |
-
msgid "The template for category breadcrumbs."
|
412 |
-
msgstr "La plantilla de la ruta de navegación para categorías."
|
413 |
-
|
414 |
-
#: class.bcn_admin.php:573 class.bcn_network_admin.php:645
|
415 |
-
msgid "Category Template (Unlinked)"
|
416 |
-
msgstr "Plantilla de la Categoría (sin vínculo)"
|
417 |
-
|
418 |
-
#: class.bcn_admin.php:573 class.bcn_network_admin.php:645
|
419 |
-
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
420 |
-
msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
|
421 |
-
|
422 |
-
#: class.bcn_admin.php:579 class.bcn_network_admin.php:651
|
423 |
-
msgid "Tag Template"
|
424 |
-
msgstr "Plantilla de la Etiqueta"
|
425 |
-
|
426 |
-
#: class.bcn_admin.php:579 class.bcn_network_admin.php:651
|
427 |
-
msgid "The template for tag breadcrumbs."
|
428 |
-
msgstr "La plantilla de la ruta de navegación para etiquetas."
|
429 |
-
|
430 |
-
#: class.bcn_admin.php:580 class.bcn_network_admin.php:652
|
431 |
-
msgid "Tag Template (Unlinked)"
|
432 |
-
msgstr "Plantilla de la Etiqueta (sin vínculo)"
|
433 |
-
|
434 |
-
#: class.bcn_admin.php:580 class.bcn_network_admin.php:652
|
435 |
-
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
436 |
-
msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
|
437 |
-
|
438 |
-
#: class.bcn_admin.php:583 class.bcn_network_admin.php:655
|
439 |
-
msgid "Post Formats"
|
440 |
-
msgstr "Formatos de Entradas"
|
441 |
-
|
442 |
-
#: class.bcn_admin.php:586 class.bcn_network_admin.php:658
|
443 |
-
msgid "Post Format Template"
|
444 |
-
msgstr "Plantilla para Formato de la Entrada"
|
445 |
-
|
446 |
-
#: class.bcn_admin.php:586 class.bcn_network_admin.php:658
|
447 |
-
msgid "The template for post format breadcrumbs."
|
448 |
-
msgstr "La plantilla para el formato de la ruta de migas en la entrada"
|
449 |
-
|
450 |
-
#: class.bcn_admin.php:587 class.bcn_network_admin.php:659
|
451 |
-
msgid "Post Format Template (Unlinked)"
|
452 |
-
msgstr "Plantilla para Formato de la Entrada (sin enlace)"
|
453 |
-
|
454 |
-
#: class.bcn_admin.php:587 class.bcn_network_admin.php:659
|
455 |
-
msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
|
456 |
-
msgstr "La plantilla para el formato de la ruta de migas en la entrada, utilizado sólo cuando la miga no tiene enlace."
|
457 |
-
|
458 |
-
#: class.bcn_admin.php:617 class.bcn_network_admin.php:689
|
459 |
-
msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
|
460 |
-
msgstr "Los ajustes para autor y archivos, búsquedas, y páginas 404 están en esta pestaña."
|
461 |
-
|
462 |
-
#: class.bcn_admin.php:617 class.bcn_admin.php:626
|
463 |
-
#: class.bcn_network_admin.php:689 class.bcn_network_admin.php:698
|
464 |
-
msgid "Miscellaneous"
|
465 |
-
msgstr "Misceláneos"
|
466 |
-
|
467 |
-
#: class.bcn_admin.php:618 class.bcn_network_admin.php:690
|
468 |
-
msgid "Author Archives"
|
469 |
-
msgstr "Archivos de Autor"
|
470 |
-
|
471 |
-
#: class.bcn_admin.php:621 class.bcn_network_admin.php:693
|
472 |
-
msgid "Author Template"
|
473 |
-
msgstr "Plantilla de Autor"
|
474 |
-
|
475 |
-
#: class.bcn_admin.php:621 class.bcn_network_admin.php:693
|
476 |
-
msgid "The template for author breadcrumbs."
|
477 |
-
msgstr "La plantilla de la ruta de navegación para autores."
|
478 |
-
|
479 |
-
#: class.bcn_admin.php:622 class.bcn_network_admin.php:694
|
480 |
-
msgid "Author Template (Unlinked)"
|
481 |
-
msgstr "Plantilla del Autor (sin vínculo)"
|
482 |
-
|
483 |
-
#: class.bcn_admin.php:622 class.bcn_network_admin.php:694
|
484 |
-
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
485 |
-
msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
|
486 |
-
|
487 |
-
#: class.bcn_admin.php:623 class.bcn_network_admin.php:695
|
488 |
-
msgid "Author Display Format"
|
489 |
-
msgstr "Formato de Despliegue de Autor"
|
490 |
-
|
491 |
-
#: class.bcn_admin.php:623 class.bcn_network_admin.php:695
|
492 |
-
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
493 |
-
msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
|
494 |
-
|
495 |
-
#: class.bcn_admin.php:629 class.bcn_network_admin.php:701
|
496 |
-
msgid "Date Template"
|
497 |
-
msgstr "Plantilla de la Fecha"
|
498 |
-
|
499 |
-
#: class.bcn_admin.php:629 class.bcn_network_admin.php:701
|
500 |
-
msgid "The template for date breadcrumbs."
|
501 |
-
msgstr "La plantilla de la ruta de navegación para fechas."
|
502 |
-
|
503 |
-
#: class.bcn_admin.php:630 class.bcn_network_admin.php:702
|
504 |
-
msgid "Date Template (Unlinked)"
|
505 |
-
msgstr "Plantilla de la Fecha (sin vínculo)"
|
506 |
-
|
507 |
-
#: class.bcn_admin.php:630 class.bcn_network_admin.php:702
|
508 |
-
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
509 |
-
msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
|
510 |
-
|
511 |
-
#: class.bcn_admin.php:631 class.bcn_network_admin.php:703
|
512 |
-
msgid "Search Template"
|
513 |
-
msgstr "Plantilla de la Búsqueda"
|
514 |
-
|
515 |
-
#: class.bcn_admin.php:631 class.bcn_network_admin.php:703
|
516 |
-
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
517 |
-
msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
|
518 |
-
|
519 |
-
#: class.bcn_admin.php:632 class.bcn_network_admin.php:704
|
520 |
-
msgid "Search Template (Unlinked)"
|
521 |
-
msgstr "Plantilla de la Búsqueda (sin vínculo)"
|
522 |
-
|
523 |
-
#: class.bcn_admin.php:632 class.bcn_network_admin.php:704
|
524 |
-
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
525 |
-
msgstr "La plantilla de la ruta de navegación para la primera página de resultados de búsqueda, utilizado sólo cuando éstos ocupan más de una página y el elemento no está enlazado."
|
526 |
-
|
527 |
-
#: class.bcn_admin.php:633 class.bcn_network_admin.php:705
|
528 |
-
msgid "404 Title"
|
529 |
-
msgstr "Título Error 404"
|
530 |
-
|
531 |
-
#: class.bcn_admin.php:634 class.bcn_network_admin.php:706
|
532 |
-
msgid "404 Template"
|
533 |
-
msgstr "Plantilla de Error 404"
|
534 |
-
|
535 |
-
#: class.bcn_admin.php:634 class.bcn_network_admin.php:706
|
536 |
-
msgid "The template for 404 breadcrumbs."
|
537 |
-
msgstr "La plantilla para la ruta de la página de error 404."
|
538 |
-
|
539 |
-
#: class.bcn_admin.php:637 class.bcn_network_admin.php:709
|
540 |
-
msgid "Deprecated"
|
541 |
-
msgstr "Descontinuado"
|
542 |
-
|
543 |
-
#: class.bcn_admin.php:641 class.bcn_network_admin.php:713
|
544 |
-
msgid "Title Length"
|
545 |
-
msgstr "Longitud del título"
|
546 |
-
|
547 |
-
#: class.bcn_admin.php:646 class.bcn_network_admin.php:718
|
548 |
-
msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
|
549 |
-
msgstr "Limita la longitud de los títulos de la ruta (Descontinuado, %suse CSS en su lugar%s)"
|
550 |
-
|
551 |
-
#: class.bcn_admin.php:651 class.bcn_network_admin.php:723
|
552 |
-
msgid "Max Title Length: "
|
553 |
-
msgstr "Longitud Máxima del Título:"
|
554 |
-
|
555 |
-
#: class.bcn_admin.php:663 class.bcn_network_admin.php:735
|
556 |
-
msgid "Save Changes"
|
557 |
-
msgstr "Grabar Cambios"
|
558 |
-
|
559 |
-
#: class.bcn_breadcrumb_trail.php:79
|
560 |
-
msgid "Page %htitle%"
|
561 |
-
msgstr "Página %htitle%"
|
562 |
-
|
563 |
-
#: class.bcn_breadcrumb_trail.php:102
|
564 |
-
msgid "404"
|
565 |
-
msgstr "Página no encontrada"
|
566 |
-
|
567 |
-
#: class.bcn_breadcrumb_trail.php:105
|
568 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
569 |
-
msgstr "Resultados de búsqueda para '<a title=\"Ir a la primer página de los resultados de búsqueda para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
570 |
-
|
571 |
-
#: class.bcn_breadcrumb_trail.php:107
|
572 |
-
msgid "Search results for '%htitle%'"
|
573 |
-
msgstr "Resultados de búsqueda para '%htitle%'"
|
574 |
-
|
575 |
-
#: class.bcn_breadcrumb_trail.php:120
|
576 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
|
577 |
-
msgstr "Artículos por: <a title=\"Ir a la primer página de entradas por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
|
578 |
-
|
579 |
-
#: class.bcn_breadcrumb_trail.php:122
|
580 |
-
msgid "Articles by: %htitle%"
|
581 |
-
msgstr "Artículos por: %htitle%"
|
582 |
-
|
583 |
-
#: class.bcn_breadcrumb_trail.php:393
|
584 |
-
msgid "$post global is not of type WP_Post"
|
585 |
-
msgstr "La global $post no corresponde al tipo de WP_Post"
|
586 |
-
|
587 |
-
#: class.bcn_network_admin.php:403
|
588 |
-
msgid "Warning: Individual site settings will override any settings set in this page."
|
589 |
-
msgstr "Advertencia: los ajustes individuales del sitio modificarán cualquier ajuste en esta página."
|
590 |
-
|
591 |
-
#: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
|
592 |
-
msgid "Warning: Individual site settings may override any settings set in this page."
|
593 |
-
msgstr "Advertencia: los ajustes individuales del sitio pueden modificar los ajustes de esta página."
|
594 |
-
|
595 |
-
#: class.bcn_network_admin.php:450
|
596 |
-
msgid "Breadcrumb NavXT Network Settings"
|
597 |
-
msgstr "Ajustes de Red de Breadcrumb NavXT"
|
598 |
-
|
599 |
-
#: class.bcn_widget.php:32
|
600 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
601 |
-
msgstr "Agrega una ruta de navegación en su barra lateral"
|
602 |
-
|
603 |
-
#: class.bcn_widget.php:99
|
604 |
-
msgid "Title:"
|
605 |
-
msgstr "Título:"
|
606 |
-
|
607 |
-
#: class.bcn_widget.php:103
|
608 |
-
msgid "Text to show before the trail:"
|
609 |
-
msgstr "Texto a mostrar antes de las migas:"
|
610 |
-
|
611 |
-
#: class.bcn_widget.php:107
|
612 |
-
msgid "Output trail as:"
|
613 |
-
msgstr "Mostrar ruta como:"
|
614 |
-
|
615 |
-
#: class.bcn_widget.php:109
|
616 |
-
msgid "List"
|
617 |
-
msgstr "Lista"
|
618 |
-
|
619 |
-
#: class.bcn_widget.php:110
|
620 |
-
msgid "Google (RDFa) Breadcrumbs"
|
621 |
-
msgstr "Google (RDFa) Breadcrumbs"
|
622 |
-
|
623 |
-
#: class.bcn_widget.php:111
|
624 |
-
msgid "Plain"
|
625 |
-
msgstr "Texto plano"
|
626 |
-
|
627 |
-
#: class.bcn_widget.php:117
|
628 |
-
msgid "Link the breadcrumbs"
|
629 |
-
msgstr "Enlace a la Ruta"
|
630 |
-
|
631 |
-
#: class.bcn_widget.php:119
|
632 |
-
msgid "Reverse the order of the trail"
|
633 |
-
msgstr "Invertir el orden de la ruta"
|
634 |
-
|
635 |
-
#: class.bcn_widget.php:121
|
636 |
-
msgid "Hide the trail on the front page"
|
637 |
-
msgstr "Ocultar la ruta de la página principal"
|
638 |
-
|
639 |
-
#: includes/class.mtekk_adminkit.php:225
|
640 |
-
msgid "Settings"
|
641 |
-
msgstr "Configuraciones"
|
642 |
-
|
643 |
-
#: includes/class.mtekk_adminkit.php:295
|
644 |
-
msgid "Your settings are out of date."
|
645 |
-
msgstr "Sus ajustes están desactualizados."
|
646 |
-
|
647 |
-
#: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
|
648 |
-
msgid "Migrate the settings now."
|
649 |
-
msgstr "Migrar los ajustes ahora."
|
650 |
-
|
651 |
-
#: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
|
652 |
-
msgid "Migrate now."
|
653 |
-
msgstr "Migrar ahora."
|
654 |
-
|
655 |
-
#: includes/class.mtekk_adminkit.php:304
|
656 |
-
msgid "Your settings are for a newer version."
|
657 |
-
msgstr "Sus ajustes son para una versión más nueva."
|
658 |
-
|
659 |
-
#: includes/class.mtekk_adminkit.php:312
|
660 |
-
msgid "Your plugin install is incomplete."
|
661 |
-
msgstr "La instalación del plugin no se ha completado."
|
662 |
-
|
663 |
-
#: includes/class.mtekk_adminkit.php:312
|
664 |
-
msgid "Load default settings now."
|
665 |
-
msgstr "Cargar los ajustes predeterminados ahora."
|
666 |
-
|
667 |
-
#: includes/class.mtekk_adminkit.php:312
|
668 |
-
msgid "Complete now."
|
669 |
-
msgstr "Completar ahora."
|
670 |
-
|
671 |
-
#: includes/class.mtekk_adminkit.php:320
|
672 |
-
msgid "Your plugin settings are invalid."
|
673 |
-
msgstr "Los ajustes del plugin no son válidos."
|
674 |
-
|
675 |
-
#: includes/class.mtekk_adminkit.php:320
|
676 |
-
msgid "Attempt to fix settings now."
|
677 |
-
msgstr "Intentar arreglar los ajustes ahora."
|
678 |
-
|
679 |
-
#: includes/class.mtekk_adminkit.php:320
|
680 |
-
msgid "Fix now."
|
681 |
-
msgstr "Arreglar ahora."
|
682 |
-
|
683 |
-
#: includes/class.mtekk_adminkit.php:503
|
684 |
-
msgid "Settings successfully saved."
|
685 |
-
msgstr "Ajustes guardados exitosamente."
|
686 |
-
|
687 |
-
#: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
|
688 |
-
msgid "Undo the options save."
|
689 |
-
msgstr "Deshacer modificación de opciones."
|
690 |
-
|
691 |
-
#: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
|
692 |
-
#: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
|
693 |
-
#: includes/class.mtekk_adminkit.php:662
|
694 |
-
msgid "Undo"
|
695 |
-
msgstr "Deshacer"
|
696 |
-
|
697 |
-
#: includes/class.mtekk_adminkit.php:507
|
698 |
-
msgid "Settings did not change, nothing to save."
|
699 |
-
msgstr "Los ajustes no cambiaron, no hay nada que grabar."
|
700 |
-
|
701 |
-
#: includes/class.mtekk_adminkit.php:511
|
702 |
-
msgid "Settings were not saved."
|
703 |
-
msgstr "Los ajustes no fueron grabados."
|
704 |
-
|
705 |
-
#: includes/class.mtekk_adminkit.php:516
|
706 |
-
msgid "Some settings were not saved."
|
707 |
-
msgstr "Algunos ajustes no fueron grabados."
|
708 |
-
|
709 |
-
#: includes/class.mtekk_adminkit.php:517
|
710 |
-
msgid "The following settings were not saved:"
|
711 |
-
msgstr "Los siguientes ajustes no fueron grabados:"
|
712 |
-
|
713 |
-
#: includes/class.mtekk_adminkit.php:522
|
714 |
-
msgid "Please include this message in your %sbug report%s."
|
715 |
-
msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
|
716 |
-
|
717 |
-
#: includes/class.mtekk_adminkit.php:522
|
718 |
-
msgid "Go to the %s support post for your version."
|
719 |
-
msgstr "Ir a la documentación en línea de %s para su versión."
|
720 |
-
|
721 |
-
#: includes/class.mtekk_adminkit.php:621
|
722 |
-
msgid "Settings successfully imported from the uploaded file."
|
723 |
-
msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
|
724 |
-
|
725 |
-
#: includes/class.mtekk_adminkit.php:621
|
726 |
-
msgid "Undo the options import."
|
727 |
-
msgstr "Deshacer importación de opciones."
|
728 |
-
|
729 |
-
#: includes/class.mtekk_adminkit.php:626
|
730 |
-
msgid "Importing settings from file failed."
|
731 |
-
msgstr "Falló la importación de los ajustes desde el archivo."
|
732 |
-
|
733 |
-
#: includes/class.mtekk_adminkit.php:645
|
734 |
-
msgid "Settings successfully reset to the default values."
|
735 |
-
msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
|
736 |
-
|
737 |
-
#: includes/class.mtekk_adminkit.php:645
|
738 |
-
msgid "Undo the options reset."
|
739 |
-
msgstr "Deshacer reinicio de opciones."
|
740 |
-
|
741 |
-
#: includes/class.mtekk_adminkit.php:662
|
742 |
-
msgid "Settings successfully undid the last operation."
|
743 |
-
msgstr "Se deshizo exitosamente la operación anterior."
|
744 |
-
|
745 |
-
#: includes/class.mtekk_adminkit.php:662
|
746 |
-
msgid "Undo the last undo operation."
|
747 |
-
msgstr "Deshacer la última operación de \"deshacer\""
|
748 |
-
|
749 |
-
#: includes/class.mtekk_adminkit.php:697
|
750 |
-
msgid "Settings successfully migrated."
|
751 |
-
msgstr "Ajustes migrados exitosamente."
|
752 |
-
|
753 |
-
#: includes/class.mtekk_adminkit.php:704
|
754 |
-
msgid "Default settings successfully installed."
|
755 |
-
msgstr "Los ajustes predeterminados se instalaron exitosamente."
|
756 |
-
|
757 |
-
#: includes/class.mtekk_adminkit.php:800
|
758 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
759 |
-
msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
|
760 |
-
|
761 |
-
#: includes/class.mtekk_adminkit.php:803
|
762 |
-
msgid "Settings File"
|
763 |
-
msgstr "Archivo de Ajustes"
|
764 |
-
|
765 |
-
#: includes/class.mtekk_adminkit.php:806
|
766 |
-
msgid "Select a XML settings file to upload and import settings from."
|
767 |
-
msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
|
768 |
-
|
769 |
-
#. Plugin Name of the plugin/theme
|
770 |
-
msgid "Breadcrumb NavXT"
|
771 |
-
msgstr "Breadcrumb NavXT"
|
772 |
-
|
773 |
-
#. Plugin URI of the plugin/theme
|
774 |
-
msgid "http://mtekk.us/code/breadcrumb-navxt/"
|
775 |
-
msgstr "http://mtekk.us/code/breadcrumb-navxt/"
|
776 |
-
|
777 |
-
#. Description of the plugin/theme
|
778 |
-
msgid "Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
|
779 |
-
msgstr "Agrega un ruta de navegación mostrando al visitante su posición actual. Para detalles de cómo usar este plugin, visite la documentación oficial de <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
|
780 |
-
|
781 |
-
#. Author of the plugin/theme
|
782 |
-
msgid "John Havlik"
|
783 |
-
msgstr "John Havlik | Traducción: Karin Sequén"
|
784 |
-
|
785 |
-
#. Author URI of the plugin/theme
|
786 |
-
msgid "http://mtekk.us/"
|
787 |
-
msgstr "http://mtekk.us/"
|
788 |
-
|
789 |
-
#: breadcrumb-navxt.php:35 class.bcn_admin.php:25
|
790 |
-
#: class.bcn_network_admin.php:25
|
791 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
792 |
-
msgstr "Su versión de PHP es demasiado antigua, por favor, actualice a la nueva versión. Su versión es %1$s, el plugin Breadcrumb NavXT requiere la versión %2$s "
|
793 |
-
|
794 |
-
#: class.bcn_admin.php:95 class.bcn_network_admin.php:165
|
795 |
-
msgid "Insufficient privileges to proceed."
|
796 |
-
msgstr "No tiene privilegios para proceder."
|
797 |
-
|
798 |
-
#: class.bcn_admin.php:240 class.bcn_network_admin.php:311
|
799 |
-
msgid "Tips for the settings are located below select options."
|
800 |
-
msgstr "Encontrará tips para los ajustes debajo de cada opción."
|
801 |
-
|
802 |
-
#: class.bcn_admin.php:241 class.bcn_network_admin.php:312
|
803 |
-
msgid "Resources"
|
804 |
-
msgstr "Recursos"
|
805 |
-
|
806 |
-
#: class.bcn_admin.php:242 class.bcn_network_admin.php:313
|
807 |
-
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
808 |
-
msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
|
809 |
-
|
810 |
-
#: class.bcn_admin.php:242 class.bcn_network_admin.php:313
|
811 |
-
msgid "Go to the Breadcrumb NavXT tag archive."
|
812 |
-
msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
|
813 |
-
|
814 |
-
#: class.bcn_admin.php:243 class.bcn_network_admin.php:314
|
815 |
-
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
816 |
-
msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
|
817 |
-
|
818 |
-
#: class.bcn_admin.php:243 class.bcn_network_admin.php:314
|
819 |
-
msgid "Go to the Breadcrumb NavXT online documentation"
|
820 |
-
msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
|
821 |
-
|
822 |
-
#: class.bcn_admin.php:244 class.bcn_network_admin.php:315
|
823 |
-
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
824 |
-
msgstr "%sReportar Errores%s: Si piensa que ha encontrado un error, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el error."
|
825 |
-
|
826 |
-
#: class.bcn_admin.php:244 class.bcn_network_admin.php:315
|
827 |
-
msgid "Go to the Breadcrumb NavXT support post for your version."
|
828 |
-
msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
|
829 |
-
|
830 |
-
#: class.bcn_admin.php:245 class.bcn_network_admin.php:316
|
831 |
-
msgid "Giving Back"
|
832 |
-
msgstr "Dar de vuelta"
|
833 |
-
|
834 |
-
#: class.bcn_admin.php:246 class.bcn_network_admin.php:317
|
835 |
-
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
836 |
-
msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt-et.mo
DELETED
Binary file
|
languages/breadcrumb-navxt-et.po
DELETED
@@ -1,836 +0,0 @@
|
|
1 |
-
# Translation of Development (trunk) in Estonian
|
2 |
-
# This file is distributed under the same license as the Development (trunk) package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-09-15 20:24:51+0000\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
-
"Project-Id-Version: Development (trunk)\n"
|
12 |
-
|
13 |
-
#: class.bcn_breadcrumb.php:91
|
14 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
15 |
-
msgstr ""
|
16 |
-
|
17 |
-
#: class.bcn_breadcrumb_trail.php:110
|
18 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
|
22 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: class.bcn_breadcrumb_trail.php:127
|
26 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: class.bcn_admin.php:246 class.bcn_network_admin.php:317
|
30 |
-
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
31 |
-
msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
|
32 |
-
|
33 |
-
#: class.bcn_admin.php:247 class.bcn_network_admin.php:318
|
34 |
-
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
35 |
-
msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
|
36 |
-
|
37 |
-
#: class.bcn_admin.php:247 class.bcn_network_admin.php:318
|
38 |
-
msgid "Go to the Breadcrumb NavXT translation project."
|
39 |
-
msgstr "Breadcrumb NavXT tõlke projekt."
|
40 |
-
|
41 |
-
#: class.bcn_admin.php:252 class.bcn_admin.php:390 class.bcn_admin.php:391
|
42 |
-
#: class.bcn_network_admin.php:323 class.bcn_network_admin.php:462
|
43 |
-
#: class.bcn_network_admin.php:463
|
44 |
-
msgid "General"
|
45 |
-
msgstr "Peamine"
|
46 |
-
|
47 |
-
#: class.bcn_admin.php:255 class.bcn_network_admin.php:326
|
48 |
-
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
49 |
-
msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
|
50 |
-
|
51 |
-
#: class.bcn_admin.php:256 class.bcn_network_admin.php:327
|
52 |
-
msgid "Breadcrumb trail with separators"
|
53 |
-
msgstr "Teekonna rada koos eraldajatega"
|
54 |
-
|
55 |
-
#: class.bcn_admin.php:262 class.bcn_network_admin.php:333
|
56 |
-
msgid "Breadcrumb trail in list form"
|
57 |
-
msgstr "Teekonna rada nimekirja formaadis"
|
58 |
-
|
59 |
-
#: class.bcn_admin.php:271 class.bcn_network_admin.php:342
|
60 |
-
msgid "Quick Start"
|
61 |
-
msgstr "Kiire alustamine"
|
62 |
-
|
63 |
-
#: class.bcn_admin.php:274 class.bcn_network_admin.php:345
|
64 |
-
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
65 |
-
msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
|
66 |
-
|
67 |
-
#: class.bcn_admin.php:286 class.bcn_network_admin.php:357
|
68 |
-
msgid "Styling"
|
69 |
-
msgstr "Stiil"
|
70 |
-
|
71 |
-
#: class.bcn_admin.php:292 class.bcn_network_admin.php:363
|
72 |
-
msgid "Import/Export/Reset"
|
73 |
-
msgstr "Import/Eksport/Lähtestamine"
|
74 |
-
|
75 |
-
#: class.bcn_admin.php:316 class.bcn_network_admin.php:387
|
76 |
-
#: includes/class.mtekk_adminkit.php:808
|
77 |
-
msgid "Import"
|
78 |
-
msgstr "Import"
|
79 |
-
|
80 |
-
#: class.bcn_admin.php:317 class.bcn_network_admin.php:388
|
81 |
-
#: includes/class.mtekk_adminkit.php:809
|
82 |
-
msgid "Export"
|
83 |
-
msgstr "Eksport"
|
84 |
-
|
85 |
-
#: class.bcn_admin.php:318 class.bcn_network_admin.php:389
|
86 |
-
#: includes/class.mtekk_adminkit.php:810
|
87 |
-
msgid "Reset"
|
88 |
-
msgstr "Lähtestamine"
|
89 |
-
|
90 |
-
#: class.bcn_admin.php:336 class.bcn_network_admin.php:421
|
91 |
-
msgid "Warning: Your network settings will override any settings set in this page."
|
92 |
-
msgstr "Hoiatus: Sinu võrguseaded kirjutavad üle kõik sellel lehel tehtud seadistused."
|
93 |
-
|
94 |
-
#: class.bcn_admin.php:340 class.bcn_admin.php:344
|
95 |
-
msgid "Warning: Your network settings may override any settings set in this page."
|
96 |
-
msgstr "Hoiatus: Sinu võrguseaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
|
97 |
-
|
98 |
-
#: class.bcn_admin.php:349 class.bcn_network_admin.php:420
|
99 |
-
msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL."
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: class.bcn_admin.php:361 class.bcn_network_admin.php:433
|
103 |
-
msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous > Deprecated), please %1$suse CSS instead%2$s."
|
104 |
-
msgstr "Hoiatus: Kasutad taunitud määrangut \"Pealkirja pikkus\" (vaata Muud > Taunitud), palun %1$suse CSS asemel%2$s."
|
105 |
-
|
106 |
-
#: class.bcn_admin.php:361 class.bcn_admin.php:646
|
107 |
-
#: class.bcn_network_admin.php:433 class.bcn_network_admin.php:718
|
108 |
-
msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
|
109 |
-
msgstr "Mine juhendi juurde, mis selgitab teekonna raja pealkirjade kärpimist CSS-i abil"
|
110 |
-
|
111 |
-
#: class.bcn_admin.php:378
|
112 |
-
msgid "Breadcrumb NavXT Settings"
|
113 |
-
msgstr "Breadcrumb NavXT seaded"
|
114 |
-
|
115 |
-
#: class.bcn_admin.php:390 class.bcn_network_admin.php:462
|
116 |
-
msgid "A collection of settings most likely to be modified are located under this tab."
|
117 |
-
msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
|
118 |
-
|
119 |
-
#: class.bcn_admin.php:394 class.bcn_network_admin.php:466
|
120 |
-
msgid "Breadcrumb Separator"
|
121 |
-
msgstr "Teekonna raja eraldaja"
|
122 |
-
|
123 |
-
#: class.bcn_admin.php:394 class.bcn_network_admin.php:466
|
124 |
-
msgid "Placed in between each breadcrumb."
|
125 |
-
msgstr "Paigutatakse iga teekonna elemendi vahele"
|
126 |
-
|
127 |
-
#: class.bcn_admin.php:398 class.bcn_network_admin.php:470
|
128 |
-
msgid "Current Item"
|
129 |
-
msgstr "Avatud element"
|
130 |
-
|
131 |
-
#: class.bcn_admin.php:401 class.bcn_network_admin.php:473
|
132 |
-
msgid "Link Current Item"
|
133 |
-
msgstr "Lingi avatud element"
|
134 |
-
|
135 |
-
#: class.bcn_admin.php:401 class.bcn_network_admin.php:473
|
136 |
-
msgid "Yes"
|
137 |
-
msgstr "Jah"
|
138 |
-
|
139 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
140 |
-
msgid "Paged Breadcrumb"
|
141 |
-
msgstr "Lehekülgedele jaotatud teekonna rada"
|
142 |
-
|
143 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
144 |
-
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
145 |
-
msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
|
146 |
-
|
147 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
148 |
-
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
149 |
-
msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
|
150 |
-
|
151 |
-
#: class.bcn_admin.php:403 class.bcn_network_admin.php:475
|
152 |
-
msgid "Paged Template"
|
153 |
-
msgstr "Jaotatud mall"
|
154 |
-
|
155 |
-
#: class.bcn_admin.php:403 class.bcn_network_admin.php:475
|
156 |
-
msgid "The template for paged breadcrumbs."
|
157 |
-
msgstr "Lehekülgedele jaotatud teekonna raja mall."
|
158 |
-
|
159 |
-
#: class.bcn_admin.php:407 class.bcn_admin.php:410
|
160 |
-
#: class.bcn_network_admin.php:479 class.bcn_network_admin.php:482
|
161 |
-
msgid "Home Breadcrumb"
|
162 |
-
msgstr "Avalehe rada"
|
163 |
-
|
164 |
-
#: class.bcn_admin.php:410 class.bcn_network_admin.php:482
|
165 |
-
msgid "Place the home breadcrumb in the trail."
|
166 |
-
msgstr "Lisa avaleht teekonna rajale"
|
167 |
-
|
168 |
-
#: class.bcn_admin.php:411 class.bcn_network_admin.php:483
|
169 |
-
msgid "Home Template"
|
170 |
-
msgstr "Avalehe mall"
|
171 |
-
|
172 |
-
#: class.bcn_admin.php:411 class.bcn_network_admin.php:483
|
173 |
-
msgid "The template for the home breadcrumb."
|
174 |
-
msgstr "Avalehe teekonna raja mall."
|
175 |
-
|
176 |
-
#: class.bcn_admin.php:412 class.bcn_network_admin.php:484
|
177 |
-
msgid "Home Template (Unlinked)"
|
178 |
-
msgstr "Avalehe mall (ei ole lingitud)"
|
179 |
-
|
180 |
-
#: class.bcn_admin.php:412 class.bcn_network_admin.php:484
|
181 |
-
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
182 |
-
msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
|
183 |
-
|
184 |
-
#: class.bcn_admin.php:416
|
185 |
-
msgid "Blog Breadcrumb "
|
186 |
-
msgstr "Blog Breadcrumb"
|
187 |
-
|
188 |
-
#: class.bcn_admin.php:419 class.bcn_network_admin.php:488
|
189 |
-
#: class.bcn_network_admin.php:491
|
190 |
-
msgid "Blog Breadcrumb"
|
191 |
-
msgstr "Blogi teekonna rada"
|
192 |
-
|
193 |
-
#: class.bcn_admin.php:419 class.bcn_network_admin.php:491
|
194 |
-
msgid "Place the blog breadcrumb in the trail."
|
195 |
-
msgstr "Aseta blogi teekond rajale."
|
196 |
-
|
197 |
-
#: class.bcn_admin.php:420 class.bcn_network_admin.php:492
|
198 |
-
msgid "Blog Template"
|
199 |
-
msgstr "Blogi teekonna rada"
|
200 |
-
|
201 |
-
#: class.bcn_admin.php:420 class.bcn_network_admin.php:492
|
202 |
-
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
-
msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
|
204 |
-
|
205 |
-
#: class.bcn_admin.php:421 class.bcn_network_admin.php:493
|
206 |
-
msgid "Blog Template (Unlinked)"
|
207 |
-
msgstr "Blogi mall (linkimata)"
|
208 |
-
|
209 |
-
#: class.bcn_admin.php:421 class.bcn_network_admin.php:493
|
210 |
-
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
-
msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
|
212 |
-
|
213 |
-
#: class.bcn_admin.php:425 class.bcn_network_admin.php:497
|
214 |
-
msgid "Mainsite Breadcrumb"
|
215 |
-
msgstr "Pealehe teekonna rada"
|
216 |
-
|
217 |
-
#: class.bcn_admin.php:428 class.bcn_network_admin.php:500
|
218 |
-
msgid "Main Site Breadcrumb"
|
219 |
-
msgstr "Peamise saidi teekonna rada"
|
220 |
-
|
221 |
-
#: class.bcn_admin.php:428 class.bcn_network_admin.php:500
|
222 |
-
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
223 |
-
msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
|
224 |
-
|
225 |
-
#: class.bcn_admin.php:429 class.bcn_network_admin.php:501
|
226 |
-
msgid "Main Site Home Template"
|
227 |
-
msgstr "Peamise saidi avalehe mall"
|
228 |
-
|
229 |
-
#: class.bcn_admin.php:429 class.bcn_network_admin.php:501
|
230 |
-
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
-
msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
|
232 |
-
|
233 |
-
#: class.bcn_admin.php:430 class.bcn_network_admin.php:502
|
234 |
-
msgid "Main Site Home Template (Unlinked)"
|
235 |
-
msgstr "Peamise saidi avalehe mall (linkimata)"
|
236 |
-
|
237 |
-
#: class.bcn_admin.php:430 class.bcn_network_admin.php:502
|
238 |
-
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
-
msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
|
240 |
-
|
241 |
-
#: class.bcn_admin.php:437 class.bcn_network_admin.php:509
|
242 |
-
msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
|
243 |
-
msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
|
244 |
-
|
245 |
-
#: class.bcn_admin.php:437 class.bcn_network_admin.php:509
|
246 |
-
msgid "Post Types"
|
247 |
-
msgstr "Postituse tüübid"
|
248 |
-
|
249 |
-
#: class.bcn_admin.php:438 class.bcn_network_admin.php:510
|
250 |
-
msgid "Posts"
|
251 |
-
msgstr "Postitused"
|
252 |
-
|
253 |
-
#: class.bcn_admin.php:441 class.bcn_network_admin.php:513
|
254 |
-
msgid "Post Template"
|
255 |
-
msgstr "Postituste mall"
|
256 |
-
|
257 |
-
#: class.bcn_admin.php:441 class.bcn_network_admin.php:513
|
258 |
-
msgid "The template for post breadcrumbs."
|
259 |
-
msgstr "Postituste teekonna raja mall"
|
260 |
-
|
261 |
-
#: class.bcn_admin.php:442 class.bcn_network_admin.php:514
|
262 |
-
msgid "Post Template (Unlinked)"
|
263 |
-
msgstr "Postituste mall (linkimata)"
|
264 |
-
|
265 |
-
#: class.bcn_admin.php:442 class.bcn_network_admin.php:514
|
266 |
-
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
267 |
-
msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
|
268 |
-
|
269 |
-
#: class.bcn_admin.php:443 class.bcn_network_admin.php:515
|
270 |
-
msgid "Post Hierarchy Display"
|
271 |
-
msgstr "Postituse hierarhia kuvamine"
|
272 |
-
|
273 |
-
#: class.bcn_admin.php:443 class.bcn_network_admin.php:515
|
274 |
-
msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
|
275 |
-
msgstr "Kuva hierarhia (selgitatud allpool), mis viib postitusele teekonna raja jäljes."
|
276 |
-
|
277 |
-
#: class.bcn_admin.php:447 class.bcn_network_admin.php:519
|
278 |
-
msgid "Post Hierarchy"
|
279 |
-
msgstr "Postituse hierarhia"
|
280 |
-
|
281 |
-
#: class.bcn_admin.php:451 class.bcn_admin.php:569
|
282 |
-
#: class.bcn_network_admin.php:523 class.bcn_network_admin.php:641
|
283 |
-
msgid "Categories"
|
284 |
-
msgstr "Kategooriad"
|
285 |
-
|
286 |
-
#: class.bcn_admin.php:452 class.bcn_admin.php:530
|
287 |
-
#: class.bcn_network_admin.php:524 class.bcn_network_admin.php:602
|
288 |
-
msgid "Dates"
|
289 |
-
msgstr "Kuupäevad"
|
290 |
-
|
291 |
-
#: class.bcn_admin.php:453 class.bcn_admin.php:576
|
292 |
-
#: class.bcn_network_admin.php:525 class.bcn_network_admin.php:648
|
293 |
-
msgid "Tags"
|
294 |
-
msgstr "Sildid"
|
295 |
-
|
296 |
-
#: class.bcn_admin.php:455 class.bcn_admin.php:529
|
297 |
-
#: class.bcn_network_admin.php:527 class.bcn_network_admin.php:601
|
298 |
-
msgid "Post Parent"
|
299 |
-
msgstr "Postituse vanem"
|
300 |
-
|
301 |
-
#: class.bcn_admin.php:471 class.bcn_admin.php:554
|
302 |
-
#: class.bcn_network_admin.php:543 class.bcn_network_admin.php:626
|
303 |
-
msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
|
304 |
-
msgstr "Hierarhia, mida teekonna rada kuvab. Pane tähele, et valik \"Postituse vanem\" võib vajada täiendavat pluginat, et käituda ootuspäraselt, sest see on mitte-hierarhiline postiruse tüüp."
|
305 |
-
|
306 |
-
#: class.bcn_admin.php:475 class.bcn_network_admin.php:547
|
307 |
-
msgid "Pages"
|
308 |
-
msgstr "Lehed"
|
309 |
-
|
310 |
-
#: class.bcn_admin.php:478 class.bcn_network_admin.php:550
|
311 |
-
msgid "Page Template"
|
312 |
-
msgstr "Lehe mall"
|
313 |
-
|
314 |
-
#: class.bcn_admin.php:478 class.bcn_network_admin.php:550
|
315 |
-
msgid "The template for page breadcrumbs."
|
316 |
-
msgstr "Mall lehe teekonna raja jaoks."
|
317 |
-
|
318 |
-
#: class.bcn_admin.php:479 class.bcn_network_admin.php:551
|
319 |
-
msgid "Page Template (Unlinked)"
|
320 |
-
msgstr "Lehe mall (linkimata)"
|
321 |
-
|
322 |
-
#: class.bcn_admin.php:479 class.bcn_network_admin.php:551
|
323 |
-
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
324 |
-
msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
|
325 |
-
|
326 |
-
#: class.bcn_admin.php:482 class.bcn_network_admin.php:554
|
327 |
-
msgid "Attachments"
|
328 |
-
msgstr "Manused"
|
329 |
-
|
330 |
-
#: class.bcn_admin.php:485 class.bcn_network_admin.php:557
|
331 |
-
msgid "Attachment Template"
|
332 |
-
msgstr "Manuse mall"
|
333 |
-
|
334 |
-
#: class.bcn_admin.php:485 class.bcn_network_admin.php:557
|
335 |
-
msgid "The template for attachment breadcrumbs."
|
336 |
-
msgstr "Manuse teekonna raja mall."
|
337 |
-
|
338 |
-
#: class.bcn_admin.php:486 class.bcn_network_admin.php:558
|
339 |
-
msgid "Attachment Template (Unlinked)"
|
340 |
-
msgstr "Manuse mall (linkimata)"
|
341 |
-
|
342 |
-
#: class.bcn_admin.php:486 class.bcn_network_admin.php:558
|
343 |
-
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
344 |
-
msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
|
345 |
-
|
346 |
-
#: class.bcn_admin.php:506 class.bcn_admin.php:607
|
347 |
-
#: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
|
348 |
-
msgid "%s Template"
|
349 |
-
msgstr "%s Mall"
|
350 |
-
|
351 |
-
#: class.bcn_admin.php:506 class.bcn_admin.php:607
|
352 |
-
#: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
|
353 |
-
msgid "The template for %s breadcrumbs."
|
354 |
-
msgstr "%s teekonna raja mall"
|
355 |
-
|
356 |
-
#: class.bcn_admin.php:507 class.bcn_admin.php:608
|
357 |
-
#: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
|
358 |
-
msgid "%s Template (Unlinked)"
|
359 |
-
msgstr "%s Mall (linkimata)"
|
360 |
-
|
361 |
-
#: class.bcn_admin.php:507 class.bcn_admin.php:608
|
362 |
-
#: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
|
363 |
-
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
364 |
-
msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
|
365 |
-
|
366 |
-
#: class.bcn_admin.php:512 class.bcn_network_admin.php:584
|
367 |
-
msgid "%s Root Page"
|
368 |
-
msgstr "%s juur lehekülg"
|
369 |
-
|
370 |
-
#: class.bcn_admin.php:515 class.bcn_network_admin.php:587
|
371 |
-
msgid "— Select —"
|
372 |
-
msgstr "— Vali —"
|
373 |
-
|
374 |
-
#: class.bcn_admin.php:519 class.bcn_network_admin.php:591
|
375 |
-
msgid "%s Archive Display"
|
376 |
-
msgstr "%s arhiivi kuvamine"
|
377 |
-
|
378 |
-
#: class.bcn_admin.php:519 class.bcn_network_admin.php:591
|
379 |
-
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
380 |
-
msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
|
381 |
-
|
382 |
-
#: class.bcn_admin.php:520 class.bcn_network_admin.php:592
|
383 |
-
msgid "%s Hierarchy Display"
|
384 |
-
msgstr "%s hierarhia kuvamine"
|
385 |
-
|
386 |
-
#: class.bcn_admin.php:520 class.bcn_network_admin.php:592
|
387 |
-
msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
|
388 |
-
msgstr "Kuva hierarhia (selgitatud allpool), mis viib %s juurde teekonna raja jäljes."
|
389 |
-
|
390 |
-
#: class.bcn_admin.php:524 class.bcn_network_admin.php:596
|
391 |
-
msgid "%s Hierarchy"
|
392 |
-
msgstr "%s hierarhia"
|
393 |
-
|
394 |
-
#: class.bcn_admin.php:550 class.bcn_network_admin.php:622
|
395 |
-
msgid "The hierarchy which the breadcrumb trail will show."
|
396 |
-
msgstr "Hierarhia, mida teekonna rada kuvab"
|
397 |
-
|
398 |
-
#: class.bcn_admin.php:568 class.bcn_network_admin.php:640
|
399 |
-
msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
|
400 |
-
msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
|
401 |
-
|
402 |
-
#: class.bcn_admin.php:568 class.bcn_network_admin.php:640
|
403 |
-
msgid "Taxonomies"
|
404 |
-
msgstr "Süstemaatikad"
|
405 |
-
|
406 |
-
#: class.bcn_admin.php:572 class.bcn_network_admin.php:644
|
407 |
-
msgid "Category Template"
|
408 |
-
msgstr "Kategooria mall"
|
409 |
-
|
410 |
-
#: class.bcn_admin.php:572 class.bcn_network_admin.php:644
|
411 |
-
msgid "The template for category breadcrumbs."
|
412 |
-
msgstr "Kategooria teekonna rea mall"
|
413 |
-
|
414 |
-
#: class.bcn_admin.php:573 class.bcn_network_admin.php:645
|
415 |
-
msgid "Category Template (Unlinked)"
|
416 |
-
msgstr "Kategooria mall (linkimata)"
|
417 |
-
|
418 |
-
#: class.bcn_admin.php:573 class.bcn_network_admin.php:645
|
419 |
-
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
420 |
-
msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
|
421 |
-
|
422 |
-
#: class.bcn_admin.php:579 class.bcn_network_admin.php:651
|
423 |
-
msgid "Tag Template"
|
424 |
-
msgstr "Sildi mall"
|
425 |
-
|
426 |
-
#: class.bcn_admin.php:579 class.bcn_network_admin.php:651
|
427 |
-
msgid "The template for tag breadcrumbs."
|
428 |
-
msgstr "Siltide teekonna riba mall"
|
429 |
-
|
430 |
-
#: class.bcn_admin.php:580 class.bcn_network_admin.php:652
|
431 |
-
msgid "Tag Template (Unlinked)"
|
432 |
-
msgstr "Sildi mall (linkimata)"
|
433 |
-
|
434 |
-
#: class.bcn_admin.php:580 class.bcn_network_admin.php:652
|
435 |
-
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
436 |
-
msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
|
437 |
-
|
438 |
-
#: class.bcn_admin.php:583 class.bcn_network_admin.php:655
|
439 |
-
msgid "Post Formats"
|
440 |
-
msgstr "Postituse formaadid"
|
441 |
-
|
442 |
-
#: class.bcn_admin.php:586 class.bcn_network_admin.php:658
|
443 |
-
msgid "Post Format Template"
|
444 |
-
msgstr "Postituse formaadi templiit"
|
445 |
-
|
446 |
-
#: class.bcn_admin.php:586 class.bcn_network_admin.php:658
|
447 |
-
msgid "The template for post format breadcrumbs."
|
448 |
-
msgstr "Teekonna raja postituse formaadi templiit."
|
449 |
-
|
450 |
-
#: class.bcn_admin.php:587 class.bcn_network_admin.php:659
|
451 |
-
msgid "Post Format Template (Unlinked)"
|
452 |
-
msgstr "Postituse formaadi templiit (linkimata)"
|
453 |
-
|
454 |
-
#: class.bcn_admin.php:587 class.bcn_network_admin.php:659
|
455 |
-
msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
|
456 |
-
msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
|
457 |
-
|
458 |
-
#: class.bcn_admin.php:617 class.bcn_network_admin.php:689
|
459 |
-
msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
|
460 |
-
msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
|
461 |
-
|
462 |
-
#: class.bcn_admin.php:617 class.bcn_admin.php:626
|
463 |
-
#: class.bcn_network_admin.php:689 class.bcn_network_admin.php:698
|
464 |
-
msgid "Miscellaneous"
|
465 |
-
msgstr "Varia"
|
466 |
-
|
467 |
-
#: class.bcn_admin.php:618 class.bcn_network_admin.php:690
|
468 |
-
msgid "Author Archives"
|
469 |
-
msgstr "Autori arhiiv"
|
470 |
-
|
471 |
-
#: class.bcn_admin.php:621 class.bcn_network_admin.php:693
|
472 |
-
msgid "Author Template"
|
473 |
-
msgstr "Autori mall"
|
474 |
-
|
475 |
-
#: class.bcn_admin.php:621 class.bcn_network_admin.php:693
|
476 |
-
msgid "The template for author breadcrumbs."
|
477 |
-
msgstr "Autori teekonna riba mall."
|
478 |
-
|
479 |
-
#: class.bcn_admin.php:622 class.bcn_network_admin.php:694
|
480 |
-
msgid "Author Template (Unlinked)"
|
481 |
-
msgstr "Autori mall (linkimata)"
|
482 |
-
|
483 |
-
#: class.bcn_admin.php:622 class.bcn_network_admin.php:694
|
484 |
-
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
485 |
-
msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
|
486 |
-
|
487 |
-
#: class.bcn_admin.php:623 class.bcn_network_admin.php:695
|
488 |
-
msgid "Author Display Format"
|
489 |
-
msgstr "Autori kuvamise formaat"
|
490 |
-
|
491 |
-
#: class.bcn_admin.php:623 class.bcn_network_admin.php:695
|
492 |
-
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
493 |
-
msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
|
494 |
-
|
495 |
-
#: class.bcn_admin.php:629 class.bcn_network_admin.php:701
|
496 |
-
msgid "Date Template"
|
497 |
-
msgstr "Kuupäeva mall"
|
498 |
-
|
499 |
-
#: class.bcn_admin.php:629 class.bcn_network_admin.php:701
|
500 |
-
msgid "The template for date breadcrumbs."
|
501 |
-
msgstr "Kuupäeva teekonna riba mall."
|
502 |
-
|
503 |
-
#: class.bcn_admin.php:630 class.bcn_network_admin.php:702
|
504 |
-
msgid "Date Template (Unlinked)"
|
505 |
-
msgstr "Kuupäeva mall (linkimata)"
|
506 |
-
|
507 |
-
#: class.bcn_admin.php:630 class.bcn_network_admin.php:702
|
508 |
-
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
509 |
-
msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
|
510 |
-
|
511 |
-
#: class.bcn_admin.php:631 class.bcn_network_admin.php:703
|
512 |
-
msgid "Search Template"
|
513 |
-
msgstr "Otsingu mall"
|
514 |
-
|
515 |
-
#: class.bcn_admin.php:631 class.bcn_network_admin.php:703
|
516 |
-
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
517 |
-
msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
|
518 |
-
|
519 |
-
#: class.bcn_admin.php:632 class.bcn_network_admin.php:704
|
520 |
-
msgid "Search Template (Unlinked)"
|
521 |
-
msgstr "Otsingu mall (linkimata)"
|
522 |
-
|
523 |
-
#: class.bcn_admin.php:632 class.bcn_network_admin.php:704
|
524 |
-
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
525 |
-
msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
|
526 |
-
|
527 |
-
#: class.bcn_admin.php:633 class.bcn_network_admin.php:705
|
528 |
-
msgid "404 Title"
|
529 |
-
msgstr "404 pealkiri"
|
530 |
-
|
531 |
-
#: class.bcn_admin.php:634 class.bcn_network_admin.php:706
|
532 |
-
msgid "404 Template"
|
533 |
-
msgstr "404 mall"
|
534 |
-
|
535 |
-
#: class.bcn_admin.php:634 class.bcn_network_admin.php:706
|
536 |
-
msgid "The template for 404 breadcrumbs."
|
537 |
-
msgstr "404 teekonna riba mall."
|
538 |
-
|
539 |
-
#: class.bcn_admin.php:637 class.bcn_network_admin.php:709
|
540 |
-
msgid "Deprecated"
|
541 |
-
msgstr "Taunitud"
|
542 |
-
|
543 |
-
#: class.bcn_admin.php:641 class.bcn_network_admin.php:713
|
544 |
-
msgid "Title Length"
|
545 |
-
msgstr "Pealkirja pikkus"
|
546 |
-
|
547 |
-
#: class.bcn_admin.php:646 class.bcn_network_admin.php:718
|
548 |
-
msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
|
549 |
-
msgstr "Piira teekonna raja pealkirja pikkust. (Taunitud, %suse CSS-i asemel%s)"
|
550 |
-
|
551 |
-
#: class.bcn_admin.php:651 class.bcn_network_admin.php:723
|
552 |
-
msgid "Max Title Length: "
|
553 |
-
msgstr "Lubatud pealkirja pikkus"
|
554 |
-
|
555 |
-
#: class.bcn_admin.php:663 class.bcn_network_admin.php:735
|
556 |
-
msgid "Save Changes"
|
557 |
-
msgstr "Salvesta muudatused"
|
558 |
-
|
559 |
-
#: class.bcn_breadcrumb_trail.php:79
|
560 |
-
msgid "Page %htitle%"
|
561 |
-
msgstr "Leht %htitle%"
|
562 |
-
|
563 |
-
#: class.bcn_breadcrumb_trail.php:102
|
564 |
-
msgid "404"
|
565 |
-
msgstr "404"
|
566 |
-
|
567 |
-
#: class.bcn_breadcrumb_trail.php:105
|
568 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
569 |
-
msgstr "Otsingu tulemused '<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
570 |
-
|
571 |
-
#: class.bcn_breadcrumb_trail.php:107
|
572 |
-
msgid "Search results for '%htitle%'"
|
573 |
-
msgstr "Otsitulemused '%htitle%'"
|
574 |
-
|
575 |
-
#: class.bcn_breadcrumb_trail.php:120
|
576 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
|
577 |
-
msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
|
578 |
-
|
579 |
-
#: class.bcn_breadcrumb_trail.php:122
|
580 |
-
msgid "Articles by: %htitle%"
|
581 |
-
msgstr "Artiklid: %htitle%"
|
582 |
-
|
583 |
-
#: class.bcn_breadcrumb_trail.php:393
|
584 |
-
msgid "$post global is not of type WP_Post"
|
585 |
-
msgstr "$post global ei ole WP_Post tüüp"
|
586 |
-
|
587 |
-
#: class.bcn_network_admin.php:403
|
588 |
-
msgid "Warning: Individual site settings will override any settings set in this page."
|
589 |
-
msgstr "Hoiatus: Eraldiseisvad saidi seaded kirjutavad üle kõik sellel lehel tehtud seadistused."
|
590 |
-
|
591 |
-
#: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
|
592 |
-
msgid "Warning: Individual site settings may override any settings set in this page."
|
593 |
-
msgstr "Hoiatus: Eraldiseisvad saidi seaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
|
594 |
-
|
595 |
-
#: class.bcn_network_admin.php:450
|
596 |
-
msgid "Breadcrumb NavXT Network Settings"
|
597 |
-
msgstr "Breadcrumb NavXT võrgu seaded"
|
598 |
-
|
599 |
-
#: class.bcn_widget.php:32
|
600 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
601 |
-
msgstr "Lisa teekonna rada äärepaanile"
|
602 |
-
|
603 |
-
#: class.bcn_widget.php:99
|
604 |
-
msgid "Title:"
|
605 |
-
msgstr "Nimetus"
|
606 |
-
|
607 |
-
#: class.bcn_widget.php:103
|
608 |
-
msgid "Text to show before the trail:"
|
609 |
-
msgstr "Tekst, mida kuvada enne teekonna rada"
|
610 |
-
|
611 |
-
#: class.bcn_widget.php:107
|
612 |
-
msgid "Output trail as:"
|
613 |
-
msgstr "Väljasta rada kui:"
|
614 |
-
|
615 |
-
#: class.bcn_widget.php:109
|
616 |
-
msgid "List"
|
617 |
-
msgstr "Nimekiri"
|
618 |
-
|
619 |
-
#: class.bcn_widget.php:110
|
620 |
-
msgid "Google (RDFa) Breadcrumbs"
|
621 |
-
msgstr "Google (RDFa) teekonnarada"
|
622 |
-
|
623 |
-
#: class.bcn_widget.php:111
|
624 |
-
msgid "Plain"
|
625 |
-
msgstr "Lihtne"
|
626 |
-
|
627 |
-
#: class.bcn_widget.php:117
|
628 |
-
msgid "Link the breadcrumbs"
|
629 |
-
msgstr "Lisa teekonna rajale lingid"
|
630 |
-
|
631 |
-
#: class.bcn_widget.php:119
|
632 |
-
msgid "Reverse the order of the trail"
|
633 |
-
msgstr "Pööra teekonna rada vastupidi"
|
634 |
-
|
635 |
-
#: class.bcn_widget.php:121
|
636 |
-
msgid "Hide the trail on the front page"
|
637 |
-
msgstr "Peida rada avalehel"
|
638 |
-
|
639 |
-
#: includes/class.mtekk_adminkit.php:225
|
640 |
-
msgid "Settings"
|
641 |
-
msgstr "Seaded"
|
642 |
-
|
643 |
-
#: includes/class.mtekk_adminkit.php:295
|
644 |
-
msgid "Your settings are out of date."
|
645 |
-
msgstr "Sinu seaded on aegunud."
|
646 |
-
|
647 |
-
#: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
|
648 |
-
msgid "Migrate the settings now."
|
649 |
-
msgstr "Suuna seaded ümber."
|
650 |
-
|
651 |
-
#: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
|
652 |
-
msgid "Migrate now."
|
653 |
-
msgstr "Suuna nüüd."
|
654 |
-
|
655 |
-
#: includes/class.mtekk_adminkit.php:304
|
656 |
-
msgid "Your settings are for a newer version."
|
657 |
-
msgstr "Sinu seaded on uuema versiooni jaoks."
|
658 |
-
|
659 |
-
#: includes/class.mtekk_adminkit.php:312
|
660 |
-
msgid "Your plugin install is incomplete."
|
661 |
-
msgstr "Sinu plugina install on lõpetamata."
|
662 |
-
|
663 |
-
#: includes/class.mtekk_adminkit.php:312
|
664 |
-
msgid "Load default settings now."
|
665 |
-
msgstr "Laadi vaikeseaded nüüd."
|
666 |
-
|
667 |
-
#: includes/class.mtekk_adminkit.php:312
|
668 |
-
msgid "Complete now."
|
669 |
-
msgstr "Vii nüüd lõpule."
|
670 |
-
|
671 |
-
#: includes/class.mtekk_adminkit.php:320
|
672 |
-
msgid "Your plugin settings are invalid."
|
673 |
-
msgstr "Sinu plugina seaded on vigased."
|
674 |
-
|
675 |
-
#: includes/class.mtekk_adminkit.php:320
|
676 |
-
msgid "Attempt to fix settings now."
|
677 |
-
msgstr "Püüa parandada seadeid nüüd."
|
678 |
-
|
679 |
-
#: includes/class.mtekk_adminkit.php:320
|
680 |
-
msgid "Fix now."
|
681 |
-
msgstr "Paranda nüüd."
|
682 |
-
|
683 |
-
#: includes/class.mtekk_adminkit.php:503
|
684 |
-
msgid "Settings successfully saved."
|
685 |
-
msgstr "Seaded on edukalt salvestatud."
|
686 |
-
|
687 |
-
#: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
|
688 |
-
msgid "Undo the options save."
|
689 |
-
msgstr "Pööra seadete salvestamine tagasi."
|
690 |
-
|
691 |
-
#: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
|
692 |
-
#: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
|
693 |
-
#: includes/class.mtekk_adminkit.php:662
|
694 |
-
msgid "Undo"
|
695 |
-
msgstr "Pööra tagasi"
|
696 |
-
|
697 |
-
#: includes/class.mtekk_adminkit.php:507
|
698 |
-
msgid "Settings did not change, nothing to save."
|
699 |
-
msgstr "Seadistusi ei salvestatud, polnud midagi salvestada."
|
700 |
-
|
701 |
-
#: includes/class.mtekk_adminkit.php:511
|
702 |
-
msgid "Settings were not saved."
|
703 |
-
msgstr "Seadistusi ei salvestatud."
|
704 |
-
|
705 |
-
#: includes/class.mtekk_adminkit.php:516
|
706 |
-
msgid "Some settings were not saved."
|
707 |
-
msgstr "Mõned seadetest ei salvestunud."
|
708 |
-
|
709 |
-
#: includes/class.mtekk_adminkit.php:517
|
710 |
-
msgid "The following settings were not saved:"
|
711 |
-
msgstr "Järgnevaid seadeid ei salvestatud:"
|
712 |
-
|
713 |
-
#: includes/class.mtekk_adminkit.php:522
|
714 |
-
msgid "Please include this message in your %sbug report%s."
|
715 |
-
msgstr "Palun lisa see sõnum oma %svea raportisse%s."
|
716 |
-
|
717 |
-
#: includes/class.mtekk_adminkit.php:522
|
718 |
-
msgid "Go to the %s support post for your version."
|
719 |
-
msgstr "Mine %s oma versiooni tugi postitusse."
|
720 |
-
|
721 |
-
#: includes/class.mtekk_adminkit.php:621
|
722 |
-
msgid "Settings successfully imported from the uploaded file."
|
723 |
-
msgstr "Seaded imporditi edukalt üleslaetud failist."
|
724 |
-
|
725 |
-
#: includes/class.mtekk_adminkit.php:621
|
726 |
-
msgid "Undo the options import."
|
727 |
-
msgstr "Pööra valikute import tagasi."
|
728 |
-
|
729 |
-
#: includes/class.mtekk_adminkit.php:626
|
730 |
-
msgid "Importing settings from file failed."
|
731 |
-
msgstr "Valikute import failist ebaõnnestus."
|
732 |
-
|
733 |
-
#: includes/class.mtekk_adminkit.php:645
|
734 |
-
msgid "Settings successfully reset to the default values."
|
735 |
-
msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
|
736 |
-
|
737 |
-
#: includes/class.mtekk_adminkit.php:645
|
738 |
-
msgid "Undo the options reset."
|
739 |
-
msgstr "Tühista valikute tagasipööramine."
|
740 |
-
|
741 |
-
#: includes/class.mtekk_adminkit.php:662
|
742 |
-
msgid "Settings successfully undid the last operation."
|
743 |
-
msgstr "Viimase operatsiooni seaded tühistati edukalt."
|
744 |
-
|
745 |
-
#: includes/class.mtekk_adminkit.php:662
|
746 |
-
msgid "Undo the last undo operation."
|
747 |
-
msgstr "Tühista viimane tagasipööramine operatsioon."
|
748 |
-
|
749 |
-
#: includes/class.mtekk_adminkit.php:697
|
750 |
-
msgid "Settings successfully migrated."
|
751 |
-
msgstr "Seaded on edualt suunatud."
|
752 |
-
|
753 |
-
#: includes/class.mtekk_adminkit.php:704
|
754 |
-
msgid "Default settings successfully installed."
|
755 |
-
msgstr "Vaikeseaded on edukalt installeeritud."
|
756 |
-
|
757 |
-
#: includes/class.mtekk_adminkit.php:800
|
758 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
759 |
-
msgstr "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
|
760 |
-
|
761 |
-
#: includes/class.mtekk_adminkit.php:803
|
762 |
-
msgid "Settings File"
|
763 |
-
msgstr "Seadete fail"
|
764 |
-
|
765 |
-
#: includes/class.mtekk_adminkit.php:806
|
766 |
-
msgid "Select a XML settings file to upload and import settings from."
|
767 |
-
msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
|
768 |
-
|
769 |
-
#. Plugin Name of the plugin/theme
|
770 |
-
msgid "Breadcrumb NavXT"
|
771 |
-
msgstr "Breadcrumb NavXT"
|
772 |
-
|
773 |
-
#. Plugin URI of the plugin/theme
|
774 |
-
msgid "http://mtekk.us/code/breadcrumb-navxt/"
|
775 |
-
msgstr "http://mtekk.us/code/breadcrumb-navxt/"
|
776 |
-
|
777 |
-
#. Description of the plugin/theme
|
778 |
-
msgid "Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
|
779 |
-
msgstr "Lisab teekonna raja navigatsiooni, mis kuvab lehe külastajatele asukoha, kus nad hetkel viibivad. Plugina kasutamise kohta saate lähemat infot <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> veebilehelt."
|
780 |
-
|
781 |
-
#. Author of the plugin/theme
|
782 |
-
msgid "John Havlik"
|
783 |
-
msgstr "John Havlik"
|
784 |
-
|
785 |
-
#. Author URI of the plugin/theme
|
786 |
-
msgid "http://mtekk.us/"
|
787 |
-
msgstr "http://mtekk.us/"
|
788 |
-
|
789 |
-
#: breadcrumb-navxt.php:35 class.bcn_admin.php:25
|
790 |
-
#: class.bcn_network_admin.php:25
|
791 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
792 |
-
msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
|
793 |
-
|
794 |
-
#: class.bcn_admin.php:95 class.bcn_network_admin.php:165
|
795 |
-
msgid "Insufficient privileges to proceed."
|
796 |
-
msgstr "Puuduvad õigused, et jätkata."
|
797 |
-
|
798 |
-
#: class.bcn_admin.php:240 class.bcn_network_admin.php:311
|
799 |
-
msgid "Tips for the settings are located below select options."
|
800 |
-
msgstr "Seadete näpunäited paiknevad valikute all."
|
801 |
-
|
802 |
-
#: class.bcn_admin.php:241 class.bcn_network_admin.php:312
|
803 |
-
msgid "Resources"
|
804 |
-
msgstr "Vahendid"
|
805 |
-
|
806 |
-
#: class.bcn_admin.php:242 class.bcn_network_admin.php:313
|
807 |
-
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
808 |
-
msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
|
809 |
-
|
810 |
-
#: class.bcn_admin.php:242 class.bcn_network_admin.php:313
|
811 |
-
msgid "Go to the Breadcrumb NavXT tag archive."
|
812 |
-
msgstr "Mine Breadcrumb NavXT sildi arhiivi."
|
813 |
-
|
814 |
-
#: class.bcn_admin.php:243 class.bcn_network_admin.php:314
|
815 |
-
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
816 |
-
msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
|
817 |
-
|
818 |
-
#: class.bcn_admin.php:243 class.bcn_network_admin.php:314
|
819 |
-
msgid "Go to the Breadcrumb NavXT online documentation"
|
820 |
-
msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
|
821 |
-
|
822 |
-
#: class.bcn_admin.php:244 class.bcn_network_admin.php:315
|
823 |
-
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
824 |
-
msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
|
825 |
-
|
826 |
-
#: class.bcn_admin.php:244 class.bcn_network_admin.php:315
|
827 |
-
msgid "Go to the Breadcrumb NavXT support post for your version."
|
828 |
-
msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
|
829 |
-
|
830 |
-
#: class.bcn_admin.php:245 class.bcn_network_admin.php:316
|
831 |
-
msgid "Giving Back"
|
832 |
-
msgstr "Tagasiandmine"
|
833 |
-
|
834 |
-
#: class.bcn_admin.php:246 class.bcn_network_admin.php:317
|
835 |
-
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
836 |
-
msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt-fi.mo
DELETED
Binary file
|
languages/breadcrumb-navxt-fi.po
DELETED
@@ -1,836 +0,0 @@
|
|
1 |
-
# Translation of Development (trunk) in Finnish
|
2 |
-
# This file is distributed under the same license as the Development (trunk) package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"PO-Revision-Date: 2015-09-15 20:25:04+0000\n"
|
6 |
-
"MIME-Version: 1.0\n"
|
7 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
-
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
-
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
-
"Project-Id-Version: Development (trunk)\n"
|
12 |
-
|
13 |
-
#: class.bcn_breadcrumb.php:91
|
14 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
15 |
-
msgstr ""
|
16 |
-
|
17 |
-
#: class.bcn_breadcrumb_trail.php:110
|
18 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
19 |
-
msgstr ""
|
20 |
-
|
21 |
-
#: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
|
22 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
23 |
-
msgstr ""
|
24 |
-
|
25 |
-
#: class.bcn_breadcrumb_trail.php:127
|
26 |
-
msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: class.bcn_admin.php:246 class.bcn_network_admin.php:317
|
30 |
-
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
31 |
-
msgstr "Siirry PayPal:iin lahjoittamaan Breadcrumb NavXT:n kehitystyölle."
|
32 |
-
|
33 |
-
#: class.bcn_admin.php:247 class.bcn_network_admin.php:318
|
34 |
-
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
35 |
-
msgstr "%sOhjelman kääntäminen%s: Jos käyttämäsi kieli ei vielä ole tuettu, ota yhteyttä John Havlik:iin ja tarjoudu kääntämään se."
|
36 |
-
|
37 |
-
#: class.bcn_admin.php:247 class.bcn_network_admin.php:318
|
38 |
-
msgid "Go to the Breadcrumb NavXT translation project."
|
39 |
-
msgstr "Siirry Breadcrumb NavXT käännösprojektiin."
|
40 |
-
|
41 |
-
#: class.bcn_admin.php:252 class.bcn_admin.php:390 class.bcn_admin.php:391
|
42 |
-
#: class.bcn_network_admin.php:323 class.bcn_network_admin.php:462
|
43 |
-
#: class.bcn_network_admin.php:463
|
44 |
-
msgid "General"
|
45 |
-
msgstr "Yleistä"
|
46 |
-
|
47 |
-
#: class.bcn_admin.php:255 class.bcn_network_admin.php:326
|
48 |
-
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
49 |
-
msgstr "Tämän sivun asetukset tulevat voimaan joko käyttämällä mukana-tullutta Breadcrumb NavXT widgettiä tai lisäämällä toinen alla-olevista koodi-pätkästä käyttämäänne teemaan."
|
50 |
-
|
51 |
-
#: class.bcn_admin.php:256 class.bcn_network_admin.php:327
|
52 |
-
msgid "Breadcrumb trail with separators"
|
53 |
-
msgstr "Murupolku jossa välimerkit"
|
54 |
-
|
55 |
-
#: class.bcn_admin.php:262 class.bcn_network_admin.php:333
|
56 |
-
msgid "Breadcrumb trail in list form"
|
57 |
-
msgstr "Listamuotoinen murupolku"
|
58 |
-
|
59 |
-
#: class.bcn_admin.php:271 class.bcn_network_admin.php:342
|
60 |
-
msgid "Quick Start"
|
61 |
-
msgstr "Pika-aloitus"
|
62 |
-
|
63 |
-
#: class.bcn_admin.php:274 class.bcn_network_admin.php:345
|
64 |
-
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
65 |
-
msgstr "Käyttämällä koodia pikä-aloitus osasta yllä, voit tyylitellä murupolkusi alla-olevan CSS:n kanssa."
|
66 |
-
|
67 |
-
#: class.bcn_admin.php:286 class.bcn_network_admin.php:357
|
68 |
-
msgid "Styling"
|
69 |
-
msgstr "Tyylittely"
|
70 |
-
|
71 |
-
#: class.bcn_admin.php:292 class.bcn_network_admin.php:363
|
72 |
-
msgid "Import/Export/Reset"
|
73 |
-
msgstr "Tuonti/Vienti/Resetointi"
|
74 |
-
|
75 |
-
#: class.bcn_admin.php:316 class.bcn_network_admin.php:387
|
76 |
-
#: includes/class.mtekk_adminkit.php:808
|
77 |
-
msgid "Import"
|
78 |
-
msgstr "Tuonti"
|
79 |
-
|
80 |
-
#: class.bcn_admin.php:317 class.bcn_network_admin.php:388
|
81 |
-
#: includes/class.mtekk_adminkit.php:809
|
82 |
-
msgid "Export"
|
83 |
-
msgstr "Vienti"
|
84 |
-
|
85 |
-
#: class.bcn_admin.php:318 class.bcn_network_admin.php:389
|
86 |
-
#: includes/class.mtekk_adminkit.php:810
|
87 |
-
msgid "Reset"
|
88 |
-
msgstr "Resetointi"
|
89 |
-
|
90 |
-
#: class.bcn_admin.php:336 class.bcn_network_admin.php:421
|
91 |
-
msgid "Warning: Your network settings will override any settings set in this page."
|
92 |
-
msgstr "Varoitus: Verkkoasetuksesi tulevat kumomaan tämän sivun määritykset. "
|
93 |
-
|
94 |
-
#: class.bcn_admin.php:340 class.bcn_admin.php:344
|
95 |
-
msgid "Warning: Your network settings may override any settings set in this page."
|
96 |
-
msgstr "Varoitus: Verkkoasetuksesi voivat kumota tämän sivun määritykset."
|
97 |
-
|
98 |
-
#: class.bcn_admin.php:349 class.bcn_network_admin.php:420
|
99 |
-
msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL."
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: class.bcn_admin.php:361 class.bcn_network_admin.php:433
|
103 |
-
msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous > Deprecated), please %1$suse CSS instead%2$s."
|
104 |
-
msgstr "Varoitus: Käytät vanhentunutta asetusta \"Title Length\" (katso Muut > Vanhentuneet), ole hyvä ja %1$suse käytä CSS:ää sen tilalle%2$s."
|
105 |
-
|
106 |
-
#: class.bcn_admin.php:361 class.bcn_admin.php:646
|
107 |
-
#: class.bcn_network_admin.php:433 class.bcn_network_admin.php:718
|
108 |
-
msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
|
109 |
-
msgstr "Siirry ohjeistukseen miten lyhennät breadcrumb otsikoiden pituutta CSS:llä"
|
110 |
-
|
111 |
-
#: class.bcn_admin.php:378
|
112 |
-
msgid "Breadcrumb NavXT Settings"
|
113 |
-
msgstr "Breadcrumb NavXT asetukset"
|
114 |
-
|
115 |
-
#: class.bcn_admin.php:390 class.bcn_network_admin.php:462
|
116 |
-
msgid "A collection of settings most likely to be modified are located under this tab."
|
117 |
-
msgstr "Yleisemmin muokatut asetukset löytyvät tältä välilehdeltä."
|
118 |
-
|
119 |
-
#: class.bcn_admin.php:394 class.bcn_network_admin.php:466
|
120 |
-
msgid "Breadcrumb Separator"
|
121 |
-
msgstr "Murupolun välimerkki"
|
122 |
-
|
123 |
-
#: class.bcn_admin.php:394 class.bcn_network_admin.php:466
|
124 |
-
msgid "Placed in between each breadcrumb."
|
125 |
-
msgstr "Sijoitetaan jokaisen murun väliin"
|
126 |
-
|
127 |
-
#: class.bcn_admin.php:398 class.bcn_network_admin.php:470
|
128 |
-
msgid "Current Item"
|
129 |
-
msgstr "Nykyinen kohde"
|
130 |
-
|
131 |
-
#: class.bcn_admin.php:401 class.bcn_network_admin.php:473
|
132 |
-
msgid "Link Current Item"
|
133 |
-
msgstr "Nykyinen kohde (linkattu)"
|
134 |
-
|
135 |
-
#: class.bcn_admin.php:401 class.bcn_network_admin.php:473
|
136 |
-
msgid "Yes"
|
137 |
-
msgstr "Kyllä"
|
138 |
-
|
139 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
140 |
-
msgid "Paged Breadcrumb"
|
141 |
-
msgstr "Sivutettu murupolku"
|
142 |
-
|
143 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
144 |
-
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
145 |
-
msgstr "Näytä myös sivutettu murupolku murupolussa."
|
146 |
-
|
147 |
-
#: class.bcn_admin.php:402 class.bcn_network_admin.php:474
|
148 |
-
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
149 |
-
msgstr "Merkkinä siitä että käyttäjä ei ole ensimmäisellä tai sivutetulla artikkelissa/sivussa."
|
150 |
-
|
151 |
-
#: class.bcn_admin.php:403 class.bcn_network_admin.php:475
|
152 |
-
msgid "Paged Template"
|
153 |
-
msgstr "Sivutettu asiakirjamalli"
|
154 |
-
|
155 |
-
#: class.bcn_admin.php:403 class.bcn_network_admin.php:475
|
156 |
-
msgid "The template for paged breadcrumbs."
|
157 |
-
msgstr "Sivutettujen julkaisujen murupolku-asiakirjamalli."
|
158 |
-
|
159 |
-
#: class.bcn_admin.php:407 class.bcn_admin.php:410
|
160 |
-
#: class.bcn_network_admin.php:479 class.bcn_network_admin.php:482
|
161 |
-
msgid "Home Breadcrumb"
|
162 |
-
msgstr "Koti-murunen"
|
163 |
-
|
164 |
-
#: class.bcn_admin.php:410 class.bcn_network_admin.php:482
|
165 |
-
msgid "Place the home breadcrumb in the trail."
|
166 |
-
msgstr "Näytä koti-murunen murupolussa."
|
167 |
-
|
168 |
-
#: class.bcn_admin.php:411 class.bcn_network_admin.php:483
|
169 |
-
msgid "Home Template"
|
170 |
-
msgstr "Koti-lomakepohja"
|
171 |
-
|
172 |
-
#: class.bcn_admin.php:411 class.bcn_network_admin.php:483
|
173 |
-
msgid "The template for the home breadcrumb."
|
174 |
-
msgstr "Lomakepohja koti-muruselle."
|
175 |
-
|
176 |
-
#: class.bcn_admin.php:412 class.bcn_network_admin.php:484
|
177 |
-
msgid "Home Template (Unlinked)"
|
178 |
-
msgstr "Lomakepohja koti-muruselle (ilman linkkiä)"
|
179 |
-
|
180 |
-
#: class.bcn_admin.php:412 class.bcn_network_admin.php:484
|
181 |
-
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
182 |
-
msgstr "Lomakepohja koti-muruselle (murut ilman linkkiä) "
|
183 |
-
|
184 |
-
#: class.bcn_admin.php:416
|
185 |
-
msgid "Blog Breadcrumb "
|
186 |
-
msgstr "Blogin Breadcrumb"
|
187 |
-
|
188 |
-
#: class.bcn_admin.php:419 class.bcn_network_admin.php:488
|
189 |
-
#: class.bcn_network_admin.php:491
|
190 |
-
msgid "Blog Breadcrumb"
|
191 |
-
msgstr "Blogin murupolku"
|
192 |
-
|
193 |
-
#: class.bcn_admin.php:419 class.bcn_network_admin.php:491
|
194 |
-
msgid "Place the blog breadcrumb in the trail."
|
195 |
-
msgstr "Lisää blogin murupolku loppuun."
|
196 |
-
|
197 |
-
#: class.bcn_admin.php:420 class.bcn_network_admin.php:492
|
198 |
-
msgid "Blog Template"
|
199 |
-
msgstr "Blogin lomakepohja"
|
200 |
-
|
201 |
-
#: class.bcn_admin.php:420 class.bcn_network_admin.php:492
|
202 |
-
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
-
msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteessa)."
|
204 |
-
|
205 |
-
#: class.bcn_admin.php:421 class.bcn_network_admin.php:493
|
206 |
-
msgid "Blog Template (Unlinked)"
|
207 |
-
msgstr "Blogin lomakepohja (ilman linkkejä)"
|
208 |
-
|
209 |
-
#: class.bcn_admin.php:421 class.bcn_network_admin.php:493
|
210 |
-
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
-
msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteissa jossa murupolku ei ole linkattu)."
|
212 |
-
|
213 |
-
#: class.bcn_admin.php:425 class.bcn_network_admin.php:497
|
214 |
-
msgid "Mainsite Breadcrumb"
|
215 |
-
msgstr "Pääsivuston murupolku"
|
216 |
-
|
217 |
-
#: class.bcn_admin.php:428 class.bcn_network_admin.php:500
|
218 |
-
msgid "Main Site Breadcrumb"
|
219 |
-
msgstr "Pääsivuston murupolku"
|
220 |
-
|
221 |
-
#: class.bcn_admin.php:428 class.bcn_network_admin.php:500
|
222 |
-
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
223 |
-
msgstr "Lisää pääsivuston muru polkuun moni-sivusto ympäristössä."
|
224 |
-
|
225 |
-
#: class.bcn_admin.php:429 class.bcn_network_admin.php:501
|
226 |
-
msgid "Main Site Home Template"
|
227 |
-
msgstr "Pääsivuston etusivu-lomakepohja"
|
228 |
-
|
229 |
-
#: class.bcn_admin.php:429 class.bcn_network_admin.php:501
|
230 |
-
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
-
msgstr "Pääsivuston etusivu-murupolkun lomakepohja (käytettän moni-sivusto ympäristössä)."
|
232 |
-
|
233 |
-
#: class.bcn_admin.php:430 class.bcn_network_admin.php:502
|
234 |
-
msgid "Main Site Home Template (Unlinked)"
|
235 |
-
msgstr "Pääsivuston etusivu-lomakepohja (ilman linkkejä)"
|
236 |
-
|
237 |
-
#: class.bcn_admin.php:430 class.bcn_network_admin.php:502
|
238 |
-
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
-
msgstr "Pääsivuston etusivu-lomakepohja (käytetään moni-sivusto ympäristössä jossa murupolut eivät ole linkattu)."
|
240 |
-
|
241 |
-
#: class.bcn_admin.php:437 class.bcn_network_admin.php:509
|
242 |
-
msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
|
243 |
-
msgstr "Tämän välilehden alla löytyy kaikkien sivujen, artikkeleiden ja kustomoitujen artikkelityypien asetukset."
|
244 |
-
|
245 |
-
#: class.bcn_admin.php:437 class.bcn_network_admin.php:509
|
246 |
-
msgid "Post Types"
|
247 |
-
msgstr "Julkaisun tyyppi"
|
248 |
-
|
249 |
-
#: class.bcn_admin.php:438 class.bcn_network_admin.php:510
|
250 |
-
msgid "Posts"
|
251 |
-
msgstr "Julkaisut"
|
252 |
-
|
253 |
-
#: class.bcn_admin.php:441 class.bcn_network_admin.php:513
|
254 |
-
msgid "Post Template"
|
255 |
-
msgstr "Artikkelin asiakirjamalli"
|
256 |
-
|
257 |
-
#: class.bcn_admin.php:441 class.bcn_network_admin.php:513
|
258 |
-
msgid "The template for post breadcrumbs."
|
259 |
-
msgstr "Artikkelien murupolkujen asiakirjamalli."
|
260 |
-
|
261 |
-
#: class.bcn_admin.php:442 class.bcn_network_admin.php:514
|
262 |
-
msgid "Post Template (Unlinked)"
|
263 |
-
msgstr "Artikkelin asiakirjamalli (ilman linkkejä)"
|
264 |
-
|
265 |
-
#: class.bcn_admin.php:442 class.bcn_network_admin.php:514
|
266 |
-
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
267 |
-
msgstr "Asiakirjamalli artikkelien murupolulle (käytetään vain silloin kun murupolku ei ole linkattu)."
|
268 |
-
|
269 |
-
#: class.bcn_admin.php:443 class.bcn_network_admin.php:515
|
270 |
-
msgid "Post Hierarchy Display"
|
271 |
-
msgstr "Näytä Julkaisun hierarkia"
|
272 |
-
|
273 |
-
#: class.bcn_admin.php:443 class.bcn_network_admin.php:515
|
274 |
-
msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
|
275 |
-
msgstr "Näytä hierarkia (tarkennettu alla) joka johtaa blogin breadcrumb-polkuun."
|
276 |
-
|
277 |
-
#: class.bcn_admin.php:447 class.bcn_network_admin.php:519
|
278 |
-
msgid "Post Hierarchy"
|
279 |
-
msgstr "Julkaisun hierarkia"
|
280 |
-
|
281 |
-
#: class.bcn_admin.php:451 class.bcn_admin.php:569
|
282 |
-
#: class.bcn_network_admin.php:523 class.bcn_network_admin.php:641
|
283 |
-
msgid "Categories"
|
284 |
-
msgstr "Kategoriat"
|
285 |
-
|
286 |
-
#: class.bcn_admin.php:452 class.bcn_admin.php:530
|
287 |
-
#: class.bcn_network_admin.php:524 class.bcn_network_admin.php:602
|
288 |
-
msgid "Dates"
|
289 |
-
msgstr "Päivämäärät"
|
290 |
-
|
291 |
-
#: class.bcn_admin.php:453 class.bcn_admin.php:576
|
292 |
-
#: class.bcn_network_admin.php:525 class.bcn_network_admin.php:648
|
293 |
-
msgid "Tags"
|
294 |
-
msgstr "Tägit"
|
295 |
-
|
296 |
-
#: class.bcn_admin.php:455 class.bcn_admin.php:529
|
297 |
-
#: class.bcn_network_admin.php:527 class.bcn_network_admin.php:601
|
298 |
-
msgid "Post Parent"
|
299 |
-
msgstr "Julkaisun ylempi taso"
|
300 |
-
|
301 |
-
#: class.bcn_admin.php:471 class.bcn_admin.php:554
|
302 |
-
#: class.bcn_network_admin.php:543 class.bcn_network_admin.php:626
|
303 |
-
msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
|
304 |
-
msgstr "Hierarkia jonka murupolku näyttää. Huomioi että vaihtoehto \"Artikkelin yläpuolella oleva taso\" saattaa vaatia toisen lisäpalikan asennuksen."
|
305 |
-
|
306 |
-
#: class.bcn_admin.php:475 class.bcn_network_admin.php:547
|
307 |
-
msgid "Pages"
|
308 |
-
msgstr "Sivut"
|
309 |
-
|
310 |
-
#: class.bcn_admin.php:478 class.bcn_network_admin.php:550
|
311 |
-
msgid "Page Template"
|
312 |
-
msgstr "Sivun asiakirjamalli"
|
313 |
-
|
314 |
-
#: class.bcn_admin.php:478 class.bcn_network_admin.php:550
|
315 |
-
msgid "The template for page breadcrumbs."
|
316 |
-
msgstr "Sivun murupolun asiakirjamalli."
|
317 |
-
|
318 |
-
#: class.bcn_admin.php:479 class.bcn_network_admin.php:551
|
319 |
-
msgid "Page Template (Unlinked)"
|
320 |
-
msgstr "Sivun asiakirjamalli (ilman linkkiä)"
|
321 |
-
|
322 |
-
#: class.bcn_admin.php:479 class.bcn_network_admin.php:551
|
323 |
-
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
324 |
-
msgstr "Murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä."
|
325 |
-
|
326 |
-
#: class.bcn_admin.php:482 class.bcn_network_admin.php:554
|
327 |
-
msgid "Attachments"
|
328 |
-
msgstr "Liitetiedostot"
|
329 |
-
|
330 |
-
#: class.bcn_admin.php:485 class.bcn_network_admin.php:557
|
331 |
-
msgid "Attachment Template"
|
332 |
-
msgstr "Liitteen lomakepohja"
|
333 |
-
|
334 |
-
#: class.bcn_admin.php:485 class.bcn_network_admin.php:557
|
335 |
-
msgid "The template for attachment breadcrumbs."
|
336 |
-
msgstr "Lomakepohja liitteen murupolulle."
|
337 |
-
|
338 |
-
#: class.bcn_admin.php:486 class.bcn_network_admin.php:558
|
339 |
-
msgid "Attachment Template (Unlinked)"
|
340 |
-
msgstr "Liitteen lomakepohja (linkkaamaton)"
|
341 |
-
|
342 |
-
#: class.bcn_admin.php:486 class.bcn_network_admin.php:558
|
343 |
-
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
344 |
-
msgstr "Liitteen murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä. "
|
345 |
-
|
346 |
-
#: class.bcn_admin.php:506 class.bcn_admin.php:607
|
347 |
-
#: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
|
348 |
-
msgid "%s Template"
|
349 |
-
msgstr "%s Lomakepohja"
|
350 |
-
|
351 |
-
#: class.bcn_admin.php:506 class.bcn_admin.php:607
|
352 |
-
#: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
|
353 |
-
msgid "The template for %s breadcrumbs."
|
354 |
-
msgstr "Lomakepohja %s murupolulle."
|
355 |
-
|
356 |
-
#: class.bcn_admin.php:507 class.bcn_admin.php:608
|
357 |
-
#: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
|
358 |
-
msgid "%s Template (Unlinked)"
|
359 |
-
msgstr "%s Lomakepohja (linkkaamaton)"
|
360 |
-
|
361 |
-
#: class.bcn_admin.php:507 class.bcn_admin.php:608
|
362 |
-
#: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
|
363 |
-
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
364 |
-
msgstr "Lomakepohja %s murupolulle, jota käytetään vain silloin kun murupolku ei käytä linkkejä. "
|
365 |
-
|
366 |
-
#: class.bcn_admin.php:512 class.bcn_network_admin.php:584
|
367 |
-
msgid "%s Root Page"
|
368 |
-
msgstr "%s Aloitussivu"
|
369 |
-
|
370 |
-
#: class.bcn_admin.php:515 class.bcn_network_admin.php:587
|
371 |
-
msgid "— Select —"
|
372 |
-
msgstr "— Valitse —"
|
373 |
-
|
374 |
-
#: class.bcn_admin.php:519 class.bcn_network_admin.php:591
|
375 |
-
msgid "%s Archive Display"
|
376 |
-
msgstr "%s Arkistonäkymä"
|
377 |
-
|
378 |
-
#: class.bcn_admin.php:519 class.bcn_network_admin.php:591
|
379 |
-
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
380 |
-
msgstr "Näytä murupolku %s artikkelityypin arkistolle murupolussa."
|
381 |
-
|
382 |
-
#: class.bcn_admin.php:520 class.bcn_network_admin.php:592
|
383 |
-
msgid "%s Hierarchy Display"
|
384 |
-
msgstr "%s Hieraria näkymä"
|
385 |
-
|
386 |
-
#: class.bcn_admin.php:520 class.bcn_network_admin.php:592
|
387 |
-
msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
|
388 |
-
msgstr "Näytä hierarkia (tarkennettu alla) joka johtaa %s:han breadcrumb-polussa."
|
389 |
-
|
390 |
-
#: class.bcn_admin.php:524 class.bcn_network_admin.php:596
|
391 |
-
msgid "%s Hierarchy"
|
392 |
-
msgstr "%s Hierarkia"
|
393 |
-
|
394 |
-
#: class.bcn_admin.php:550 class.bcn_network_admin.php:622
|
395 |
-
msgid "The hierarchy which the breadcrumb trail will show."
|
396 |
-
msgstr "Hierarkia jota murupolku näyttää."
|
397 |
-
|
398 |
-
#: class.bcn_admin.php:568 class.bcn_network_admin.php:640
|
399 |
-
msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
|
400 |
-
msgstr "Asetukset kaikille tietoluokille (mukaan lukien Kategoriat, Tunnisteet, ja räätälöidyt tietoluokat) sijaitsevat tässä välilehdessä."
|
401 |
-
|
402 |
-
#: class.bcn_admin.php:568 class.bcn_network_admin.php:640
|
403 |
-
msgid "Taxonomies"
|
404 |
-
msgstr "Tietoluokat"
|
405 |
-
|
406 |
-
#: class.bcn_admin.php:572 class.bcn_network_admin.php:644
|
407 |
-
msgid "Category Template"
|
408 |
-
msgstr "Kategorialomakepohja"
|
409 |
-
|
410 |
-
#: class.bcn_admin.php:572 class.bcn_network_admin.php:644
|
411 |
-
msgid "The template for category breadcrumbs."
|
412 |
-
msgstr "Kategoria murupolun lomakepohja."
|
413 |
-
|
414 |
-
#: class.bcn_admin.php:573 class.bcn_network_admin.php:645
|
415 |
-
msgid "Category Template (Unlinked)"
|
416 |
-
msgstr "Kategorialomakepohja (linkkamaton)"
|
417 |
-
|
418 |
-
#: class.bcn_admin.php:573 class.bcn_network_admin.php:645
|
419 |
-
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
420 |
-
msgstr "Kategoria murupolun lomakepohja, jota käytetään vain silloin kun murupolku on linkkamaton."
|
421 |
-
|
422 |
-
#: class.bcn_admin.php:579 class.bcn_network_admin.php:651
|
423 |
-
msgid "Tag Template"
|
424 |
-
msgstr "Tägi lomakepohja"
|
425 |
-
|
426 |
-
#: class.bcn_admin.php:579 class.bcn_network_admin.php:651
|
427 |
-
msgid "The template for tag breadcrumbs."
|
428 |
-
msgstr "Lomakepohja tägi murupoluille."
|
429 |
-
|
430 |
-
#: class.bcn_admin.php:580 class.bcn_network_admin.php:652
|
431 |
-
msgid "Tag Template (Unlinked)"
|
432 |
-
msgstr "Tägi lomakepohja (linkkamaton)"
|
433 |
-
|
434 |
-
#: class.bcn_admin.php:580 class.bcn_network_admin.php:652
|
435 |
-
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
436 |
-
msgstr "Lomakepohja tägi murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
|
437 |
-
|
438 |
-
#: class.bcn_admin.php:583 class.bcn_network_admin.php:655
|
439 |
-
msgid "Post Formats"
|
440 |
-
msgstr "Julkaisuformaatit"
|
441 |
-
|
442 |
-
#: class.bcn_admin.php:586 class.bcn_network_admin.php:658
|
443 |
-
msgid "Post Format Template"
|
444 |
-
msgstr "Artikkelin/sivun mallipohja"
|
445 |
-
|
446 |
-
#: class.bcn_admin.php:586 class.bcn_network_admin.php:658
|
447 |
-
msgid "The template for post format breadcrumbs."
|
448 |
-
msgstr "Murupolkujen mallipohja (artikkelit/sivut)"
|
449 |
-
|
450 |
-
#: class.bcn_admin.php:587 class.bcn_network_admin.php:659
|
451 |
-
msgid "Post Format Template (Unlinked)"
|
452 |
-
msgstr "Artikkelin/sivun mallipohja (ilman linkkiä)"
|
453 |
-
|
454 |
-
#: class.bcn_admin.php:587 class.bcn_network_admin.php:659
|
455 |
-
msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
|
456 |
-
msgstr "Murupolkujen mallipohja (artikkelit/sivut) jota käytetään kun niissä ei ole linkkejä"
|
457 |
-
|
458 |
-
#: class.bcn_admin.php:617 class.bcn_network_admin.php:689
|
459 |
-
msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
|
460 |
-
msgstr "Asetukset kirjoittaja ja päivämäärä kokoelmille, hauille ja 404-sivuille löytyvät tästä välilehdestä."
|
461 |
-
|
462 |
-
#: class.bcn_admin.php:617 class.bcn_admin.php:626
|
463 |
-
#: class.bcn_network_admin.php:689 class.bcn_network_admin.php:698
|
464 |
-
msgid "Miscellaneous"
|
465 |
-
msgstr "Muut"
|
466 |
-
|
467 |
-
#: class.bcn_admin.php:618 class.bcn_network_admin.php:690
|
468 |
-
msgid "Author Archives"
|
469 |
-
msgstr "Kirjoittajan kokoelmat"
|
470 |
-
|
471 |
-
#: class.bcn_admin.php:621 class.bcn_network_admin.php:693
|
472 |
-
msgid "Author Template"
|
473 |
-
msgstr "Kirjoittaja lomakepohja"
|
474 |
-
|
475 |
-
#: class.bcn_admin.php:621 class.bcn_network_admin.php:693
|
476 |
-
msgid "The template for author breadcrumbs."
|
477 |
-
msgstr "Lomakepohja kirjoittajan murupoluille."
|
478 |
-
|
479 |
-
#: class.bcn_admin.php:622 class.bcn_network_admin.php:694
|
480 |
-
msgid "Author Template (Unlinked)"
|
481 |
-
msgstr "Kirjoittaja lomakepohja (linkkamaton)"
|
482 |
-
|
483 |
-
#: class.bcn_admin.php:622 class.bcn_network_admin.php:694
|
484 |
-
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
485 |
-
msgstr "Lomakepohja kirjoittaja lomakepohjalle, jota käytetään vain silloin kun murupolku on linkkaamaton."
|
486 |
-
|
487 |
-
#: class.bcn_admin.php:623 class.bcn_network_admin.php:695
|
488 |
-
msgid "Author Display Format"
|
489 |
-
msgstr "Kirjoittaja näkymä"
|
490 |
-
|
491 |
-
#: class.bcn_admin.php:623 class.bcn_network_admin.php:695
|
492 |
-
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
493 |
-
msgstr "display_name käyttää nimeä määritelty kohdassa \"Display name publicly as\" kohdassa käyttäjäprofiili jota käytetään muussa viestinnässä kohdassa käyttäjäprofiili."
|
494 |
-
|
495 |
-
#: class.bcn_admin.php:629 class.bcn_network_admin.php:701
|
496 |
-
msgid "Date Template"
|
497 |
-
msgstr "Päiväys lomakepohja"
|
498 |
-
|
499 |
-
#: class.bcn_admin.php:629 class.bcn_network_admin.php:701
|
500 |
-
msgid "The template for date breadcrumbs."
|
501 |
-
msgstr "Päiväys murupolun lomakepohja."
|
502 |
-
|
503 |
-
#: class.bcn_admin.php:630 class.bcn_network_admin.php:702
|
504 |
-
msgid "Date Template (Unlinked)"
|
505 |
-
msgstr "Päiväys lomakepohja (linkkamaton)"
|
506 |
-
|
507 |
-
#: class.bcn_admin.php:630 class.bcn_network_admin.php:702
|
508 |
-
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
509 |
-
msgstr "Lomakepohja päiväys murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
|
510 |
-
|
511 |
-
#: class.bcn_admin.php:631 class.bcn_network_admin.php:703
|
512 |
-
msgid "Search Template"
|
513 |
-
msgstr "Haku lomakepohja"
|
514 |
-
|
515 |
-
#: class.bcn_admin.php:631 class.bcn_network_admin.php:703
|
516 |
-
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
517 |
-
msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun."
|
518 |
-
|
519 |
-
#: class.bcn_admin.php:632 class.bcn_network_admin.php:704
|
520 |
-
msgid "Search Template (Unlinked)"
|
521 |
-
msgstr "Haku lomakepohja (linkkamaton)"
|
522 |
-
|
523 |
-
#: class.bcn_admin.php:632 class.bcn_network_admin.php:704
|
524 |
-
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
525 |
-
msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun ja murupolku on linkkamaton."
|
526 |
-
|
527 |
-
#: class.bcn_admin.php:633 class.bcn_network_admin.php:705
|
528 |
-
msgid "404 Title"
|
529 |
-
msgstr "404 Otsikko"
|
530 |
-
|
531 |
-
#: class.bcn_admin.php:634 class.bcn_network_admin.php:706
|
532 |
-
msgid "404 Template"
|
533 |
-
msgstr "404 lomakepohja"
|
534 |
-
|
535 |
-
#: class.bcn_admin.php:634 class.bcn_network_admin.php:706
|
536 |
-
msgid "The template for 404 breadcrumbs."
|
537 |
-
msgstr "Lomakepohja 404 murupoluille."
|
538 |
-
|
539 |
-
#: class.bcn_admin.php:637 class.bcn_network_admin.php:709
|
540 |
-
msgid "Deprecated"
|
541 |
-
msgstr "Vanhentunut"
|
542 |
-
|
543 |
-
#: class.bcn_admin.php:641 class.bcn_network_admin.php:713
|
544 |
-
msgid "Title Length"
|
545 |
-
msgstr "Otsikon pituus"
|
546 |
-
|
547 |
-
#: class.bcn_admin.php:646 class.bcn_network_admin.php:718
|
548 |
-
msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
|
549 |
-
msgstr "Rajoita breadcrumb otsikon pituutta. (Vanhentunut, %suse käytä CSS sen tilalla%s)"
|
550 |
-
|
551 |
-
#: class.bcn_admin.php:651 class.bcn_network_admin.php:723
|
552 |
-
msgid "Max Title Length: "
|
553 |
-
msgstr "Suurin sallittu otsikon pituus:"
|
554 |
-
|
555 |
-
#: class.bcn_admin.php:663 class.bcn_network_admin.php:735
|
556 |
-
msgid "Save Changes"
|
557 |
-
msgstr "Tallenna muutokset"
|
558 |
-
|
559 |
-
#: class.bcn_breadcrumb_trail.php:79
|
560 |
-
msgid "Page %htitle%"
|
561 |
-
msgstr "Sivu %htitle%"
|
562 |
-
|
563 |
-
#: class.bcn_breadcrumb_trail.php:102
|
564 |
-
msgid "404"
|
565 |
-
msgstr "404"
|
566 |
-
|
567 |
-
#: class.bcn_breadcrumb_trail.php:105
|
568 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
569 |
-
msgstr "Hakutulokset '<a title=\"Siirry hakutulosten ensimmäiselle sivulle %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
570 |
-
|
571 |
-
#: class.bcn_breadcrumb_trail.php:107
|
572 |
-
msgid "Search results for '%htitle%'"
|
573 |
-
msgstr "'%htitle%' hakutulokset"
|
574 |
-
|
575 |
-
#: class.bcn_breadcrumb_trail.php:120
|
576 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
|
577 |
-
msgstr "Kirjoittajan artikkelit: <a title=\"Siirry ensimmäiselle sivulle tuloksia jossa kirjoittaja on %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
|
578 |
-
|
579 |
-
#: class.bcn_breadcrumb_trail.php:122
|
580 |
-
msgid "Articles by: %htitle%"
|
581 |
-
msgstr "Artikkelit kirjoittajalta: %htitle%"
|
582 |
-
|
583 |
-
#: class.bcn_breadcrumb_trail.php:393
|
584 |
-
msgid "$post global is not of type WP_Post"
|
585 |
-
msgstr "$post global ei ole typpiä WP_Post"
|
586 |
-
|
587 |
-
#: class.bcn_network_admin.php:403
|
588 |
-
msgid "Warning: Individual site settings will override any settings set in this page."
|
589 |
-
msgstr "Varoitus: Verkkosivukohtaiset asetukset kumoavat tämä sivun määritykset."
|
590 |
-
|
591 |
-
#: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
|
592 |
-
msgid "Warning: Individual site settings may override any settings set in this page."
|
593 |
-
msgstr "Varoitus: Verkkosivukohtaiset asetukset saattavat kumota tämä sivun määritykset."
|
594 |
-
|
595 |
-
#: class.bcn_network_admin.php:450
|
596 |
-
msgid "Breadcrumb NavXT Network Settings"
|
597 |
-
msgstr "Breadcrumb NavXT verkkoasetukset"
|
598 |
-
|
599 |
-
#: class.bcn_widget.php:32
|
600 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
601 |
-
msgstr "Lisää murupolun sivupalkkiin"
|
602 |
-
|
603 |
-
#: class.bcn_widget.php:99
|
604 |
-
msgid "Title:"
|
605 |
-
msgstr "Otsikko:"
|
606 |
-
|
607 |
-
#: class.bcn_widget.php:103
|
608 |
-
msgid "Text to show before the trail:"
|
609 |
-
msgstr "Näytä tämä teksti ennen murupolkua:"
|
610 |
-
|
611 |
-
#: class.bcn_widget.php:107
|
612 |
-
msgid "Output trail as:"
|
613 |
-
msgstr "Näitä murupolku näin:"
|
614 |
-
|
615 |
-
#: class.bcn_widget.php:109
|
616 |
-
msgid "List"
|
617 |
-
msgstr "Lista"
|
618 |
-
|
619 |
-
#: class.bcn_widget.php:110
|
620 |
-
msgid "Google (RDFa) Breadcrumbs"
|
621 |
-
msgstr "Google (RDFa) Murupolut"
|
622 |
-
|
623 |
-
#: class.bcn_widget.php:111
|
624 |
-
msgid "Plain"
|
625 |
-
msgstr "Riisuttu"
|
626 |
-
|
627 |
-
#: class.bcn_widget.php:117
|
628 |
-
msgid "Link the breadcrumbs"
|
629 |
-
msgstr "Lisää murupolkuun linkit"
|
630 |
-
|
631 |
-
#: class.bcn_widget.php:119
|
632 |
-
msgid "Reverse the order of the trail"
|
633 |
-
msgstr "Näytä polku kääneisessä järjestyksessä"
|
634 |
-
|
635 |
-
#: class.bcn_widget.php:121
|
636 |
-
msgid "Hide the trail on the front page"
|
637 |
-
msgstr "Piilota etusivulta murupolku"
|
638 |
-
|
639 |
-
#: includes/class.mtekk_adminkit.php:225
|
640 |
-
msgid "Settings"
|
641 |
-
msgstr "Asetukset"
|
642 |
-
|
643 |
-
#: includes/class.mtekk_adminkit.php:295
|
644 |
-
msgid "Your settings are out of date."
|
645 |
-
msgstr "Asetuksesi ovat vanhentuneet."
|
646 |
-
|
647 |
-
#: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
|
648 |
-
msgid "Migrate the settings now."
|
649 |
-
msgstr "Päivitä asetuksesi nyt."
|
650 |
-
|
651 |
-
#: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
|
652 |
-
msgid "Migrate now."
|
653 |
-
msgstr "Päivitä nyt."
|
654 |
-
|
655 |
-
#: includes/class.mtekk_adminkit.php:304
|
656 |
-
msgid "Your settings are for a newer version."
|
657 |
-
msgstr "Asetuksesi ovat uudemmalle versiolle."
|
658 |
-
|
659 |
-
#: includes/class.mtekk_adminkit.php:312
|
660 |
-
msgid "Your plugin install is incomplete."
|
661 |
-
msgstr "Apuohjelman asennus on kesken."
|
662 |
-
|
663 |
-
#: includes/class.mtekk_adminkit.php:312
|
664 |
-
msgid "Load default settings now."
|
665 |
-
msgstr "Ota käyttöön oletus-asetukset."
|
666 |
-
|
667 |
-
#: includes/class.mtekk_adminkit.php:312
|
668 |
-
msgid "Complete now."
|
669 |
-
msgstr "Viimeistele nyt."
|
670 |
-
|
671 |
-
#: includes/class.mtekk_adminkit.php:320
|
672 |
-
msgid "Your plugin settings are invalid."
|
673 |
-
msgstr "Apuohjelman asetukset ovat epäkelvot."
|
674 |
-
|
675 |
-
#: includes/class.mtekk_adminkit.php:320
|
676 |
-
msgid "Attempt to fix settings now."
|
677 |
-
msgstr "Yritä korjata asetukset nyt."
|
678 |
-
|
679 |
-
#: includes/class.mtekk_adminkit.php:320
|
680 |
-
msgid "Fix now."
|
681 |
-
msgstr "Korjaa nyt."
|
682 |
-
|
683 |
-
#: includes/class.mtekk_adminkit.php:503
|
684 |
-
msgid "Settings successfully saved."
|
685 |
-
msgstr "Asetukset tallenettu onnistuneesti."
|
686 |
-
|
687 |
-
#: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
|
688 |
-
msgid "Undo the options save."
|
689 |
-
msgstr "Peruuta asetusten tallennus."
|
690 |
-
|
691 |
-
#: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
|
692 |
-
#: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
|
693 |
-
#: includes/class.mtekk_adminkit.php:662
|
694 |
-
msgid "Undo"
|
695 |
-
msgstr "Peruuta"
|
696 |
-
|
697 |
-
#: includes/class.mtekk_adminkit.php:507
|
698 |
-
msgid "Settings did not change, nothing to save."
|
699 |
-
msgstr "Asetukset eivät ole muuttuneet, ei mitään tallennettavaa."
|
700 |
-
|
701 |
-
#: includes/class.mtekk_adminkit.php:511
|
702 |
-
msgid "Settings were not saved."
|
703 |
-
msgstr "Asetukset eivät tallentuneet."
|
704 |
-
|
705 |
-
#: includes/class.mtekk_adminkit.php:516
|
706 |
-
msgid "Some settings were not saved."
|
707 |
-
msgstr "Joitain asetuksia ei voitu tallentaa."
|
708 |
-
|
709 |
-
#: includes/class.mtekk_adminkit.php:517
|
710 |
-
msgid "The following settings were not saved:"
|
711 |
-
msgstr "Seuraavat asetukset eivät voitu tallentaa:"
|
712 |
-
|
713 |
-
#: includes/class.mtekk_adminkit.php:522
|
714 |
-
msgid "Please include this message in your %sbug report%s."
|
715 |
-
msgstr "Liitä %sbug report%s:iin tämä viesti."
|
716 |
-
|
717 |
-
#: includes/class.mtekk_adminkit.php:522
|
718 |
-
msgid "Go to the %s support post for your version."
|
719 |
-
msgstr "Siirry %s tukisivulle versiollesi."
|
720 |
-
|
721 |
-
#: includes/class.mtekk_adminkit.php:621
|
722 |
-
msgid "Settings successfully imported from the uploaded file."
|
723 |
-
msgstr "Asetusten tuonti onnistui ladatulta tiedostolta."
|
724 |
-
|
725 |
-
#: includes/class.mtekk_adminkit.php:621
|
726 |
-
msgid "Undo the options import."
|
727 |
-
msgstr "Peruuta asetusten tuonti."
|
728 |
-
|
729 |
-
#: includes/class.mtekk_adminkit.php:626
|
730 |
-
msgid "Importing settings from file failed."
|
731 |
-
msgstr "Asetusten tuonti tiedostosta epäonnistui."
|
732 |
-
|
733 |
-
#: includes/class.mtekk_adminkit.php:645
|
734 |
-
msgid "Settings successfully reset to the default values."
|
735 |
-
msgstr "Asetukset onnistuneesti palautettu oletusarvoille."
|
736 |
-
|
737 |
-
#: includes/class.mtekk_adminkit.php:645
|
738 |
-
msgid "Undo the options reset."
|
739 |
-
msgstr "Peruuta asetusten resetointi."
|
740 |
-
|
741 |
-
#: includes/class.mtekk_adminkit.php:662
|
742 |
-
msgid "Settings successfully undid the last operation."
|
743 |
-
msgstr "Viimeisin asetusten muutos onnistuneesti peruutettu."
|
744 |
-
|
745 |
-
#: includes/class.mtekk_adminkit.php:662
|
746 |
-
msgid "Undo the last undo operation."
|
747 |
-
msgstr "Peruuta viimeisin muutos."
|
748 |
-
|
749 |
-
#: includes/class.mtekk_adminkit.php:697
|
750 |
-
msgid "Settings successfully migrated."
|
751 |
-
msgstr "Asetukset onnistuneesti muunnettu."
|
752 |
-
|
753 |
-
#: includes/class.mtekk_adminkit.php:704
|
754 |
-
msgid "Default settings successfully installed."
|
755 |
-
msgstr "Oletusasetukset onnistuneesti asennettu."
|
756 |
-
|
757 |
-
#: includes/class.mtekk_adminkit.php:800
|
758 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
759 |
-
msgstr "Tuo asetukset XML tiedostosta, Vie nykyiset asetukset XML tiedostoon tai palauta perusasetukset."
|
760 |
-
|
761 |
-
#: includes/class.mtekk_adminkit.php:803
|
762 |
-
msgid "Settings File"
|
763 |
-
msgstr "Asetus-tiedosto"
|
764 |
-
|
765 |
-
#: includes/class.mtekk_adminkit.php:806
|
766 |
-
msgid "Select a XML settings file to upload and import settings from."
|
767 |
-
msgstr "Valitse XML asetustiedosto ladattavaksi."
|
768 |
-
|
769 |
-
#. Plugin Name of the plugin/theme
|
770 |
-
msgid "Breadcrumb NavXT"
|
771 |
-
msgstr "Breadcrumb NavXT murupolut"
|
772 |
-
|
773 |
-
#. Plugin URI of the plugin/theme
|
774 |
-
msgid "http://mtekk.us/code/breadcrumb-navxt/"
|
775 |
-
msgstr "http://mtekk.us/code/breadcrumb-navxt/"
|
776 |
-
|
777 |
-
#. Description of the plugin/theme
|
778 |
-
msgid "Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
|
779 |
-
msgstr "Lisää vierailijan toistaiseksi kulkema polku . Lisätietoja tämän apuohjelman käytöstä löytyy täältä: <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
|
780 |
-
|
781 |
-
#. Author of the plugin/theme
|
782 |
-
msgid "John Havlik"
|
783 |
-
msgstr "John Havlik"
|
784 |
-
|
785 |
-
#. Author URI of the plugin/theme
|
786 |
-
msgid "http://mtekk.us/"
|
787 |
-
msgstr "http://mtekk.us/"
|
788 |
-
|
789 |
-
#: breadcrumb-navxt.php:35 class.bcn_admin.php:25
|
790 |
-
#: class.bcn_network_admin.php:25
|
791 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
792 |
-
msgstr "PHP versio on liian vanha, päivitä se uudempaan versioon. Nykyversio on %1$s, Breadcrumb NavXT vaatii version %2$s"
|
793 |
-
|
794 |
-
#: class.bcn_admin.php:95 class.bcn_network_admin.php:165
|
795 |
-
msgid "Insufficient privileges to proceed."
|
796 |
-
msgstr "Oikeudet eivät riitä jatkamaan."
|
797 |
-
|
798 |
-
#: class.bcn_admin.php:240 class.bcn_network_admin.php:311
|
799 |
-
msgid "Tips for the settings are located below select options."
|
800 |
-
msgstr "Jokaisen vaihtoehdon alla näkyy vihjeita sen käytöstä."
|
801 |
-
|
802 |
-
#: class.bcn_admin.php:241 class.bcn_network_admin.php:312
|
803 |
-
msgid "Resources"
|
804 |
-
msgstr "Resurssit"
|
805 |
-
|
806 |
-
#: class.bcn_admin.php:242 class.bcn_network_admin.php:313
|
807 |
-
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
808 |
-
msgstr "%sOhjeita ja esimerkkejä%s: Ohjelman tekijän kotisivuilta löydät runsaasti oppaita, opetusohjeita sekä miten tehdään kirjoituksia."
|
809 |
-
|
810 |
-
#: class.bcn_admin.php:242 class.bcn_network_admin.php:313
|
811 |
-
msgid "Go to the Breadcrumb NavXT tag archive."
|
812 |
-
msgstr "Siirry Breadcrumb NavXT tägi-arkistoon."
|
813 |
-
|
814 |
-
#: class.bcn_admin.php:243 class.bcn_network_admin.php:314
|
815 |
-
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
816 |
-
msgstr "%sDokumentaatio verkossa%s:Tarkista verkkosivuilta tarkemmat dokumentaatiot."
|
817 |
-
|
818 |
-
#: class.bcn_admin.php:243 class.bcn_network_admin.php:314
|
819 |
-
msgid "Go to the Breadcrumb NavXT online documentation"
|
820 |
-
msgstr "Siirry Breadcrumb NavXT dokumentaatioon verkossa"
|
821 |
-
|
822 |
-
#: class.bcn_admin.php:244 class.bcn_network_admin.php:315
|
823 |
-
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
824 |
-
msgstr "%sVirheraportit%s: Jos uskot löytäneen ohjemasta virheen muista mainita käytössä-olevan WordPress versiosi sekä kuvauksen miten löysit virheen."
|
825 |
-
|
826 |
-
#: class.bcn_admin.php:244 class.bcn_network_admin.php:315
|
827 |
-
msgid "Go to the Breadcrumb NavXT support post for your version."
|
828 |
-
msgstr "Siirry Breadcrumb NavXT tuki-raportointiin käyttämälle versiollesi."
|
829 |
-
|
830 |
-
#: class.bcn_admin.php:245 class.bcn_network_admin.php:316
|
831 |
-
msgid "Giving Back"
|
832 |
-
msgstr "Vasta-lahjoitus"
|
833 |
-
|
834 |
-
#: class.bcn_admin.php:246 class.bcn_network_admin.php:317
|
835 |
-
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
836 |
-
msgstr "%sLahjoita%s: Jos nautit Breadcrumb NavXT:sta ja haluat tukea sen kehitystä, harkitse tarjota kehittelijälle oluen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Breadcrumb NavXT 5.3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/breadcrumb-navxt\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
@@ -19,648 +19,644 @@ msgid ""
|
|
19 |
"is %1$s, Breadcrumb NavXT requires %2$s"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: class.bcn_admin.php:
|
23 |
-
msgid "
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: class.bcn_admin.php:
|
27 |
msgid "Tips for the settings are located below select options."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: class.bcn_admin.php:
|
31 |
msgid "Resources"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: class.bcn_admin.php:
|
35 |
msgid ""
|
36 |
"%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
|
37 |
"available on the author's website."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: class.bcn_admin.php:
|
41 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: class.bcn_admin.php:
|
45 |
msgid ""
|
46 |
"%sOnline Documentation%s: Check out the documentation for more indepth "
|
47 |
"technical information."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: class.bcn_admin.php:
|
51 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: class.bcn_admin.php:
|
55 |
msgid ""
|
56 |
"%sReport a Bug%s: If you think you have found a bug, please include your "
|
57 |
"WordPress version and details on how to reproduce the bug."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: class.bcn_admin.php:
|
61 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: class.bcn_admin.php:
|
65 |
msgid "Giving Back"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: class.bcn_admin.php:
|
69 |
msgid ""
|
70 |
"%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
|
71 |
"buying the author a beer."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: class.bcn_admin.php:
|
75 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: class.bcn_admin.php:
|
79 |
msgid ""
|
80 |
-
"%sTranslate%s: Is your language not available?
|
81 |
-
"translating."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: class.bcn_admin.php:
|
85 |
msgid "Go to the Breadcrumb NavXT translation project."
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: class.bcn_admin.php:
|
89 |
-
#: class.bcn_network_admin.php:
|
90 |
-
#: class.bcn_network_admin.php:
|
91 |
msgid "General"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: class.bcn_admin.php:
|
95 |
msgid ""
|
96 |
"For the settings on this page to take effect, you must either use the "
|
97 |
"included Breadcrumb NavXT widget, or place either of the code sections below "
|
98 |
"into your theme."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: class.bcn_admin.php:
|
102 |
msgid "Breadcrumb trail with separators"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: class.bcn_admin.php:
|
106 |
msgid "Breadcrumb trail in list form"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: class.bcn_admin.php:
|
110 |
msgid "Quick Start"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: class.bcn_admin.php:
|
114 |
msgid ""
|
115 |
"Using the code from the Quick Start section above, the following CSS can be "
|
116 |
"used as base for styling your breadcrumb trail."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: class.bcn_admin.php:
|
120 |
msgid "Styling"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: class.bcn_admin.php:
|
124 |
msgid "Import/Export/Reset"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: class.bcn_admin.php:
|
128 |
-
#: includes/class.mtekk_adminkit.php:
|
129 |
msgid "Import"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: class.bcn_admin.php:
|
133 |
-
#: includes/class.mtekk_adminkit.php:
|
134 |
msgid "Export"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: class.bcn_admin.php:
|
138 |
-
#: includes/class.mtekk_adminkit.php:
|
139 |
msgid "Reset"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: class.bcn_admin.php:
|
143 |
msgid ""
|
144 |
"Warning: Your network settings will override any settings set in this page."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: class.bcn_admin.php:
|
148 |
msgid ""
|
149 |
"Warning: Your network settings may override any settings set in this page."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: class.bcn_admin.php:
|
153 |
msgid ""
|
154 |
"Warning: No BCN_SETTINGS_* define statement found, defaulting to "
|
155 |
"BCN_SETTINGS_USE_LOCAL."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: class.bcn_admin.php:
|
159 |
msgid ""
|
160 |
"Warning: Your are using a deprecated setting \"Title Length\" (see "
|
161 |
"Miscellaneous > Deprecated), please %1$suse CSS instead%2$s."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: class.bcn_admin.php:
|
165 |
-
#: class.bcn_network_admin.php:
|
166 |
msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: class.bcn_admin.php:
|
170 |
-
msgid "Breadcrumb NavXT Settings"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: class.bcn_admin.php:388 class.bcn_network_admin.php:459
|
174 |
msgid ""
|
175 |
"A collection of settings most likely to be modified are located under this "
|
176 |
"tab."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: class.bcn_admin.php:
|
180 |
msgid "Breadcrumb Separator"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: class.bcn_admin.php:
|
184 |
msgid "Placed in between each breadcrumb."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: class.bcn_admin.php:
|
188 |
msgid "Current Item"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: class.bcn_admin.php:
|
192 |
msgid "Link Current Item"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: class.bcn_admin.php:
|
196 |
msgid "Yes"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: class.bcn_admin.php:
|
|
|
|
|
200 |
msgid "Paged Breadcrumb"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: class.bcn_admin.php:
|
204 |
-
msgid "
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: class.bcn_admin.php:
|
208 |
msgid ""
|
209 |
-
"Indicates that the user is on a page other than the first
|
210 |
-
"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: class.bcn_admin.php:
|
|
|
|
|
214 |
msgid "Paged Template"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: class.bcn_admin.php:
|
218 |
msgid "The template for paged breadcrumbs."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: class.bcn_admin.php:
|
222 |
-
#: class.bcn_network_admin.php:
|
223 |
msgid "Home Breadcrumb"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: class.bcn_admin.php:
|
227 |
msgid "Place the home breadcrumb in the trail."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: class.bcn_admin.php:
|
231 |
msgid "Home Template"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: class.bcn_admin.php:
|
235 |
msgid "The template for the home breadcrumb."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: class.bcn_admin.php:
|
239 |
msgid "Home Template (Unlinked)"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: class.bcn_admin.php:
|
243 |
msgid ""
|
244 |
"The template for the home breadcrumb, used when the breadcrumb is not linked."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: class.bcn_admin.php:
|
248 |
-
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: class.bcn_admin.php:417 class.bcn_network_admin.php:485
|
252 |
-
#: class.bcn_network_admin.php:488
|
253 |
msgid "Blog Breadcrumb"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: class.bcn_admin.php:
|
257 |
msgid "Place the blog breadcrumb in the trail."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: class.bcn_admin.php:
|
261 |
msgid "Blog Template"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: class.bcn_admin.php:
|
265 |
msgid ""
|
266 |
"The template for the blog breadcrumb, used only in static front page "
|
267 |
"environments."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: class.bcn_admin.php:
|
271 |
msgid "Blog Template (Unlinked)"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: class.bcn_admin.php:
|
275 |
msgid ""
|
276 |
"The template for the blog breadcrumb, used only in static front page "
|
277 |
"environments and when the breadcrumb is not linked."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: class.bcn_admin.php:
|
281 |
msgid "Mainsite Breadcrumb"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: class.bcn_admin.php:
|
285 |
msgid "Main Site Breadcrumb"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: class.bcn_admin.php:
|
289 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: class.bcn_admin.php:
|
293 |
msgid "Main Site Home Template"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: class.bcn_admin.php:
|
297 |
msgid ""
|
298 |
"The template for the main site home breadcrumb, used only in multisite "
|
299 |
"environments."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: class.bcn_admin.php:
|
303 |
msgid "Main Site Home Template (Unlinked)"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: class.bcn_admin.php:
|
307 |
msgid ""
|
308 |
"The template for the main site home breadcrumb, used only in multisite "
|
309 |
"environments and when the breadcrumb is not linked."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: class.bcn_admin.php:
|
313 |
msgid ""
|
314 |
"The settings for all post types (Posts, Pages, and Custom Post Types) are "
|
315 |
"located under this tab."
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: class.bcn_admin.php:
|
319 |
msgid "Post Types"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: class.bcn_admin.php:
|
323 |
msgid "Posts"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: class.bcn_admin.php:
|
327 |
msgid "Post Template"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: class.bcn_admin.php:
|
331 |
msgid "The template for post breadcrumbs."
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: class.bcn_admin.php:
|
335 |
msgid "Post Template (Unlinked)"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: class.bcn_admin.php:
|
339 |
msgid ""
|
340 |
"The template for post breadcrumbs, used only when the breadcrumb is not "
|
341 |
"linked."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: class.bcn_admin.php:
|
345 |
msgid "Post Hierarchy Display"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: class.bcn_admin.php:
|
349 |
msgid ""
|
350 |
"Show the hierarchy (specified below) leading to a post in the breadcrumb "
|
351 |
"trail."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: class.bcn_admin.php:
|
355 |
msgid "Post Hierarchy"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: class.bcn_admin.php:
|
359 |
-
#: class.bcn_network_admin.php:
|
360 |
msgid "Categories"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: class.bcn_admin.php:
|
364 |
-
#: class.bcn_network_admin.php:
|
365 |
msgid "Dates"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: class.bcn_admin.php:
|
369 |
-
#: class.bcn_network_admin.php:
|
370 |
msgid "Tags"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: class.bcn_admin.php:
|
374 |
-
#: class.bcn_network_admin.php:
|
375 |
msgid "Post Parent"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: class.bcn_admin.php:
|
379 |
-
#: class.bcn_network_admin.php:
|
380 |
msgid ""
|
381 |
"The hierarchy which the breadcrumb trail will show. Note that the \"Post "
|
382 |
"Parent\" option may require an additional plugin to behave as expected since "
|
383 |
"this is a non-hierarchical post type."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: class.bcn_admin.php:
|
387 |
msgid "Pages"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: class.bcn_admin.php:
|
391 |
msgid "Page Template"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: class.bcn_admin.php:
|
395 |
msgid "The template for page breadcrumbs."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: class.bcn_admin.php:
|
399 |
msgid "Page Template (Unlinked)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: class.bcn_admin.php:
|
403 |
msgid ""
|
404 |
"The template for page breadcrumbs, used only when the breadcrumb is not "
|
405 |
"linked."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: class.bcn_admin.php:
|
409 |
msgid "Attachments"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: class.bcn_admin.php:
|
413 |
msgid "Attachment Template"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: class.bcn_admin.php:
|
417 |
msgid "The template for attachment breadcrumbs."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: class.bcn_admin.php:
|
421 |
msgid "Attachment Template (Unlinked)"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: class.bcn_admin.php:
|
425 |
msgid ""
|
426 |
"The template for attachment breadcrumbs, used only when the breadcrumb is "
|
427 |
"not linked."
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: class.bcn_admin.php:
|
431 |
-
#: class.bcn_network_admin.php:
|
432 |
msgid "%s Template"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: class.bcn_admin.php:
|
436 |
-
#: class.bcn_network_admin.php:
|
437 |
msgid "The template for %s breadcrumbs."
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: class.bcn_admin.php:
|
441 |
-
#: class.bcn_network_admin.php:
|
442 |
msgid "%s Template (Unlinked)"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: class.bcn_admin.php:
|
446 |
-
#: class.bcn_network_admin.php:
|
447 |
msgid ""
|
448 |
"The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: class.bcn_admin.php:
|
452 |
msgid "%s Root Page"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: class.bcn_admin.php:
|
456 |
msgid "— Select —"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: class.bcn_admin.php:
|
460 |
msgid "%s Archive Display"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: class.bcn_admin.php:
|
464 |
msgid ""
|
465 |
"Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: class.bcn_admin.php:
|
469 |
msgid "%s Hierarchy Display"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: class.bcn_admin.php:
|
473 |
msgid ""
|
474 |
"Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: class.bcn_admin.php:
|
478 |
msgid "%s Hierarchy"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: class.bcn_admin.php:
|
482 |
msgid "The hierarchy which the breadcrumb trail will show."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: class.bcn_admin.php:
|
486 |
msgid ""
|
487 |
"The settings for all taxonomies (including Categories, Tags, and custom "
|
488 |
"taxonomies) are located under this tab."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: class.bcn_admin.php:
|
492 |
msgid "Taxonomies"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: class.bcn_admin.php:
|
496 |
msgid "Category Template"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: class.bcn_admin.php:
|
500 |
msgid "The template for category breadcrumbs."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: class.bcn_admin.php:
|
504 |
msgid "Category Template (Unlinked)"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: class.bcn_admin.php:
|
508 |
msgid ""
|
509 |
"The template for category breadcrumbs, used only when the breadcrumb is not "
|
510 |
"linked."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: class.bcn_admin.php:
|
514 |
msgid "Tag Template"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: class.bcn_admin.php:
|
518 |
msgid "The template for tag breadcrumbs."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: class.bcn_admin.php:
|
522 |
msgid "Tag Template (Unlinked)"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: class.bcn_admin.php:
|
526 |
msgid ""
|
527 |
"The template for tag breadcrumbs, used only when the breadcrumb is not "
|
528 |
"linked."
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: class.bcn_admin.php:
|
532 |
msgid "Post Formats"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: class.bcn_admin.php:
|
536 |
msgid "Post Format Template"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: class.bcn_admin.php:
|
540 |
msgid "The template for post format breadcrumbs."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: class.bcn_admin.php:
|
544 |
msgid "Post Format Template (Unlinked)"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: class.bcn_admin.php:
|
548 |
msgid ""
|
549 |
"The template for post_format breadcrumbs, used only when the breadcrumb is "
|
550 |
"not linked."
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: class.bcn_admin.php:
|
554 |
msgid ""
|
555 |
"The settings for author and date archives, searches, and 404 pages are "
|
556 |
"located under this tab."
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: class.bcn_admin.php:
|
560 |
-
#: class.bcn_network_admin.php:
|
561 |
msgid "Miscellaneous"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: class.bcn_admin.php:
|
565 |
msgid "Author Archives"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: class.bcn_admin.php:
|
569 |
msgid "Author Template"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: class.bcn_admin.php:
|
573 |
msgid "The template for author breadcrumbs."
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: class.bcn_admin.php:
|
577 |
msgid "Author Template (Unlinked)"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: class.bcn_admin.php:
|
581 |
msgid ""
|
582 |
"The template for author breadcrumbs, used only when the breadcrumb is not "
|
583 |
"linked."
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: class.bcn_admin.php:
|
587 |
msgid "Author Display Format"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: class.bcn_admin.php:
|
591 |
msgid ""
|
592 |
"display_name uses the name specified in \"Display name publicly as\" under "
|
593 |
"the user profile the others correspond to options in the user profile."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: class.bcn_admin.php:
|
597 |
msgid "Date Template"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: class.bcn_admin.php:
|
601 |
msgid "The template for date breadcrumbs."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: class.bcn_admin.php:
|
605 |
msgid "Date Template (Unlinked)"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: class.bcn_admin.php:
|
609 |
msgid ""
|
610 |
"The template for date breadcrumbs, used only when the breadcrumb is not "
|
611 |
"linked."
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: class.bcn_admin.php:
|
615 |
msgid "Search Template"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: class.bcn_admin.php:
|
619 |
msgid ""
|
620 |
"The anchor template for search breadcrumbs, used only when the search "
|
621 |
"results span several pages."
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: class.bcn_admin.php:
|
625 |
msgid "Search Template (Unlinked)"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: class.bcn_admin.php:
|
629 |
msgid ""
|
630 |
"The anchor template for search breadcrumbs, used only when the search "
|
631 |
"results span several pages and the breadcrumb is not linked."
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: class.bcn_admin.php:
|
635 |
msgid "404 Title"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: class.bcn_admin.php:
|
639 |
msgid "404 Template"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: class.bcn_admin.php:
|
643 |
msgid "The template for 404 breadcrumbs."
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: class.bcn_admin.php:
|
647 |
msgid "Deprecated"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: class.bcn_admin.php:
|
651 |
msgid "Title Length"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: class.bcn_admin.php:
|
655 |
msgid ""
|
656 |
"Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: class.bcn_admin.php:
|
660 |
msgid "Max Title Length: "
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: class.bcn_admin.php:
|
664 |
msgid "Save Changes"
|
665 |
msgstr ""
|
666 |
|
@@ -672,25 +668,25 @@ msgid ""
|
|
672 |
"content=\"%position%\"></span>"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: class.bcn_breadcrumb_trail.php:
|
676 |
msgid "Page %htitle%"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: class.bcn_breadcrumb_trail.php:
|
680 |
msgid "404"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: class.bcn_breadcrumb_trail.php:
|
684 |
msgid ""
|
685 |
"Search results for '<a title=\"Go to the first page of search results "
|
686 |
"for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: class.bcn_breadcrumb_trail.php:
|
690 |
msgid "Search results for '%htitle%'"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: class.bcn_breadcrumb_trail.php:
|
694 |
msgid ""
|
695 |
"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
|
696 |
"typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" "
|
@@ -698,7 +694,7 @@ msgid ""
|
|
698 |
"\"position\" content=\"%position%\"></span>"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: class.bcn_breadcrumb_trail.php:
|
702 |
msgid ""
|
703 |
"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
|
704 |
"typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" "
|
@@ -706,17 +702,17 @@ msgid ""
|
|
706 |
"\"position\" content=\"%position%\"></span>"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: class.bcn_breadcrumb_trail.php:
|
710 |
msgid ""
|
711 |
"Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
|
712 |
"\"%link%\" class=\"%type%\">%htitle%</a>"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: class.bcn_breadcrumb_trail.php:
|
716 |
msgid "Articles by: %htitle%"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: class.bcn_breadcrumb_trail.php:
|
720 |
msgid ""
|
721 |
"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
|
722 |
"typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href="
|
@@ -724,25 +720,40 @@ msgid ""
|
|
724 |
"property=\"position\" content=\"%position%\"></span>"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: class.bcn_breadcrumb_trail.php:
|
728 |
msgid "$post global is not of type WP_Post"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
732 |
msgid ""
|
733 |
"Warning: Individual site settings will override any settings set in this "
|
734 |
"page."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: class.bcn_network_admin.php:
|
738 |
msgid ""
|
739 |
"Warning: Individual site settings may override any settings set in this page."
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: class.bcn_network_admin.php:447
|
743 |
-
msgid "Breadcrumb NavXT Network Settings"
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
#: class.bcn_widget.php:32
|
747 |
msgid "Adds a breadcrumb trail to your sidebar"
|
748 |
msgstr ""
|
@@ -783,135 +794,145 @@ msgstr ""
|
|
783 |
msgid "Hide the trail on the front page"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: includes/class.mtekk_adminkit.php:
|
|
|
|
|
|
|
|
|
787 |
msgid "Settings"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: includes/class.mtekk_adminkit.php:
|
791 |
-
msgid "
|
|
|
|
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: includes/class.mtekk_adminkit.php:
|
795 |
msgid "Migrate the settings now."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: includes/class.mtekk_adminkit.php:
|
799 |
msgid "Migrate now."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: includes/class.mtekk_adminkit.php:
|
803 |
-
msgid "Your settings are for a newer version."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: includes/class.mtekk_adminkit.php:
|
|
|
|
|
|
|
|
|
807 |
msgid "Your plugin install is incomplete."
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: includes/class.mtekk_adminkit.php:
|
811 |
msgid "Load default settings now."
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/class.mtekk_adminkit.php:
|
815 |
msgid "Complete now."
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: includes/class.mtekk_adminkit.php:
|
819 |
-
msgid "
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: includes/class.mtekk_adminkit.php:
|
823 |
msgid "Attempt to fix settings now."
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: includes/class.mtekk_adminkit.php:
|
827 |
msgid "Fix now."
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: includes/class.mtekk_adminkit.php:
|
831 |
msgid "Settings successfully saved."
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: includes/class.mtekk_adminkit.php:
|
835 |
msgid "Undo the options save."
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/class.mtekk_adminkit.php:
|
839 |
-
#: includes/class.mtekk_adminkit.php:
|
840 |
-
#: includes/class.mtekk_adminkit.php:
|
841 |
msgid "Undo"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: includes/class.mtekk_adminkit.php:
|
845 |
msgid "Settings did not change, nothing to save."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: includes/class.mtekk_adminkit.php:
|
849 |
msgid "Settings were not saved."
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: includes/class.mtekk_adminkit.php:
|
853 |
msgid "Some settings were not saved."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: includes/class.mtekk_adminkit.php:
|
857 |
msgid "The following settings were not saved:"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: includes/class.mtekk_adminkit.php:
|
861 |
msgid "Please include this message in your %sbug report%s."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: includes/class.mtekk_adminkit.php:
|
865 |
msgid "Go to the %s support post for your version."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: includes/class.mtekk_adminkit.php:
|
869 |
msgid "Settings successfully imported from the uploaded file."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: includes/class.mtekk_adminkit.php:
|
873 |
msgid "Undo the options import."
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/class.mtekk_adminkit.php:
|
877 |
msgid "Importing settings from file failed."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/class.mtekk_adminkit.php:
|
881 |
msgid "Settings successfully reset to the default values."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/class.mtekk_adminkit.php:
|
885 |
msgid "Undo the options reset."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/class.mtekk_adminkit.php:
|
889 |
msgid "Settings successfully undid the last operation."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/class.mtekk_adminkit.php:
|
893 |
msgid "Undo the last undo operation."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/class.mtekk_adminkit.php:
|
897 |
msgid "Settings successfully migrated."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/class.mtekk_adminkit.php:
|
901 |
msgid "Default settings successfully installed."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/class.mtekk_adminkit.php:
|
905 |
msgid ""
|
906 |
"Import settings from a XML file, export the current settings to a XML file, "
|
907 |
"or reset to the default settings."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: includes/class.mtekk_adminkit.php:
|
911 |
msgid "Settings File"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: includes/class.mtekk_adminkit.php:
|
915 |
msgid "Select a XML settings file to upload and import settings from."
|
916 |
msgstr ""
|
917 |
|
1 |
+
# Copyright (C) 2016 Breadcrumb NavXT
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Breadcrumb NavXT 5.3.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/breadcrumb-navxt\n"
|
7 |
+
"POT-Creation-Date: 2016-02-26 22:48:23+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
19 |
"is %1$s, Breadcrumb NavXT requires %2$s"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: class.bcn_admin.php:64
|
23 |
+
msgid "Breadcrumb NavXT Settings"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: class.bcn_admin.php:256 class.bcn_network_admin.php:326
|
27 |
msgid "Tips for the settings are located below select options."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: class.bcn_admin.php:257 class.bcn_network_admin.php:327
|
31 |
msgid "Resources"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: class.bcn_admin.php:258 class.bcn_network_admin.php:328
|
35 |
msgid ""
|
36 |
"%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
|
37 |
"available on the author's website."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: class.bcn_admin.php:258 class.bcn_network_admin.php:328
|
41 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: class.bcn_admin.php:259 class.bcn_network_admin.php:329
|
45 |
msgid ""
|
46 |
"%sOnline Documentation%s: Check out the documentation for more indepth "
|
47 |
"technical information."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: class.bcn_admin.php:259 class.bcn_network_admin.php:329
|
51 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: class.bcn_admin.php:260 class.bcn_network_admin.php:330
|
55 |
msgid ""
|
56 |
"%sReport a Bug%s: If you think you have found a bug, please include your "
|
57 |
"WordPress version and details on how to reproduce the bug."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: class.bcn_admin.php:260 class.bcn_network_admin.php:330
|
61 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: class.bcn_admin.php:261 class.bcn_network_admin.php:331
|
65 |
msgid "Giving Back"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: class.bcn_admin.php:262 class.bcn_network_admin.php:332
|
69 |
msgid ""
|
70 |
"%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
|
71 |
"buying the author a beer."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: class.bcn_admin.php:262 class.bcn_network_admin.php:332
|
75 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: class.bcn_admin.php:263 class.bcn_network_admin.php:333
|
79 |
msgid ""
|
80 |
+
"%sTranslate%s: Is your language not available? Visit the Breadcrumb NavXT "
|
81 |
+
"translation project on WordPress.org to start translating."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: class.bcn_admin.php:263 class.bcn_network_admin.php:333
|
85 |
msgid "Go to the Breadcrumb NavXT translation project."
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: class.bcn_admin.php:268 class.bcn_admin.php:406 class.bcn_admin.php:407
|
89 |
+
#: class.bcn_network_admin.php:338 class.bcn_network_admin.php:477
|
90 |
+
#: class.bcn_network_admin.php:478
|
91 |
msgid "General"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: class.bcn_admin.php:271 class.bcn_network_admin.php:341
|
95 |
msgid ""
|
96 |
"For the settings on this page to take effect, you must either use the "
|
97 |
"included Breadcrumb NavXT widget, or place either of the code sections below "
|
98 |
"into your theme."
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: class.bcn_admin.php:272 class.bcn_network_admin.php:342
|
102 |
msgid "Breadcrumb trail with separators"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: class.bcn_admin.php:278 class.bcn_network_admin.php:348
|
106 |
msgid "Breadcrumb trail in list form"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: class.bcn_admin.php:287 class.bcn_network_admin.php:357
|
110 |
msgid "Quick Start"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: class.bcn_admin.php:290 class.bcn_network_admin.php:360
|
114 |
msgid ""
|
115 |
"Using the code from the Quick Start section above, the following CSS can be "
|
116 |
"used as base for styling your breadcrumb trail."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: class.bcn_admin.php:302 class.bcn_network_admin.php:372
|
120 |
msgid "Styling"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: class.bcn_admin.php:308 class.bcn_network_admin.php:378
|
124 |
msgid "Import/Export/Reset"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: class.bcn_admin.php:332 class.bcn_network_admin.php:402
|
128 |
+
#: includes/class.mtekk_adminkit.php:841
|
129 |
msgid "Import"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: class.bcn_admin.php:333 class.bcn_network_admin.php:403
|
133 |
+
#: includes/class.mtekk_adminkit.php:842
|
134 |
msgid "Export"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: class.bcn_admin.php:334 class.bcn_network_admin.php:404
|
138 |
+
#: includes/class.mtekk_adminkit.php:843
|
139 |
msgid "Reset"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: class.bcn_admin.php:352
|
143 |
msgid ""
|
144 |
"Warning: Your network settings will override any settings set in this page."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: class.bcn_admin.php:356 class.bcn_admin.php:360
|
148 |
msgid ""
|
149 |
"Warning: Your network settings may override any settings set in this page."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: class.bcn_admin.php:365 class.bcn_network_admin.php:435
|
153 |
msgid ""
|
154 |
"Warning: No BCN_SETTINGS_* define statement found, defaulting to "
|
155 |
"BCN_SETTINGS_USE_LOCAL."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: class.bcn_admin.php:377 class.bcn_network_admin.php:448
|
159 |
msgid ""
|
160 |
"Warning: Your are using a deprecated setting \"Title Length\" (see "
|
161 |
"Miscellaneous > Deprecated), please %1$suse CSS instead%2$s."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: class.bcn_admin.php:377 class.bcn_admin.php:662
|
165 |
+
#: class.bcn_network_admin.php:448 class.bcn_network_admin.php:733
|
166 |
msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: class.bcn_admin.php:406 class.bcn_network_admin.php:477
|
|
|
|
|
|
|
|
|
170 |
msgid ""
|
171 |
"A collection of settings most likely to be modified are located under this "
|
172 |
"tab."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: class.bcn_admin.php:410 class.bcn_network_admin.php:481
|
176 |
msgid "Breadcrumb Separator"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: class.bcn_admin.php:410 class.bcn_network_admin.php:481
|
180 |
msgid "Placed in between each breadcrumb."
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: class.bcn_admin.php:414 class.bcn_network_admin.php:485
|
184 |
msgid "Current Item"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: class.bcn_admin.php:417 class.bcn_network_admin.php:488
|
188 |
msgid "Link Current Item"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: class.bcn_admin.php:417 class.bcn_network_admin.php:488
|
192 |
msgid "Yes"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: class.bcn_admin.php:418 class.bcn_network_admin.php:489
|
196 |
+
msgctxt ""
|
197 |
+
"Paged as in when on an archive or post that is split into multiple pages"
|
198 |
msgid "Paged Breadcrumb"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: class.bcn_admin.php:418 class.bcn_network_admin.php:489
|
202 |
+
msgid "Place the page number breadcrumb in the trail."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: class.bcn_admin.php:418 class.bcn_network_admin.php:489
|
206 |
msgid ""
|
207 |
+
"Indicates that the user is on a page other than the first of a paginated "
|
208 |
+
"archive or post."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: class.bcn_admin.php:419 class.bcn_network_admin.php:490
|
212 |
+
msgctxt ""
|
213 |
+
"Paged as in when on an archive or post that is split into multiple pages"
|
214 |
msgid "Paged Template"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: class.bcn_admin.php:419 class.bcn_network_admin.php:490
|
218 |
msgid "The template for paged breadcrumbs."
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: class.bcn_admin.php:423 class.bcn_admin.php:426
|
222 |
+
#: class.bcn_network_admin.php:494 class.bcn_network_admin.php:497
|
223 |
msgid "Home Breadcrumb"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: class.bcn_admin.php:426 class.bcn_network_admin.php:497
|
227 |
msgid "Place the home breadcrumb in the trail."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: class.bcn_admin.php:427 class.bcn_network_admin.php:498
|
231 |
msgid "Home Template"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: class.bcn_admin.php:427 class.bcn_network_admin.php:498
|
235 |
msgid "The template for the home breadcrumb."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: class.bcn_admin.php:428 class.bcn_network_admin.php:499
|
239 |
msgid "Home Template (Unlinked)"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: class.bcn_admin.php:428 class.bcn_network_admin.php:499
|
243 |
msgid ""
|
244 |
"The template for the home breadcrumb, used when the breadcrumb is not linked."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: class.bcn_admin.php:432 class.bcn_admin.php:435
|
248 |
+
#: class.bcn_network_admin.php:503 class.bcn_network_admin.php:506
|
|
|
|
|
|
|
|
|
249 |
msgid "Blog Breadcrumb"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: class.bcn_admin.php:435 class.bcn_network_admin.php:506
|
253 |
msgid "Place the blog breadcrumb in the trail."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: class.bcn_admin.php:436 class.bcn_network_admin.php:507
|
257 |
msgid "Blog Template"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: class.bcn_admin.php:436 class.bcn_network_admin.php:507
|
261 |
msgid ""
|
262 |
"The template for the blog breadcrumb, used only in static front page "
|
263 |
"environments."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: class.bcn_admin.php:437 class.bcn_network_admin.php:508
|
267 |
msgid "Blog Template (Unlinked)"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: class.bcn_admin.php:437 class.bcn_network_admin.php:508
|
271 |
msgid ""
|
272 |
"The template for the blog breadcrumb, used only in static front page "
|
273 |
"environments and when the breadcrumb is not linked."
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: class.bcn_admin.php:441 class.bcn_network_admin.php:512
|
277 |
msgid "Mainsite Breadcrumb"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: class.bcn_admin.php:444 class.bcn_network_admin.php:515
|
281 |
msgid "Main Site Breadcrumb"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: class.bcn_admin.php:444 class.bcn_network_admin.php:515
|
285 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: class.bcn_admin.php:445 class.bcn_network_admin.php:516
|
289 |
msgid "Main Site Home Template"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: class.bcn_admin.php:445 class.bcn_network_admin.php:516
|
293 |
msgid ""
|
294 |
"The template for the main site home breadcrumb, used only in multisite "
|
295 |
"environments."
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: class.bcn_admin.php:446 class.bcn_network_admin.php:517
|
299 |
msgid "Main Site Home Template (Unlinked)"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: class.bcn_admin.php:446 class.bcn_network_admin.php:517
|
303 |
msgid ""
|
304 |
"The template for the main site home breadcrumb, used only in multisite "
|
305 |
"environments and when the breadcrumb is not linked."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: class.bcn_admin.php:453 class.bcn_network_admin.php:524
|
309 |
msgid ""
|
310 |
"The settings for all post types (Posts, Pages, and Custom Post Types) are "
|
311 |
"located under this tab."
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: class.bcn_admin.php:453 class.bcn_network_admin.php:524
|
315 |
msgid "Post Types"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: class.bcn_admin.php:454 class.bcn_network_admin.php:525
|
319 |
msgid "Posts"
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: class.bcn_admin.php:457 class.bcn_network_admin.php:528
|
323 |
msgid "Post Template"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: class.bcn_admin.php:457 class.bcn_network_admin.php:528
|
327 |
msgid "The template for post breadcrumbs."
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: class.bcn_admin.php:458 class.bcn_network_admin.php:529
|
331 |
msgid "Post Template (Unlinked)"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: class.bcn_admin.php:458 class.bcn_network_admin.php:529
|
335 |
msgid ""
|
336 |
"The template for post breadcrumbs, used only when the breadcrumb is not "
|
337 |
"linked."
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: class.bcn_admin.php:459 class.bcn_network_admin.php:530
|
341 |
msgid "Post Hierarchy Display"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: class.bcn_admin.php:459 class.bcn_network_admin.php:530
|
345 |
msgid ""
|
346 |
"Show the hierarchy (specified below) leading to a post in the breadcrumb "
|
347 |
"trail."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: class.bcn_admin.php:463 class.bcn_network_admin.php:534
|
351 |
msgid "Post Hierarchy"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: class.bcn_admin.php:467 class.bcn_admin.php:585
|
355 |
+
#: class.bcn_network_admin.php:538 class.bcn_network_admin.php:656
|
356 |
msgid "Categories"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: class.bcn_admin.php:468 class.bcn_admin.php:546
|
360 |
+
#: class.bcn_network_admin.php:539 class.bcn_network_admin.php:617
|
361 |
msgid "Dates"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: class.bcn_admin.php:469 class.bcn_admin.php:592
|
365 |
+
#: class.bcn_network_admin.php:540 class.bcn_network_admin.php:663
|
366 |
msgid "Tags"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: class.bcn_admin.php:471 class.bcn_admin.php:545
|
370 |
+
#: class.bcn_network_admin.php:542 class.bcn_network_admin.php:616
|
371 |
msgid "Post Parent"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: class.bcn_admin.php:487 class.bcn_admin.php:570
|
375 |
+
#: class.bcn_network_admin.php:558 class.bcn_network_admin.php:641
|
376 |
msgid ""
|
377 |
"The hierarchy which the breadcrumb trail will show. Note that the \"Post "
|
378 |
"Parent\" option may require an additional plugin to behave as expected since "
|
379 |
"this is a non-hierarchical post type."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: class.bcn_admin.php:491 class.bcn_network_admin.php:562
|
383 |
msgid "Pages"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: class.bcn_admin.php:494 class.bcn_network_admin.php:565
|
387 |
msgid "Page Template"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: class.bcn_admin.php:494 class.bcn_network_admin.php:565
|
391 |
msgid "The template for page breadcrumbs."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: class.bcn_admin.php:495 class.bcn_network_admin.php:566
|
395 |
msgid "Page Template (Unlinked)"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: class.bcn_admin.php:495 class.bcn_network_admin.php:566
|
399 |
msgid ""
|
400 |
"The template for page breadcrumbs, used only when the breadcrumb is not "
|
401 |
"linked."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: class.bcn_admin.php:498 class.bcn_network_admin.php:569
|
405 |
msgid "Attachments"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: class.bcn_admin.php:501 class.bcn_network_admin.php:572
|
409 |
msgid "Attachment Template"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: class.bcn_admin.php:501 class.bcn_network_admin.php:572
|
413 |
msgid "The template for attachment breadcrumbs."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: class.bcn_admin.php:502 class.bcn_network_admin.php:573
|
417 |
msgid "Attachment Template (Unlinked)"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: class.bcn_admin.php:502 class.bcn_network_admin.php:573
|
421 |
msgid ""
|
422 |
"The template for attachment breadcrumbs, used only when the breadcrumb is "
|
423 |
"not linked."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: class.bcn_admin.php:522 class.bcn_admin.php:623
|
427 |
+
#: class.bcn_network_admin.php:593 class.bcn_network_admin.php:694
|
428 |
msgid "%s Template"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: class.bcn_admin.php:522 class.bcn_admin.php:623
|
432 |
+
#: class.bcn_network_admin.php:593 class.bcn_network_admin.php:694
|
433 |
msgid "The template for %s breadcrumbs."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: class.bcn_admin.php:523 class.bcn_admin.php:624
|
437 |
+
#: class.bcn_network_admin.php:594 class.bcn_network_admin.php:695
|
438 |
msgid "%s Template (Unlinked)"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: class.bcn_admin.php:523 class.bcn_admin.php:624
|
442 |
+
#: class.bcn_network_admin.php:594 class.bcn_network_admin.php:695
|
443 |
msgid ""
|
444 |
"The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: class.bcn_admin.php:528 class.bcn_network_admin.php:599
|
448 |
msgid "%s Root Page"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: class.bcn_admin.php:531 class.bcn_network_admin.php:602
|
452 |
msgid "— Select —"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: class.bcn_admin.php:535 class.bcn_network_admin.php:606
|
456 |
msgid "%s Archive Display"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: class.bcn_admin.php:535 class.bcn_network_admin.php:606
|
460 |
msgid ""
|
461 |
"Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: class.bcn_admin.php:536 class.bcn_network_admin.php:607
|
465 |
msgid "%s Hierarchy Display"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: class.bcn_admin.php:536 class.bcn_network_admin.php:607
|
469 |
msgid ""
|
470 |
"Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: class.bcn_admin.php:540 class.bcn_network_admin.php:611
|
474 |
msgid "%s Hierarchy"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: class.bcn_admin.php:566 class.bcn_network_admin.php:637
|
478 |
msgid "The hierarchy which the breadcrumb trail will show."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: class.bcn_admin.php:584 class.bcn_network_admin.php:655
|
482 |
msgid ""
|
483 |
"The settings for all taxonomies (including Categories, Tags, and custom "
|
484 |
"taxonomies) are located under this tab."
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: class.bcn_admin.php:584 class.bcn_network_admin.php:655
|
488 |
msgid "Taxonomies"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: class.bcn_admin.php:588 class.bcn_network_admin.php:659
|
492 |
msgid "Category Template"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: class.bcn_admin.php:588 class.bcn_network_admin.php:659
|
496 |
msgid "The template for category breadcrumbs."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: class.bcn_admin.php:589 class.bcn_network_admin.php:660
|
500 |
msgid "Category Template (Unlinked)"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: class.bcn_admin.php:589 class.bcn_network_admin.php:660
|
504 |
msgid ""
|
505 |
"The template for category breadcrumbs, used only when the breadcrumb is not "
|
506 |
"linked."
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: class.bcn_admin.php:595 class.bcn_network_admin.php:666
|
510 |
msgid "Tag Template"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: class.bcn_admin.php:595 class.bcn_network_admin.php:666
|
514 |
msgid "The template for tag breadcrumbs."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: class.bcn_admin.php:596 class.bcn_network_admin.php:667
|
518 |
msgid "Tag Template (Unlinked)"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: class.bcn_admin.php:596 class.bcn_network_admin.php:667
|
522 |
msgid ""
|
523 |
"The template for tag breadcrumbs, used only when the breadcrumb is not "
|
524 |
"linked."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: class.bcn_admin.php:599 class.bcn_network_admin.php:670
|
528 |
msgid "Post Formats"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: class.bcn_admin.php:602 class.bcn_network_admin.php:673
|
532 |
msgid "Post Format Template"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: class.bcn_admin.php:602 class.bcn_network_admin.php:673
|
536 |
msgid "The template for post format breadcrumbs."
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: class.bcn_admin.php:603 class.bcn_network_admin.php:674
|
540 |
msgid "Post Format Template (Unlinked)"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: class.bcn_admin.php:603 class.bcn_network_admin.php:674
|
544 |
msgid ""
|
545 |
"The template for post_format breadcrumbs, used only when the breadcrumb is "
|
546 |
"not linked."
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: class.bcn_admin.php:633 class.bcn_network_admin.php:704
|
550 |
msgid ""
|
551 |
"The settings for author and date archives, searches, and 404 pages are "
|
552 |
"located under this tab."
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: class.bcn_admin.php:633 class.bcn_admin.php:642
|
556 |
+
#: class.bcn_network_admin.php:704 class.bcn_network_admin.php:713
|
557 |
msgid "Miscellaneous"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: class.bcn_admin.php:634 class.bcn_network_admin.php:705
|
561 |
msgid "Author Archives"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: class.bcn_admin.php:637 class.bcn_network_admin.php:708
|
565 |
msgid "Author Template"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: class.bcn_admin.php:637 class.bcn_network_admin.php:708
|
569 |
msgid "The template for author breadcrumbs."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: class.bcn_admin.php:638 class.bcn_network_admin.php:709
|
573 |
msgid "Author Template (Unlinked)"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: class.bcn_admin.php:638 class.bcn_network_admin.php:709
|
577 |
msgid ""
|
578 |
"The template for author breadcrumbs, used only when the breadcrumb is not "
|
579 |
"linked."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: class.bcn_admin.php:639 class.bcn_network_admin.php:710
|
583 |
msgid "Author Display Format"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: class.bcn_admin.php:639 class.bcn_network_admin.php:710
|
587 |
msgid ""
|
588 |
"display_name uses the name specified in \"Display name publicly as\" under "
|
589 |
"the user profile the others correspond to options in the user profile."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: class.bcn_admin.php:645 class.bcn_network_admin.php:716
|
593 |
msgid "Date Template"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: class.bcn_admin.php:645 class.bcn_network_admin.php:716
|
597 |
msgid "The template for date breadcrumbs."
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: class.bcn_admin.php:646 class.bcn_network_admin.php:717
|
601 |
msgid "Date Template (Unlinked)"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: class.bcn_admin.php:646 class.bcn_network_admin.php:717
|
605 |
msgid ""
|
606 |
"The template for date breadcrumbs, used only when the breadcrumb is not "
|
607 |
"linked."
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: class.bcn_admin.php:647 class.bcn_network_admin.php:718
|
611 |
msgid "Search Template"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: class.bcn_admin.php:647 class.bcn_network_admin.php:718
|
615 |
msgid ""
|
616 |
"The anchor template for search breadcrumbs, used only when the search "
|
617 |
"results span several pages."
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: class.bcn_admin.php:648 class.bcn_network_admin.php:719
|
621 |
msgid "Search Template (Unlinked)"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: class.bcn_admin.php:648 class.bcn_network_admin.php:719
|
625 |
msgid ""
|
626 |
"The anchor template for search breadcrumbs, used only when the search "
|
627 |
"results span several pages and the breadcrumb is not linked."
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: class.bcn_admin.php:649 class.bcn_network_admin.php:720
|
631 |
msgid "404 Title"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: class.bcn_admin.php:650 class.bcn_network_admin.php:721
|
635 |
msgid "404 Template"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: class.bcn_admin.php:650 class.bcn_network_admin.php:721
|
639 |
msgid "The template for 404 breadcrumbs."
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: class.bcn_admin.php:653 class.bcn_network_admin.php:724
|
643 |
msgid "Deprecated"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: class.bcn_admin.php:657 class.bcn_network_admin.php:728
|
647 |
msgid "Title Length"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: class.bcn_admin.php:662 class.bcn_network_admin.php:733
|
651 |
msgid ""
|
652 |
"Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: class.bcn_admin.php:667 class.bcn_network_admin.php:738
|
656 |
msgid "Max Title Length: "
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: class.bcn_admin.php:679 class.bcn_network_admin.php:750
|
660 |
msgid "Save Changes"
|
661 |
msgstr ""
|
662 |
|
668 |
"content=\"%position%\"></span>"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: class.bcn_breadcrumb_trail.php:77
|
672 |
msgid "Page %htitle%"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: class.bcn_breadcrumb_trail.php:100
|
676 |
msgid "404"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: class.bcn_breadcrumb_trail.php:103
|
680 |
msgid ""
|
681 |
"Search results for '<a title=\"Go to the first page of search results "
|
682 |
"for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>'"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: class.bcn_breadcrumb_trail.php:105
|
686 |
msgid "Search results for '%htitle%'"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: class.bcn_breadcrumb_trail.php:108
|
690 |
msgid ""
|
691 |
"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
|
692 |
"typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" "
|
694 |
"\"position\" content=\"%position%\"></span>"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: class.bcn_breadcrumb_trail.php:113 class.bcn_breadcrumb_trail.php:129
|
698 |
msgid ""
|
699 |
"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
|
700 |
"typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" "
|
702 |
"\"position\" content=\"%position%\"></span>"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: class.bcn_breadcrumb_trail.php:118
|
706 |
msgid ""
|
707 |
"Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
|
708 |
"\"%link%\" class=\"%type%\">%htitle%</a>"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: class.bcn_breadcrumb_trail.php:120
|
712 |
msgid "Articles by: %htitle%"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: class.bcn_breadcrumb_trail.php:125
|
716 |
msgid ""
|
717 |
"<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
|
718 |
"typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href="
|
720 |
"property=\"position\" content=\"%position%\"></span>"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: class.bcn_breadcrumb_trail.php:391
|
724 |
msgid "$post global is not of type WP_Post"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: class.bcn_breadcrumb_trail.php:489
|
728 |
+
msgctxt "day archive breadcrumb date format"
|
729 |
+
msgid "d"
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: class.bcn_breadcrumb_trail.php:509
|
733 |
+
msgctxt "month archive breadcrumb date format"
|
734 |
+
msgid "F"
|
735 |
+
msgstr ""
|
736 |
+
|
737 |
+
#: class.bcn_breadcrumb_trail.php:526
|
738 |
+
msgctxt "year archive breadcrumb date format"
|
739 |
+
msgid "Y"
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: class.bcn_network_admin.php:63
|
743 |
+
msgid "Breadcrumb NavXT Network Settings"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: class.bcn_network_admin.php:418 class.bcn_network_admin.php:436
|
747 |
msgid ""
|
748 |
"Warning: Individual site settings will override any settings set in this "
|
749 |
"page."
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: class.bcn_network_admin.php:426 class.bcn_network_admin.php:430
|
753 |
msgid ""
|
754 |
"Warning: Individual site settings may override any settings set in this page."
|
755 |
msgstr ""
|
756 |
|
|
|
|
|
|
|
|
|
757 |
#: class.bcn_widget.php:32
|
758 |
msgid "Adds a breadcrumb trail to your sidebar"
|
759 |
msgstr ""
|
794 |
msgid "Hide the trail on the front page"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: includes/class.mtekk_adminkit.php:113
|
798 |
+
msgid "Insufficient privileges to proceed."
|
799 |
+
msgstr ""
|
800 |
+
|
801 |
+
#: includes/class.mtekk_adminkit.php:236
|
802 |
msgid "Settings"
|
803 |
msgstr ""
|
804 |
|
805 |
+
#: includes/class.mtekk_adminkit.php:312
|
806 |
+
msgid ""
|
807 |
+
"Your settings are for an older version of this plugin and need to be "
|
808 |
+
"migrated."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: includes/class.mtekk_adminkit.php:312 includes/class.mtekk_adminkit.php:321
|
812 |
msgid "Migrate the settings now."
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: includes/class.mtekk_adminkit.php:312
|
816 |
msgid "Migrate now."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/class.mtekk_adminkit.php:321
|
820 |
+
msgid "Your settings are for a newer version of this plugin."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: includes/class.mtekk_adminkit.php:321
|
824 |
+
msgid "Attempt back migration now."
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: includes/class.mtekk_adminkit.php:329
|
828 |
msgid "Your plugin install is incomplete."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: includes/class.mtekk_adminkit.php:329
|
832 |
msgid "Load default settings now."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: includes/class.mtekk_adminkit.php:329
|
836 |
msgid "Complete now."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: includes/class.mtekk_adminkit.php:337
|
840 |
+
msgid "One or more of your plugin settings are invalid."
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: includes/class.mtekk_adminkit.php:337
|
844 |
msgid "Attempt to fix settings now."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/class.mtekk_adminkit.php:337
|
848 |
msgid "Fix now."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: includes/class.mtekk_adminkit.php:536
|
852 |
msgid "Settings successfully saved."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: includes/class.mtekk_adminkit.php:536 includes/class.mtekk_adminkit.php:549
|
856 |
msgid "Undo the options save."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: includes/class.mtekk_adminkit.php:536 includes/class.mtekk_adminkit.php:549
|
860 |
+
#: includes/class.mtekk_adminkit.php:654 includes/class.mtekk_adminkit.php:678
|
861 |
+
#: includes/class.mtekk_adminkit.php:695
|
862 |
msgid "Undo"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: includes/class.mtekk_adminkit.php:540
|
866 |
msgid "Settings did not change, nothing to save."
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: includes/class.mtekk_adminkit.php:544
|
870 |
msgid "Settings were not saved."
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: includes/class.mtekk_adminkit.php:549
|
874 |
msgid "Some settings were not saved."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: includes/class.mtekk_adminkit.php:550
|
878 |
msgid "The following settings were not saved:"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: includes/class.mtekk_adminkit.php:555
|
882 |
msgid "Please include this message in your %sbug report%s."
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: includes/class.mtekk_adminkit.php:555
|
886 |
msgid "Go to the %s support post for your version."
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: includes/class.mtekk_adminkit.php:654
|
890 |
msgid "Settings successfully imported from the uploaded file."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: includes/class.mtekk_adminkit.php:654
|
894 |
msgid "Undo the options import."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: includes/class.mtekk_adminkit.php:659
|
898 |
msgid "Importing settings from file failed."
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: includes/class.mtekk_adminkit.php:678
|
902 |
msgid "Settings successfully reset to the default values."
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: includes/class.mtekk_adminkit.php:678
|
906 |
msgid "Undo the options reset."
|
907 |
msgstr ""
|
908 |
|
909 |
+
#: includes/class.mtekk_adminkit.php:695
|
910 |
msgid "Settings successfully undid the last operation."
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: includes/class.mtekk_adminkit.php:695
|
914 |
msgid "Undo the last undo operation."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: includes/class.mtekk_adminkit.php:730
|
918 |
msgid "Settings successfully migrated."
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: includes/class.mtekk_adminkit.php:737
|
922 |
msgid "Default settings successfully installed."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: includes/class.mtekk_adminkit.php:833
|
926 |
msgid ""
|
927 |
"Import settings from a XML file, export the current settings to a XML file, "
|
928 |
"or reset to the default settings."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: includes/class.mtekk_adminkit.php:836
|
932 |
msgid "Settings File"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: includes/class.mtekk_adminkit.php:839
|
936 |
msgid "Select a XML settings file to upload and import settings from."
|
937 |
msgstr ""
|
938 |
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: mtekk, hakre
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
-
Requires at least: 4.
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 5.
|
8 |
License: GPLv2 or later
|
9 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
10 |
|
@@ -51,6 +51,21 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
|
|
51 |
|
52 |
== Changelog ==
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
= 5.3.1 =
|
55 |
Release date: December 14th, 2015
|
56 |
|
@@ -242,8 +257,8 @@ Release date: December 14th, 2011
|
|
242 |
|
243 |
== Upgrade Notice ==
|
244 |
|
245 |
-
= 5.
|
246 |
-
This version requires PHP5.3 or newer. This version
|
247 |
|
248 |
-
= 5.
|
249 |
-
This version requires PHP5.3 or newer. This
|
2 |
Contributors: mtekk, hakre
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
+
Requires at least: 4.3
|
6 |
+
Tested up to: 4.5
|
7 |
+
Stable tag: 5.4.0
|
8 |
License: GPLv2 or later
|
9 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
10 |
|
51 |
|
52 |
== Changelog ==
|
53 |
|
54 |
+
= 5.4.0 =
|
55 |
+
Release date: March 15th, 2016
|
56 |
+
|
57 |
+
* Behavior change: Migrated to new adminKit version, some functions previously in the admin classes are now handled upstream.
|
58 |
+
* New feature: Added `bcn_post_terms` filter to `bcn_breadcrumb_trail::post_terms()` to control the terms included in a non-hierarchical term breadcrumb for a post.
|
59 |
+
* New feature: Added `bcn_add_post_type_arg` filter to `bcn_breadcrumb_trail::maybe_add_post_type_arg()` to control when the post_type argument is added to URLs for archives.
|
60 |
+
* New feature: Added `bcn_pick_post_term` filter to `bcn_breadcrumb_trail::post_hierarchy()` to allow overriding Breadcrumb NavXT’s default term selection behavior.
|
61 |
+
* Bug fix: Fixed issue with untranslatable title on the settings page.
|
62 |
+
* Bug fix: Cleanup of several trivial differences between `bcn_admin` and `bcn_network_admin`.
|
63 |
+
* Bug fix: Fixed improper display of “Your settings are out of date. Migrate now.” message on fresh installs.
|
64 |
+
* Bug fix: Clarified verbiage in regards to the paged breadcrumb.
|
65 |
+
* Bug fix: Added translation wrappers for date format strings in `bcn_breadcrumb_trail::do_archive_by_date()`.
|
66 |
+
* Bug fix: Fixed issue where `bcn_breadcrumb_trail::is_builtin()` would cause PHP warnings when the passed in post type was not an actual post type.
|
67 |
+
* Bug fix: Fixed issue that would cause a PHP error if `WP_Widget` is unavailable.
|
68 |
+
|
69 |
= 5.3.1 =
|
70 |
Release date: December 14th, 2015
|
71 |
|
257 |
|
258 |
== Upgrade Notice ==
|
259 |
|
260 |
+
= 5.4.0 =
|
261 |
+
This version requires PHP5.3 or newer. This version introduces three new filters: `bcn_post_terms`, `bcn_add_post_type_arg`, and `bcn_pick_post_term`.
|
262 |
|
263 |
+
= 5.3.0 =
|
264 |
+
This version requires PHP5.3 or newer. This version adds in support for post type restricted archives (date and taxonomy).
|