Breadcrumb NavXT - Version 3.8.0

Version Description

  • New feature: Error reporting added for some errors that may occur during a settings save.
  • New feature: Custom post types may use dates as their taxonomy type.
  • New feature: New display_nested function to facilitate support for Googles Breadcrumbs RDFa and Microformat.
  • New feature: Paged display works for all post types now (was previously restricted to archives).
  • Bug fix: Fixed a few cases where Breadcrumb NavXT may cause PHP warnings.
  • Bug fix: Automatically deactivates if PHP version is tool old rather than just displaying warning message.
  • Bug fix: Custom post types that are not associated with any taxonomies no longer cause PHP Notices.
  • Bug fix: Various PHP Notices introduced in 3.7.0 were fixed.
  • Bug fix: Fixed issue where multiple runs caused the current_item_prefix and current_item_suffix to be applied multiple times.
  • Bug fix: The included display functions will behave more appropriately when database settings dont exist.
  • Bug fix: Fixed multibyte UTF-8 character support for custom taxonomies.
  • Bug fix: Fixed issue where the widget (Appearance > Widgets) would not load the appropriate translations.
Download this release

Release Info

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

Code changes from version 3.7.0 to 3.8.0

breadcrumb_navxt_admin.php CHANGED
@@ -3,11 +3,11 @@
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: 3.7.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  */
10
- /* Copyright 2007-2010 John Havlik (email : mtekkmonkey@gmail.com)
11
 
12
  This program is free software; you can redistribute it and/or modify
13
  it under the terms of the GNU General Public License as published by
@@ -26,7 +26,13 @@ Author URI: http://mtekk.us/
26
  //Do a PHP version check, require 5.2 or newer
27
  if(version_compare(PHP_VERSION, '5.2.0', '<'))
28
  {
29
- wp_die(sprintf(__('Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s', 'breadcrumb_navxt'), phpversion(), '5.2.0'));
 
 
 
 
 
 
30
  }
31
  //Include the breadcrumb class
32
  require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
@@ -48,7 +54,7 @@ class bcn_admin extends mtekk_admin
48
  *
49
  * @var string
50
  */
51
- protected $version = '3.7.0';
52
  protected $full_name = 'Breadcrumb NavXT Settings';
53
  protected $short_name = 'Breadcrumb NavXT';
54
  protected $access_level = 'manage_options';
@@ -161,7 +167,7 @@ class bcn_admin extends mtekk_admin
161
  //If our version is not the same as in the db, time to update
162
  if($version !== $this->version)
163
  {
164
- //Upgrading from 3.4
165
  if(version_compare($version, '3.4.0', '<'))
166
  {
167
  //Inline upgrade of the tag setting
@@ -262,6 +268,9 @@ class bcn_admin extends mtekk_admin
262
  $this->update_option('bcn_options_bk', $this->opt);
263
  //Grab our incomming array (the data is dirty)
264
  $input = $_POST['bcn_options'];
 
 
 
265
  //Loop through all of the existing options (avoids random setting injection)
266
  foreach($this->opt as $option => $value)
267
  {
@@ -288,8 +297,23 @@ class bcn_admin extends mtekk_admin
288
  }
289
  //Commit the option changes
290
  $this->update_option('bcn_options', $this->opt);
291
- //Let the user know everything went ok
292
- $this->message['updated fade'][] = __('Settings successfully saved.', $this->identifier) . $this->undo_anchor(__('Undo the options save.', $this->identifier));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
293
  add_action('admin_notices', array($this, 'message'));
294
  }
295
  /**
@@ -311,10 +335,11 @@ class bcn_admin extends mtekk_admin
311
  protected function _get_help_text()
312
  {
313
  return '<p>' . sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
314
- '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . '</p><h5>' .
 
315
  __('Quick Start Information', 'breadcrumb_navxt') . '</h5><p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb_navxt') .
316
  '</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb_navxt').'</h5><code>&lt;div class="breadcrumbs"&gt;'."&lt;?php if(function_exists('bcn_display')){ bcn_display();}?&gt;&lt;/div&gt;</code>" .
317
- '<h5>' . __('Breadcrumb trail in list form', 'breadcrumb_navxt').'</h5><code>&lt;ul class="breadcrumbs"&gt;'."&lt;?php if(function_exists('bcn_display_list')){ bcn_display_list();}?&gt;&lt;/ul&gt;</code>";
318
  }
319
  /**
320
  * Adds in the JavaScript and CSS for the tabs in the adminsitrative
@@ -415,7 +440,8 @@ class bcn_admin extends mtekk_admin
415
  {
416
  global $wp_taxonomies, $wp_post_types;
417
  $this->security();
418
- $this->version_check($this->get_option($this->unique_prefix . '_version'));?>
 
419
  <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
420
  <div<?php if($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
421
  print $this->_get_help_text();
@@ -470,6 +496,7 @@ class bcn_admin extends mtekk_admin
470
  <label for="mainsite_title">
471
  <?php _e('Main Site Home Title: ','breadcrumb_navxt');?>
472
  <input type="text" name="bcn_options[mainsite_title]" id="mainsite_title" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt['mainsite_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
 
473
  </label>
474
  </li>
475
  </ul>
@@ -521,7 +548,7 @@ class bcn_admin extends mtekk_admin
521
  //We only want custom taxonomies
522
  if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
523
  {
524
- $this->input_radio('post_post_taxonomy_type', $taxonomy->name, ucwords(__($taxonomy->label)));
525
  }
526
  }
527
  ?>
@@ -542,11 +569,10 @@ class bcn_admin extends mtekk_admin
542
  foreach($wp_post_types as $post_type)
543
  {
544
  //We only want custom post types
545
- //if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
546
  if(!$post_type->_builtin)
547
  {
548
  //If the post type does not have settings in the options array yet, we need to load some defaults
549
- if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
550
  {
551
  //Add the necessary option array members
552
  $this->opt['post_' . $post_type->name . '_prefix'] = '';
@@ -563,6 +589,8 @@ class bcn_admin extends mtekk_admin
563
  {
564
  //Set post_root for flat types
565
  $this->opt['post_' . $post_type->name . '_root'] = get_option('page_for_posts');
 
 
566
  //Loop through all of the possible taxonomies
567
  foreach($wp_taxonomies as $taxonomy)
568
  {
@@ -574,9 +602,12 @@ class bcn_admin extends mtekk_admin
574
  break;
575
  }
576
  }
 
 
 
 
 
577
  }
578
- //Let's make sure that the newly available options are "registered" in our db
579
- $this->update_option('bcn_options', $this->opt);
580
  }?>
581
  <fieldset id="post_<?php echo $post_type->name ?>" class="bcn_options">
582
  <h3><?php echo $post_type->labels->singular_name; ?></h3>
@@ -607,6 +638,7 @@ class bcn_admin extends mtekk_admin
607
  </th>
608
  <td>
609
  <?php
 
610
  $this->input_radio('post_' . $post_type->name . '_taxonomy_type', 'page', __('Pages'));
611
  //Loop through all of the taxonomies in the array
612
  foreach($wp_taxonomies as $taxonomy)
@@ -656,7 +688,6 @@ class bcn_admin extends mtekk_admin
656
  foreach($wp_taxonomies as $taxonomy)
657
  {
658
  //We only want custom taxonomies
659
- //if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
660
  if(!$taxonomy->_builtin)
661
  {
662
  //If the taxonomy does not have settings in the options array yet, we need to load some defaults
@@ -668,12 +699,10 @@ class bcn_admin extends mtekk_admin
668
  $this->opt[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', $taxonomy->labels->singular_name), 'breadcrumb_navxt');
669
  $this->opt['archive_' . $taxonomy->name . '_prefix'] = '';
670
  $this->opt['archive_' . $taxonomy->name . '_suffix'] = '';
671
- //Let's make sure that the newly available options are "registered" in our db
672
- $this->update_option('bcn_options', $this->opt);
673
  }
674
  ?>
675
  <fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options">
676
- <h3><?php echo ucwords(__($taxonomy->label)); ?></h3>
677
  <table class="form-table">
678
  <?php
679
  $this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), $taxonomy->labels->singular_name), $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
@@ -728,16 +757,15 @@ class bcn_admin extends mtekk_admin
728
  */
729
  function find_posttypes(&$opts)
730
  {
731
- global $wp_post_types;
732
  //Loop through all of the post types in the array
733
  foreach($wp_post_types as $post_type)
734
  {
735
  //We only want custom post types
736
- //if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
737
  if(!$post_type->_builtin)
738
  {
739
  //If the post type does not have settings in the options array yet, we need to load some defaults
740
- if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
741
  {
742
  //Add the necessary option array members
743
  $opts['post_' . $post_type->name . '_prefix'] = '';
@@ -767,6 +795,11 @@ class bcn_admin extends mtekk_admin
767
  break;
768
  }
769
  }
 
 
 
 
 
770
  }
771
  }
772
  }
@@ -784,7 +817,6 @@ class bcn_admin extends mtekk_admin
784
  foreach($wp_taxonomies as $taxonomy)
785
  {
786
  //We only want custom taxonomies
787
- //if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
788
  if(!$taxonomy->_builtin)
789
  {
790
  //If the taxonomy does not have settings in the options array yet, we need to load some defaults
@@ -792,7 +824,7 @@ class bcn_admin extends mtekk_admin
792
  {
793
  $opts[$taxonomy->name . '_prefix'] = '';
794
  $opts[$taxonomy->name . '_suffix'] = '';
795
- $opts[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', ucwords(__($taxonomy->label))), 'breadcrumb_navxt');
796
  $opts['archive_' . $taxonomy->name . '_prefix'] = '';
797
  $opts['archive_' . $taxonomy->name . '_suffix'] = '';
798
  }
@@ -859,8 +891,11 @@ class bcn_admin extends mtekk_admin
859
  */
860
  function display($return = false, $linked = true, $reverse = false)
861
  {
 
 
 
862
  //Grab the current settings from the db
863
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
864
  //Generate the breadcrumb trail
865
  $this->breadcrumb_trail->fill();
866
  return $this->breadcrumb_trail->display($return, $linked, $reverse);
@@ -875,12 +910,35 @@ class bcn_admin extends mtekk_admin
875
  */
876
  function display_list($return = false, $linked = true, $reverse = false)
877
  {
 
 
 
878
  //Grab the current settings from the db
879
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
880
  //Generate the breadcrumb trail
881
  $this->breadcrumb_trail->fill();
882
  return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
883
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  }
885
  //Let's make an instance of our object takes care of everything
886
  $bcn_admin = new bcn_admin;
@@ -908,3 +966,16 @@ function bcn_display_list($return = false, $linked = true, $reverse = false)
908
  global $bcn_admin;
909
  return $bcn_admin->display_list($return, $linked, $reverse);
910
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 3.8.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  */
10
+ /* Copyright 2007-2011 John Havlik (email : mtekkmonkey@gmail.com)
11
 
12
  This program is free software; you can redistribute it and/or modify
13
  it under the terms of the GNU General Public License as published by
26
  //Do a PHP version check, require 5.2 or newer
27
  if(version_compare(PHP_VERSION, '5.2.0', '<'))
28
  {
29
+ //Silently deactivate plugin, keeps admin usable
30
+ if(function_exists('deactivate_plugins'))
31
+ {
32
+ deactivate_plugins(plugin_basename(__FILE__), true);
33
+ }
34
+ //Spit out die messages
35
+ wp_die(sprintf(__('Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s', 'breadcrumb_navxt'), phpversion(), '5.2.0'));
36
  }
37
  //Include the breadcrumb class
38
  require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
54
  *
55
  * @var string
56
  */
57
+ protected $version = '3.8.0';
58
  protected $full_name = 'Breadcrumb NavXT Settings';
59
  protected $short_name = 'Breadcrumb NavXT';
60
  protected $access_level = 'manage_options';
167
  //If our version is not the same as in the db, time to update
168
  if($version !== $this->version)
169
  {
170
+ //Upgrading to 3.4
171
  if(version_compare($version, '3.4.0', '<'))
172
  {
173
  //Inline upgrade of the tag setting
268
  $this->update_option('bcn_options_bk', $this->opt);
269
  //Grab our incomming array (the data is dirty)
270
  $input = $_POST['bcn_options'];
271
+ //We have two "permi" variables
272
+ $input['post_page_root'] = get_option('page_on_front');
273
+ $input['post_post_root'] = get_option('page_for_posts');
274
  //Loop through all of the existing options (avoids random setting injection)
275
  foreach($this->opt as $option => $value)
276
  {
297
  }
298
  //Commit the option changes
299
  $this->update_option('bcn_options', $this->opt);
300
+ //Check if known settings match attempted save
301
+ if(count(array_diff_key($input, $this->opt)) == 0)
302
+ {
303
+ //Let the user know everything went ok
304
+ $this->message['updated fade'][] = __('Settings successfully saved.', $this->identifier) . $this->undo_anchor(__('Undo the options save.', $this->identifier));
305
+ }
306
+ else
307
+ {
308
+ //Let the user know the following were not saved
309
+ $this->message['updated fade'][] = __('Some settings were not saved.', $this->identifier) . $this->undo_anchor(__('Undo the options save.', $this->identifier));
310
+ $temp = __('The following settings were not saved:', $this->identifier);
311
+ foreach(array_diff_key($input, $this->opt) as $setting => $value)
312
+ {
313
+ $temp .= '<br />' . $setting;
314
+ }
315
+ $this->message['updated fade'][] = $temp . '<br />' . sprintf(__('Please include this message in your %sbug report%s.', $this->identifier),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', $this->identifier) . '" href="http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this->version . '/#respond">', '</a>');
316
+ }
317
  add_action('admin_notices', array($this, 'message'));
318
  }
319
  /**
335
  protected function _get_help_text()
336
  {
337
  return '<p>' . sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
338
+ '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . ' ' .
339
+ sprintf(__('If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s.', $this->identifier),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb_navxt') . '" href="http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this->version . '/#respond">', '</a>') . '</p><h5>' .
340
  __('Quick Start Information', 'breadcrumb_navxt') . '</h5><p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb_navxt') .
341
  '</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb_navxt').'</h5><code>&lt;div class="breadcrumbs"&gt;'."&lt;?php if(function_exists('bcn_display')){ bcn_display();}?&gt;&lt;/div&gt;</code>" .
342
+ '<h5>' . __('Breadcrumb trail in list form', 'breadcrumb_navxt').'</h5><code>&lt;ol class="breadcrumbs"&gt;'."&lt;?php if(function_exists('bcn_display_list')){ bcn_display_list();}?&gt;&lt;/ol&gt;</code>";
343
  }
344
  /**
345
  * Adds in the JavaScript and CSS for the tabs in the adminsitrative
440
  {
441
  global $wp_taxonomies, $wp_post_types;
442
  $this->security();
443
+ $this->version_check($this->get_option($this->unique_prefix . '_version'));
444
+ ?>
445
  <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
446
  <div<?php if($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
447
  print $this->_get_help_text();
496
  <label for="mainsite_title">
497
  <?php _e('Main Site Home Title: ','breadcrumb_navxt');?>
498
  <input type="text" name="bcn_options[mainsite_title]" id="mainsite_title" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt['mainsite_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
499
+ <?php if(!is_multisite()){?><input type="hidden" name="bcn_options[mainsite_title]" value="<?php echo htmlentities($this->opt['mainsite_title'], ENT_COMPAT, 'UTF-8');?>" /><?php } ?>
500
  </label>
501
  </li>
502
  </ul>
548
  //We only want custom taxonomies
549
  if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
550
  {
551
+ $this->input_radio('post_post_taxonomy_type', $taxonomy->name, mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8'));
552
  }
553
  }
554
  ?>
569
  foreach($wp_post_types as $post_type)
570
  {
571
  //We only want custom post types
 
572
  if(!$post_type->_builtin)
573
  {
574
  //If the post type does not have settings in the options array yet, we need to load some defaults
575
+ if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt) || !$post_type->hierarchical && !array_key_exists('post_' . $post_type->name . '_taxonomy_type', $this->opt))
576
  {
577
  //Add the necessary option array members
578
  $this->opt['post_' . $post_type->name . '_prefix'] = '';
589
  {
590
  //Set post_root for flat types
591
  $this->opt['post_' . $post_type->name . '_root'] = get_option('page_for_posts');
592
+ //Default to not displaying a taxonomy
593
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = false;
594
  //Loop through all of the possible taxonomies
595
  foreach($wp_taxonomies as $taxonomy)
596
  {
602
  break;
603
  }
604
  }
605
+ //If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
606
+ if(!isset($this->opt['post_' . $post_type->name . '_taxonomy_type']))
607
+ {
608
+ $this->opt['post_' . $post_type->name . '_taxonomy_type'] = 'date';
609
+ }
610
  }
 
 
611
  }?>
612
  <fieldset id="post_<?php echo $post_type->name ?>" class="bcn_options">
613
  <h3><?php echo $post_type->labels->singular_name; ?></h3>
638
  </th>
639
  <td>
640
  <?php
641
+ $this->input_radio('post_' . $post_type->name . '_taxonomy_type', 'date', __('Dates'));
642
  $this->input_radio('post_' . $post_type->name . '_taxonomy_type', 'page', __('Pages'));
643
  //Loop through all of the taxonomies in the array
644
  foreach($wp_taxonomies as $taxonomy)
688
  foreach($wp_taxonomies as $taxonomy)
689
  {
690
  //We only want custom taxonomies
 
691
  if(!$taxonomy->_builtin)
692
  {
693
  //If the taxonomy does not have settings in the options array yet, we need to load some defaults
699
  $this->opt[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', $taxonomy->labels->singular_name), 'breadcrumb_navxt');
700
  $this->opt['archive_' . $taxonomy->name . '_prefix'] = '';
701
  $this->opt['archive_' . $taxonomy->name . '_suffix'] = '';
 
 
702
  }
703
  ?>
704
  <fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options">
705
+ <h3><?php echo mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8'); ?></h3>
706
  <table class="form-table">
707
  <?php
708
  $this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), $taxonomy->labels->singular_name), $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
757
  */
758
  function find_posttypes(&$opts)
759
  {
760
+ global $wp_post_types, $wp_taxonomies;
761
  //Loop through all of the post types in the array
762
  foreach($wp_post_types as $post_type)
763
  {
764
  //We only want custom post types
 
765
  if(!$post_type->_builtin)
766
  {
767
  //If the post type does not have settings in the options array yet, we need to load some defaults
768
+ if(!array_key_exists('post_' . $post_type->name . '_anchor', $opts) || !$post_type->hierarchical && !array_key_exists('post_' . $post_type->name . '_taxonomy_type', $opts))
769
  {
770
  //Add the necessary option array members
771
  $opts['post_' . $post_type->name . '_prefix'] = '';
795
  break;
796
  }
797
  }
798
+ //If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
799
+ if(!isset($opts['post_' . $post_type->name . '_taxonomy_type']))
800
+ {
801
+ $opts['post_' . $post_type->name . '_taxonomy_type'] = 'date';
802
+ }
803
  }
804
  }
805
  }
817
  foreach($wp_taxonomies as $taxonomy)
818
  {
819
  //We only want custom taxonomies
 
820
  if(!$taxonomy->_builtin)
821
  {
822
  //If the taxonomy does not have settings in the options array yet, we need to load some defaults
824
  {
825
  $opts[$taxonomy->name . '_prefix'] = '';
826
  $opts[$taxonomy->name . '_suffix'] = '';
827
+ $opts[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8')), 'breadcrumb_navxt');
828
  $opts['archive_' . $taxonomy->name . '_prefix'] = '';
829
  $opts['archive_' . $taxonomy->name . '_suffix'] = '';
830
  }
891
  */
892
  function display($return = false, $linked = true, $reverse = false)
893
  {
894
+ //First make sure our defaults are safe
895
+ $this->find_posttypes($this->breadcrumb_trail->opt);
896
+ $this->find_taxonomies($this->breadcrumb_trail->opt);
897
  //Grab the current settings from the db
898
+ $this->breadcrumb_trail->opt = wp_parse_args($this->get_option('bcn_options'), $this->breadcrumb_trail->opt);
899
  //Generate the breadcrumb trail
900
  $this->breadcrumb_trail->fill();
901
  return $this->breadcrumb_trail->display($return, $linked, $reverse);
910
  */
911
  function display_list($return = false, $linked = true, $reverse = false)
912
  {
913
+ //First make sure our defaults are safe
914
+ $this->find_posttypes($this->breadcrumb_trail->opt);
915
+ $this->find_taxonomies($this->breadcrumb_trail->opt);
916
  //Grab the current settings from the db
917
+ $this->breadcrumb_trail->opt = wp_parse_args($this->get_option('bcn_options'), $this->breadcrumb_trail->opt);
918
  //Generate the breadcrumb trail
919
  $this->breadcrumb_trail->fill();
920
  return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
921
  }
922
+ /**
923
+ * Outputs the breadcrumb trail
924
+ *
925
+ * @since 3.8.0
926
+ * @param bool $return Whether to return data or to echo it.
927
+ * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
928
+ * @param string $tag[optional] The tag to use for the nesting
929
+ * @param string $mode[optional] Whether to follow the rdfa or Microdata format
930
+ */
931
+ function display_nested($return = false, $linked = true, $tag = 'span', $mode = 'rdfa')
932
+ {
933
+ //First make sure our defaults are safe
934
+ $this->find_posttypes($this->breadcrumb_trail->opt);
935
+ $this->find_taxonomies($this->breadcrumb_trail->opt);
936
+ //Grab the current settings from the db
937
+ $this->breadcrumb_trail->opt = wp_parse_args($this->get_option('bcn_options'), $this->breadcrumb_trail->opt);
938
+ //Generate the breadcrumb trail
939
+ $this->breadcrumb_trail->fill();
940
+ return $this->breadcrumb_trail->display_nested($return, $linked, $tag, $mode);
941
+ }
942
  }
943
  //Let's make an instance of our object takes care of everything
944
  $bcn_admin = new bcn_admin;
966
  global $bcn_admin;
967
  return $bcn_admin->display_list($return, $linked, $reverse);
968
  }
969
+ /**
970
+ * A wrapper for the internal function in the class
971
+ *
972
+ * @param bool $return Whether to return data or to echo it.
973
+ * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
974
+ * @param string $tag[optional] The tag to use for the nesting
975
+ * @param string $mode[optional] Whether to follow the rdfa or Microdata format
976
+ */
977
+ function bcn_display_nested($return = false, $linked = true, $tag = 'span', $mode = 'rdfa')
978
+ {
979
+ global $bcn_admin;
980
+ return $bcn_admin->display_nested($return, $linked, $tag, $mode);
981
+ }
breadcrumb_navxt_class.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2007-2010 John Havlik (email : mtekkmonkey@gmail.com)
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
@@ -31,6 +31,8 @@ class bcn_breadcrumb
31
  protected $prefix;
32
  //Global suffix, outside of link tags
33
  protected $suffix;
 
 
34
  /**
35
  * The enhanced default constructor
36
  *
@@ -41,7 +43,7 @@ class bcn_breadcrumb
41
  * @param string $anchor[optional]
42
  * @param bool $linked[optional]
43
  */
44
- function bcn_breadcrumb($title = '', $prefix = '', $suffix = '', $anchor = NULL, $linked = false)
45
  {
46
  //Set the title
47
  $this->title = __($title, 'breadcrumb_navxt');
@@ -53,23 +55,25 @@ class bcn_breadcrumb
53
  $this->linked = $linked;
54
  //Always NULL if unlinked
55
  $this->anchor = $anchor;
 
 
56
  }
57
  /**
58
  * Function to set the protected title member
59
  *
60
  * @param string $title
61
  */
62
- function set_title($title)
63
  {
64
  //Set the title
65
- $this->title = __($title, 'breadcrumb_navxt');
66
  }
67
  /**
68
  * Function to set the protected prefix member
69
  *
70
  * @param string $prefix
71
  */
72
- function set_prefix($prefix)
73
  {
74
  //Set the prefix
75
  $this->prefix = __($prefix, 'breadcrumb_navxt');
@@ -79,7 +83,7 @@ class bcn_breadcrumb
79
  *
80
  * @param string $suffix
81
  */
82
- function set_suffix($suffix)
83
  {
84
  //Set the suffix
85
  $this->suffix = __($suffix, 'breadcrumb_navxt');
@@ -88,7 +92,7 @@ class bcn_breadcrumb
88
  * Function to get the protected title member
89
  * @return $this->title
90
  */
91
- function get_title()
92
  {
93
  //Return the title
94
  return $this->title;
@@ -97,7 +101,7 @@ class bcn_breadcrumb
97
  * Function to get the protected prefix member
98
  * @return $this->prefix
99
  */
100
- function get_prefix()
101
  {
102
  //Return the prefix
103
  return $this->prefix;
@@ -106,7 +110,7 @@ class bcn_breadcrumb
106
  * Function to get the protected suffix member
107
  * @return $this->suffix
108
  */
109
- function get_suffix()
110
  {
111
  //Return the suffix
112
  return $this->suffix;
@@ -118,7 +122,7 @@ class bcn_breadcrumb
118
  * @param string $url the url to replace the %link% tag in the anchor
119
  *
120
  */
121
- function set_anchor($template, $url)
122
  {
123
  //Set a safe tempalte if none was specified
124
  if($template == '')
@@ -135,7 +139,7 @@ class bcn_breadcrumb
135
  *
136
  * @param int $max_length of the title.
137
  */
138
- function title_trim($max_length)
139
  {
140
  //Make sure that we are not making it longer with that ellipse
141
  if((mb_strlen($this->title) + 3) > $max_length)
@@ -161,7 +165,7 @@ class bcn_breadcrumb
161
  * @return string The compiled breadcrumb string
162
  * @param bool $linked[optional] Allow the output to contain anchors?
163
  */
164
- function assemble($linked = true)
165
  {
166
  //Place in the breadcrumb's elements
167
  $breadcrumb_str = $this->prefix;
@@ -184,7 +188,7 @@ class bcn_breadcrumb
184
  class bcn_breadcrumb_trail
185
  {
186
  //Our member variables
187
- public $version = '3.7.0';
188
  //An array of breadcrumbs
189
  public $trail = array();
190
  //The options
@@ -330,6 +334,7 @@ class bcn_breadcrumb_trail
330
  function &add(bcn_breadcrumb $object)
331
  {
332
  $this->trail[] = $object;
 
333
  return $this->trail[count($this->trail) - 1];
334
  }
335
  /**
@@ -531,9 +536,13 @@ class bcn_breadcrumb_trail
531
  */
532
  function do_post_hierarchical()
533
  {
534
- global $post;
535
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
536
- $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']);
 
 
 
 
537
  //Done with the current item, now on to the parents
538
  $bcn_frontpage = get_option('page_on_front');
539
  //If there is a parent page let's find it
@@ -549,9 +558,13 @@ class bcn_breadcrumb_trail
549
  */
550
  function do_post_flat()
551
  {
552
- global $post;
553
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
554
- $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']);
 
 
 
 
555
  //Handle the post's taxonomy
556
  $this->post_taxonomy($post->ID, $post->post_type);
557
  }
@@ -684,21 +697,16 @@ class bcn_breadcrumb_trail
684
  function do_front_page()
685
  {
686
  global $post, $current_site;
 
 
687
  //If we have a multi site and are not on the main site we may need to add a breadcrumb for the main site
688
  if($this->opt['mainsite_display'] && !is_main_site())
689
  {
690
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
691
- $breadcrumb = $this->add(new bcn_breadcrumb(get_bloginfo('name'), $this->opt['home_prefix'], $this->opt['home_suffix']));
692
  //Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
693
  $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['mainsite_title'], $this->opt['mainsite_prefix'], $this->opt['mainsite_suffix']));
694
  //Deal with the anchor
695
  $breadcrumb->set_anchor($this->opt['mainsite_anchor'], get_home_url($current_site->blog_id));
696
  }
697
- else
698
- {
699
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
700
- $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['home_title'], $this->opt['home_prefix'], $this->opt['home_suffix']));
701
- }
702
  //If we're paged, let's link to the first page
703
  if(is_paged() && $this->opt['paged_display'])
704
  {
@@ -706,6 +714,17 @@ class bcn_breadcrumb_trail
706
  $breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
707
  }
708
  }
 
 
 
 
 
 
 
 
 
 
 
709
  /**
710
  * A Breadcrumb Trail Filling Function
711
  *
@@ -716,16 +735,20 @@ class bcn_breadcrumb_trail
716
  global $post, $wp_query, $wp_taxonomies, $current_site;
717
  //Simmilar to using $post, but for things $post doesn't cover
718
  $type = $wp_query->get_queried_object();
719
- //We need to do special things for custom post types and their archives
720
- if((is_singular() || is_archive()) && $type->post_type != 'post' && $type->post_type != 'page')
721
  {
722
  //This will assign a ID for root page of a custom post
723
  if(is_numeric($this->opt['post_' . $type->post_type . '_root']))
724
  {
725
  $posts_id = $this->opt['post_' . $type->post_type . '_root'];
726
  }
 
 
 
 
727
  //This will assign a ID for root page of a custom post's taxonomy archive
728
- else if(is_numeric($this->opt['post_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_root']))
729
  {
730
  $posts_id = $this->opt['post_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_root'];
731
  }
@@ -764,25 +787,18 @@ class bcn_breadcrumb_trail
764
  //On everything else we need to link, but no current item (pre/suf)fixes
765
  if($this->opt['home_display'])
766
  {
767
- //If we have a multi site and are not on the main site we may need to add a breadcrumb for the main site
 
 
 
 
768
  if($this->opt['mainsite_display'] && !is_main_site())
769
  {
770
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
771
- $breadcrumb = $this->add(new bcn_breadcrumb(get_bloginfo('name'), $this->opt['home_prefix'], $this->opt['home_suffix']));
772
- //Deal with the anchor
773
- $breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
774
  //Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
775
  $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['mainsite_title'], $this->opt['mainsite_prefix'], $this->opt['mainsite_suffix']));
776
  //Deal with the anchor
777
  $breadcrumb->set_anchor($this->opt['mainsite_anchor'], get_home_url($current_site->blog_id));
778
  }
779
- else
780
- {
781
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
782
- $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['home_title'], $this->opt['home_prefix'], $this->opt['home_suffix']));
783
- //Deal with the anchor
784
- $breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
785
- }
786
  }
787
  }
788
  /**
@@ -802,9 +818,18 @@ class bcn_breadcrumb_trail
802
  */
803
  function do_paged()
804
  {
805
- global $paged;
 
 
 
 
 
 
 
 
 
806
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
807
- $this->trail[] = new bcn_breadcrumb($paged, $this->opt['paged_prefix'], $this->opt['paged_suffix']);
808
  }
809
  /**
810
  * Breadcrumb Trail Filling Function
@@ -813,7 +838,7 @@ class bcn_breadcrumb_trail
813
  */
814
  function fill()
815
  {
816
- global $wpdb, $post, $wp_query, $paged;
817
  //Check to see if the trail is already populated
818
  if(count($this->trail) > 0)
819
  {
@@ -826,7 +851,7 @@ class bcn_breadcrumb_trail
826
  $queried_object = $wp_query->get_queried_object();
827
  //Do specific opperations for the various page types
828
  //Check if this isn't the first of a multi paged item
829
- if(is_paged() && $this->opt['paged_display'])
830
  {
831
  $this->do_paged();
832
  }
@@ -871,8 +896,13 @@ class bcn_breadcrumb_trail
871
  //For archives
872
  else if(is_archive())
873
  {
874
- //For taxonomy based archives, had to add the two specifics in to overcome WordPress bug
875
- if(is_tax() || is_category() || is_tag())
 
 
 
 
 
876
  {
877
  //For hierarchical taxonomy based archives
878
  if(is_taxonomy_hierarchical($queried_object->taxonomy))
@@ -885,11 +915,6 @@ class bcn_breadcrumb_trail
885
  $this->do_archive_by_term_flat();
886
  }
887
  }
888
- //For date based archives
889
- else
890
- {
891
- $this->do_archive_by_date();
892
- }
893
  }
894
  //For 404 pages
895
  else if(is_404())
@@ -928,24 +953,27 @@ class bcn_breadcrumb_trail
928
  * with the current_item_prefix and current_item_suffix. Additionally, it will link the
929
  * current item if current_item_linked is set to true.
930
  *
931
- * @return
932
  * @param bcn_breadrumb $breadcrumb pointer to a bcn_breadcrumb object to opperate on
933
  */
934
  function current_item($breadcrumb)
935
  {
936
- //Prepend the current item prefix
937
- $breadcrumb->set_prefix($this->opt['current_item_prefix'] . $breadcrumb->get_prefix());
938
- //Append the current item suffix
939
- $breadcrumb->set_suffix($breadcrumb->get_suffix() . $this->opt['current_item_suffix']);
940
- //Link the current item, if required
941
- if($this->opt['current_item_linked'])
942
- {
943
- $breadcrumb->set_anchor($this->opt['current_item_anchor'], '');
 
 
 
 
 
 
944
  }
945
  }
946
  /**
947
- * Breadcrumb Creation Function
948
- *
949
  * This functions outputs or returns the breadcrumb trail in string form.
950
  *
951
  * @return void Void if Option to print out breadcrumb trail was chosen.
@@ -1002,13 +1030,11 @@ class bcn_breadcrumb_trail
1002
  else
1003
  {
1004
  //Giving credit where credit is due, please don't remove it
1005
- $tag = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
1006
- echo $tag . $trail_str;
1007
  }
1008
  }
1009
  /**
1010
- * Breadcrumb Creation Function
1011
- *
1012
  * This functions outputs or returns the breadcrumb trail in list form.
1013
  *
1014
  * @return void Void if Option to print out breadcrumb trail was chosen.
@@ -1062,8 +1088,84 @@ class bcn_breadcrumb_trail
1062
  else
1063
  {
1064
  //Giving credit where credit is due, please don't remove it
1065
- $tag = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
1066
- echo $tag . $trail_str;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1067
  }
1068
  }
1069
  }
1
  <?php
2
  /*
3
+ Copyright 2007-2011 John Havlik (email : mtekkmonkey@gmail.com)
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
31
  protected $prefix;
32
  //Global suffix, outside of link tags
33
  protected $suffix;
34
+ //The type of this breadcrumb
35
+ public $type;
36
  /**
37
  * The enhanced default constructor
38
  *
43
  * @param string $anchor[optional]
44
  * @param bool $linked[optional]
45
  */
46
+ public function bcn_breadcrumb($title = '', $prefix = '', $suffix = '', $anchor = NULL, $linked = false)
47
  {
48
  //Set the title
49
  $this->title = __($title, 'breadcrumb_navxt');
55
  $this->linked = $linked;
56
  //Always NULL if unlinked
57
  $this->anchor = $anchor;
58
+ //null out the type, it's not fully used yet
59
+ $this->type = NULL;
60
  }
61
  /**
62
  * Function to set the protected title member
63
  *
64
  * @param string $title
65
  */
66
+ public function set_title($title)
67
  {
68
  //Set the title
69
+ $this->title = apply_filters('bcn_breadcrumb_title', __($title, 'breadcrumb_navxt'));
70
  }
71
  /**
72
  * Function to set the protected prefix member
73
  *
74
  * @param string $prefix
75
  */
76
+ public function set_prefix($prefix)
77
  {
78
  //Set the prefix
79
  $this->prefix = __($prefix, 'breadcrumb_navxt');
83
  *
84
  * @param string $suffix
85
  */
86
+ public function set_suffix($suffix)
87
  {
88
  //Set the suffix
89
  $this->suffix = __($suffix, 'breadcrumb_navxt');
92
  * Function to get the protected title member
93
  * @return $this->title
94
  */
95
+ public function get_title()
96
  {
97
  //Return the title
98
  return $this->title;
101
  * Function to get the protected prefix member
102
  * @return $this->prefix
103
  */
104
+ public function get_prefix()
105
  {
106
  //Return the prefix
107
  return $this->prefix;
110
  * Function to get the protected suffix member
111
  * @return $this->suffix
112
  */
113
+ public function get_suffix()
114
  {
115
  //Return the suffix
116
  return $this->suffix;
122
  * @param string $url the url to replace the %link% tag in the anchor
123
  *
124
  */
125
+ public function set_anchor($template, $url)
126
  {
127
  //Set a safe tempalte if none was specified
128
  if($template == '')
139
  *
140
  * @param int $max_length of the title.
141
  */
142
+ public function title_trim($max_length)
143
  {
144
  //Make sure that we are not making it longer with that ellipse
145
  if((mb_strlen($this->title) + 3) > $max_length)
165
  * @return string The compiled breadcrumb string
166
  * @param bool $linked[optional] Allow the output to contain anchors?
167
  */
168
+ public function assemble($linked = true)
169
  {
170
  //Place in the breadcrumb's elements
171
  $breadcrumb_str = $this->prefix;
188
  class bcn_breadcrumb_trail
189
  {
190
  //Our member variables
191
+ public $version = '3.8.0';
192
  //An array of breadcrumbs
193
  public $trail = array();
194
  //The options
334
  function &add(bcn_breadcrumb $object)
335
  {
336
  $this->trail[] = $object;
337
+ //Return the just added object
338
  return $this->trail[count($this->trail) - 1];
339
  }
340
  /**
536
  */
537
  function do_post_hierarchical()
538
  {
539
+ global $post, $page;
540
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
541
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']));
542
+ if($page > 0 && $this->opt['paged_display'])
543
+ {
544
+ $breadcrumb->set_anchor($this->opt['post_page_anchor'], get_permalink());
545
+ }
546
  //Done with the current item, now on to the parents
547
  $bcn_frontpage = get_option('page_on_front');
548
  //If there is a parent page let's find it
558
  */
559
  function do_post_flat()
560
  {
561
+ global $post, $page;
562
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
563
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']));
564
+ if($page > 0 && $this->opt['paged_display'])
565
+ {
566
+ $breadcrumb->set_anchor($this->opt['post_post_anchor'], get_permalink());
567
+ }
568
  //Handle the post's taxonomy
569
  $this->post_taxonomy($post->ID, $post->post_type);
570
  }
697
  function do_front_page()
698
  {
699
  global $post, $current_site;
700
+ //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
701
+ $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['home_title'], $this->opt['home_prefix'], $this->opt['home_suffix']));
702
  //If we have a multi site and are not on the main site we may need to add a breadcrumb for the main site
703
  if($this->opt['mainsite_display'] && !is_main_site())
704
  {
 
 
705
  //Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
706
  $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['mainsite_title'], $this->opt['mainsite_prefix'], $this->opt['mainsite_suffix']));
707
  //Deal with the anchor
708
  $breadcrumb->set_anchor($this->opt['mainsite_anchor'], get_home_url($current_site->blog_id));
709
  }
 
 
 
 
 
710
  //If we're paged, let's link to the first page
711
  if(is_paged() && $this->opt['paged_display'])
712
  {
714
  $breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
715
  }
716
  }
717
+ /**
718
+ * Determines if a post type is a built in type or not
719
+ *
720
+ * @param string $post_type the name of the post type
721
+ * @return bool
722
+ */
723
+ function is_builtin($post_type)
724
+ {
725
+ $type = get_post_type_object($post_type);
726
+ return isset($type->_builtin);
727
+ }
728
  /**
729
  * A Breadcrumb Trail Filling Function
730
  *
735
  global $post, $wp_query, $wp_taxonomies, $current_site;
736
  //Simmilar to using $post, but for things $post doesn't cover
737
  $type = $wp_query->get_queried_object();
738
+ //We need to do special things for custom post types
739
+ if(is_singular() && !$this->is_builtin($type->post_type))
740
  {
741
  //This will assign a ID for root page of a custom post
742
  if(is_numeric($this->opt['post_' . $type->post_type . '_root']))
743
  {
744
  $posts_id = $this->opt['post_' . $type->post_type . '_root'];
745
  }
746
+ }
747
+ //We need to do special things for custom post type archives, but not author or date archives
748
+ else if(is_archive() && !is_author() && !is_date())
749
+ {
750
  //This will assign a ID for root page of a custom post's taxonomy archive
751
+ if(is_numeric($this->opt['post_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_root']))
752
  {
753
  $posts_id = $this->opt['post_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_root'];
754
  }
787
  //On everything else we need to link, but no current item (pre/suf)fixes
788
  if($this->opt['home_display'])
789
  {
790
+ //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
791
+ $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['home_title'], $this->opt['home_prefix'], $this->opt['home_suffix']));
792
+ //Deal with the anchor
793
+ $breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
794
+ //If we have a multi site and are not on the main site we need to add a breadcrumb for the main site
795
  if($this->opt['mainsite_display'] && !is_main_site())
796
  {
 
 
 
 
797
  //Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
798
  $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['mainsite_title'], $this->opt['mainsite_prefix'], $this->opt['mainsite_suffix']));
799
  //Deal with the anchor
800
  $breadcrumb->set_anchor($this->opt['mainsite_anchor'], get_home_url($current_site->blog_id));
801
  }
 
 
 
 
 
 
 
802
  }
803
  }
804
  /**
818
  */
819
  function do_paged()
820
  {
821
+ global $paged, $page;
822
+ //Need to switch between paged and page for archives and singular (posts)
823
+ if($paged > 0)
824
+ {
825
+ $page_number = $paged;
826
+ }
827
+ else
828
+ {
829
+ $page_number = $page;
830
+ }
831
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
832
+ $this->trail[] = new bcn_breadcrumb($page_number, $this->opt['paged_prefix'], $this->opt['paged_suffix']);
833
  }
834
  /**
835
  * Breadcrumb Trail Filling Function
838
  */
839
  function fill()
840
  {
841
+ global $wpdb, $post, $wp_query, $paged, $page;
842
  //Check to see if the trail is already populated
843
  if(count($this->trail) > 0)
844
  {
851
  $queried_object = $wp_query->get_queried_object();
852
  //Do specific opperations for the various page types
853
  //Check if this isn't the first of a multi paged item
854
+ if($this->opt['paged_display'] && (is_paged() || is_singular() && $page > 0))
855
  {
856
  $this->do_paged();
857
  }
896
  //For archives
897
  else if(is_archive())
898
  {
899
+ //For date based archives
900
+ if(is_date())
901
+ {
902
+ $this->do_archive_by_date();
903
+ }
904
+ //For taxonomy based archives, aka everything else
905
+ else
906
  {
907
  //For hierarchical taxonomy based archives
908
  if(is_taxonomy_hierarchical($queried_object->taxonomy))
915
  $this->do_archive_by_term_flat();
916
  }
917
  }
 
 
 
 
 
918
  }
919
  //For 404 pages
920
  else if(is_404())
953
  * with the current_item_prefix and current_item_suffix. Additionally, it will link the
954
  * current item if current_item_linked is set to true.
955
  *
 
956
  * @param bcn_breadrumb $breadcrumb pointer to a bcn_breadcrumb object to opperate on
957
  */
958
  function current_item($breadcrumb)
959
  {
960
+ //We are misusing the breadcrumb type property here, but in 4.0 this will be unnecessary
961
+ if($breadcrumb->type == null)
962
+ {
963
+ //Prepend the current item prefix
964
+ $breadcrumb->set_prefix($this->opt['current_item_prefix'] . $breadcrumb->get_prefix());
965
+ //Append the current item suffix
966
+ $breadcrumb->set_suffix($breadcrumb->get_suffix() . $this->opt['current_item_suffix']);
967
+ //Set the breadcrumb's type to current_item
968
+ $breadcrumb->type = 'current_item';
969
+ //Link the current item, if required
970
+ if($this->opt['current_item_linked'])
971
+ {
972
+ $breadcrumb->set_anchor($this->opt['current_item_anchor'], '');
973
+ }
974
  }
975
  }
976
  /**
 
 
977
  * This functions outputs or returns the breadcrumb trail in string form.
978
  *
979
  * @return void Void if Option to print out breadcrumb trail was chosen.
1030
  else
1031
  {
1032
  //Giving credit where credit is due, please don't remove it
1033
+ $credits = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
1034
+ echo $credits . $trail_str;
1035
  }
1036
  }
1037
  /**
 
 
1038
  * This functions outputs or returns the breadcrumb trail in list form.
1039
  *
1040
  * @return void Void if Option to print out breadcrumb trail was chosen.
1088
  else
1089
  {
1090
  //Giving credit where credit is due, please don't remove it
1091
+ $credits = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
1092
+ echo $credits . $trail_str;
1093
+ }
1094
+ }
1095
+ function nested_loop($linked, $tag, $mode)
1096
+ {
1097
+ //Grab the current breadcrumb from the trail, move the iterator forward one
1098
+ if(list($key, $breadcrumb) = each($this->trail))
1099
+ {
1100
+ //If we are on the current item there are some things that must be done
1101
+ if($key === 0)
1102
+ {
1103
+ $this->current_item($breadcrumb);
1104
+ }
1105
+ //Trim titles, if needed
1106
+ if($this->opt['max_title_length'] > 0)
1107
+ {
1108
+ //Trim the breadcrumb's title
1109
+ $breadcrumb->title_trim($this->opt['max_title_length']);
1110
+ }
1111
+ if($mode === 'rdfa')
1112
+ {
1113
+ return sprintf('%1$s<%2$s rel="v:child"><%2$s typeof="v:Breadcrumb">%3$s%4$s</%2$s></%2$s>', $this->opt['separator'], $tag, $breadcrumb->assemble($linked), $this->nested_loop($linked, $tag, $mode));
1114
+ }
1115
+ else
1116
+ {
1117
+ return sprintf('%1$s<%2$s itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">%3$s%4$s</%2$s>', $this->opt['separator'], $tag, $breadcrumb->assemble($linked), $this->nested_loop($linked, $tag, $mode));
1118
+ }
1119
+ }
1120
+ else
1121
+ {
1122
+ return '';
1123
+ }
1124
+ }
1125
+ /**
1126
+ * Breadcrumb Creation Function
1127
+ *
1128
+ * This functions outputs or returns the breadcrumb trail in string form.
1129
+ *
1130
+ * @return void Void if Option to print out breadcrumb trail was chosen.
1131
+ * @return string String-Data of breadcrumb trail.
1132
+ * @param bool $return Whether to return data or to echo it.
1133
+ * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
1134
+ * @param string $tag[optional] The tag to use for the nesting
1135
+ * @param string $mode[optional] Whether to follow the rdfa or Microdata format
1136
+ */
1137
+ function display_nested($return = false, $linked = true, $tag = 'span', $mode = 'rdfa')
1138
+ {
1139
+ //Set trail order based on reverse flag
1140
+ $this->order(false);
1141
+ //Makesure the iterator is pointing to the first element
1142
+ $breadcrumb = reset($this->trail);
1143
+ //Trim titles, if needed
1144
+ if($this->opt['max_title_length'] > 0)
1145
+ {
1146
+ //Trim the breadcrumb's title
1147
+ $breadcrumb->title_trim($this->opt['max_title_length']);
1148
+ }
1149
+ if($mode === 'rdfa')
1150
+ {
1151
+ //Start up the recursive engine
1152
+ $trail_str = sprintf('<%1$s typeof="v:Breadcrumb">%2$s %3$s</%1$s>', $tag, $breadcrumb->assemble($linked), $this->nested_loop($linked, $tag, $mode));
1153
+ }
1154
+ else
1155
+ {
1156
+ //Start up the recursive engine
1157
+ $trail_str = sprintf('%2$s %3$s', $tag, $breadcrumb->assemble($linked), $this->nested_loop($linked, $tag, $mode));
1158
+ }
1159
+ //Should we return or echo the assembled trail?
1160
+ if($return)
1161
+ {
1162
+ return $trail_str;
1163
+ }
1164
+ else
1165
+ {
1166
+ //Giving credit where credit is due, please don't remove it
1167
+ $credits = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
1168
+ echo $credits . $trail_str;
1169
  }
1170
  }
1171
  }
breadcrumb_navxt_widget.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2009-2010 John Havlik (email : mtekkmonkey@gmail.com)
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,8 +21,15 @@ class bcn_widget extends WP_Widget
21
  //Default constructor
22
  function __construct()
23
  {
 
 
 
 
 
 
 
 
24
  $ops = array('classname' => 'widget_breadcrumb_navxt', 'description' => __('Adds a breadcrumb trail to your sidebar'));
25
- //We're going to be a bit evil here and do things the PHP5 way
26
  parent::__construct('bcn_widget', 'Breadcrumb NavXT', $ops);
27
  }
28
  function widget($args, $instance)
@@ -40,12 +47,26 @@ class bcn_widget extends WP_Widget
40
  echo $before_title . $instance['title'] . $after_title;
41
  }
42
  //We'll want to switch between the two breadcrumb output types
43
- if($instance['list'] == true)
44
  {
45
  //Display the list output breadcrumb
46
- echo '<ul class="breadcrumb_trail">';
47
  bcn_display_list(false, $instance['linked'], $instance['reverse']);
48
- echo '</ul>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  }
50
  else
51
  {
@@ -59,7 +80,7 @@ class bcn_widget extends WP_Widget
59
  {
60
  //Filter out anything that could be invalid
61
  $old_instance['title'] = strip_tags($new_instance['title']);
62
- $old_instance['list'] = isset($new_instance['list']);
63
  $old_instance['linked'] = isset($new_instance['linked']);
64
  $old_instance['reverse'] = isset($new_instance['reverse']);
65
  $old_instance['front'] = isset($new_instance['front']);
@@ -67,20 +88,27 @@ class bcn_widget extends WP_Widget
67
  }
68
  function form($instance)
69
  {
70
- $instance = wp_parse_args((array) $instance, array('title' => '', 'list' => false, 'linked' => true, 'reverse' => false));?>
71
  <p>
72
- <label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:'); ?></label>
73
  <input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
74
  </p>
75
  <p>
76
- <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('list'); ?>" id="<?php echo $this->get_field_id('list'); ?>" value="true" <?php checked(true, $instance['list']);?> />
77
- <label for="<?php echo $this->get_field_id('list'); ?>"> <?php _e('Output trail as a list'); ?></label><br />
 
 
 
 
 
 
 
78
  <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('linked'); ?>" id="<?php echo $this->get_field_id('linked'); ?>" value="true" <?php checked(true, $instance['linked']);?> />
79
- <label for="<?php echo $this->get_field_id('linked'); ?>"> <?php _e('Link the breadcrumbs'); ?></label><br />
80
  <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('reverse'); ?>" id="<?php echo $this->get_field_id('reverse'); ?>" value="true" <?php checked(true, $instance['reverse']);?> />
81
- <label for="<?php echo $this->get_field_id('reverse'); ?>"> <?php _e('Reverse the order of the trail'); ?></label><br />
82
  <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('front'); ?>" id="<?php echo $this->get_field_id('front'); ?>" value="true" <?php checked(true, $instance['front']);?> />
83
- <label for="<?php echo $this->get_field_id('front'); ?>"> <?php _e('Hide the trail on the front page'); ?></label><br />
84
  </p>
85
  <?php
86
  }
1
  <?php
2
  /*
3
+ Copyright 2009-2011 John Havlik (email : mtekkmonkey@gmail.com)
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
  //Default constructor
22
  function __construct()
23
  {
24
+ global $l10n;
25
+ // the global and the check might become obsolete in
26
+ // further wordpress versions
27
+ // @see https://core.trac.wordpress.org/ticket/10527
28
+ if(!isset($l10n['breadcrumb_navxt']))
29
+ {
30
+ load_plugin_textdomain('breadcrumb_navxt', false, 'breadcrumb_navxt/languages');
31
+ }
32
  $ops = array('classname' => 'widget_breadcrumb_navxt', 'description' => __('Adds a breadcrumb trail to your sidebar'));
 
33
  parent::__construct('bcn_widget', 'Breadcrumb NavXT', $ops);
34
  }
35
  function widget($args, $instance)
47
  echo $before_title . $instance['title'] . $after_title;
48
  }
49
  //We'll want to switch between the two breadcrumb output types
50
+ if($instance['type'] == 'list')
51
  {
52
  //Display the list output breadcrumb
53
+ echo '<ol class="breadcrumb_trail breadcrumbs">';
54
  bcn_display_list(false, $instance['linked'], $instance['reverse']);
55
+ echo '</ol>';
56
+ }
57
+ else if($instance['type'] == 'rdfa')
58
+ {
59
+ //Display the list output breadcrumb
60
+ echo '<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">';
61
+ bcn_display_nested(false, $instance['linked'], 'span', 'rdfa');
62
+ echo '</div>';
63
+ }
64
+ else if($instance['type'] == 'microformat')
65
+ {
66
+ //Display the list output breadcrumb
67
+ echo '<div class="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">';
68
+ bcn_display_nested(false, $instance['linked'], 'span', 'microformat');
69
+ echo '</div>';
70
  }
71
  else
72
  {
80
  {
81
  //Filter out anything that could be invalid
82
  $old_instance['title'] = strip_tags($new_instance['title']);
83
+ $old_instance['type'] = strip_tags($new_instance['type']);
84
  $old_instance['linked'] = isset($new_instance['linked']);
85
  $old_instance['reverse'] = isset($new_instance['reverse']);
86
  $old_instance['front'] = isset($new_instance['front']);
88
  }
89
  function form($instance)
90
  {
91
+ $instance = wp_parse_args((array) $instance, array('title' => '', 'type' => 'plain', 'linked' => true, 'reverse' => false, 'front' => false));?>
92
  <p>
93
+ <label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:', 'breadcrumb_navxt'); ?></label>
94
  <input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
95
  </p>
96
  <p>
97
+ <label for="<?php echo $this->get_field_id('type'); ?>"> <?php _e('Output trail as:', 'breadcrumb_navxt'); ?></label>
98
+ <select name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
99
+ <option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', 'breadcrumb_navxt'); ?></option>
100
+ <option value="rdfa" <?php selected('rdfa', $instance['type']);?>><?php _e('RDFa', 'breadcrumb_navxt'); ?></option>
101
+ <option value="microformat" <?php selected('microformat', $instance['type']);?>><?php _e('Microformat', 'breadcrumb_navxt'); ?></option>
102
+ <option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', 'breadcrumb_navxt'); ?></option>
103
+ </select>
104
+ </p>
105
+ <p>
106
  <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('linked'); ?>" id="<?php echo $this->get_field_id('linked'); ?>" value="true" <?php checked(true, $instance['linked']);?> />
107
+ <label for="<?php echo $this->get_field_id('linked'); ?>"> <?php _e('Link the breadcrumbs', 'breadcrumb_navxt'); ?></label><br />
108
  <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('reverse'); ?>" id="<?php echo $this->get_field_id('reverse'); ?>" value="true" <?php checked(true, $instance['reverse']);?> />
109
+ <label for="<?php echo $this->get_field_id('reverse'); ?>"> <?php _e('Reverse the order of the trail', 'breadcrumb_navxt'); ?></label><br />
110
  <input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('front'); ?>" id="<?php echo $this->get_field_id('front'); ?>" value="true" <?php checked(true, $instance['front']);?> />
111
+ <label for="<?php echo $this->get_field_id('front'); ?>"> <?php _e('Hide the trail on the front page', 'breadcrumb_navxt'); ?></label><br />
112
  </p>
113
  <?php
114
  }
languages/breadcrumb-navxt.pot CHANGED
@@ -1,731 +1,760 @@
1
- # Translation of the WordPress plugin by .
2
  # Copyright (C) 2010
3
  # This file is distributed under the same license as the package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
5
- #
6
- #, fuzzy
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: \n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
11
- "POT-Creation-Date: 2010-11-19 01:50+0000\n"
 
 
 
12
  "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
17
- "Content-Transfer-Encoding: 8bit\n"
18
 
19
- #: breadcrumb_navxt_admin.php:29
20
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid ""
22
  "Your PHP version is too old, please upgrade to a newer version. Your version "
23
- "is %s, this plugin requires %s"
24
  msgstr ""
25
 
26
- #: breadcrumb_navxt_admin.php:106
27
  msgid "Insufficient privileges to proceed."
28
  msgstr ""
29
 
30
- #: breadcrumb_navxt_admin.php:211 breadcrumb_navxt_class.php:203
31
  msgid "Home"
32
  msgstr ""
33
 
34
- #: breadcrumb_navxt_admin.php:213 breadcrumb_navxt_admin.php:554
35
- #: breadcrumb_navxt_admin.php:745 breadcrumb_navxt_class.php:126
36
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:215
37
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:243
38
- #: breadcrumb_navxt_class.php:259
39
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
40
  msgstr ""
41
 
42
- #: breadcrumb_navxt_admin.php:292
43
  msgid "Settings successfully saved."
44
  msgstr ""
45
 
46
- #: breadcrumb_navxt_admin.php:292
47
  msgid "Undo the options save."
48
  msgstr ""
49
 
50
- #: breadcrumb_navxt_admin.php:313
51
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  msgid ""
53
  "Tips for the settings are located below select options. Please refer to the %"
54
  "sdocumentation%s for more information."
55
  msgstr ""
56
 
57
- #: breadcrumb_navxt_admin.php:314
58
  msgid "Go to the Breadcrumb NavXT online documentation"
59
  msgstr ""
60
 
61
- #: breadcrumb_navxt_admin.php:315
 
 
 
 
 
 
62
  msgid "Quick Start Information"
63
  msgstr ""
64
 
65
- #: breadcrumb_navxt_admin.php:315
66
  msgid ""
67
  "For the settings on this page to take effect, you must either use the "
68
  "included Breadcrumb NavXT widget, or place either of the code sections below "
69
  "into your theme."
70
  msgstr ""
71
 
72
- #: breadcrumb_navxt_admin.php:316
73
  msgid "Breadcrumb trail with separators"
74
  msgstr ""
75
 
76
- #: breadcrumb_navxt_admin.php:317
77
  msgid "Breadcrumb trail in list form"
78
  msgstr ""
79
 
80
- #: breadcrumb_navxt_admin.php:398 mtekk_admin_class.php:482
81
- msgid "Import"
82
- msgstr ""
83
-
84
- #: breadcrumb_navxt_admin.php:398 mtekk_admin_class.php:483
85
- msgid "Export"
86
- msgstr ""
87
-
88
- #: breadcrumb_navxt_admin.php:398 mtekk_admin_class.php:484
89
- msgid "Reset"
90
- msgstr ""
91
-
92
- #: breadcrumb_navxt_admin.php:419
93
  msgid "Breadcrumb NavXT Settings"
94
  msgstr ""
95
 
96
- #: breadcrumb_navxt_admin.php:427
97
  msgid "General"
98
  msgstr ""
99
 
100
- #: breadcrumb_navxt_admin.php:430
101
  msgid "Breadcrumb Separator"
102
  msgstr ""
103
 
104
- #: breadcrumb_navxt_admin.php:430
105
  msgid "Placed in between each breadcrumb."
106
  msgstr ""
107
 
108
- #: breadcrumb_navxt_admin.php:431
109
  msgid "Breadcrumb Max Title Length"
110
  msgstr ""
111
 
112
- #: breadcrumb_navxt_admin.php:435
113
  msgid "Home Breadcrumb"
114
  msgstr ""
115
 
116
- #: breadcrumb_navxt_admin.php:440
117
  msgid "Place the home breadcrumb in the trail."
118
  msgstr ""
119
 
120
- #: breadcrumb_navxt_admin.php:445
121
  msgid "Home Title: "
122
  msgstr ""
123
 
124
- #: breadcrumb_navxt_admin.php:453
125
  msgid "Home Prefix"
126
  msgstr ""
127
 
128
- #: breadcrumb_navxt_admin.php:454
129
  msgid "Home Suffix"
130
  msgstr ""
131
 
132
- #: breadcrumb_navxt_admin.php:455
133
  msgid "Home Anchor"
134
  msgstr ""
135
 
136
- #: breadcrumb_navxt_admin.php:455
137
  msgid "The anchor template for the home breadcrumb."
138
  msgstr ""
139
 
140
- #: breadcrumb_navxt_admin.php:456
141
  msgid "Blog Breadcrumb"
142
  msgstr ""
143
 
144
- #: breadcrumb_navxt_admin.php:456
145
  msgid "Place the blog breadcrumb in the trail."
146
  msgstr ""
147
 
148
- #: breadcrumb_navxt_admin.php:457
149
  msgid "Blog Anchor"
150
  msgstr ""
151
 
152
- #: breadcrumb_navxt_admin.php:457
153
  msgid ""
154
  "The anchor template for the blog breadcrumb, used only in static front page "
155
  "environments."
156
  msgstr ""
157
 
158
- #: breadcrumb_navxt_admin.php:461
159
  msgid "Main Site Breadcrumb"
160
  msgstr ""
161
 
162
- #: breadcrumb_navxt_admin.php:466
163
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
164
  msgstr ""
165
 
166
- #: breadcrumb_navxt_admin.php:471
167
  msgid "Main Site Home Title: "
168
  msgstr ""
169
 
170
- #: breadcrumb_navxt_admin.php:479
171
  msgid "Main Site Home Prefix"
172
  msgstr ""
173
 
174
- #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:480
175
  msgid "Used for the main site home breadcrumb in an multisite setup"
176
  msgstr ""
177
 
178
- #: breadcrumb_navxt_admin.php:480
179
  msgid "Main Site Home Suffix"
180
  msgstr ""
181
 
182
- #: breadcrumb_navxt_admin.php:481
183
  msgid "Main Site Home Anchor"
184
  msgstr ""
185
 
186
- #: breadcrumb_navxt_admin.php:481
187
  msgid ""
188
  "The anchor template for the main site home breadcrumb, used only in "
189
  "multisite environments."
190
  msgstr ""
191
 
192
- #: breadcrumb_navxt_admin.php:486
193
  msgid "Current Item"
194
  msgstr ""
195
 
196
- #: breadcrumb_navxt_admin.php:489
197
  msgid "Link Current Item"
198
  msgstr ""
199
 
200
- #: breadcrumb_navxt_admin.php:489
201
  msgid "Yes"
202
  msgstr ""
203
 
204
- #: breadcrumb_navxt_admin.php:490
205
  msgid "Current Item Prefix"
206
  msgstr ""
207
 
208
- #: breadcrumb_navxt_admin.php:490
209
  msgid ""
210
  "This is always placed in front of the last breadcrumb in the trail, before "
211
  "any other prefixes for that breadcrumb."
212
  msgstr ""
213
 
214
- #: breadcrumb_navxt_admin.php:491
215
  msgid "Current Item Suffix"
216
  msgstr ""
217
 
218
- #: breadcrumb_navxt_admin.php:491
219
  msgid ""
220
  "This is always placed after the last breadcrumb in the trail, and after any "
221
  "other prefixes for that breadcrumb."
222
  msgstr ""
223
 
224
- #: breadcrumb_navxt_admin.php:492
225
  msgid "Current Item Anchor"
226
  msgstr ""
227
 
228
- #: breadcrumb_navxt_admin.php:492
229
  msgid "The anchor template for current item breadcrumbs."
230
  msgstr ""
231
 
232
- #: breadcrumb_navxt_admin.php:493
233
  msgid "Paged Breadcrumb"
234
  msgstr ""
235
 
236
- #: breadcrumb_navxt_admin.php:493
237
  msgid "Include the paged breadcrumb in the breadcrumb trail."
238
  msgstr ""
239
 
240
- #: breadcrumb_navxt_admin.php:493
241
  msgid ""
242
  "Indicates that the user is on a page other than the first on paginated posts/"
243
  "pages."
244
  msgstr ""
245
 
246
- #: breadcrumb_navxt_admin.php:494
247
  msgid "Paged Prefix"
248
  msgstr ""
249
 
250
- #: breadcrumb_navxt_admin.php:495
251
  msgid "Paged Suffix"
252
  msgstr ""
253
 
254
- #: breadcrumb_navxt_admin.php:500
255
  msgid "Posts &amp; Pages"
256
  msgstr ""
257
 
258
- #: breadcrumb_navxt_admin.php:503
259
  msgid "Post Prefix"
260
  msgstr ""
261
 
262
- #: breadcrumb_navxt_admin.php:504
263
  msgid "Post Suffix"
264
  msgstr ""
265
 
266
- #: breadcrumb_navxt_admin.php:505
267
  msgid "Post Anchor"
268
  msgstr ""
269
 
270
- #: breadcrumb_navxt_admin.php:505
271
  msgid "The anchor template for post breadcrumbs."
272
  msgstr ""
273
 
274
- #: breadcrumb_navxt_admin.php:506
275
  msgid "Post Taxonomy Display"
276
  msgstr ""
277
 
278
- #: breadcrumb_navxt_admin.php:506
279
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
280
  msgstr ""
281
 
282
- #: breadcrumb_navxt_admin.php:510
283
  msgid "Post Taxonomy"
284
  msgstr ""
285
 
286
- #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:631
287
  msgid "Categories"
288
  msgstr ""
289
 
290
- #: breadcrumb_navxt_admin.php:515
291
  msgid "Dates"
292
  msgstr ""
293
 
294
- #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:643
295
  msgid "Tags"
296
  msgstr ""
297
 
298
- #: breadcrumb_navxt_admin.php:517 breadcrumb_navxt_admin.php:610
299
  msgid "Pages"
300
  msgstr ""
301
 
302
- #: breadcrumb_navxt_admin.php:528 breadcrumb_navxt_admin.php:621
303
  msgid "The taxonomy which the breadcrumb trail will show."
304
  msgstr ""
305
 
306
- #: breadcrumb_navxt_admin.php:532
307
  msgid "Page Prefix"
308
  msgstr ""
309
 
310
- #: breadcrumb_navxt_admin.php:533
311
  msgid "Page Suffix"
312
  msgstr ""
313
 
314
- #: breadcrumb_navxt_admin.php:534
315
  msgid "Page Anchor"
316
  msgstr ""
317
 
318
- #: breadcrumb_navxt_admin.php:534
319
  msgid "The anchor template for page breadcrumbs."
320
  msgstr ""
321
 
322
- #: breadcrumb_navxt_admin.php:535
323
  msgid "Attachment Prefix"
324
  msgstr ""
325
 
326
- #: breadcrumb_navxt_admin.php:536
327
  msgid "Attachment Suffix"
328
  msgstr ""
329
 
330
- #: breadcrumb_navxt_admin.php:585 breadcrumb_navxt_admin.php:679
331
- #, php-format
332
  msgid "%s Prefix"
333
  msgstr ""
334
 
335
- #: breadcrumb_navxt_admin.php:586 breadcrumb_navxt_admin.php:680
336
- #, php-format
337
  msgid "%s Suffix"
338
  msgstr ""
339
 
340
- #: breadcrumb_navxt_admin.php:587 breadcrumb_navxt_admin.php:681
341
- #, php-format
342
  msgid "%s Anchor"
343
  msgstr ""
344
 
345
- #: breadcrumb_navxt_admin.php:587 breadcrumb_navxt_admin.php:681
346
- #, php-format
347
  msgid "The anchor template for %s breadcrumbs."
348
  msgstr ""
349
 
350
- #: breadcrumb_navxt_admin.php:592
351
- #, php-format
352
  msgid "%s Root Page"
353
  msgstr ""
354
 
355
- #: breadcrumb_navxt_admin.php:595
356
  msgid "&mdash; Select &mdash;"
357
  msgstr ""
358
 
359
- #: breadcrumb_navxt_admin.php:602
360
- #, php-format
361
  msgid "%s Taxonomy Display"
362
  msgstr ""
363
 
364
- #: breadcrumb_navxt_admin.php:602
365
- #, php-format
366
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
367
  msgstr ""
368
 
369
- #: breadcrumb_navxt_admin.php:606
370
- #, php-format
371
  msgid "%s Taxonomy"
372
  msgstr ""
373
 
374
- #: breadcrumb_navxt_admin.php:634
375
  msgid "Category Prefix"
376
  msgstr ""
377
 
378
- #: breadcrumb_navxt_admin.php:634
379
  msgid "Applied before the anchor on all category breadcrumbs."
380
  msgstr ""
381
 
382
- #: breadcrumb_navxt_admin.php:635
383
  msgid "Category Suffix"
384
  msgstr ""
385
 
386
- #: breadcrumb_navxt_admin.php:635
387
  msgid "Applied after the anchor on all category breadcrumbs."
388
  msgstr ""
389
 
390
- #: breadcrumb_navxt_admin.php:636
391
  msgid "Category Anchor"
392
  msgstr ""
393
 
394
- #: breadcrumb_navxt_admin.php:636
395
  msgid "The anchor template for category breadcrumbs."
396
  msgstr ""
397
 
398
- #: breadcrumb_navxt_admin.php:637
399
  msgid "Archive by Category Prefix"
400
  msgstr ""
401
 
402
- #: breadcrumb_navxt_admin.php:637
403
  msgid ""
404
  "Applied before the title of the current item breadcrumb on an archive by "
405
  "cateogry page."
406
  msgstr ""
407
 
408
- #: breadcrumb_navxt_admin.php:638
409
  msgid "Archive by Category Suffix"
410
  msgstr ""
411
 
412
- #: breadcrumb_navxt_admin.php:638
413
  msgid ""
414
  "Applied after the title of the current item breadcrumb on an archive by "
415
  "cateogry page."
416
  msgstr ""
417
 
418
- #: breadcrumb_navxt_admin.php:646
419
  msgid "Tag Prefix"
420
  msgstr ""
421
 
422
- #: breadcrumb_navxt_admin.php:646
423
  msgid "Applied before the anchor on all tag breadcrumbs."
424
  msgstr ""
425
 
426
- #: breadcrumb_navxt_admin.php:647
427
  msgid "Tag Suffix"
428
  msgstr ""
429
 
430
- #: breadcrumb_navxt_admin.php:647
431
  msgid "Applied after the anchor on all tag breadcrumbs."
432
  msgstr ""
433
 
434
- #: breadcrumb_navxt_admin.php:648
435
  msgid "Tag Anchor"
436
  msgstr ""
437
 
438
- #: breadcrumb_navxt_admin.php:648
439
  msgid "The anchor template for tag breadcrumbs."
440
  msgstr ""
441
 
442
- #: breadcrumb_navxt_admin.php:649
443
  msgid "Archive by Tag Prefix"
444
  msgstr ""
445
 
446
- #: breadcrumb_navxt_admin.php:649
447
  msgid ""
448
  "Applied before the title of the current item breadcrumb on an archive by tag "
449
  "page."
450
  msgstr ""
451
 
452
- #: breadcrumb_navxt_admin.php:650
453
  msgid "Archive by Tag Suffix"
454
  msgstr ""
455
 
456
- #: breadcrumb_navxt_admin.php:650
457
  msgid ""
458
  "Applied after the title of the current item breadcrumb on an archive by tag "
459
  "page."
460
  msgstr ""
461
 
462
- #: breadcrumb_navxt_admin.php:679
463
- #, php-format
464
  msgid "Applied before the anchor on all %s breadcrumbs."
465
  msgstr ""
466
 
467
- #: breadcrumb_navxt_admin.php:680
468
- #, php-format
469
  msgid "Applied after the anchor on all %s breadcrumbs."
470
  msgstr ""
471
 
472
- #: breadcrumb_navxt_admin.php:682
473
- #, php-format
474
  msgid "Archive by %s Prefix"
475
  msgstr ""
476
 
477
- #: breadcrumb_navxt_admin.php:682
478
- #, php-format
479
  msgid ""
480
  "Applied before the title of the current item breadcrumb on an archive by %s "
481
  "page."
482
  msgstr ""
483
 
484
- #: breadcrumb_navxt_admin.php:683
485
- #, php-format
486
  msgid "Archive by %s Suffix"
487
  msgstr ""
488
 
489
- #: breadcrumb_navxt_admin.php:683
490
- #, php-format
491
  msgid ""
492
  "Applied after the title of the current item breadcrumb on an archive by %s "
493
  "page."
494
  msgstr ""
495
 
496
- #: breadcrumb_navxt_admin.php:692
497
  msgid "Date Archives"
498
  msgstr ""
499
 
500
- #: breadcrumb_navxt_admin.php:695
501
  msgid "Date Anchor"
502
  msgstr ""
503
 
504
- #: breadcrumb_navxt_admin.php:695
505
  msgid "The anchor template for date breadcrumbs."
506
  msgstr ""
507
 
508
- #: breadcrumb_navxt_admin.php:696
509
  msgid "Archive by Date Prefix"
510
  msgstr ""
511
 
512
- #: breadcrumb_navxt_admin.php:696
513
  msgid "Applied before the anchor on all date breadcrumbs."
514
  msgstr ""
515
 
516
- #: breadcrumb_navxt_admin.php:697
517
  msgid "Archive by Date Suffix"
518
  msgstr ""
519
 
520
- #: breadcrumb_navxt_admin.php:697
521
  msgid "Applied after the anchor on all date breadcrumbs."
522
  msgstr ""
523
 
524
- #: breadcrumb_navxt_admin.php:702
525
  msgid "Miscellaneous"
526
  msgstr ""
527
 
528
- #: breadcrumb_navxt_admin.php:705
529
  msgid "Author Prefix"
530
  msgstr ""
531
 
532
- #: breadcrumb_navxt_admin.php:706
533
  msgid "Author Suffix"
534
  msgstr ""
535
 
536
- #: breadcrumb_navxt_admin.php:707
537
  msgid "Author Display Format"
538
  msgstr ""
539
 
540
- #: breadcrumb_navxt_admin.php:707
541
  msgid ""
542
  "display_name uses the name specified in \"Display name publicly as\" under "
543
  "the user profile the others correspond to options in the user profile."
544
  msgstr ""
545
 
546
- #: breadcrumb_navxt_admin.php:708
547
  msgid "Search Prefix"
548
  msgstr ""
549
 
550
- #: breadcrumb_navxt_admin.php:709
551
  msgid "Search Suffix"
552
  msgstr ""
553
 
554
- #: breadcrumb_navxt_admin.php:710
555
  msgid "Search Anchor"
556
  msgstr ""
557
 
558
- #: breadcrumb_navxt_admin.php:710
559
  msgid ""
560
  "The anchor template for search breadcrumbs, used only when the search "
561
  "results span several pages."
562
  msgstr ""
563
 
564
- #: breadcrumb_navxt_admin.php:711
565
  msgid "404 Title"
566
  msgstr ""
567
 
568
- #: breadcrumb_navxt_admin.php:712
569
  msgid "404 Prefix"
570
  msgstr ""
571
 
572
- #: breadcrumb_navxt_admin.php:713
573
  msgid "404 Suffix"
574
  msgstr ""
575
 
576
- #: breadcrumb_navxt_admin.php:718
577
  msgid "Save Changes"
578
  msgstr ""
579
 
580
- #: breadcrumb_navxt_class.php:213
581
  msgid "Blog"
582
  msgstr ""
583
 
584
- #: breadcrumb_navxt_class.php:232
585
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
586
  msgstr ""
587
 
588
- #: breadcrumb_navxt_class.php:277
589
  msgid "404"
590
  msgstr ""
591
 
592
- #: breadcrumb_navxt_class.php:280
593
  msgid "Search results for &#39;"
594
  msgstr ""
595
 
596
- #: breadcrumb_navxt_class.php:284
597
  msgid ""
598
  "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
599
  "%\">"
600
  msgstr ""
601
 
602
- #: breadcrumb_navxt_class.php:291
603
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
604
  msgstr ""
605
 
606
- #: breadcrumb_navxt_class.php:294
607
  msgid "Articles by: "
608
  msgstr ""
609
 
610
- #: breadcrumb_navxt_class.php:298
611
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
612
  msgstr ""
613
 
614
- #: breadcrumb_navxt_class.php:307
615
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
616
  msgstr ""
617
 
618
- #: breadcrumb_navxt_class.php:310
619
  msgid "Archive by category &#39;"
620
  msgstr ""
621
 
622
- #: breadcrumb_navxt_class.php:314
623
  msgid "Archive by tag &#39;"
624
  msgstr ""
625
 
626
- #: breadcrumb_navxt_class.php:317
627
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
628
  msgstr ""
629
-
630
- #: breadcrumb_navxt_class.php:478
631
- msgid "Un"
632
- msgstr ""
633
-
634
- #: breadcrumb_navxt_widget.php:24
635
- msgid "Adds a breadcrumb trail to your sidebar"
636
- msgstr ""
637
-
638
- #: breadcrumb_navxt_widget.php:72
639
- msgid "Title:"
640
- msgstr ""
641
-
642
- #: breadcrumb_navxt_widget.php:77
643
- msgid "Output trail as a list"
644
- msgstr ""
645
-
646
- #: breadcrumb_navxt_widget.php:79
647
- msgid "Link the breadcrumbs"
648
- msgstr ""
649
-
650
- #: breadcrumb_navxt_widget.php:81
651
- msgid "Reverse the order of the trail"
652
- msgstr ""
653
-
654
- #: breadcrumb_navxt_widget.php:83
655
- msgid "Hide the trail on the front page"
656
- msgstr ""
657
-
658
- #: mtekk_admin_class.php:57
659
- msgid "Undo"
660
- msgstr ""
661
-
662
- #: mtekk_admin_class.php:64
663
- msgid "Migrate now."
664
- msgstr ""
665
-
666
- #: mtekk_admin_class.php:158
667
- msgid "Settings"
668
- msgstr ""
669
-
670
- #: mtekk_admin_class.php:186
671
- msgid "Your settings are out of date."
672
- msgstr ""
673
-
674
- #: mtekk_admin_class.php:186
675
- msgid "Migrate the settings now."
676
- msgstr ""
677
-
678
- #: mtekk_admin_class.php:299
679
- msgid "Settings successfully imported from the uploaded file."
680
- msgstr ""
681
-
682
- #: mtekk_admin_class.php:299
683
- msgid "Undo the options import."
684
- msgstr ""
685
-
686
- #: mtekk_admin_class.php:304
687
- msgid "Importing settings from file failed."
688
- msgstr ""
689
-
690
- #: mtekk_admin_class.php:323
691
- msgid "Settings successfully reset to the default values."
692
- msgstr ""
693
-
694
- #: mtekk_admin_class.php:323
695
- msgid "Undo the options reset."
696
- msgstr ""
697
-
698
- #: mtekk_admin_class.php:340
699
- msgid "Settings successfully undid the last operation."
700
- msgstr ""
701
-
702
- #: mtekk_admin_class.php:340
703
- msgid "Undo the last undo operation."
704
- msgstr ""
705
-
706
- #: mtekk_admin_class.php:373
707
- msgid "Settings successfully migrated."
708
- msgstr ""
709
-
710
- #: mtekk_admin_class.php:403
711
- #, php-format
712
- msgid "Get help with \"%s\""
713
- msgstr ""
714
-
715
- #: mtekk_admin_class.php:473
716
- msgid "Import/Export/Reset Settings"
717
- msgstr ""
718
-
719
- #: mtekk_admin_class.php:474
720
- msgid ""
721
- "Import settings from a XML file, export the current settings to a XML file, "
722
- "or reset to the default settings."
723
- msgstr ""
724
-
725
- #: mtekk_admin_class.php:477
726
- msgid "Settings File"
727
- msgstr ""
728
-
729
- #: mtekk_admin_class.php:480
730
- msgid "Select a XML settings file to upload and import settings from."
731
- msgstr ""
 
1
  # Copyright (C) 2010
2
  # This file is distributed under the same license as the package.
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
+ "POT-Creation-Date: 2011-02-09 17:37:49+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: 2010-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_widget.php:24
16
+ msgid "Adds a breadcrumb trail to your sidebar"
17
+ msgstr ""
18
+
19
+ #: breadcrumb_navxt_widget.php:85
20
+ msgid "Title:"
21
+ msgstr ""
22
+
23
+ #: breadcrumb_navxt_widget.php:89
24
+ msgid "Output trail as:"
25
+ msgstr ""
26
+
27
+ #: breadcrumb_navxt_widget.php:91
28
+ msgid "List"
29
+ msgstr ""
30
+
31
+ #: breadcrumb_navxt_widget.php:92
32
+ msgid "RDFa"
33
+ msgstr ""
34
+
35
+ #: breadcrumb_navxt_widget.php:93
36
+ msgid "Microformat"
37
+ msgstr ""
38
+
39
+ #: breadcrumb_navxt_widget.php:94
40
+ msgid "Plain"
41
+ msgstr ""
42
+
43
+ #: breadcrumb_navxt_widget.php:99
44
+ msgid "Link the breadcrumbs"
45
+ msgstr ""
46
+
47
+ #: breadcrumb_navxt_widget.php:101
48
+ msgid "Reverse the order of the trail"
49
+ msgstr ""
50
+
51
+ #: breadcrumb_navxt_widget.php:103
52
+ msgid "Hide the trail on the front page"
53
+ msgstr ""
54
+
55
+ #: mtekk_admin_class.php:59
56
+ msgid "Undo"
57
+ msgstr ""
58
+
59
+ #: mtekk_admin_class.php:67 mtekk_admin_class.php:191
60
+ msgid "Migrate now."
61
+ msgstr ""
62
+
63
+ #: mtekk_admin_class.php:164
64
+ msgid "Settings"
65
+ msgstr ""
66
+
67
+ #: mtekk_admin_class.php:191
68
+ msgid "Your settings are out of date."
69
+ msgstr ""
70
+
71
+ #: mtekk_admin_class.php:191
72
+ msgid "Migrate the settings now."
73
+ msgstr ""
74
+
75
+ #: mtekk_admin_class.php:198
76
+ msgid "Your plugin install is incomplete."
77
+ msgstr ""
78
+
79
+ #: mtekk_admin_class.php:198
80
+ msgid "Load default settings now."
81
+ msgstr ""
82
+
83
+ #: mtekk_admin_class.php:198
84
+ msgid "Complete now."
85
+ msgstr ""
86
+
87
+ #: mtekk_admin_class.php:311
88
+ msgid "Settings successfully imported from the uploaded file."
89
+ msgstr ""
90
+
91
+ #: mtekk_admin_class.php:311
92
+ msgid "Undo the options import."
93
+ msgstr ""
94
+
95
+ #: mtekk_admin_class.php:316
96
+ msgid "Importing settings from file failed."
97
+ msgstr ""
98
+
99
+ #: mtekk_admin_class.php:335
100
+ msgid "Settings successfully reset to the default values."
101
+ msgstr ""
102
+
103
+ #: mtekk_admin_class.php:335
104
+ msgid "Undo the options reset."
105
+ msgstr ""
106
+
107
+ #: mtekk_admin_class.php:352
108
+ msgid "Settings successfully undid the last operation."
109
+ msgstr ""
110
+
111
+ #: mtekk_admin_class.php:352
112
+ msgid "Undo the last undo operation."
113
+ msgstr ""
114
+
115
+ #: mtekk_admin_class.php:387
116
+ msgid "Settings successfully migrated."
117
+ msgstr ""
118
+
119
+ #: mtekk_admin_class.php:394
120
+ msgid "Default settings successfully installed."
121
+ msgstr ""
122
+
123
+ #: mtekk_admin_class.php:425
124
+ msgid "Get help with \"%s\""
125
+ msgstr ""
126
+
127
+ #: mtekk_admin_class.php:495
128
+ msgid "Import/Export/Reset Settings"
129
+ msgstr ""
130
+
131
+ #: mtekk_admin_class.php:496
132
+ msgid ""
133
+ "Import settings from a XML file, export the current settings to a XML file, "
134
+ "or reset to the default settings."
135
+ msgstr ""
136
+
137
+ #: mtekk_admin_class.php:499
138
+ msgid "Settings File"
139
+ msgstr ""
140
+
141
+ #: mtekk_admin_class.php:502
142
+ msgid "Select a XML settings file to upload and import settings from."
143
+ msgstr ""
144
+
145
+ #: mtekk_admin_class.php:504 breadcrumb_navxt_admin.php:423
146
+ msgid "Import"
147
+ msgstr ""
148
+
149
+ #: mtekk_admin_class.php:505 breadcrumb_navxt_admin.php:423
150
+ msgid "Export"
151
+ msgstr ""
152
+
153
+ #: mtekk_admin_class.php:506 breadcrumb_navxt_admin.php:423
154
+ msgid "Reset"
155
+ msgstr ""
156
+
157
+ #: breadcrumb_navxt_admin.php:35
158
  msgid ""
159
  "Your PHP version is too old, please upgrade to a newer version. Your version "
160
+ "is %s, Breadcrumb NavXT requires %s"
161
  msgstr ""
162
 
163
+ #: breadcrumb_navxt_admin.php:112
164
  msgid "Insufficient privileges to proceed."
165
  msgstr ""
166
 
167
+ #: breadcrumb_navxt_admin.php:217 breadcrumb_navxt_class.php:207
168
  msgid "Home"
169
  msgstr ""
170
 
171
+ #: breadcrumb_navxt_admin.php:219 breadcrumb_navxt_admin.php:580
172
+ #: breadcrumb_navxt_admin.php:773 breadcrumb_navxt_class.php:130
173
+ #: breadcrumb_navxt_class.php:209 breadcrumb_navxt_class.php:219
174
+ #: breadcrumb_navxt_class.php:223 breadcrumb_navxt_class.php:247
175
+ #: breadcrumb_navxt_class.php:263
176
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
177
  msgstr ""
178
 
179
+ #: breadcrumb_navxt_admin.php:304
180
  msgid "Settings successfully saved."
181
  msgstr ""
182
 
183
+ #: breadcrumb_navxt_admin.php:304 breadcrumb_navxt_admin.php:309
184
  msgid "Undo the options save."
185
  msgstr ""
186
 
187
+ #: breadcrumb_navxt_admin.php:309
188
+ msgid "Some settings were not saved."
189
+ msgstr ""
190
+
191
+ #: breadcrumb_navxt_admin.php:310
192
+ msgid "The following settings were not saved:"
193
+ msgstr ""
194
+
195
+ #: breadcrumb_navxt_admin.php:315
196
+ msgid "Please include this message in your %sbug report%s."
197
+ msgstr ""
198
+
199
+ #: breadcrumb_navxt_admin.php:315 breadcrumb_navxt_admin.php:339
200
+ msgid "Go to the Breadcrumb NavXT support post for your version."
201
+ msgstr ""
202
+
203
+ #: breadcrumb_navxt_admin.php:337
204
  msgid ""
205
  "Tips for the settings are located below select options. Please refer to the %"
206
  "sdocumentation%s for more information."
207
  msgstr ""
208
 
209
+ #: breadcrumb_navxt_admin.php:338
210
  msgid "Go to the Breadcrumb NavXT online documentation"
211
  msgstr ""
212
 
213
+ #: breadcrumb_navxt_admin.php:339
214
+ msgid ""
215
+ "If you think you have found a bug, please include your WordPress version and "
216
+ "details on how to reproduce the bug when you %sreport the issue%s."
217
+ msgstr ""
218
+
219
+ #: breadcrumb_navxt_admin.php:340
220
  msgid "Quick Start Information"
221
  msgstr ""
222
 
223
+ #: breadcrumb_navxt_admin.php:340
224
  msgid ""
225
  "For the settings on this page to take effect, you must either use the "
226
  "included Breadcrumb NavXT widget, or place either of the code sections below "
227
  "into your theme."
228
  msgstr ""
229
 
230
+ #: breadcrumb_navxt_admin.php:341
231
  msgid "Breadcrumb trail with separators"
232
  msgstr ""
233
 
234
+ #: breadcrumb_navxt_admin.php:342
235
  msgid "Breadcrumb trail in list form"
236
  msgstr ""
237
 
238
+ #: breadcrumb_navxt_admin.php:445
 
 
 
 
 
 
 
 
 
 
 
 
239
  msgid "Breadcrumb NavXT Settings"
240
  msgstr ""
241
 
242
+ #: breadcrumb_navxt_admin.php:453
243
  msgid "General"
244
  msgstr ""
245
 
246
+ #: breadcrumb_navxt_admin.php:456
247
  msgid "Breadcrumb Separator"
248
  msgstr ""
249
 
250
+ #: breadcrumb_navxt_admin.php:456
251
  msgid "Placed in between each breadcrumb."
252
  msgstr ""
253
 
254
+ #: breadcrumb_navxt_admin.php:457
255
  msgid "Breadcrumb Max Title Length"
256
  msgstr ""
257
 
258
+ #: breadcrumb_navxt_admin.php:461
259
  msgid "Home Breadcrumb"
260
  msgstr ""
261
 
262
+ #: breadcrumb_navxt_admin.php:466
263
  msgid "Place the home breadcrumb in the trail."
264
  msgstr ""
265
 
266
+ #: breadcrumb_navxt_admin.php:471
267
  msgid "Home Title: "
268
  msgstr ""
269
 
270
+ #: breadcrumb_navxt_admin.php:479
271
  msgid "Home Prefix"
272
  msgstr ""
273
 
274
+ #: breadcrumb_navxt_admin.php:480
275
  msgid "Home Suffix"
276
  msgstr ""
277
 
278
+ #: breadcrumb_navxt_admin.php:481
279
  msgid "Home Anchor"
280
  msgstr ""
281
 
282
+ #: breadcrumb_navxt_admin.php:481
283
  msgid "The anchor template for the home breadcrumb."
284
  msgstr ""
285
 
286
+ #: breadcrumb_navxt_admin.php:482
287
  msgid "Blog Breadcrumb"
288
  msgstr ""
289
 
290
+ #: breadcrumb_navxt_admin.php:482
291
  msgid "Place the blog breadcrumb in the trail."
292
  msgstr ""
293
 
294
+ #: breadcrumb_navxt_admin.php:483
295
  msgid "Blog Anchor"
296
  msgstr ""
297
 
298
+ #: breadcrumb_navxt_admin.php:483
299
  msgid ""
300
  "The anchor template for the blog breadcrumb, used only in static front page "
301
  "environments."
302
  msgstr ""
303
 
304
+ #: breadcrumb_navxt_admin.php:487
305
  msgid "Main Site Breadcrumb"
306
  msgstr ""
307
 
308
+ #: breadcrumb_navxt_admin.php:492
309
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
310
  msgstr ""
311
 
312
+ #: breadcrumb_navxt_admin.php:497
313
  msgid "Main Site Home Title: "
314
  msgstr ""
315
 
316
+ #: breadcrumb_navxt_admin.php:506
317
  msgid "Main Site Home Prefix"
318
  msgstr ""
319
 
320
+ #: breadcrumb_navxt_admin.php:506 breadcrumb_navxt_admin.php:507
321
  msgid "Used for the main site home breadcrumb in an multisite setup"
322
  msgstr ""
323
 
324
+ #: breadcrumb_navxt_admin.php:507
325
  msgid "Main Site Home Suffix"
326
  msgstr ""
327
 
328
+ #: breadcrumb_navxt_admin.php:508
329
  msgid "Main Site Home Anchor"
330
  msgstr ""
331
 
332
+ #: breadcrumb_navxt_admin.php:508
333
  msgid ""
334
  "The anchor template for the main site home breadcrumb, used only in "
335
  "multisite environments."
336
  msgstr ""
337
 
338
+ #: breadcrumb_navxt_admin.php:513
339
  msgid "Current Item"
340
  msgstr ""
341
 
342
+ #: breadcrumb_navxt_admin.php:516
343
  msgid "Link Current Item"
344
  msgstr ""
345
 
346
+ #: breadcrumb_navxt_admin.php:516
347
  msgid "Yes"
348
  msgstr ""
349
 
350
+ #: breadcrumb_navxt_admin.php:517
351
  msgid "Current Item Prefix"
352
  msgstr ""
353
 
354
+ #: breadcrumb_navxt_admin.php:517
355
  msgid ""
356
  "This is always placed in front of the last breadcrumb in the trail, before "
357
  "any other prefixes for that breadcrumb."
358
  msgstr ""
359
 
360
+ #: breadcrumb_navxt_admin.php:518
361
  msgid "Current Item Suffix"
362
  msgstr ""
363
 
364
+ #: breadcrumb_navxt_admin.php:518
365
  msgid ""
366
  "This is always placed after the last breadcrumb in the trail, and after any "
367
  "other prefixes for that breadcrumb."
368
  msgstr ""
369
 
370
+ #: breadcrumb_navxt_admin.php:519
371
  msgid "Current Item Anchor"
372
  msgstr ""
373
 
374
+ #: breadcrumb_navxt_admin.php:519
375
  msgid "The anchor template for current item breadcrumbs."
376
  msgstr ""
377
 
378
+ #: breadcrumb_navxt_admin.php:520
379
  msgid "Paged Breadcrumb"
380
  msgstr ""
381
 
382
+ #: breadcrumb_navxt_admin.php:520
383
  msgid "Include the paged breadcrumb in the breadcrumb trail."
384
  msgstr ""
385
 
386
+ #: breadcrumb_navxt_admin.php:520
387
  msgid ""
388
  "Indicates that the user is on a page other than the first on paginated posts/"
389
  "pages."
390
  msgstr ""
391
 
392
+ #: breadcrumb_navxt_admin.php:521
393
  msgid "Paged Prefix"
394
  msgstr ""
395
 
396
+ #: breadcrumb_navxt_admin.php:522
397
  msgid "Paged Suffix"
398
  msgstr ""
399
 
400
+ #: breadcrumb_navxt_admin.php:527
401
  msgid "Posts &amp; Pages"
402
  msgstr ""
403
 
404
+ #: breadcrumb_navxt_admin.php:530
405
  msgid "Post Prefix"
406
  msgstr ""
407
 
408
+ #: breadcrumb_navxt_admin.php:531
409
  msgid "Post Suffix"
410
  msgstr ""
411
 
412
+ #: breadcrumb_navxt_admin.php:532
413
  msgid "Post Anchor"
414
  msgstr ""
415
 
416
+ #: breadcrumb_navxt_admin.php:532
417
  msgid "The anchor template for post breadcrumbs."
418
  msgstr ""
419
 
420
+ #: breadcrumb_navxt_admin.php:533
421
  msgid "Post Taxonomy Display"
422
  msgstr ""
423
 
424
+ #: breadcrumb_navxt_admin.php:533
425
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
426
  msgstr ""
427
 
428
+ #: breadcrumb_navxt_admin.php:537
429
  msgid "Post Taxonomy"
430
  msgstr ""
431
 
432
+ #: breadcrumb_navxt_admin.php:541 breadcrumb_navxt_admin.php:663
433
  msgid "Categories"
434
  msgstr ""
435
 
436
+ #: breadcrumb_navxt_admin.php:542 breadcrumb_navxt_admin.php:641
437
  msgid "Dates"
438
  msgstr ""
439
 
440
+ #: breadcrumb_navxt_admin.php:543 breadcrumb_navxt_admin.php:675
441
  msgid "Tags"
442
  msgstr ""
443
 
444
+ #: breadcrumb_navxt_admin.php:544 breadcrumb_navxt_admin.php:642
445
  msgid "Pages"
446
  msgstr ""
447
 
448
+ #: breadcrumb_navxt_admin.php:555 breadcrumb_navxt_admin.php:653
449
  msgid "The taxonomy which the breadcrumb trail will show."
450
  msgstr ""
451
 
452
+ #: breadcrumb_navxt_admin.php:559
453
  msgid "Page Prefix"
454
  msgstr ""
455
 
456
+ #: breadcrumb_navxt_admin.php:560
457
  msgid "Page Suffix"
458
  msgstr ""
459
 
460
+ #: breadcrumb_navxt_admin.php:561
461
  msgid "Page Anchor"
462
  msgstr ""
463
 
464
+ #: breadcrumb_navxt_admin.php:561
465
  msgid "The anchor template for page breadcrumbs."
466
  msgstr ""
467
 
468
+ #: breadcrumb_navxt_admin.php:562
469
  msgid "Attachment Prefix"
470
  msgstr ""
471
 
472
+ #: breadcrumb_navxt_admin.php:563
473
  msgid "Attachment Suffix"
474
  msgstr ""
475
 
476
+ #: breadcrumb_navxt_admin.php:616 breadcrumb_navxt_admin.php:708
 
477
  msgid "%s Prefix"
478
  msgstr ""
479
 
480
+ #: breadcrumb_navxt_admin.php:617 breadcrumb_navxt_admin.php:709
 
481
  msgid "%s Suffix"
482
  msgstr ""
483
 
484
+ #: breadcrumb_navxt_admin.php:618 breadcrumb_navxt_admin.php:710
 
485
  msgid "%s Anchor"
486
  msgstr ""
487
 
488
+ #: breadcrumb_navxt_admin.php:618 breadcrumb_navxt_admin.php:710
 
489
  msgid "The anchor template for %s breadcrumbs."
490
  msgstr ""
491
 
492
+ #: breadcrumb_navxt_admin.php:623
 
493
  msgid "%s Root Page"
494
  msgstr ""
495
 
496
+ #: breadcrumb_navxt_admin.php:626
497
  msgid "&mdash; Select &mdash;"
498
  msgstr ""
499
 
500
+ #: breadcrumb_navxt_admin.php:633
 
501
  msgid "%s Taxonomy Display"
502
  msgstr ""
503
 
504
+ #: breadcrumb_navxt_admin.php:633
 
505
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
506
  msgstr ""
507
 
508
+ #: breadcrumb_navxt_admin.php:637
 
509
  msgid "%s Taxonomy"
510
  msgstr ""
511
 
512
+ #: breadcrumb_navxt_admin.php:666
513
  msgid "Category Prefix"
514
  msgstr ""
515
 
516
+ #: breadcrumb_navxt_admin.php:666
517
  msgid "Applied before the anchor on all category breadcrumbs."
518
  msgstr ""
519
 
520
+ #: breadcrumb_navxt_admin.php:667
521
  msgid "Category Suffix"
522
  msgstr ""
523
 
524
+ #: breadcrumb_navxt_admin.php:667
525
  msgid "Applied after the anchor on all category breadcrumbs."
526
  msgstr ""
527
 
528
+ #: breadcrumb_navxt_admin.php:668
529
  msgid "Category Anchor"
530
  msgstr ""
531
 
532
+ #: breadcrumb_navxt_admin.php:668
533
  msgid "The anchor template for category breadcrumbs."
534
  msgstr ""
535
 
536
+ #: breadcrumb_navxt_admin.php:669
537
  msgid "Archive by Category Prefix"
538
  msgstr ""
539
 
540
+ #: breadcrumb_navxt_admin.php:669
541
  msgid ""
542
  "Applied before the title of the current item breadcrumb on an archive by "
543
  "cateogry page."
544
  msgstr ""
545
 
546
+ #: breadcrumb_navxt_admin.php:670
547
  msgid "Archive by Category Suffix"
548
  msgstr ""
549
 
550
+ #: breadcrumb_navxt_admin.php:670
551
  msgid ""
552
  "Applied after the title of the current item breadcrumb on an archive by "
553
  "cateogry page."
554
  msgstr ""
555
 
556
+ #: breadcrumb_navxt_admin.php:678
557
  msgid "Tag Prefix"
558
  msgstr ""
559
 
560
+ #: breadcrumb_navxt_admin.php:678
561
  msgid "Applied before the anchor on all tag breadcrumbs."
562
  msgstr ""
563
 
564
+ #: breadcrumb_navxt_admin.php:679
565
  msgid "Tag Suffix"
566
  msgstr ""
567
 
568
+ #: breadcrumb_navxt_admin.php:679
569
  msgid "Applied after the anchor on all tag breadcrumbs."
570
  msgstr ""
571
 
572
+ #: breadcrumb_navxt_admin.php:680
573
  msgid "Tag Anchor"
574
  msgstr ""
575
 
576
+ #: breadcrumb_navxt_admin.php:680
577
  msgid "The anchor template for tag breadcrumbs."
578
  msgstr ""
579
 
580
+ #: breadcrumb_navxt_admin.php:681
581
  msgid "Archive by Tag Prefix"
582
  msgstr ""
583
 
584
+ #: breadcrumb_navxt_admin.php:681
585
  msgid ""
586
  "Applied before the title of the current item breadcrumb on an archive by tag "
587
  "page."
588
  msgstr ""
589
 
590
+ #: breadcrumb_navxt_admin.php:682
591
  msgid "Archive by Tag Suffix"
592
  msgstr ""
593
 
594
+ #: breadcrumb_navxt_admin.php:682
595
  msgid ""
596
  "Applied after the title of the current item breadcrumb on an archive by tag "
597
  "page."
598
  msgstr ""
599
 
600
+ #: breadcrumb_navxt_admin.php:708
 
601
  msgid "Applied before the anchor on all %s breadcrumbs."
602
  msgstr ""
603
 
604
+ #: breadcrumb_navxt_admin.php:709
 
605
  msgid "Applied after the anchor on all %s breadcrumbs."
606
  msgstr ""
607
 
608
+ #: breadcrumb_navxt_admin.php:711
 
609
  msgid "Archive by %s Prefix"
610
  msgstr ""
611
 
612
+ #: breadcrumb_navxt_admin.php:711
 
613
  msgid ""
614
  "Applied before the title of the current item breadcrumb on an archive by %s "
615
  "page."
616
  msgstr ""
617
 
618
+ #: breadcrumb_navxt_admin.php:712
 
619
  msgid "Archive by %s Suffix"
620
  msgstr ""
621
 
622
+ #: breadcrumb_navxt_admin.php:712
 
623
  msgid ""
624
  "Applied after the title of the current item breadcrumb on an archive by %s "
625
  "page."
626
  msgstr ""
627
 
628
+ #: breadcrumb_navxt_admin.php:721
629
  msgid "Date Archives"
630
  msgstr ""
631
 
632
+ #: breadcrumb_navxt_admin.php:724
633
  msgid "Date Anchor"
634
  msgstr ""
635
 
636
+ #: breadcrumb_navxt_admin.php:724
637
  msgid "The anchor template for date breadcrumbs."
638
  msgstr ""
639
 
640
+ #: breadcrumb_navxt_admin.php:725
641
  msgid "Archive by Date Prefix"
642
  msgstr ""
643
 
644
+ #: breadcrumb_navxt_admin.php:725
645
  msgid "Applied before the anchor on all date breadcrumbs."
646
  msgstr ""
647
 
648
+ #: breadcrumb_navxt_admin.php:726
649
  msgid "Archive by Date Suffix"
650
  msgstr ""
651
 
652
+ #: breadcrumb_navxt_admin.php:726
653
  msgid "Applied after the anchor on all date breadcrumbs."
654
  msgstr ""
655
 
656
+ #: breadcrumb_navxt_admin.php:731
657
  msgid "Miscellaneous"
658
  msgstr ""
659
 
660
+ #: breadcrumb_navxt_admin.php:734
661
  msgid "Author Prefix"
662
  msgstr ""
663
 
664
+ #: breadcrumb_navxt_admin.php:735
665
  msgid "Author Suffix"
666
  msgstr ""
667
 
668
+ #: breadcrumb_navxt_admin.php:736
669
  msgid "Author Display Format"
670
  msgstr ""
671
 
672
+ #: breadcrumb_navxt_admin.php:736
673
  msgid ""
674
  "display_name uses the name specified in \"Display name publicly as\" under "
675
  "the user profile the others correspond to options in the user profile."
676
  msgstr ""
677
 
678
+ #: breadcrumb_navxt_admin.php:737
679
  msgid "Search Prefix"
680
  msgstr ""
681
 
682
+ #: breadcrumb_navxt_admin.php:738
683
  msgid "Search Suffix"
684
  msgstr ""
685
 
686
+ #: breadcrumb_navxt_admin.php:739
687
  msgid "Search Anchor"
688
  msgstr ""
689
 
690
+ #: breadcrumb_navxt_admin.php:739
691
  msgid ""
692
  "The anchor template for search breadcrumbs, used only when the search "
693
  "results span several pages."
694
  msgstr ""
695
 
696
+ #: breadcrumb_navxt_admin.php:740
697
  msgid "404 Title"
698
  msgstr ""
699
 
700
+ #: breadcrumb_navxt_admin.php:741
701
  msgid "404 Prefix"
702
  msgstr ""
703
 
704
+ #: breadcrumb_navxt_admin.php:742
705
  msgid "404 Suffix"
706
  msgstr ""
707
 
708
+ #: breadcrumb_navxt_admin.php:747
709
  msgid "Save Changes"
710
  msgstr ""
711
 
712
+ #: breadcrumb_navxt_class.php:217
713
  msgid "Blog"
714
  msgstr ""
715
 
716
+ #: breadcrumb_navxt_class.php:236
717
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
718
  msgstr ""
719
 
720
+ #: breadcrumb_navxt_class.php:281
721
  msgid "404"
722
  msgstr ""
723
 
724
+ #: breadcrumb_navxt_class.php:284
725
  msgid "Search results for &#39;"
726
  msgstr ""
727
 
728
+ #: breadcrumb_navxt_class.php:288
729
  msgid ""
730
  "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
731
  "%\">"
732
  msgstr ""
733
 
734
+ #: breadcrumb_navxt_class.php:295
735
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
736
  msgstr ""
737
 
738
+ #: breadcrumb_navxt_class.php:298
739
  msgid "Articles by: "
740
  msgstr ""
741
 
742
+ #: breadcrumb_navxt_class.php:302
743
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
744
  msgstr ""
745
 
746
+ #: breadcrumb_navxt_class.php:311
747
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
748
  msgstr ""
749
 
750
+ #: breadcrumb_navxt_class.php:314
751
  msgid "Archive by category &#39;"
752
  msgstr ""
753
 
754
+ #: breadcrumb_navxt_class.php:318
755
  msgid "Archive by tag &#39;"
756
  msgstr ""
757
 
758
+ #: breadcrumb_navxt_class.php:321
759
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
760
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb_navxt-es_ES.mo CHANGED
Binary file
languages/breadcrumb_navxt-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2010-08-13 02:16+0000\n"
6
- "PO-Revision-Date: 2010-08-16 15:18-0600\n"
7
  "Last-Translator: Karin Sequen <karin.sequen@bumerang180.com>\n"
8
  "Language-Team: Karin Sequen || Bumerang180 <info@bumerang180.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -17,618 +17,739 @@ msgstr ""
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: C:/Documents and Settings/mtekk/My Documents/Aptana Studio/Breadcrumb NavXT/trunk\n"
19
 
20
- #: breadcrumb_navxt_admin.php:30
21
- #, php-format
22
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
23
- msgstr "Su versión de PHP es anticuada, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
 
25
  #: breadcrumb_navxt_admin.php:112
26
  msgid "Insufficient privileges to proceed."
27
  msgstr "No tiene privilegios para proceder."
28
 
29
- #: breadcrumb_navxt_admin.php:189
30
- #: breadcrumb_navxt_admin.php:280
31
- #: breadcrumb_navxt_admin.php:591
32
- #: breadcrumb_navxt_class.php:156
33
- #: breadcrumb_navxt_class.php:160
34
- #: breadcrumb_navxt_class.php:184
35
- #: breadcrumb_navxt_class.php:198
 
 
 
 
 
 
 
36
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
37
  msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
38
 
39
- #: breadcrumb_navxt_admin.php:349
40
  msgid "Settings successfully saved."
41
  msgstr "Ajustes guardados exitosamente."
42
 
43
- #: breadcrumb_navxt_admin.php:349
 
44
  msgid "Undo the options save."
45
  msgstr "Deshacer modificación de opciones."
46
 
47
- #: breadcrumb_navxt_admin.php:372
48
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
50
  msgstr "Encontrará tips para las configuraciones debajo de cada opción. Por favor lea la %sdocumentación%s para más información (en inglés)."
51
 
52
- #: breadcrumb_navxt_admin.php:373
53
  msgid "Go to the Breadcrumb NavXT online documentation"
54
  msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
55
 
56
- #: breadcrumb_navxt_admin.php:459
57
- #: mtekk_admin_class.php:444
58
- msgid "Import"
59
- msgstr "Importar"
60
 
61
- #: breadcrumb_navxt_admin.php:459
62
- #: mtekk_admin_class.php:445
63
- msgid "Export"
64
- msgstr "Exportar"
65
 
66
- #: breadcrumb_navxt_admin.php:459
67
- #: mtekk_admin_class.php:446
68
- msgid "Reset"
69
- msgstr "Reiniciar"
70
 
71
- #: breadcrumb_navxt_admin.php:481
 
 
 
 
 
 
 
 
72
  msgid "Breadcrumb NavXT Settings"
73
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
74
 
75
- #: breadcrumb_navxt_admin.php:489
76
  msgid "General"
77
  msgstr "General"
78
 
79
- #: breadcrumb_navxt_admin.php:492
80
  msgid "Breadcrumb Separator"
81
  msgstr "Separador de Navegación"
82
 
83
- #: breadcrumb_navxt_admin.php:492
84
  msgid "Placed in between each breadcrumb."
85
  msgstr "Colocado en medio de cada opción de navegación."
86
 
87
- #: breadcrumb_navxt_admin.php:493
88
  msgid "Breadcrumb Max Title Length"
89
  msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
90
 
91
- #: breadcrumb_navxt_admin.php:497
92
  msgid "Home Breadcrumb"
93
  msgstr "Incluir Inicio"
94
 
95
- #: breadcrumb_navxt_admin.php:502
96
  msgid "Place the home breadcrumb in the trail."
97
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
98
 
99
- #: breadcrumb_navxt_admin.php:507
100
  msgid "Home Title: "
101
  msgstr "Título de Página de Inicio:"
102
 
103
- #: breadcrumb_navxt_admin.php:515
104
- msgid "Blog Breadcrumb"
105
- msgstr "Incluir Inicio (del Blog)"
106
-
107
- #: breadcrumb_navxt_admin.php:515
108
- msgid "Place the blog breadcrumb in the trail."
109
- msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
110
-
111
- #: breadcrumb_navxt_admin.php:516
112
  msgid "Home Prefix"
113
  msgstr "Prefijo de Inicio"
114
 
115
- #: breadcrumb_navxt_admin.php:517
116
  msgid "Home Suffix"
117
  msgstr "Sufijo de Inicio"
118
 
119
- #: breadcrumb_navxt_admin.php:518
120
  msgid "Home Anchor"
121
  msgstr "Vínculo a Inicio"
122
 
123
- #: breadcrumb_navxt_admin.php:518
124
  msgid "The anchor template for the home breadcrumb."
125
  msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
126
 
127
- #: breadcrumb_navxt_admin.php:519
 
 
 
 
 
 
 
 
128
  msgid "Blog Anchor"
129
  msgstr "Vínculo a Blog"
130
 
131
- #: breadcrumb_navxt_admin.php:519
132
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
133
  msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
134
 
135
- #: breadcrumb_navxt_admin.php:524
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  msgid "Current Item"
137
  msgstr "Item Actual"
138
 
139
- #: breadcrumb_navxt_admin.php:527
140
  msgid "Link Current Item"
141
  msgstr "Incluir Vínculo a Item Actual"
142
 
143
- #: breadcrumb_navxt_admin.php:527
144
  msgid "Yes"
145
  msgstr "Sí"
146
 
147
- #: breadcrumb_navxt_admin.php:528
148
  msgid "Current Item Prefix"
149
  msgstr "Prefijo de Item Actual"
150
 
151
- #: breadcrumb_navxt_admin.php:528
152
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
153
  msgstr "Esto se coloca siempre antes de la última opción de la ruta de navegación, antes que cualquier otro prefijo para esa opción."
154
 
155
- #: breadcrumb_navxt_admin.php:529
156
  msgid "Current Item Suffix"
157
  msgstr "Sufijo de Item Actual"
158
 
159
- #: breadcrumb_navxt_admin.php:529
160
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
161
  msgstr "Esto se coloca siempre después del último item de la ruta de navegación y después de cualquier otro sufijo para ese item."
162
 
163
- #: breadcrumb_navxt_admin.php:530
164
  msgid "Current Item Anchor"
165
  msgstr "Vínculo a Item Actual"
166
 
167
- #: breadcrumb_navxt_admin.php:530
168
  msgid "The anchor template for current item breadcrumbs."
169
  msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
170
 
171
- #: breadcrumb_navxt_admin.php:531
172
  msgid "Paged Breadcrumb"
173
  msgstr "Ruta de Navegación Paginada"
174
 
175
- #: breadcrumb_navxt_admin.php:531
176
  msgid "Include the paged breadcrumb in the breadcrumb trail."
177
  msgstr "Incluir la navegación paginada en la ruta de navegación"
178
 
179
- #: breadcrumb_navxt_admin.php:531
180
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
181
  msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
182
 
183
- #: breadcrumb_navxt_admin.php:532
184
  msgid "Paged Prefix"
185
  msgstr "Prefijo para Paginado"
186
 
187
- #: breadcrumb_navxt_admin.php:533
188
  msgid "Paged Suffix"
189
  msgstr "Sufijo para Paginado"
190
 
191
- #: breadcrumb_navxt_admin.php:538
192
  msgid "Posts &amp; Pages"
193
  msgstr "Entradas &amp; Páginas"
194
 
195
- #: breadcrumb_navxt_admin.php:541
196
  msgid "Post Prefix"
197
  msgstr "Prefijo de Entrada"
198
 
199
- #: breadcrumb_navxt_admin.php:542
200
  msgid "Post Suffix"
201
  msgstr "Sufijo de Entrada"
202
 
203
- #: breadcrumb_navxt_admin.php:543
204
  msgid "Post Anchor"
205
  msgstr "Vínculo a Entrada"
206
 
207
- #: breadcrumb_navxt_admin.php:543
208
  msgid "The anchor template for post breadcrumbs."
209
  msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
210
 
211
- #: breadcrumb_navxt_admin.php:544
212
  msgid "Post Taxonomy Display"
213
  msgstr "Mostrar Clasificación de Entradas"
214
 
215
- #: breadcrumb_navxt_admin.php:544
216
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
217
  msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
218
 
219
- #: breadcrumb_navxt_admin.php:548
220
  msgid "Post Taxonomy"
221
  msgstr "Clasificación de Entradas"
222
 
223
- #: breadcrumb_navxt_admin.php:552
224
- #: breadcrumb_navxt_admin.php:650
225
  msgid "Categories"
226
  msgstr "Categorías"
227
 
228
- #: breadcrumb_navxt_admin.php:553
 
229
  msgid "Dates"
230
  msgstr "Fechas"
231
 
232
- #: breadcrumb_navxt_admin.php:554
233
- #: breadcrumb_navxt_admin.php:662
234
  msgid "Tags"
235
  msgstr "Etiquetas"
236
 
237
- #: breadcrumb_navxt_admin.php:555
 
238
  msgid "Pages"
239
  msgstr "Páginas"
240
 
241
- #: breadcrumb_navxt_admin.php:566
242
- #: breadcrumb_navxt_admin.php:640
243
  msgid "The taxonomy which the breadcrumb trail will show."
244
  msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
245
 
246
- #: breadcrumb_navxt_admin.php:570
247
  msgid "Page Prefix"
248
  msgstr "Prefijo de Página"
249
 
250
- #: breadcrumb_navxt_admin.php:571
251
  msgid "Page Suffix"
252
  msgstr "Sufijo de Página"
253
 
254
- #: breadcrumb_navxt_admin.php:572
255
  msgid "Page Anchor"
256
  msgstr "Vínculo a Página"
257
 
258
- #: breadcrumb_navxt_admin.php:572
259
  msgid "The anchor template for page breadcrumbs."
260
  msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
261
 
262
- #: breadcrumb_navxt_admin.php:573
263
  msgid "Attachment Prefix"
264
  msgstr "Prefijo de Archivo Adjunto"
265
 
266
- #: breadcrumb_navxt_admin.php:574
267
  msgid "Attachment Suffix"
268
  msgstr "Sufijo de Archivo Adjunto"
269
 
270
  #: breadcrumb_navxt_admin.php:616
271
- #: breadcrumb_navxt_admin.php:699
272
- #, php-format
273
  msgid "%s Prefix"
274
  msgstr "Prefijo de %s"
275
 
276
  #: breadcrumb_navxt_admin.php:617
277
- #: breadcrumb_navxt_admin.php:700
278
- #, php-format
279
  msgid "%s Suffix"
280
  msgstr "Sufijo de %s"
281
 
282
  #: breadcrumb_navxt_admin.php:618
283
- #: breadcrumb_navxt_admin.php:701
284
- #, php-format
285
  msgid "%s Anchor"
286
  msgstr "Vínculo a %s"
287
 
288
  #: breadcrumb_navxt_admin.php:618
289
- #: breadcrumb_navxt_admin.php:701
290
- #, php-format
291
  msgid "The anchor template for %s breadcrumbs."
292
  msgstr "La plantilla de vínculo para los elementos de ruta de %s."
293
 
294
- #: breadcrumb_navxt_admin.php:622
295
- #, php-format
 
 
 
 
 
 
 
296
  msgid "%s Taxonomy Display"
297
  msgstr "%s Despliegue de Clasificación"
298
 
299
- #: breadcrumb_navxt_admin.php:622
300
- #, php-format
301
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
302
  msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
303
 
304
- #: breadcrumb_navxt_admin.php:626
305
- #, php-format
306
  msgid "%s Taxonomy"
307
  msgstr "%s Clasificación"
308
 
309
- #: breadcrumb_navxt_admin.php:653
310
  msgid "Category Prefix"
311
  msgstr "Prefijo de Categoría"
312
 
313
- #: breadcrumb_navxt_admin.php:653
314
  msgid "Applied before the anchor on all category breadcrumbs."
315
  msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
316
 
317
- #: breadcrumb_navxt_admin.php:654
318
  msgid "Category Suffix"
319
  msgstr "Sufijo de Categoría"
320
 
321
- #: breadcrumb_navxt_admin.php:654
322
  msgid "Applied after the anchor on all category breadcrumbs."
323
  msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
324
 
325
- #: breadcrumb_navxt_admin.php:655
326
  msgid "Category Anchor"
327
  msgstr "Vínculo a Categoría"
328
 
329
- #: breadcrumb_navxt_admin.php:655
330
  msgid "The anchor template for category breadcrumbs."
331
  msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
332
 
333
- #: breadcrumb_navxt_admin.php:656
334
  msgid "Archive by Category Prefix"
335
  msgstr "Prefijo de Archivo por Categoría"
336
 
337
- #: breadcrumb_navxt_admin.php:656
338
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
339
  msgstr "Aplicado antes del título del item actual en un archivo por categoría."
340
 
341
- #: breadcrumb_navxt_admin.php:657
342
  msgid "Archive by Category Suffix"
343
  msgstr "Sufijo de Archivo por Categoría"
344
 
345
- #: breadcrumb_navxt_admin.php:657
346
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
347
  msgstr "Aplicado después del título del item actual en un archivo por categoría."
348
 
349
- #: breadcrumb_navxt_admin.php:665
350
  msgid "Tag Prefix"
351
  msgstr "Prefijo de Etiqueta"
352
 
353
- #: breadcrumb_navxt_admin.php:665
354
  msgid "Applied before the anchor on all tag breadcrumbs."
355
  msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
356
 
357
- #: breadcrumb_navxt_admin.php:666
358
  msgid "Tag Suffix"
359
  msgstr "Sufijo de Etiqueta"
360
 
361
- #: breadcrumb_navxt_admin.php:666
362
  msgid "Applied after the anchor on all tag breadcrumbs."
363
  msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
364
 
365
- #: breadcrumb_navxt_admin.php:667
366
  msgid "Tag Anchor"
367
  msgstr "Vínculo a Etiqueta"
368
 
369
- #: breadcrumb_navxt_admin.php:667
370
  msgid "The anchor template for tag breadcrumbs."
371
  msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
372
 
373
- #: breadcrumb_navxt_admin.php:668
374
  msgid "Archive by Tag Prefix"
375
  msgstr "Prefijo de Archivo por Etiqueta"
376
 
377
- #: breadcrumb_navxt_admin.php:668
378
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
379
  msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
380
 
381
- #: breadcrumb_navxt_admin.php:669
382
  msgid "Archive by Tag Suffix"
383
  msgstr "Sufijo de Archivo por Etiqueta"
384
 
385
- #: breadcrumb_navxt_admin.php:669
386
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
387
  msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
388
 
389
- #: breadcrumb_navxt_admin.php:699
390
- #, php-format
391
  msgid "Applied before the anchor on all %s breadcrumbs."
392
  msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
393
 
394
- #: breadcrumb_navxt_admin.php:700
395
- #, php-format
396
  msgid "Applied after the anchor on all %s breadcrumbs."
397
  msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
398
 
399
- #: breadcrumb_navxt_admin.php:702
400
- #, php-format
401
  msgid "Archive by %s Prefix"
402
  msgstr "Archivo por Prefijo de %s"
403
 
404
- #: breadcrumb_navxt_admin.php:702
405
- #, php-format
406
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
407
  msgstr "Aplicado antes del título del item actual en un archivo por página %s."
408
 
409
- #: breadcrumb_navxt_admin.php:703
410
- #, php-format
411
  msgid "Archive by %s Suffix"
412
  msgstr "Archivo por Sufijo de %s"
413
 
414
- #: breadcrumb_navxt_admin.php:703
415
- #, php-format
416
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
417
  msgstr "Aplicado después del título del item actual en un archivo por página %s."
418
 
419
- #: breadcrumb_navxt_admin.php:712
420
  msgid "Date Archives"
421
  msgstr "Archivos por Fecha"
422
 
423
- #: breadcrumb_navxt_admin.php:715
424
  msgid "Date Anchor"
425
  msgstr "Vínculo a Fecha"
426
 
427
- #: breadcrumb_navxt_admin.php:715
428
  msgid "The anchor template for date breadcrumbs."
429
  msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
430
 
431
- #: breadcrumb_navxt_admin.php:716
432
  msgid "Archive by Date Prefix"
433
  msgstr "Prefijo de Archivo por Fecha"
434
 
435
- #: breadcrumb_navxt_admin.php:716
436
  msgid "Applied before the anchor on all date breadcrumbs."
437
  msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
438
 
439
- #: breadcrumb_navxt_admin.php:717
440
  msgid "Archive by Date Suffix"
441
  msgstr "Sufijo de Archivo por Fecha"
442
 
443
- #: breadcrumb_navxt_admin.php:717
444
  msgid "Applied after the anchor on all date breadcrumbs."
445
  msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
446
 
447
- #: breadcrumb_navxt_admin.php:722
448
  msgid "Miscellaneous"
449
  msgstr "Misceláneos"
450
 
451
- #: breadcrumb_navxt_admin.php:725
452
  msgid "Author Prefix"
453
  msgstr "Prefijo de Autor"
454
 
455
- #: breadcrumb_navxt_admin.php:726
456
  msgid "Author Suffix"
457
  msgstr "Sufijo de Autor"
458
 
459
- #: breadcrumb_navxt_admin.php:727
460
  msgid "Author Display Format"
461
  msgstr "Formato de Despliegue de Autor"
462
 
463
- #: breadcrumb_navxt_admin.php:727
464
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
465
  msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
466
 
467
- #: breadcrumb_navxt_admin.php:728
468
  msgid "Search Prefix"
469
  msgstr "Prefijo de Búsqueda"
470
 
471
- #: breadcrumb_navxt_admin.php:729
472
  msgid "Search Suffix"
473
  msgstr "Sufijo de Búsqueda"
474
 
475
- #: breadcrumb_navxt_admin.php:730
476
  msgid "Search Anchor"
477
  msgstr "Vínculo a Búsqueda"
478
 
479
- #: breadcrumb_navxt_admin.php:730
480
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
481
  msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
482
 
483
- #: breadcrumb_navxt_admin.php:731
484
  msgid "404 Title"
485
  msgstr "Título Error 404"
486
 
487
- #: breadcrumb_navxt_admin.php:732
488
  msgid "404 Prefix"
489
  msgstr "Prefijo de Error 404"
490
 
491
- #: breadcrumb_navxt_admin.php:733
492
  msgid "404 Suffix"
493
  msgstr "Sufijo de Error 404"
494
 
495
- #: breadcrumb_navxt_admin.php:738
496
  msgid "Save Changes"
497
  msgstr "Grabar Cambios"
498
 
499
- #: breadcrumb_navxt_class.php:154
500
  msgid "Blog"
501
  msgstr "Inicio"
502
 
503
- #: breadcrumb_navxt_class.php:173
504
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
505
  msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
506
 
507
- #: breadcrumb_navxt_class.php:214
508
  msgid "404"
509
  msgstr "Página no encontrada"
510
 
511
- #: breadcrumb_navxt_class.php:217
512
  msgid "Search results for &#39;"
513
  msgstr "Resultados de búsqueda para &#39;"
514
 
515
- #: breadcrumb_navxt_class.php:221
516
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
517
  msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
518
 
519
- #: breadcrumb_navxt_class.php:228
520
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
521
  msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
522
 
523
- #: breadcrumb_navxt_class.php:231
524
  msgid "Articles by: "
525
  msgstr "Artículos por: "
526
 
527
- #: breadcrumb_navxt_class.php:235
528
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
529
  msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
530
 
531
- #: breadcrumb_navxt_class.php:244
532
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
533
  msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
534
 
535
- #: breadcrumb_navxt_class.php:247
536
  msgid "Archive by category &#39;"
537
  msgstr "Archivo por Categoría &#39;"
538
 
539
- #: breadcrumb_navxt_class.php:251
540
  msgid "Archive by tag &#39;"
541
  msgstr "Archivo por Etiqueta &#39;"
542
 
543
- #: breadcrumb_navxt_class.php:254
544
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
545
  msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
546
 
547
- #: breadcrumb_navxt_class.php:425
548
- msgid "Untagged"
549
- msgstr "Sin etiqueta"
550
-
551
- #: breadcrumb_navxt_widget.php:24
552
- msgid "Adds a breadcrumb trail to your sidebar"
553
- msgstr "Agrega una ruta de navegación en su barra lateral"
554
-
555
- #: breadcrumb_navxt_widget.php:72
556
- msgid "Title:"
557
- msgstr "Título:"
558
-
559
- #: breadcrumb_navxt_widget.php:77
560
- msgid "Output trail as a list"
561
- msgstr "Mostrar ruta como una lista"
562
-
563
- #: breadcrumb_navxt_widget.php:79
564
- msgid "Link the breadcrumbs"
565
- msgstr "Enlace a la Ruta"
566
-
567
- #: breadcrumb_navxt_widget.php:81
568
- msgid "Reverse the order of the trail"
569
- msgstr "Invertir el orden de la ruta"
570
-
571
- #: breadcrumb_navxt_widget.php:83
572
- msgid "Hide the trail on the front page"
573
- msgstr "Ocultar la ruta de la página principal"
574
-
575
- #: mtekk_admin_class.php:56
576
- msgid "Undo"
577
- msgstr "Deshacer"
578
-
579
- #: mtekk_admin_class.php:150
580
- msgid "Settings"
581
- msgstr "Configuraciones"
582
-
583
- #: mtekk_admin_class.php:284
584
- msgid "Settings successfully imported from the uploaded file."
585
- msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
586
-
587
- #: mtekk_admin_class.php:284
588
- msgid "Undo the options import."
589
- msgstr "Deshacer importación de opciones."
590
-
591
- #: mtekk_admin_class.php:289
592
- msgid "Importing settings from file failed."
593
- msgstr "Falló la importación de los ajustes desde el archivo."
594
-
595
- #: mtekk_admin_class.php:310
596
- msgid "Settings successfully reset to the default values."
597
- msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
598
-
599
- #: mtekk_admin_class.php:310
600
- msgid "Undo the options reset."
601
- msgstr "Deshacer reinicio de opciones."
602
-
603
- #: mtekk_admin_class.php:324
604
- msgid "Settings successfully undid the last operation."
605
- msgstr "Se deshizo exitosamente la operación anterior."
606
-
607
- #: mtekk_admin_class.php:324
608
- msgid "Undo the last undo operation."
609
- msgstr "Deshacer la última operación de \"deshacer\""
610
-
611
- #: mtekk_admin_class.php:354
612
- #, php-format
613
- msgid "Get help with \"%s\""
614
- msgstr "Obtener ayuda con \"%s\""
615
-
616
- #: mtekk_admin_class.php:435
617
- msgid "Import/Export/Reset Settings"
618
- msgstr "Importar/Exportar/Reiniciar Ajustes"
619
-
620
- #: mtekk_admin_class.php:436
621
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
622
- msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
623
-
624
- #: mtekk_admin_class.php:439
625
- msgid "Settings File"
626
- msgstr "Archivo de Ajustes"
627
-
628
- #: mtekk_admin_class.php:442
629
- msgid "Select a XML settings file to upload and import settings from."
630
- msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
631
-
632
  #~ msgid ""
633
  #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
634
  #~ "the default values. Are you sure you want to continue?"
@@ -653,6 +774,4 @@ msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este pl
653
  #~ msgstr "La versión de su interfaz de Administración Breadcrumb NavXT es "
654
  #~ msgid "Your Breadcrumb NavXT version is "
655
  #~ msgstr "La versión de Breadcrubm NavXT que posee es "
656
- #~ msgid "Go to the Breadcrumb NavXT online documentation."
657
- #~ msgstr "Ir a la documentación en línea de Breadcrumb NavXT"
658
 
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
6
+ "PO-Revision-Date: 2011-02-19 16:54-0600\n"
7
  "Last-Translator: Karin Sequen <karin.sequen@bumerang180.com>\n"
8
  "Language-Team: Karin Sequen || Bumerang180 <info@bumerang180.com>\n"
9
  "MIME-Version: 1.0\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: C:/Documents and Settings/mtekk/My Documents/Aptana Studio/Breadcrumb NavXT/trunk\n"
19
 
20
+ #: breadcrumb_navxt_widget.php:24
21
+ msgid "Adds a breadcrumb trail to your sidebar"
22
+ msgstr "Agrega una ruta de navegación en su barra lateral"
23
+
24
+ #: breadcrumb_navxt_widget.php:85
25
+ msgid "Title:"
26
+ msgstr "Título:"
27
+
28
+ #: breadcrumb_navxt_widget.php:89
29
+ msgid "Output trail as:"
30
+ msgstr "Mostrar ruta como:"
31
+
32
+ #: breadcrumb_navxt_widget.php:91
33
+ msgid "List"
34
+ msgstr "Lista"
35
+
36
+ #: breadcrumb_navxt_widget.php:92
37
+ msgid "RDFa"
38
+ msgstr "RDFa"
39
+
40
+ #: breadcrumb_navxt_widget.php:93
41
+ msgid "Microformat"
42
+ msgstr "Microformato"
43
+
44
+ #: breadcrumb_navxt_widget.php:94
45
+ msgid "Plain"
46
+ msgstr "Texto plano"
47
+
48
+ #: breadcrumb_navxt_widget.php:99
49
+ msgid "Link the breadcrumbs"
50
+ msgstr "Enlace a la Ruta"
51
+
52
+ #: breadcrumb_navxt_widget.php:101
53
+ msgid "Reverse the order of the trail"
54
+ msgstr "Invertir el orden de la ruta"
55
+
56
+ #: breadcrumb_navxt_widget.php:103
57
+ msgid "Hide the trail on the front page"
58
+ msgstr "Ocultar la ruta de la página principal"
59
+
60
+ #: mtekk_admin_class.php:59
61
+ msgid "Undo"
62
+ msgstr "Deshacer"
63
+
64
+ #: mtekk_admin_class.php:67
65
+ #: mtekk_admin_class.php:191
66
+ msgid "Migrate now."
67
+ msgstr "Migrar ahora."
68
+
69
+ #: mtekk_admin_class.php:164
70
+ msgid "Settings"
71
+ msgstr "Configuraciones"
72
+
73
+ #: mtekk_admin_class.php:191
74
+ msgid "Your settings are out of date."
75
+ msgstr "Sus ajustes están desactualizados."
76
+
77
+ #: mtekk_admin_class.php:191
78
+ msgid "Migrate the settings now."
79
+ msgstr "Migrar los ajustes ahora."
80
+
81
+ #: mtekk_admin_class.php:198
82
+ msgid "Your plugin install is incomplete."
83
+ msgstr "La instalación del plugin no se ha completado."
84
+
85
+ #: mtekk_admin_class.php:198
86
+ msgid "Load default settings now."
87
+ msgstr "Cargar los ajustes predeterminados ahora."
88
+
89
+ #: mtekk_admin_class.php:198
90
+ msgid "Complete now."
91
+ msgstr "Completar ahora."
92
+
93
+ #: mtekk_admin_class.php:311
94
+ msgid "Settings successfully imported from the uploaded file."
95
+ msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
96
+
97
+ #: mtekk_admin_class.php:311
98
+ msgid "Undo the options import."
99
+ msgstr "Deshacer importación de opciones."
100
+
101
+ #: mtekk_admin_class.php:316
102
+ msgid "Importing settings from file failed."
103
+ msgstr "Falló la importación de los ajustes desde el archivo."
104
+
105
+ #: mtekk_admin_class.php:335
106
+ msgid "Settings successfully reset to the default values."
107
+ msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
108
+
109
+ #: mtekk_admin_class.php:335
110
+ msgid "Undo the options reset."
111
+ msgstr "Deshacer reinicio de opciones."
112
+
113
+ #: mtekk_admin_class.php:352
114
+ msgid "Settings successfully undid the last operation."
115
+ msgstr "Se deshizo exitosamente la operación anterior."
116
+
117
+ #: mtekk_admin_class.php:352
118
+ msgid "Undo the last undo operation."
119
+ msgstr "Deshacer la última operación de \"deshacer\""
120
+
121
+ #: mtekk_admin_class.php:387
122
+ msgid "Settings successfully migrated."
123
+ msgstr "Ajustes migrados exitosamente."
124
+
125
+ #: mtekk_admin_class.php:394
126
+ msgid "Default settings successfully installed."
127
+ msgstr "Los ajustes predeterminados se instalaron exitosamente."
128
+
129
+ #: mtekk_admin_class.php:425
130
+ msgid "Get help with \"%s\""
131
+ msgstr "Obtener ayuda con \"%s\""
132
+
133
+ #: mtekk_admin_class.php:495
134
+ msgid "Import/Export/Reset Settings"
135
+ msgstr "Importar/Exportar/Reiniciar Ajustes"
136
+
137
+ #: mtekk_admin_class.php:496
138
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
139
+ msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
140
+
141
+ #: mtekk_admin_class.php:499
142
+ msgid "Settings File"
143
+ msgstr "Archivo de Ajustes"
144
+
145
+ #: mtekk_admin_class.php:502
146
+ msgid "Select a XML settings file to upload and import settings from."
147
+ msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
148
+
149
+ #: mtekk_admin_class.php:504
150
+ #: breadcrumb_navxt_admin.php:423
151
+ msgid "Import"
152
+ msgstr "Importar"
153
+
154
+ #: mtekk_admin_class.php:505
155
+ #: breadcrumb_navxt_admin.php:423
156
+ msgid "Export"
157
+ msgstr "Exportar"
158
+
159
+ #: mtekk_admin_class.php:506
160
+ #: breadcrumb_navxt_admin.php:423
161
+ msgid "Reset"
162
+ msgstr "Reiniciar"
163
+
164
+ #: breadcrumb_navxt_admin.php:35
165
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
166
+ msgstr "Su versión de PHP es obsoleta, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
167
 
168
  #: breadcrumb_navxt_admin.php:112
169
  msgid "Insufficient privileges to proceed."
170
  msgstr "No tiene privilegios para proceder."
171
 
172
+ #: breadcrumb_navxt_admin.php:217
173
+ #: breadcrumb_navxt_class.php:207
174
+ msgid "Home"
175
+ msgstr "Inicio"
176
+
177
+ #: breadcrumb_navxt_admin.php:219
178
+ #: breadcrumb_navxt_admin.php:580
179
+ #: breadcrumb_navxt_admin.php:773
180
+ #: breadcrumb_navxt_class.php:130
181
+ #: breadcrumb_navxt_class.php:209
182
+ #: breadcrumb_navxt_class.php:219
183
+ #: breadcrumb_navxt_class.php:223
184
+ #: breadcrumb_navxt_class.php:247
185
+ #: breadcrumb_navxt_class.php:263
186
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
187
  msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
188
 
189
+ #: breadcrumb_navxt_admin.php:304
190
  msgid "Settings successfully saved."
191
  msgstr "Ajustes guardados exitosamente."
192
 
193
+ #: breadcrumb_navxt_admin.php:304
194
+ #: breadcrumb_navxt_admin.php:309
195
  msgid "Undo the options save."
196
  msgstr "Deshacer modificación de opciones."
197
 
198
+ #: breadcrumb_navxt_admin.php:309
199
+ msgid "Some settings were not saved."
200
+ msgstr "Algunos ajustes no fueron grabados."
201
+
202
+ #: breadcrumb_navxt_admin.php:310
203
+ msgid "The following settings were not saved:"
204
+ msgstr "Los siguientes ajustes no fueron grabados:"
205
+
206
+ #: breadcrumb_navxt_admin.php:315
207
+ msgid "Please include this message in your %sbug report%s."
208
+ msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
209
+
210
+ #: breadcrumb_navxt_admin.php:315
211
+ #: breadcrumb_navxt_admin.php:339
212
+ msgid "Go to the Breadcrumb NavXT support post for your version."
213
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
214
+
215
+ #: breadcrumb_navxt_admin.php:337
216
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
217
  msgstr "Encontrará tips para las configuraciones debajo de cada opción. Por favor lea la %sdocumentación%s para más información (en inglés)."
218
 
219
+ #: breadcrumb_navxt_admin.php:338
220
  msgid "Go to the Breadcrumb NavXT online documentation"
221
  msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
222
 
223
+ #: breadcrumb_navxt_admin.php:339
224
+ msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
225
+ msgstr "Si piensa que ha encontrado un bug, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el bug cuando %sreporte el problema%s."
 
226
 
227
+ #: breadcrumb_navxt_admin.php:340
228
+ msgid "Quick Start Information"
229
+ msgstr "Información para Inicio Rápido"
 
230
 
231
+ #: breadcrumb_navxt_admin.php:340
232
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
233
+ msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
 
234
 
235
+ #: breadcrumb_navxt_admin.php:341
236
+ msgid "Breadcrumb trail with separators"
237
+ msgstr "Ruta de Navegación con Separadores"
238
+
239
+ #: breadcrumb_navxt_admin.php:342
240
+ msgid "Breadcrumb trail in list form"
241
+ msgstr "Ruta de Navegación como Listado"
242
+
243
+ #: breadcrumb_navxt_admin.php:445
244
  msgid "Breadcrumb NavXT Settings"
245
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
246
 
247
+ #: breadcrumb_navxt_admin.php:453
248
  msgid "General"
249
  msgstr "General"
250
 
251
+ #: breadcrumb_navxt_admin.php:456
252
  msgid "Breadcrumb Separator"
253
  msgstr "Separador de Navegación"
254
 
255
+ #: breadcrumb_navxt_admin.php:456
256
  msgid "Placed in between each breadcrumb."
257
  msgstr "Colocado en medio de cada opción de navegación."
258
 
259
+ #: breadcrumb_navxt_admin.php:457
260
  msgid "Breadcrumb Max Title Length"
261
  msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
262
 
263
+ #: breadcrumb_navxt_admin.php:461
264
  msgid "Home Breadcrumb"
265
  msgstr "Incluir Inicio"
266
 
267
+ #: breadcrumb_navxt_admin.php:466
268
  msgid "Place the home breadcrumb in the trail."
269
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
270
 
271
+ #: breadcrumb_navxt_admin.php:471
272
  msgid "Home Title: "
273
  msgstr "Título de Página de Inicio:"
274
 
275
+ #: breadcrumb_navxt_admin.php:479
 
 
 
 
 
 
 
 
276
  msgid "Home Prefix"
277
  msgstr "Prefijo de Inicio"
278
 
279
+ #: breadcrumb_navxt_admin.php:480
280
  msgid "Home Suffix"
281
  msgstr "Sufijo de Inicio"
282
 
283
+ #: breadcrumb_navxt_admin.php:481
284
  msgid "Home Anchor"
285
  msgstr "Vínculo a Inicio"
286
 
287
+ #: breadcrumb_navxt_admin.php:481
288
  msgid "The anchor template for the home breadcrumb."
289
  msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
290
 
291
+ #: breadcrumb_navxt_admin.php:482
292
+ msgid "Blog Breadcrumb"
293
+ msgstr "Incluir Inicio (del Blog)"
294
+
295
+ #: breadcrumb_navxt_admin.php:482
296
+ msgid "Place the blog breadcrumb in the trail."
297
+ msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
298
+
299
+ #: breadcrumb_navxt_admin.php:483
300
  msgid "Blog Anchor"
301
  msgstr "Vínculo a Blog"
302
 
303
+ #: breadcrumb_navxt_admin.php:483
304
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
305
  msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
306
 
307
+ #: breadcrumb_navxt_admin.php:487
308
+ msgid "Main Site Breadcrumb"
309
+ msgstr "Ruta del Sitio Principal"
310
+
311
+ #: breadcrumb_navxt_admin.php:492
312
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
313
+ msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
314
+
315
+ #: breadcrumb_navxt_admin.php:497
316
+ msgid "Main Site Home Title: "
317
+ msgstr "Título de Página de Inicio del Sitio Principal: "
318
+
319
+ #: breadcrumb_navxt_admin.php:506
320
+ msgid "Main Site Home Prefix"
321
+ msgstr "Prefijo de Inicio del Sitio Principal"
322
+
323
+ #: breadcrumb_navxt_admin.php:506
324
+ #: breadcrumb_navxt_admin.php:507
325
+ msgid "Used for the main site home breadcrumb in an multisite setup"
326
+ msgstr "Utilizado para el sitio principal de breadcrumb en una configuración para múltiples blogs"
327
+
328
+ #: breadcrumb_navxt_admin.php:507
329
+ msgid "Main Site Home Suffix"
330
+ msgstr "Sufijo de Inicio del Sitio Principal"
331
+
332
+ #: breadcrumb_navxt_admin.php:508
333
+ msgid "Main Site Home Anchor"
334
+ msgstr "Vínculo a Inicio del Sitio Principal"
335
+
336
+ #: breadcrumb_navxt_admin.php:508
337
+ msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
338
+ msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
339
+
340
+ #: breadcrumb_navxt_admin.php:513
341
  msgid "Current Item"
342
  msgstr "Item Actual"
343
 
344
+ #: breadcrumb_navxt_admin.php:516
345
  msgid "Link Current Item"
346
  msgstr "Incluir Vínculo a Item Actual"
347
 
348
+ #: breadcrumb_navxt_admin.php:516
349
  msgid "Yes"
350
  msgstr "Sí"
351
 
352
+ #: breadcrumb_navxt_admin.php:517
353
  msgid "Current Item Prefix"
354
  msgstr "Prefijo de Item Actual"
355
 
356
+ #: breadcrumb_navxt_admin.php:517
357
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
358
  msgstr "Esto se coloca siempre antes de la última opción de la ruta de navegación, antes que cualquier otro prefijo para esa opción."
359
 
360
+ #: breadcrumb_navxt_admin.php:518
361
  msgid "Current Item Suffix"
362
  msgstr "Sufijo de Item Actual"
363
 
364
+ #: breadcrumb_navxt_admin.php:518
365
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
366
  msgstr "Esto se coloca siempre después del último item de la ruta de navegación y después de cualquier otro sufijo para ese item."
367
 
368
+ #: breadcrumb_navxt_admin.php:519
369
  msgid "Current Item Anchor"
370
  msgstr "Vínculo a Item Actual"
371
 
372
+ #: breadcrumb_navxt_admin.php:519
373
  msgid "The anchor template for current item breadcrumbs."
374
  msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
375
 
376
+ #: breadcrumb_navxt_admin.php:520
377
  msgid "Paged Breadcrumb"
378
  msgstr "Ruta de Navegación Paginada"
379
 
380
+ #: breadcrumb_navxt_admin.php:520
381
  msgid "Include the paged breadcrumb in the breadcrumb trail."
382
  msgstr "Incluir la navegación paginada en la ruta de navegación"
383
 
384
+ #: breadcrumb_navxt_admin.php:520
385
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
386
  msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
387
 
388
+ #: breadcrumb_navxt_admin.php:521
389
  msgid "Paged Prefix"
390
  msgstr "Prefijo para Paginado"
391
 
392
+ #: breadcrumb_navxt_admin.php:522
393
  msgid "Paged Suffix"
394
  msgstr "Sufijo para Paginado"
395
 
396
+ #: breadcrumb_navxt_admin.php:527
397
  msgid "Posts &amp; Pages"
398
  msgstr "Entradas &amp; Páginas"
399
 
400
+ #: breadcrumb_navxt_admin.php:530
401
  msgid "Post Prefix"
402
  msgstr "Prefijo de Entrada"
403
 
404
+ #: breadcrumb_navxt_admin.php:531
405
  msgid "Post Suffix"
406
  msgstr "Sufijo de Entrada"
407
 
408
+ #: breadcrumb_navxt_admin.php:532
409
  msgid "Post Anchor"
410
  msgstr "Vínculo a Entrada"
411
 
412
+ #: breadcrumb_navxt_admin.php:532
413
  msgid "The anchor template for post breadcrumbs."
414
  msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
415
 
416
+ #: breadcrumb_navxt_admin.php:533
417
  msgid "Post Taxonomy Display"
418
  msgstr "Mostrar Clasificación de Entradas"
419
 
420
+ #: breadcrumb_navxt_admin.php:533
421
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
422
  msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
423
 
424
+ #: breadcrumb_navxt_admin.php:537
425
  msgid "Post Taxonomy"
426
  msgstr "Clasificación de Entradas"
427
 
428
+ #: breadcrumb_navxt_admin.php:541
429
+ #: breadcrumb_navxt_admin.php:663
430
  msgid "Categories"
431
  msgstr "Categorías"
432
 
433
+ #: breadcrumb_navxt_admin.php:542
434
+ #: breadcrumb_navxt_admin.php:641
435
  msgid "Dates"
436
  msgstr "Fechas"
437
 
438
+ #: breadcrumb_navxt_admin.php:543
439
+ #: breadcrumb_navxt_admin.php:675
440
  msgid "Tags"
441
  msgstr "Etiquetas"
442
 
443
+ #: breadcrumb_navxt_admin.php:544
444
+ #: breadcrumb_navxt_admin.php:642
445
  msgid "Pages"
446
  msgstr "Páginas"
447
 
448
+ #: breadcrumb_navxt_admin.php:555
449
+ #: breadcrumb_navxt_admin.php:653
450
  msgid "The taxonomy which the breadcrumb trail will show."
451
  msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
452
 
453
+ #: breadcrumb_navxt_admin.php:559
454
  msgid "Page Prefix"
455
  msgstr "Prefijo de Página"
456
 
457
+ #: breadcrumb_navxt_admin.php:560
458
  msgid "Page Suffix"
459
  msgstr "Sufijo de Página"
460
 
461
+ #: breadcrumb_navxt_admin.php:561
462
  msgid "Page Anchor"
463
  msgstr "Vínculo a Página"
464
 
465
+ #: breadcrumb_navxt_admin.php:561
466
  msgid "The anchor template for page breadcrumbs."
467
  msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
468
 
469
+ #: breadcrumb_navxt_admin.php:562
470
  msgid "Attachment Prefix"
471
  msgstr "Prefijo de Archivo Adjunto"
472
 
473
+ #: breadcrumb_navxt_admin.php:563
474
  msgid "Attachment Suffix"
475
  msgstr "Sufijo de Archivo Adjunto"
476
 
477
  #: breadcrumb_navxt_admin.php:616
478
+ #: breadcrumb_navxt_admin.php:708
 
479
  msgid "%s Prefix"
480
  msgstr "Prefijo de %s"
481
 
482
  #: breadcrumb_navxt_admin.php:617
483
+ #: breadcrumb_navxt_admin.php:709
 
484
  msgid "%s Suffix"
485
  msgstr "Sufijo de %s"
486
 
487
  #: breadcrumb_navxt_admin.php:618
488
+ #: breadcrumb_navxt_admin.php:710
 
489
  msgid "%s Anchor"
490
  msgstr "Vínculo a %s"
491
 
492
  #: breadcrumb_navxt_admin.php:618
493
+ #: breadcrumb_navxt_admin.php:710
 
494
  msgid "The anchor template for %s breadcrumbs."
495
  msgstr "La plantilla de vínculo para los elementos de ruta de %s."
496
 
497
+ #: breadcrumb_navxt_admin.php:623
498
+ msgid "%s Root Page"
499
+ msgstr "%s Página Raíz"
500
+
501
+ #: breadcrumb_navxt_admin.php:626
502
+ msgid "&mdash; Select &mdash;"
503
+ msgstr "&mdash; Seleccione &mdash;"
504
+
505
+ #: breadcrumb_navxt_admin.php:633
506
  msgid "%s Taxonomy Display"
507
  msgstr "%s Despliegue de Clasificación"
508
 
509
+ #: breadcrumb_navxt_admin.php:633
 
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
512
 
513
+ #: breadcrumb_navxt_admin.php:637
 
514
  msgid "%s Taxonomy"
515
  msgstr "%s Clasificación"
516
 
517
+ #: breadcrumb_navxt_admin.php:666
518
  msgid "Category Prefix"
519
  msgstr "Prefijo de Categoría"
520
 
521
+ #: breadcrumb_navxt_admin.php:666
522
  msgid "Applied before the anchor on all category breadcrumbs."
523
  msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
524
 
525
+ #: breadcrumb_navxt_admin.php:667
526
  msgid "Category Suffix"
527
  msgstr "Sufijo de Categoría"
528
 
529
+ #: breadcrumb_navxt_admin.php:667
530
  msgid "Applied after the anchor on all category breadcrumbs."
531
  msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
532
 
533
+ #: breadcrumb_navxt_admin.php:668
534
  msgid "Category Anchor"
535
  msgstr "Vínculo a Categoría"
536
 
537
+ #: breadcrumb_navxt_admin.php:668
538
  msgid "The anchor template for category breadcrumbs."
539
  msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
540
 
541
+ #: breadcrumb_navxt_admin.php:669
542
  msgid "Archive by Category Prefix"
543
  msgstr "Prefijo de Archivo por Categoría"
544
 
545
+ #: breadcrumb_navxt_admin.php:669
546
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
547
  msgstr "Aplicado antes del título del item actual en un archivo por categoría."
548
 
549
+ #: breadcrumb_navxt_admin.php:670
550
  msgid "Archive by Category Suffix"
551
  msgstr "Sufijo de Archivo por Categoría"
552
 
553
+ #: breadcrumb_navxt_admin.php:670
554
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
555
  msgstr "Aplicado después del título del item actual en un archivo por categoría."
556
 
557
+ #: breadcrumb_navxt_admin.php:678
558
  msgid "Tag Prefix"
559
  msgstr "Prefijo de Etiqueta"
560
 
561
+ #: breadcrumb_navxt_admin.php:678
562
  msgid "Applied before the anchor on all tag breadcrumbs."
563
  msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
564
 
565
+ #: breadcrumb_navxt_admin.php:679
566
  msgid "Tag Suffix"
567
  msgstr "Sufijo de Etiqueta"
568
 
569
+ #: breadcrumb_navxt_admin.php:679
570
  msgid "Applied after the anchor on all tag breadcrumbs."
571
  msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
572
 
573
+ #: breadcrumb_navxt_admin.php:680
574
  msgid "Tag Anchor"
575
  msgstr "Vínculo a Etiqueta"
576
 
577
+ #: breadcrumb_navxt_admin.php:680
578
  msgid "The anchor template for tag breadcrumbs."
579
  msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
580
 
581
+ #: breadcrumb_navxt_admin.php:681
582
  msgid "Archive by Tag Prefix"
583
  msgstr "Prefijo de Archivo por Etiqueta"
584
 
585
+ #: breadcrumb_navxt_admin.php:681
586
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
587
  msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
588
 
589
+ #: breadcrumb_navxt_admin.php:682
590
  msgid "Archive by Tag Suffix"
591
  msgstr "Sufijo de Archivo por Etiqueta"
592
 
593
+ #: breadcrumb_navxt_admin.php:682
594
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
595
  msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
596
 
597
+ #: breadcrumb_navxt_admin.php:708
 
598
  msgid "Applied before the anchor on all %s breadcrumbs."
599
  msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
600
 
601
+ #: breadcrumb_navxt_admin.php:709
 
602
  msgid "Applied after the anchor on all %s breadcrumbs."
603
  msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
604
 
605
+ #: breadcrumb_navxt_admin.php:711
 
606
  msgid "Archive by %s Prefix"
607
  msgstr "Archivo por Prefijo de %s"
608
 
609
+ #: breadcrumb_navxt_admin.php:711
 
610
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
611
  msgstr "Aplicado antes del título del item actual en un archivo por página %s."
612
 
613
+ #: breadcrumb_navxt_admin.php:712
 
614
  msgid "Archive by %s Suffix"
615
  msgstr "Archivo por Sufijo de %s"
616
 
617
+ #: breadcrumb_navxt_admin.php:712
 
618
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
619
  msgstr "Aplicado después del título del item actual en un archivo por página %s."
620
 
621
+ #: breadcrumb_navxt_admin.php:721
622
  msgid "Date Archives"
623
  msgstr "Archivos por Fecha"
624
 
625
+ #: breadcrumb_navxt_admin.php:724
626
  msgid "Date Anchor"
627
  msgstr "Vínculo a Fecha"
628
 
629
+ #: breadcrumb_navxt_admin.php:724
630
  msgid "The anchor template for date breadcrumbs."
631
  msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
632
 
633
+ #: breadcrumb_navxt_admin.php:725
634
  msgid "Archive by Date Prefix"
635
  msgstr "Prefijo de Archivo por Fecha"
636
 
637
+ #: breadcrumb_navxt_admin.php:725
638
  msgid "Applied before the anchor on all date breadcrumbs."
639
  msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
640
 
641
+ #: breadcrumb_navxt_admin.php:726
642
  msgid "Archive by Date Suffix"
643
  msgstr "Sufijo de Archivo por Fecha"
644
 
645
+ #: breadcrumb_navxt_admin.php:726
646
  msgid "Applied after the anchor on all date breadcrumbs."
647
  msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
648
 
649
+ #: breadcrumb_navxt_admin.php:731
650
  msgid "Miscellaneous"
651
  msgstr "Misceláneos"
652
 
653
+ #: breadcrumb_navxt_admin.php:734
654
  msgid "Author Prefix"
655
  msgstr "Prefijo de Autor"
656
 
657
+ #: breadcrumb_navxt_admin.php:735
658
  msgid "Author Suffix"
659
  msgstr "Sufijo de Autor"
660
 
661
+ #: breadcrumb_navxt_admin.php:736
662
  msgid "Author Display Format"
663
  msgstr "Formato de Despliegue de Autor"
664
 
665
+ #: breadcrumb_navxt_admin.php:736
666
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
667
  msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
668
 
669
+ #: breadcrumb_navxt_admin.php:737
670
  msgid "Search Prefix"
671
  msgstr "Prefijo de Búsqueda"
672
 
673
+ #: breadcrumb_navxt_admin.php:738
674
  msgid "Search Suffix"
675
  msgstr "Sufijo de Búsqueda"
676
 
677
+ #: breadcrumb_navxt_admin.php:739
678
  msgid "Search Anchor"
679
  msgstr "Vínculo a Búsqueda"
680
 
681
+ #: breadcrumb_navxt_admin.php:739
682
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
  msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
684
 
685
+ #: breadcrumb_navxt_admin.php:740
686
  msgid "404 Title"
687
  msgstr "Título Error 404"
688
 
689
+ #: breadcrumb_navxt_admin.php:741
690
  msgid "404 Prefix"
691
  msgstr "Prefijo de Error 404"
692
 
693
+ #: breadcrumb_navxt_admin.php:742
694
  msgid "404 Suffix"
695
  msgstr "Sufijo de Error 404"
696
 
697
+ #: breadcrumb_navxt_admin.php:747
698
  msgid "Save Changes"
699
  msgstr "Grabar Cambios"
700
 
701
+ #: breadcrumb_navxt_class.php:217
702
  msgid "Blog"
703
  msgstr "Inicio"
704
 
705
+ #: breadcrumb_navxt_class.php:236
706
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
707
  msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
708
 
709
+ #: breadcrumb_navxt_class.php:281
710
  msgid "404"
711
  msgstr "Página no encontrada"
712
 
713
+ #: breadcrumb_navxt_class.php:284
714
  msgid "Search results for &#39;"
715
  msgstr "Resultados de búsqueda para &#39;"
716
 
717
+ #: breadcrumb_navxt_class.php:288
718
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
719
  msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
720
 
721
+ #: breadcrumb_navxt_class.php:295
722
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
723
  msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
724
 
725
+ #: breadcrumb_navxt_class.php:298
726
  msgid "Articles by: "
727
  msgstr "Artículos por: "
728
 
729
+ #: breadcrumb_navxt_class.php:302
730
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
731
  msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
732
 
733
+ #: breadcrumb_navxt_class.php:311
734
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
735
  msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
736
 
737
+ #: breadcrumb_navxt_class.php:314
738
  msgid "Archive by category &#39;"
739
  msgstr "Archivo por Categoría &#39;"
740
 
741
+ #: breadcrumb_navxt_class.php:318
742
  msgid "Archive by tag &#39;"
743
  msgstr "Archivo por Etiqueta &#39;"
744
 
745
+ #: breadcrumb_navxt_class.php:321
746
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
747
  msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
748
 
749
+ #~ msgid "Un"
750
+ #~ msgstr "Des"
751
+ #~ msgid "Untagged"
752
+ #~ msgstr "Sin etiqueta"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  #~ msgid ""
754
  #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
755
  #~ "the default values. Are you sure you want to continue?"
774
  #~ msgstr "La versión de su interfaz de Administración Breadcrumb NavXT es "
775
  #~ msgid "Your Breadcrumb NavXT version is "
776
  #~ msgstr "La versión de Breadcrubm NavXT que posee es "
 
 
777
 
languages/breadcrumb_navxt-fr_FR.mo CHANGED
Binary file
languages/breadcrumb_navxt-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: breadcrumb-navxt\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-08-15 08:12+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Laurent Grabielle <infos@3w3t.com>\n"
8
  "Language-Team: 3w3t\n"
@@ -16,614 +16,737 @@ msgstr ""
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: D:\\3w3t.com\\wordpress\\wp-content\\plugins\\breadcrumb-navxt\n"
18
 
19
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:30
20
- #, php-format
21
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
22
- msgstr "Votre version de PHP est trop ancienne, veuillez la mettre à jour. Votre version actuelle est %s, ce plugin necessite %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Insufficient privileges to proceed."
26
  msgstr "Vos droits sont insuffisants pour cette fonction."
27
 
28
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:189
29
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:280
30
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:591
31
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:156
32
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:160
33
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:184
34
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:198
 
 
 
 
 
 
 
35
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
36
  msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">"
37
 
38
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:349
39
  msgid "Settings successfully saved."
40
  msgstr "Les réglages ont été correctement sauvegardés."
41
 
42
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:349
 
43
  msgid "Undo the options save."
44
  msgstr "Annule la sauvegarde des options."
45
 
46
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:372
47
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
49
  msgstr "Des explications pour le paramétrage sont affichées en dessous de chaque option. Veuillez vous référer à la %sdocumentation%s pour plus d'informations."
50
 
51
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:373
52
  msgid "Go to the Breadcrumb NavXT online documentation"
53
  msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
54
 
55
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:459
56
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:444
57
- msgid "Import"
58
- msgstr "Importation"
59
 
60
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:459
61
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:445
62
- msgid "Export"
63
- msgstr "Exportation"
64
 
65
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:459
66
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:446
67
- msgid "Reset"
68
- msgstr "Réinitialisation"
69
 
70
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:481
 
 
 
 
 
 
 
 
71
  msgid "Breadcrumb NavXT Settings"
72
  msgstr "Paramétrages de Breadcrumb NavXT"
73
 
74
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:489
75
  msgid "General"
76
  msgstr "Général"
77
 
78
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:492
79
  msgid "Breadcrumb Separator"
80
  msgstr "Séparateur du fil d'ariane"
81
 
82
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:492
83
  msgid "Placed in between each breadcrumb."
84
  msgstr "Placé entre chaque élément du fil d'ariane."
85
 
86
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:493
87
  msgid "Breadcrumb Max Title Length"
88
  msgstr "Longueur maximum du titre "
89
 
90
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:497
91
  msgid "Home Breadcrumb"
92
  msgstr "Origine du fil d'ariane"
93
 
94
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:502
95
  msgid "Place the home breadcrumb in the trail."
96
  msgstr "Inclure la page d'accueil dans le fil d'ariane."
97
 
98
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:507
99
  msgid "Home Title: "
100
  msgstr "Titre de la page d'accueil:"
101
 
102
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:515
103
- msgid "Blog Breadcrumb"
104
- msgstr "Fil d'ariane du site"
105
-
106
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:515
107
- msgid "Place the blog breadcrumb in the trail."
108
- msgstr "Mettre le fil d'ariane du site en route. "
109
-
110
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:516
111
  msgid "Home Prefix"
112
  msgstr "Préfixe de la page d'accueil"
113
 
114
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:517
115
  msgid "Home Suffix"
116
  msgstr "Suffixe de la page d'accueil"
117
 
118
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:518
119
  msgid "Home Anchor"
120
  msgstr "Ancre pour la page d'accueil"
121
 
122
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:518
123
  msgid "The anchor template for the home breadcrumb."
124
  msgstr "Modèle de l'ancre pour l'élement origine du fil d'ariane."
125
 
126
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:519
 
 
 
 
 
 
 
 
127
  msgid "Blog Anchor"
128
  msgstr "Ancre pour le blog"
129
 
130
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:519
131
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
132
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand l'accueil est une page statique."
133
 
134
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:524
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  msgid "Current Item"
136
  msgstr "Elément courant"
137
 
138
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:527
139
  msgid "Link Current Item"
140
  msgstr "Faire un lien avec l'élément courant"
141
 
142
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:527
143
  msgid "Yes"
144
  msgstr "Oui"
145
 
146
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:528
147
  msgid "Current Item Prefix"
148
  msgstr "Préfixe pour l'élément courant"
149
 
150
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:528
151
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
152
  msgstr "Toujours placé au début du dernier élément du fil d'ariane, avant tout autre préfixe."
153
 
154
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:529
155
  msgid "Current Item Suffix"
156
  msgstr "Suffixe pour l'élément courant"
157
 
158
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:529
159
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
160
  msgstr "Toujours placé en fin dernier élément du fil d'ariane, et après tout autre suffixe."
161
 
162
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:530
163
  msgid "Current Item Anchor"
164
  msgstr "Ancre pour l'élément courant"
165
 
166
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:530
167
  msgid "The anchor template for current item breadcrumbs."
168
  msgstr "Modèle de l'ancre pour l'élement courant du fil d'ariane."
169
 
170
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:531
171
  msgid "Paged Breadcrumb"
172
  msgstr "Fil d'ariane avec pagination"
173
 
174
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:531
175
  msgid "Include the paged breadcrumb in the breadcrumb trail."
176
  msgstr "Inclus la pagination dans le fil d'ariane."
177
 
178
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:531
179
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
180
  msgstr "Indique que l'utilisateur se trouve dans une autre page/article que la première lorsque la pagination est activée."
181
 
182
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:532
183
  msgid "Paged Prefix"
184
  msgstr "Préfixe pour la pagination"
185
 
186
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:533
187
  msgid "Paged Suffix"
188
  msgstr "Suffixe pour la pagination"
189
 
190
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:538
191
  msgid "Posts &amp; Pages"
192
  msgstr "Articles &amp; Pages"
193
 
194
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:541
195
  msgid "Post Prefix"
196
  msgstr "Préfixe des articles"
197
 
198
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:542
199
  msgid "Post Suffix"
200
  msgstr "Suffixe des articles"
201
 
202
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:543
203
  msgid "Post Anchor"
204
  msgstr "Ancre des articles"
205
 
206
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:543
207
  msgid "The anchor template for post breadcrumbs."
208
  msgstr "Modèle de l'ancre pour le fil d'ariane des articles"
209
 
210
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:544
211
  msgid "Post Taxonomy Display"
212
  msgstr "Affichage de la taxonomie des articles"
213
 
214
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:544
215
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
216
  msgstr "Montrer la taxonomie dans le fil d'ariane."
217
 
218
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:548
219
  msgid "Post Taxonomy"
220
  msgstr "Taxonomie des articles"
221
 
222
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:552
223
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:650
224
  msgid "Categories"
225
  msgstr "Catégories"
226
 
227
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:553
 
228
  msgid "Dates"
229
  msgstr "Dates"
230
 
231
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:554
232
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:662
233
  msgid "Tags"
234
  msgstr "Tags"
235
 
236
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:555
 
237
  msgid "Pages"
238
  msgstr "Pages"
239
 
240
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:566
241
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:640
242
  msgid "The taxonomy which the breadcrumb trail will show."
243
  msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
244
 
245
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:570
246
  msgid "Page Prefix"
247
  msgstr "Préfixe pour les pages"
248
 
249
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:571
250
  msgid "Page Suffix"
251
  msgstr "Suffixe pour les pages"
252
 
253
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:572
254
  msgid "Page Anchor"
255
  msgstr "Ancre des pages"
256
 
257
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:572
258
  msgid "The anchor template for page breadcrumbs."
259
  msgstr "Modèle de l'ancre pour un élément page du fil d'ariane."
260
 
261
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:573
262
  msgid "Attachment Prefix"
263
  msgstr "Préfixe pour les attachements"
264
 
265
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:574
266
  msgid "Attachment Suffix"
267
  msgstr "Suffixe pour les attachements"
268
 
269
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:616
270
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:699
271
- #, php-format
272
  msgid "%s Prefix"
273
  msgstr "Préfixe des %s"
274
 
275
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:617
276
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:700
277
- #, php-format
278
  msgid "%s Suffix"
279
  msgstr "Suffixe des %s"
280
 
281
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:618
282
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:701
283
- #, php-format
284
  msgid "%s Anchor"
285
  msgstr "Ancre des %s"
286
 
287
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:618
288
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:701
289
- #, php-format
290
  msgid "The anchor template for %s breadcrumbs."
291
  msgstr "Modèle de l'ancre pour le fil d'ariane des %s."
292
 
293
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:622
294
- #, php-format
 
 
 
 
 
 
 
295
  msgid "%s Taxonomy Display"
296
  msgstr "Affichage de la taxonomie des %s"
297
 
298
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:622
299
- #, php-format
300
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
301
  msgstr "Montrer la taxonomie dans un %s dans le fil d'ariane."
302
 
303
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:626
304
- #, php-format
305
  msgid "%s Taxonomy"
306
  msgstr "Taxonomie des %s "
307
 
308
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:653
309
  msgid "Category Prefix"
310
  msgstr "Préfixe pour catégorie"
311
 
312
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:653
313
  msgid "Applied before the anchor on all category breadcrumbs."
314
  msgstr "Appliqué avant chaque ancre pour tous les éléments catégorie du fil d'ariane."
315
 
316
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:654
317
  msgid "Category Suffix"
318
  msgstr "Suffixe pour catégorie"
319
 
320
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:654
321
  msgid "Applied after the anchor on all category breadcrumbs."
322
  msgstr "Appliqué après chaque ancre pour tous les éléments catégorie du fil d'ariane."
323
 
324
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:655
325
  msgid "Category Anchor"
326
  msgstr "Ancre pour les catégories"
327
 
328
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:655
329
  msgid "The anchor template for category breadcrumbs."
330
  msgstr "Modèle de l'ancre pour les éléments catégorie du fil d'ariane"
331
 
332
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:656
333
  msgid "Archive by Category Prefix"
334
  msgstr "Préfixe pour les archives par catégorie"
335
 
336
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:656
337
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
338
  msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par catégorie."
339
 
340
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:657
341
  msgid "Archive by Category Suffix"
342
  msgstr "Suffixe pour les archive par catégorie"
343
 
344
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:657
345
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
346
  msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par catégorie."
347
 
348
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:665
349
  msgid "Tag Prefix"
350
  msgstr "Préfixe pour les tag"
351
 
352
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:665
353
  msgid "Applied before the anchor on all tag breadcrumbs."
354
  msgstr "Appliqué avant l'ancre de tous les éléments tag du fil d'ariane. "
355
 
356
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:666
357
  msgid "Tag Suffix"
358
  msgstr "Suffixe pour les tags"
359
 
360
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:666
361
  msgid "Applied after the anchor on all tag breadcrumbs."
362
  msgstr "Appliqué après l'ancre de tous les éléments tag du fil d'ariane. "
363
 
364
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:667
365
  msgid "Tag Anchor"
366
  msgstr "Ancre pour les tags"
367
 
368
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:667
369
  msgid "The anchor template for tag breadcrumbs."
370
  msgstr "Modèle de l'ancre pour les élément du fil d'ariane tag."
371
 
372
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:668
373
  msgid "Archive by Tag Prefix"
374
  msgstr "Préfixe pour archive par tag"
375
 
376
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:668
377
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
378
  msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par tag."
379
 
380
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:669
381
  msgid "Archive by Tag Suffix"
382
  msgstr "Suffixe pour archive par tag"
383
 
384
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:669
385
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
386
  msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par tag."
387
 
388
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:699
389
- #, php-format
390
  msgid "Applied before the anchor on all %s breadcrumbs."
391
  msgstr "Appliqué avant l'ancre de tous les éléments %s du fil d'ariane. "
392
 
393
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:700
394
- #, php-format
395
  msgid "Applied after the anchor on all %s breadcrumbs."
396
  msgstr "Appliqué après l'ancre de tous les éléments %s du fil d'ariane. "
397
 
398
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:702
399
- #, php-format
400
  msgid "Archive by %s Prefix"
401
  msgstr "Préfixe pour archive par %s"
402
 
403
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:702
404
- #, php-format
405
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
406
  msgstr "Appliqué avant le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
407
 
408
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:703
409
- #, php-format
410
  msgid "Archive by %s Suffix"
411
  msgstr "Suffixe pour archive par %s"
412
 
413
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:703
414
- #, php-format
415
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
416
  msgstr "Appliqué après le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
417
 
418
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:712
419
  msgid "Date Archives"
420
  msgstr "Archives par date"
421
 
422
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:715
423
  msgid "Date Anchor"
424
  msgstr "Ancre pour archive par date"
425
 
426
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:715
427
  msgid "The anchor template for date breadcrumbs."
428
  msgstr "Modèle de l'ancre pour la date dans le fil d'ariane."
429
 
430
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:716
431
  msgid "Archive by Date Prefix"
432
  msgstr "Préfixe pour les archives par date"
433
 
434
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:716
435
  msgid "Applied before the anchor on all date breadcrumbs."
436
  msgstr "Appliqué avant l'ancre de chaque élément date du fil d'ariane."
437
 
438
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:717
439
  msgid "Archive by Date Suffix"
440
  msgstr "Suffixe pour archive par date"
441
 
442
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:717
443
  msgid "Applied after the anchor on all date breadcrumbs."
444
  msgstr "Appliqué après l'ancre de chaque élément date du fil d'ariane."
445
 
446
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:722
447
  msgid "Miscellaneous"
448
  msgstr "Divers"
449
 
450
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:725
451
  msgid "Author Prefix"
452
  msgstr "Préfixe pour auteur"
453
 
454
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:726
455
  msgid "Author Suffix"
456
  msgstr "Suffixe pour auteur"
457
 
458
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:727
459
  msgid "Author Display Format"
460
  msgstr "Format d'affichage de l'auteur"
461
 
462
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:727
463
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
464
  msgstr "display_name utilise le nom spécifié \"Nom à afficher publiquement\" dans le profil utilisateur. Les autres choix correspondent aux différentes options disponibles dans profil utilisateur."
465
 
466
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:728
467
  msgid "Search Prefix"
468
  msgstr "Préfixe pour la recherche"
469
 
470
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:729
471
  msgid "Search Suffix"
472
  msgstr "Suffixe pour la recherche"
473
 
474
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:730
475
  msgid "Search Anchor"
476
  msgstr "Ancre de recherche"
477
 
478
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:730
479
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
480
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
481
 
482
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:731
483
  msgid "404 Title"
484
  msgstr "Titre erreur 404"
485
 
486
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:732
487
  msgid "404 Prefix"
488
  msgstr "Préfixe erreur 404"
489
 
490
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:733
491
  msgid "404 Suffix"
492
  msgstr "Suffixe erreur 404"
493
 
494
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:154
 
 
 
 
495
  msgid "Blog"
496
  msgstr "Accueil"
497
 
498
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:173
499
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
500
  msgstr "<a title=\"recharger la page courante. \" href=\"%link%\">"
501
 
502
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:214
503
  msgid "404"
504
  msgstr "404"
505
 
506
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:217
507
  msgid "Search results for &#39;"
508
  msgstr "Résultat de recherche pour &#39;"
509
 
510
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:221
511
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
512
  msgstr "<a title=\"Aller à la première page des résultats pour %title%.\" href=\"%link%\">"
513
 
514
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:228
515
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
516
  msgstr "<a title=\"Aller aux archives du tag %title%.\" href=\"%link%\">"
517
 
518
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:231
519
  msgid "Articles by: "
520
  msgstr "Articles par:"
521
 
522
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:235
523
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
524
  msgstr "<a title=\"Aller à la première page des articles par %title%.\" href=\"%link%\">"
525
 
526
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:244
527
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
528
  msgstr "<a title=\"Aller aux archives de la catégorie %title%.\" href=\"%link%\">"
529
 
530
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:247
531
  msgid "Archive by category &#39;"
532
  msgstr "Archive par categorie &#39;"
533
 
534
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:251
535
  msgid "Archive by tag &#39;"
536
  msgstr "Archive par tag &#39;"
537
 
538
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:254
539
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
540
  msgstr "<a title=\"Aller aux archives %title%.\" href=\"%link%\">"
541
 
542
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:425
543
- msgid "Untagged"
544
- msgstr "Marquage enlevé"
545
-
546
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:24
547
- msgid "Adds a breadcrumb trail to your sidebar"
548
- msgstr "Ajoute le fil d'ariane à votre barre latérale "
549
-
550
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:72
551
- msgid "Title:"
552
- msgstr "Titre:"
553
-
554
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:77
555
- msgid "Output trail as a list"
556
- msgstr "Affiche le chemin d'accès en liste"
557
-
558
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:79
559
- msgid "Link the breadcrumbs"
560
- msgstr "Lie le fil d'ariane"
561
-
562
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:81
563
- msgid "Reverse the order of the trail"
564
- msgstr "Inverse l'ordre du chemin d'accès"
565
-
566
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:83
567
- msgid "Hide the trail on the front page"
568
- msgstr "Cache le chemin d'accès sur la page d'accueil"
569
-
570
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:56
571
- msgid "Undo"
572
- msgstr "Annule"
573
-
574
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:150
575
- msgid "Settings"
576
- msgstr "Réglages"
577
-
578
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:284
579
- msgid "Settings successfully imported from the uploaded file."
580
- msgstr "Les paramétrages ont été importés depuis le fichier téléchargé avec succès."
581
-
582
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:284
583
- msgid "Undo the options import."
584
- msgstr "Annule l'importation des options."
585
-
586
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:289
587
- msgid "Importing settings from file failed."
588
- msgstr "L'importation des paramétrages depuis le fichier a échoué."
589
-
590
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:310
591
- msgid "Settings successfully reset to the default values."
592
- msgstr "Les paramétrages ont été réinitialisés avec les valeurs par défaut."
593
-
594
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:310
595
- msgid "Undo the options reset."
596
- msgstr "Annule la remise à jour des options."
597
-
598
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:324
599
- msgid "Settings successfully undid the last operation."
600
- msgstr "Les paramétrages ont annulé avec succès la dernière opération."
601
-
602
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:324
603
- msgid "Undo the last undo operation."
604
- msgstr "Annule la dernière opération d'annulation."
605
-
606
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:354
607
- #, php-format
608
- msgid "Get help with \"%s\""
609
- msgstr "Obtenir de l'aide avec \"%s\""
610
-
611
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:435
612
- msgid "Import/Export/Reset Settings"
613
- msgstr "Importation/Exportation/Reinitialisation des paramétrages"
614
-
615
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:436
616
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
617
- msgstr "Importer les paramétrages depuis un fichier XML, exporter les paramétrages actuels vers un fichier XML, ou réinitialiser par les valeurs par défaut de Breadcrumb NavXT."
618
-
619
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:439
620
- msgid "Settings File"
621
- msgstr "Fichier de paramétrages"
622
-
623
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:442
624
- msgid "Select a XML settings file to upload and import settings from."
625
- msgstr "Selectionner un fichier XML à télécharger à partir duquel les paramétrages seront importés."
626
-
627
  #~ msgid ""
628
  #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
629
  #~ "the default values. Are you sure you want to continue?"
@@ -636,8 +759,6 @@ msgstr "Selectionner un fichier XML à télécharger à partir duquel les param
636
  #~ msgstr ""
637
  #~ "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par "
638
  #~ "les valeurs importées. Etes vous sûr de vouloir continuer?"
639
- #~ msgid "Save Changes"
640
- #~ msgstr "Sauvegarder les changements"
641
  #~ msgid ""
642
  #~ "Warning, your version of Breadcrumb NavXT does not match the version "
643
  #~ "supported by this administrative interface. As a result, settings may not "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: breadcrumb-navxt\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Laurent Grabielle <infos@3w3t.com>\n"
8
  "Language-Team: 3w3t\n"
16
  "X-Poedit-Basepath: .\n"
17
  "X-Poedit-SearchPath-0: D:\\3w3t.com\\wordpress\\wp-content\\plugins\\breadcrumb-navxt\n"
18
 
19
+ #: breadcrumb_navxt_widget.php:24
20
+ msgid "Adds a breadcrumb trail to your sidebar"
21
+ msgstr "Ajoute le fil d'ariane à votre barre latérale "
22
+
23
+ #: breadcrumb_navxt_widget.php:85
24
+ msgid "Title:"
25
+ msgstr "Titre:"
26
+
27
+ #: breadcrumb_navxt_widget.php:89
28
+ msgid "Output trail as:"
29
+ msgstr "Afficher le chemin comme:"
30
+
31
+ #: breadcrumb_navxt_widget.php:91
32
+ msgid "List"
33
+ msgstr "Liste"
34
+
35
+ #: breadcrumb_navxt_widget.php:92
36
+ msgid "RDFa"
37
+ msgstr "RDFa"
38
+
39
+ #: breadcrumb_navxt_widget.php:93
40
+ msgid "Microformat"
41
+ msgstr "Microformat"
42
+
43
+ #: breadcrumb_navxt_widget.php:94
44
+ msgid "Plain"
45
+ msgstr "Intégral"
46
+
47
+ #: breadcrumb_navxt_widget.php:99
48
+ msgid "Link the breadcrumbs"
49
+ msgstr "Lie le fil d'ariane"
50
+
51
+ #: breadcrumb_navxt_widget.php:101
52
+ msgid "Reverse the order of the trail"
53
+ msgstr "Inverse l'ordre du chemin d'accès"
54
+
55
+ #: breadcrumb_navxt_widget.php:103
56
+ msgid "Hide the trail on the front page"
57
+ msgstr "Cache le chemin d'accès sur la page d'accueil"
58
+
59
+ #: mtekk_admin_class.php:59
60
+ msgid "Undo"
61
+ msgstr "Annule"
62
+
63
+ #: mtekk_admin_class.php:67
64
+ #: mtekk_admin_class.php:191
65
+ msgid "Migrate now."
66
+ msgstr "Migrer maintenant."
67
+
68
+ #: mtekk_admin_class.php:164
69
+ msgid "Settings"
70
+ msgstr "Réglages"
71
+
72
+ #: mtekk_admin_class.php:191
73
+ msgid "Your settings are out of date."
74
+ msgstr "Vos réglages ne sont pas à jour."
75
+
76
+ #: mtekk_admin_class.php:191
77
+ msgid "Migrate the settings now."
78
+ msgstr "Migrer les réglages maintenant."
79
+
80
+ #: mtekk_admin_class.php:198
81
+ msgid "Your plugin install is incomplete."
82
+ msgstr "L'installation de votre plugin est incomplète."
83
+
84
+ #: mtekk_admin_class.php:198
85
+ msgid "Load default settings now."
86
+ msgstr "Charger les réglages par défaut maintenant."
87
+
88
+ #: mtekk_admin_class.php:198
89
+ msgid "Complete now."
90
+ msgstr "Effectuer maintenant."
91
+
92
+ #: mtekk_admin_class.php:311
93
+ msgid "Settings successfully imported from the uploaded file."
94
+ msgstr "Les paramétrages ont été importés depuis le fichier téléchargé avec succès."
95
+
96
+ #: mtekk_admin_class.php:311
97
+ msgid "Undo the options import."
98
+ msgstr "Annule l'importation des options."
99
+
100
+ #: mtekk_admin_class.php:316
101
+ msgid "Importing settings from file failed."
102
+ msgstr "L'importation des paramétrages depuis le fichier a échoué."
103
+
104
+ #: mtekk_admin_class.php:335
105
+ msgid "Settings successfully reset to the default values."
106
+ msgstr "Les paramétrages ont été réinitialisés avec les valeurs par défaut."
107
+
108
+ #: mtekk_admin_class.php:335
109
+ msgid "Undo the options reset."
110
+ msgstr "Annule la remise à jour des options."
111
+
112
+ #: mtekk_admin_class.php:352
113
+ msgid "Settings successfully undid the last operation."
114
+ msgstr "Les paramétrages ont annulé avec succès la dernière opération."
115
+
116
+ #: mtekk_admin_class.php:352
117
+ msgid "Undo the last undo operation."
118
+ msgstr "Annule la dernière opération d'annulation."
119
+
120
+ #: mtekk_admin_class.php:387
121
+ msgid "Settings successfully migrated."
122
+ msgstr "Les réglages ont été correctement migrés."
123
+
124
+ #: mtekk_admin_class.php:394
125
+ msgid "Default settings successfully installed."
126
+ msgstr "Les réglages par défaut ont été correctement sauvegardés."
127
+
128
+ #: mtekk_admin_class.php:425
129
+ msgid "Get help with \"%s\""
130
+ msgstr "Obtenir de l'aide avec \"%s\""
131
+
132
+ #: mtekk_admin_class.php:495
133
+ msgid "Import/Export/Reset Settings"
134
+ msgstr "Importation/Exportation/Reinitialisation des paramétrages"
135
+
136
+ #: mtekk_admin_class.php:496
137
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
138
+ msgstr "Importer les paramétrages depuis un fichier XML, exporter les paramétrages actuels vers un fichier XML, ou réinitialiser par les valeurs par défaut de Breadcrumb NavXT."
139
+
140
+ #: mtekk_admin_class.php:499
141
+ msgid "Settings File"
142
+ msgstr "Fichier de paramétrages"
143
 
144
+ #: mtekk_admin_class.php:502
145
+ msgid "Select a XML settings file to upload and import settings from."
146
+ msgstr "Selectionner un fichier XML à télécharger à partir duquel les paramétrages seront importés."
147
+
148
+ #: mtekk_admin_class.php:504
149
+ #: breadcrumb_navxt_admin.php:423
150
+ msgid "Import"
151
+ msgstr "Importation"
152
+
153
+ #: mtekk_admin_class.php:505
154
+ #: breadcrumb_navxt_admin.php:423
155
+ msgid "Export"
156
+ msgstr "Exportation"
157
+
158
+ #: mtekk_admin_class.php:506
159
+ #: breadcrumb_navxt_admin.php:423
160
+ msgid "Reset"
161
+ msgstr "Réinitialisation"
162
+
163
+ #: breadcrumb_navxt_admin.php:35
164
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
165
+ msgstr "Votre version de PHP est trop ancienne, veuillez la mettre à jour. Votre version actuelle est %s, Breadcrumb NavXT necessite %s"
166
+
167
+ #: breadcrumb_navxt_admin.php:112
168
  msgid "Insufficient privileges to proceed."
169
  msgstr "Vos droits sont insuffisants pour cette fonction."
170
 
171
+ #: breadcrumb_navxt_admin.php:217
172
+ #: breadcrumb_navxt_class.php:207
173
+ msgid "Home"
174
+ msgstr "Accueil"
175
+
176
+ #: breadcrumb_navxt_admin.php:219
177
+ #: breadcrumb_navxt_admin.php:580
178
+ #: breadcrumb_navxt_admin.php:773
179
+ #: breadcrumb_navxt_class.php:130
180
+ #: breadcrumb_navxt_class.php:209
181
+ #: breadcrumb_navxt_class.php:219
182
+ #: breadcrumb_navxt_class.php:223
183
+ #: breadcrumb_navxt_class.php:247
184
+ #: breadcrumb_navxt_class.php:263
185
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
186
  msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">"
187
 
188
+ #: breadcrumb_navxt_admin.php:304
189
  msgid "Settings successfully saved."
190
  msgstr "Les réglages ont été correctement sauvegardés."
191
 
192
+ #: breadcrumb_navxt_admin.php:304
193
+ #: breadcrumb_navxt_admin.php:309
194
  msgid "Undo the options save."
195
  msgstr "Annule la sauvegarde des options."
196
 
197
+ #: breadcrumb_navxt_admin.php:309
198
+ msgid "Some settings were not saved."
199
+ msgstr "Quelques réglages n'ont pas été sauvegardés."
200
+
201
+ #: breadcrumb_navxt_admin.php:310
202
+ msgid "The following settings were not saved:"
203
+ msgstr "Les réglages suivants n'ont pas été sauvegardés:"
204
+
205
+ #: breadcrumb_navxt_admin.php:315
206
+ msgid "Please include this message in your %sbug report%s."
207
+ msgstr "Incluez ce message dans votre %srapport de bug%s."
208
+
209
+ #: breadcrumb_navxt_admin.php:315
210
+ #: breadcrumb_navxt_admin.php:339
211
+ msgid "Go to the Breadcrumb NavXT support post for your version."
212
+ msgstr "Aller au support en ligne de Breadcrumb NavXT pour votre version."
213
+
214
+ #: breadcrumb_navxt_admin.php:337
215
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
216
  msgstr "Des explications pour le paramétrage sont affichées en dessous de chaque option. Veuillez vous référer à la %sdocumentation%s pour plus d'informations."
217
 
218
+ #: breadcrumb_navxt_admin.php:338
219
  msgid "Go to the Breadcrumb NavXT online documentation"
220
  msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
221
 
222
+ #: breadcrumb_navxt_admin.php:339
223
+ msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
224
+ msgstr "Si vous pensez avoir trouvé un bug, veuillez préciser votre version de Wordpress et les détails sur la façon de le reproduire quand vous nous %sle communiquez%s"
 
225
 
226
+ #: breadcrumb_navxt_admin.php:340
227
+ msgid "Quick Start Information"
228
+ msgstr "Information de démarrage rapide"
 
229
 
230
+ #: breadcrumb_navxt_admin.php:340
231
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
232
+ msgstr "Pour que les réglages sur cette page prennent effet, vous devez soit utiliser le widget Breadcrumb NavXT, ou ajouter le code ci-dessous dans votre thème."
 
233
 
234
+ #: breadcrumb_navxt_admin.php:341
235
+ msgid "Breadcrumb trail with separators"
236
+ msgstr "Chemin du fil d'ariane avec séparateurs"
237
+
238
+ #: breadcrumb_navxt_admin.php:342
239
+ msgid "Breadcrumb trail in list form"
240
+ msgstr "Chemin du fil d'ariane en format liste"
241
+
242
+ #: breadcrumb_navxt_admin.php:445
243
  msgid "Breadcrumb NavXT Settings"
244
  msgstr "Paramétrages de Breadcrumb NavXT"
245
 
246
+ #: breadcrumb_navxt_admin.php:453
247
  msgid "General"
248
  msgstr "Général"
249
 
250
+ #: breadcrumb_navxt_admin.php:456
251
  msgid "Breadcrumb Separator"
252
  msgstr "Séparateur du fil d'ariane"
253
 
254
+ #: breadcrumb_navxt_admin.php:456
255
  msgid "Placed in between each breadcrumb."
256
  msgstr "Placé entre chaque élément du fil d'ariane."
257
 
258
+ #: breadcrumb_navxt_admin.php:457
259
  msgid "Breadcrumb Max Title Length"
260
  msgstr "Longueur maximum du titre "
261
 
262
+ #: breadcrumb_navxt_admin.php:461
263
  msgid "Home Breadcrumb"
264
  msgstr "Origine du fil d'ariane"
265
 
266
+ #: breadcrumb_navxt_admin.php:466
267
  msgid "Place the home breadcrumb in the trail."
268
  msgstr "Inclure la page d'accueil dans le fil d'ariane."
269
 
270
+ #: breadcrumb_navxt_admin.php:471
271
  msgid "Home Title: "
272
  msgstr "Titre de la page d'accueil:"
273
 
274
+ #: breadcrumb_navxt_admin.php:479
 
 
 
 
 
 
 
 
275
  msgid "Home Prefix"
276
  msgstr "Préfixe de la page d'accueil"
277
 
278
+ #: breadcrumb_navxt_admin.php:480
279
  msgid "Home Suffix"
280
  msgstr "Suffixe de la page d'accueil"
281
 
282
+ #: breadcrumb_navxt_admin.php:481
283
  msgid "Home Anchor"
284
  msgstr "Ancre pour la page d'accueil"
285
 
286
+ #: breadcrumb_navxt_admin.php:481
287
  msgid "The anchor template for the home breadcrumb."
288
  msgstr "Modèle de l'ancre pour l'élement origine du fil d'ariane."
289
 
290
+ #: breadcrumb_navxt_admin.php:482
291
+ msgid "Blog Breadcrumb"
292
+ msgstr "Fil d'ariane du site"
293
+
294
+ #: breadcrumb_navxt_admin.php:482
295
+ msgid "Place the blog breadcrumb in the trail."
296
+ msgstr "Mettre le fil d'ariane du site en route. "
297
+
298
+ #: breadcrumb_navxt_admin.php:483
299
  msgid "Blog Anchor"
300
  msgstr "Ancre pour le blog"
301
 
302
+ #: breadcrumb_navxt_admin.php:483
303
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
304
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand l'accueil est une page statique."
305
 
306
+ #: breadcrumb_navxt_admin.php:487
307
+ msgid "Main Site Breadcrumb"
308
+ msgstr "Fil d'ariane du site principal"
309
+
310
+ #: breadcrumb_navxt_admin.php:492
311
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
312
+ msgstr "Inclure la page d'accueil du site principal dans le fil d'ariane, pour un réglage multisite."
313
+
314
+ #: breadcrumb_navxt_admin.php:497
315
+ msgid "Main Site Home Title: "
316
+ msgstr "Titre de la page d'accueil du site principal:"
317
+
318
+ #: breadcrumb_navxt_admin.php:506
319
+ msgid "Main Site Home Prefix"
320
+ msgstr "Préfixe de la page d'accueil du site principal"
321
+
322
+ #: breadcrumb_navxt_admin.php:506
323
+ #: breadcrumb_navxt_admin.php:507
324
+ msgid "Used for the main site home breadcrumb in an multisite setup"
325
+ msgstr "Utilisé pour le fil d'ariane du site principal dans le cas d'un réglage multisite "
326
+
327
+ #: breadcrumb_navxt_admin.php:507
328
+ msgid "Main Site Home Suffix"
329
+ msgstr "Suffixe de la page d'accueil du site principal"
330
+
331
+ #: breadcrumb_navxt_admin.php:508
332
+ msgid "Main Site Home Anchor"
333
+ msgstr "Ancre pour la page d'accueil du site principal"
334
+
335
+ #: breadcrumb_navxt_admin.php:508
336
+ msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
337
+ msgstr "Modèle de l'ancre pour le fil d'ariane du site principal, utilisé uniquement en environnement multisite."
338
+
339
+ #: breadcrumb_navxt_admin.php:513
340
  msgid "Current Item"
341
  msgstr "Elément courant"
342
 
343
+ #: breadcrumb_navxt_admin.php:516
344
  msgid "Link Current Item"
345
  msgstr "Faire un lien avec l'élément courant"
346
 
347
+ #: breadcrumb_navxt_admin.php:516
348
  msgid "Yes"
349
  msgstr "Oui"
350
 
351
+ #: breadcrumb_navxt_admin.php:517
352
  msgid "Current Item Prefix"
353
  msgstr "Préfixe pour l'élément courant"
354
 
355
+ #: breadcrumb_navxt_admin.php:517
356
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
357
  msgstr "Toujours placé au début du dernier élément du fil d'ariane, avant tout autre préfixe."
358
 
359
+ #: breadcrumb_navxt_admin.php:518
360
  msgid "Current Item Suffix"
361
  msgstr "Suffixe pour l'élément courant"
362
 
363
+ #: breadcrumb_navxt_admin.php:518
364
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
365
  msgstr "Toujours placé en fin dernier élément du fil d'ariane, et après tout autre suffixe."
366
 
367
+ #: breadcrumb_navxt_admin.php:519
368
  msgid "Current Item Anchor"
369
  msgstr "Ancre pour l'élément courant"
370
 
371
+ #: breadcrumb_navxt_admin.php:519
372
  msgid "The anchor template for current item breadcrumbs."
373
  msgstr "Modèle de l'ancre pour l'élement courant du fil d'ariane."
374
 
375
+ #: breadcrumb_navxt_admin.php:520
376
  msgid "Paged Breadcrumb"
377
  msgstr "Fil d'ariane avec pagination"
378
 
379
+ #: breadcrumb_navxt_admin.php:520
380
  msgid "Include the paged breadcrumb in the breadcrumb trail."
381
  msgstr "Inclus la pagination dans le fil d'ariane."
382
 
383
+ #: breadcrumb_navxt_admin.php:520
384
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
385
  msgstr "Indique que l'utilisateur se trouve dans une autre page/article que la première lorsque la pagination est activée."
386
 
387
+ #: breadcrumb_navxt_admin.php:521
388
  msgid "Paged Prefix"
389
  msgstr "Préfixe pour la pagination"
390
 
391
+ #: breadcrumb_navxt_admin.php:522
392
  msgid "Paged Suffix"
393
  msgstr "Suffixe pour la pagination"
394
 
395
+ #: breadcrumb_navxt_admin.php:527
396
  msgid "Posts &amp; Pages"
397
  msgstr "Articles &amp; Pages"
398
 
399
+ #: breadcrumb_navxt_admin.php:530
400
  msgid "Post Prefix"
401
  msgstr "Préfixe des articles"
402
 
403
+ #: breadcrumb_navxt_admin.php:531
404
  msgid "Post Suffix"
405
  msgstr "Suffixe des articles"
406
 
407
+ #: breadcrumb_navxt_admin.php:532
408
  msgid "Post Anchor"
409
  msgstr "Ancre des articles"
410
 
411
+ #: breadcrumb_navxt_admin.php:532
412
  msgid "The anchor template for post breadcrumbs."
413
  msgstr "Modèle de l'ancre pour le fil d'ariane des articles"
414
 
415
+ #: breadcrumb_navxt_admin.php:533
416
  msgid "Post Taxonomy Display"
417
  msgstr "Affichage de la taxonomie des articles"
418
 
419
+ #: breadcrumb_navxt_admin.php:533
420
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
421
  msgstr "Montrer la taxonomie dans le fil d'ariane."
422
 
423
+ #: breadcrumb_navxt_admin.php:537
424
  msgid "Post Taxonomy"
425
  msgstr "Taxonomie des articles"
426
 
427
+ #: breadcrumb_navxt_admin.php:541
428
+ #: breadcrumb_navxt_admin.php:663
429
  msgid "Categories"
430
  msgstr "Catégories"
431
 
432
+ #: breadcrumb_navxt_admin.php:542
433
+ #: breadcrumb_navxt_admin.php:641
434
  msgid "Dates"
435
  msgstr "Dates"
436
 
437
+ #: breadcrumb_navxt_admin.php:543
438
+ #: breadcrumb_navxt_admin.php:675
439
  msgid "Tags"
440
  msgstr "Tags"
441
 
442
+ #: breadcrumb_navxt_admin.php:544
443
+ #: breadcrumb_navxt_admin.php:642
444
  msgid "Pages"
445
  msgstr "Pages"
446
 
447
+ #: breadcrumb_navxt_admin.php:555
448
+ #: breadcrumb_navxt_admin.php:653
449
  msgid "The taxonomy which the breadcrumb trail will show."
450
  msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
451
 
452
+ #: breadcrumb_navxt_admin.php:559
453
  msgid "Page Prefix"
454
  msgstr "Préfixe pour les pages"
455
 
456
+ #: breadcrumb_navxt_admin.php:560
457
  msgid "Page Suffix"
458
  msgstr "Suffixe pour les pages"
459
 
460
+ #: breadcrumb_navxt_admin.php:561
461
  msgid "Page Anchor"
462
  msgstr "Ancre des pages"
463
 
464
+ #: breadcrumb_navxt_admin.php:561
465
  msgid "The anchor template for page breadcrumbs."
466
  msgstr "Modèle de l'ancre pour un élément page du fil d'ariane."
467
 
468
+ #: breadcrumb_navxt_admin.php:562
469
  msgid "Attachment Prefix"
470
  msgstr "Préfixe pour les attachements"
471
 
472
+ #: breadcrumb_navxt_admin.php:563
473
  msgid "Attachment Suffix"
474
  msgstr "Suffixe pour les attachements"
475
 
476
+ #: breadcrumb_navxt_admin.php:616
477
+ #: breadcrumb_navxt_admin.php:708
 
478
  msgid "%s Prefix"
479
  msgstr "Préfixe des %s"
480
 
481
+ #: breadcrumb_navxt_admin.php:617
482
+ #: breadcrumb_navxt_admin.php:709
 
483
  msgid "%s Suffix"
484
  msgstr "Suffixe des %s"
485
 
486
+ #: breadcrumb_navxt_admin.php:618
487
+ #: breadcrumb_navxt_admin.php:710
 
488
  msgid "%s Anchor"
489
  msgstr "Ancre des %s"
490
 
491
+ #: breadcrumb_navxt_admin.php:618
492
+ #: breadcrumb_navxt_admin.php:710
 
493
  msgid "The anchor template for %s breadcrumbs."
494
  msgstr "Modèle de l'ancre pour le fil d'ariane des %s."
495
 
496
+ #: breadcrumb_navxt_admin.php:623
497
+ msgid "%s Root Page"
498
+ msgstr "%s Page racine"
499
+
500
+ #: breadcrumb_navxt_admin.php:626
501
+ msgid "&mdash; Select &mdash;"
502
+ msgstr "&mdash; Selectionner &mdash;"
503
+
504
+ #: breadcrumb_navxt_admin.php:633
505
  msgid "%s Taxonomy Display"
506
  msgstr "Affichage de la taxonomie des %s"
507
 
508
+ #: breadcrumb_navxt_admin.php:633
 
509
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
510
  msgstr "Montrer la taxonomie dans un %s dans le fil d'ariane."
511
 
512
+ #: breadcrumb_navxt_admin.php:637
 
513
  msgid "%s Taxonomy"
514
  msgstr "Taxonomie des %s "
515
 
516
+ #: breadcrumb_navxt_admin.php:666
517
  msgid "Category Prefix"
518
  msgstr "Préfixe pour catégorie"
519
 
520
+ #: breadcrumb_navxt_admin.php:666
521
  msgid "Applied before the anchor on all category breadcrumbs."
522
  msgstr "Appliqué avant chaque ancre pour tous les éléments catégorie du fil d'ariane."
523
 
524
+ #: breadcrumb_navxt_admin.php:667
525
  msgid "Category Suffix"
526
  msgstr "Suffixe pour catégorie"
527
 
528
+ #: breadcrumb_navxt_admin.php:667
529
  msgid "Applied after the anchor on all category breadcrumbs."
530
  msgstr "Appliqué après chaque ancre pour tous les éléments catégorie du fil d'ariane."
531
 
532
+ #: breadcrumb_navxt_admin.php:668
533
  msgid "Category Anchor"
534
  msgstr "Ancre pour les catégories"
535
 
536
+ #: breadcrumb_navxt_admin.php:668
537
  msgid "The anchor template for category breadcrumbs."
538
  msgstr "Modèle de l'ancre pour les éléments catégorie du fil d'ariane"
539
 
540
+ #: breadcrumb_navxt_admin.php:669
541
  msgid "Archive by Category Prefix"
542
  msgstr "Préfixe pour les archives par catégorie"
543
 
544
+ #: breadcrumb_navxt_admin.php:669
545
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
546
  msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par catégorie."
547
 
548
+ #: breadcrumb_navxt_admin.php:670
549
  msgid "Archive by Category Suffix"
550
  msgstr "Suffixe pour les archive par catégorie"
551
 
552
+ #: breadcrumb_navxt_admin.php:670
553
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
554
  msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par catégorie."
555
 
556
+ #: breadcrumb_navxt_admin.php:678
557
  msgid "Tag Prefix"
558
  msgstr "Préfixe pour les tag"
559
 
560
+ #: breadcrumb_navxt_admin.php:678
561
  msgid "Applied before the anchor on all tag breadcrumbs."
562
  msgstr "Appliqué avant l'ancre de tous les éléments tag du fil d'ariane. "
563
 
564
+ #: breadcrumb_navxt_admin.php:679
565
  msgid "Tag Suffix"
566
  msgstr "Suffixe pour les tags"
567
 
568
+ #: breadcrumb_navxt_admin.php:679
569
  msgid "Applied after the anchor on all tag breadcrumbs."
570
  msgstr "Appliqué après l'ancre de tous les éléments tag du fil d'ariane. "
571
 
572
+ #: breadcrumb_navxt_admin.php:680
573
  msgid "Tag Anchor"
574
  msgstr "Ancre pour les tags"
575
 
576
+ #: breadcrumb_navxt_admin.php:680
577
  msgid "The anchor template for tag breadcrumbs."
578
  msgstr "Modèle de l'ancre pour les élément du fil d'ariane tag."
579
 
580
+ #: breadcrumb_navxt_admin.php:681
581
  msgid "Archive by Tag Prefix"
582
  msgstr "Préfixe pour archive par tag"
583
 
584
+ #: breadcrumb_navxt_admin.php:681
585
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
586
  msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par tag."
587
 
588
+ #: breadcrumb_navxt_admin.php:682
589
  msgid "Archive by Tag Suffix"
590
  msgstr "Suffixe pour archive par tag"
591
 
592
+ #: breadcrumb_navxt_admin.php:682
593
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
594
  msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par tag."
595
 
596
+ #: breadcrumb_navxt_admin.php:708
 
597
  msgid "Applied before the anchor on all %s breadcrumbs."
598
  msgstr "Appliqué avant l'ancre de tous les éléments %s du fil d'ariane. "
599
 
600
+ #: breadcrumb_navxt_admin.php:709
 
601
  msgid "Applied after the anchor on all %s breadcrumbs."
602
  msgstr "Appliqué après l'ancre de tous les éléments %s du fil d'ariane. "
603
 
604
+ #: breadcrumb_navxt_admin.php:711
 
605
  msgid "Archive by %s Prefix"
606
  msgstr "Préfixe pour archive par %s"
607
 
608
+ #: breadcrumb_navxt_admin.php:711
 
609
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
610
  msgstr "Appliqué avant le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
611
 
612
+ #: breadcrumb_navxt_admin.php:712
 
613
  msgid "Archive by %s Suffix"
614
  msgstr "Suffixe pour archive par %s"
615
 
616
+ #: breadcrumb_navxt_admin.php:712
 
617
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
618
  msgstr "Appliqué après le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
619
 
620
+ #: breadcrumb_navxt_admin.php:721
621
  msgid "Date Archives"
622
  msgstr "Archives par date"
623
 
624
+ #: breadcrumb_navxt_admin.php:724
625
  msgid "Date Anchor"
626
  msgstr "Ancre pour archive par date"
627
 
628
+ #: breadcrumb_navxt_admin.php:724
629
  msgid "The anchor template for date breadcrumbs."
630
  msgstr "Modèle de l'ancre pour la date dans le fil d'ariane."
631
 
632
+ #: breadcrumb_navxt_admin.php:725
633
  msgid "Archive by Date Prefix"
634
  msgstr "Préfixe pour les archives par date"
635
 
636
+ #: breadcrumb_navxt_admin.php:725
637
  msgid "Applied before the anchor on all date breadcrumbs."
638
  msgstr "Appliqué avant l'ancre de chaque élément date du fil d'ariane."
639
 
640
+ #: breadcrumb_navxt_admin.php:726
641
  msgid "Archive by Date Suffix"
642
  msgstr "Suffixe pour archive par date"
643
 
644
+ #: breadcrumb_navxt_admin.php:726
645
  msgid "Applied after the anchor on all date breadcrumbs."
646
  msgstr "Appliqué après l'ancre de chaque élément date du fil d'ariane."
647
 
648
+ #: breadcrumb_navxt_admin.php:731
649
  msgid "Miscellaneous"
650
  msgstr "Divers"
651
 
652
+ #: breadcrumb_navxt_admin.php:734
653
  msgid "Author Prefix"
654
  msgstr "Préfixe pour auteur"
655
 
656
+ #: breadcrumb_navxt_admin.php:735
657
  msgid "Author Suffix"
658
  msgstr "Suffixe pour auteur"
659
 
660
+ #: breadcrumb_navxt_admin.php:736
661
  msgid "Author Display Format"
662
  msgstr "Format d'affichage de l'auteur"
663
 
664
+ #: breadcrumb_navxt_admin.php:736
665
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
666
  msgstr "display_name utilise le nom spécifié \"Nom à afficher publiquement\" dans le profil utilisateur. Les autres choix correspondent aux différentes options disponibles dans profil utilisateur."
667
 
668
+ #: breadcrumb_navxt_admin.php:737
669
  msgid "Search Prefix"
670
  msgstr "Préfixe pour la recherche"
671
 
672
+ #: breadcrumb_navxt_admin.php:738
673
  msgid "Search Suffix"
674
  msgstr "Suffixe pour la recherche"
675
 
676
+ #: breadcrumb_navxt_admin.php:739
677
  msgid "Search Anchor"
678
  msgstr "Ancre de recherche"
679
 
680
+ #: breadcrumb_navxt_admin.php:739
681
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
682
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
683
 
684
+ #: breadcrumb_navxt_admin.php:740
685
  msgid "404 Title"
686
  msgstr "Titre erreur 404"
687
 
688
+ #: breadcrumb_navxt_admin.php:741
689
  msgid "404 Prefix"
690
  msgstr "Préfixe erreur 404"
691
 
692
+ #: breadcrumb_navxt_admin.php:742
693
  msgid "404 Suffix"
694
  msgstr "Suffixe erreur 404"
695
 
696
+ #: breadcrumb_navxt_admin.php:747
697
+ msgid "Save Changes"
698
+ msgstr "Sauvegarder les changements"
699
+
700
+ #: breadcrumb_navxt_class.php:217
701
  msgid "Blog"
702
  msgstr "Accueil"
703
 
704
+ #: breadcrumb_navxt_class.php:236
705
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
706
  msgstr "<a title=\"recharger la page courante. \" href=\"%link%\">"
707
 
708
+ #: breadcrumb_navxt_class.php:281
709
  msgid "404"
710
  msgstr "404"
711
 
712
+ #: breadcrumb_navxt_class.php:284
713
  msgid "Search results for &#39;"
714
  msgstr "Résultat de recherche pour &#39;"
715
 
716
+ #: breadcrumb_navxt_class.php:288
717
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
718
  msgstr "<a title=\"Aller à la première page des résultats pour %title%.\" href=\"%link%\">"
719
 
720
+ #: breadcrumb_navxt_class.php:295
721
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
722
  msgstr "<a title=\"Aller aux archives du tag %title%.\" href=\"%link%\">"
723
 
724
+ #: breadcrumb_navxt_class.php:298
725
  msgid "Articles by: "
726
  msgstr "Articles par:"
727
 
728
+ #: breadcrumb_navxt_class.php:302
729
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
730
  msgstr "<a title=\"Aller à la première page des articles par %title%.\" href=\"%link%\">"
731
 
732
+ #: breadcrumb_navxt_class.php:311
733
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
734
  msgstr "<a title=\"Aller aux archives de la catégorie %title%.\" href=\"%link%\">"
735
 
736
+ #: breadcrumb_navxt_class.php:314
737
  msgid "Archive by category &#39;"
738
  msgstr "Archive par categorie &#39;"
739
 
740
+ #: breadcrumb_navxt_class.php:318
741
  msgid "Archive by tag &#39;"
742
  msgstr "Archive par tag &#39;"
743
 
744
+ #: breadcrumb_navxt_class.php:321
745
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
746
  msgstr "<a title=\"Aller aux archives %title%.\" href=\"%link%\">"
747
 
748
+ #~ msgid "Untagged"
749
+ #~ msgstr "Marquage enlevé"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
750
  #~ msgid ""
751
  #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
752
  #~ "the default values. Are you sure you want to continue?"
759
  #~ msgstr ""
760
  #~ "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par "
761
  #~ "les valeurs importées. Etes vous sûr de vouloir continuer?"
 
 
762
  #~ msgid ""
763
  #~ "Warning, your version of Breadcrumb NavXT does not match the version "
764
  #~ "supported by this administrative interface. As a result, settings may not "
languages/breadcrumb_navxt-ja.mo CHANGED
Binary file
languages/breadcrumb_navxt-ja.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-11-19 13:19+0900\n"
6
- "PO-Revision-Date: 2010-11-19 14:10+0900\n"
7
  "Last-Translator: KAZUHIRO TERADA <info@technolog.jp>\n"
8
  "Language-Team: Kazuhiro Terada <info@technolog.jp>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,696 +16,754 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
- #: ../mtekk_admin_class.php:57
20
- msgid "Undo"
21
- msgstr "元に戻す"
22
-
23
- #: ../mtekk_admin_class.php:64
24
- msgid "Migrate now."
25
- msgstr "すぐに移行"
26
-
27
- #: ../mtekk_admin_class.php:158
28
- msgid "Settings"
29
- msgstr "設定"
30
-
31
- #: ../mtekk_admin_class.php:186
32
- msgid "Your settings are out of date."
33
- msgstr "新しい設定に移行してください。"
34
-
35
- #: ../mtekk_admin_class.php:186
36
- msgid "Migrate the settings now."
37
- msgstr "すぐに設定を移行"
38
-
39
- #: ../mtekk_admin_class.php:299
40
- msgid "Settings successfully imported from the uploaded file."
41
- msgstr "アップロードしたファイルより設定が正常に反映されました。"
42
-
43
- #: ../mtekk_admin_class.php:299
44
- msgid "Undo the options import."
45
- msgstr "オプションのインポートを元に戻す。"
46
-
47
- #: ../mtekk_admin_class.php:304
48
- msgid "Importing settings from file failed."
49
- msgstr "設定ファイルのインポートに失敗しました。"
50
-
51
- #: ../mtekk_admin_class.php:323
52
- msgid "Settings successfully reset to the default values."
53
- msgstr "設定が初期値に戻されました。"
54
-
55
- #: ../mtekk_admin_class.php:323
56
- msgid "Undo the options reset."
57
- msgstr "オプションのリセットを元に戻す。"
58
-
59
- #: ../mtekk_admin_class.php:340
60
- msgid "Settings successfully undid the last operation."
61
- msgstr "設定が正常に最後の操作を元に戻した。"
62
-
63
- #: ../mtekk_admin_class.php:340
64
- msgid "Undo the last undo operation."
65
- msgstr "最後に戻した操作を元に戻す。"
66
-
67
- #: ../mtekk_admin_class.php:373
68
- msgid "Settings successfully migrated."
69
- msgstr "正常に設定が移行されました。"
70
-
71
- #: ../mtekk_admin_class.php:403
72
  #, php-format
73
- msgid "Get help with \"%s\""
74
- msgstr "\"%s\" のサポートを受ける"
75
-
76
- #: ../mtekk_admin_class.php:473
77
- msgid "Import/Export/Reset Settings"
78
- msgstr "インポート/エクスポート/リセット設定"
79
-
80
- #: ../mtekk_admin_class.php:474
81
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
82
- msgstr "XMLファイルより設定をインポートし、現在の設定をXMLファイルにエクスポート、または初期値に戻す。"
83
-
84
- #: ../mtekk_admin_class.php:477
85
- msgid "Settings File"
86
- msgstr "設定ファイル"
87
-
88
- #: ../mtekk_admin_class.php:480
89
- msgid "Select a XML settings file to upload and import settings from."
90
- msgstr "XML設定ファイルを選択の上、アップロードし、設定を読み込んでください。"
91
-
92
- #: ../mtekk_admin_class.php:482
93
- #: ../breadcrumb_navxt_admin.php:398
94
- msgid "Import"
95
- msgstr "インポート"
96
-
97
- #: ../mtekk_admin_class.php:483
98
- #: ../breadcrumb_navxt_admin.php:398
99
- msgid "Export"
100
- msgstr "エクスポート"
101
-
102
- #: ../mtekk_admin_class.php:484
103
- #: ../breadcrumb_navxt_admin.php:398
104
- msgid "Reset"
105
- msgstr "リセット"
106
-
107
- #: ../breadcrumb_navxt_admin.php:29
108
- #, php-format
109
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
110
  msgstr "お使いのPHPのバージョンが古すぎます。最新バージョンにアップグレードしてください。お使いのバージョンは%sになり、このプラグインを使用するためには%s以上が必要になります。"
111
 
112
- #: ../breadcrumb_navxt_admin.php:106
113
  msgid "Insufficient privileges to proceed."
114
  msgstr "実行権限がありません。"
115
 
116
- #: ../breadcrumb_navxt_admin.php:211
117
- #: ../breadcrumb_navxt_class.php:203
118
  msgid "Home"
119
  msgstr "ホーム"
120
 
121
- #: ../breadcrumb_navxt_admin.php:213
122
- #: ../breadcrumb_navxt_admin.php:554
123
- #: ../breadcrumb_navxt_admin.php:745
124
- #: ../breadcrumb_navxt_class.php:126
125
- #: ../breadcrumb_navxt_class.php:205
126
- #: ../breadcrumb_navxt_class.php:215
127
  #: ../breadcrumb_navxt_class.php:219
128
- #: ../breadcrumb_navxt_class.php:243
129
- #: ../breadcrumb_navxt_class.php:259
 
130
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
131
  msgstr "<a title=\"%title%\" href=\"%link%\">"
132
 
133
- #: ../breadcrumb_navxt_admin.php:292
134
  msgid "Settings successfully saved."
135
  msgstr "設定は正常に保存されました。"
136
 
137
- #: ../breadcrumb_navxt_admin.php:292
 
138
  msgid "Undo the options save."
139
  msgstr "オプション設定を元に戻す。"
140
 
141
- #: ../breadcrumb_navxt_admin.php:313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  #, php-format
143
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
144
  msgstr "設定に関するTIPSは、選択オプション下に表示されています。詳細情報については%sドキュメント%sをご参照ください。"
145
 
146
- #: ../breadcrumb_navxt_admin.php:314
147
  msgid "Go to the Breadcrumb NavXT online documentation"
148
  msgstr "オンラインドキュメントへ移動"
149
 
150
- #: ../breadcrumb_navxt_admin.php:315
 
 
 
 
 
151
  msgid "Quick Start Information"
152
  msgstr "クイックスタート情報"
153
 
154
- #: ../breadcrumb_navxt_admin.php:315
155
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
156
  msgstr "このページの設定を反映させるには、Breadcrumb NavXT ウィジェット、または、ご利用中のテーマ内で以下のコードをご使用ください。"
157
 
158
- #: ../breadcrumb_navxt_admin.php:316
159
  msgid "Breadcrumb trail with separators"
160
  msgstr "パンくずリスト(区切り表示)"
161
 
162
- #: ../breadcrumb_navxt_admin.php:317
163
  msgid "Breadcrumb trail in list form"
164
  msgstr "パンくずリスト(リスト表示)"
165
 
166
- #: ../breadcrumb_navxt_admin.php:419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
167
  msgid "Breadcrumb NavXT Settings"
168
  msgstr "Breadcrumb NavXT 設定"
169
 
170
- #: ../breadcrumb_navxt_admin.php:427
171
  msgid "General"
172
  msgstr "一般"
173
 
174
- #: ../breadcrumb_navxt_admin.php:430
175
  msgid "Breadcrumb Separator"
176
  msgstr "区切り"
177
 
178
- #: ../breadcrumb_navxt_admin.php:430
179
  msgid "Placed in between each breadcrumb."
180
  msgstr "各項目間に配置"
181
 
182
- #: ../breadcrumb_navxt_admin.php:431
183
  msgid "Breadcrumb Max Title Length"
184
  msgstr "タイトルの最大文字数"
185
 
186
- #: ../breadcrumb_navxt_admin.php:435
187
  msgid "Home Breadcrumb"
188
  msgstr "ホーム"
189
 
190
- #: ../breadcrumb_navxt_admin.php:440
191
  msgid "Place the home breadcrumb in the trail."
192
  msgstr "パンくずリストにホームを配置"
193
 
194
- #: ../breadcrumb_navxt_admin.php:445
195
  msgid "Home Title: "
196
  msgstr "ホームタイトル:"
197
 
198
- #: ../breadcrumb_navxt_admin.php:453
199
  msgid "Home Prefix"
200
  msgstr "ホーム接頭辞"
201
 
202
- #: ../breadcrumb_navxt_admin.php:454
203
  msgid "Home Suffix"
204
  msgstr "ホーム接尾辞"
205
 
206
- #: ../breadcrumb_navxt_admin.php:455
207
  msgid "Home Anchor"
208
  msgstr "ホームリンク"
209
 
210
- #: ../breadcrumb_navxt_admin.php:455
211
  msgid "The anchor template for the home breadcrumb."
212
  msgstr "ホームのリンク書式"
213
 
214
- #: ../breadcrumb_navxt_admin.php:456
215
  msgid "Blog Breadcrumb"
216
  msgstr "ブログ"
217
 
218
- #: ../breadcrumb_navxt_admin.php:456
219
  msgid "Place the blog breadcrumb in the trail."
220
  msgstr "パンくずリストにブログを配置(フロントページの表示に固定ページを使用した場合のみ)"
221
 
222
- #: ../breadcrumb_navxt_admin.php:457
223
  msgid "Blog Anchor"
224
  msgstr "ブログリンク"
225
 
226
- #: ../breadcrumb_navxt_admin.php:457
227
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
228
  msgstr "ブログのリンク書式"
229
 
230
- #: ../breadcrumb_navxt_admin.php:461
231
  msgid "Main Site Breadcrumb"
232
  msgstr "メインサイトのパンくずリスト"
233
 
234
- #: ../breadcrumb_navxt_admin.php:466
235
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
236
  msgstr "マルチサイトにおけるメインサイトのパンくずリストにホームを配置"
237
 
238
- #: ../breadcrumb_navxt_admin.php:471
239
  msgid "Main Site Home Title: "
240
  msgstr "メインサイトのホームタイトル:"
241
 
242
- #: ../breadcrumb_navxt_admin.php:479
243
  msgid "Main Site Home Prefix"
244
  msgstr "メインサイトのホーム接頭辞"
245
 
246
- #: ../breadcrumb_navxt_admin.php:479
247
- #: ../breadcrumb_navxt_admin.php:480
248
  msgid "Used for the main site home breadcrumb in an multisite setup"
249
  msgstr "マルチサイト環境下におけるメインサイトのパンくずリストのホームに適用"
250
 
251
- #: ../breadcrumb_navxt_admin.php:480
252
  msgid "Main Site Home Suffix"
253
  msgstr "メインサイトのホーム接尾辞"
254
 
255
- #: ../breadcrumb_navxt_admin.php:481
256
  msgid "Main Site Home Anchor"
257
  msgstr "メインサイトのホームリンク"
258
 
259
- #: ../breadcrumb_navxt_admin.php:481
260
  msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
261
  msgstr "マルチサイト環境下におけるメインサイトのパンくずリストのホームリンク書式"
262
 
263
- #: ../breadcrumb_navxt_admin.php:486
264
  msgid "Current Item"
265
  msgstr "アクティブページ"
266
 
267
- #: ../breadcrumb_navxt_admin.php:489
268
  msgid "Link Current Item"
269
  msgstr "アクティブページのリンク"
270
 
271
- #: ../breadcrumb_navxt_admin.php:489
272
  msgid "Yes"
273
  msgstr "はい"
274
 
275
- #: ../breadcrumb_navxt_admin.php:490
276
  msgid "Current Item Prefix"
277
  msgstr "アクティブページ接頭辞"
278
 
279
- #: ../breadcrumb_navxt_admin.php:490
280
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
281
  msgstr "常に他の接頭辞よりも前にアクティブページの接頭辞として配置"
282
 
283
- #: ../breadcrumb_navxt_admin.php:491
284
  msgid "Current Item Suffix"
285
  msgstr "アクティブページ接尾辞"
286
 
287
- #: ../breadcrumb_navxt_admin.php:491
288
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
289
  msgstr "常に他の接尾辞よりも後にアクティブページの接尾辞として配置"
290
 
291
- #: ../breadcrumb_navxt_admin.php:492
292
  msgid "Current Item Anchor"
293
  msgstr "アクティブページリンク"
294
 
295
- #: ../breadcrumb_navxt_admin.php:492
296
  msgid "The anchor template for current item breadcrumbs."
297
  msgstr "アクティブページのリンク書式"
298
 
299
- #: ../breadcrumb_navxt_admin.php:493
300
  msgid "Paged Breadcrumb"
301
  msgstr "ページネーション"
302
 
303
- #: ../breadcrumb_navxt_admin.php:493
304
  msgid "Include the paged breadcrumb in the breadcrumb trail."
305
  msgstr "ページネーションを含む"
306
 
307
- #: ../breadcrumb_navxt_admin.php:493
308
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
309
  msgstr "ページネーションが適用されている場合、表示箇所が何頁目であるかを表示する。"
310
 
311
- #: ../breadcrumb_navxt_admin.php:494
312
  msgid "Paged Prefix"
313
  msgstr "ページネーション接頭辞"
314
 
315
- #: ../breadcrumb_navxt_admin.php:495
316
  msgid "Paged Suffix"
317
  msgstr "ページネーション接尾辞"
318
 
319
- #: ../breadcrumb_navxt_admin.php:500
320
  msgid "Posts &amp; Pages"
321
  msgstr "投稿およびページ"
322
 
323
- #: ../breadcrumb_navxt_admin.php:503
324
  msgid "Post Prefix"
325
  msgstr "投稿接頭辞"
326
 
327
- #: ../breadcrumb_navxt_admin.php:504
328
  msgid "Post Suffix"
329
  msgstr "投稿接尾辞"
330
 
331
- #: ../breadcrumb_navxt_admin.php:505
332
  msgid "Post Anchor"
333
  msgstr "投稿リンク"
334
 
335
- #: ../breadcrumb_navxt_admin.php:505
336
  msgid "The anchor template for post breadcrumbs."
337
  msgstr "投稿のリンク書式"
338
 
339
- #: ../breadcrumb_navxt_admin.php:506
340
  msgid "Post Taxonomy Display"
341
  msgstr "投稿タクソノミーの表示"
342
 
343
- #: ../breadcrumb_navxt_admin.php:506
344
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
345
  msgstr "パンくずリストに投稿へ誘導するためのタクソノミーを表示"
346
 
347
- #: ../breadcrumb_navxt_admin.php:510
348
  msgid "Post Taxonomy"
349
  msgstr "投稿タクソノミー"
350
 
351
- #: ../breadcrumb_navxt_admin.php:514
352
- #: ../breadcrumb_navxt_admin.php:631
353
  msgid "Categories"
354
  msgstr "カテゴリー"
355
 
356
- #: ../breadcrumb_navxt_admin.php:515
 
357
  msgid "Dates"
358
  msgstr "日付"
359
 
360
- #: ../breadcrumb_navxt_admin.php:516
361
- #: ../breadcrumb_navxt_admin.php:643
362
  msgid "Tags"
363
  msgstr "タグ"
364
 
365
- #: ../breadcrumb_navxt_admin.php:517
366
- #: ../breadcrumb_navxt_admin.php:610
367
  msgid "Pages"
368
  msgstr "ページ"
369
 
370
- #: ../breadcrumb_navxt_admin.php:528
371
- #: ../breadcrumb_navxt_admin.php:621
372
  msgid "The taxonomy which the breadcrumb trail will show."
373
  msgstr "パンくずリストに表示するタクソノミー"
374
 
375
- #: ../breadcrumb_navxt_admin.php:532
376
  msgid "Page Prefix"
377
  msgstr "ページ接頭辞"
378
 
379
- #: ../breadcrumb_navxt_admin.php:533
380
  msgid "Page Suffix"
381
  msgstr "ページ接尾辞"
382
 
383
- #: ../breadcrumb_navxt_admin.php:534
384
  msgid "Page Anchor"
385
  msgstr "ページリンク"
386
 
387
- #: ../breadcrumb_navxt_admin.php:534
388
  msgid "The anchor template for page breadcrumbs."
389
  msgstr "ページのリンク書式"
390
 
391
- #: ../breadcrumb_navxt_admin.php:535
392
  msgid "Attachment Prefix"
393
  msgstr "添付接頭辞"
394
 
395
- #: ../breadcrumb_navxt_admin.php:536
396
  msgid "Attachment Suffix"
397
  msgstr "添付接尾辞"
398
 
399
- #: ../breadcrumb_navxt_admin.php:585
400
- #: ../breadcrumb_navxt_admin.php:679
401
  #, php-format
402
  msgid "%s Prefix"
403
  msgstr "%s 接頭辞"
404
 
405
- #: ../breadcrumb_navxt_admin.php:586
406
- #: ../breadcrumb_navxt_admin.php:680
407
  #, php-format
408
  msgid "%s Suffix"
409
  msgstr "%s 接尾辞"
410
 
411
- #: ../breadcrumb_navxt_admin.php:587
412
- #: ../breadcrumb_navxt_admin.php:681
413
  #, php-format
414
  msgid "%s Anchor"
415
  msgstr "%s リンク"
416
 
417
- #: ../breadcrumb_navxt_admin.php:587
418
- #: ../breadcrumb_navxt_admin.php:681
419
  #, php-format
420
  msgid "The anchor template for %s breadcrumbs."
421
  msgstr "%sのリンク書式"
422
 
423
- #: ../breadcrumb_navxt_admin.php:592
424
  #, php-format
425
  msgid "%s Root Page"
426
  msgstr "%s ルートページ"
427
 
428
- #: ../breadcrumb_navxt_admin.php:595
429
  msgid "&mdash; Select &mdash;"
430
  msgstr "&mdash; 選択 &mdash;"
431
 
432
- #: ../breadcrumb_navxt_admin.php:602
433
  #, php-format
434
  msgid "%s Taxonomy Display"
435
  msgstr "タクソノミー「%s」の表示"
436
 
437
- #: ../breadcrumb_navxt_admin.php:602
438
  #, php-format
439
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
440
  msgstr "パンくずリスト上の%sにつながるタクソノミーを表示"
441
 
442
- #: ../breadcrumb_navxt_admin.php:606
443
  #, php-format
444
  msgid "%s Taxonomy"
445
  msgstr "タクソノミー「%s 」"
446
 
447
- #: ../breadcrumb_navxt_admin.php:634
448
  msgid "Category Prefix"
449
  msgstr "カテゴリー接頭辞"
450
 
451
- #: ../breadcrumb_navxt_admin.php:634
452
  msgid "Applied before the anchor on all category breadcrumbs."
453
  msgstr "すべてのカテゴリーリンクの前に適用"
454
 
455
- #: ../breadcrumb_navxt_admin.php:635
456
  msgid "Category Suffix"
457
  msgstr "カテゴリー接尾辞"
458
 
459
- #: ../breadcrumb_navxt_admin.php:635
460
  msgid "Applied after the anchor on all category breadcrumbs."
461
  msgstr "すべてのカテゴリーリンクの後に適用"
462
 
463
- #: ../breadcrumb_navxt_admin.php:636
464
  msgid "Category Anchor"
465
  msgstr "カテゴリーリンク"
466
 
467
- #: ../breadcrumb_navxt_admin.php:636
468
  msgid "The anchor template for category breadcrumbs."
469
  msgstr "カテゴリーのリンク書式"
470
 
471
- #: ../breadcrumb_navxt_admin.php:637
472
  msgid "Archive by Category Prefix"
473
  msgstr "カテゴリーアーカイブの接頭辞"
474
 
475
- #: ../breadcrumb_navxt_admin.php:637
476
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
477
  msgstr "カテゴリーアーカイブがアクティブページの場合に接頭辞として配置"
478
 
479
- #: ../breadcrumb_navxt_admin.php:638
480
  msgid "Archive by Category Suffix"
481
  msgstr "カテゴリーアーカイブの接尾辞"
482
 
483
- #: ../breadcrumb_navxt_admin.php:638
484
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
485
  msgstr "カテゴリーアーカイブがアクティブページの場合に接尾辞として配置"
486
 
487
- #: ../breadcrumb_navxt_admin.php:646
488
  msgid "Tag Prefix"
489
  msgstr "タグ接頭辞"
490
 
491
- #: ../breadcrumb_navxt_admin.php:646
492
  msgid "Applied before the anchor on all tag breadcrumbs."
493
  msgstr "すべてのタグリンクの前に適用"
494
 
495
- #: ../breadcrumb_navxt_admin.php:647
496
  msgid "Tag Suffix"
497
  msgstr "タグ接尾辞"
498
 
499
- #: ../breadcrumb_navxt_admin.php:647
500
  msgid "Applied after the anchor on all tag breadcrumbs."
501
  msgstr "すべてのタグリンクの後に適用"
502
 
503
- #: ../breadcrumb_navxt_admin.php:648
504
  msgid "Tag Anchor"
505
  msgstr "タグリンク"
506
 
507
- #: ../breadcrumb_navxt_admin.php:648
508
  msgid "The anchor template for tag breadcrumbs."
509
  msgstr "タグのリンク書式"
510
 
511
- #: ../breadcrumb_navxt_admin.php:649
512
  msgid "Archive by Tag Prefix"
513
  msgstr "タグアーカイブの接頭辞"
514
 
515
- #: ../breadcrumb_navxt_admin.php:649
516
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
517
  msgstr "タグアーカイブがアクティブページの場合に接頭辞として配置"
518
 
519
- #: ../breadcrumb_navxt_admin.php:650
520
  msgid "Archive by Tag Suffix"
521
  msgstr "タグアーカイブの接尾辞"
522
 
523
- #: ../breadcrumb_navxt_admin.php:650
524
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
525
  msgstr "タグアーカイブがアクティブページの場合に接尾辞として配置"
526
 
527
- #: ../breadcrumb_navxt_admin.php:679
528
  #, php-format
529
  msgid "Applied before the anchor on all %s breadcrumbs."
530
  msgstr "すべての%sリンクの前に適用されます。"
531
 
532
- #: ../breadcrumb_navxt_admin.php:680
533
  #, php-format
534
  msgid "Applied after the anchor on all %s breadcrumbs."
535
  msgstr "すべての%sリンクの後に適用されます。"
536
 
537
- #: ../breadcrumb_navxt_admin.php:682
538
  #, php-format
539
  msgid "Archive by %s Prefix"
540
  msgstr "%sアーカイブの接頭辞"
541
 
542
- #: ../breadcrumb_navxt_admin.php:682
543
  #, php-format
544
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
545
  msgstr "%sアーカイブがアクティブページの場合に接頭辞として配置"
546
 
547
- #: ../breadcrumb_navxt_admin.php:683
548
  #, php-format
549
  msgid "Archive by %s Suffix"
550
  msgstr "%sアーカイブの接尾辞"
551
 
552
- #: ../breadcrumb_navxt_admin.php:683
553
  #, php-format
554
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
555
  msgstr "%sアーカイブがアクティブページの場合に接尾辞として配置"
556
 
557
- #: ../breadcrumb_navxt_admin.php:692
558
  msgid "Date Archives"
559
  msgstr "日付アーカイブ"
560
 
561
- #: ../breadcrumb_navxt_admin.php:695
562
  msgid "Date Anchor"
563
  msgstr "日付リンク"
564
 
565
- #: ../breadcrumb_navxt_admin.php:695
566
  msgid "The anchor template for date breadcrumbs."
567
  msgstr "日付のリンク書式"
568
 
569
- #: ../breadcrumb_navxt_admin.php:696
570
  msgid "Archive by Date Prefix"
571
  msgstr "日付アーカイブの接頭辞"
572
 
573
- #: ../breadcrumb_navxt_admin.php:696
574
  msgid "Applied before the anchor on all date breadcrumbs."
575
  msgstr "すべての日付リンクの前に適用"
576
 
577
- #: ../breadcrumb_navxt_admin.php:697
578
  msgid "Archive by Date Suffix"
579
  msgstr "日付アーカイブの接尾辞"
580
 
581
- #: ../breadcrumb_navxt_admin.php:697
582
  msgid "Applied after the anchor on all date breadcrumbs."
583
  msgstr "すべての日付リンクの後に適用"
584
 
585
- #: ../breadcrumb_navxt_admin.php:702
586
  msgid "Miscellaneous"
587
  msgstr "その他"
588
 
589
- #: ../breadcrumb_navxt_admin.php:705
590
  msgid "Author Prefix"
591
  msgstr "投稿者接頭辞"
592
 
593
- #: ../breadcrumb_navxt_admin.php:706
594
  msgid "Author Suffix"
595
  msgstr "投稿者接尾辞"
596
 
597
- #: ../breadcrumb_navxt_admin.php:707
598
  msgid "Author Display Format"
599
  msgstr "投稿者表示形式"
600
 
601
- #: ../breadcrumb_navxt_admin.php:707
602
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
603
  msgstr "「display_name」はユーザプロフィール内の「ブログ上の表示名」が使用されます。その他もユーザプロフィール内の設定内容が適用されます。"
604
 
605
- #: ../breadcrumb_navxt_admin.php:708
606
  msgid "Search Prefix"
607
  msgstr "検索結果接頭辞"
608
 
609
- #: ../breadcrumb_navxt_admin.php:709
610
  msgid "Search Suffix"
611
  msgstr "検索結果接尾辞"
612
 
613
- #: ../breadcrumb_navxt_admin.php:710
614
  msgid "Search Anchor"
615
  msgstr "検索結果リンク"
616
 
617
- #: ../breadcrumb_navxt_admin.php:710
618
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
619
  msgstr "検索結果のリンク書式(検索結果が複数ページに及ぶ場合のみに適用)"
620
 
621
- #: ../breadcrumb_navxt_admin.php:711
622
  msgid "404 Title"
623
  msgstr "404タイトル"
624
 
625
- #: ../breadcrumb_navxt_admin.php:712
626
  msgid "404 Prefix"
627
  msgstr "404接頭辞"
628
 
629
- #: ../breadcrumb_navxt_admin.php:713
630
  msgid "404 Suffix"
631
  msgstr "404接尾辞"
632
 
633
- #: ../breadcrumb_navxt_widget.php:24
634
- msgid "Adds a breadcrumb trail to your sidebar"
635
- msgstr "サイドバーにパンくずリストを追加"
636
-
637
- #: ../breadcrumb_navxt_widget.php:72
638
- msgid "Title:"
639
- msgstr "タイトル:"
640
-
641
- #: ../breadcrumb_navxt_widget.php:77
642
- msgid "Output trail as a list"
643
- msgstr "リストとして表示"
644
-
645
- #: ../breadcrumb_navxt_widget.php:79
646
- msgid "Link the breadcrumbs"
647
- msgstr "パンクすリストにリンク"
648
-
649
- #: ../breadcrumb_navxt_widget.php:81
650
- msgid "Reverse the order of the trail"
651
- msgstr "開始位置を逆にする。"
652
-
653
- #: ../breadcrumb_navxt_widget.php:83
654
- msgid "Hide the trail on the front page"
655
- msgstr "フロントページ上では非表示"
656
-
657
- #: ../breadcrumb_navxt_class.php:213
658
  msgid "Blog"
659
  msgstr "ブログ"
660
 
661
- #: ../breadcrumb_navxt_class.php:232
662
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
663
  msgstr "<a title=\"再読み込み\" href=\"%link%\">"
664
 
665
- #: ../breadcrumb_navxt_class.php:277
666
  msgid "404"
667
  msgstr "404"
668
 
669
- #: ../breadcrumb_navxt_class.php:280
670
  msgid "Search results for &#39;"
671
  msgstr "&#39;の検索結果"
672
 
673
- #: ../breadcrumb_navxt_class.php:284
674
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
675
  msgstr "<a title=\"%title%の検索結果の最初のページに戻る\" href=\"%link%\">"
676
 
677
- #: ../breadcrumb_navxt_class.php:291
678
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
679
  msgstr "<a title=\"%title%\" href=\"%link%\">"
680
 
681
- #: ../breadcrumb_navxt_class.php:294
682
  msgid "Articles by: "
683
  msgstr "投稿者:"
684
 
685
- #: ../breadcrumb_navxt_class.php:298
686
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
687
  msgstr "<a title=\"%title%\" href=\"%link%\">"
688
 
689
- #: ../breadcrumb_navxt_class.php:307
690
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
691
  msgstr "<a title=\"%title%\" href=\"%link%\">"
692
 
693
- #: ../breadcrumb_navxt_class.php:310
694
  msgid "Archive by category &#39;"
695
  msgstr "カテゴリー &#39;"
696
 
697
- #: ../breadcrumb_navxt_class.php:314
698
  msgid "Archive by tag &#39;"
699
  msgstr "タグ &#39;"
700
 
701
- #: ../breadcrumb_navxt_class.php:317
702
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
703
  msgstr "<a title=\"%title%\" href=\"%link%\">"
704
 
705
- #: ../breadcrumb_navxt_class.php:478
706
  msgid "Un"
707
  msgstr "無"
708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  #~ msgid "Untagged"
710
  #~ msgstr "タグなし"
711
 
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-02-10 09:23+0900\n"
6
+ "PO-Revision-Date: 2011-02-10 09:50+0900\n"
7
  "Last-Translator: KAZUHIRO TERADA <info@technolog.jp>\n"
8
  "Language-Team: Kazuhiro Terada <info@technolog.jp>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: ..\n"
18
 
19
+ #: ../breadcrumb_navxt_admin.php:35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  #, php-format
21
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgstr "お使いのPHPのバージョンが古すぎます。最新バージョンにアップグレードしてください。お使いのバージョンは%sになり、このプラグインを使用するためには%s以上が必要になります。"
23
 
24
+ #: ../breadcrumb_navxt_admin.php:112
25
  msgid "Insufficient privileges to proceed."
26
  msgstr "実行権限がありません。"
27
 
28
+ #: ../breadcrumb_navxt_admin.php:217
29
+ #: ../breadcrumb_navxt_class.php:207
30
  msgid "Home"
31
  msgstr "ホーム"
32
 
33
+ #: ../breadcrumb_navxt_admin.php:219
34
+ #: ../breadcrumb_navxt_admin.php:580
35
+ #: ../breadcrumb_navxt_admin.php:773
36
+ #: ../breadcrumb_navxt_class.php:130
37
+ #: ../breadcrumb_navxt_class.php:209
 
38
  #: ../breadcrumb_navxt_class.php:219
39
+ #: ../breadcrumb_navxt_class.php:223
40
+ #: ../breadcrumb_navxt_class.php:247
41
+ #: ../breadcrumb_navxt_class.php:263
42
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
43
  msgstr "<a title=\"%title%\" href=\"%link%\">"
44
 
45
+ #: ../breadcrumb_navxt_admin.php:304
46
  msgid "Settings successfully saved."
47
  msgstr "設定は正常に保存されました。"
48
 
49
+ #: ../breadcrumb_navxt_admin.php:304
50
+ #: ../breadcrumb_navxt_admin.php:309
51
  msgid "Undo the options save."
52
  msgstr "オプション設定を元に戻す。"
53
 
54
+ #: ../breadcrumb_navxt_admin.php:309
55
+ msgid "Some settings were not saved."
56
+ msgstr "一部の設定が保存されませんでした。"
57
+
58
+ #: ../breadcrumb_navxt_admin.php:310
59
+ msgid "The following settings were not saved:"
60
+ msgstr "次の設定が保存されませんでした。"
61
+
62
+ #: ../breadcrumb_navxt_admin.php:315
63
+ #, php-format
64
+ msgid "Please include this message in your %sbug report%s."
65
+ msgstr "このメッセージをあなたの%sバグレポート%sに含めてください。"
66
+
67
+ #: ../breadcrumb_navxt_admin.php:315
68
+ #: ../breadcrumb_navxt_admin.php:339
69
+ msgid "Go to the Breadcrumb NavXT support post for your version."
70
+ msgstr "ご利用中のBreadcrumb NavXTバージョンのサポートへ移動"
71
+
72
+ #: ../breadcrumb_navxt_admin.php:337
73
  #, php-format
74
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
75
  msgstr "設定に関するTIPSは、選択オプション下に表示されています。詳細情報については%sドキュメント%sをご参照ください。"
76
 
77
+ #: ../breadcrumb_navxt_admin.php:338
78
  msgid "Go to the Breadcrumb NavXT online documentation"
79
  msgstr "オンラインドキュメントへ移動"
80
 
81
+ #: ../breadcrumb_navxt_admin.php:339
82
+ #, php-format
83
+ msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
84
+ msgstr "バグを発見され、%s問題をレポート%sする場合は、ご使用中のWordPressのバージョンおよびバグの再現方法の詳細を記載してください。"
85
+
86
+ #: ../breadcrumb_navxt_admin.php:340
87
  msgid "Quick Start Information"
88
  msgstr "クイックスタート情報"
89
 
90
+ #: ../breadcrumb_navxt_admin.php:340
91
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
92
  msgstr "このページの設定を反映させるには、Breadcrumb NavXT ウィジェット、または、ご利用中のテーマ内で以下のコードをご使用ください。"
93
 
94
+ #: ../breadcrumb_navxt_admin.php:341
95
  msgid "Breadcrumb trail with separators"
96
  msgstr "パンくずリスト(区切り表示)"
97
 
98
+ #: ../breadcrumb_navxt_admin.php:342
99
  msgid "Breadcrumb trail in list form"
100
  msgstr "パンくずリスト(リスト表示)"
101
 
102
+ #: ../breadcrumb_navxt_admin.php:423
103
+ #: ../mtekk_admin_class.php:504
104
+ msgid "Import"
105
+ msgstr "インポート"
106
+
107
+ #: ../breadcrumb_navxt_admin.php:423
108
+ #: ../mtekk_admin_class.php:505
109
+ msgid "Export"
110
+ msgstr "エクスポート"
111
+
112
+ #: ../breadcrumb_navxt_admin.php:423
113
+ #: ../mtekk_admin_class.php:506
114
+ msgid "Reset"
115
+ msgstr "リセット"
116
+
117
+ #: ../breadcrumb_navxt_admin.php:445
118
  msgid "Breadcrumb NavXT Settings"
119
  msgstr "Breadcrumb NavXT 設定"
120
 
121
+ #: ../breadcrumb_navxt_admin.php:453
122
  msgid "General"
123
  msgstr "一般"
124
 
125
+ #: ../breadcrumb_navxt_admin.php:456
126
  msgid "Breadcrumb Separator"
127
  msgstr "区切り"
128
 
129
+ #: ../breadcrumb_navxt_admin.php:456
130
  msgid "Placed in between each breadcrumb."
131
  msgstr "各項目間に配置"
132
 
133
+ #: ../breadcrumb_navxt_admin.php:457
134
  msgid "Breadcrumb Max Title Length"
135
  msgstr "タイトルの最大文字数"
136
 
137
+ #: ../breadcrumb_navxt_admin.php:461
138
  msgid "Home Breadcrumb"
139
  msgstr "ホーム"
140
 
141
+ #: ../breadcrumb_navxt_admin.php:466
142
  msgid "Place the home breadcrumb in the trail."
143
  msgstr "パンくずリストにホームを配置"
144
 
145
+ #: ../breadcrumb_navxt_admin.php:471
146
  msgid "Home Title: "
147
  msgstr "ホームタイトル:"
148
 
149
+ #: ../breadcrumb_navxt_admin.php:479
150
  msgid "Home Prefix"
151
  msgstr "ホーム接頭辞"
152
 
153
+ #: ../breadcrumb_navxt_admin.php:480
154
  msgid "Home Suffix"
155
  msgstr "ホーム接尾辞"
156
 
157
+ #: ../breadcrumb_navxt_admin.php:481
158
  msgid "Home Anchor"
159
  msgstr "ホームリンク"
160
 
161
+ #: ../breadcrumb_navxt_admin.php:481
162
  msgid "The anchor template for the home breadcrumb."
163
  msgstr "ホームのリンク書式"
164
 
165
+ #: ../breadcrumb_navxt_admin.php:482
166
  msgid "Blog Breadcrumb"
167
  msgstr "ブログ"
168
 
169
+ #: ../breadcrumb_navxt_admin.php:482
170
  msgid "Place the blog breadcrumb in the trail."
171
  msgstr "パンくずリストにブログを配置(フロントページの表示に固定ページを使用した場合のみ)"
172
 
173
+ #: ../breadcrumb_navxt_admin.php:483
174
  msgid "Blog Anchor"
175
  msgstr "ブログリンク"
176
 
177
+ #: ../breadcrumb_navxt_admin.php:483
178
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
179
  msgstr "ブログのリンク書式"
180
 
181
+ #: ../breadcrumb_navxt_admin.php:487
182
  msgid "Main Site Breadcrumb"
183
  msgstr "メインサイトのパンくずリスト"
184
 
185
+ #: ../breadcrumb_navxt_admin.php:492
186
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
187
  msgstr "マルチサイトにおけるメインサイトのパンくずリストにホームを配置"
188
 
189
+ #: ../breadcrumb_navxt_admin.php:497
190
  msgid "Main Site Home Title: "
191
  msgstr "メインサイトのホームタイトル:"
192
 
193
+ #: ../breadcrumb_navxt_admin.php:506
194
  msgid "Main Site Home Prefix"
195
  msgstr "メインサイトのホーム接頭辞"
196
 
197
+ #: ../breadcrumb_navxt_admin.php:506
198
+ #: ../breadcrumb_navxt_admin.php:507
199
  msgid "Used for the main site home breadcrumb in an multisite setup"
200
  msgstr "マルチサイト環境下におけるメインサイトのパンくずリストのホームに適用"
201
 
202
+ #: ../breadcrumb_navxt_admin.php:507
203
  msgid "Main Site Home Suffix"
204
  msgstr "メインサイトのホーム接尾辞"
205
 
206
+ #: ../breadcrumb_navxt_admin.php:508
207
  msgid "Main Site Home Anchor"
208
  msgstr "メインサイトのホームリンク"
209
 
210
+ #: ../breadcrumb_navxt_admin.php:508
211
  msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
212
  msgstr "マルチサイト環境下におけるメインサイトのパンくずリストのホームリンク書式"
213
 
214
+ #: ../breadcrumb_navxt_admin.php:513
215
  msgid "Current Item"
216
  msgstr "アクティブページ"
217
 
218
+ #: ../breadcrumb_navxt_admin.php:516
219
  msgid "Link Current Item"
220
  msgstr "アクティブページのリンク"
221
 
222
+ #: ../breadcrumb_navxt_admin.php:516
223
  msgid "Yes"
224
  msgstr "はい"
225
 
226
+ #: ../breadcrumb_navxt_admin.php:517
227
  msgid "Current Item Prefix"
228
  msgstr "アクティブページ接頭辞"
229
 
230
+ #: ../breadcrumb_navxt_admin.php:517
231
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
232
  msgstr "常に他の接頭辞よりも前にアクティブページの接頭辞として配置"
233
 
234
+ #: ../breadcrumb_navxt_admin.php:518
235
  msgid "Current Item Suffix"
236
  msgstr "アクティブページ接尾辞"
237
 
238
+ #: ../breadcrumb_navxt_admin.php:518
239
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
240
  msgstr "常に他の接尾辞よりも後にアクティブページの接尾辞として配置"
241
 
242
+ #: ../breadcrumb_navxt_admin.php:519
243
  msgid "Current Item Anchor"
244
  msgstr "アクティブページリンク"
245
 
246
+ #: ../breadcrumb_navxt_admin.php:519
247
  msgid "The anchor template for current item breadcrumbs."
248
  msgstr "アクティブページのリンク書式"
249
 
250
+ #: ../breadcrumb_navxt_admin.php:520
251
  msgid "Paged Breadcrumb"
252
  msgstr "ページネーション"
253
 
254
+ #: ../breadcrumb_navxt_admin.php:520
255
  msgid "Include the paged breadcrumb in the breadcrumb trail."
256
  msgstr "ページネーションを含む"
257
 
258
+ #: ../breadcrumb_navxt_admin.php:520
259
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
260
  msgstr "ページネーションが適用されている場合、表示箇所が何頁目であるかを表示する。"
261
 
262
+ #: ../breadcrumb_navxt_admin.php:521
263
  msgid "Paged Prefix"
264
  msgstr "ページネーション接頭辞"
265
 
266
+ #: ../breadcrumb_navxt_admin.php:522
267
  msgid "Paged Suffix"
268
  msgstr "ページネーション接尾辞"
269
 
270
+ #: ../breadcrumb_navxt_admin.php:527
271
  msgid "Posts &amp; Pages"
272
  msgstr "投稿およびページ"
273
 
274
+ #: ../breadcrumb_navxt_admin.php:530
275
  msgid "Post Prefix"
276
  msgstr "投稿接頭辞"
277
 
278
+ #: ../breadcrumb_navxt_admin.php:531
279
  msgid "Post Suffix"
280
  msgstr "投稿接尾辞"
281
 
282
+ #: ../breadcrumb_navxt_admin.php:532
283
  msgid "Post Anchor"
284
  msgstr "投稿リンク"
285
 
286
+ #: ../breadcrumb_navxt_admin.php:532
287
  msgid "The anchor template for post breadcrumbs."
288
  msgstr "投稿のリンク書式"
289
 
290
+ #: ../breadcrumb_navxt_admin.php:533
291
  msgid "Post Taxonomy Display"
292
  msgstr "投稿タクソノミーの表示"
293
 
294
+ #: ../breadcrumb_navxt_admin.php:533
295
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
296
  msgstr "パンくずリストに投稿へ誘導するためのタクソノミーを表示"
297
 
298
+ #: ../breadcrumb_navxt_admin.php:537
299
  msgid "Post Taxonomy"
300
  msgstr "投稿タクソノミー"
301
 
302
+ #: ../breadcrumb_navxt_admin.php:541
303
+ #: ../breadcrumb_navxt_admin.php:663
304
  msgid "Categories"
305
  msgstr "カテゴリー"
306
 
307
+ #: ../breadcrumb_navxt_admin.php:542
308
+ #: ../breadcrumb_navxt_admin.php:641
309
  msgid "Dates"
310
  msgstr "日付"
311
 
312
+ #: ../breadcrumb_navxt_admin.php:543
313
+ #: ../breadcrumb_navxt_admin.php:675
314
  msgid "Tags"
315
  msgstr "タグ"
316
 
317
+ #: ../breadcrumb_navxt_admin.php:544
318
+ #: ../breadcrumb_navxt_admin.php:642
319
  msgid "Pages"
320
  msgstr "ページ"
321
 
322
+ #: ../breadcrumb_navxt_admin.php:555
323
+ #: ../breadcrumb_navxt_admin.php:653
324
  msgid "The taxonomy which the breadcrumb trail will show."
325
  msgstr "パンくずリストに表示するタクソノミー"
326
 
327
+ #: ../breadcrumb_navxt_admin.php:559
328
  msgid "Page Prefix"
329
  msgstr "ページ接頭辞"
330
 
331
+ #: ../breadcrumb_navxt_admin.php:560
332
  msgid "Page Suffix"
333
  msgstr "ページ接尾辞"
334
 
335
+ #: ../breadcrumb_navxt_admin.php:561
336
  msgid "Page Anchor"
337
  msgstr "ページリンク"
338
 
339
+ #: ../breadcrumb_navxt_admin.php:561
340
  msgid "The anchor template for page breadcrumbs."
341
  msgstr "ページのリンク書式"
342
 
343
+ #: ../breadcrumb_navxt_admin.php:562
344
  msgid "Attachment Prefix"
345
  msgstr "添付接頭辞"
346
 
347
+ #: ../breadcrumb_navxt_admin.php:563
348
  msgid "Attachment Suffix"
349
  msgstr "添付接尾辞"
350
 
351
+ #: ../breadcrumb_navxt_admin.php:616
352
+ #: ../breadcrumb_navxt_admin.php:708
353
  #, php-format
354
  msgid "%s Prefix"
355
  msgstr "%s 接頭辞"
356
 
357
+ #: ../breadcrumb_navxt_admin.php:617
358
+ #: ../breadcrumb_navxt_admin.php:709
359
  #, php-format
360
  msgid "%s Suffix"
361
  msgstr "%s 接尾辞"
362
 
363
+ #: ../breadcrumb_navxt_admin.php:618
364
+ #: ../breadcrumb_navxt_admin.php:710
365
  #, php-format
366
  msgid "%s Anchor"
367
  msgstr "%s リンク"
368
 
369
+ #: ../breadcrumb_navxt_admin.php:618
370
+ #: ../breadcrumb_navxt_admin.php:710
371
  #, php-format
372
  msgid "The anchor template for %s breadcrumbs."
373
  msgstr "%sのリンク書式"
374
 
375
+ #: ../breadcrumb_navxt_admin.php:623
376
  #, php-format
377
  msgid "%s Root Page"
378
  msgstr "%s ルートページ"
379
 
380
+ #: ../breadcrumb_navxt_admin.php:626
381
  msgid "&mdash; Select &mdash;"
382
  msgstr "&mdash; 選択 &mdash;"
383
 
384
+ #: ../breadcrumb_navxt_admin.php:633
385
  #, php-format
386
  msgid "%s Taxonomy Display"
387
  msgstr "タクソノミー「%s」の表示"
388
 
389
+ #: ../breadcrumb_navxt_admin.php:633
390
  #, php-format
391
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
392
  msgstr "パンくずリスト上の%sにつながるタクソノミーを表示"
393
 
394
+ #: ../breadcrumb_navxt_admin.php:637
395
  #, php-format
396
  msgid "%s Taxonomy"
397
  msgstr "タクソノミー「%s 」"
398
 
399
+ #: ../breadcrumb_navxt_admin.php:666
400
  msgid "Category Prefix"
401
  msgstr "カテゴリー接頭辞"
402
 
403
+ #: ../breadcrumb_navxt_admin.php:666
404
  msgid "Applied before the anchor on all category breadcrumbs."
405
  msgstr "すべてのカテゴリーリンクの前に適用"
406
 
407
+ #: ../breadcrumb_navxt_admin.php:667
408
  msgid "Category Suffix"
409
  msgstr "カテゴリー接尾辞"
410
 
411
+ #: ../breadcrumb_navxt_admin.php:667
412
  msgid "Applied after the anchor on all category breadcrumbs."
413
  msgstr "すべてのカテゴリーリンクの後に適用"
414
 
415
+ #: ../breadcrumb_navxt_admin.php:668
416
  msgid "Category Anchor"
417
  msgstr "カテゴリーリンク"
418
 
419
+ #: ../breadcrumb_navxt_admin.php:668
420
  msgid "The anchor template for category breadcrumbs."
421
  msgstr "カテゴリーのリンク書式"
422
 
423
+ #: ../breadcrumb_navxt_admin.php:669
424
  msgid "Archive by Category Prefix"
425
  msgstr "カテゴリーアーカイブの接頭辞"
426
 
427
+ #: ../breadcrumb_navxt_admin.php:669
428
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
429
  msgstr "カテゴリーアーカイブがアクティブページの場合に接頭辞として配置"
430
 
431
+ #: ../breadcrumb_navxt_admin.php:670
432
  msgid "Archive by Category Suffix"
433
  msgstr "カテゴリーアーカイブの接尾辞"
434
 
435
+ #: ../breadcrumb_navxt_admin.php:670
436
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
437
  msgstr "カテゴリーアーカイブがアクティブページの場合に接尾辞として配置"
438
 
439
+ #: ../breadcrumb_navxt_admin.php:678
440
  msgid "Tag Prefix"
441
  msgstr "タグ接頭辞"
442
 
443
+ #: ../breadcrumb_navxt_admin.php:678
444
  msgid "Applied before the anchor on all tag breadcrumbs."
445
  msgstr "すべてのタグリンクの前に適用"
446
 
447
+ #: ../breadcrumb_navxt_admin.php:679
448
  msgid "Tag Suffix"
449
  msgstr "タグ接尾辞"
450
 
451
+ #: ../breadcrumb_navxt_admin.php:679
452
  msgid "Applied after the anchor on all tag breadcrumbs."
453
  msgstr "すべてのタグリンクの後に適用"
454
 
455
+ #: ../breadcrumb_navxt_admin.php:680
456
  msgid "Tag Anchor"
457
  msgstr "タグリンク"
458
 
459
+ #: ../breadcrumb_navxt_admin.php:680
460
  msgid "The anchor template for tag breadcrumbs."
461
  msgstr "タグのリンク書式"
462
 
463
+ #: ../breadcrumb_navxt_admin.php:681
464
  msgid "Archive by Tag Prefix"
465
  msgstr "タグアーカイブの接頭辞"
466
 
467
+ #: ../breadcrumb_navxt_admin.php:681
468
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
469
  msgstr "タグアーカイブがアクティブページの場合に接頭辞として配置"
470
 
471
+ #: ../breadcrumb_navxt_admin.php:682
472
  msgid "Archive by Tag Suffix"
473
  msgstr "タグアーカイブの接尾辞"
474
 
475
+ #: ../breadcrumb_navxt_admin.php:682
476
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
477
  msgstr "タグアーカイブがアクティブページの場合に接尾辞として配置"
478
 
479
+ #: ../breadcrumb_navxt_admin.php:708
480
  #, php-format
481
  msgid "Applied before the anchor on all %s breadcrumbs."
482
  msgstr "すべての%sリンクの前に適用されます。"
483
 
484
+ #: ../breadcrumb_navxt_admin.php:709
485
  #, php-format
486
  msgid "Applied after the anchor on all %s breadcrumbs."
487
  msgstr "すべての%sリンクの後に適用されます。"
488
 
489
+ #: ../breadcrumb_navxt_admin.php:711
490
  #, php-format
491
  msgid "Archive by %s Prefix"
492
  msgstr "%sアーカイブの接頭辞"
493
 
494
+ #: ../breadcrumb_navxt_admin.php:711
495
  #, php-format
496
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
497
  msgstr "%sアーカイブがアクティブページの場合に接頭辞として配置"
498
 
499
+ #: ../breadcrumb_navxt_admin.php:712
500
  #, php-format
501
  msgid "Archive by %s Suffix"
502
  msgstr "%sアーカイブの接尾辞"
503
 
504
+ #: ../breadcrumb_navxt_admin.php:712
505
  #, php-format
506
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
507
  msgstr "%sアーカイブがアクティブページの場合に接尾辞として配置"
508
 
509
+ #: ../breadcrumb_navxt_admin.php:721
510
  msgid "Date Archives"
511
  msgstr "日付アーカイブ"
512
 
513
+ #: ../breadcrumb_navxt_admin.php:724
514
  msgid "Date Anchor"
515
  msgstr "日付リンク"
516
 
517
+ #: ../breadcrumb_navxt_admin.php:724
518
  msgid "The anchor template for date breadcrumbs."
519
  msgstr "日付のリンク書式"
520
 
521
+ #: ../breadcrumb_navxt_admin.php:725
522
  msgid "Archive by Date Prefix"
523
  msgstr "日付アーカイブの接頭辞"
524
 
525
+ #: ../breadcrumb_navxt_admin.php:725
526
  msgid "Applied before the anchor on all date breadcrumbs."
527
  msgstr "すべての日付リンクの前に適用"
528
 
529
+ #: ../breadcrumb_navxt_admin.php:726
530
  msgid "Archive by Date Suffix"
531
  msgstr "日付アーカイブの接尾辞"
532
 
533
+ #: ../breadcrumb_navxt_admin.php:726
534
  msgid "Applied after the anchor on all date breadcrumbs."
535
  msgstr "すべての日付リンクの後に適用"
536
 
537
+ #: ../breadcrumb_navxt_admin.php:731
538
  msgid "Miscellaneous"
539
  msgstr "その他"
540
 
541
+ #: ../breadcrumb_navxt_admin.php:734
542
  msgid "Author Prefix"
543
  msgstr "投稿者接頭辞"
544
 
545
+ #: ../breadcrumb_navxt_admin.php:735
546
  msgid "Author Suffix"
547
  msgstr "投稿者接尾辞"
548
 
549
+ #: ../breadcrumb_navxt_admin.php:736
550
  msgid "Author Display Format"
551
  msgstr "投稿者表示形式"
552
 
553
+ #: ../breadcrumb_navxt_admin.php:736
554
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
555
  msgstr "「display_name」はユーザプロフィール内の「ブログ上の表示名」が使用されます。その他もユーザプロフィール内の設定内容が適用されます。"
556
 
557
+ #: ../breadcrumb_navxt_admin.php:737
558
  msgid "Search Prefix"
559
  msgstr "検索結果接頭辞"
560
 
561
+ #: ../breadcrumb_navxt_admin.php:738
562
  msgid "Search Suffix"
563
  msgstr "検索結果接尾辞"
564
 
565
+ #: ../breadcrumb_navxt_admin.php:739
566
  msgid "Search Anchor"
567
  msgstr "検索結果リンク"
568
 
569
+ #: ../breadcrumb_navxt_admin.php:739
570
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
571
  msgstr "検索結果のリンク書式(検索結果が複数ページに及ぶ場合のみに適用)"
572
 
573
+ #: ../breadcrumb_navxt_admin.php:740
574
  msgid "404 Title"
575
  msgstr "404タイトル"
576
 
577
+ #: ../breadcrumb_navxt_admin.php:741
578
  msgid "404 Prefix"
579
  msgstr "404接頭辞"
580
 
581
+ #: ../breadcrumb_navxt_admin.php:742
582
  msgid "404 Suffix"
583
  msgstr "404接尾辞"
584
 
585
+ #: ../breadcrumb_navxt_class.php:217
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
586
  msgid "Blog"
587
  msgstr "ブログ"
588
 
589
+ #: ../breadcrumb_navxt_class.php:236
590
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
591
  msgstr "<a title=\"再読み込み\" href=\"%link%\">"
592
 
593
+ #: ../breadcrumb_navxt_class.php:281
594
  msgid "404"
595
  msgstr "404"
596
 
597
+ #: ../breadcrumb_navxt_class.php:284
598
  msgid "Search results for &#39;"
599
  msgstr "&#39;の検索結果"
600
 
601
+ #: ../breadcrumb_navxt_class.php:288
602
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
603
  msgstr "<a title=\"%title%の検索結果の最初のページに戻る\" href=\"%link%\">"
604
 
605
+ #: ../breadcrumb_navxt_class.php:295
606
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
607
  msgstr "<a title=\"%title%\" href=\"%link%\">"
608
 
609
+ #: ../breadcrumb_navxt_class.php:298
610
  msgid "Articles by: "
611
  msgstr "投稿者:"
612
 
613
+ #: ../breadcrumb_navxt_class.php:302
614
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
615
  msgstr "<a title=\"%title%\" href=\"%link%\">"
616
 
617
+ #: ../breadcrumb_navxt_class.php:311
618
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
619
  msgstr "<a title=\"%title%\" href=\"%link%\">"
620
 
621
+ #: ../breadcrumb_navxt_class.php:314
622
  msgid "Archive by category &#39;"
623
  msgstr "カテゴリー &#39;"
624
 
625
+ #: ../breadcrumb_navxt_class.php:318
626
  msgid "Archive by tag &#39;"
627
  msgstr "タグ &#39;"
628
 
629
+ #: ../breadcrumb_navxt_class.php:321
630
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
631
  msgstr "<a title=\"%title%\" href=\"%link%\">"
632
 
633
+ #: ../breadcrumb_navxt_class.php:483
634
  msgid "Un"
635
  msgstr "無"
636
 
637
+ #: ../breadcrumb_navxt_widget.php:24
638
+ msgid "Adds a breadcrumb trail to your sidebar"
639
+ msgstr "サイドバーにパンくずリストを追加"
640
+
641
+ #: ../breadcrumb_navxt_widget.php:85
642
+ msgid "Title:"
643
+ msgstr "タイトル:"
644
+
645
+ #: ../breadcrumb_navxt_widget.php:89
646
+ msgid "Output trail as:"
647
+ msgstr "表示形式:"
648
+
649
+ #: ../breadcrumb_navxt_widget.php:91
650
+ msgid "List"
651
+ msgstr "リスト"
652
+
653
+ #: ../breadcrumb_navxt_widget.php:92
654
+ msgid "RDFa"
655
+ msgstr "RDFa"
656
+
657
+ #: ../breadcrumb_navxt_widget.php:93
658
+ msgid "Microformat"
659
+ msgstr "マイクロフォーマット"
660
+
661
+ #: ../breadcrumb_navxt_widget.php:94
662
+ msgid "Plain"
663
+ msgstr "シンプル"
664
+
665
+ #: ../breadcrumb_navxt_widget.php:99
666
+ msgid "Link the breadcrumbs"
667
+ msgstr "パンくずリストにリンク"
668
+
669
+ #: ../breadcrumb_navxt_widget.php:101
670
+ msgid "Reverse the order of the trail"
671
+ msgstr "表示順を逆にする。"
672
+
673
+ #: ../breadcrumb_navxt_widget.php:103
674
+ msgid "Hide the trail on the front page"
675
+ msgstr "フロントページ上では非表示"
676
+
677
+ #: ../mtekk_admin_class.php:59
678
+ msgid "Undo"
679
+ msgstr "元に戻す"
680
+
681
+ #: ../mtekk_admin_class.php:67
682
+ #: ../mtekk_admin_class.php:191
683
+ msgid "Migrate now."
684
+ msgstr "すぐに移行"
685
+
686
+ #: ../mtekk_admin_class.php:164
687
+ msgid "Settings"
688
+ msgstr "設定"
689
+
690
+ #: ../mtekk_admin_class.php:191
691
+ msgid "Your settings are out of date."
692
+ msgstr "新しい設定に移行してください。"
693
+
694
+ #: ../mtekk_admin_class.php:191
695
+ msgid "Migrate the settings now."
696
+ msgstr "すぐに設定を移行"
697
+
698
+ #: ../mtekk_admin_class.php:198
699
+ msgid "Your plugin install is incomplete."
700
+ msgstr "プラグインのインストールは完了していません。"
701
+
702
+ #: ../mtekk_admin_class.php:198
703
+ msgid "Load default settings now."
704
+ msgstr "初期設定を読み込む"
705
+
706
+ #: ../mtekk_admin_class.php:198
707
+ msgid "Complete now."
708
+ msgstr "すぐに完了する。"
709
+
710
+ #: ../mtekk_admin_class.php:311
711
+ msgid "Settings successfully imported from the uploaded file."
712
+ msgstr "アップロードしたファイルより設定が正常に反映されました。"
713
+
714
+ #: ../mtekk_admin_class.php:311
715
+ msgid "Undo the options import."
716
+ msgstr "オプションのインポートを元に戻す。"
717
+
718
+ #: ../mtekk_admin_class.php:316
719
+ msgid "Importing settings from file failed."
720
+ msgstr "設定ファイルのインポートに失敗しました。"
721
+
722
+ #: ../mtekk_admin_class.php:335
723
+ msgid "Settings successfully reset to the default values."
724
+ msgstr "設定が初期値に戻されました。"
725
+
726
+ #: ../mtekk_admin_class.php:335
727
+ msgid "Undo the options reset."
728
+ msgstr "オプションのリセットを元に戻す。"
729
+
730
+ #: ../mtekk_admin_class.php:352
731
+ msgid "Settings successfully undid the last operation."
732
+ msgstr "設定が正常に最後の操作を元に戻した。"
733
+
734
+ #: ../mtekk_admin_class.php:352
735
+ msgid "Undo the last undo operation."
736
+ msgstr "最後に戻した操作を元に戻す。"
737
+
738
+ #: ../mtekk_admin_class.php:387
739
+ msgid "Settings successfully migrated."
740
+ msgstr "正常に設定が移行されました。"
741
+
742
+ #: ../mtekk_admin_class.php:394
743
+ msgid "Default settings successfully installed."
744
+ msgstr "正常に初期設定がされました。"
745
+
746
+ #: ../mtekk_admin_class.php:425
747
+ #, php-format
748
+ msgid "Get help with \"%s\""
749
+ msgstr "\"%s\" のサポートを受ける"
750
+
751
+ #: ../mtekk_admin_class.php:495
752
+ msgid "Import/Export/Reset Settings"
753
+ msgstr "インポート/エクスポート/リセット設定"
754
+
755
+ #: ../mtekk_admin_class.php:496
756
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
757
+ msgstr "XMLファイルより設定をインポートし、現在の設定をXMLファイルにエクスポート、または初期値に戻す。"
758
+
759
+ #: ../mtekk_admin_class.php:499
760
+ msgid "Settings File"
761
+ msgstr "設定ファイル"
762
+
763
+ #: ../mtekk_admin_class.php:502
764
+ msgid "Select a XML settings file to upload and import settings from."
765
+ msgstr "XML設定ファイルを選択の上、アップロードし、設定を読み込んでください。"
766
+
767
  #~ msgid "Untagged"
768
  #~ msgstr "タグなし"
769
 
languages/breadcrumb_navxt-sv_SE.mo CHANGED
Binary file
languages/breadcrumb_navxt-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2010-11-19 01:50+0000\n"
6
- "PO-Revision-Date: 2010-11-20 18:03+0100\n"
7
  "Last-Translator: Patrik Spathon <patrik@patrikspathon.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,701 +14,738 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
- #: breadcrumb_navxt_admin.php:29
18
- #, php-format
19
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
20
- msgstr "Din PHP version är för gammal, varvänlig och uppgradera till en nyare version. Din version är %s, pluginet kräver %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
- #: breadcrumb_navxt_admin.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "Insufficient privileges to proceed."
24
  msgstr "Otillräcklig privilegier för att fortsätta."
25
 
26
- #: breadcrumb_navxt_admin.php:211
27
- #: breadcrumb_navxt_class.php:203
28
  msgid "Home"
29
  msgstr "Hem"
30
 
31
- #: breadcrumb_navxt_admin.php:213
32
- #: breadcrumb_navxt_admin.php:554
33
- #: breadcrumb_navxt_admin.php:745
34
- #: breadcrumb_navxt_class.php:126
35
- #: breadcrumb_navxt_class.php:205
36
- #: breadcrumb_navxt_class.php:215
37
  #: breadcrumb_navxt_class.php:219
38
- #: breadcrumb_navxt_class.php:243
39
- #: breadcrumb_navxt_class.php:259
 
40
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
41
  msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
42
 
43
- #: breadcrumb_navxt_admin.php:292
44
  msgid "Settings successfully saved."
45
  msgstr "Inställningarna sparade."
46
 
47
- #: breadcrumb_navxt_admin.php:292
 
48
  msgid "Undo the options save."
49
  msgstr "Ångra sparade inställningar."
50
 
51
- #: breadcrumb_navxt_admin.php:313
52
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
54
  msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
55
 
56
- #: breadcrumb_navxt_admin.php:314
57
  msgid "Go to the Breadcrumb NavXT online documentation"
58
  msgstr "Gå till Breadcrumb NavXT online dokumentation"
59
 
60
- #: breadcrumb_navxt_admin.php:315
 
 
 
 
61
  msgid "Quick Start Information"
62
  msgstr "Snabbstart"
63
 
64
- #: breadcrumb_navxt_admin.php:315
65
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
66
  msgstr "För inställningarna på den här sidan att börja gälla måste du antingen använda den medföljande Breadcrumb NavXT widget, eller placera koden snutten nedan i ditt tema."
67
 
68
- #: breadcrumb_navxt_admin.php:316
69
  msgid "Breadcrumb trail with separators"
70
  msgstr "Breadcrumb spår med separator"
71
 
72
- #: breadcrumb_navxt_admin.php:317
73
  msgid "Breadcrumb trail in list form"
74
  msgstr "Breadcrumb spår i list form"
75
 
76
- #: breadcrumb_navxt_admin.php:398
77
- #: mtekk_admin_class.php:482
78
- msgid "Import"
79
- msgstr "Importera"
80
-
81
- #: breadcrumb_navxt_admin.php:398
82
- #: mtekk_admin_class.php:483
83
- msgid "Export"
84
- msgstr "Exportera"
85
-
86
- #: breadcrumb_navxt_admin.php:398
87
- #: mtekk_admin_class.php:484
88
- msgid "Reset"
89
- msgstr "Återställ"
90
-
91
- #: breadcrumb_navxt_admin.php:419
92
  msgid "Breadcrumb NavXT Settings"
93
  msgstr "Breadcrumb NavXT Inställningar"
94
 
95
- #: breadcrumb_navxt_admin.php:427
96
  msgid "General"
97
  msgstr "Allmänt"
98
 
99
- #: breadcrumb_navxt_admin.php:430
100
  msgid "Breadcrumb Separator"
101
  msgstr "Breadcrumb separator"
102
 
103
- #: breadcrumb_navxt_admin.php:430
104
  msgid "Placed in between each breadcrumb."
105
  msgstr "Placeras i mellan varje breadcrumb."
106
 
107
- #: breadcrumb_navxt_admin.php:431
108
  msgid "Breadcrumb Max Title Length"
109
  msgstr "Breadcrumb max titel längd"
110
 
111
- #: breadcrumb_navxt_admin.php:435
112
  msgid "Home Breadcrumb"
113
  msgstr "Hem Breadcrumb"
114
 
115
- #: breadcrumb_navxt_admin.php:440
116
  msgid "Place the home breadcrumb in the trail."
117
  msgstr "Placera hem breadcrumb i spåret."
118
 
119
- #: breadcrumb_navxt_admin.php:445
120
  msgid "Home Title: "
121
  msgstr "Hem titel: "
122
 
123
- #: breadcrumb_navxt_admin.php:453
124
  msgid "Home Prefix"
125
  msgstr "Hem Prefix"
126
 
127
- #: breadcrumb_navxt_admin.php:454
128
  msgid "Home Suffix"
129
  msgstr "hem Suffix"
130
 
131
- #: breadcrumb_navxt_admin.php:455
132
  msgid "Home Anchor"
133
  msgstr "Hem Länk "
134
 
135
- #: breadcrumb_navxt_admin.php:455
136
  msgid "The anchor template for the home breadcrumb."
137
  msgstr "Länk mall för hem breadcrumb."
138
 
139
- #: breadcrumb_navxt_admin.php:456
140
  msgid "Blog Breadcrumb"
141
  msgstr "Blogg breadcrumb"
142
 
143
- #: breadcrumb_navxt_admin.php:456
144
  msgid "Place the blog breadcrumb in the trail."
145
  msgstr "Placera blogg breadcrumb i spåret."
146
 
147
- #: breadcrumb_navxt_admin.php:457
148
  msgid "Blog Anchor"
149
  msgstr "Blogg länk"
150
 
151
- #: breadcrumb_navxt_admin.php:457
152
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
153
  msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
154
 
155
- #: breadcrumb_navxt_admin.php:461
156
  msgid "Main Site Breadcrumb"
157
  msgstr "Huvudsidans Breadcrumb"
158
 
159
- #: breadcrumb_navxt_admin.php:466
160
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
161
  msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
162
 
163
- #: breadcrumb_navxt_admin.php:471
164
  msgid "Main Site Home Title: "
165
  msgstr "Huvudsidans hem titel: "
166
 
167
- #: breadcrumb_navxt_admin.php:479
168
  msgid "Main Site Home Prefix"
169
  msgstr "Huvudsidans hem Prefix"
170
 
171
- #: breadcrumb_navxt_admin.php:479
172
- #: breadcrumb_navxt_admin.php:480
173
  msgid "Used for the main site home breadcrumb in an multisite setup"
174
  msgstr "Används för huvudsidans hem breadcrumb i en multisite"
175
 
176
- #: breadcrumb_navxt_admin.php:480
177
  msgid "Main Site Home Suffix"
178
  msgstr "Huvudsidans hem Suffix"
179
 
180
- #: breadcrumb_navxt_admin.php:481
181
  msgid "Main Site Home Anchor"
182
  msgstr "Huvudsidans hem Länk "
183
 
184
- #: breadcrumb_navxt_admin.php:481
185
  msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
186
  msgstr "Länk mall för huvudsidans hem, används endast i multisite."
187
 
188
- #: breadcrumb_navxt_admin.php:486
189
  msgid "Current Item"
190
  msgstr "Nuvarande punkt"
191
 
192
- #: breadcrumb_navxt_admin.php:489
193
  msgid "Link Current Item"
194
  msgstr "Länk Nuvarande punkt"
195
 
196
- #: breadcrumb_navxt_admin.php:489
197
  msgid "Yes"
198
  msgstr "Ja"
199
 
200
- #: breadcrumb_navxt_admin.php:490
201
  msgid "Current Item Prefix"
202
  msgstr "Nuvarande punkt Prefix"
203
 
204
- #: breadcrumb_navxt_admin.php:490
205
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
206
  msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
207
 
208
- #: breadcrumb_navxt_admin.php:491
209
  msgid "Current Item Suffix"
210
  msgstr "Nuvarande punkt Suffix"
211
 
212
- #: breadcrumb_navxt_admin.php:491
213
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
214
  msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
215
 
216
- #: breadcrumb_navxt_admin.php:492
217
  msgid "Current Item Anchor"
218
  msgstr "Nuvarande punkt Länk"
219
 
220
- #: breadcrumb_navxt_admin.php:492
221
  msgid "The anchor template for current item breadcrumbs."
222
  msgstr "Länk mall för nuvarande punkt breadcrumbs."
223
 
224
- #: breadcrumb_navxt_admin.php:493
225
  msgid "Paged Breadcrumb"
226
  msgstr ""
227
 
228
- #: breadcrumb_navxt_admin.php:493
229
  msgid "Include the paged breadcrumb in the breadcrumb trail."
230
  msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
231
 
232
- #: breadcrumb_navxt_admin.php:493
233
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
234
  msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
235
 
236
- #: breadcrumb_navxt_admin.php:494
237
  msgid "Paged Prefix"
238
  msgstr ""
239
 
240
- #: breadcrumb_navxt_admin.php:495
241
  msgid "Paged Suffix"
242
  msgstr ""
243
 
244
- #: breadcrumb_navxt_admin.php:500
245
  msgid "Posts &amp; Pages"
246
  msgstr "Inlägg &amp; Sidor"
247
 
248
- #: breadcrumb_navxt_admin.php:503
249
  msgid "Post Prefix"
250
  msgstr "Inläggs Prefix"
251
 
252
- #: breadcrumb_navxt_admin.php:504
253
  msgid "Post Suffix"
254
  msgstr "Inläggs Suffix"
255
 
256
- #: breadcrumb_navxt_admin.php:505
257
  msgid "Post Anchor"
258
  msgstr "Inläggs Länk"
259
 
260
- #: breadcrumb_navxt_admin.php:505
261
  msgid "The anchor template for post breadcrumbs."
262
  msgstr "Länk mall för inläggs breadcrumbs."
263
 
264
- #: breadcrumb_navxt_admin.php:506
265
  msgid "Post Taxonomy Display"
266
  msgstr "Inläggs taxonomi visning"
267
 
268
- #: breadcrumb_navxt_admin.php:506
269
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
270
  msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
271
 
272
- #: breadcrumb_navxt_admin.php:510
273
  msgid "Post Taxonomy"
274
  msgstr "Inäggs taxonomi"
275
 
276
- #: breadcrumb_navxt_admin.php:514
277
- #: breadcrumb_navxt_admin.php:631
278
  msgid "Categories"
279
  msgstr "Kategorier"
280
 
281
- #: breadcrumb_navxt_admin.php:515
 
282
  msgid "Dates"
283
  msgstr "Datum"
284
 
285
- #: breadcrumb_navxt_admin.php:516
286
- #: breadcrumb_navxt_admin.php:643
287
  msgid "Tags"
288
  msgstr "Taggar"
289
 
290
- #: breadcrumb_navxt_admin.php:517
291
- #: breadcrumb_navxt_admin.php:610
292
  msgid "Pages"
293
  msgstr "Sidor"
294
 
295
- #: breadcrumb_navxt_admin.php:528
296
- #: breadcrumb_navxt_admin.php:621
297
  msgid "The taxonomy which the breadcrumb trail will show."
298
  msgstr "Den taxonomi som breadcrumb kommer att visa."
299
 
300
- #: breadcrumb_navxt_admin.php:532
301
  msgid "Page Prefix"
302
  msgstr "Sido Prefix"
303
 
304
- #: breadcrumb_navxt_admin.php:533
305
  msgid "Page Suffix"
306
  msgstr "Sido Suffix"
307
 
308
- #: breadcrumb_navxt_admin.php:534
309
  msgid "Page Anchor"
310
  msgstr "Sido Länk"
311
 
312
- #: breadcrumb_navxt_admin.php:534
313
  msgid "The anchor template for page breadcrumbs."
314
  msgstr "Länk mall för sido breadcrumbs."
315
 
316
- #: breadcrumb_navxt_admin.php:535
317
  msgid "Attachment Prefix"
318
  msgstr ""
319
 
320
- #: breadcrumb_navxt_admin.php:536
321
  msgid "Attachment Suffix"
322
  msgstr ""
323
 
324
- #: breadcrumb_navxt_admin.php:585
325
- #: breadcrumb_navxt_admin.php:679
326
- #, php-format
327
  msgid "%s Prefix"
328
  msgstr "%s Prefix"
329
 
330
- #: breadcrumb_navxt_admin.php:586
331
- #: breadcrumb_navxt_admin.php:680
332
- #, php-format
333
  msgid "%s Suffix"
334
  msgstr "%s Suffix"
335
 
336
- #: breadcrumb_navxt_admin.php:587
337
- #: breadcrumb_navxt_admin.php:681
338
- #, php-format
339
  msgid "%s Anchor"
340
  msgstr "%s Länk"
341
 
342
- #: breadcrumb_navxt_admin.php:587
343
- #: breadcrumb_navxt_admin.php:681
344
- #, php-format
345
  msgid "The anchor template for %s breadcrumbs."
346
  msgstr "Länk mall för %s breadcrumbs."
347
 
348
- #: breadcrumb_navxt_admin.php:592
349
- #, php-format
350
  msgid "%s Root Page"
351
  msgstr "%s rotsida"
352
 
353
- #: breadcrumb_navxt_admin.php:595
354
  msgid "&mdash; Select &mdash;"
355
  msgstr "&mdash; Välj &mdash;"
356
 
357
- #: breadcrumb_navxt_admin.php:602
358
- #, php-format
359
  msgid "%s Taxonomy Display"
360
  msgstr "%s Ttaxonomi visning"
361
 
362
- #: breadcrumb_navxt_admin.php:602
363
- #, php-format
364
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
365
  msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
366
 
367
- #: breadcrumb_navxt_admin.php:606
368
- #, php-format
369
  msgid "%s Taxonomy"
370
  msgstr "%s Taxonomi"
371
 
372
- #: breadcrumb_navxt_admin.php:634
373
  msgid "Category Prefix"
374
  msgstr "Kategori prefix"
375
 
376
- #: breadcrumb_navxt_admin.php:634
377
  msgid "Applied before the anchor on all category breadcrumbs."
378
  msgstr "Tillämpad innan länken på alla kategori breadcrumb"
379
 
380
- #: breadcrumb_navxt_admin.php:635
381
  msgid "Category Suffix"
382
  msgstr "Kategori Suffix"
383
 
384
- #: breadcrumb_navxt_admin.php:635
385
  msgid "Applied after the anchor on all category breadcrumbs."
386
  msgstr "Tillämpad efter länken på alla kategori breadcrumb"
387
 
388
- #: breadcrumb_navxt_admin.php:636
389
  msgid "Category Anchor"
390
  msgstr "Kategori länk"
391
 
392
- #: breadcrumb_navxt_admin.php:636
393
  msgid "The anchor template for category breadcrumbs."
394
  msgstr "länk mall för kategori breadcrumbs"
395
 
396
- #: breadcrumb_navxt_admin.php:637
397
  msgid "Archive by Category Prefix"
398
  msgstr "Arkiv av kategori prefix"
399
 
400
- #: breadcrumb_navxt_admin.php:637
401
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
402
  msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
403
 
404
- #: breadcrumb_navxt_admin.php:638
405
  msgid "Archive by Category Suffix"
406
  msgstr "Arkiv av Kategori Suffix"
407
 
408
- #: breadcrumb_navxt_admin.php:638
409
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
410
  msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
411
 
412
- #: breadcrumb_navxt_admin.php:646
413
  msgid "Tag Prefix"
414
  msgstr "Tagg Prefix"
415
 
416
- #: breadcrumb_navxt_admin.php:646
417
  msgid "Applied before the anchor on all tag breadcrumbs."
418
  msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
419
 
420
- #: breadcrumb_navxt_admin.php:647
421
  msgid "Tag Suffix"
422
  msgstr "Tag Suffix"
423
 
424
- #: breadcrumb_navxt_admin.php:647
425
  msgid "Applied after the anchor on all tag breadcrumbs."
426
  msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
427
 
428
- #: breadcrumb_navxt_admin.php:648
429
  msgid "Tag Anchor"
430
  msgstr "Tagg Länk"
431
 
432
- #: breadcrumb_navxt_admin.php:648
433
  msgid "The anchor template for tag breadcrumbs."
434
  msgstr "Länk mall för tagg breadcrumbs."
435
 
436
- #: breadcrumb_navxt_admin.php:649
437
  msgid "Archive by Tag Prefix"
438
  msgstr "Arkiv av Tagg Prefix"
439
 
440
- #: breadcrumb_navxt_admin.php:649
441
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
442
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
443
 
444
- #: breadcrumb_navxt_admin.php:650
445
  msgid "Archive by Tag Suffix"
446
  msgstr "Arkiv av Tagg Suffix"
447
 
448
- #: breadcrumb_navxt_admin.php:650
449
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
450
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
451
 
452
- #: breadcrumb_navxt_admin.php:679
453
- #, php-format
454
  msgid "Applied before the anchor on all %s breadcrumbs."
455
  msgstr "Tillämpad innan länken på alla %s breadcrumbs."
456
 
457
- #: breadcrumb_navxt_admin.php:680
458
- #, php-format
459
  msgid "Applied after the anchor on all %s breadcrumbs."
460
  msgstr "Tillämpad efter länken på alla %s breadcrumbs."
461
 
462
- #: breadcrumb_navxt_admin.php:682
463
- #, php-format
464
  msgid "Archive by %s Prefix"
465
  msgstr "Arkiv av %s Prefix"
466
 
467
- #: breadcrumb_navxt_admin.php:682
468
- #, php-format
469
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
470
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
471
 
472
- #: breadcrumb_navxt_admin.php:683
473
- #, php-format
474
  msgid "Archive by %s Suffix"
475
  msgstr "Arkiv av %s Suffix"
476
 
477
- #: breadcrumb_navxt_admin.php:683
478
- #, php-format
479
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
480
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
481
 
482
- #: breadcrumb_navxt_admin.php:692
483
  msgid "Date Archives"
484
  msgstr "Datum Arkiv"
485
 
486
- #: breadcrumb_navxt_admin.php:695
487
  msgid "Date Anchor"
488
  msgstr "Datum länk"
489
 
490
- #: breadcrumb_navxt_admin.php:695
491
  msgid "The anchor template for date breadcrumbs."
492
  msgstr "Länk mall för datum breadcrumbs."
493
 
494
- #: breadcrumb_navxt_admin.php:696
495
  msgid "Archive by Date Prefix"
496
  msgstr "Arkiv av datum Prefix"
497
 
498
- #: breadcrumb_navxt_admin.php:696
499
  msgid "Applied before the anchor on all date breadcrumbs."
500
  msgstr "Tillämpad innan länken på alla datum breadcrumbs."
501
 
502
- #: breadcrumb_navxt_admin.php:697
503
  msgid "Archive by Date Suffix"
504
  msgstr "Arkiv av daum suffix"
505
 
506
- #: breadcrumb_navxt_admin.php:697
507
  msgid "Applied after the anchor on all date breadcrumbs."
508
  msgstr "Tillämpad efter länken på alla datum breadcrumbs."
509
 
510
- #: breadcrumb_navxt_admin.php:702
511
  msgid "Miscellaneous"
512
  msgstr "Diverse"
513
 
514
- #: breadcrumb_navxt_admin.php:705
515
  msgid "Author Prefix"
516
  msgstr "Författar Prefix"
517
 
518
- #: breadcrumb_navxt_admin.php:706
519
  msgid "Author Suffix"
520
  msgstr "Författar Suffix"
521
 
522
- #: breadcrumb_navxt_admin.php:707
523
  msgid "Author Display Format"
524
  msgstr "Författar visnings format"
525
 
526
- #: breadcrumb_navxt_admin.php:707
527
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
528
  msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
529
 
530
- #: breadcrumb_navxt_admin.php:708
531
  msgid "Search Prefix"
532
  msgstr "Sök Prefix"
533
 
534
- #: breadcrumb_navxt_admin.php:709
535
  msgid "Search Suffix"
536
  msgstr "Sök Suffix"
537
 
538
- #: breadcrumb_navxt_admin.php:710
539
  msgid "Search Anchor"
540
  msgstr "Sök Länk"
541
 
542
- #: breadcrumb_navxt_admin.php:710
543
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
544
  msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
545
 
546
- #: breadcrumb_navxt_admin.php:711
547
  msgid "404 Title"
548
  msgstr "404 Titel"
549
 
550
- #: breadcrumb_navxt_admin.php:712
551
  msgid "404 Prefix"
552
  msgstr "404 Prefix"
553
 
554
- #: breadcrumb_navxt_admin.php:713
555
  msgid "404 Suffix"
556
  msgstr "404 Suffix"
557
 
558
- #: breadcrumb_navxt_admin.php:718
559
  msgid "Save Changes"
560
  msgstr "Spara ändringar"
561
 
562
- #: breadcrumb_navxt_class.php:213
563
  msgid "Blog"
564
  msgstr "Blogg"
565
 
566
- #: breadcrumb_navxt_class.php:232
567
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
568
  msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
569
 
570
- #: breadcrumb_navxt_class.php:277
571
  msgid "404"
572
  msgstr "404"
573
 
574
- #: breadcrumb_navxt_class.php:280
575
  msgid "Search results for &#39;"
576
  msgstr "Sök resultat för &#39;"
577
 
578
- #: breadcrumb_navxt_class.php:284
579
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
580
  msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
581
 
582
- #: breadcrumb_navxt_class.php:291
583
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
584
  msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
585
 
586
- #: breadcrumb_navxt_class.php:294
587
  msgid "Articles by: "
588
  msgstr "Artiklar av:"
589
 
590
- #: breadcrumb_navxt_class.php:298
591
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
592
  msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
593
 
594
- #: breadcrumb_navxt_class.php:307
595
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
596
  msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
597
 
598
- #: breadcrumb_navxt_class.php:310
599
  msgid "Archive by category &#39;"
600
  msgstr "Arkiv av kategorin &#39;"
601
 
602
- #: breadcrumb_navxt_class.php:314
603
  msgid "Archive by tag &#39;"
604
  msgstr "Arkiv av tagg &#39;"
605
 
606
- #: breadcrumb_navxt_class.php:317
607
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
608
  msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
609
 
610
- #: breadcrumb_navxt_class.php:478
611
  #, fuzzy
612
- msgid "Un"
613
- msgstr "Ångra"
614
-
615
- #: breadcrumb_navxt_widget.php:24
616
- msgid "Adds a breadcrumb trail to your sidebar"
617
- msgstr "Lägger till breadcrumb till din sidebar"
618
-
619
- #: breadcrumb_navxt_widget.php:72
620
- msgid "Title:"
621
- msgstr "Titel:"
622
-
623
- #: breadcrumb_navxt_widget.php:77
624
- msgid "Output trail as a list"
625
- msgstr "Skriv ut breadcrumb som en lista"
626
-
627
- #: breadcrumb_navxt_widget.php:79
628
- msgid "Link the breadcrumbs"
629
- msgstr "Länka Breadcrumb"
630
-
631
- #: breadcrumb_navxt_widget.php:81
632
- msgid "Reverse the order of the trail"
633
- msgstr "Omvänd ordning i breadcrumb"
634
-
635
- #: breadcrumb_navxt_widget.php:83
636
- msgid "Hide the trail on the front page"
637
- msgstr "Göm spåret på förstasidan"
638
-
639
- #: mtekk_admin_class.php:57
640
- msgid "Undo"
641
- msgstr "Ångra"
642
-
643
- #: mtekk_admin_class.php:64
644
- msgid "Migrate now."
645
- msgstr "Migrera nu."
646
-
647
- #: mtekk_admin_class.php:158
648
- msgid "Settings"
649
- msgstr "Inställningar"
650
-
651
- #: mtekk_admin_class.php:186
652
- msgid "Your settings are out of date."
653
- msgstr "Dina inställningar är föråldrade."
654
-
655
- #: mtekk_admin_class.php:186
656
- msgid "Migrate the settings now."
657
- msgstr "Migrera inställningarna nu."
658
-
659
- #: mtekk_admin_class.php:299
660
- msgid "Settings successfully imported from the uploaded file."
661
- msgstr "Inställningarna importerades framgångsrikt från filen."
662
-
663
- #: mtekk_admin_class.php:299
664
- msgid "Undo the options import."
665
- msgstr "Ångra inställnings importeringen."
666
-
667
- #: mtekk_admin_class.php:304
668
- msgid "Importing settings from file failed."
669
- msgstr "Importering av inställningar från fil misslyckades."
670
-
671
- #: mtekk_admin_class.php:323
672
- msgid "Settings successfully reset to the default values."
673
- msgstr "Inställningarna återställdes till standardvärdena."
674
-
675
- #: mtekk_admin_class.php:323
676
- msgid "Undo the options reset."
677
- msgstr "Ångra inställnings återställningen."
678
-
679
- #: mtekk_admin_class.php:340
680
- msgid "Settings successfully undid the last operation."
681
- msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
682
-
683
- #: mtekk_admin_class.php:340
684
- msgid "Undo the last undo operation."
685
- msgstr "Ångra senaste operationen."
686
-
687
- #: mtekk_admin_class.php:373
688
- msgid "Settings successfully migrated."
689
- msgstr "Inställningarna har migrerats."
690
-
691
- #: mtekk_admin_class.php:403
692
- #, php-format
693
- msgid "Get help with \"%s\""
694
- msgstr "Få hjälp med \"%s\""
695
-
696
- #: mtekk_admin_class.php:473
697
- msgid "Import/Export/Reset Settings"
698
- msgstr "Importera/Exportera/Återställ inställningar"
699
-
700
- #: mtekk_admin_class.php:474
701
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
702
- msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
703
-
704
- #: mtekk_admin_class.php:477
705
- msgid "Settings File"
706
- msgstr "Inställnings fil"
707
-
708
- #: mtekk_admin_class.php:480
709
- msgid "Select a XML settings file to upload and import settings from."
710
- msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
711
-
712
  #~ msgid "Untagged"
713
  #~ msgstr "Otaggad"
714
  #~ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
6
+ "PO-Revision-Date: 2011-02-20 15:00+0100\n"
7
  "Last-Translator: Patrik Spathon <patrik@patrikspathon.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
+ #: breadcrumb_navxt_widget.php:24
18
+ msgid "Adds a breadcrumb trail to your sidebar"
19
+ msgstr "Lägger till breadcrumb till din sidebar"
20
+
21
+ #: breadcrumb_navxt_widget.php:85
22
+ msgid "Title:"
23
+ msgstr "Titel:"
24
+
25
+ #: breadcrumb_navxt_widget.php:89
26
+ msgid "Output trail as:"
27
+ msgstr "Skriv ut breadcrumb som:"
28
+
29
+ #: breadcrumb_navxt_widget.php:91
30
+ msgid "List"
31
+ msgstr "Lista"
32
+
33
+ #: breadcrumb_navxt_widget.php:92
34
+ msgid "RDFa"
35
+ msgstr ""
36
+
37
+ #: breadcrumb_navxt_widget.php:93
38
+ msgid "Microformat"
39
+ msgstr ""
40
+
41
+ #: breadcrumb_navxt_widget.php:94
42
+ msgid "Plain"
43
+ msgstr ""
44
+
45
+ #: breadcrumb_navxt_widget.php:99
46
+ msgid "Link the breadcrumbs"
47
+ msgstr "Länka Breadcrumb"
48
+
49
+ #: breadcrumb_navxt_widget.php:101
50
+ msgid "Reverse the order of the trail"
51
+ msgstr "Omvänd ordning i breadcrumb"
52
+
53
+ #: breadcrumb_navxt_widget.php:103
54
+ msgid "Hide the trail on the front page"
55
+ msgstr "Göm spåret på förstasidan"
56
+
57
+ #: mtekk_admin_class.php:59
58
+ msgid "Undo"
59
+ msgstr "Ångra"
60
+
61
+ #: mtekk_admin_class.php:67
62
+ #: mtekk_admin_class.php:191
63
+ msgid "Migrate now."
64
+ msgstr "Migrera nu."
65
+
66
+ #: mtekk_admin_class.php:164
67
+ msgid "Settings"
68
+ msgstr "Inställningar"
69
+
70
+ #: mtekk_admin_class.php:191
71
+ msgid "Your settings are out of date."
72
+ msgstr "Dina inställningar är föråldrade."
73
+
74
+ #: mtekk_admin_class.php:191
75
+ msgid "Migrate the settings now."
76
+ msgstr "Migrera inställningarna nu."
77
+
78
+ #: mtekk_admin_class.php:198
79
+ msgid "Your plugin install is incomplete."
80
+ msgstr "Installationen är inte klar."
81
+
82
+ #: mtekk_admin_class.php:198
83
+ msgid "Load default settings now."
84
+ msgstr "Ladda default inställningarna nu."
85
+
86
+ #: mtekk_admin_class.php:198
87
+ msgid "Complete now."
88
+ msgstr "Färdigställ nu."
89
+
90
+ #: mtekk_admin_class.php:311
91
+ msgid "Settings successfully imported from the uploaded file."
92
+ msgstr "Inställningarna importerades framgångsrikt från filen."
93
+
94
+ #: mtekk_admin_class.php:311
95
+ msgid "Undo the options import."
96
+ msgstr "Ångra inställnings importeringen."
97
+
98
+ #: mtekk_admin_class.php:316
99
+ msgid "Importing settings from file failed."
100
+ msgstr "Importering av inställningar från fil misslyckades."
101
+
102
+ #: mtekk_admin_class.php:335
103
+ msgid "Settings successfully reset to the default values."
104
+ msgstr "Inställningarna återställdes till standardvärdena."
105
+
106
+ #: mtekk_admin_class.php:335
107
+ msgid "Undo the options reset."
108
+ msgstr "Ångra inställnings återställningen."
109
 
110
+ #: mtekk_admin_class.php:352
111
+ msgid "Settings successfully undid the last operation."
112
+ msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
113
+
114
+ #: mtekk_admin_class.php:352
115
+ msgid "Undo the last undo operation."
116
+ msgstr "Ångra senaste operationen."
117
+
118
+ #: mtekk_admin_class.php:387
119
+ msgid "Settings successfully migrated."
120
+ msgstr "Inställningarna har migrerats."
121
+
122
+ #: mtekk_admin_class.php:394
123
+ msgid "Default settings successfully installed."
124
+ msgstr "Default inställningarna sparade."
125
+
126
+ #: mtekk_admin_class.php:425
127
+ msgid "Get help with \"%s\""
128
+ msgstr "Få hjälp med \"%s\""
129
+
130
+ #: mtekk_admin_class.php:495
131
+ msgid "Import/Export/Reset Settings"
132
+ msgstr "Importera/Exportera/Återställ inställningar"
133
+
134
+ #: mtekk_admin_class.php:496
135
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
136
+ msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
137
+
138
+ #: mtekk_admin_class.php:499
139
+ msgid "Settings File"
140
+ msgstr "Inställnings fil"
141
+
142
+ #: mtekk_admin_class.php:502
143
+ msgid "Select a XML settings file to upload and import settings from."
144
+ msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
145
+
146
+ #: mtekk_admin_class.php:504
147
+ #: breadcrumb_navxt_admin.php:423
148
+ msgid "Import"
149
+ msgstr "Importera"
150
+
151
+ #: mtekk_admin_class.php:505
152
+ #: breadcrumb_navxt_admin.php:423
153
+ msgid "Export"
154
+ msgstr "Exportera"
155
+
156
+ #: mtekk_admin_class.php:506
157
+ #: breadcrumb_navxt_admin.php:423
158
+ msgid "Reset"
159
+ msgstr "Återställ"
160
+
161
+ #: breadcrumb_navxt_admin.php:35
162
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
163
+ msgstr "Din PHP version är för gammal, varvänlig och uppgradera till en nyare version. Din version är %s, Breadcrumb NavXT kräver %s"
164
+
165
+ #: breadcrumb_navxt_admin.php:112
166
  msgid "Insufficient privileges to proceed."
167
  msgstr "Otillräcklig privilegier för att fortsätta."
168
 
169
+ #: breadcrumb_navxt_admin.php:217
170
+ #: breadcrumb_navxt_class.php:207
171
  msgid "Home"
172
  msgstr "Hem"
173
 
174
+ #: breadcrumb_navxt_admin.php:219
175
+ #: breadcrumb_navxt_admin.php:580
176
+ #: breadcrumb_navxt_admin.php:773
177
+ #: breadcrumb_navxt_class.php:130
178
+ #: breadcrumb_navxt_class.php:209
 
179
  #: breadcrumb_navxt_class.php:219
180
+ #: breadcrumb_navxt_class.php:223
181
+ #: breadcrumb_navxt_class.php:247
182
+ #: breadcrumb_navxt_class.php:263
183
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
184
  msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
185
 
186
+ #: breadcrumb_navxt_admin.php:304
187
  msgid "Settings successfully saved."
188
  msgstr "Inställningarna sparade."
189
 
190
+ #: breadcrumb_navxt_admin.php:304
191
+ #: breadcrumb_navxt_admin.php:309
192
  msgid "Undo the options save."
193
  msgstr "Ångra sparade inställningar."
194
 
195
+ #: breadcrumb_navxt_admin.php:309
196
+ msgid "Some settings were not saved."
197
+ msgstr "Vissa inställningar sparades inte."
198
+
199
+ #: breadcrumb_navxt_admin.php:310
200
+ msgid "The following settings were not saved:"
201
+ msgstr "Följande inställningar sparades inte:"
202
+
203
+ #: breadcrumb_navxt_admin.php:315
204
+ msgid "Please include this message in your %sbug report%s."
205
+ msgstr "Var vänlig och inkludera detta meddelande i din %sbug rapport%s."
206
+
207
+ #: breadcrumb_navxt_admin.php:315
208
+ #: breadcrumb_navxt_admin.php:339
209
+ msgid "Go to the Breadcrumb NavXT support post for your version."
210
+ msgstr "Gå till Breadcrumb NavXT support och skicka din version."
211
+
212
+ #: breadcrumb_navxt_admin.php:337
213
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
214
  msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
215
 
216
+ #: breadcrumb_navxt_admin.php:338
217
  msgid "Go to the Breadcrumb NavXT online documentation"
218
  msgstr "Gå till Breadcrumb NavXT online dokumentation"
219
 
220
+ #: breadcrumb_navxt_admin.php:339
221
+ msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
222
+ msgstr "Om du tror att du hittat en bug, var vänlig och inkludera WordPress version och detaljer hur du får buggen när du %Srapporterar problemet %s."
223
+
224
+ #: breadcrumb_navxt_admin.php:340
225
  msgid "Quick Start Information"
226
  msgstr "Snabbstart"
227
 
228
+ #: breadcrumb_navxt_admin.php:340
229
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
230
  msgstr "För inställningarna på den här sidan att börja gälla måste du antingen använda den medföljande Breadcrumb NavXT widget, eller placera koden snutten nedan i ditt tema."
231
 
232
+ #: breadcrumb_navxt_admin.php:341
233
  msgid "Breadcrumb trail with separators"
234
  msgstr "Breadcrumb spår med separator"
235
 
236
+ #: breadcrumb_navxt_admin.php:342
237
  msgid "Breadcrumb trail in list form"
238
  msgstr "Breadcrumb spår i list form"
239
 
240
+ #: breadcrumb_navxt_admin.php:445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "Breadcrumb NavXT Settings"
242
  msgstr "Breadcrumb NavXT Inställningar"
243
 
244
+ #: breadcrumb_navxt_admin.php:453
245
  msgid "General"
246
  msgstr "Allmänt"
247
 
248
+ #: breadcrumb_navxt_admin.php:456
249
  msgid "Breadcrumb Separator"
250
  msgstr "Breadcrumb separator"
251
 
252
+ #: breadcrumb_navxt_admin.php:456
253
  msgid "Placed in between each breadcrumb."
254
  msgstr "Placeras i mellan varje breadcrumb."
255
 
256
+ #: breadcrumb_navxt_admin.php:457
257
  msgid "Breadcrumb Max Title Length"
258
  msgstr "Breadcrumb max titel längd"
259
 
260
+ #: breadcrumb_navxt_admin.php:461
261
  msgid "Home Breadcrumb"
262
  msgstr "Hem Breadcrumb"
263
 
264
+ #: breadcrumb_navxt_admin.php:466
265
  msgid "Place the home breadcrumb in the trail."
266
  msgstr "Placera hem breadcrumb i spåret."
267
 
268
+ #: breadcrumb_navxt_admin.php:471
269
  msgid "Home Title: "
270
  msgstr "Hem titel: "
271
 
272
+ #: breadcrumb_navxt_admin.php:479
273
  msgid "Home Prefix"
274
  msgstr "Hem Prefix"
275
 
276
+ #: breadcrumb_navxt_admin.php:480
277
  msgid "Home Suffix"
278
  msgstr "hem Suffix"
279
 
280
+ #: breadcrumb_navxt_admin.php:481
281
  msgid "Home Anchor"
282
  msgstr "Hem Länk "
283
 
284
+ #: breadcrumb_navxt_admin.php:481
285
  msgid "The anchor template for the home breadcrumb."
286
  msgstr "Länk mall för hem breadcrumb."
287
 
288
+ #: breadcrumb_navxt_admin.php:482
289
  msgid "Blog Breadcrumb"
290
  msgstr "Blogg breadcrumb"
291
 
292
+ #: breadcrumb_navxt_admin.php:482
293
  msgid "Place the blog breadcrumb in the trail."
294
  msgstr "Placera blogg breadcrumb i spåret."
295
 
296
+ #: breadcrumb_navxt_admin.php:483
297
  msgid "Blog Anchor"
298
  msgstr "Blogg länk"
299
 
300
+ #: breadcrumb_navxt_admin.php:483
301
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
302
  msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
303
 
304
+ #: breadcrumb_navxt_admin.php:487
305
  msgid "Main Site Breadcrumb"
306
  msgstr "Huvudsidans Breadcrumb"
307
 
308
+ #: breadcrumb_navxt_admin.php:492
309
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
310
  msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
311
 
312
+ #: breadcrumb_navxt_admin.php:497
313
  msgid "Main Site Home Title: "
314
  msgstr "Huvudsidans hem titel: "
315
 
316
+ #: breadcrumb_navxt_admin.php:506
317
  msgid "Main Site Home Prefix"
318
  msgstr "Huvudsidans hem Prefix"
319
 
320
+ #: breadcrumb_navxt_admin.php:506
321
+ #: breadcrumb_navxt_admin.php:507
322
  msgid "Used for the main site home breadcrumb in an multisite setup"
323
  msgstr "Används för huvudsidans hem breadcrumb i en multisite"
324
 
325
+ #: breadcrumb_navxt_admin.php:507
326
  msgid "Main Site Home Suffix"
327
  msgstr "Huvudsidans hem Suffix"
328
 
329
+ #: breadcrumb_navxt_admin.php:508
330
  msgid "Main Site Home Anchor"
331
  msgstr "Huvudsidans hem Länk "
332
 
333
+ #: breadcrumb_navxt_admin.php:508
334
  msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
335
  msgstr "Länk mall för huvudsidans hem, används endast i multisite."
336
 
337
+ #: breadcrumb_navxt_admin.php:513
338
  msgid "Current Item"
339
  msgstr "Nuvarande punkt"
340
 
341
+ #: breadcrumb_navxt_admin.php:516
342
  msgid "Link Current Item"
343
  msgstr "Länk Nuvarande punkt"
344
 
345
+ #: breadcrumb_navxt_admin.php:516
346
  msgid "Yes"
347
  msgstr "Ja"
348
 
349
+ #: breadcrumb_navxt_admin.php:517
350
  msgid "Current Item Prefix"
351
  msgstr "Nuvarande punkt Prefix"
352
 
353
+ #: breadcrumb_navxt_admin.php:517
354
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
355
  msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
356
 
357
+ #: breadcrumb_navxt_admin.php:518
358
  msgid "Current Item Suffix"
359
  msgstr "Nuvarande punkt Suffix"
360
 
361
+ #: breadcrumb_navxt_admin.php:518
362
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
363
  msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
364
 
365
+ #: breadcrumb_navxt_admin.php:519
366
  msgid "Current Item Anchor"
367
  msgstr "Nuvarande punkt Länk"
368
 
369
+ #: breadcrumb_navxt_admin.php:519
370
  msgid "The anchor template for current item breadcrumbs."
371
  msgstr "Länk mall för nuvarande punkt breadcrumbs."
372
 
373
+ #: breadcrumb_navxt_admin.php:520
374
  msgid "Paged Breadcrumb"
375
  msgstr ""
376
 
377
+ #: breadcrumb_navxt_admin.php:520
378
  msgid "Include the paged breadcrumb in the breadcrumb trail."
379
  msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
380
 
381
+ #: breadcrumb_navxt_admin.php:520
382
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
383
  msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
384
 
385
+ #: breadcrumb_navxt_admin.php:521
386
  msgid "Paged Prefix"
387
  msgstr ""
388
 
389
+ #: breadcrumb_navxt_admin.php:522
390
  msgid "Paged Suffix"
391
  msgstr ""
392
 
393
+ #: breadcrumb_navxt_admin.php:527
394
  msgid "Posts &amp; Pages"
395
  msgstr "Inlägg &amp; Sidor"
396
 
397
+ #: breadcrumb_navxt_admin.php:530
398
  msgid "Post Prefix"
399
  msgstr "Inläggs Prefix"
400
 
401
+ #: breadcrumb_navxt_admin.php:531
402
  msgid "Post Suffix"
403
  msgstr "Inläggs Suffix"
404
 
405
+ #: breadcrumb_navxt_admin.php:532
406
  msgid "Post Anchor"
407
  msgstr "Inläggs Länk"
408
 
409
+ #: breadcrumb_navxt_admin.php:532
410
  msgid "The anchor template for post breadcrumbs."
411
  msgstr "Länk mall för inläggs breadcrumbs."
412
 
413
+ #: breadcrumb_navxt_admin.php:533
414
  msgid "Post Taxonomy Display"
415
  msgstr "Inläggs taxonomi visning"
416
 
417
+ #: breadcrumb_navxt_admin.php:533
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
420
 
421
+ #: breadcrumb_navxt_admin.php:537
422
  msgid "Post Taxonomy"
423
  msgstr "Inäggs taxonomi"
424
 
425
+ #: breadcrumb_navxt_admin.php:541
426
+ #: breadcrumb_navxt_admin.php:663
427
  msgid "Categories"
428
  msgstr "Kategorier"
429
 
430
+ #: breadcrumb_navxt_admin.php:542
431
+ #: breadcrumb_navxt_admin.php:641
432
  msgid "Dates"
433
  msgstr "Datum"
434
 
435
+ #: breadcrumb_navxt_admin.php:543
436
+ #: breadcrumb_navxt_admin.php:675
437
  msgid "Tags"
438
  msgstr "Taggar"
439
 
440
+ #: breadcrumb_navxt_admin.php:544
441
+ #: breadcrumb_navxt_admin.php:642
442
  msgid "Pages"
443
  msgstr "Sidor"
444
 
445
+ #: breadcrumb_navxt_admin.php:555
446
+ #: breadcrumb_navxt_admin.php:653
447
  msgid "The taxonomy which the breadcrumb trail will show."
448
  msgstr "Den taxonomi som breadcrumb kommer att visa."
449
 
450
+ #: breadcrumb_navxt_admin.php:559
451
  msgid "Page Prefix"
452
  msgstr "Sido Prefix"
453
 
454
+ #: breadcrumb_navxt_admin.php:560
455
  msgid "Page Suffix"
456
  msgstr "Sido Suffix"
457
 
458
+ #: breadcrumb_navxt_admin.php:561
459
  msgid "Page Anchor"
460
  msgstr "Sido Länk"
461
 
462
+ #: breadcrumb_navxt_admin.php:561
463
  msgid "The anchor template for page breadcrumbs."
464
  msgstr "Länk mall för sido breadcrumbs."
465
 
466
+ #: breadcrumb_navxt_admin.php:562
467
  msgid "Attachment Prefix"
468
  msgstr ""
469
 
470
+ #: breadcrumb_navxt_admin.php:563
471
  msgid "Attachment Suffix"
472
  msgstr ""
473
 
474
+ #: breadcrumb_navxt_admin.php:616
475
+ #: breadcrumb_navxt_admin.php:708
 
476
  msgid "%s Prefix"
477
  msgstr "%s Prefix"
478
 
479
+ #: breadcrumb_navxt_admin.php:617
480
+ #: breadcrumb_navxt_admin.php:709
 
481
  msgid "%s Suffix"
482
  msgstr "%s Suffix"
483
 
484
+ #: breadcrumb_navxt_admin.php:618
485
+ #: breadcrumb_navxt_admin.php:710
 
486
  msgid "%s Anchor"
487
  msgstr "%s Länk"
488
 
489
+ #: breadcrumb_navxt_admin.php:618
490
+ #: breadcrumb_navxt_admin.php:710
 
491
  msgid "The anchor template for %s breadcrumbs."
492
  msgstr "Länk mall för %s breadcrumbs."
493
 
494
+ #: breadcrumb_navxt_admin.php:623
 
495
  msgid "%s Root Page"
496
  msgstr "%s rotsida"
497
 
498
+ #: breadcrumb_navxt_admin.php:626
499
  msgid "&mdash; Select &mdash;"
500
  msgstr "&mdash; Välj &mdash;"
501
 
502
+ #: breadcrumb_navxt_admin.php:633
 
503
  msgid "%s Taxonomy Display"
504
  msgstr "%s Ttaxonomi visning"
505
 
506
+ #: breadcrumb_navxt_admin.php:633
 
507
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
508
  msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
509
 
510
+ #: breadcrumb_navxt_admin.php:637
 
511
  msgid "%s Taxonomy"
512
  msgstr "%s Taxonomi"
513
 
514
+ #: breadcrumb_navxt_admin.php:666
515
  msgid "Category Prefix"
516
  msgstr "Kategori prefix"
517
 
518
+ #: breadcrumb_navxt_admin.php:666
519
  msgid "Applied before the anchor on all category breadcrumbs."
520
  msgstr "Tillämpad innan länken på alla kategori breadcrumb"
521
 
522
+ #: breadcrumb_navxt_admin.php:667
523
  msgid "Category Suffix"
524
  msgstr "Kategori Suffix"
525
 
526
+ #: breadcrumb_navxt_admin.php:667
527
  msgid "Applied after the anchor on all category breadcrumbs."
528
  msgstr "Tillämpad efter länken på alla kategori breadcrumb"
529
 
530
+ #: breadcrumb_navxt_admin.php:668
531
  msgid "Category Anchor"
532
  msgstr "Kategori länk"
533
 
534
+ #: breadcrumb_navxt_admin.php:668
535
  msgid "The anchor template for category breadcrumbs."
536
  msgstr "länk mall för kategori breadcrumbs"
537
 
538
+ #: breadcrumb_navxt_admin.php:669
539
  msgid "Archive by Category Prefix"
540
  msgstr "Arkiv av kategori prefix"
541
 
542
+ #: breadcrumb_navxt_admin.php:669
543
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
544
  msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
545
 
546
+ #: breadcrumb_navxt_admin.php:670
547
  msgid "Archive by Category Suffix"
548
  msgstr "Arkiv av Kategori Suffix"
549
 
550
+ #: breadcrumb_navxt_admin.php:670
551
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
552
  msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
553
 
554
+ #: breadcrumb_navxt_admin.php:678
555
  msgid "Tag Prefix"
556
  msgstr "Tagg Prefix"
557
 
558
+ #: breadcrumb_navxt_admin.php:678
559
  msgid "Applied before the anchor on all tag breadcrumbs."
560
  msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
561
 
562
+ #: breadcrumb_navxt_admin.php:679
563
  msgid "Tag Suffix"
564
  msgstr "Tag Suffix"
565
 
566
+ #: breadcrumb_navxt_admin.php:679
567
  msgid "Applied after the anchor on all tag breadcrumbs."
568
  msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
569
 
570
+ #: breadcrumb_navxt_admin.php:680
571
  msgid "Tag Anchor"
572
  msgstr "Tagg Länk"
573
 
574
+ #: breadcrumb_navxt_admin.php:680
575
  msgid "The anchor template for tag breadcrumbs."
576
  msgstr "Länk mall för tagg breadcrumbs."
577
 
578
+ #: breadcrumb_navxt_admin.php:681
579
  msgid "Archive by Tag Prefix"
580
  msgstr "Arkiv av Tagg Prefix"
581
 
582
+ #: breadcrumb_navxt_admin.php:681
583
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
584
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
585
 
586
+ #: breadcrumb_navxt_admin.php:682
587
  msgid "Archive by Tag Suffix"
588
  msgstr "Arkiv av Tagg Suffix"
589
 
590
+ #: breadcrumb_navxt_admin.php:682
591
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
592
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
593
 
594
+ #: breadcrumb_navxt_admin.php:708
 
595
  msgid "Applied before the anchor on all %s breadcrumbs."
596
  msgstr "Tillämpad innan länken på alla %s breadcrumbs."
597
 
598
+ #: breadcrumb_navxt_admin.php:709
 
599
  msgid "Applied after the anchor on all %s breadcrumbs."
600
  msgstr "Tillämpad efter länken på alla %s breadcrumbs."
601
 
602
+ #: breadcrumb_navxt_admin.php:711
 
603
  msgid "Archive by %s Prefix"
604
  msgstr "Arkiv av %s Prefix"
605
 
606
+ #: breadcrumb_navxt_admin.php:711
 
607
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
608
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
609
 
610
+ #: breadcrumb_navxt_admin.php:712
 
611
  msgid "Archive by %s Suffix"
612
  msgstr "Arkiv av %s Suffix"
613
 
614
+ #: breadcrumb_navxt_admin.php:712
 
615
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
616
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
617
 
618
+ #: breadcrumb_navxt_admin.php:721
619
  msgid "Date Archives"
620
  msgstr "Datum Arkiv"
621
 
622
+ #: breadcrumb_navxt_admin.php:724
623
  msgid "Date Anchor"
624
  msgstr "Datum länk"
625
 
626
+ #: breadcrumb_navxt_admin.php:724
627
  msgid "The anchor template for date breadcrumbs."
628
  msgstr "Länk mall för datum breadcrumbs."
629
 
630
+ #: breadcrumb_navxt_admin.php:725
631
  msgid "Archive by Date Prefix"
632
  msgstr "Arkiv av datum Prefix"
633
 
634
+ #: breadcrumb_navxt_admin.php:725
635
  msgid "Applied before the anchor on all date breadcrumbs."
636
  msgstr "Tillämpad innan länken på alla datum breadcrumbs."
637
 
638
+ #: breadcrumb_navxt_admin.php:726
639
  msgid "Archive by Date Suffix"
640
  msgstr "Arkiv av daum suffix"
641
 
642
+ #: breadcrumb_navxt_admin.php:726
643
  msgid "Applied after the anchor on all date breadcrumbs."
644
  msgstr "Tillämpad efter länken på alla datum breadcrumbs."
645
 
646
+ #: breadcrumb_navxt_admin.php:731
647
  msgid "Miscellaneous"
648
  msgstr "Diverse"
649
 
650
+ #: breadcrumb_navxt_admin.php:734
651
  msgid "Author Prefix"
652
  msgstr "Författar Prefix"
653
 
654
+ #: breadcrumb_navxt_admin.php:735
655
  msgid "Author Suffix"
656
  msgstr "Författar Suffix"
657
 
658
+ #: breadcrumb_navxt_admin.php:736
659
  msgid "Author Display Format"
660
  msgstr "Författar visnings format"
661
 
662
+ #: breadcrumb_navxt_admin.php:736
663
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
664
  msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
665
 
666
+ #: breadcrumb_navxt_admin.php:737
667
  msgid "Search Prefix"
668
  msgstr "Sök Prefix"
669
 
670
+ #: breadcrumb_navxt_admin.php:738
671
  msgid "Search Suffix"
672
  msgstr "Sök Suffix"
673
 
674
+ #: breadcrumb_navxt_admin.php:739
675
  msgid "Search Anchor"
676
  msgstr "Sök Länk"
677
 
678
+ #: breadcrumb_navxt_admin.php:739
679
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
680
  msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
681
 
682
+ #: breadcrumb_navxt_admin.php:740
683
  msgid "404 Title"
684
  msgstr "404 Titel"
685
 
686
+ #: breadcrumb_navxt_admin.php:741
687
  msgid "404 Prefix"
688
  msgstr "404 Prefix"
689
 
690
+ #: breadcrumb_navxt_admin.php:742
691
  msgid "404 Suffix"
692
  msgstr "404 Suffix"
693
 
694
+ #: breadcrumb_navxt_admin.php:747
695
  msgid "Save Changes"
696
  msgstr "Spara ändringar"
697
 
698
+ #: breadcrumb_navxt_class.php:217
699
  msgid "Blog"
700
  msgstr "Blogg"
701
 
702
+ #: breadcrumb_navxt_class.php:236
703
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
704
  msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
705
 
706
+ #: breadcrumb_navxt_class.php:281
707
  msgid "404"
708
  msgstr "404"
709
 
710
+ #: breadcrumb_navxt_class.php:284
711
  msgid "Search results for &#39;"
712
  msgstr "Sök resultat för &#39;"
713
 
714
+ #: breadcrumb_navxt_class.php:288
715
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
716
  msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
717
 
718
+ #: breadcrumb_navxt_class.php:295
719
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
720
  msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
721
 
722
+ #: breadcrumb_navxt_class.php:298
723
  msgid "Articles by: "
724
  msgstr "Artiklar av:"
725
 
726
+ #: breadcrumb_navxt_class.php:302
727
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
728
  msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
729
 
730
+ #: breadcrumb_navxt_class.php:311
731
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
732
  msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
733
 
734
+ #: breadcrumb_navxt_class.php:314
735
  msgid "Archive by category &#39;"
736
  msgstr "Arkiv av kategorin &#39;"
737
 
738
+ #: breadcrumb_navxt_class.php:318
739
  msgid "Archive by tag &#39;"
740
  msgstr "Arkiv av tagg &#39;"
741
 
742
+ #: breadcrumb_navxt_class.php:321
743
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
744
  msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
745
 
 
746
  #, fuzzy
747
+ #~ msgid "Un"
748
+ #~ msgstr "Ångra"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
749
  #~ msgid "Untagged"
750
  #~ msgstr "Otaggad"
751
  #~ msgid ""
languages/breadcrumb_navxt.mo CHANGED
Binary file
languages/breadcrumb_navxt.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2010-11-19 01:50+0000\n"
6
- "PO-Revision-Date: 2010-11-18 19:51-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,697 +14,732 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
- #: breadcrumb_navxt_admin.php:29
18
- #, php-format
19
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgstr ""
21
 
22
- #: breadcrumb_navxt_admin.php:106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "Insufficient privileges to proceed."
24
  msgstr ""
25
 
26
- #: breadcrumb_navxt_admin.php:211
27
- #: breadcrumb_navxt_class.php:203
28
  msgid "Home"
29
  msgstr ""
30
 
31
- #: breadcrumb_navxt_admin.php:213
32
- #: breadcrumb_navxt_admin.php:554
33
- #: breadcrumb_navxt_admin.php:745
34
- #: breadcrumb_navxt_class.php:126
35
- #: breadcrumb_navxt_class.php:205
36
- #: breadcrumb_navxt_class.php:215
37
  #: breadcrumb_navxt_class.php:219
38
- #: breadcrumb_navxt_class.php:243
39
- #: breadcrumb_navxt_class.php:259
 
40
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
41
  msgstr ""
42
 
43
- #: breadcrumb_navxt_admin.php:292
44
  msgid "Settings successfully saved."
45
  msgstr ""
46
 
47
- #: breadcrumb_navxt_admin.php:292
 
48
  msgid "Undo the options save."
49
  msgstr ""
50
 
51
- #: breadcrumb_navxt_admin.php:313
52
- #, php-format
53
- msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
54
  msgstr ""
55
 
56
- #: breadcrumb_navxt_admin.php:314
57
- msgid "Go to the Breadcrumb NavXT online documentation"
58
  msgstr ""
59
 
60
  #: breadcrumb_navxt_admin.php:315
61
- msgid "Quick Start Information"
62
  msgstr ""
63
 
64
  #: breadcrumb_navxt_admin.php:315
65
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
 
66
  msgstr ""
67
 
68
- #: breadcrumb_navxt_admin.php:316
69
- msgid "Breadcrumb trail with separators"
70
  msgstr ""
71
 
72
- #: breadcrumb_navxt_admin.php:317
73
- msgid "Breadcrumb trail in list form"
74
  msgstr ""
75
 
76
- #: breadcrumb_navxt_admin.php:398
77
- #: mtekk_admin_class.php:482
78
- msgid "Import"
79
  msgstr ""
80
 
81
- #: breadcrumb_navxt_admin.php:398
82
- #: mtekk_admin_class.php:483
83
- msgid "Export"
84
  msgstr ""
85
 
86
- #: breadcrumb_navxt_admin.php:398
87
- #: mtekk_admin_class.php:484
88
- msgid "Reset"
89
  msgstr ""
90
 
91
- #: breadcrumb_navxt_admin.php:419
 
 
 
 
 
 
 
 
92
  msgid "Breadcrumb NavXT Settings"
93
  msgstr ""
94
 
95
- #: breadcrumb_navxt_admin.php:427
96
  msgid "General"
97
  msgstr ""
98
 
99
- #: breadcrumb_navxt_admin.php:430
100
  msgid "Breadcrumb Separator"
101
  msgstr ""
102
 
103
- #: breadcrumb_navxt_admin.php:430
104
  msgid "Placed in between each breadcrumb."
105
  msgstr ""
106
 
107
- #: breadcrumb_navxt_admin.php:431
108
  msgid "Breadcrumb Max Title Length"
109
  msgstr ""
110
 
111
- #: breadcrumb_navxt_admin.php:435
112
  msgid "Home Breadcrumb"
113
  msgstr ""
114
 
115
- #: breadcrumb_navxt_admin.php:440
116
  msgid "Place the home breadcrumb in the trail."
117
  msgstr ""
118
 
119
- #: breadcrumb_navxt_admin.php:445
120
  msgid "Home Title: "
121
  msgstr ""
122
 
123
- #: breadcrumb_navxt_admin.php:453
124
  msgid "Home Prefix"
125
  msgstr ""
126
 
127
- #: breadcrumb_navxt_admin.php:454
128
  msgid "Home Suffix"
129
  msgstr ""
130
 
131
- #: breadcrumb_navxt_admin.php:455
132
  msgid "Home Anchor"
133
  msgstr ""
134
 
135
- #: breadcrumb_navxt_admin.php:455
136
  msgid "The anchor template for the home breadcrumb."
137
  msgstr ""
138
 
139
- #: breadcrumb_navxt_admin.php:456
140
  msgid "Blog Breadcrumb"
141
  msgstr ""
142
 
143
- #: breadcrumb_navxt_admin.php:456
144
  msgid "Place the blog breadcrumb in the trail."
145
  msgstr ""
146
 
147
- #: breadcrumb_navxt_admin.php:457
148
  msgid "Blog Anchor"
149
  msgstr ""
150
 
151
- #: breadcrumb_navxt_admin.php:457
152
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
153
  msgstr ""
154
 
155
- #: breadcrumb_navxt_admin.php:461
156
  msgid "Main Site Breadcrumb"
157
  msgstr ""
158
 
159
- #: breadcrumb_navxt_admin.php:466
160
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
161
  msgstr ""
162
 
163
- #: breadcrumb_navxt_admin.php:471
164
  msgid "Main Site Home Title: "
165
  msgstr ""
166
 
167
- #: breadcrumb_navxt_admin.php:479
168
  msgid "Main Site Home Prefix"
169
  msgstr ""
170
 
171
- #: breadcrumb_navxt_admin.php:479
172
- #: breadcrumb_navxt_admin.php:480
173
  msgid "Used for the main site home breadcrumb in an multisite setup"
174
  msgstr ""
175
 
176
- #: breadcrumb_navxt_admin.php:480
177
  msgid "Main Site Home Suffix"
178
  msgstr ""
179
 
180
- #: breadcrumb_navxt_admin.php:481
181
  msgid "Main Site Home Anchor"
182
  msgstr ""
183
 
184
- #: breadcrumb_navxt_admin.php:481
185
  msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
186
  msgstr ""
187
 
188
- #: breadcrumb_navxt_admin.php:486
189
  msgid "Current Item"
190
  msgstr ""
191
 
192
- #: breadcrumb_navxt_admin.php:489
193
  msgid "Link Current Item"
194
  msgstr ""
195
 
196
- #: breadcrumb_navxt_admin.php:489
197
  msgid "Yes"
198
  msgstr ""
199
 
200
- #: breadcrumb_navxt_admin.php:490
201
  msgid "Current Item Prefix"
202
  msgstr ""
203
 
204
- #: breadcrumb_navxt_admin.php:490
205
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
206
  msgstr ""
207
 
208
- #: breadcrumb_navxt_admin.php:491
209
  msgid "Current Item Suffix"
210
  msgstr ""
211
 
212
- #: breadcrumb_navxt_admin.php:491
213
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
214
  msgstr ""
215
 
216
- #: breadcrumb_navxt_admin.php:492
217
  msgid "Current Item Anchor"
218
  msgstr ""
219
 
220
- #: breadcrumb_navxt_admin.php:492
221
  msgid "The anchor template for current item breadcrumbs."
222
  msgstr ""
223
 
224
- #: breadcrumb_navxt_admin.php:493
225
  msgid "Paged Breadcrumb"
226
  msgstr ""
227
 
228
- #: breadcrumb_navxt_admin.php:493
229
  msgid "Include the paged breadcrumb in the breadcrumb trail."
230
  msgstr ""
231
 
232
- #: breadcrumb_navxt_admin.php:493
233
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
234
  msgstr ""
235
 
236
- #: breadcrumb_navxt_admin.php:494
237
  msgid "Paged Prefix"
238
  msgstr ""
239
 
240
- #: breadcrumb_navxt_admin.php:495
241
  msgid "Paged Suffix"
242
  msgstr ""
243
 
244
- #: breadcrumb_navxt_admin.php:500
245
  msgid "Posts &amp; Pages"
246
  msgstr ""
247
 
248
- #: breadcrumb_navxt_admin.php:503
249
  msgid "Post Prefix"
250
  msgstr ""
251
 
252
- #: breadcrumb_navxt_admin.php:504
253
  msgid "Post Suffix"
254
  msgstr ""
255
 
256
- #: breadcrumb_navxt_admin.php:505
257
  msgid "Post Anchor"
258
  msgstr ""
259
 
260
- #: breadcrumb_navxt_admin.php:505
261
  msgid "The anchor template for post breadcrumbs."
262
  msgstr ""
263
 
264
- #: breadcrumb_navxt_admin.php:506
265
  msgid "Post Taxonomy Display"
266
  msgstr ""
267
 
268
- #: breadcrumb_navxt_admin.php:506
269
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
270
  msgstr ""
271
 
272
- #: breadcrumb_navxt_admin.php:510
273
  msgid "Post Taxonomy"
274
  msgstr ""
275
 
276
- #: breadcrumb_navxt_admin.php:514
277
- #: breadcrumb_navxt_admin.php:631
278
  msgid "Categories"
279
  msgstr ""
280
 
281
- #: breadcrumb_navxt_admin.php:515
 
282
  msgid "Dates"
283
  msgstr ""
284
 
285
- #: breadcrumb_navxt_admin.php:516
286
- #: breadcrumb_navxt_admin.php:643
287
  msgid "Tags"
288
  msgstr ""
289
 
290
- #: breadcrumb_navxt_admin.php:517
291
- #: breadcrumb_navxt_admin.php:610
292
  msgid "Pages"
293
  msgstr ""
294
 
295
- #: breadcrumb_navxt_admin.php:528
296
- #: breadcrumb_navxt_admin.php:621
297
  msgid "The taxonomy which the breadcrumb trail will show."
298
  msgstr ""
299
 
300
- #: breadcrumb_navxt_admin.php:532
301
  msgid "Page Prefix"
302
  msgstr ""
303
 
304
- #: breadcrumb_navxt_admin.php:533
305
  msgid "Page Suffix"
306
  msgstr ""
307
 
308
- #: breadcrumb_navxt_admin.php:534
309
  msgid "Page Anchor"
310
  msgstr ""
311
 
312
- #: breadcrumb_navxt_admin.php:534
313
  msgid "The anchor template for page breadcrumbs."
314
  msgstr ""
315
 
316
- #: breadcrumb_navxt_admin.php:535
317
  msgid "Attachment Prefix"
318
  msgstr ""
319
 
320
- #: breadcrumb_navxt_admin.php:536
321
  msgid "Attachment Suffix"
322
  msgstr ""
323
 
324
- #: breadcrumb_navxt_admin.php:585
325
- #: breadcrumb_navxt_admin.php:679
326
- #, php-format
327
  msgid "%s Prefix"
328
  msgstr ""
329
 
330
- #: breadcrumb_navxt_admin.php:586
331
- #: breadcrumb_navxt_admin.php:680
332
- #, php-format
333
  msgid "%s Suffix"
334
  msgstr ""
335
 
336
- #: breadcrumb_navxt_admin.php:587
337
- #: breadcrumb_navxt_admin.php:681
338
- #, php-format
339
  msgid "%s Anchor"
340
  msgstr ""
341
 
342
- #: breadcrumb_navxt_admin.php:587
343
- #: breadcrumb_navxt_admin.php:681
344
- #, php-format
345
  msgid "The anchor template for %s breadcrumbs."
346
  msgstr ""
347
 
348
- #: breadcrumb_navxt_admin.php:592
349
- #, php-format
350
  msgid "%s Root Page"
351
  msgstr ""
352
 
353
- #: breadcrumb_navxt_admin.php:595
354
  msgid "&mdash; Select &mdash;"
355
  msgstr ""
356
 
357
- #: breadcrumb_navxt_admin.php:602
358
- #, php-format
359
  msgid "%s Taxonomy Display"
360
  msgstr ""
361
 
362
- #: breadcrumb_navxt_admin.php:602
363
- #, php-format
364
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
365
  msgstr ""
366
 
367
- #: breadcrumb_navxt_admin.php:606
368
- #, php-format
369
  msgid "%s Taxonomy"
370
  msgstr ""
371
 
372
- #: breadcrumb_navxt_admin.php:634
373
  msgid "Category Prefix"
374
  msgstr ""
375
 
376
- #: breadcrumb_navxt_admin.php:634
377
  msgid "Applied before the anchor on all category breadcrumbs."
378
  msgstr ""
379
 
380
- #: breadcrumb_navxt_admin.php:635
381
  msgid "Category Suffix"
382
  msgstr ""
383
 
384
- #: breadcrumb_navxt_admin.php:635
385
  msgid "Applied after the anchor on all category breadcrumbs."
386
  msgstr ""
387
 
388
- #: breadcrumb_navxt_admin.php:636
389
  msgid "Category Anchor"
390
  msgstr ""
391
 
392
- #: breadcrumb_navxt_admin.php:636
393
  msgid "The anchor template for category breadcrumbs."
394
  msgstr ""
395
 
396
- #: breadcrumb_navxt_admin.php:637
397
  msgid "Archive by Category Prefix"
398
  msgstr ""
399
 
400
- #: breadcrumb_navxt_admin.php:637
401
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
402
  msgstr ""
403
 
404
- #: breadcrumb_navxt_admin.php:638
405
  msgid "Archive by Category Suffix"
406
  msgstr ""
407
 
408
- #: breadcrumb_navxt_admin.php:638
409
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
410
  msgstr ""
411
 
412
- #: breadcrumb_navxt_admin.php:646
413
  msgid "Tag Prefix"
414
  msgstr ""
415
 
416
- #: breadcrumb_navxt_admin.php:646
417
  msgid "Applied before the anchor on all tag breadcrumbs."
418
  msgstr ""
419
 
420
- #: breadcrumb_navxt_admin.php:647
421
  msgid "Tag Suffix"
422
  msgstr ""
423
 
424
- #: breadcrumb_navxt_admin.php:647
425
  msgid "Applied after the anchor on all tag breadcrumbs."
426
  msgstr ""
427
 
428
- #: breadcrumb_navxt_admin.php:648
429
  msgid "Tag Anchor"
430
  msgstr ""
431
 
432
- #: breadcrumb_navxt_admin.php:648
433
  msgid "The anchor template for tag breadcrumbs."
434
  msgstr ""
435
 
436
- #: breadcrumb_navxt_admin.php:649
437
  msgid "Archive by Tag Prefix"
438
  msgstr ""
439
 
440
- #: breadcrumb_navxt_admin.php:649
441
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
442
  msgstr ""
443
 
444
- #: breadcrumb_navxt_admin.php:650
445
  msgid "Archive by Tag Suffix"
446
  msgstr ""
447
 
448
- #: breadcrumb_navxt_admin.php:650
449
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
450
  msgstr ""
451
 
452
- #: breadcrumb_navxt_admin.php:679
453
- #, php-format
454
  msgid "Applied before the anchor on all %s breadcrumbs."
455
  msgstr ""
456
 
457
- #: breadcrumb_navxt_admin.php:680
458
- #, php-format
459
  msgid "Applied after the anchor on all %s breadcrumbs."
460
  msgstr ""
461
 
462
- #: breadcrumb_navxt_admin.php:682
463
- #, php-format
464
  msgid "Archive by %s Prefix"
465
  msgstr ""
466
 
467
- #: breadcrumb_navxt_admin.php:682
468
- #, php-format
469
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
470
  msgstr ""
471
 
472
- #: breadcrumb_navxt_admin.php:683
473
- #, php-format
474
  msgid "Archive by %s Suffix"
475
  msgstr ""
476
 
477
- #: breadcrumb_navxt_admin.php:683
478
- #, php-format
479
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
480
  msgstr ""
481
 
482
- #: breadcrumb_navxt_admin.php:692
483
  msgid "Date Archives"
484
  msgstr ""
485
 
486
- #: breadcrumb_navxt_admin.php:695
487
  msgid "Date Anchor"
488
  msgstr ""
489
 
490
- #: breadcrumb_navxt_admin.php:695
491
  msgid "The anchor template for date breadcrumbs."
492
  msgstr ""
493
 
494
- #: breadcrumb_navxt_admin.php:696
495
  msgid "Archive by Date Prefix"
496
  msgstr ""
497
 
498
- #: breadcrumb_navxt_admin.php:696
499
  msgid "Applied before the anchor on all date breadcrumbs."
500
  msgstr ""
501
 
502
- #: breadcrumb_navxt_admin.php:697
503
  msgid "Archive by Date Suffix"
504
  msgstr ""
505
 
506
- #: breadcrumb_navxt_admin.php:697
507
  msgid "Applied after the anchor on all date breadcrumbs."
508
  msgstr ""
509
 
510
- #: breadcrumb_navxt_admin.php:702
511
  msgid "Miscellaneous"
512
  msgstr ""
513
 
514
- #: breadcrumb_navxt_admin.php:705
515
  msgid "Author Prefix"
516
  msgstr ""
517
 
518
- #: breadcrumb_navxt_admin.php:706
519
  msgid "Author Suffix"
520
  msgstr ""
521
 
522
- #: breadcrumb_navxt_admin.php:707
523
  msgid "Author Display Format"
524
  msgstr ""
525
 
526
- #: breadcrumb_navxt_admin.php:707
527
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
528
  msgstr ""
529
 
530
- #: breadcrumb_navxt_admin.php:708
531
  msgid "Search Prefix"
532
  msgstr ""
533
 
534
- #: breadcrumb_navxt_admin.php:709
535
  msgid "Search Suffix"
536
  msgstr ""
537
 
538
- #: breadcrumb_navxt_admin.php:710
539
  msgid "Search Anchor"
540
  msgstr ""
541
 
542
- #: breadcrumb_navxt_admin.php:710
543
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
544
  msgstr ""
545
 
546
- #: breadcrumb_navxt_admin.php:711
547
  msgid "404 Title"
548
  msgstr ""
549
 
550
- #: breadcrumb_navxt_admin.php:712
551
  msgid "404 Prefix"
552
  msgstr ""
553
 
554
- #: breadcrumb_navxt_admin.php:713
555
  msgid "404 Suffix"
556
  msgstr ""
557
 
558
- #: breadcrumb_navxt_admin.php:718
559
  msgid "Save Changes"
560
  msgstr ""
561
 
562
- #: breadcrumb_navxt_class.php:213
563
  msgid "Blog"
564
  msgstr ""
565
 
566
- #: breadcrumb_navxt_class.php:232
567
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
568
  msgstr ""
569
 
570
- #: breadcrumb_navxt_class.php:277
571
  msgid "404"
572
  msgstr ""
573
 
574
- #: breadcrumb_navxt_class.php:280
575
  msgid "Search results for &#39;"
576
  msgstr ""
577
 
578
- #: breadcrumb_navxt_class.php:284
579
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
580
  msgstr ""
581
 
582
- #: breadcrumb_navxt_class.php:291
583
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
584
  msgstr ""
585
 
586
- #: breadcrumb_navxt_class.php:294
587
  msgid "Articles by: "
588
  msgstr ""
589
 
590
- #: breadcrumb_navxt_class.php:298
591
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
592
  msgstr ""
593
 
594
- #: breadcrumb_navxt_class.php:307
595
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
596
  msgstr ""
597
 
598
- #: breadcrumb_navxt_class.php:310
599
  msgid "Archive by category &#39;"
600
  msgstr ""
601
 
602
- #: breadcrumb_navxt_class.php:314
603
  msgid "Archive by tag &#39;"
604
  msgstr ""
605
 
606
- #: breadcrumb_navxt_class.php:317
607
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
608
  msgstr ""
609
 
610
- #: breadcrumb_navxt_class.php:478
611
- msgid "Un"
612
- msgstr ""
613
-
614
- #: breadcrumb_navxt_widget.php:24
615
- msgid "Adds a breadcrumb trail to your sidebar"
616
- msgstr ""
617
-
618
- #: breadcrumb_navxt_widget.php:72
619
- msgid "Title:"
620
- msgstr ""
621
-
622
- #: breadcrumb_navxt_widget.php:77
623
- msgid "Output trail as a list"
624
- msgstr ""
625
-
626
- #: breadcrumb_navxt_widget.php:79
627
- msgid "Link the breadcrumbs"
628
- msgstr ""
629
-
630
- #: breadcrumb_navxt_widget.php:81
631
- msgid "Reverse the order of the trail"
632
- msgstr ""
633
-
634
- #: breadcrumb_navxt_widget.php:83
635
- msgid "Hide the trail on the front page"
636
- msgstr ""
637
-
638
- #: mtekk_admin_class.php:57
639
- msgid "Undo"
640
- msgstr ""
641
-
642
- #: mtekk_admin_class.php:64
643
- msgid "Migrate now."
644
- msgstr ""
645
-
646
- #: mtekk_admin_class.php:158
647
- msgid "Settings"
648
- msgstr ""
649
-
650
- #: mtekk_admin_class.php:186
651
- msgid "Your settings are out of date."
652
- msgstr ""
653
-
654
- #: mtekk_admin_class.php:186
655
- msgid "Migrate the settings now."
656
- msgstr ""
657
-
658
- #: mtekk_admin_class.php:299
659
- msgid "Settings successfully imported from the uploaded file."
660
- msgstr ""
661
-
662
- #: mtekk_admin_class.php:299
663
- msgid "Undo the options import."
664
- msgstr ""
665
-
666
- #: mtekk_admin_class.php:304
667
- msgid "Importing settings from file failed."
668
- msgstr ""
669
-
670
- #: mtekk_admin_class.php:323
671
- msgid "Settings successfully reset to the default values."
672
- msgstr ""
673
-
674
- #: mtekk_admin_class.php:323
675
- msgid "Undo the options reset."
676
- msgstr ""
677
-
678
- #: mtekk_admin_class.php:340
679
- msgid "Settings successfully undid the last operation."
680
- msgstr ""
681
-
682
- #: mtekk_admin_class.php:340
683
- msgid "Undo the last undo operation."
684
- msgstr ""
685
-
686
- #: mtekk_admin_class.php:373
687
- msgid "Settings successfully migrated."
688
- msgstr ""
689
-
690
- #: mtekk_admin_class.php:403
691
- #, php-format
692
- msgid "Get help with \"%s\""
693
- msgstr ""
694
-
695
- #: mtekk_admin_class.php:473
696
- msgid "Import/Export/Reset Settings"
697
- msgstr ""
698
-
699
- #: mtekk_admin_class.php:474
700
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
701
- msgstr ""
702
-
703
- #: mtekk_admin_class.php:477
704
- msgid "Settings File"
705
- msgstr ""
706
-
707
- #: mtekk_admin_class.php:480
708
- msgid "Select a XML settings file to upload and import settings from."
709
- msgstr ""
710
-
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
6
+ "PO-Revision-Date: 2011-02-09 11:38-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
+ #: breadcrumb_navxt_widget.php:24
18
+ msgid "Adds a breadcrumb trail to your sidebar"
19
+ msgstr ""
20
+
21
+ #: breadcrumb_navxt_widget.php:85
22
+ msgid "Title:"
23
+ msgstr ""
24
+
25
+ #: breadcrumb_navxt_widget.php:89
26
+ msgid "Output trail as:"
27
+ msgstr ""
28
+
29
+ #: breadcrumb_navxt_widget.php:91
30
+ msgid "List"
31
+ msgstr ""
32
+
33
+ #: breadcrumb_navxt_widget.php:92
34
+ msgid "RDFa"
35
+ msgstr ""
36
+
37
+ #: breadcrumb_navxt_widget.php:93
38
+ msgid "Microformat"
39
+ msgstr ""
40
+
41
+ #: breadcrumb_navxt_widget.php:94
42
+ msgid "Plain"
43
+ msgstr ""
44
+
45
+ #: breadcrumb_navxt_widget.php:99
46
+ msgid "Link the breadcrumbs"
47
+ msgstr ""
48
+
49
+ #: breadcrumb_navxt_widget.php:101
50
+ msgid "Reverse the order of the trail"
51
+ msgstr ""
52
+
53
+ #: breadcrumb_navxt_widget.php:103
54
+ msgid "Hide the trail on the front page"
55
+ msgstr ""
56
+
57
+ #: mtekk_admin_class.php:59
58
+ msgid "Undo"
59
+ msgstr ""
60
+
61
+ #: mtekk_admin_class.php:67
62
+ #: mtekk_admin_class.php:191
63
+ msgid "Migrate now."
64
+ msgstr ""
65
+
66
+ #: mtekk_admin_class.php:164
67
+ msgid "Settings"
68
+ msgstr ""
69
+
70
+ #: mtekk_admin_class.php:191
71
+ msgid "Your settings are out of date."
72
+ msgstr ""
73
+
74
+ #: mtekk_admin_class.php:191
75
+ msgid "Migrate the settings now."
76
+ msgstr ""
77
+
78
+ #: mtekk_admin_class.php:198
79
+ msgid "Your plugin install is incomplete."
80
+ msgstr ""
81
+
82
+ #: mtekk_admin_class.php:198
83
+ msgid "Load default settings now."
84
+ msgstr ""
85
+
86
+ #: mtekk_admin_class.php:198
87
+ msgid "Complete now."
88
  msgstr ""
89
 
90
+ #: mtekk_admin_class.php:311
91
+ msgid "Settings successfully imported from the uploaded file."
92
+ msgstr ""
93
+
94
+ #: mtekk_admin_class.php:311
95
+ msgid "Undo the options import."
96
+ msgstr ""
97
+
98
+ #: mtekk_admin_class.php:316
99
+ msgid "Importing settings from file failed."
100
+ msgstr ""
101
+
102
+ #: mtekk_admin_class.php:335
103
+ msgid "Settings successfully reset to the default values."
104
+ msgstr ""
105
+
106
+ #: mtekk_admin_class.php:335
107
+ msgid "Undo the options reset."
108
+ msgstr ""
109
+
110
+ #: mtekk_admin_class.php:352
111
+ msgid "Settings successfully undid the last operation."
112
+ msgstr ""
113
+
114
+ #: mtekk_admin_class.php:352
115
+ msgid "Undo the last undo operation."
116
+ msgstr ""
117
+
118
+ #: mtekk_admin_class.php:387
119
+ msgid "Settings successfully migrated."
120
+ msgstr ""
121
+
122
+ #: mtekk_admin_class.php:394
123
+ msgid "Default settings successfully installed."
124
+ msgstr ""
125
+
126
+ #: mtekk_admin_class.php:425
127
+ msgid "Get help with \"%s\""
128
+ msgstr ""
129
+
130
+ #: mtekk_admin_class.php:495
131
+ msgid "Import/Export/Reset Settings"
132
+ msgstr ""
133
+
134
+ #: mtekk_admin_class.php:496
135
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
136
+ msgstr ""
137
+
138
+ #: mtekk_admin_class.php:499
139
+ msgid "Settings File"
140
+ msgstr ""
141
+
142
+ #: mtekk_admin_class.php:502
143
+ msgid "Select a XML settings file to upload and import settings from."
144
+ msgstr ""
145
+
146
+ #: mtekk_admin_class.php:504
147
+ #: breadcrumb_navxt_admin.php:423
148
+ msgid "Import"
149
+ msgstr ""
150
+
151
+ #: mtekk_admin_class.php:505
152
+ #: breadcrumb_navxt_admin.php:423
153
+ msgid "Export"
154
+ msgstr ""
155
+
156
+ #: mtekk_admin_class.php:506
157
+ #: breadcrumb_navxt_admin.php:423
158
+ msgid "Reset"
159
+ msgstr ""
160
+
161
+ #: breadcrumb_navxt_admin.php:35
162
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
163
+ msgstr ""
164
+
165
+ #: breadcrumb_navxt_admin.php:112
166
  msgid "Insufficient privileges to proceed."
167
  msgstr ""
168
 
169
+ #: breadcrumb_navxt_admin.php:217
170
+ #: breadcrumb_navxt_class.php:207
171
  msgid "Home"
172
  msgstr ""
173
 
174
+ #: breadcrumb_navxt_admin.php:219
175
+ #: breadcrumb_navxt_admin.php:580
176
+ #: breadcrumb_navxt_admin.php:773
177
+ #: breadcrumb_navxt_class.php:130
178
+ #: breadcrumb_navxt_class.php:209
 
179
  #: breadcrumb_navxt_class.php:219
180
+ #: breadcrumb_navxt_class.php:223
181
+ #: breadcrumb_navxt_class.php:247
182
+ #: breadcrumb_navxt_class.php:263
183
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
184
  msgstr ""
185
 
186
+ #: breadcrumb_navxt_admin.php:304
187
  msgid "Settings successfully saved."
188
  msgstr ""
189
 
190
+ #: breadcrumb_navxt_admin.php:304
191
+ #: breadcrumb_navxt_admin.php:309
192
  msgid "Undo the options save."
193
  msgstr ""
194
 
195
+ #: breadcrumb_navxt_admin.php:309
196
+ msgid "Some settings were not saved."
 
197
  msgstr ""
198
 
199
+ #: breadcrumb_navxt_admin.php:310
200
+ msgid "The following settings were not saved:"
201
  msgstr ""
202
 
203
  #: breadcrumb_navxt_admin.php:315
204
+ msgid "Please include this message in your %sbug report%s."
205
  msgstr ""
206
 
207
  #: breadcrumb_navxt_admin.php:315
208
+ #: breadcrumb_navxt_admin.php:339
209
+ msgid "Go to the Breadcrumb NavXT support post for your version."
210
  msgstr ""
211
 
212
+ #: breadcrumb_navxt_admin.php:337
213
+ msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
214
  msgstr ""
215
 
216
+ #: breadcrumb_navxt_admin.php:338
217
+ msgid "Go to the Breadcrumb NavXT online documentation"
218
  msgstr ""
219
 
220
+ #: breadcrumb_navxt_admin.php:339
221
+ msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
 
222
  msgstr ""
223
 
224
+ #: breadcrumb_navxt_admin.php:340
225
+ msgid "Quick Start Information"
 
226
  msgstr ""
227
 
228
+ #: breadcrumb_navxt_admin.php:340
229
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
 
230
  msgstr ""
231
 
232
+ #: breadcrumb_navxt_admin.php:341
233
+ msgid "Breadcrumb trail with separators"
234
+ msgstr ""
235
+
236
+ #: breadcrumb_navxt_admin.php:342
237
+ msgid "Breadcrumb trail in list form"
238
+ msgstr ""
239
+
240
+ #: breadcrumb_navxt_admin.php:445
241
  msgid "Breadcrumb NavXT Settings"
242
  msgstr ""
243
 
244
+ #: breadcrumb_navxt_admin.php:453
245
  msgid "General"
246
  msgstr ""
247
 
248
+ #: breadcrumb_navxt_admin.php:456
249
  msgid "Breadcrumb Separator"
250
  msgstr ""
251
 
252
+ #: breadcrumb_navxt_admin.php:456
253
  msgid "Placed in between each breadcrumb."
254
  msgstr ""
255
 
256
+ #: breadcrumb_navxt_admin.php:457
257
  msgid "Breadcrumb Max Title Length"
258
  msgstr ""
259
 
260
+ #: breadcrumb_navxt_admin.php:461
261
  msgid "Home Breadcrumb"
262
  msgstr ""
263
 
264
+ #: breadcrumb_navxt_admin.php:466
265
  msgid "Place the home breadcrumb in the trail."
266
  msgstr ""
267
 
268
+ #: breadcrumb_navxt_admin.php:471
269
  msgid "Home Title: "
270
  msgstr ""
271
 
272
+ #: breadcrumb_navxt_admin.php:479
273
  msgid "Home Prefix"
274
  msgstr ""
275
 
276
+ #: breadcrumb_navxt_admin.php:480
277
  msgid "Home Suffix"
278
  msgstr ""
279
 
280
+ #: breadcrumb_navxt_admin.php:481
281
  msgid "Home Anchor"
282
  msgstr ""
283
 
284
+ #: breadcrumb_navxt_admin.php:481
285
  msgid "The anchor template for the home breadcrumb."
286
  msgstr ""
287
 
288
+ #: breadcrumb_navxt_admin.php:482
289
  msgid "Blog Breadcrumb"
290
  msgstr ""
291
 
292
+ #: breadcrumb_navxt_admin.php:482
293
  msgid "Place the blog breadcrumb in the trail."
294
  msgstr ""
295
 
296
+ #: breadcrumb_navxt_admin.php:483
297
  msgid "Blog Anchor"
298
  msgstr ""
299
 
300
+ #: breadcrumb_navxt_admin.php:483
301
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
302
  msgstr ""
303
 
304
+ #: breadcrumb_navxt_admin.php:487
305
  msgid "Main Site Breadcrumb"
306
  msgstr ""
307
 
308
+ #: breadcrumb_navxt_admin.php:492
309
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
310
  msgstr ""
311
 
312
+ #: breadcrumb_navxt_admin.php:497
313
  msgid "Main Site Home Title: "
314
  msgstr ""
315
 
316
+ #: breadcrumb_navxt_admin.php:506
317
  msgid "Main Site Home Prefix"
318
  msgstr ""
319
 
320
+ #: breadcrumb_navxt_admin.php:506
321
+ #: breadcrumb_navxt_admin.php:507
322
  msgid "Used for the main site home breadcrumb in an multisite setup"
323
  msgstr ""
324
 
325
+ #: breadcrumb_navxt_admin.php:507
326
  msgid "Main Site Home Suffix"
327
  msgstr ""
328
 
329
+ #: breadcrumb_navxt_admin.php:508
330
  msgid "Main Site Home Anchor"
331
  msgstr ""
332
 
333
+ #: breadcrumb_navxt_admin.php:508
334
  msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
335
  msgstr ""
336
 
337
+ #: breadcrumb_navxt_admin.php:513
338
  msgid "Current Item"
339
  msgstr ""
340
 
341
+ #: breadcrumb_navxt_admin.php:516
342
  msgid "Link Current Item"
343
  msgstr ""
344
 
345
+ #: breadcrumb_navxt_admin.php:516
346
  msgid "Yes"
347
  msgstr ""
348
 
349
+ #: breadcrumb_navxt_admin.php:517
350
  msgid "Current Item Prefix"
351
  msgstr ""
352
 
353
+ #: breadcrumb_navxt_admin.php:517
354
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
355
  msgstr ""
356
 
357
+ #: breadcrumb_navxt_admin.php:518
358
  msgid "Current Item Suffix"
359
  msgstr ""
360
 
361
+ #: breadcrumb_navxt_admin.php:518
362
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
363
  msgstr ""
364
 
365
+ #: breadcrumb_navxt_admin.php:519
366
  msgid "Current Item Anchor"
367
  msgstr ""
368
 
369
+ #: breadcrumb_navxt_admin.php:519
370
  msgid "The anchor template for current item breadcrumbs."
371
  msgstr ""
372
 
373
+ #: breadcrumb_navxt_admin.php:520
374
  msgid "Paged Breadcrumb"
375
  msgstr ""
376
 
377
+ #: breadcrumb_navxt_admin.php:520
378
  msgid "Include the paged breadcrumb in the breadcrumb trail."
379
  msgstr ""
380
 
381
+ #: breadcrumb_navxt_admin.php:520
382
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
383
  msgstr ""
384
 
385
+ #: breadcrumb_navxt_admin.php:521
386
  msgid "Paged Prefix"
387
  msgstr ""
388
 
389
+ #: breadcrumb_navxt_admin.php:522
390
  msgid "Paged Suffix"
391
  msgstr ""
392
 
393
+ #: breadcrumb_navxt_admin.php:527
394
  msgid "Posts &amp; Pages"
395
  msgstr ""
396
 
397
+ #: breadcrumb_navxt_admin.php:530
398
  msgid "Post Prefix"
399
  msgstr ""
400
 
401
+ #: breadcrumb_navxt_admin.php:531
402
  msgid "Post Suffix"
403
  msgstr ""
404
 
405
+ #: breadcrumb_navxt_admin.php:532
406
  msgid "Post Anchor"
407
  msgstr ""
408
 
409
+ #: breadcrumb_navxt_admin.php:532
410
  msgid "The anchor template for post breadcrumbs."
411
  msgstr ""
412
 
413
+ #: breadcrumb_navxt_admin.php:533
414
  msgid "Post Taxonomy Display"
415
  msgstr ""
416
 
417
+ #: breadcrumb_navxt_admin.php:533
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr ""
420
 
421
+ #: breadcrumb_navxt_admin.php:537
422
  msgid "Post Taxonomy"
423
  msgstr ""
424
 
425
+ #: breadcrumb_navxt_admin.php:541
426
+ #: breadcrumb_navxt_admin.php:663
427
  msgid "Categories"
428
  msgstr ""
429
 
430
+ #: breadcrumb_navxt_admin.php:542
431
+ #: breadcrumb_navxt_admin.php:641
432
  msgid "Dates"
433
  msgstr ""
434
 
435
+ #: breadcrumb_navxt_admin.php:543
436
+ #: breadcrumb_navxt_admin.php:675
437
  msgid "Tags"
438
  msgstr ""
439
 
440
+ #: breadcrumb_navxt_admin.php:544
441
+ #: breadcrumb_navxt_admin.php:642
442
  msgid "Pages"
443
  msgstr ""
444
 
445
+ #: breadcrumb_navxt_admin.php:555
446
+ #: breadcrumb_navxt_admin.php:653
447
  msgid "The taxonomy which the breadcrumb trail will show."
448
  msgstr ""
449
 
450
+ #: breadcrumb_navxt_admin.php:559
451
  msgid "Page Prefix"
452
  msgstr ""
453
 
454
+ #: breadcrumb_navxt_admin.php:560
455
  msgid "Page Suffix"
456
  msgstr ""
457
 
458
+ #: breadcrumb_navxt_admin.php:561
459
  msgid "Page Anchor"
460
  msgstr ""
461
 
462
+ #: breadcrumb_navxt_admin.php:561
463
  msgid "The anchor template for page breadcrumbs."
464
  msgstr ""
465
 
466
+ #: breadcrumb_navxt_admin.php:562
467
  msgid "Attachment Prefix"
468
  msgstr ""
469
 
470
+ #: breadcrumb_navxt_admin.php:563
471
  msgid "Attachment Suffix"
472
  msgstr ""
473
 
474
+ #: breadcrumb_navxt_admin.php:616
475
+ #: breadcrumb_navxt_admin.php:708
 
476
  msgid "%s Prefix"
477
  msgstr ""
478
 
479
+ #: breadcrumb_navxt_admin.php:617
480
+ #: breadcrumb_navxt_admin.php:709
 
481
  msgid "%s Suffix"
482
  msgstr ""
483
 
484
+ #: breadcrumb_navxt_admin.php:618
485
+ #: breadcrumb_navxt_admin.php:710
 
486
  msgid "%s Anchor"
487
  msgstr ""
488
 
489
+ #: breadcrumb_navxt_admin.php:618
490
+ #: breadcrumb_navxt_admin.php:710
 
491
  msgid "The anchor template for %s breadcrumbs."
492
  msgstr ""
493
 
494
+ #: breadcrumb_navxt_admin.php:623
 
495
  msgid "%s Root Page"
496
  msgstr ""
497
 
498
+ #: breadcrumb_navxt_admin.php:626
499
  msgid "&mdash; Select &mdash;"
500
  msgstr ""
501
 
502
+ #: breadcrumb_navxt_admin.php:633
 
503
  msgid "%s Taxonomy Display"
504
  msgstr ""
505
 
506
+ #: breadcrumb_navxt_admin.php:633
 
507
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
508
  msgstr ""
509
 
510
+ #: breadcrumb_navxt_admin.php:637
 
511
  msgid "%s Taxonomy"
512
  msgstr ""
513
 
514
+ #: breadcrumb_navxt_admin.php:666
515
  msgid "Category Prefix"
516
  msgstr ""
517
 
518
+ #: breadcrumb_navxt_admin.php:666
519
  msgid "Applied before the anchor on all category breadcrumbs."
520
  msgstr ""
521
 
522
+ #: breadcrumb_navxt_admin.php:667
523
  msgid "Category Suffix"
524
  msgstr ""
525
 
526
+ #: breadcrumb_navxt_admin.php:667
527
  msgid "Applied after the anchor on all category breadcrumbs."
528
  msgstr ""
529
 
530
+ #: breadcrumb_navxt_admin.php:668
531
  msgid "Category Anchor"
532
  msgstr ""
533
 
534
+ #: breadcrumb_navxt_admin.php:668
535
  msgid "The anchor template for category breadcrumbs."
536
  msgstr ""
537
 
538
+ #: breadcrumb_navxt_admin.php:669
539
  msgid "Archive by Category Prefix"
540
  msgstr ""
541
 
542
+ #: breadcrumb_navxt_admin.php:669
543
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
544
  msgstr ""
545
 
546
+ #: breadcrumb_navxt_admin.php:670
547
  msgid "Archive by Category Suffix"
548
  msgstr ""
549
 
550
+ #: breadcrumb_navxt_admin.php:670
551
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
552
  msgstr ""
553
 
554
+ #: breadcrumb_navxt_admin.php:678
555
  msgid "Tag Prefix"
556
  msgstr ""
557
 
558
+ #: breadcrumb_navxt_admin.php:678
559
  msgid "Applied before the anchor on all tag breadcrumbs."
560
  msgstr ""
561
 
562
+ #: breadcrumb_navxt_admin.php:679
563
  msgid "Tag Suffix"
564
  msgstr ""
565
 
566
+ #: breadcrumb_navxt_admin.php:679
567
  msgid "Applied after the anchor on all tag breadcrumbs."
568
  msgstr ""
569
 
570
+ #: breadcrumb_navxt_admin.php:680
571
  msgid "Tag Anchor"
572
  msgstr ""
573
 
574
+ #: breadcrumb_navxt_admin.php:680
575
  msgid "The anchor template for tag breadcrumbs."
576
  msgstr ""
577
 
578
+ #: breadcrumb_navxt_admin.php:681
579
  msgid "Archive by Tag Prefix"
580
  msgstr ""
581
 
582
+ #: breadcrumb_navxt_admin.php:681
583
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
584
  msgstr ""
585
 
586
+ #: breadcrumb_navxt_admin.php:682
587
  msgid "Archive by Tag Suffix"
588
  msgstr ""
589
 
590
+ #: breadcrumb_navxt_admin.php:682
591
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
592
  msgstr ""
593
 
594
+ #: breadcrumb_navxt_admin.php:708
 
595
  msgid "Applied before the anchor on all %s breadcrumbs."
596
  msgstr ""
597
 
598
+ #: breadcrumb_navxt_admin.php:709
 
599
  msgid "Applied after the anchor on all %s breadcrumbs."
600
  msgstr ""
601
 
602
+ #: breadcrumb_navxt_admin.php:711
 
603
  msgid "Archive by %s Prefix"
604
  msgstr ""
605
 
606
+ #: breadcrumb_navxt_admin.php:711
 
607
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
608
  msgstr ""
609
 
610
+ #: breadcrumb_navxt_admin.php:712
 
611
  msgid "Archive by %s Suffix"
612
  msgstr ""
613
 
614
+ #: breadcrumb_navxt_admin.php:712
 
615
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
616
  msgstr ""
617
 
618
+ #: breadcrumb_navxt_admin.php:721
619
  msgid "Date Archives"
620
  msgstr ""
621
 
622
+ #: breadcrumb_navxt_admin.php:724
623
  msgid "Date Anchor"
624
  msgstr ""
625
 
626
+ #: breadcrumb_navxt_admin.php:724
627
  msgid "The anchor template for date breadcrumbs."
628
  msgstr ""
629
 
630
+ #: breadcrumb_navxt_admin.php:725
631
  msgid "Archive by Date Prefix"
632
  msgstr ""
633
 
634
+ #: breadcrumb_navxt_admin.php:725
635
  msgid "Applied before the anchor on all date breadcrumbs."
636
  msgstr ""
637
 
638
+ #: breadcrumb_navxt_admin.php:726
639
  msgid "Archive by Date Suffix"
640
  msgstr ""
641
 
642
+ #: breadcrumb_navxt_admin.php:726
643
  msgid "Applied after the anchor on all date breadcrumbs."
644
  msgstr ""
645
 
646
+ #: breadcrumb_navxt_admin.php:731
647
  msgid "Miscellaneous"
648
  msgstr ""
649
 
650
+ #: breadcrumb_navxt_admin.php:734
651
  msgid "Author Prefix"
652
  msgstr ""
653
 
654
+ #: breadcrumb_navxt_admin.php:735
655
  msgid "Author Suffix"
656
  msgstr ""
657
 
658
+ #: breadcrumb_navxt_admin.php:736
659
  msgid "Author Display Format"
660
  msgstr ""
661
 
662
+ #: breadcrumb_navxt_admin.php:736
663
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
664
  msgstr ""
665
 
666
+ #: breadcrumb_navxt_admin.php:737
667
  msgid "Search Prefix"
668
  msgstr ""
669
 
670
+ #: breadcrumb_navxt_admin.php:738
671
  msgid "Search Suffix"
672
  msgstr ""
673
 
674
+ #: breadcrumb_navxt_admin.php:739
675
  msgid "Search Anchor"
676
  msgstr ""
677
 
678
+ #: breadcrumb_navxt_admin.php:739
679
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
680
  msgstr ""
681
 
682
+ #: breadcrumb_navxt_admin.php:740
683
  msgid "404 Title"
684
  msgstr ""
685
 
686
+ #: breadcrumb_navxt_admin.php:741
687
  msgid "404 Prefix"
688
  msgstr ""
689
 
690
+ #: breadcrumb_navxt_admin.php:742
691
  msgid "404 Suffix"
692
  msgstr ""
693
 
694
+ #: breadcrumb_navxt_admin.php:747
695
  msgid "Save Changes"
696
  msgstr ""
697
 
698
+ #: breadcrumb_navxt_class.php:217
699
  msgid "Blog"
700
  msgstr ""
701
 
702
+ #: breadcrumb_navxt_class.php:236
703
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
704
  msgstr ""
705
 
706
+ #: breadcrumb_navxt_class.php:281
707
  msgid "404"
708
  msgstr ""
709
 
710
+ #: breadcrumb_navxt_class.php:284
711
  msgid "Search results for &#39;"
712
  msgstr ""
713
 
714
+ #: breadcrumb_navxt_class.php:288
715
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
716
  msgstr ""
717
 
718
+ #: breadcrumb_navxt_class.php:295
719
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
720
  msgstr ""
721
 
722
+ #: breadcrumb_navxt_class.php:298
723
  msgid "Articles by: "
724
  msgstr ""
725
 
726
+ #: breadcrumb_navxt_class.php:302
727
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
728
  msgstr ""
729
 
730
+ #: breadcrumb_navxt_class.php:311
731
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
732
  msgstr ""
733
 
734
+ #: breadcrumb_navxt_class.php:314
735
  msgid "Archive by category &#39;"
736
  msgstr ""
737
 
738
+ #: breadcrumb_navxt_class.php:318
739
  msgid "Archive by tag &#39;"
740
  msgstr ""
741
 
742
+ #: breadcrumb_navxt_class.php:321
743
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
744
  msgstr ""
745
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
mtekk_admin_class.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2009-2010 John Havlik (email : mtekkmonkey@gmail.com)
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
@@ -35,6 +35,8 @@ abstract class mtekk_admin
35
  protected $_has_contextual_help = false;
36
  function __construct()
37
  {
 
 
38
  //Admin Init Hook
39
  add_action('admin_init', array($this, 'init'));
40
  //WordPress Admin interface hook
@@ -56,12 +58,16 @@ abstract class mtekk_admin
56
  //Return a valid Undo anchor
57
  return ' <a title="' . $title . '" href="' . $url . '">' . __('Undo', $this->identifier) . '</a>';
58
  }
59
- function upgrade_anchor($title = '')
60
  {
61
  //Assemble our url, nonce and all
62
  $url = wp_nonce_url($this->admin_url() . '&' . $this->unique_prefix . '_admin_upgrade=true', $this->unique_prefix . '_admin_upgrade');
 
 
 
 
63
  //Return a valid Undo anchor
64
- return ' <a title="' . $title . '" href="' . $url . '">' . __('Migrate now.', $this->identifier) . '</a>';
65
  }
66
  function init()
67
  {
@@ -168,6 +174,8 @@ abstract class mtekk_admin
168
  {
169
  //Remove the option array setting
170
  delete_option($this->unique_prefix . '_options');
 
 
171
  //Remove the version setting
172
  delete_option($this->unique_prefix . '_version');
173
  }
@@ -177,13 +185,17 @@ abstract class mtekk_admin
177
  function version_check($version)
178
  {
179
  //Do a quick version check
180
- list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
181
- list($major, $minor, $release) = explode('.', $version);
182
- //Check if we have a newer version than the DB
183
- if($major < $plug_major || ($major == $plug_major && $minor < $plug_minor) || ($major == $plug_major && $minor == $plug_minor && $release < $plug_release))
184
  {
185
- //Throw an error since we could not load the file for various reasons
186
- $this->message['error'][] = __('Your settings are out of date.', $this->identifier) . $this->upgrade_anchor(__('Migrate the settings now.', $this->identifier));
 
 
 
 
 
 
 
187
  //Output any messages that there may be
188
  $this->message();
189
  }
@@ -363,27 +375,37 @@ abstract class mtekk_admin
363
  check_admin_referer($this->unique_prefix . '_admin_upgrade');
364
  //Grab the database options
365
  $opts = get_option($this->unique_prefix . '_options');
366
- //Feed the just read options into the upgrade function
367
- $this->opts_upgrade($opts, get_option($this->unique_prefix . '_version'));
368
- //Always have to update the version
369
- update_option($this->unique_prefix . '_version', $this->version);
370
- //Store the options
371
- update_option($this->unique_prefix . '_options', $this->opt);
372
- //Send the success/undo message
373
- $this->message['updated fade'][] = __('Settings successfully migrated.', $this->identifier);
 
 
 
 
 
 
 
 
 
 
374
  add_action('admin_notices', array($this, 'message'));
375
  }
376
  /**
377
  * contextual_help action hook function
378
  *
379
  * @param string $contextual_help
380
- * @param string $screen
381
  * @return string
382
  */
383
- function contextual_help($contextual_help, $screen)
384
  {
385
- //Add contextual help on current screen, keep compatibility with 2.8, 2.9 and 3.0
386
- if($screen->base == 'settings_page_' . $this->identifier || $screen == 'settings_page_' . $this->identifier)
387
  {
388
  $contextual_help = $this->_get_contextual_help();
389
  $this->_has_contextual_help = true;
@@ -508,7 +530,11 @@ abstract class mtekk_admin
508
  */
509
  function input_text($label, $option, $width = '32', $disable = false, $description = '')
510
  {
511
- $optid = $this->get_valid_id($option);?>
 
 
 
 
512
  <tr valign="top">
513
  <th scope="row">
514
  <label for="<?php echo $optid;?>"><?php echo $label;?></label>
@@ -529,7 +555,7 @@ abstract class mtekk_admin
529
  * @param bool $disable [optional]
530
  * @param string $description [optional]
531
  */
532
- function textbox($label, $option, $rows = '3', $disable = false, $description = '')
533
  {
534
  $optid = $this->get_valid_id($option);?>
535
  <p>
@@ -538,6 +564,33 @@ abstract class mtekk_admin
538
  <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="large-text code disabled"';}else{echo 'class="large-text code"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
539
  <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }
540
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  /**
542
  * This will output a well formed table row for a checkbox input
543
  *
@@ -592,8 +645,13 @@ abstract class mtekk_admin
592
  * @param string $description [optional]
593
  * @return
594
  */
595
- function input_select($label, $option, $values, $disable = false, $description = '')
596
  {
 
 
 
 
 
597
  $optid = $this->get_valid_id($option);?>
598
  <tr valign="top">
599
  <th scope="row">
@@ -601,7 +659,7 @@ abstract class mtekk_admin
601
  </th>
602
  <td>
603
  <select name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?>>
604
- <?php $this->select_options($option, $values); ?>
605
  </select><br />
606
  <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
607
  </td>
@@ -609,27 +667,21 @@ abstract class mtekk_admin
609
  <?php
610
  }
611
  /**
612
- * Displays wordpress options as <seclect> options defaults to true/false
613
  *
614
  * @param string $optionname name of wordpress options store
615
  * @param array $options array of names of options that can be selected
616
  * @param array $exclude[optional] array of names in $options array to be excluded
617
  */
618
- function select_options($optionname, $options, $exclude = array())
619
  {
620
  $value = $this->opt[$optionname];
621
- //First output the current value
622
- if($value)
623
- {
624
- printf('<option>%s</option>', $value);
625
- }
626
  //Now do the rest
627
- foreach($options as $option)
628
  {
629
- //Don't want multiple occurance of the current value
630
- if($option != $value && !in_array($option, $exclude))
631
  {
632
- printf('<option>%s</option>', $option);
633
  }
634
  }
635
  }
1
  <?php
2
  /*
3
+ Copyright 2009-2011 John Havlik (email : mtekkmonkey@gmail.com)
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
35
  protected $_has_contextual_help = false;
36
  function __construct()
37
  {
38
+ //We set the plugin basename here, could manually set it
39
+ $this->plugin_basename = plugin_basename(__FILE__);
40
  //Admin Init Hook
41
  add_action('admin_init', array($this, 'init'));
42
  //WordPress Admin interface hook
58
  //Return a valid Undo anchor
59
  return ' <a title="' . $title . '" href="' . $url . '">' . __('Undo', $this->identifier) . '</a>';
60
  }
61
+ function upgrade_anchor($title = '', $text = '')
62
  {
63
  //Assemble our url, nonce and all
64
  $url = wp_nonce_url($this->admin_url() . '&' . $this->unique_prefix . '_admin_upgrade=true', $this->unique_prefix . '_admin_upgrade');
65
+ if($text == '')
66
+ {
67
+ $text = __('Migrate now.', $this->identifier);
68
+ }
69
  //Return a valid Undo anchor
70
+ return ' <a title="' . $title . '" href="' . $url . '">' . $text . '</a>';
71
  }
72
  function init()
73
  {
174
  {
175
  //Remove the option array setting
176
  delete_option($this->unique_prefix . '_options');
177
+ //Remove the option backup array setting
178
+ delete_option($this->unique_prefix . '_options_bk');
179
  //Remove the version setting
180
  delete_option($this->unique_prefix . '_version');
181
  }
185
  function version_check($version)
186
  {
187
  //Do a quick version check
188
+ if(version_compare($version, $this->version, '<'))
 
 
 
189
  {
190
+ //Throw an error since the DB version is out of date
191
+ $this->message['error'][] = __('Your settings are out of date.', $this->identifier) . $this->upgrade_anchor(__('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
192
+ //Output any messages that there may be
193
+ $this->message();
194
+ }
195
+ else if(!is_array($this->opt))
196
+ {
197
+ //Throw an error since it appears the options were never registered
198
+ $this->message['error'][] = __('Your plugin install is incomplete.', $this->identifier) . $this->upgrade_anchor(__('Load default settings now.', $this->identifier), __('Complete now.', $this->identifier));
199
  //Output any messages that there may be
200
  $this->message();
201
  }
375
  check_admin_referer($this->unique_prefix . '_admin_upgrade');
376
  //Grab the database options
377
  $opts = get_option($this->unique_prefix . '_options');
378
+ if(is_array($opts))
379
+ {
380
+ //Feed the just read options into the upgrade function
381
+ $this->opts_upgrade($opts, get_option($this->unique_prefix . '_version'));
382
+ //Always have to update the version
383
+ update_option($this->unique_prefix . '_version', $this->version);
384
+ //Store the options
385
+ update_option($this->unique_prefix . '_options', $this->opt);
386
+ //Send the success message
387
+ $this->message['updated fade'][] = __('Settings successfully migrated.', $this->identifier);
388
+ }
389
+ else
390
+ {
391
+ //Run the install script
392
+ $this->install();
393
+ //Send the success message
394
+ $this->message['updated fade'][] = __('Default settings successfully installed.', $this->identifier);
395
+ }
396
  add_action('admin_notices', array($this, 'message'));
397
  }
398
  /**
399
  * contextual_help action hook function
400
  *
401
  * @param string $contextual_help
402
+ * @param string $screen_id
403
  * @return string
404
  */
405
+ function contextual_help($contextual_help, $screen_id)
406
  {
407
+ //Add contextual help on current screen
408
+ if($screen_id == 'settings_page_' . $this->identifier)
409
  {
410
  $contextual_help = $this->_get_contextual_help();
411
  $this->_has_contextual_help = true;
530
  */
531
  function input_text($label, $option, $width = '32', $disable = false, $description = '')
532
  {
533
+ $optid = $this->get_valid_id($option);
534
+ if($disable)
535
+ {?>
536
+ <input type="hidden" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" />
537
+ <?php } ?>
538
  <tr valign="top">
539
  <th scope="row">
540
  <label for="<?php echo $optid;?>"><?php echo $label;?></label>
555
  * @param bool $disable [optional]
556
  * @param string $description [optional]
557
  */
558
+ function textbox($label, $option, $height = '3', $disable = false, $description = '')
559
  {
560
  $optid = $this->get_valid_id($option);?>
561
  <p>
564
  <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="large-text code disabled"';}else{echo 'class="large-text code"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
565
  <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }
566
  }
567
+ /**
568
+ * This will output a well formed tiny mce ready textbox
569
+ *
570
+ * @param string $label
571
+ * @param string $option
572
+ * @param string $rows [optional]
573
+ * @param bool $disable [optional]
574
+ * @param string $description [optional]
575
+ */
576
+ function tinymce($label, $option, $height = '3', $disable = false, $description = '')
577
+ {
578
+ $optid = $this->get_valid_id($option);
579
+ if($disable)
580
+ {?>
581
+ <input type="hidden" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" />
582
+ <?php } ?>
583
+ <tr valign="top">
584
+ <th scope="row">
585
+ <label for="<?php echo $optid;?>"><?php echo $label;?></label>
586
+ </th>
587
+ <td>
588
+ <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="mtekk_mce disabled"';}else{echo 'class="mtekk_mce"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
589
+ <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
590
+ </td>
591
+ </tr>
592
+ <?php
593
+ }
594
  /**
595
  * This will output a well formed table row for a checkbox input
596
  *
645
  * @param string $description [optional]
646
  * @return
647
  */
648
+ function input_select($label, $option, $values, $disable = false, $description = '', $titles = false)
649
  {
650
+ //If we don't have titles passed in, we'll use option names as values
651
+ if(!$titles)
652
+ {
653
+ $titles = $values;
654
+ }
655
  $optid = $this->get_valid_id($option);?>
656
  <tr valign="top">
657
  <th scope="row">
659
  </th>
660
  <td>
661
  <select name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?>>
662
+ <?php $this->select_options($option, $titles, $values); ?>
663
  </select><br />
664
  <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
665
  </td>
667
  <?php
668
  }
669
  /**
670
+ * Displays wordpress options as <seclect>
671
  *
672
  * @param string $optionname name of wordpress options store
673
  * @param array $options array of names of options that can be selected
674
  * @param array $exclude[optional] array of names in $options array to be excluded
675
  */
676
+ function select_options($optionname, $options, $values, $exclude = array())
677
  {
678
  $value = $this->opt[$optionname];
 
 
 
 
 
679
  //Now do the rest
680
+ foreach($options as $key => $option)
681
  {
682
+ if(!in_array($option, $exclude))
 
683
  {
684
+ printf('<option value="%s" %s>%s</option>', $values[$key], selected(true, ($value == $values[$key]), false), $option);
685
  }
686
  }
687
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XE
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
- Stable tag: 3.7.0
8
  Adds breadcrumb navigation showing the visitor's path to their current location.
9
 
10
  == Description ==
@@ -33,6 +33,19 @@ Don't see your language on the list? Feel free to translate Breadcrumb NavXT and
33
  Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
34
 
35
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  = 3.7.0 =
37
  * New feature: Support for �global�/network wide breadcrumb trails in networked setups of WordPress 3.0.
38
  * New feature: Can use any hierarchical post type as a hierarchy for flat post types.
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
+ Stable tag: 3.8.0
8
  Adds breadcrumb navigation showing the visitor's path to their current location.
9
 
10
  == Description ==
33
  Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
34
 
35
  == Changelog ==
36
+ = 3.8.0 =
37
+ * New feature: Error reporting added for some errors that may occur during a settings save.
38
+ * New feature: Custom post types may use dates as their taxonomy type.
39
+ * New feature: New display_nested function to facilitate support for Google�s Breadcrumbs RDFa and Microformat.
40
+ * New feature: Paged display works for all post types now (was previously restricted to archives).
41
+ * Bug fix: Fixed a few cases where Breadcrumb NavXT may cause PHP warnings.
42
+ * Bug fix: Automatically deactivates if PHP version is tool old rather than just displaying warning message.
43
+ * Bug fix: Custom post types that are not associated with any taxonomies no longer cause PHP Notices.
44
+ * Bug fix: Various PHP Notices introduced in 3.7.0 were fixed.
45
+ * Bug fix: Fixed issue where multiple runs caused the current_item_prefix and current_item_suffix to be applied multiple times.
46
+ * Bug fix: The included display functions will behave more appropriately when database settings don�t exist.
47
+ * Bug fix: Fixed multibyte UTF-8 character support for custom taxonomies.
48
+ * Bug fix: Fixed issue where the widget (Appearance > Widgets) would not load the appropriate translations.
49
  = 3.7.0 =
50
  * New feature: Support for �global�/network wide breadcrumb trails in networked setups of WordPress 3.0.
51
  * New feature: Can use any hierarchical post type as a hierarchy for flat post types.