Breadcrumb NavXT - Version 5.7.0

Version Description

Release date: April 21st, 2017

  • New feature: Added bcn_display_json_ld() function for producing Schema.org BreadcrumbList compliant JSON-LD markup.
  • Bug fix: Fixed issue where the uninstaller caused PHP Errors when ran from WP CLI.
  • Bug fix: Fixed issue where bcn_breadcrumb_trail::find_type() caused a PHP Warnings in certain circumstances.
  • Bug fix: Fixed typo in the administrative interface.
Download this release

Release Info

Developer mtekk
Plugin Icon 128x128 Breadcrumb NavXT
Version 5.7.0
Comparing to
See all releases

Code changes from version 5.6.0 to 5.7.0

.gitignore DELETED
@@ -1,3 +0,0 @@
1
- *.class
2
- *.pyc
3
- *.pyo
 
 
 
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&#39;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.6.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
@@ -60,7 +60,7 @@ $breadcrumb_navxt = NULL;
60
  //TODO change to extends mtekk_plugKit
61
  class breadcrumb_navxt
62
  {
63
- const version = '5.6.0';
64
  protected $name = 'Breadcrumb NavXT';
65
  protected $identifier = 'breadcrumb-navxt';
66
  protected $unique_prefix = 'bcn';
@@ -94,7 +94,7 @@ class breadcrumb_navxt
94
  $this->admin = new bcn_network_admin($this->breadcrumb_trail, $this->plugin_basename);
95
  }
96
  //Load our main admin if in the dashboard, but only if we're not in the network dashboard (prevents goofy bugs)
97
- else if(is_admin())
98
  {
99
  require_once(dirname(__FILE__) . '/class.bcn_admin.php');
100
  //Instantiate our new admin object
@@ -409,7 +409,7 @@ class breadcrumb_navxt
409
  *
410
  * @param bool $return Whether to return or echo the trail.
411
  * @param bool $linked Whether to allow hyperlinks in the trail or not.
412
- * @param bool $reverse Whether to reverse the output or not.
413
  * @param bool $force Whether or not to force the fill function to run.
414
  */
415
  public function display_list($return = false, $linked = true, $reverse = false, $force = false)
@@ -424,6 +424,25 @@ class breadcrumb_navxt
424
  $this->breadcrumb_trail->fill();
425
  return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
426
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
427
  }
428
  //Have to bootstrap our startup so that other plugins can replace the bcn_breadcrumb_trail object if they need to
429
  add_action('plugins_loaded', 'bcn_init', 15);
@@ -466,4 +485,19 @@ function bcn_display_list($return = false, $linked = true, $reverse = false, $fo
466
  {
467
  return $breadcrumb_navxt->display_list($return, $linked, $reverse, $force);
468
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
469
  }
3
  Plugin Name: Breadcrumb NavXT
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: Adds a breadcrumb navigation showing the visitor&#39;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.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-2017 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
60
  //TODO change to extends mtekk_plugKit
61
  class breadcrumb_navxt
62
  {
63
+ const version = '5.7.0';
64
  protected $name = 'Breadcrumb NavXT';
65
  protected $identifier = 'breadcrumb-navxt';
66
  protected $unique_prefix = 'bcn';
94
  $this->admin = new bcn_network_admin($this->breadcrumb_trail, $this->plugin_basename);
95
  }
96
  //Load our main admin if in the dashboard, but only if we're not in the network dashboard (prevents goofy bugs)
97
+ else if(is_admin() || defined('WP_UNINSTALL_PLUGIN'))
98
  {
99
  require_once(dirname(__FILE__) . '/class.bcn_admin.php');
100
  //Instantiate our new admin object
409
  *
410
  * @param bool $return Whether to return or echo the trail.
411
  * @param bool $linked Whether to allow hyperlinks in the trail or not.
412
+ * @param bool $reverse Whether to reverse the output or not.
413
  * @param bool $force Whether or not to force the fill function to run.
414
  */
415
  public function display_list($return = false, $linked = true, $reverse = false, $force = false)
424
  $this->breadcrumb_trail->fill();
425
  return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
426
  }
427
+ /**
428
+ * Outputs the breadcrumb trail in Schema.org BreadcrumbList compatible JSON-LD
429
+ *
430
+ * @param bool $return Whether to return or echo the trail.
431
+ * @param bool $reverse Whether to reverse the output or not.
432
+ * @param bool $force Whether or not to force the fill function to run.
433
+ */
434
+ public function display_json_ld($return = false, $reverse = false, $force = false)
435
+ {
436
+ $this->get_settings();
437
+ //If we're being forced to fill the trail, clear it before calling fill
438
+ if($force)
439
+ {
440
+ $this->breadcrumb_trail->breadcrumbs = array();
441
+ }
442
+ //Generate the breadcrumb trail
443
+ $this->breadcrumb_trail->fill();
444
+ return $this->breadcrumb_trail->display_json_ld($return, $reverse);
445
+ }
446
  }
447
  //Have to bootstrap our startup so that other plugins can replace the bcn_breadcrumb_trail object if they need to
448
  add_action('plugins_loaded', 'bcn_init', 15);
485
  {
486
  return $breadcrumb_navxt->display_list($return, $linked, $reverse, $force);
487
  }
488
+ }
489
+ /**
490
+ * Outputs the breadcrumb trail in Schema.org BreadcrumbList compatible JSON-LD
491
+ *
492
+ * @param bool $return Whether to return or echo the trail. (optional)
493
+ * @param bool $reverse Whether to reverse the output or not. (optional)
494
+ * @param bool $force Whether or not to force the fill function to run. (optional)
495
+ */
496
+ function bcn_display_json_ld($return = false, $reverse = false, $force = false)
497
+ {
498
+ global $breadcrumb_navxt;
499
+ if($breadcrumb_navxt !== null)
500
+ {
501
+ return $breadcrumb_navxt->display_json_ld($return, $linked, $reverse, $force);
502
+ }
503
  }
class.bcn_admin.php CHANGED
@@ -1,5 +1,5 @@
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,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
42
  */
43
  class bcn_admin extends mtekk_adminKit
44
  {
45
- const version = '5.6.0';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
@@ -497,7 +497,7 @@ class bcn_admin extends mtekk_adminKit
497
  $this->textbox(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', '6', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
498
  $this->textbox(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', '4', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
499
  $this->input_check(__('Post Hierarchy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the hierarchy (specified below) leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'), false, '', 'adminkit-enset-ctrl adminkit-enset');
500
- $this->input_check(__('Post Hierarchy Referer Influence', 'breadcrumb-navxt'), 'bpost_post_taxonomy_referer', __('Allow the refereing page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
501
  ?>
502
  <tr valign="top">
503
  <th scope="row">
@@ -575,7 +575,7 @@ class bcn_admin extends mtekk_adminKit
575
  <?php
576
  $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), !$post_type->has_archive);
577
  $this->input_check(sprintf(__('%s Hierarchy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the hierarchy (specified below) leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), false, '', 'adminkit-enset-ctrl adminkit-enset');
578
- $this->input_check(sprintf(__('%s Hierarchy Referer Influence', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_referer', __('Allow the refereing page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
579
  ?>
580
  <tr valign="top">
581
  <th scope="row">
1
  <?php
2
+ /* Copyright 2007-2017 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.7.0';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
497
  $this->textbox(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', '6', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
498
  $this->textbox(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', '4', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
499
  $this->input_check(__('Post Hierarchy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the hierarchy (specified below) leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'), false, '', 'adminkit-enset-ctrl adminkit-enset');
500
+ $this->input_check(__('Post Hierarchy Referer Influence', 'breadcrumb-navxt'), 'bpost_post_taxonomy_referer', __('Allow the referring page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
501
  ?>
502
  <tr valign="top">
503
  <th scope="row">
575
  <?php
576
  $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), !$post_type->has_archive);
577
  $this->input_check(sprintf(__('%s Hierarchy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the hierarchy (specified below) leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), false, '', 'adminkit-enset-ctrl adminkit-enset');
578
+ $this->input_check(sprintf(__('%s Hierarchy Referer Influence', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_referer', __('Allow the referring page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
579
  ?>
580
  <tr valign="top">
581
  <th scope="row">
class.bcn_breadcrumb.php CHANGED
@@ -1,6 +1,6 @@
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,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.6.0';
25
  //The main text that will be shown
26
  protected $title;
27
  //The breadcrumb's template, used durring assembly
@@ -36,7 +36,7 @@ class bcn_breadcrumb
36
  protected $id = NULL;
37
  private $_title = NULL;
38
  //The type of this breadcrumb
39
- public $type;
40
  protected $allowed_html = array();
41
  const default_template_no_anchor = '<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>';
42
  /**
@@ -166,6 +166,15 @@ class bcn_breadcrumb
166
  {
167
  $this->type[] = $type;
168
  }
 
 
 
 
 
 
 
 
 
169
  /**
170
  * This function will intelligently trim the title to the value passed in through $max_length. This function is deprecated, do not call.
171
  *
@@ -237,4 +246,21 @@ class bcn_breadcrumb
237
  return str_replace(array_keys($replacements), $replacements, $this->template_no_anchor);
238
  }
239
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  }
1
  <?php
2
  /*
3
+ Copyright 2007-2017 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.7.0';
25
  //The main text that will be shown
26
  protected $title;
27
  //The breadcrumb's template, used durring assembly
36
  protected $id = NULL;
37
  private $_title = NULL;
38
  //The type of this breadcrumb
39
+ protected $type;
40
  protected $allowed_html = array();
41
  const default_template_no_anchor = '<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>';
42
  /**
166
  {
167
  $this->type[] = $type;
168
  }
169
+ /**
170
+ * Return the type array
171
+ *
172
+ * @return array The type array
173
+ */
174
+ public function get_types()
175
+ {
176
+ return $this->type;
177
+ }
178
  /**
179
  * This function will intelligently trim the title to the value passed in through $max_length. This function is deprecated, do not call.
180
  *
246
  return str_replace(array_keys($replacements), $replacements, $this->template_no_anchor);
247
  }
248
  }
249
+ /**
250
+ * Assembles the parts of the breadcrumb into a JSON-LD ready object-array
251
+ *
252
+ * @param int $position The position of the breadcrumb in the trail (between 1 and n when there are n breadcrumbs in the trail)
253
+ *
254
+ * @return array(object) The prepared array object ready to pass into json_encode
255
+ */
256
+ public function assemble_json_ld($position)
257
+ {
258
+ return (object)array(
259
+ '@type' => 'ListItem',
260
+ 'position' => $position,
261
+ 'item' => (object)array(
262
+ '@id' => esc_url($this->url),
263
+ 'name' => esc_attr($this->title))
264
+ );
265
+ }
266
  }
class.bcn_breadcrumb_trail.php CHANGED
@@ -1,6 +1,6 @@
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,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.6.0';
25
  //An array of breadcrumbs
26
  public $breadcrumbs = array();
27
  public $trail = array();
@@ -752,7 +752,16 @@ class bcn_breadcrumb_trail
752
  $type_str = get_query_var('post_type', $default);
753
  if($type_str === '' || is_array($type_str))
754
  {
755
- $type_str = $default;
 
 
 
 
 
 
 
 
 
756
  }
757
  return esc_attr($type_str);
758
  }
@@ -865,7 +874,7 @@ class bcn_breadcrumb_trail
865
  }
866
  }
867
  //We need to do special things for custom post type archives, but not author or date archives
868
- else if(is_archive() && !is_author() && !is_date() && !$this->is_builtin($this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0])))
869
  {
870
  //We need the type for later, so save it
871
  $type_str = $this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0]);
@@ -1211,7 +1220,7 @@ class bcn_breadcrumb_trail
1211
  $li_class .= ' class="current_item"';
1212
  }
1213
  //Filter li_attributes adding attributes to the li element
1214
- $li_attribs = apply_filters('bcn_li_attributes', $li_class, $breadcrumb->type, $breadcrumb->get_id());
1215
  //Trim titles, if requested
1216
  if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
1217
  {
@@ -1234,4 +1243,51 @@ class bcn_breadcrumb_trail
1234
  echo $credits . $trail_str;
1235
  }
1236
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1237
  }
1
  <?php
2
  /*
3
+ Copyright 2007-2017 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.7.0';
25
  //An array of breadcrumbs
26
  public $breadcrumbs = array();
27
  public $trail = array();
752
  $type_str = get_query_var('post_type', $default);
753
  if($type_str === '' || is_array($type_str))
754
  {
755
+ //If we didn't get a type, or it was an array, try the the first post
756
+ $post = get_post();
757
+ if($post instanceof WP_Post)
758
+ {
759
+ $type_str = $post->post_type;
760
+ }
761
+ else
762
+ {
763
+ $type_str = $default;
764
+ }
765
  }
766
  return esc_attr($type_str);
767
  }
874
  }
875
  }
876
  //We need to do special things for custom post type archives, but not author or date archives
877
+ else if(is_archive() && !is_author() && !is_date() && isset($type->taxonomy) && !$this->is_builtin($this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0])))
878
  {
879
  //We need the type for later, so save it
880
  $type_str = $this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0]);
1220
  $li_class .= ' class="current_item"';
1221
  }
1222
  //Filter li_attributes adding attributes to the li element
1223
+ $li_attribs = apply_filters('bcn_li_attributes', $li_class, $breadcrumb->get_types(), $breadcrumb->get_id());
1224
  //Trim titles, if requested
1225
  if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
1226
  {
1243
  echo $credits . $trail_str;
1244
  }
1245
  }
1246
+ /**
1247
+ * This functions outputs or returns the breadcrumb trail in Schema.org BreadcrumbList compliant JSON-LD
1248
+ *
1249
+ * @return void Void if option to print out breadcrumb trail was chosen.
1250
+ * @return string String version of the breadcrumb trail.
1251
+ * @param bool $return Whether to return data or to echo it.
1252
+ * @param bool $reverse[optional] Whether to reverse the output or not.
1253
+ *
1254
+ */
1255
+ public function display_json_ld($return = false, $reverse = false)
1256
+ {
1257
+ //Set trail order based on reverse flag
1258
+ $this->order($reverse);
1259
+ $trail_str = json_encode(
1260
+ (object)array(
1261
+ '@context' => 'http://schema.org',
1262
+ '@type' => 'BreadcrumbList',
1263
+ 'itemListElement' => $this->json_ld_loop())
1264
+ , JSON_UNESCAPED_SLASHES
1265
+ );
1266
+ //Should we return or echo the assembled trail?
1267
+ if($return)
1268
+ {
1269
+ return $trail_str;
1270
+ }
1271
+ else
1272
+ {
1273
+ echo $trail_str;
1274
+ }
1275
+ }
1276
+ /**
1277
+ * This function assembles all of the breadcrumbs into an object ready for json_encode
1278
+ *
1279
+ * @return array The array of breadcrumbs prepared for JSON-LD
1280
+ */
1281
+ protected function json_ld_loop()
1282
+ {
1283
+ $postion = 1;
1284
+ $breadcrumbs = array();
1285
+ //Loop around our breadcrumbs, call the JSON-LD assembler
1286
+ foreach($this->breadcrumbs as $breadcrumb)
1287
+ {
1288
+ $breadcrumbs[] = $breadcrumb->assemble_json_ld($postion);
1289
+ $postion++;
1290
+ }
1291
+ return $breadcrumbs;
1292
+ }
1293
  }
class.bcn_network_admin.php CHANGED
@@ -1,5 +1,5 @@
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,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
42
  */
43
  class bcn_network_admin extends mtekk_adminKit
44
  {
45
- const version = '5.6.0';
46
  protected $full_name = 'Breadcrumb NavXT Network Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_network_options';
@@ -569,7 +569,7 @@ class bcn_network_admin extends mtekk_adminKit
569
  $this->textbox(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', '6', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
570
  $this->textbox(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', '4', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
571
  $this->input_check(__('Post Hierarchy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the hierarchy (specified below) leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'), false, '', 'adminkit-enset-ctrl adminkit-enset');
572
- $this->input_check(__('Post Hierarchy Referer Influence', 'breadcrumb-navxt'), 'bpost_post_taxonomy_referer', __('Allow the refereing page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
573
  ?>
574
  <tr valign="top">
575
  <th scope="row">
@@ -647,7 +647,7 @@ class bcn_network_admin extends mtekk_adminKit
647
  <?php
648
  $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), !$post_type->has_archive);
649
  $this->input_check(sprintf(__('%s Hierarchy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the hierarchy (specified below) leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), false, '', 'adminkit-enset-ctrl adminkit-enset');
650
- $this->input_check(sprintf(__('%s Hierarchy Referer Influence', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_referer', __('Allow the refereing page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
651
  ?>
652
  <tr valign="top">
653
  <th scope="row">
1
  <?php
2
+ /* Copyright 2007-2017 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.7.0';
46
  protected $full_name = 'Breadcrumb NavXT Network Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_network_options';
569
  $this->textbox(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', '6', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
570
  $this->textbox(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', '4', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
571
  $this->input_check(__('Post Hierarchy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the hierarchy (specified below) leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'), false, '', 'adminkit-enset-ctrl adminkit-enset');
572
+ $this->input_check(__('Post Hierarchy Referer Influence', 'breadcrumb-navxt'), 'bpost_post_taxonomy_referer', __('Allow the referring page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
573
  ?>
574
  <tr valign="top">
575
  <th scope="row">
647
  <?php
648
  $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), !$post_type->has_archive);
649
  $this->input_check(sprintf(__('%s Hierarchy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the hierarchy (specified below) leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), false, '', 'adminkit-enset-ctrl adminkit-enset');
650
+ $this->input_check(sprintf(__('%s Hierarchy Referer Influence', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_referer', __('Allow the referring page to influence the taxonomy selected for the hierarchy.', 'breadcrumb-navxt'), false, '', 'adminkit-enset');
651
  ?>
652
  <tr valign="top">
653
  <th scope="row">
class.bcn_widget.php CHANGED
@@ -1,6 +1,6 @@
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,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.6.0';
23
  protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false, 'force' => false);
24
  //Default constructor
25
  function __construct()
1
  <?php
2
  /*
3
+ Copyright 2009-2017 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.7.0';
23
  protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false, 'force' => false);
24
  //Default constructor
25
  function __construct()
includes/block_direct_access.php CHANGED
@@ -1,5 +1,5 @@
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
1
  <?php
2
+ /* Copyright 2012-2017 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-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
1
  <?php
2
  /*
3
+ Copyright 2009-2017 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/class.mtekk_adminkit_uninstaller.php CHANGED
@@ -1,6 +1,6 @@
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
1
  <?php
2
  /*
3
+ Copyright 2015-2017 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-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
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-2017 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.pot CHANGED
@@ -1,988 +1,988 @@
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.5.1\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/breadcrumb-navxt\n"
7
- "POT-Creation-Date: 2016-08-13 19:01:09+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
-
15
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
16
- #: class.bcn_network_admin.php:25
17
- msgid ""
18
- "Your PHP version is too old, please upgrade to a newer version. Your version "
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:295 class.bcn_network_admin.php:366
27
- msgid "Tips for the settings are located below select options."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:296 class.bcn_network_admin.php:367
31
- msgid "Resources"
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:297 class.bcn_network_admin.php:368
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:297 class.bcn_network_admin.php:368
41
- msgid "Go to the Breadcrumb NavXT tag archive."
42
- msgstr ""
43
-
44
- #: class.bcn_admin.php:298 class.bcn_network_admin.php:369
45
- msgid ""
46
- "%sOnline Documentation%s: Check out the documentation for more indepth "
47
- "technical information."
48
- msgstr ""
49
-
50
- #: class.bcn_admin.php:298 class.bcn_network_admin.php:369
51
- msgid "Go to the Breadcrumb NavXT online documentation"
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:299 class.bcn_network_admin.php:370
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:299 class.bcn_network_admin.php:370
61
- msgid "Go to the Breadcrumb NavXT support post for your version."
62
- msgstr ""
63
-
64
- #: class.bcn_admin.php:300 class.bcn_network_admin.php:371
65
- msgid "Giving Back"
66
- msgstr ""
67
-
68
- #: class.bcn_admin.php:301 class.bcn_network_admin.php:372
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:301 class.bcn_network_admin.php:372
75
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
76
- msgstr ""
77
-
78
- #: class.bcn_admin.php:302 class.bcn_network_admin.php:373
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:302 class.bcn_network_admin.php:373
85
- msgid "Go to the Breadcrumb NavXT translation project."
86
- msgstr ""
87
-
88
- #: class.bcn_admin.php:307 class.bcn_admin.php:446 class.bcn_admin.php:447
89
- #: class.bcn_network_admin.php:378 class.bcn_network_admin.php:518
90
- #: class.bcn_network_admin.php:519
91
- msgid "General"
92
- msgstr ""
93
-
94
- #: class.bcn_admin.php:310 class.bcn_network_admin.php:381
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:311 class.bcn_network_admin.php:382
102
- msgid "Breadcrumb trail with separators"
103
- msgstr ""
104
-
105
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
106
- msgid "Breadcrumb trail in list form"
107
- msgstr ""
108
-
109
- #: class.bcn_admin.php:326 class.bcn_network_admin.php:397
110
- msgid "Quick Start"
111
- msgstr ""
112
-
113
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:400
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:341 class.bcn_network_admin.php:412
120
- msgid "Styling"
121
- msgstr ""
122
-
123
- #: class.bcn_admin.php:347 class.bcn_network_admin.php:418
124
- msgid "Import/Export/Reset"
125
- msgstr ""
126
-
127
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:442
128
- #: includes/class.mtekk_adminkit.php:841
129
- msgid "Import"
130
- msgstr ""
131
-
132
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:443
133
- #: includes/class.mtekk_adminkit.php:842
134
- msgid "Export"
135
- msgstr ""
136
-
137
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:444
138
- #: includes/class.mtekk_adminkit.php:843
139
- msgid "Reset"
140
- msgstr ""
141
-
142
- #: class.bcn_admin.php:391
143
- msgid ""
144
- "Warning: Your network settings will override any settings set in this page."
145
- msgstr ""
146
-
147
- #: class.bcn_admin.php:395 class.bcn_admin.php:399
148
- msgid ""
149
- "Warning: Your network settings may override any settings set in this page."
150
- msgstr ""
151
-
152
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:475
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:416 class.bcn_network_admin.php:488
159
- msgid ""
160
- "Warning: Your are using a deprecated setting \"Title Length\" (see "
161
- "Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
162
- msgstr ""
163
-
164
- #: class.bcn_admin.php:416 class.bcn_admin.php:704
165
- #: class.bcn_network_admin.php:488 class.bcn_network_admin.php:776
166
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
167
- msgstr ""
168
-
169
- #: class.bcn_admin.php:446 class.bcn_network_admin.php:518
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:450 class.bcn_network_admin.php:522
176
- msgid "Breadcrumb Separator"
177
- msgstr ""
178
-
179
- #: class.bcn_admin.php:450 class.bcn_network_admin.php:522
180
- msgid "Placed in between each breadcrumb."
181
- msgstr ""
182
-
183
- #: class.bcn_admin.php:454 class.bcn_network_admin.php:526
184
- msgid "Current Item"
185
- msgstr ""
186
-
187
- #: class.bcn_admin.php:457 class.bcn_network_admin.php:529
188
- msgid "Link Current Item"
189
- msgstr ""
190
-
191
- #: class.bcn_admin.php:457 class.bcn_network_admin.php:529
192
- msgid "Yes"
193
- msgstr ""
194
-
195
- #: class.bcn_admin.php:458 class.bcn_network_admin.php:530
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:458 class.bcn_network_admin.php:530
202
- msgid "Place the page number breadcrumb in the trail."
203
- msgstr ""
204
-
205
- #: class.bcn_admin.php:458 class.bcn_network_admin.php:530
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:459 class.bcn_network_admin.php:531
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:459 class.bcn_network_admin.php:531
218
- msgid "The template for paged breadcrumbs."
219
- msgstr ""
220
-
221
- #: class.bcn_admin.php:463 class.bcn_admin.php:466
222
- #: class.bcn_network_admin.php:535 class.bcn_network_admin.php:538
223
- msgid "Home Breadcrumb"
224
- msgstr ""
225
-
226
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:538
227
- msgid "Place the home breadcrumb in the trail."
228
- msgstr ""
229
-
230
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:539
231
- msgid "Home Template"
232
- msgstr ""
233
-
234
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:539
235
- msgid "The template for the home breadcrumb."
236
- msgstr ""
237
-
238
- #: class.bcn_admin.php:468 class.bcn_network_admin.php:540
239
- msgid "Home Template (Unlinked)"
240
- msgstr ""
241
-
242
- #: class.bcn_admin.php:468 class.bcn_network_admin.php:540
243
- msgid ""
244
- "The template for the home breadcrumb, used when the breadcrumb is not linked."
245
- msgstr ""
246
-
247
- #: class.bcn_admin.php:472 class.bcn_admin.php:475
248
- #: class.bcn_network_admin.php:544 class.bcn_network_admin.php:547
249
- msgid "Blog Breadcrumb"
250
- msgstr ""
251
-
252
- #: class.bcn_admin.php:475 class.bcn_network_admin.php:547
253
- msgid "Place the blog breadcrumb in the trail."
254
- msgstr ""
255
-
256
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:548
257
- msgid "Blog Template"
258
- msgstr ""
259
-
260
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:548
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:477 class.bcn_network_admin.php:549
267
- msgid "Blog Template (Unlinked)"
268
- msgstr ""
269
-
270
- #: class.bcn_admin.php:477 class.bcn_network_admin.php:549
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:481 class.bcn_network_admin.php:553
277
- msgid "Mainsite Breadcrumb"
278
- msgstr ""
279
-
280
- #: class.bcn_admin.php:484 class.bcn_network_admin.php:556
281
- msgid "Main Site Breadcrumb"
282
- msgstr ""
283
-
284
- #: class.bcn_admin.php:484 class.bcn_network_admin.php:556
285
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
286
- msgstr ""
287
-
288
- #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
289
- msgid "Main Site Home Template"
290
- msgstr ""
291
-
292
- #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
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:486 class.bcn_network_admin.php:558
299
- msgid "Main Site Home Template (Unlinked)"
300
- msgstr ""
301
-
302
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
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:493 class.bcn_network_admin.php:565
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:493 class.bcn_network_admin.php:565
315
- msgid "Post Types"
316
- msgstr ""
317
-
318
- #: class.bcn_admin.php:494 class.bcn_network_admin.php:566
319
- msgid "Posts"
320
- msgstr ""
321
-
322
- #: class.bcn_admin.php:497 class.bcn_network_admin.php:569
323
- msgid "Post Template"
324
- msgstr ""
325
-
326
- #: class.bcn_admin.php:497 class.bcn_network_admin.php:569
327
- msgid "The template for post breadcrumbs."
328
- msgstr ""
329
-
330
- #: class.bcn_admin.php:498 class.bcn_network_admin.php:570
331
- msgid "Post Template (Unlinked)"
332
- msgstr ""
333
-
334
- #: class.bcn_admin.php:498 class.bcn_network_admin.php:570
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:499 class.bcn_network_admin.php:571
341
- msgid "Post Hierarchy Display"
342
- msgstr ""
343
-
344
- #: class.bcn_admin.php:499 class.bcn_network_admin.php:571
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:500 class.bcn_network_admin.php:572
351
- msgid "Post Hierarchy Referer Influence"
352
- msgstr ""
353
-
354
- #: class.bcn_admin.php:500 class.bcn_admin.php:578
355
- #: class.bcn_network_admin.php:572 class.bcn_network_admin.php:650
356
- msgid ""
357
- "Allow the refereing page to influence the taxonomy selected for the "
358
- "hierarchy."
359
- msgstr ""
360
-
361
- #: class.bcn_admin.php:504 class.bcn_network_admin.php:576
362
- msgid "Post Hierarchy"
363
- msgstr ""
364
-
365
- #: class.bcn_admin.php:508 class.bcn_admin.php:627
366
- #: class.bcn_network_admin.php:580 class.bcn_network_admin.php:699
367
- msgid "Categories"
368
- msgstr ""
369
-
370
- #: class.bcn_admin.php:509 class.bcn_admin.php:588
371
- #: class.bcn_network_admin.php:581 class.bcn_network_admin.php:660
372
- msgid "Dates"
373
- msgstr ""
374
-
375
- #: class.bcn_admin.php:510 class.bcn_admin.php:634
376
- #: class.bcn_network_admin.php:582 class.bcn_network_admin.php:706
377
- msgid "Tags"
378
- msgstr ""
379
-
380
- #: class.bcn_admin.php:512 class.bcn_admin.php:587
381
- #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:659
382
- msgid "Post Parent"
383
- msgstr ""
384
-
385
- #: class.bcn_admin.php:528 class.bcn_admin.php:612
386
- #: class.bcn_network_admin.php:600 class.bcn_network_admin.php:684
387
- msgid ""
388
- "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
389
- "Parent\" option may require an additional plugin to behave as expected since "
390
- "this is a non-hierarchical post type."
391
- msgstr ""
392
-
393
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:604
394
- msgid "Pages"
395
- msgstr ""
396
-
397
- #: class.bcn_admin.php:535 class.bcn_network_admin.php:607
398
- msgid "Page Template"
399
- msgstr ""
400
-
401
- #: class.bcn_admin.php:535 class.bcn_network_admin.php:607
402
- msgid "The template for page breadcrumbs."
403
- msgstr ""
404
-
405
- #: class.bcn_admin.php:536 class.bcn_network_admin.php:608
406
- msgid "Page Template (Unlinked)"
407
- msgstr ""
408
-
409
- #: class.bcn_admin.php:536 class.bcn_network_admin.php:608
410
- msgid ""
411
- "The template for page breadcrumbs, used only when the breadcrumb is not "
412
- "linked."
413
- msgstr ""
414
-
415
- #: class.bcn_admin.php:539 class.bcn_network_admin.php:611
416
- msgid "Attachments"
417
- msgstr ""
418
-
419
- #: class.bcn_admin.php:542 class.bcn_network_admin.php:614
420
- msgid "Attachment Template"
421
- msgstr ""
422
-
423
- #: class.bcn_admin.php:542 class.bcn_network_admin.php:614
424
- msgid "The template for attachment breadcrumbs."
425
- msgstr ""
426
-
427
- #: class.bcn_admin.php:543 class.bcn_network_admin.php:615
428
- msgid "Attachment Template (Unlinked)"
429
- msgstr ""
430
-
431
- #: class.bcn_admin.php:543 class.bcn_network_admin.php:615
432
- msgid ""
433
- "The template for attachment breadcrumbs, used only when the breadcrumb is "
434
- "not linked."
435
- msgstr ""
436
-
437
- #: class.bcn_admin.php:563 class.bcn_admin.php:665
438
- #: class.bcn_network_admin.php:635 class.bcn_network_admin.php:737
439
- msgid "%s Template"
440
- msgstr ""
441
-
442
- #: class.bcn_admin.php:563 class.bcn_admin.php:665
443
- #: class.bcn_network_admin.php:635 class.bcn_network_admin.php:737
444
- msgid "The template for %s breadcrumbs."
445
- msgstr ""
446
-
447
- #: class.bcn_admin.php:564 class.bcn_admin.php:666
448
- #: class.bcn_network_admin.php:636 class.bcn_network_admin.php:738
449
- msgid "%s Template (Unlinked)"
450
- msgstr ""
451
-
452
- #: class.bcn_admin.php:564 class.bcn_admin.php:666
453
- #: class.bcn_network_admin.php:636 class.bcn_network_admin.php:738
454
- msgid ""
455
- "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
456
- msgstr ""
457
-
458
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:641
459
- msgid "%s Root Page"
460
- msgstr ""
461
-
462
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
463
- msgid "&mdash; Select &mdash;"
464
- msgstr ""
465
-
466
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:648
467
- msgid "%s Archive Display"
468
- msgstr ""
469
-
470
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:648
471
- msgid ""
472
- "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
473
- msgstr ""
474
-
475
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:649
476
- msgid "%s Hierarchy Display"
477
- msgstr ""
478
-
479
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:649
480
- msgid ""
481
- "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
482
- msgstr ""
483
-
484
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:650
485
- msgid "%s Hierarchy Referer Influence"
486
- msgstr ""
487
-
488
- #: class.bcn_admin.php:582 class.bcn_network_admin.php:654
489
- msgid "%s Hierarchy"
490
- msgstr ""
491
-
492
- #: class.bcn_admin.php:608 class.bcn_network_admin.php:680
493
- msgid "The hierarchy which the breadcrumb trail will show."
494
- msgstr ""
495
-
496
- #: class.bcn_admin.php:626 class.bcn_network_admin.php:698
497
- msgid ""
498
- "The settings for all taxonomies (including Categories, Tags, and custom "
499
- "taxonomies) are located under this tab."
500
- msgstr ""
501
-
502
- #: class.bcn_admin.php:626 class.bcn_network_admin.php:698
503
- msgid "Taxonomies"
504
- msgstr ""
505
-
506
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
507
- msgid "Category Template"
508
- msgstr ""
509
-
510
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
511
- msgid "The template for category breadcrumbs."
512
- msgstr ""
513
-
514
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
515
- msgid "Category Template (Unlinked)"
516
- msgstr ""
517
-
518
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
519
- msgid ""
520
- "The template for category breadcrumbs, used only when the breadcrumb is not "
521
- "linked."
522
- msgstr ""
523
-
524
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
525
- msgid "Tag Template"
526
- msgstr ""
527
-
528
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
529
- msgid "The template for tag breadcrumbs."
530
- msgstr ""
531
-
532
- #: class.bcn_admin.php:638 class.bcn_network_admin.php:710
533
- msgid "Tag Template (Unlinked)"
534
- msgstr ""
535
-
536
- #: class.bcn_admin.php:638 class.bcn_network_admin.php:710
537
- msgid ""
538
- "The template for tag breadcrumbs, used only when the breadcrumb is not "
539
- "linked."
540
- msgstr ""
541
-
542
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:713
543
- msgid "Post Formats"
544
- msgstr ""
545
-
546
- #: class.bcn_admin.php:644 class.bcn_network_admin.php:716
547
- msgid "Post Format Template"
548
- msgstr ""
549
-
550
- #: class.bcn_admin.php:644 class.bcn_network_admin.php:716
551
- msgid "The template for post format breadcrumbs."
552
- msgstr ""
553
-
554
- #: class.bcn_admin.php:645 class.bcn_network_admin.php:717
555
- msgid "Post Format Template (Unlinked)"
556
- msgstr ""
557
-
558
- #: class.bcn_admin.php:645 class.bcn_network_admin.php:717
559
- msgid ""
560
- "The template for post_format breadcrumbs, used only when the breadcrumb is "
561
- "not linked."
562
- msgstr ""
563
-
564
- #: class.bcn_admin.php:675 class.bcn_network_admin.php:747
565
- msgid ""
566
- "The settings for author and date archives, searches, and 404 pages are "
567
- "located under this tab."
568
- msgstr ""
569
-
570
- #: class.bcn_admin.php:675 class.bcn_admin.php:684
571
- #: class.bcn_network_admin.php:747 class.bcn_network_admin.php:756
572
- msgid "Miscellaneous"
573
- msgstr ""
574
-
575
- #: class.bcn_admin.php:676 class.bcn_network_admin.php:748
576
- msgid "Author Archives"
577
- msgstr ""
578
-
579
- #: class.bcn_admin.php:679 class.bcn_network_admin.php:751
580
- msgid "Author Template"
581
- msgstr ""
582
-
583
- #: class.bcn_admin.php:679 class.bcn_network_admin.php:751
584
- msgid "The template for author breadcrumbs."
585
- msgstr ""
586
-
587
- #: class.bcn_admin.php:680 class.bcn_network_admin.php:752
588
- msgid "Author Template (Unlinked)"
589
- msgstr ""
590
-
591
- #: class.bcn_admin.php:680 class.bcn_network_admin.php:752
592
- msgid ""
593
- "The template for author breadcrumbs, used only when the breadcrumb is not "
594
- "linked."
595
- msgstr ""
596
-
597
- #: class.bcn_admin.php:681 class.bcn_network_admin.php:753
598
- msgid "Author Display Format"
599
- msgstr ""
600
-
601
- #: class.bcn_admin.php:681 class.bcn_network_admin.php:753
602
- msgid ""
603
- "display_name uses the name specified in \"Display name publicly as\" under "
604
- "the user profile the others correspond to options in the user profile."
605
- msgstr ""
606
-
607
- #: class.bcn_admin.php:687 class.bcn_network_admin.php:759
608
- msgid "Date Template"
609
- msgstr ""
610
-
611
- #: class.bcn_admin.php:687 class.bcn_network_admin.php:759
612
- msgid "The template for date breadcrumbs."
613
- msgstr ""
614
-
615
- #: class.bcn_admin.php:688 class.bcn_network_admin.php:760
616
- msgid "Date Template (Unlinked)"
617
- msgstr ""
618
-
619
- #: class.bcn_admin.php:688 class.bcn_network_admin.php:760
620
- msgid ""
621
- "The template for date breadcrumbs, used only when the breadcrumb is not "
622
- "linked."
623
- msgstr ""
624
-
625
- #: class.bcn_admin.php:689 class.bcn_network_admin.php:761
626
- msgid "Search Template"
627
- msgstr ""
628
-
629
- #: class.bcn_admin.php:689 class.bcn_network_admin.php:761
630
- msgid ""
631
- "The anchor template for search breadcrumbs, used only when the search "
632
- "results span several pages."
633
- msgstr ""
634
-
635
- #: class.bcn_admin.php:690 class.bcn_network_admin.php:762
636
- msgid "Search Template (Unlinked)"
637
- msgstr ""
638
-
639
- #: class.bcn_admin.php:690 class.bcn_network_admin.php:762
640
- msgid ""
641
- "The anchor template for search breadcrumbs, used only when the search "
642
- "results span several pages and the breadcrumb is not linked."
643
- msgstr ""
644
-
645
- #: class.bcn_admin.php:691 class.bcn_network_admin.php:763
646
- msgid "404 Title"
647
- msgstr ""
648
-
649
- #: class.bcn_admin.php:692 class.bcn_network_admin.php:764
650
- msgid "404 Template"
651
- msgstr ""
652
-
653
- #: class.bcn_admin.php:692 class.bcn_network_admin.php:764
654
- msgid "The template for 404 breadcrumbs."
655
- msgstr ""
656
-
657
- #: class.bcn_admin.php:695 class.bcn_network_admin.php:767
658
- msgid "Deprecated"
659
- msgstr ""
660
-
661
- #: class.bcn_admin.php:699 class.bcn_network_admin.php:771
662
- msgid "Title Length"
663
- msgstr ""
664
-
665
- #: class.bcn_admin.php:704 class.bcn_network_admin.php:776
666
- msgid ""
667
- "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
668
- msgstr ""
669
-
670
- #: class.bcn_admin.php:709 class.bcn_network_admin.php:781
671
- msgid "Max Title Length: "
672
- msgstr ""
673
-
674
- #: class.bcn_admin.php:721 class.bcn_network_admin.php:793
675
- msgid "Save Changes"
676
- msgstr ""
677
-
678
- #: class.bcn_breadcrumb.php:91
679
- msgid ""
680
- "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
681
- "typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%"
682
- "\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" "
683
- "content=\"%position%\"></span>"
684
- msgstr ""
685
-
686
- #: class.bcn_breadcrumb_trail.php:77
687
- msgid ""
688
- "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
689
- "\">Page %htitle%</span><meta property=\"position\" content=\"%position%\"></"
690
- "span>"
691
- msgstr ""
692
-
693
- #: class.bcn_breadcrumb_trail.php:102
694
- msgid "404"
695
- msgstr ""
696
-
697
- #: class.bcn_breadcrumb_trail.php:105
698
- msgid ""
699
- "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
700
- "\">Search results for &#39;<a property=\"item\" typeof=\"WebPage\" title="
701
- "\"Go to the first page of search results for %title%.\" href=\"%link%\" "
702
- "class=\"%type%\">%htitle%</a>&#39;</span><meta property=\"position\" content="
703
- "\"%position%\"></span>"
704
- msgstr ""
705
-
706
- #: class.bcn_breadcrumb_trail.php:107
707
- msgid ""
708
- "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
709
- "\">Search results for &#39;%htitle%&#39;</span><meta property=\"position\" "
710
- "content=\"%position%\"></span>"
711
- msgstr ""
712
-
713
- #: class.bcn_breadcrumb_trail.php:110
714
- msgid ""
715
- "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
716
- "typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" "
717
- "class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property="
718
- "\"position\" content=\"%position%\"></span>"
719
- msgstr ""
720
-
721
- #: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
722
- msgid ""
723
- "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
724
- "typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" "
725
- "class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property="
726
- "\"position\" content=\"%position%\"></span>"
727
- msgstr ""
728
-
729
- #: class.bcn_breadcrumb_trail.php:120
730
- msgid ""
731
- "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
732
- "\">Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
733
- "\"%link%\" class=\"%type%\">%htitle%</a>"
734
- msgstr ""
735
-
736
- #: class.bcn_breadcrumb_trail.php:122
737
- msgid ""
738
- "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
739
- "\">Articles by: %htitle%</span><meta property=\"position\" content="
740
- "\"%position%\"></span>"
741
- msgstr ""
742
-
743
- #: class.bcn_breadcrumb_trail.php:127
744
- msgid ""
745
- "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
746
- "typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href="
747
- "\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta "
748
- "property=\"position\" content=\"%position%\"></span>"
749
- msgstr ""
750
-
751
- #: class.bcn_breadcrumb_trail.php:465
752
- msgid "$post global is not of type WP_Post"
753
- msgstr ""
754
-
755
- #: class.bcn_breadcrumb_trail.php:563
756
- msgctxt "day archive breadcrumb date format"
757
- msgid "d"
758
- msgstr ""
759
-
760
- #: class.bcn_breadcrumb_trail.php:583
761
- msgctxt "month archive breadcrumb date format"
762
- msgid "F"
763
- msgstr ""
764
-
765
- #: class.bcn_breadcrumb_trail.php:600
766
- msgctxt "year archive breadcrumb date format"
767
- msgid "Y"
768
- msgstr ""
769
-
770
- #: class.bcn_network_admin.php:63
771
- msgid "Breadcrumb NavXT Network Settings"
772
- msgstr ""
773
-
774
- #: class.bcn_network_admin.php:458 class.bcn_network_admin.php:476
775
- msgid ""
776
- "Warning: Individual site settings will override any settings set in this "
777
- "page."
778
- msgstr ""
779
-
780
- #: class.bcn_network_admin.php:466 class.bcn_network_admin.php:470
781
- msgid ""
782
- "Warning: Individual site settings may override any settings set in this page."
783
- msgstr ""
784
-
785
- #: class.bcn_widget.php:32
786
- msgid "Adds a breadcrumb trail to your sidebar"
787
- msgstr ""
788
-
789
- #: class.bcn_widget.php:99
790
- msgid "Title:"
791
- msgstr ""
792
-
793
- #: class.bcn_widget.php:103
794
- msgid "Text to show before the trail:"
795
- msgstr ""
796
-
797
- #: class.bcn_widget.php:107
798
- msgid "Output trail as:"
799
- msgstr ""
800
-
801
- #: class.bcn_widget.php:109
802
- msgid "List"
803
- msgstr ""
804
-
805
- #: class.bcn_widget.php:110
806
- msgid "Google (RDFa) Breadcrumbs"
807
- msgstr ""
808
-
809
- #: class.bcn_widget.php:111
810
- msgid "Plain"
811
- msgstr ""
812
-
813
- #: class.bcn_widget.php:117
814
- msgid "Link the breadcrumbs"
815
- msgstr ""
816
-
817
- #: class.bcn_widget.php:119
818
- msgid "Reverse the order of the trail"
819
- msgstr ""
820
-
821
- #: class.bcn_widget.php:121
822
- msgid "Hide the trail on the front page"
823
- msgstr ""
824
-
825
- #: includes/class.mtekk_adminkit.php:113
826
- msgid "Insufficient privileges to proceed."
827
- msgstr ""
828
-
829
- #: includes/class.mtekk_adminkit.php:236
830
- msgid "Settings"
831
- msgstr ""
832
-
833
- #: includes/class.mtekk_adminkit.php:312
834
- msgid ""
835
- "Your settings are for an older version of this plugin and need to be "
836
- "migrated."
837
- msgstr ""
838
-
839
- #: includes/class.mtekk_adminkit.php:312 includes/class.mtekk_adminkit.php:321
840
- msgid "Migrate the settings now."
841
- msgstr ""
842
-
843
- #: includes/class.mtekk_adminkit.php:312
844
- msgid "Migrate now."
845
- msgstr ""
846
-
847
- #: includes/class.mtekk_adminkit.php:321
848
- msgid "Your settings are for a newer version of this plugin."
849
- msgstr ""
850
-
851
- #: includes/class.mtekk_adminkit.php:321
852
- msgid "Attempt back migration now."
853
- msgstr ""
854
-
855
- #: includes/class.mtekk_adminkit.php:329
856
- msgid "Your plugin install is incomplete."
857
- msgstr ""
858
-
859
- #: includes/class.mtekk_adminkit.php:329
860
- msgid "Load default settings now."
861
- msgstr ""
862
-
863
- #: includes/class.mtekk_adminkit.php:329
864
- msgid "Complete now."
865
- msgstr ""
866
-
867
- #: includes/class.mtekk_adminkit.php:337
868
- msgid "One or more of your plugin settings are invalid."
869
- msgstr ""
870
-
871
- #: includes/class.mtekk_adminkit.php:337
872
- msgid "Attempt to fix settings now."
873
- msgstr ""
874
-
875
- #: includes/class.mtekk_adminkit.php:337
876
- msgid "Fix now."
877
- msgstr ""
878
-
879
- #: includes/class.mtekk_adminkit.php:536
880
- msgid "Settings successfully saved."
881
- msgstr ""
882
-
883
- #: includes/class.mtekk_adminkit.php:536 includes/class.mtekk_adminkit.php:549
884
- msgid "Undo the options save."
885
- msgstr ""
886
-
887
- #: includes/class.mtekk_adminkit.php:536 includes/class.mtekk_adminkit.php:549
888
- #: includes/class.mtekk_adminkit.php:654 includes/class.mtekk_adminkit.php:678
889
- #: includes/class.mtekk_adminkit.php:695
890
- msgid "Undo"
891
- msgstr ""
892
-
893
- #: includes/class.mtekk_adminkit.php:540
894
- msgid "Settings did not change, nothing to save."
895
- msgstr ""
896
-
897
- #: includes/class.mtekk_adminkit.php:544
898
- msgid "Settings were not saved."
899
- msgstr ""
900
-
901
- #: includes/class.mtekk_adminkit.php:549
902
- msgid "Some settings were not saved."
903
- msgstr ""
904
-
905
- #: includes/class.mtekk_adminkit.php:550
906
- msgid "The following settings were not saved:"
907
- msgstr ""
908
-
909
- #: includes/class.mtekk_adminkit.php:555
910
- msgid "Please include this message in your %sbug report%s."
911
- msgstr ""
912
-
913
- #: includes/class.mtekk_adminkit.php:555
914
- msgid "Go to the %s support post for your version."
915
- msgstr ""
916
-
917
- #: includes/class.mtekk_adminkit.php:654
918
- msgid "Settings successfully imported from the uploaded file."
919
- msgstr ""
920
-
921
- #: includes/class.mtekk_adminkit.php:654
922
- msgid "Undo the options import."
923
- msgstr ""
924
-
925
- #: includes/class.mtekk_adminkit.php:659
926
- msgid "Importing settings from file failed."
927
- msgstr ""
928
-
929
- #: includes/class.mtekk_adminkit.php:678
930
- msgid "Settings successfully reset to the default values."
931
- msgstr ""
932
-
933
- #: includes/class.mtekk_adminkit.php:678
934
- msgid "Undo the options reset."
935
- msgstr ""
936
-
937
- #: includes/class.mtekk_adminkit.php:695
938
- msgid "Settings successfully undid the last operation."
939
- msgstr ""
940
-
941
- #: includes/class.mtekk_adminkit.php:695
942
- msgid "Undo the last undo operation."
943
- msgstr ""
944
-
945
- #: includes/class.mtekk_adminkit.php:730
946
- msgid "Settings successfully migrated."
947
- msgstr ""
948
-
949
- #: includes/class.mtekk_adminkit.php:737
950
- msgid "Default settings successfully installed."
951
- msgstr ""
952
-
953
- #: includes/class.mtekk_adminkit.php:833
954
- msgid ""
955
- "Import settings from a XML file, export the current settings to a XML file, "
956
- "or reset to the default settings."
957
- msgstr ""
958
-
959
- #: includes/class.mtekk_adminkit.php:836
960
- msgid "Settings File"
961
- msgstr ""
962
-
963
- #: includes/class.mtekk_adminkit.php:839
964
- msgid "Select a XML settings file to upload and import settings from."
965
- msgstr ""
966
-
967
- #. Plugin Name of the plugin/theme
968
- msgid "Breadcrumb NavXT"
969
- msgstr ""
970
-
971
- #. Plugin URI of the plugin/theme
972
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
973
- msgstr ""
974
-
975
- #. Description of the plugin/theme
976
- msgid ""
977
- "Adds a breadcrumb navigation showing the visitor&#39;s path to their current "
978
- "location. For details on how to use this plugin visit <a href=\"http://mtekk."
979
- "us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
980
- msgstr ""
981
-
982
- #. Author of the plugin/theme
983
- msgid "John Havlik"
984
- msgstr ""
985
-
986
- #. Author URI of the plugin/theme
987
- msgid "http://mtekk.us/"
988
- msgstr ""
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.5.1\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/breadcrumb-navxt\n"
7
+ "POT-Creation-Date: 2016-08-13 19:01:09+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
+
15
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
16
+ #: class.bcn_network_admin.php:25
17
+ msgid ""
18
+ "Your PHP version is too old, please upgrade to a newer version. Your version "
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:295 class.bcn_network_admin.php:366
27
+ msgid "Tips for the settings are located below select options."
28
+ msgstr ""
29
+
30
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:367
31
+ msgid "Resources"
32
+ msgstr ""
33
+
34
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:368
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:297 class.bcn_network_admin.php:368
41
+ msgid "Go to the Breadcrumb NavXT tag archive."
42
+ msgstr ""
43
+
44
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:369
45
+ msgid ""
46
+ "%sOnline Documentation%s: Check out the documentation for more indepth "
47
+ "technical information."
48
+ msgstr ""
49
+
50
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:369
51
+ msgid "Go to the Breadcrumb NavXT online documentation"
52
+ msgstr ""
53
+
54
+ #: class.bcn_admin.php:299 class.bcn_network_admin.php:370
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:299 class.bcn_network_admin.php:370
61
+ msgid "Go to the Breadcrumb NavXT support post for your version."
62
+ msgstr ""
63
+
64
+ #: class.bcn_admin.php:300 class.bcn_network_admin.php:371
65
+ msgid "Giving Back"
66
+ msgstr ""
67
+
68
+ #: class.bcn_admin.php:301 class.bcn_network_admin.php:372
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:301 class.bcn_network_admin.php:372
75
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
76
+ msgstr ""
77
+
78
+ #: class.bcn_admin.php:302 class.bcn_network_admin.php:373
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:302 class.bcn_network_admin.php:373
85
+ msgid "Go to the Breadcrumb NavXT translation project."
86
+ msgstr ""
87
+
88
+ #: class.bcn_admin.php:307 class.bcn_admin.php:446 class.bcn_admin.php:447
89
+ #: class.bcn_network_admin.php:378 class.bcn_network_admin.php:518
90
+ #: class.bcn_network_admin.php:519
91
+ msgid "General"
92
+ msgstr ""
93
+
94
+ #: class.bcn_admin.php:310 class.bcn_network_admin.php:381
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:311 class.bcn_network_admin.php:382
102
+ msgid "Breadcrumb trail with separators"
103
+ msgstr ""
104
+
105
+ #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
106
+ msgid "Breadcrumb trail in list form"
107
+ msgstr ""
108
+
109
+ #: class.bcn_admin.php:326 class.bcn_network_admin.php:397
110
+ msgid "Quick Start"
111
+ msgstr ""
112
+
113
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:400
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:341 class.bcn_network_admin.php:412
120
+ msgid "Styling"
121
+ msgstr ""
122
+
123
+ #: class.bcn_admin.php:347 class.bcn_network_admin.php:418
124
+ msgid "Import/Export/Reset"
125
+ msgstr ""
126
+
127
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:442
128
+ #: includes/class.mtekk_adminkit.php:841
129
+ msgid "Import"
130
+ msgstr ""
131
+
132
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:443
133
+ #: includes/class.mtekk_adminkit.php:842
134
+ msgid "Export"
135
+ msgstr ""
136
+
137
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:444
138
+ #: includes/class.mtekk_adminkit.php:843
139
+ msgid "Reset"
140
+ msgstr ""
141
+
142
+ #: class.bcn_admin.php:391
143
+ msgid ""
144
+ "Warning: Your network settings will override any settings set in this page."
145
+ msgstr ""
146
+
147
+ #: class.bcn_admin.php:395 class.bcn_admin.php:399
148
+ msgid ""
149
+ "Warning: Your network settings may override any settings set in this page."
150
+ msgstr ""
151
+
152
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:475
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:416 class.bcn_network_admin.php:488
159
+ msgid ""
160
+ "Warning: Your are using a deprecated setting \"Title Length\" (see "
161
+ "Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
162
+ msgstr ""
163
+
164
+ #: class.bcn_admin.php:416 class.bcn_admin.php:704
165
+ #: class.bcn_network_admin.php:488 class.bcn_network_admin.php:776
166
+ msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
167
+ msgstr ""
168
+
169
+ #: class.bcn_admin.php:446 class.bcn_network_admin.php:518
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:450 class.bcn_network_admin.php:522
176
+ msgid "Breadcrumb Separator"
177
+ msgstr ""
178
+
179
+ #: class.bcn_admin.php:450 class.bcn_network_admin.php:522
180
+ msgid "Placed in between each breadcrumb."
181
+ msgstr ""
182
+
183
+ #: class.bcn_admin.php:454 class.bcn_network_admin.php:526
184
+ msgid "Current Item"
185
+ msgstr ""
186
+
187
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:529
188
+ msgid "Link Current Item"
189
+ msgstr ""
190
+
191
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:529
192
+ msgid "Yes"
193
+ msgstr ""
194
+
195
+ #: class.bcn_admin.php:458 class.bcn_network_admin.php:530
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:458 class.bcn_network_admin.php:530
202
+ msgid "Place the page number breadcrumb in the trail."
203
+ msgstr ""
204
+
205
+ #: class.bcn_admin.php:458 class.bcn_network_admin.php:530
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:459 class.bcn_network_admin.php:531
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:459 class.bcn_network_admin.php:531
218
+ msgid "The template for paged breadcrumbs."
219
+ msgstr ""
220
+
221
+ #: class.bcn_admin.php:463 class.bcn_admin.php:466
222
+ #: class.bcn_network_admin.php:535 class.bcn_network_admin.php:538
223
+ msgid "Home Breadcrumb"
224
+ msgstr ""
225
+
226
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:538
227
+ msgid "Place the home breadcrumb in the trail."
228
+ msgstr ""
229
+
230
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:539
231
+ msgid "Home Template"
232
+ msgstr ""
233
+
234
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:539
235
+ msgid "The template for the home breadcrumb."
236
+ msgstr ""
237
+
238
+ #: class.bcn_admin.php:468 class.bcn_network_admin.php:540
239
+ msgid "Home Template (Unlinked)"
240
+ msgstr ""
241
+
242
+ #: class.bcn_admin.php:468 class.bcn_network_admin.php:540
243
+ msgid ""
244
+ "The template for the home breadcrumb, used when the breadcrumb is not linked."
245
+ msgstr ""
246
+
247
+ #: class.bcn_admin.php:472 class.bcn_admin.php:475
248
+ #: class.bcn_network_admin.php:544 class.bcn_network_admin.php:547
249
+ msgid "Blog Breadcrumb"
250
+ msgstr ""
251
+
252
+ #: class.bcn_admin.php:475 class.bcn_network_admin.php:547
253
+ msgid "Place the blog breadcrumb in the trail."
254
+ msgstr ""
255
+
256
+ #: class.bcn_admin.php:476 class.bcn_network_admin.php:548
257
+ msgid "Blog Template"
258
+ msgstr ""
259
+
260
+ #: class.bcn_admin.php:476 class.bcn_network_admin.php:548
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:477 class.bcn_network_admin.php:549
267
+ msgid "Blog Template (Unlinked)"
268
+ msgstr ""
269
+
270
+ #: class.bcn_admin.php:477 class.bcn_network_admin.php:549
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:481 class.bcn_network_admin.php:553
277
+ msgid "Mainsite Breadcrumb"
278
+ msgstr ""
279
+
280
+ #: class.bcn_admin.php:484 class.bcn_network_admin.php:556
281
+ msgid "Main Site Breadcrumb"
282
+ msgstr ""
283
+
284
+ #: class.bcn_admin.php:484 class.bcn_network_admin.php:556
285
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
286
+ msgstr ""
287
+
288
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
289
+ msgid "Main Site Home Template"
290
+ msgstr ""
291
+
292
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
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:486 class.bcn_network_admin.php:558
299
+ msgid "Main Site Home Template (Unlinked)"
300
+ msgstr ""
301
+
302
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
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:493 class.bcn_network_admin.php:565
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:493 class.bcn_network_admin.php:565
315
+ msgid "Post Types"
316
+ msgstr ""
317
+
318
+ #: class.bcn_admin.php:494 class.bcn_network_admin.php:566
319
+ msgid "Posts"
320
+ msgstr ""
321
+
322
+ #: class.bcn_admin.php:497 class.bcn_network_admin.php:569
323
+ msgid "Post Template"
324
+ msgstr ""
325
+
326
+ #: class.bcn_admin.php:497 class.bcn_network_admin.php:569
327
+ msgid "The template for post breadcrumbs."
328
+ msgstr ""
329
+
330
+ #: class.bcn_admin.php:498 class.bcn_network_admin.php:570
331
+ msgid "Post Template (Unlinked)"
332
+ msgstr ""
333
+
334
+ #: class.bcn_admin.php:498 class.bcn_network_admin.php:570
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:499 class.bcn_network_admin.php:571
341
+ msgid "Post Hierarchy Display"
342
+ msgstr ""
343
+
344
+ #: class.bcn_admin.php:499 class.bcn_network_admin.php:571
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:500 class.bcn_network_admin.php:572
351
+ msgid "Post Hierarchy Referer Influence"
352
+ msgstr ""
353
+
354
+ #: class.bcn_admin.php:500 class.bcn_admin.php:578
355
+ #: class.bcn_network_admin.php:572 class.bcn_network_admin.php:650
356
+ msgid ""
357
+ "Allow the refereing page to influence the taxonomy selected for the "
358
+ "hierarchy."
359
+ msgstr ""
360
+
361
+ #: class.bcn_admin.php:504 class.bcn_network_admin.php:576
362
+ msgid "Post Hierarchy"
363
+ msgstr ""
364
+
365
+ #: class.bcn_admin.php:508 class.bcn_admin.php:627
366
+ #: class.bcn_network_admin.php:580 class.bcn_network_admin.php:699
367
+ msgid "Categories"
368
+ msgstr ""
369
+
370
+ #: class.bcn_admin.php:509 class.bcn_admin.php:588
371
+ #: class.bcn_network_admin.php:581 class.bcn_network_admin.php:660
372
+ msgid "Dates"
373
+ msgstr ""
374
+
375
+ #: class.bcn_admin.php:510 class.bcn_admin.php:634
376
+ #: class.bcn_network_admin.php:582 class.bcn_network_admin.php:706
377
+ msgid "Tags"
378
+ msgstr ""
379
+
380
+ #: class.bcn_admin.php:512 class.bcn_admin.php:587
381
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:659
382
+ msgid "Post Parent"
383
+ msgstr ""
384
+
385
+ #: class.bcn_admin.php:528 class.bcn_admin.php:612
386
+ #: class.bcn_network_admin.php:600 class.bcn_network_admin.php:684
387
+ msgid ""
388
+ "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
389
+ "Parent\" option may require an additional plugin to behave as expected since "
390
+ "this is a non-hierarchical post type."
391
+ msgstr ""
392
+
393
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:604
394
+ msgid "Pages"
395
+ msgstr ""
396
+
397
+ #: class.bcn_admin.php:535 class.bcn_network_admin.php:607
398
+ msgid "Page Template"
399
+ msgstr ""
400
+
401
+ #: class.bcn_admin.php:535 class.bcn_network_admin.php:607
402
+ msgid "The template for page breadcrumbs."
403
+ msgstr ""
404
+
405
+ #: class.bcn_admin.php:536 class.bcn_network_admin.php:608
406
+ msgid "Page Template (Unlinked)"
407
+ msgstr ""
408
+
409
+ #: class.bcn_admin.php:536 class.bcn_network_admin.php:608
410
+ msgid ""
411
+ "The template for page breadcrumbs, used only when the breadcrumb is not "
412
+ "linked."
413
+ msgstr ""
414
+
415
+ #: class.bcn_admin.php:539 class.bcn_network_admin.php:611
416
+ msgid "Attachments"
417
+ msgstr ""
418
+
419
+ #: class.bcn_admin.php:542 class.bcn_network_admin.php:614
420
+ msgid "Attachment Template"
421
+ msgstr ""
422
+
423
+ #: class.bcn_admin.php:542 class.bcn_network_admin.php:614
424
+ msgid "The template for attachment breadcrumbs."
425
+ msgstr ""
426
+
427
+ #: class.bcn_admin.php:543 class.bcn_network_admin.php:615
428
+ msgid "Attachment Template (Unlinked)"
429
+ msgstr ""
430
+
431
+ #: class.bcn_admin.php:543 class.bcn_network_admin.php:615
432
+ msgid ""
433
+ "The template for attachment breadcrumbs, used only when the breadcrumb is "
434
+ "not linked."
435
+ msgstr ""
436
+
437
+ #: class.bcn_admin.php:563 class.bcn_admin.php:665
438
+ #: class.bcn_network_admin.php:635 class.bcn_network_admin.php:737
439
+ msgid "%s Template"
440
+ msgstr ""
441
+
442
+ #: class.bcn_admin.php:563 class.bcn_admin.php:665
443
+ #: class.bcn_network_admin.php:635 class.bcn_network_admin.php:737
444
+ msgid "The template for %s breadcrumbs."
445
+ msgstr ""
446
+
447
+ #: class.bcn_admin.php:564 class.bcn_admin.php:666
448
+ #: class.bcn_network_admin.php:636 class.bcn_network_admin.php:738
449
+ msgid "%s Template (Unlinked)"
450
+ msgstr ""
451
+
452
+ #: class.bcn_admin.php:564 class.bcn_admin.php:666
453
+ #: class.bcn_network_admin.php:636 class.bcn_network_admin.php:738
454
+ msgid ""
455
+ "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
456
+ msgstr ""
457
+
458
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:641
459
+ msgid "%s Root Page"
460
+ msgstr ""
461
+
462
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
463
+ msgid "&mdash; Select &mdash;"
464
+ msgstr ""
465
+
466
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:648
467
+ msgid "%s Archive Display"
468
+ msgstr ""
469
+
470
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:648
471
+ msgid ""
472
+ "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
473
+ msgstr ""
474
+
475
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:649
476
+ msgid "%s Hierarchy Display"
477
+ msgstr ""
478
+
479
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:649
480
+ msgid ""
481
+ "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
482
+ msgstr ""
483
+
484
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:650
485
+ msgid "%s Hierarchy Referer Influence"
486
+ msgstr ""
487
+
488
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:654
489
+ msgid "%s Hierarchy"
490
+ msgstr ""
491
+
492
+ #: class.bcn_admin.php:608 class.bcn_network_admin.php:680
493
+ msgid "The hierarchy which the breadcrumb trail will show."
494
+ msgstr ""
495
+
496
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:698
497
+ msgid ""
498
+ "The settings for all taxonomies (including Categories, Tags, and custom "
499
+ "taxonomies) are located under this tab."
500
+ msgstr ""
501
+
502
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:698
503
+ msgid "Taxonomies"
504
+ msgstr ""
505
+
506
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
507
+ msgid "Category Template"
508
+ msgstr ""
509
+
510
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
511
+ msgid "The template for category breadcrumbs."
512
+ msgstr ""
513
+
514
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
515
+ msgid "Category Template (Unlinked)"
516
+ msgstr ""
517
+
518
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
519
+ msgid ""
520
+ "The template for category breadcrumbs, used only when the breadcrumb is not "
521
+ "linked."
522
+ msgstr ""
523
+
524
+ #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
525
+ msgid "Tag Template"
526
+ msgstr ""
527
+
528
+ #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
529
+ msgid "The template for tag breadcrumbs."
530
+ msgstr ""
531
+
532
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:710
533
+ msgid "Tag Template (Unlinked)"
534
+ msgstr ""
535
+
536
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:710
537
+ msgid ""
538
+ "The template for tag breadcrumbs, used only when the breadcrumb is not "
539
+ "linked."
540
+ msgstr ""
541
+
542
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:713
543
+ msgid "Post Formats"
544
+ msgstr ""
545
+
546
+ #: class.bcn_admin.php:644 class.bcn_network_admin.php:716
547
+ msgid "Post Format Template"
548
+ msgstr ""
549
+
550
+ #: class.bcn_admin.php:644 class.bcn_network_admin.php:716
551
+ msgid "The template for post format breadcrumbs."
552
+ msgstr ""
553
+
554
+ #: class.bcn_admin.php:645 class.bcn_network_admin.php:717
555
+ msgid "Post Format Template (Unlinked)"
556
+ msgstr ""
557
+
558
+ #: class.bcn_admin.php:645 class.bcn_network_admin.php:717
559
+ msgid ""
560
+ "The template for post_format breadcrumbs, used only when the breadcrumb is "
561
+ "not linked."
562
+ msgstr ""
563
+
564
+ #: class.bcn_admin.php:675 class.bcn_network_admin.php:747
565
+ msgid ""
566
+ "The settings for author and date archives, searches, and 404 pages are "
567
+ "located under this tab."
568
+ msgstr ""
569
+
570
+ #: class.bcn_admin.php:675 class.bcn_admin.php:684
571
+ #: class.bcn_network_admin.php:747 class.bcn_network_admin.php:756
572
+ msgid "Miscellaneous"
573
+ msgstr ""
574
+
575
+ #: class.bcn_admin.php:676 class.bcn_network_admin.php:748
576
+ msgid "Author Archives"
577
+ msgstr ""
578
+
579
+ #: class.bcn_admin.php:679 class.bcn_network_admin.php:751
580
+ msgid "Author Template"
581
+ msgstr ""
582
+
583
+ #: class.bcn_admin.php:679 class.bcn_network_admin.php:751
584
+ msgid "The template for author breadcrumbs."
585
+ msgstr ""
586
+
587
+ #: class.bcn_admin.php:680 class.bcn_network_admin.php:752
588
+ msgid "Author Template (Unlinked)"
589
+ msgstr ""
590
+
591
+ #: class.bcn_admin.php:680 class.bcn_network_admin.php:752
592
+ msgid ""
593
+ "The template for author breadcrumbs, used only when the breadcrumb is not "
594
+ "linked."
595
+ msgstr ""
596
+
597
+ #: class.bcn_admin.php:681 class.bcn_network_admin.php:753
598
+ msgid "Author Display Format"
599
+ msgstr ""
600
+
601
+ #: class.bcn_admin.php:681 class.bcn_network_admin.php:753
602
+ msgid ""
603
+ "display_name uses the name specified in \"Display name publicly as\" under "
604
+ "the user profile the others correspond to options in the user profile."
605
+ msgstr ""
606
+
607
+ #: class.bcn_admin.php:687 class.bcn_network_admin.php:759
608
+ msgid "Date Template"
609
+ msgstr ""
610
+
611
+ #: class.bcn_admin.php:687 class.bcn_network_admin.php:759
612
+ msgid "The template for date breadcrumbs."
613
+ msgstr ""
614
+
615
+ #: class.bcn_admin.php:688 class.bcn_network_admin.php:760
616
+ msgid "Date Template (Unlinked)"
617
+ msgstr ""
618
+
619
+ #: class.bcn_admin.php:688 class.bcn_network_admin.php:760
620
+ msgid ""
621
+ "The template for date breadcrumbs, used only when the breadcrumb is not "
622
+ "linked."
623
+ msgstr ""
624
+
625
+ #: class.bcn_admin.php:689 class.bcn_network_admin.php:761
626
+ msgid "Search Template"
627
+ msgstr ""
628
+
629
+ #: class.bcn_admin.php:689 class.bcn_network_admin.php:761
630
+ msgid ""
631
+ "The anchor template for search breadcrumbs, used only when the search "
632
+ "results span several pages."
633
+ msgstr ""
634
+
635
+ #: class.bcn_admin.php:690 class.bcn_network_admin.php:762
636
+ msgid "Search Template (Unlinked)"
637
+ msgstr ""
638
+
639
+ #: class.bcn_admin.php:690 class.bcn_network_admin.php:762
640
+ msgid ""
641
+ "The anchor template for search breadcrumbs, used only when the search "
642
+ "results span several pages and the breadcrumb is not linked."
643
+ msgstr ""
644
+
645
+ #: class.bcn_admin.php:691 class.bcn_network_admin.php:763
646
+ msgid "404 Title"
647
+ msgstr ""
648
+
649
+ #: class.bcn_admin.php:692 class.bcn_network_admin.php:764
650
+ msgid "404 Template"
651
+ msgstr ""
652
+
653
+ #: class.bcn_admin.php:692 class.bcn_network_admin.php:764
654
+ msgid "The template for 404 breadcrumbs."
655
+ msgstr ""
656
+
657
+ #: class.bcn_admin.php:695 class.bcn_network_admin.php:767
658
+ msgid "Deprecated"
659
+ msgstr ""
660
+
661
+ #: class.bcn_admin.php:699 class.bcn_network_admin.php:771
662
+ msgid "Title Length"
663
+ msgstr ""
664
+
665
+ #: class.bcn_admin.php:704 class.bcn_network_admin.php:776
666
+ msgid ""
667
+ "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
668
+ msgstr ""
669
+
670
+ #: class.bcn_admin.php:709 class.bcn_network_admin.php:781
671
+ msgid "Max Title Length: "
672
+ msgstr ""
673
+
674
+ #: class.bcn_admin.php:721 class.bcn_network_admin.php:793
675
+ msgid "Save Changes"
676
+ msgstr ""
677
+
678
+ #: class.bcn_breadcrumb.php:91
679
+ msgid ""
680
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
681
+ "typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%"
682
+ "\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" "
683
+ "content=\"%position%\"></span>"
684
+ msgstr ""
685
+
686
+ #: class.bcn_breadcrumb_trail.php:77
687
+ msgid ""
688
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
689
+ "\">Page %htitle%</span><meta property=\"position\" content=\"%position%\"></"
690
+ "span>"
691
+ msgstr ""
692
+
693
+ #: class.bcn_breadcrumb_trail.php:102
694
+ msgid "404"
695
+ msgstr ""
696
+
697
+ #: class.bcn_breadcrumb_trail.php:105
698
+ msgid ""
699
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
700
+ "\">Search results for &#39;<a property=\"item\" typeof=\"WebPage\" title="
701
+ "\"Go to the first page of search results for %title%.\" href=\"%link%\" "
702
+ "class=\"%type%\">%htitle%</a>&#39;</span><meta property=\"position\" content="
703
+ "\"%position%\"></span>"
704
+ msgstr ""
705
+
706
+ #: class.bcn_breadcrumb_trail.php:107
707
+ msgid ""
708
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
709
+ "\">Search results for &#39;%htitle%&#39;</span><meta property=\"position\" "
710
+ "content=\"%position%\"></span>"
711
+ msgstr ""
712
+
713
+ #: class.bcn_breadcrumb_trail.php:110
714
+ msgid ""
715
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
716
+ "typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" "
717
+ "class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property="
718
+ "\"position\" content=\"%position%\"></span>"
719
+ msgstr ""
720
+
721
+ #: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
722
+ msgid ""
723
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
724
+ "typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" "
725
+ "class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property="
726
+ "\"position\" content=\"%position%\"></span>"
727
+ msgstr ""
728
+
729
+ #: class.bcn_breadcrumb_trail.php:120
730
+ msgid ""
731
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
732
+ "\">Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
733
+ "\"%link%\" class=\"%type%\">%htitle%</a>"
734
+ msgstr ""
735
+
736
+ #: class.bcn_breadcrumb_trail.php:122
737
+ msgid ""
738
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><span property=\"name"
739
+ "\">Articles by: %htitle%</span><meta property=\"position\" content="
740
+ "\"%position%\"></span>"
741
+ msgstr ""
742
+
743
+ #: class.bcn_breadcrumb_trail.php:127
744
+ msgid ""
745
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
746
+ "typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href="
747
+ "\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta "
748
+ "property=\"position\" content=\"%position%\"></span>"
749
+ msgstr ""
750
+
751
+ #: class.bcn_breadcrumb_trail.php:465
752
+ msgid "$post global is not of type WP_Post"
753
+ msgstr ""
754
+
755
+ #: class.bcn_breadcrumb_trail.php:563
756
+ msgctxt "day archive breadcrumb date format"
757
+ msgid "d"
758
+ msgstr ""
759
+
760
+ #: class.bcn_breadcrumb_trail.php:583
761
+ msgctxt "month archive breadcrumb date format"
762
+ msgid "F"
763
+ msgstr ""
764
+
765
+ #: class.bcn_breadcrumb_trail.php:600
766
+ msgctxt "year archive breadcrumb date format"
767
+ msgid "Y"
768
+ msgstr ""
769
+
770
+ #: class.bcn_network_admin.php:63
771
+ msgid "Breadcrumb NavXT Network Settings"
772
+ msgstr ""
773
+
774
+ #: class.bcn_network_admin.php:458 class.bcn_network_admin.php:476
775
+ msgid ""
776
+ "Warning: Individual site settings will override any settings set in this "
777
+ "page."
778
+ msgstr ""
779
+
780
+ #: class.bcn_network_admin.php:466 class.bcn_network_admin.php:470
781
+ msgid ""
782
+ "Warning: Individual site settings may override any settings set in this page."
783
+ msgstr ""
784
+
785
+ #: class.bcn_widget.php:32
786
+ msgid "Adds a breadcrumb trail to your sidebar"
787
+ msgstr ""
788
+
789
+ #: class.bcn_widget.php:99
790
+ msgid "Title:"
791
+ msgstr ""
792
+
793
+ #: class.bcn_widget.php:103
794
+ msgid "Text to show before the trail:"
795
+ msgstr ""
796
+
797
+ #: class.bcn_widget.php:107
798
+ msgid "Output trail as:"
799
+ msgstr ""
800
+
801
+ #: class.bcn_widget.php:109
802
+ msgid "List"
803
+ msgstr ""
804
+
805
+ #: class.bcn_widget.php:110
806
+ msgid "Google (RDFa) Breadcrumbs"
807
+ msgstr ""
808
+
809
+ #: class.bcn_widget.php:111
810
+ msgid "Plain"
811
+ msgstr ""
812
+
813
+ #: class.bcn_widget.php:117
814
+ msgid "Link the breadcrumbs"
815
+ msgstr ""
816
+
817
+ #: class.bcn_widget.php:119
818
+ msgid "Reverse the order of the trail"
819
+ msgstr ""
820
+
821
+ #: class.bcn_widget.php:121
822
+ msgid "Hide the trail on the front page"
823
+ msgstr ""
824
+
825
+ #: includes/class.mtekk_adminkit.php:113
826
+ msgid "Insufficient privileges to proceed."
827
+ msgstr ""
828
+
829
+ #: includes/class.mtekk_adminkit.php:236
830
+ msgid "Settings"
831
+ msgstr ""
832
+
833
+ #: includes/class.mtekk_adminkit.php:312
834
+ msgid ""
835
+ "Your settings are for an older version of this plugin and need to be "
836
+ "migrated."
837
+ msgstr ""
838
+
839
+ #: includes/class.mtekk_adminkit.php:312 includes/class.mtekk_adminkit.php:321
840
+ msgid "Migrate the settings now."
841
+ msgstr ""
842
+
843
+ #: includes/class.mtekk_adminkit.php:312
844
+ msgid "Migrate now."
845
+ msgstr ""
846
+
847
+ #: includes/class.mtekk_adminkit.php:321
848
+ msgid "Your settings are for a newer version of this plugin."
849
+ msgstr ""
850
+
851
+ #: includes/class.mtekk_adminkit.php:321
852
+ msgid "Attempt back migration now."
853
+ msgstr ""
854
+
855
+ #: includes/class.mtekk_adminkit.php:329
856
+ msgid "Your plugin install is incomplete."
857
+ msgstr ""
858
+
859
+ #: includes/class.mtekk_adminkit.php:329
860
+ msgid "Load default settings now."
861
+ msgstr ""
862
+
863
+ #: includes/class.mtekk_adminkit.php:329
864
+ msgid "Complete now."
865
+ msgstr ""
866
+
867
+ #: includes/class.mtekk_adminkit.php:337
868
+ msgid "One or more of your plugin settings are invalid."
869
+ msgstr ""
870
+
871
+ #: includes/class.mtekk_adminkit.php:337
872
+ msgid "Attempt to fix settings now."
873
+ msgstr ""
874
+
875
+ #: includes/class.mtekk_adminkit.php:337
876
+ msgid "Fix now."
877
+ msgstr ""
878
+
879
+ #: includes/class.mtekk_adminkit.php:536
880
+ msgid "Settings successfully saved."
881
+ msgstr ""
882
+
883
+ #: includes/class.mtekk_adminkit.php:536 includes/class.mtekk_adminkit.php:549
884
+ msgid "Undo the options save."
885
+ msgstr ""
886
+
887
+ #: includes/class.mtekk_adminkit.php:536 includes/class.mtekk_adminkit.php:549
888
+ #: includes/class.mtekk_adminkit.php:654 includes/class.mtekk_adminkit.php:678
889
+ #: includes/class.mtekk_adminkit.php:695
890
+ msgid "Undo"
891
+ msgstr ""
892
+
893
+ #: includes/class.mtekk_adminkit.php:540
894
+ msgid "Settings did not change, nothing to save."
895
+ msgstr ""
896
+
897
+ #: includes/class.mtekk_adminkit.php:544
898
+ msgid "Settings were not saved."
899
+ msgstr ""
900
+
901
+ #: includes/class.mtekk_adminkit.php:549
902
+ msgid "Some settings were not saved."
903
+ msgstr ""
904
+
905
+ #: includes/class.mtekk_adminkit.php:550
906
+ msgid "The following settings were not saved:"
907
+ msgstr ""
908
+
909
+ #: includes/class.mtekk_adminkit.php:555
910
+ msgid "Please include this message in your %sbug report%s."
911
+ msgstr ""
912
+
913
+ #: includes/class.mtekk_adminkit.php:555
914
+ msgid "Go to the %s support post for your version."
915
+ msgstr ""
916
+
917
+ #: includes/class.mtekk_adminkit.php:654
918
+ msgid "Settings successfully imported from the uploaded file."
919
+ msgstr ""
920
+
921
+ #: includes/class.mtekk_adminkit.php:654
922
+ msgid "Undo the options import."
923
+ msgstr ""
924
+
925
+ #: includes/class.mtekk_adminkit.php:659
926
+ msgid "Importing settings from file failed."
927
+ msgstr ""
928
+
929
+ #: includes/class.mtekk_adminkit.php:678
930
+ msgid "Settings successfully reset to the default values."
931
+ msgstr ""
932
+
933
+ #: includes/class.mtekk_adminkit.php:678
934
+ msgid "Undo the options reset."
935
+ msgstr ""
936
+
937
+ #: includes/class.mtekk_adminkit.php:695
938
+ msgid "Settings successfully undid the last operation."
939
+ msgstr ""
940
+
941
+ #: includes/class.mtekk_adminkit.php:695
942
+ msgid "Undo the last undo operation."
943
+ msgstr ""
944
+
945
+ #: includes/class.mtekk_adminkit.php:730
946
+ msgid "Settings successfully migrated."
947
+ msgstr ""
948
+
949
+ #: includes/class.mtekk_adminkit.php:737
950
+ msgid "Default settings successfully installed."
951
+ msgstr ""
952
+
953
+ #: includes/class.mtekk_adminkit.php:833
954
+ msgid ""
955
+ "Import settings from a XML file, export the current settings to a XML file, "
956
+ "or reset to the default settings."
957
+ msgstr ""
958
+
959
+ #: includes/class.mtekk_adminkit.php:836
960
+ msgid "Settings File"
961
+ msgstr ""
962
+
963
+ #: includes/class.mtekk_adminkit.php:839
964
+ msgid "Select a XML settings file to upload and import settings from."
965
+ msgstr ""
966
+
967
+ #. Plugin Name of the plugin/theme
968
+ msgid "Breadcrumb NavXT"
969
+ msgstr ""
970
+
971
+ #. Plugin URI of the plugin/theme
972
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
973
+ msgstr ""
974
+
975
+ #. Description of the plugin/theme
976
+ msgid ""
977
+ "Adds a breadcrumb navigation showing the visitor&#39;s path to their current "
978
+ "location. For details on how to use this plugin visit <a href=\"http://mtekk."
979
+ "us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
980
+ msgstr ""
981
+
982
+ #. Author of the plugin/theme
983
+ msgid "John Havlik"
984
+ msgstr ""
985
+
986
+ #. Author URI of the plugin/theme
987
+ msgid "http://mtekk.us/"
988
+ msgstr ""
phpunit.xml DELETED
@@ -1,19 +0,0 @@
1
- <phpunit
2
- bootstrap="tests/bootstrap.php"
3
- backupGlobals="false"
4
- colors="true"
5
- convertErrorsToExceptions="true"
6
- convertNoticesToExceptions="true"
7
- convertWarningsToExceptions="true"
8
- >
9
- <testsuites>
10
- <testsuite>
11
- <directory prefix="test-" suffix=".php">./tests/</directory>
12
- </testsuite>
13
- </testsuites>
14
- <groups>
15
- <exclude>
16
- <group>uninstall</group>
17
- </exclude>
18
- </groups>
19
- </phpunit>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
- Requires at least: 4.4
6
  Tested up to: 4.7
7
- Stable tag: 5.6.0
8
  License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
@@ -53,6 +53,14 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
53
 
54
  == Changelog ==
55
 
 
 
 
 
 
 
 
 
56
  = 5.6.0 =
57
  Release date: December 23rd, 2016
58
 
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&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
+ Requires at least: 4.5
6
  Tested up to: 4.7
7
+ Stable tag: 5.7.0
8
  License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
53
 
54
  == Changelog ==
55
 
56
+ = 5.7.0 =
57
+ Release date: April 21st, 2017
58
+
59
+ * New feature: Added `bcn_display_json_ld(`) function for producing Schema.org BreadcrumbList compliant JSON-LD markup.
60
+ * Bug fix: Fixed issue where the uninstaller caused PHP Errors when ran from WP CLI.
61
+ * Bug fix: Fixed issue where `bcn_breadcrumb_trail::find_type()` caused a PHP Warnings in certain circumstances.
62
+ * Bug fix: Fixed typo in the administrative interface.
63
+
64
  = 5.6.0 =
65
  Release date: December 23rd, 2016
66
 
uninstall.php CHANGED
@@ -21,7 +21,32 @@
21
  *
22
  * @author Tom Klingenberg
23
  */
 
 
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  require_once(dirname(__FILE__) . '/includes/class.mtekk_adminkit_uninstaller.php');
26
 
27
  /**
@@ -84,7 +109,7 @@ class bcn_uninstaller extends mtekk_adminKit_uninstaller
84
  */
85
  public function uninstall()
86
  {
87
- //Only bother to do things
88
  if($this->is_installed())
89
  {
90
  return $this->uninstall_options();
21
  *
22
  * @author Tom Klingenberg
23
  */
24
+ /*
25
+ Copyright 2010-2017 John Havlik (email : john.havlik@mtekk.us)
26
 
27
+ This program is free software; you can redistribute it and/or modify
28
+ it under the terms of the GNU General Public License as published by
29
+ the Free Software Foundation; either version 2 of the License, or
30
+ (at your option) any later version.
31
+
32
+ This program is distributed in the hope that it will be useful,
33
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
34
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35
+ GNU General Public License for more details.
36
+
37
+ You should have received a copy of the GNU General Public License
38
+ along with this program; if not, write to the Free Software
39
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
40
+ */
41
+ //Ensure the uninstall.php file was only called by WordPress and not directly
42
+ if(!defined('WP_UNINSTALL_PLUGIN'))
43
+ {
44
+ //First catches the Apache users
45
+ header("HTTP/1.0 404 Not Found");
46
+ //This should catch FastCGI users
47
+ header("Status: 404 Not Found");
48
+ die();
49
+ }
50
  require_once(dirname(__FILE__) . '/includes/class.mtekk_adminkit_uninstaller.php');
51
 
52
  /**
109
  */
110
  public function uninstall()
111
  {
112
+ //Only bother to do things if we have something in the database
113
  if($this->is_installed())
114
  {
115
  return $this->uninstall_options();