Breadcrumb NavXT - Version 3.6.0

Version Description

  • New feature: Vastly improved support for WordPress custom post types.
  • New feature: Can now restrict breadcrumb trail output for the front page in the included Widget.
  • New feature: Can now undo setting saves, resets, and imports.
  • New feature: Translations for Japanese now included thanks to Kazuhiro Terada.
  • Bug fix: Fixed issue where the class element were not closed in a li opening tag.
  • Bug fix: Safer handling of blank anchor templates.
  • Bug fix: Fixed issue where the %title% tag in the current item anchor template would be trimmed.
Download this release

Release Info

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

Code changes from version 3.5.1 to 3.6.0

breadcrumb_navxt_admin.php CHANGED
@@ -1,11 +1,11 @@
1
  <?php
2
  /*
3
  Plugin Name: Breadcrumb NavXT
4
- Plugin URI: http://mtekk.weblogs.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.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
- Version: 3.5.1
7
  Author: John Havlik
8
- Author URI: http://mtekk.weblogs.us/
9
  */
10
  /* Copyright 2007-2010 John Havlik (email : mtekkmonkey@gmail.com)
11
 
@@ -23,11 +23,11 @@ Author URI: http://mtekk.weblogs.us/
23
  along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
- //Do a PHP version check
27
  $phpVersion = explode('.', phpversion());
28
- if($phpVersion[0] < 5)
29
  {
30
- 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.0.0');
31
  die();
32
  }
33
  //Include the breadcrumb class
@@ -50,7 +50,7 @@ class bcn_admin extends mtekk_admin
50
  *
51
  * @var string
52
  */
53
- protected $version = '3.5.1';
54
  protected $full_name = 'Breadcrumb NavXT Settings';
55
  protected $short_name = 'Breadcrumb NavXT';
56
  protected $access_level = 'manage_options';
@@ -73,7 +73,7 @@ class bcn_admin extends mtekk_admin
73
  {
74
  //We'll let it fail fataly if the class isn't there as we depend on it
75
  $this->breadcrumb_trail = new bcn_breadcrumb_trail;
76
- //Sync up our option array (not with db however)
77
  $this->opt = $this->breadcrumb_trail->opt;
78
  //We set the plugin basename here, could manually set it, but this is for demonstration purposes
79
  //$this->plugin_base = plugin_basename(__FILE__);
@@ -83,7 +83,7 @@ class bcn_admin extends mtekk_admin
83
  parent::__construct();
84
  }
85
  /**
86
- * admin initialisation callback function
87
  *
88
  * is bound to wpordpress action 'admin_init' on instantiation
89
  *
@@ -94,6 +94,8 @@ class bcn_admin extends mtekk_admin
94
  {
95
  //We're going to make sure we run the parent's version of this function as well
96
  parent::init();
 
 
97
  //Add javascript enqeueing callback
98
  add_action('wp_print_scripts', array($this, 'javascript'));
99
  }
@@ -118,7 +120,7 @@ class bcn_admin extends mtekk_admin
118
  */
119
  function install()
120
  {
121
- global $wp_taxonomies;
122
  //Call our little security function
123
  $this->security();
124
  //Reduce db queries by saving this
@@ -129,16 +131,8 @@ class bcn_admin extends mtekk_admin
129
  //Split up the db version into it's components
130
  list($major, $minor, $release) = explode('.', $db_version);
131
  $opts = $this->get_option('bcn_options');
132
- //Upgrading from 3.0
133
- if($major == 3 && $minor == 0)
134
- {
135
- $opts['search_anchor'] = __('<a title="Go to the first page of search results for %title%." href="%link%">','breadcrumb_navxt');
136
- }
137
- else if($major == 3 && $minor < 3)
138
- {
139
- $opts['blog_display'] = true;
140
- }
141
- else if($major == 3 && $minor < 4)
142
  {
143
  //Inline upgrade of the tag setting
144
  if($opts['post_taxonomy_type'] === 'tag')
@@ -152,10 +146,66 @@ class bcn_admin extends mtekk_admin
152
  $opts['post_tag_suffix'] = $this->breadcrumb_trail->opt['tag_suffix'];
153
  $opts['post_tag_anchor'] = $this->breadcrumb_trail->opt['tag_anchor'];
154
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
155
  //If it was never installed, copy over default settings
156
  else if(!$opts)
157
  {
158
- $opts = $this->opt;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  }
160
  //We'll add our custom taxonomy stuff at this time
161
  foreach($wp_taxonomies as $taxonomy)
@@ -177,7 +227,7 @@ class bcn_admin extends mtekk_admin
177
  //Always have to update the version
178
  $this->update_option('bcn_version', $this->version);
179
  //Store the options
180
- $this->add_option('bcn_options', $opts);
181
  }
182
  //Check if we have valid anchors
183
  if($temp = $this->get_option('bcn_options'))
@@ -208,11 +258,46 @@ class bcn_admin extends mtekk_admin
208
  */
209
  function opts_update()
210
  {
211
- global $wp_taxonomies;
212
  //Do some security related thigns as we are not using the normal WP settings API
213
  $this->security();
214
  //Do a nonce check, prevent malicious link/form problems
215
  check_admin_referer('bcn_options-options');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  //We'll add our custom taxonomy stuff at this time
217
  foreach($wp_taxonomies as $taxonomy)
218
  {
@@ -230,6 +315,8 @@ class bcn_admin extends mtekk_admin
230
  }
231
  }
232
  }
 
 
233
  //Grab our incomming array (the data is dirty)
234
  $input = $_POST['bcn_options'];
235
  //Loop through all of the existing options (avoids random setting injection)
@@ -259,7 +346,7 @@ class bcn_admin extends mtekk_admin
259
  //Commit the option changes
260
  $this->update_option('bcn_options', $this->opt);
261
  //Let the user know everything went ok
262
- $this->message['updated fade'][] = __('Settings successfully saved.', $this->identifier);
263
  add_action('admin_notices', array($this, 'message'));
264
  }
265
  /**
@@ -283,7 +370,7 @@ class bcn_admin extends mtekk_admin
283
  protected function _get_help_text()
284
  {
285
  return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
286
- '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>');
287
  }
288
  /**
289
  * admin_head
@@ -334,19 +421,6 @@ class bcn_admin extends mtekk_admin
334
  bcn_context_init();
335
  bcn_tabulator_init();
336
  });
337
- function bcn_confirm(type)
338
- {
339
- if(type == 'reset'){
340
- var answer = confirm("<?php _e('All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?', 'breadcrumb_navxt'); ?>");
341
- }
342
- else{
343
- var answer = confirm("<?php _e('All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?', 'breadcrumb_navxt'); ?>");
344
- }
345
- if(answer)
346
- return true;
347
- else
348
- return false;
349
- }
350
  /**
351
  * Tabulator Bootup
352
  */
@@ -402,10 +476,8 @@ class bcn_admin extends mtekk_admin
402
  */
403
  function admin_page()
404
  {
405
- global $wp_taxonomies;
406
- $this->security();
407
- //Grab the current settings from the DB
408
- $this->opt = $this->get_option('bcn_options');?>
409
  <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
410
  <p<?php if($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
411
  print $this->_get_help_text();
@@ -466,10 +538,10 @@ class bcn_admin extends mtekk_admin
466
  <h3><?php _e('Posts &amp; Pages', 'breadcrumb_navxt'); ?></h3>
467
  <table class="form-table">
468
  <?php
469
- $this->input_text(__('Post Prefix', 'breadcrumb_navxt'), 'post_prefix', '32');
470
- $this->input_text(__('Post Suffix', 'breadcrumb_navxt'), 'post_suffix', '32');
471
- $this->input_text(__('Post Anchor', 'breadcrumb_navxt'), 'post_anchor', '64', false, __('The anchor template for post breadcrumbs.', 'breadcrumb_navxt'));
472
- $this->input_check(__('Post Taxonomy Display', 'breadcrumb_navxt'), 'post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb_navxt'));
473
  ?>
474
  <tr valign="top">
475
  <th scope="row">
@@ -477,17 +549,17 @@ class bcn_admin extends mtekk_admin
477
  </th>
478
  <td>
479
  <?php
480
- $this->input_radio('post_taxonomy_type', 'category', __('Categories'));
481
- $this->input_radio('post_taxonomy_type', 'date', __('Dates'));
482
- $this->input_radio('post_taxonomy_type', 'post_tag', __('Tags'));
483
- $this->input_radio('post_taxonomy_type', 'page', __('Pages'));
484
  //Loop through all of the taxonomies in the array
485
  foreach($wp_taxonomies as $taxonomy)
486
  {
487
  //We only want custom taxonomies
488
  if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
489
  {
490
- $this->input_radio('post_taxonomy_type', $taxonomy->name, ucwords(__($taxonomy->label)));
491
  }
492
  }
493
  ?>
@@ -495,14 +567,85 @@ class bcn_admin extends mtekk_admin
495
  </td>
496
  </tr>
497
  <?php
498
- $this->input_text(__('Page Prefix', 'breadcrumb_navxt'), 'page_prefix', '32');
499
- $this->input_text(__('Page Suffix', 'breadcrumb_navxt'), 'page_suffix', '32');
500
- $this->input_text(__('Page Anchor', 'breadcrumb_navxt'), 'page_anchor', '64', false, __('The anchor template for page breadcrumbs.', 'breadcrumb_navxt'));
501
  $this->input_text(__('Attachment Prefix', 'breadcrumb_navxt'), 'attachment_prefix', '32');
502
  $this->input_text(__('Attachment Suffix', 'breadcrumb_navxt'), 'attachment_suffix', '32');
503
  ?>
504
  </table>
505
  </fieldset>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
506
  <fieldset id="category" class="bcn_options">
507
  <h3><?php _e('Categories', 'breadcrumb_navxt'); ?></h3>
508
  <table class="form-table">
@@ -528,6 +671,8 @@ class bcn_admin extends mtekk_admin
528
  </table>
529
  </fieldset>
530
  <?php
 
 
531
  //Loop through all of the taxonomies in the array
532
  foreach($wp_taxonomies as $taxonomy)
533
  {
@@ -540,7 +685,7 @@ class bcn_admin extends mtekk_admin
540
  //Add the necessary option array members
541
  $this->opt[$taxonomy->name . '_prefix'] = '';
542
  $this->opt[$taxonomy->name . '_suffix'] = '';
543
- $this->opt[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', ucwords(__($taxonomy->label))), 'breadcrumb_navxt');
544
  $this->opt['archive_' . $taxonomy->name . '_prefix'] = '';
545
  $this->opt['archive_' . $taxonomy->name . '_suffix'] = '';
546
  //Let's make sure that the newly available options are "registered" in our db
@@ -551,11 +696,11 @@ class bcn_admin extends mtekk_admin
551
  <h3><?php echo ucwords(__($taxonomy->label)); ?></h3>
552
  <table class="form-table">
553
  <?php
554
- $this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
555
- $this->input_text(sprintf(__('%s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), $taxonomy->name . '_suffix', '32', false, sprintf(__('Applied after the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
556
- $this->input_text(sprintf(__('%s Anchor', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), $taxonomy->name . '_anchor', '64', false, sprintf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
557
- $this->input_text(sprintf(__('Archive by %s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), 'archive_' . $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
558
- $this->input_text(sprintf(__('Archive by %s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), 'archive_' . $taxonomy->name . '_suffix', '32', false, sprintf(__('Applied after the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
559
  ?>
560
  </table>
561
  </fieldset>
@@ -599,15 +744,23 @@ class bcn_admin extends mtekk_admin
599
  /**
600
  * add_option
601
  *
602
- * This inserts the value into the option name, WPMU safe
603
  *
604
  * @param (string) key name where to save the value in $value
605
  * @param (mixed) value to insert into the options db
 
606
  * @return (bool)
607
  */
608
- function add_option($key, $value)
609
  {
610
- return add_option($key, $value);
 
 
 
 
 
 
 
611
  }
612
  /**
613
  * delete_option
@@ -658,7 +811,7 @@ class bcn_admin extends mtekk_admin
658
  */
659
  function display($return = false, $linked = true, $reverse = false)
660
  {
661
- //Grab the current settings from the DB
662
  $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
663
  //Generate the breadcrumb trail
664
  $this->breadcrumb_trail->fill();
@@ -676,7 +829,7 @@ class bcn_admin extends mtekk_admin
676
  */
677
  function display_list($return = false, $linked = true, $reverse = false)
678
  {
679
- //Grab the current settings from the DB
680
  $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
681
  //Generate the breadcrumb trail
682
  $this->breadcrumb_trail->fill();
1
  <?php
2
  /*
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.6.0
7
  Author: John Havlik
8
+ Author URI: http://mtekk.us/
9
  */
10
  /* Copyright 2007-2010 John Havlik (email : mtekkmonkey@gmail.com)
11
 
23
  along with this program; if not, write to the Free Software
24
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
  */
26
+ //Do a PHP version check, require 5.2 or newer
27
  $phpVersion = explode('.', phpversion());
28
+ if($phpVersion[0] < 5 || ($phpVersion[0] = 5 && $phpVersion[0] < 2))
29
  {
30
+ 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');
31
  die();
32
  }
33
  //Include the breadcrumb class
50
  *
51
  * @var string
52
  */
53
+ protected $version = '3.6.0';
54
  protected $full_name = 'Breadcrumb NavXT Settings';
55
  protected $short_name = 'Breadcrumb NavXT';
56
  protected $access_level = 'manage_options';
73
  {
74
  //We'll let it fail fataly if the class isn't there as we depend on it
75
  $this->breadcrumb_trail = new bcn_breadcrumb_trail;
76
+ //Grab defaults from the breadcrumb_trail object
77
  $this->opt = $this->breadcrumb_trail->opt;
78
  //We set the plugin basename here, could manually set it, but this is for demonstration purposes
79
  //$this->plugin_base = plugin_basename(__FILE__);
83
  parent::__construct();
84
  }
85
  /**
86
+ * admin initialization callback function
87
  *
88
  * is bound to wpordpress action 'admin_init' on instantiation
89
  *
94
  {
95
  //We're going to make sure we run the parent's version of this function as well
96
  parent::init();
97
+ //Grab the current settings from the DB
98
+ $this->opt = $this->get_option('bcn_options');
99
  //Add javascript enqeueing callback
100
  add_action('wp_print_scripts', array($this, 'javascript'));
101
  }
120
  */
121
  function install()
122
  {
123
+ global $wp_taxonomies, $wp_post_types;
124
  //Call our little security function
125
  $this->security();
126
  //Reduce db queries by saving this
131
  //Split up the db version into it's components
132
  list($major, $minor, $release) = explode('.', $db_version);
133
  $opts = $this->get_option('bcn_options');
134
+ //Upgrading from 3.4
135
+ if($major == 3 && $minor < 4)
 
 
 
 
 
 
 
 
136
  {
137
  //Inline upgrade of the tag setting
138
  if($opts['post_taxonomy_type'] === 'tag')
146
  $opts['post_tag_suffix'] = $this->breadcrumb_trail->opt['tag_suffix'];
147
  $opts['post_tag_anchor'] = $this->breadcrumb_trail->opt['tag_anchor'];
148
  }
149
+ //Upgrading to 3.6
150
+ if($major == 3 && $minor < 6)
151
+ {
152
+ //Added post_ prefix to avoid conflicts with custom taxonomies
153
+ $opts['post_page_prefix'] = $opts['page_prefix'];
154
+ $opts['post_page_suffix'] = $opts['page_suffix'];
155
+ $opts['post_page_anchor'] = $opts['page_anchor'];
156
+ $opts['post_post_prefix'] = $opts['post_prefix'];
157
+ $opts['post_post_suffix'] = $opts['post_suffix'];
158
+ $opts['post_post_anchor'] = $opts['post_anchor'];
159
+ $opts['post_post_taxonomy_display'] = $opts['post_taxonomy_display'];
160
+ $opts['post_post_taxonomy_type'] = $opts['post_taxonomy_type'];
161
+ //Update to non-autoload db version
162
+ $this->delete_option('bcn_version');
163
+ $this->add_option('bcn_version', $this->version, false);
164
+ $this->add_option('bcn_options_bk', $this->opt, false);
165
+ }
166
  //If it was never installed, copy over default settings
167
  else if(!$opts)
168
  {
169
+ //Grab defaults from the breadcrumb_trail object
170
+ $opts = $this->breadcrumb_trail->opt;
171
+ //Add the options
172
+ $this->add_option('bcn_options', $this->opt);
173
+ $this->add_option('bcn_options_bk', $this->opt, false);
174
+ //Add the version, no need to autoload the db version
175
+ $this->add_option('bcn_version', $this->version, false);
176
+ }
177
+ //Loop through all of the post types in the array
178
+ foreach($wp_post_types as $post_type)
179
+ {
180
+ //We only want custom post types
181
+ if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
182
+ {
183
+ //If the post type does not have settings in the options array yet, we need to load some defaults
184
+ if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
185
+ {
186
+ //Add the necessary option array members
187
+ $this->opt['post_' . $post_type->name . '_prefix'] = '';
188
+ $this->opt['post_' . $post_type->name . '_suffix'] = '';
189
+ $this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
190
+ //If it is flat, we need a taxonomy selection
191
+ if(!$post_type->hierarchical)
192
+ {
193
+ //Be safe and disable taxonomy display by default
194
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = false;
195
+ //Loop through all of the possible taxonomies
196
+ foreach($wp_taxonomies as $taxonomy)
197
+ {
198
+ //Activate the first taxonomy valid for this post type and exit the loop
199
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
200
+ {
201
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = true;
202
+ $this->opt['post_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
203
+ break;
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
  }
210
  //We'll add our custom taxonomy stuff at this time
211
  foreach($wp_taxonomies as $taxonomy)
227
  //Always have to update the version
228
  $this->update_option('bcn_version', $this->version);
229
  //Store the options
230
+ $this->update_option('bcn_options', $opts);
231
  }
232
  //Check if we have valid anchors
233
  if($temp = $this->get_option('bcn_options'))
258
  */
259
  function opts_update()
260
  {
261
+ global $wp_taxonomies, $wp_post_types;
262
  //Do some security related thigns as we are not using the normal WP settings API
263
  $this->security();
264
  //Do a nonce check, prevent malicious link/form problems
265
  check_admin_referer('bcn_options-options');
266
+ //Update local options from database
267
+ $this->opt = $this->get_option('bcn_options');
268
+ //Loop through all of the post types in the array
269
+ foreach($wp_post_types as $post_type)
270
+ {
271
+ //We only want custom post types
272
+ if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
273
+ {
274
+ //If the post type does not have settings in the options array yet, we need to load some defaults
275
+ if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
276
+ {
277
+ //Add the necessary option array members
278
+ $this->opt['post_' . $post_type->name . '_prefix'] = '';
279
+ $this->opt['post_' . $post_type->name . '_suffix'] = '';
280
+ $this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
281
+ //If it is flat, we need a taxonomy selection
282
+ if(!$post_type->hierarchical)
283
+ {
284
+ //Be safe and disable taxonomy display by default
285
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = false;
286
+ //Loop through all of the possible taxonomies
287
+ foreach($wp_taxonomies as $taxonomy)
288
+ {
289
+ //Activate the first taxonomy valid for this post type and exit the loop
290
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
291
+ {
292
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = true;
293
+ $this->opt['post_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
294
+ break;
295
+ }
296
+ }
297
+ }
298
+ }
299
+ }
300
+ }
301
  //We'll add our custom taxonomy stuff at this time
302
  foreach($wp_taxonomies as $taxonomy)
303
  {
315
  }
316
  }
317
  }
318
+ //Update our backup options
319
+ $this->update_option('bcn_options_bk', $this->opt);
320
  //Grab our incomming array (the data is dirty)
321
  $input = $_POST['bcn_options'];
322
  //Loop through all of the existing options (avoids random setting injection)
346
  //Commit the option changes
347
  $this->update_option('bcn_options', $this->opt);
348
  //Let the user know everything went ok
349
+ $this->message['updated fade'][] = __('Settings successfully saved.', $this->identifier) . $this->undo_anchor(__('Undo the options save.', $this->identifier));
350
  add_action('admin_notices', array($this, 'message'));
351
  }
352
  /**
370
  protected function _get_help_text()
371
  {
372
  return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
373
+ '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>');
374
  }
375
  /**
376
  * admin_head
421
  bcn_context_init();
422
  bcn_tabulator_init();
423
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
424
  /**
425
  * Tabulator Bootup
426
  */
476
  */
477
  function admin_page()
478
  {
479
+ global $wp_taxonomies, $wp_post_types;
480
+ $this->security();?>
 
 
481
  <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
482
  <p<?php if($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
483
  print $this->_get_help_text();
538
  <h3><?php _e('Posts &amp; Pages', 'breadcrumb_navxt'); ?></h3>
539
  <table class="form-table">
540
  <?php
541
+ $this->input_text(__('Post Prefix', 'breadcrumb_navxt'), 'post_post_prefix', '32');
542
+ $this->input_text(__('Post Suffix', 'breadcrumb_navxt'), 'post_post_suffix', '32');
543
+ $this->input_text(__('Post Anchor', 'breadcrumb_navxt'), 'post_post_anchor', '64', false, __('The anchor template for post breadcrumbs.', 'breadcrumb_navxt'));
544
+ $this->input_check(__('Post Taxonomy Display', 'breadcrumb_navxt'), 'post_post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb_navxt'));
545
  ?>
546
  <tr valign="top">
547
  <th scope="row">
549
  </th>
550
  <td>
551
  <?php
552
+ $this->input_radio('post_post_taxonomy_type', 'category', __('Categories'));
553
+ $this->input_radio('post_post_taxonomy_type', 'date', __('Dates'));
554
+ $this->input_radio('post_post_taxonomy_type', 'post_tag', __('Tags'));
555
+ $this->input_radio('post_post_taxonomy_type', 'page', __('Pages'));
556
  //Loop through all of the taxonomies in the array
557
  foreach($wp_taxonomies as $taxonomy)
558
  {
559
  //We only want custom taxonomies
560
  if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
561
  {
562
+ $this->input_radio('post_post_taxonomy_type', $taxonomy->name, ucwords(__($taxonomy->label)));
563
  }
564
  }
565
  ?>
567
  </td>
568
  </tr>
569
  <?php
570
+ $this->input_text(__('Page Prefix', 'breadcrumb_navxt'), 'post_page_prefix', '32');
571
+ $this->input_text(__('Page Suffix', 'breadcrumb_navxt'), 'post_page_suffix', '32');
572
+ $this->input_text(__('Page Anchor', 'breadcrumb_navxt'), 'post_page_anchor', '64', false, __('The anchor template for page breadcrumbs.', 'breadcrumb_navxt'));
573
  $this->input_text(__('Attachment Prefix', 'breadcrumb_navxt'), 'attachment_prefix', '32');
574
  $this->input_text(__('Attachment Suffix', 'breadcrumb_navxt'), 'attachment_suffix', '32');
575
  ?>
576
  </table>
577
  </fieldset>
578
+ <?php
579
+ //Loop through all of the post types in the array
580
+ foreach($wp_post_types as $post_type)
581
+ {
582
+ //We only want custom post types
583
+ if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
584
+ {
585
+ //If the post type does not have settings in the options array yet, we need to load some defaults
586
+ if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
587
+ {
588
+ //Add the necessary option array members
589
+ $this->opt['post_' . $post_type->name . '_prefix'] = '';
590
+ $this->opt['post_' . $post_type->name . '_suffix'] = '';
591
+ $this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
592
+ //If it is flat, we need a taxonomy selection
593
+ if(!$post_type->hierarchical)
594
+ {
595
+ //Be safe and disable taxonomy display by default
596
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = false;
597
+ //Loop through all of the possible taxonomies
598
+ foreach($wp_taxonomies as $taxonomy)
599
+ {
600
+ //Activate the first taxonomy valid for this post type and exit the loop
601
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
602
+ {
603
+ $this->opt['post_' . $post_type->name . '_taxonomy_display'] = true;
604
+ $this->opt['post_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
605
+ break;
606
+ }
607
+ }
608
+ }
609
+ //Let's make sure that the newly available options are "registered" in our db
610
+ $this->update_option('bcn_options', $this->opt);
611
+ }?>
612
+ <fieldset id="post_<?php echo $post_type->name ?>" class="bcn_options">
613
+ <h3><?php echo $post_type->labels->singular_name; ?></h3>
614
+ <table class="form-table">
615
+ <?php
616
+ $this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_prefix', '32');
617
+ $this->input_text(sprintf(__('%s Suffix', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_suffix', '32');
618
+ $this->input_text(sprintf(__('%s Anchor', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_anchor', '64', false, sprintf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($post_type->labels->singular_name))));
619
+ //If it is flat, we need a taxonomy selection
620
+ if(!$post_type->hierarchical)
621
+ {
622
+ $this->input_check(sprintf(__('%s Taxonomy Display', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the taxonomy leading to a %s in the breadcrumb trail.', 'breadcrumb_navxt'), strtolower(__($post_type->labels->singular_name))));
623
+ ?>
624
+ <tr valign="top">
625
+ <th scope="row">
626
+ <?php printf(__('%s Taxonomy', 'breadcrumb_navxt'), $post_type->labels->singular_name); ?>
627
+ </th>
628
+ <td>
629
+ <?php
630
+ //Loop through all of the taxonomies in the array
631
+ foreach($wp_taxonomies as $taxonomy)
632
+ {
633
+ //We only want custom taxonomies
634
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
635
+ {
636
+ $this->input_radio('post_' . $post_type->name . '_taxonomy_type', $taxonomy->name, $taxonomy->labels->singular_name);
637
+ }
638
+ }
639
+ ?>
640
+ <span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb_navxt'); ?></span>
641
+ </td>
642
+ </tr>
643
+ <?php } ?>
644
+ </table>
645
+ </fieldset>
646
+ <?php
647
+ }
648
+ }?>
649
  <fieldset id="category" class="bcn_options">
650
  <h3><?php _e('Categories', 'breadcrumb_navxt'); ?></h3>
651
  <table class="form-table">
671
  </table>
672
  </fieldset>
673
  <?php
674
+ //var_dump($wp_taxonomies);
675
+ //var_dump($wp_post_types);
676
  //Loop through all of the taxonomies in the array
677
  foreach($wp_taxonomies as $taxonomy)
678
  {
685
  //Add the necessary option array members
686
  $this->opt[$taxonomy->name . '_prefix'] = '';
687
  $this->opt[$taxonomy->name . '_suffix'] = '';
688
+ $this->opt[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', $taxonomy->labels->singular_name), 'breadcrumb_navxt');
689
  $this->opt['archive_' . $taxonomy->name . '_prefix'] = '';
690
  $this->opt['archive_' . $taxonomy->name . '_suffix'] = '';
691
  //Let's make sure that the newly available options are "registered" in our db
696
  <h3><?php echo ucwords(__($taxonomy->label)); ?></h3>
697
  <table class="form-table">
698
  <?php
699
+ $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))));
700
+ $this->input_text(sprintf(__('%s Suffix', 'breadcrumb_navxt'), $taxonomy->labels->singular_name), $taxonomy->name . '_suffix', '32', false, sprintf(__('Applied after the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
701
+ $this->input_text(sprintf(__('%s Anchor', 'breadcrumb_navxt'), $taxonomy->labels->singular_name), $taxonomy->name . '_anchor', '64', false, sprintf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
702
+ $this->input_text(sprintf(__('Archive by %s Prefix', 'breadcrumb_navxt'), $taxonomy->labels->singular_name), 'archive_' . $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
703
+ $this->input_text(sprintf(__('Archive by %s Suffix', 'breadcrumb_navxt'), $taxonomy->labels->singular_name), 'archive_' . $taxonomy->name . '_suffix', '32', false, sprintf(__('Applied after the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
704
  ?>
705
  </table>
706
  </fieldset>
744
  /**
745
  * add_option
746
  *
747
+ * This inserts the value into the option name, works around WP's stupid string bool
748
  *
749
  * @param (string) key name where to save the value in $value
750
  * @param (mixed) value to insert into the options db
751
+ * @param (bool) should WordPress autoload this option
752
  * @return (bool)
753
  */
754
+ function add_option($key, $value, $autoload = true)
755
  {
756
+ if($autoload)
757
+ {
758
+ return add_option($key, $value);
759
+ }
760
+ else
761
+ {
762
+ return add_option($key, $value, '', 'no');
763
+ }
764
  }
765
  /**
766
  * delete_option
811
  */
812
  function display($return = false, $linked = true, $reverse = false)
813
  {
814
+ //Grab the current settings from the db
815
  $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
816
  //Generate the breadcrumb trail
817
  $this->breadcrumb_trail->fill();
829
  */
830
  function display_list($return = false, $linked = true, $reverse = false)
831
  {
832
+ //Grab the current settings from the db
833
  $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
834
  //Generate the breadcrumb trail
835
  $this->breadcrumb_trail->fill();
breadcrumb_navxt_class.php CHANGED
@@ -67,6 +67,11 @@ class bcn_breadcrumb
67
  */
68
  function set_anchor($template, $url)
69
  {
 
 
 
 
 
70
  //Set the anchor, we strip tangs from the title to prevent html validation problems
71
  $this->anchor = str_replace('%title%', strip_tags($this->title), str_replace('%link%', $url, $template));
72
  //Set linked to true since we called this function
@@ -130,7 +135,7 @@ class bcn_breadcrumb
130
  class bcn_breadcrumb_trail
131
  {
132
  //Our member variables
133
- public $version = '3.5.1';
134
  //An array of breadcrumbs
135
  public $trail = array();
136
  //The options
@@ -172,11 +177,11 @@ class bcn_breadcrumb_trail
172
  'current_item_suffix' => '',
173
  //Static page options
174
  //The prefix for page breadcrumbs, place on all page elements and inside of current_item prefix
175
- 'page_prefix' => '',
176
  //The suffix for page breadcrumbs, place on all page elements and inside of current_item suffix
177
- 'page_suffix' => '',
178
  //The anchor template for page breadcrumbs, two keywords are available %link% and %title%
179
- 'page_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
180
  //Paged options
181
  //The prefix for paged breadcrumbs, place on all page elements and inside of current_item prefix
182
  'paged_prefix' => '',
@@ -186,15 +191,15 @@ class bcn_breadcrumb_trail
186
  'paged_display' => false,
187
  //The post options previously singleblogpost
188
  //The prefix for post breadcrumbs, place on all page elements and inside of current_item prefix
189
- 'post_prefix' => '',
190
  //The suffix for post breadcrumbs, place on all page elements and inside of current_item suffix
191
- 'post_suffix' => '',
192
  //The anchor template for post breadcrumbs, two keywords are available %link% and %title%
193
- 'post_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
194
  //Should the trail include the taxonomy of the post
195
- 'post_taxonomy_display' => true,
196
  //What taxonomy should be shown leading to the post, tag or category
197
- 'post_taxonomy_type' => 'category',
198
  //Attachment settings
199
  //The prefix for attachment breadcrumbs, place on all page elements and inside of current_item prefix
200
  'attachment_prefix' => '',
@@ -287,39 +292,6 @@ class bcn_breadcrumb_trail
287
  $breadcrumb->set_anchor($this->opt['search_anchor'], $url);
288
  }
289
  }
290
- /**
291
- * do_attachment
292
- *
293
- * A Breadcrumb Trail Filling Function
294
- *
295
- * This functions fills a breadcrumb for an attachment page.
296
- */
297
- function do_attachment()
298
- {
299
- global $post;
300
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
301
- $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['attachment_prefix'], $this->opt['attachment_suffix']);
302
- //Get the parent's information
303
- $parent = get_post($post->post_parent);
304
- //We need to treat post and page attachment hierachy differently
305
- if($parent->post_type == 'page')
306
- {
307
- //Grab the page on front ID for page_parents
308
- $frontpage = get_option('page_on_front');
309
- //Place the rest of the page hierachy
310
- $this->page_parents($post->post_parent, $frontpage);
311
- }
312
- else
313
- {
314
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
315
- $breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_title', $parent->post_title),
316
- $this->opt['post_prefix'], $this->opt['post_suffix']));
317
- //Assign the anchor properties
318
- $breadcrumb->set_anchor($this->opt['post_anchor'], get_permalink($post->post_parent));
319
- //Handle the post's taxonomy
320
- $this->post_taxonomy($post->post_parent);
321
- }
322
- }
323
  /**
324
  * do_author
325
  *
@@ -348,51 +320,6 @@ class bcn_breadcrumb_trail
348
  }
349
  }
350
  }
351
- /**
352
- * page_parents
353
- *
354
- * A Breadcrumb Trail Filling Function
355
- *
356
- * This recursive functions fills the trail with breadcrumbs for parent pages.
357
- * @param int $id The id of the parent page.
358
- * @param int $frontpage The id of the front page.
359
- */
360
- function page_parents($id, $frontpage)
361
- {
362
- //Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
363
- $parent = get_post($id);
364
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
365
- $breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_title', $parent->post_title), $this->opt['page_prefix'],
366
- $this->opt['page_suffix']));
367
- //Assign the anchor properties
368
- $breadcrumb->set_anchor($this->opt['page_anchor'], get_permalink($id));
369
- //Make sure the id is valid, and that we won't end up spinning in a loop
370
- if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
371
- {
372
- //If valid, recursively call this function
373
- $this->page_parents($parent->post_parent, $frontpage);
374
- }
375
- }
376
- /**
377
- * do_page
378
- *
379
- * A Breadcrumb Trail Filling Function
380
- *
381
- * This functions fills a breadcrumb for a atatic page.
382
- */
383
- function do_page()
384
- {
385
- global $post;
386
- //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
387
- $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['page_prefix'], $this->opt['page_suffix']);
388
- //Done with the current item, now on to the parents
389
- $bcn_frontpage = get_option('page_on_front');
390
- //If there is a parent page let's find it
391
- if($post->post_parent && $post->ID != $post->post_parent && $bcn_frontpage != $post->post_parent)
392
- {
393
- $this->page_parents($post->post_parent, $bcn_frontpage);
394
- }
395
- }
396
  /**
397
  * post_taxonomy
398
  *
@@ -405,18 +332,18 @@ class bcn_breadcrumb_trail
405
  {
406
  global $post;
407
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
408
- if($this->opt['post_taxonomy_display'])
409
  {
410
  //Check if we have a date 'taxonomy' request
411
- if($this->opt['post_taxonomy_type'] == 'date')
412
  {
413
  $this->do_archive_by_date();
414
  }
415
  //Handle all hierarchical taxonomies, including categories
416
- else if(is_taxonomy_hierarchical($this->opt['post_taxonomy_type']))
417
  {
418
  //Fill a temporary object with the terms
419
- $bcn_object = get_the_terms($id, $this->opt['post_taxonomy_type']);
420
  if(is_array($bcn_object))
421
  {
422
  //Now find which one has a parent, pick the first one that does
@@ -432,11 +359,11 @@ class bcn_breadcrumb_trail
432
  }
433
  }
434
  //Fill out the term hiearchy
435
- $this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['post_taxonomy_type']);
436
  }
437
  }
438
  //Handle the use of pages as the 'taxonomy'
439
- else if($this->opt['post_taxonomy_type'] == 'page')
440
  {
441
  //Done with the current item, now on to the parents
442
  $bcn_frontpage = get_option('page_on_front');
@@ -449,7 +376,7 @@ class bcn_breadcrumb_trail
449
  //Handle the rest of the taxonomies, including tags
450
  else
451
  {
452
- $this->post_terms($id, $this->opt['post_taxonomy_type']);
453
  }
454
  }
455
  }
@@ -523,6 +450,99 @@ class bcn_breadcrumb_trail
523
  $this->term_parents($term->parent, $taxonomy);
524
  }
525
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  /**
527
  * do_archive_by_term_hierarchical
528
  *
@@ -619,21 +639,6 @@ class bcn_breadcrumb_trail
619
  $breadcrumb->set_anchor($this->opt['date_anchor'], get_year_link(get_the_time('Y')));
620
  }
621
  }
622
- /**
623
- * do_post
624
- *
625
- * A Breadcrumb Trail Filling Function
626
- *
627
- * This functions fills a breadcrumb for a post.
628
- */
629
- function do_post()
630
- {
631
- global $post;
632
- //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
633
- $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_prefix'], $this->opt['post_suffix']);
634
- //Handle the post's taxonomy
635
- $this->post_taxonomy($post->ID);
636
- }
637
  /**
638
  * do_front_page
639
  *
@@ -686,7 +691,7 @@ class bcn_breadcrumb_trail
686
  //If there is a parent page let's find it
687
  if($bcn_post->post_parent && $bcn_post->ID != $bcn_post->post_parent && $frontpage_id != $bcn_post->post_parent)
688
  {
689
- $this->page_parents($bcn_post->post_parent, $frontpage_id);
690
  }
691
  }
692
  }
@@ -742,13 +747,15 @@ class bcn_breadcrumb_trail
742
  }
743
  //Do any actions if necessary, we past through the current object instance to keep life simple
744
  do_action('bcn_before_fill', $this);
 
 
745
  //Do specific opperations for the various page types
746
  //Check if this isn't the first of a multi paged item
747
  if(is_paged() && $this->opt['paged_display'])
748
  {
749
  $this->do_paged();
750
  }
751
- //For the front page, as it may also validate as a page
752
  if(is_front_page())
753
  {
754
  //Must have two seperate branches so that we don't evaluate it as a page
@@ -757,26 +764,30 @@ class bcn_breadcrumb_trail
757
  $this->do_front_page();
758
  }
759
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
760
  //For searches
761
  else if(is_search())
762
  {
763
  $this->do_search();
764
  }
765
- //For pages
766
- else if(is_page())
767
- {
768
- $this->do_page();
769
- }
770
- //For post/page attachments
771
- else if(is_attachment())
772
- {
773
- $this->do_attachment();
774
- }
775
- //For blog posts
776
- else if(is_single())
777
- {
778
- $this->do_post();
779
- }
780
  //For author pages
781
  else if(is_author())
782
  {
@@ -788,9 +799,8 @@ class bcn_breadcrumb_trail
788
  //For taxonomy based archives, had to add the two specifics in to overcome WordPress bug
789
  if(is_tax() || is_category() || is_tag())
790
  {
791
- $term = $wp_query->get_queried_object();
792
  //For hierarchical taxonomy based archives
793
- if(is_taxonomy_hierarchical($term->taxonomy))
794
  {
795
  $this->do_archive_by_term_hierarchical();
796
  }
@@ -901,17 +911,17 @@ class bcn_breadcrumb_trail
901
  $trail_str .= $this->opt['separator'];
902
  }
903
  }
 
 
 
 
 
904
  //Trim titles, if needed
905
  if($this->opt['max_title_length'] > 0)
906
  {
907
  //Trim the breadcrumb's title
908
  $breadcrumb->title_trim($this->opt['max_title_length']);
909
  }
910
- //If we are on the current item there are some things that must be done
911
- if($key === 0)
912
- {
913
- $this->current_item($breadcrumb);
914
- }
915
  //Place in the breadcrumb's assembled elements
916
  $trail_str .= $breadcrumb->assemble($linked);
917
  }
@@ -950,12 +960,6 @@ class bcn_breadcrumb_trail
950
  foreach($this->trail as $key=>$breadcrumb)
951
  {
952
  $trail_str .= '<li';
953
- //Trim titles, if needed
954
- if($this->opt['max_title_length'] > 0)
955
- {
956
- //Trim the breadcrumb's title
957
- $breadcrumb->title_trim($this->opt['max_title_length']);
958
- }
959
  //On the first run we need to add in a class for the home breadcrumb
960
  if($trail_str === '<li')
961
  {
@@ -973,6 +977,12 @@ class bcn_breadcrumb_trail
973
  //Add in a class for current_item
974
  $trail_str .= ' class="current_item"';
975
  }
 
 
 
 
 
 
976
  //Place in the breadcrumb's assembled elements
977
  $trail_str .= '>' . $breadcrumb->assemble($linked);
978
  $trail_str .= "</li>\n";
67
  */
68
  function set_anchor($template, $url)
69
  {
70
+ //Set a safe tempalte if none was specified
71
+ if($template == '')
72
+ {
73
+ $template = '<a title="Go to %title%." href="%link%">';
74
+ }
75
  //Set the anchor, we strip tangs from the title to prevent html validation problems
76
  $this->anchor = str_replace('%title%', strip_tags($this->title), str_replace('%link%', $url, $template));
77
  //Set linked to true since we called this function
135
  class bcn_breadcrumb_trail
136
  {
137
  //Our member variables
138
+ public $version = '3.6.0';
139
  //An array of breadcrumbs
140
  public $trail = array();
141
  //The options
177
  'current_item_suffix' => '',
178
  //Static page options
179
  //The prefix for page breadcrumbs, place on all page elements and inside of current_item prefix
180
+ 'post_page_prefix' => '',
181
  //The suffix for page breadcrumbs, place on all page elements and inside of current_item suffix
182
+ 'post_page_suffix' => '',
183
  //The anchor template for page breadcrumbs, two keywords are available %link% and %title%
184
+ 'post_page_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
185
  //Paged options
186
  //The prefix for paged breadcrumbs, place on all page elements and inside of current_item prefix
187
  'paged_prefix' => '',
191
  'paged_display' => false,
192
  //The post options previously singleblogpost
193
  //The prefix for post breadcrumbs, place on all page elements and inside of current_item prefix
194
+ 'post_post_prefix' => '',
195
  //The suffix for post breadcrumbs, place on all page elements and inside of current_item suffix
196
+ 'post_post_suffix' => '',
197
  //The anchor template for post breadcrumbs, two keywords are available %link% and %title%
198
+ 'post_post_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
199
  //Should the trail include the taxonomy of the post
200
+ 'post_post_taxonomy_display' => true,
201
  //What taxonomy should be shown leading to the post, tag or category
202
+ 'post_post_taxonomy_type' => 'category',
203
  //Attachment settings
204
  //The prefix for attachment breadcrumbs, place on all page elements and inside of current_item prefix
205
  'attachment_prefix' => '',
292
  $breadcrumb->set_anchor($this->opt['search_anchor'], $url);
293
  }
294
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  /**
296
  * do_author
297
  *
320
  }
321
  }
322
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
323
  /**
324
  * post_taxonomy
325
  *
332
  {
333
  global $post;
334
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
335
+ if($this->opt['post_' . $post->post_type . '_taxonomy_display'])
336
  {
337
  //Check if we have a date 'taxonomy' request
338
+ if($this->opt['post_' . $post->post_type . '_taxonomy_type'] == 'date')
339
  {
340
  $this->do_archive_by_date();
341
  }
342
  //Handle all hierarchical taxonomies, including categories
343
+ else if(is_taxonomy_hierarchical($this->opt['post_' . $post->post_type . '_taxonomy_type']))
344
  {
345
  //Fill a temporary object with the terms
346
+ $bcn_object = get_the_terms($id, $this->opt['post_' . $post->post_type . '_taxonomy_type']);
347
  if(is_array($bcn_object))
348
  {
349
  //Now find which one has a parent, pick the first one that does
359
  }
360
  }
361
  //Fill out the term hiearchy
362
+ $this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['post_' . $post->post_type . '_taxonomy_type']);
363
  }
364
  }
365
  //Handle the use of pages as the 'taxonomy'
366
+ else if($this->opt['post_' . $post->post_type . '_taxonomy_type'] == 'page')
367
  {
368
  //Done with the current item, now on to the parents
369
  $bcn_frontpage = get_option('page_on_front');
376
  //Handle the rest of the taxonomies, including tags
377
  else
378
  {
379
+ $this->post_terms($id, $this->opt['post_' . $post->post_type . '_taxonomy_type']);
380
  }
381
  }
382
  }
450
  $this->term_parents($term->parent, $taxonomy);
451
  }
452
  }
453
+ /**
454
+ * post_parents
455
+ *
456
+ * A Breadcrumb Trail Filling Function
457
+ *
458
+ * This recursive functions fills the trail with breadcrumbs for parent posts/pages.
459
+ * @param int $id The id of the parent page.
460
+ * @param int $frontpage The id of the front page.
461
+ */
462
+ function post_parents($id, $frontpage)
463
+ {
464
+ //Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
465
+ $parent = get_post($id);
466
+ //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
467
+ $breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_title', $parent->post_title), $this->opt['post_' . $parent->post_type . '_prefix'],
468
+ $this->opt['post_' . $parent->post_type . '_suffix']));
469
+ //Assign the anchor properties
470
+ $breadcrumb->set_anchor($this->opt['post_' . $parent->post_type . '_anchor'], get_permalink($id));
471
+ //Make sure the id is valid, and that we won't end up spinning in a loop
472
+ if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
473
+ {
474
+ //If valid, recursively call this function
475
+ $this->post_parents($parent->post_parent, $frontpage);
476
+ }
477
+ }
478
+ /**
479
+ * do_post_hierarchical
480
+ *
481
+ * A Breadcrumb Trail Filling Function
482
+ *
483
+ * This functions fills a breadcrumb for a hierarchical post/page.
484
+ */
485
+ function do_post_hierarchical()
486
+ {
487
+ global $post;
488
+ //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
489
+ $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']);
490
+ //Done with the current item, now on to the parents
491
+ $bcn_frontpage = get_option('page_on_front');
492
+ //If there is a parent page let's find it
493
+ if($post->post_parent && $post->ID != $post->post_parent && $bcn_frontpage != $post->post_parent)
494
+ {
495
+ $this->post_parents($post->post_parent, $bcn_frontpage);
496
+ }
497
+ }
498
+ /**
499
+ * do_post_flat
500
+ *
501
+ * A Breadcrumb Trail Filling Function
502
+ *
503
+ * This functions fills a breadcrumb for a post.
504
+ */
505
+ function do_post_flat()
506
+ {
507
+ global $post;
508
+ //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
509
+ $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']);
510
+ //Handle the post's taxonomy
511
+ $this->post_taxonomy($post->ID);
512
+ }
513
+ /**
514
+ * do_attachment
515
+ *
516
+ * A Breadcrumb Trail Filling Function
517
+ *
518
+ * This functions fills a breadcrumb for an attachment page.
519
+ */
520
+ function do_attachment()
521
+ {
522
+ global $post;
523
+ //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
524
+ $this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['attachment_prefix'], $this->opt['attachment_suffix']);
525
+ //Get the parent's information
526
+ $parent = get_post($post->post_parent);
527
+ //We need to treat post and page attachment hierachy differently
528
+ if($parent->post_type == 'page')
529
+ {
530
+ //Grab the page on front ID for page_parents
531
+ $frontpage = get_option('page_on_front');
532
+ //Place the rest of the page hierachy
533
+ $this->post_parents($post->post_parent, $frontpage);
534
+ }
535
+ else
536
+ {
537
+ //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
538
+ $breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_title', $parent->post_title),
539
+ $this->opt['post_post_prefix'], $this->opt['post_post_suffix']));
540
+ //Assign the anchor properties
541
+ $breadcrumb->set_anchor($this->opt['post_post_anchor'], get_permalink($post->post_parent));
542
+ //Handle the post's taxonomy
543
+ $this->post_taxonomy($post->post_parent);
544
+ }
545
+ }
546
  /**
547
  * do_archive_by_term_hierarchical
548
  *
639
  $breadcrumb->set_anchor($this->opt['date_anchor'], get_year_link(get_the_time('Y')));
640
  }
641
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  /**
643
  * do_front_page
644
  *
691
  //If there is a parent page let's find it
692
  if($bcn_post->post_parent && $bcn_post->ID != $bcn_post->post_parent && $frontpage_id != $bcn_post->post_parent)
693
  {
694
+ $this->post_parents($bcn_post->post_parent, $frontpage_id);
695
  }
696
  }
697
  }
747
  }
748
  //Do any actions if necessary, we past through the current object instance to keep life simple
749
  do_action('bcn_before_fill', $this);
750
+ //Need to grab the queried object here as multiple branches need it
751
+ $queried_object = $wp_query->get_queried_object();
752
  //Do specific opperations for the various page types
753
  //Check if this isn't the first of a multi paged item
754
  if(is_paged() && $this->opt['paged_display'])
755
  {
756
  $this->do_paged();
757
  }
758
+ //For the front page, as it may also validate as a page, do it first
759
  if(is_front_page())
760
  {
761
  //Must have two seperate branches so that we don't evaluate it as a page
764
  $this->do_front_page();
765
  }
766
  }
767
+ //For posts
768
+ else if(is_singular())
769
+ {
770
+ //For hierarchical posts
771
+ if(is_page() || (is_post_type_hierarchical($queried_object->post_type) && !is_home()))
772
+ {
773
+ $this->do_post_hierarchical();
774
+ }
775
+ //For attachments
776
+ else if(is_attachment())
777
+ {
778
+ $this->do_attachment();
779
+ }
780
+ //For flat posts
781
+ else
782
+ {
783
+ $this->do_post_flat();
784
+ }
785
+ }
786
  //For searches
787
  else if(is_search())
788
  {
789
  $this->do_search();
790
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
791
  //For author pages
792
  else if(is_author())
793
  {
799
  //For taxonomy based archives, had to add the two specifics in to overcome WordPress bug
800
  if(is_tax() || is_category() || is_tag())
801
  {
 
802
  //For hierarchical taxonomy based archives
803
+ if(is_taxonomy_hierarchical($queried_object->taxonomy))
804
  {
805
  $this->do_archive_by_term_hierarchical();
806
  }
911
  $trail_str .= $this->opt['separator'];
912
  }
913
  }
914
+ //If we are on the current item there are some things that must be done
915
+ if($key === 0)
916
+ {
917
+ $this->current_item($breadcrumb);
918
+ }
919
  //Trim titles, if needed
920
  if($this->opt['max_title_length'] > 0)
921
  {
922
  //Trim the breadcrumb's title
923
  $breadcrumb->title_trim($this->opt['max_title_length']);
924
  }
 
 
 
 
 
925
  //Place in the breadcrumb's assembled elements
926
  $trail_str .= $breadcrumb->assemble($linked);
927
  }
960
  foreach($this->trail as $key=>$breadcrumb)
961
  {
962
  $trail_str .= '<li';
 
 
 
 
 
 
963
  //On the first run we need to add in a class for the home breadcrumb
964
  if($trail_str === '<li')
965
  {
977
  //Add in a class for current_item
978
  $trail_str .= ' class="current_item"';
979
  }
980
+ //Trim titles, if needed
981
+ if($this->opt['max_title_length'] > 0)
982
+ {
983
+ //Trim the breadcrumb's title
984
+ $breadcrumb->title_trim($this->opt['max_title_length']);
985
+ }
986
  //Place in the breadcrumb's assembled elements
987
  $trail_str .= '>' . $breadcrumb->assemble($linked);
988
  $trail_str .= "</li>\n";
breadcrumb_navxt_widget.php CHANGED
@@ -28,6 +28,11 @@ class bcn_widget extends WP_Widget
28
  function widget($args, $instance)
29
  {
30
  extract($args);
 
 
 
 
 
31
  //Manditory before widget junk
32
  echo $before_widget;
33
  if(!empty($instance['title']))
@@ -57,6 +62,7 @@ class bcn_widget extends WP_Widget
57
  $old_instance['list'] = isset($new_instance['list']);
58
  $old_instance['linked'] = isset($new_instance['linked']);
59
  $old_instance['reverse'] = isset($new_instance['reverse']);
 
60
  return $old_instance;
61
  }
62
  function form($instance)
@@ -73,6 +79,8 @@ class bcn_widget extends WP_Widget
73
  <label for="<?php echo $this->get_field_id('linked'); ?>"> <?php _e('Link the breadcrumbs'); ?></label><br />
74
  <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']);?> />
75
  <label for="<?php echo $this->get_field_id('reverse'); ?>"> <?php _e('Reverse the order of the trail'); ?></label><br />
 
 
76
  </p>
77
  <?php
78
  }
28
  function widget($args, $instance)
29
  {
30
  extract($args);
31
+ //If we are on the front page and don't display on the front, return early
32
+ if($instance['front'] && is_front_page())
33
+ {
34
+ return;
35
+ }
36
  //Manditory before widget junk
37
  echo $before_widget;
38
  if(!empty($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']);
66
  return $old_instance;
67
  }
68
  function form($instance)
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
  }
languages/breadcrumb-navxt.pot CHANGED
@@ -8,7 +8,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-05-09 01:08+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"
@@ -23,535 +23,544 @@ msgid ""
23
  "is %s, this plugin requires %s"
24
  msgstr ""
25
 
26
- #: breadcrumb_navxt_admin.php:110
27
  msgid "Insufficient privileges to proceed."
28
  msgstr ""
29
 
30
- #: breadcrumb_navxt_admin.php:135 breadcrumb_navxt_class.php:216
31
- msgid ""
32
- "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
33
- "%\">"
 
34
  msgstr ""
35
 
36
- #: breadcrumb_navxt_admin.php:249
37
  msgid "Settings successfully saved."
38
  msgstr ""
39
 
40
- #: breadcrumb_navxt_admin.php:272
 
 
 
 
41
  #, php-format
42
  msgid ""
43
  "Tips for the settings are located below select options. Please refer to the %"
44
  "sdocumentation%s for more information."
45
  msgstr ""
46
 
47
- #: breadcrumb_navxt_admin.php:273
48
  msgid "Go to the Breadcrumb NavXT online documentation"
49
  msgstr ""
50
 
51
- #: breadcrumb_navxt_admin.php:327
52
- msgid ""
53
- "All of your current Breadcrumb NavXT settings will be overwritten with the "
54
- "default values. Are you sure you want to continue?"
55
- msgstr ""
56
-
57
- #: breadcrumb_navxt_admin.php:330
58
- msgid ""
59
- "All of your current Breadcrumb NavXT settings will be overwritten with the "
60
- "imported values. Are you sure you want to continue?"
61
- msgstr ""
62
-
63
- #: breadcrumb_navxt_admin.php:381 mtekk_admin_class.php:403
64
  msgid "Import"
65
  msgstr ""
66
 
67
- #: breadcrumb_navxt_admin.php:381 mtekk_admin_class.php:404
68
  msgid "Export"
69
  msgstr ""
70
 
71
- #: breadcrumb_navxt_admin.php:381 mtekk_admin_class.php:405
72
  msgid "Reset"
73
  msgstr ""
74
 
75
- #: breadcrumb_navxt_admin.php:405
76
  msgid "Breadcrumb NavXT Settings"
77
  msgstr ""
78
 
79
- #: breadcrumb_navxt_admin.php:413
80
  msgid "General"
81
  msgstr ""
82
 
83
- #: breadcrumb_navxt_admin.php:416
84
  msgid "Breadcrumb Separator"
85
  msgstr ""
86
 
87
- #: breadcrumb_navxt_admin.php:416
88
  msgid "Placed in between each breadcrumb."
89
  msgstr ""
90
 
91
- #: breadcrumb_navxt_admin.php:417
92
  msgid "Breadcrumb Max Title Length"
93
  msgstr ""
94
 
95
- #: breadcrumb_navxt_admin.php:421
96
  msgid "Home Breadcrumb"
97
  msgstr ""
98
 
99
- #: breadcrumb_navxt_admin.php:426
100
  msgid "Place the home breadcrumb in the trail."
101
  msgstr ""
102
 
103
- #: breadcrumb_navxt_admin.php:431
104
  msgid "Home Title: "
105
  msgstr ""
106
 
107
- #: breadcrumb_navxt_admin.php:439
108
  msgid "Blog Breadcrumb"
109
  msgstr ""
110
 
111
- #: breadcrumb_navxt_admin.php:439
112
  msgid "Place the blog breadcrumb in the trail."
113
  msgstr ""
114
 
115
- #: breadcrumb_navxt_admin.php:440
116
  msgid "Home Prefix"
117
  msgstr ""
118
 
119
- #: breadcrumb_navxt_admin.php:441
120
  msgid "Home Suffix"
121
  msgstr ""
122
 
123
- #: breadcrumb_navxt_admin.php:442
124
  msgid "Home Anchor"
125
  msgstr ""
126
 
127
- #: breadcrumb_navxt_admin.php:442
128
  msgid "The anchor template for the home breadcrumb."
129
  msgstr ""
130
 
131
- #: breadcrumb_navxt_admin.php:443
132
  msgid "Blog Anchor"
133
  msgstr ""
134
 
135
- #: breadcrumb_navxt_admin.php:443
136
  msgid ""
137
  "The anchor template for the blog breadcrumb, used only in static front page "
138
  "environments."
139
  msgstr ""
140
 
141
- #: breadcrumb_navxt_admin.php:448
142
  msgid "Current Item"
143
  msgstr ""
144
 
145
- #: breadcrumb_navxt_admin.php:451
146
  msgid "Link Current Item"
147
  msgstr ""
148
 
149
- #: breadcrumb_navxt_admin.php:451
150
  msgid "Yes"
151
  msgstr ""
152
 
153
- #: breadcrumb_navxt_admin.php:452
154
  msgid "Current Item Prefix"
155
  msgstr ""
156
 
157
- #: breadcrumb_navxt_admin.php:452
158
  msgid ""
159
  "This is always placed in front of the last breadcrumb in the trail, before "
160
  "any other prefixes for that breadcrumb."
161
  msgstr ""
162
 
163
- #: breadcrumb_navxt_admin.php:453
164
  msgid "Current Item Suffix"
165
  msgstr ""
166
 
167
- #: breadcrumb_navxt_admin.php:453
168
  msgid ""
169
  "This is always placed after the last breadcrumb in the trail, and after any "
170
  "other prefixes for that breadcrumb."
171
  msgstr ""
172
 
173
- #: breadcrumb_navxt_admin.php:454
174
  msgid "Current Item Anchor"
175
  msgstr ""
176
 
177
- #: breadcrumb_navxt_admin.php:454
178
  msgid "The anchor template for current item breadcrumbs."
179
  msgstr ""
180
 
181
- #: breadcrumb_navxt_admin.php:455
182
  msgid "Paged Breadcrumb"
183
  msgstr ""
184
 
185
- #: breadcrumb_navxt_admin.php:455
186
  msgid "Include the paged breadcrumb in the breadcrumb trail."
187
  msgstr ""
188
 
189
- #: breadcrumb_navxt_admin.php:455
190
  msgid ""
191
  "Indicates that the user is on a page other than the first on paginated posts/"
192
  "pages."
193
  msgstr ""
194
 
195
- #: breadcrumb_navxt_admin.php:456
196
  msgid "Paged Prefix"
197
  msgstr ""
198
 
199
- #: breadcrumb_navxt_admin.php:457
200
  msgid "Paged Suffix"
201
  msgstr ""
202
 
203
- #: breadcrumb_navxt_admin.php:462
204
  msgid "Posts &amp; Pages"
205
  msgstr ""
206
 
207
- #: breadcrumb_navxt_admin.php:465
208
  msgid "Post Prefix"
209
  msgstr ""
210
 
211
- #: breadcrumb_navxt_admin.php:466
212
  msgid "Post Suffix"
213
  msgstr ""
214
 
215
- #: breadcrumb_navxt_admin.php:467
216
  msgid "Post Anchor"
217
  msgstr ""
218
 
219
- #: breadcrumb_navxt_admin.php:467
220
  msgid "The anchor template for post breadcrumbs."
221
  msgstr ""
222
 
223
- #: breadcrumb_navxt_admin.php:468
224
  msgid "Post Taxonomy Display"
225
  msgstr ""
226
 
227
- #: breadcrumb_navxt_admin.php:468
228
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
229
  msgstr ""
230
 
231
- #: breadcrumb_navxt_admin.php:472
232
  msgid "Post Taxonomy"
233
  msgstr ""
234
 
235
- #: breadcrumb_navxt_admin.php:476 breadcrumb_navxt_admin.php:503
236
  msgid "Categories"
237
  msgstr ""
238
 
239
- #: breadcrumb_navxt_admin.php:477
240
  msgid "Dates"
241
  msgstr ""
242
 
243
- #: breadcrumb_navxt_admin.php:478 breadcrumb_navxt_admin.php:515
244
  msgid "Tags"
245
  msgstr ""
246
 
247
- #: breadcrumb_navxt_admin.php:479
248
  msgid "Pages"
249
  msgstr ""
250
 
251
- #: breadcrumb_navxt_admin.php:490
252
  msgid "The taxonomy which the breadcrumb trail will show."
253
  msgstr ""
254
 
255
- #: breadcrumb_navxt_admin.php:494
256
  msgid "Page Prefix"
257
  msgstr ""
258
 
259
- #: breadcrumb_navxt_admin.php:495
260
  msgid "Page Suffix"
261
  msgstr ""
262
 
263
- #: breadcrumb_navxt_admin.php:496
264
  msgid "Page Anchor"
265
  msgstr ""
266
 
267
- #: breadcrumb_navxt_admin.php:496
268
  msgid "The anchor template for page breadcrumbs."
269
  msgstr ""
270
 
271
- #: breadcrumb_navxt_admin.php:497
272
  msgid "Attachment Prefix"
273
  msgstr ""
274
 
275
- #: breadcrumb_navxt_admin.php:498
276
  msgid "Attachment Suffix"
277
  msgstr ""
278
 
279
- #: breadcrumb_navxt_admin.php:506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
  msgid "Category Prefix"
281
  msgstr ""
282
 
283
- #: breadcrumb_navxt_admin.php:506
284
  msgid "Applied before the anchor on all category breadcrumbs."
285
  msgstr ""
286
 
287
- #: breadcrumb_navxt_admin.php:507
288
  msgid "Category Suffix"
289
  msgstr ""
290
 
291
- #: breadcrumb_navxt_admin.php:507
292
  msgid "Applied after the anchor on all category breadcrumbs."
293
  msgstr ""
294
 
295
- #: breadcrumb_navxt_admin.php:508
296
  msgid "Category Anchor"
297
  msgstr ""
298
 
299
- #: breadcrumb_navxt_admin.php:508
300
  msgid "The anchor template for category breadcrumbs."
301
  msgstr ""
302
 
303
- #: breadcrumb_navxt_admin.php:509
304
  msgid "Archive by Category Prefix"
305
  msgstr ""
306
 
307
- #: breadcrumb_navxt_admin.php:509
308
  msgid ""
309
  "Applied before the title of the current item breadcrumb on an archive by "
310
  "cateogry page."
311
  msgstr ""
312
 
313
- #: breadcrumb_navxt_admin.php:510
314
  msgid "Archive by Category Suffix"
315
  msgstr ""
316
 
317
- #: breadcrumb_navxt_admin.php:510
318
  msgid ""
319
  "Applied after the title of the current item breadcrumb on an archive by "
320
  "cateogry page."
321
  msgstr ""
322
 
323
- #: breadcrumb_navxt_admin.php:518
324
  msgid "Tag Prefix"
325
  msgstr ""
326
 
327
- #: breadcrumb_navxt_admin.php:518
328
  msgid "Applied before the anchor on all tag breadcrumbs."
329
  msgstr ""
330
 
331
- #: breadcrumb_navxt_admin.php:519
332
  msgid "Tag Suffix"
333
  msgstr ""
334
 
335
- #: breadcrumb_navxt_admin.php:519
336
  msgid "Applied after the anchor on all tag breadcrumbs."
337
  msgstr ""
338
 
339
- #: breadcrumb_navxt_admin.php:520
340
  msgid "Tag Anchor"
341
  msgstr ""
342
 
343
- #: breadcrumb_navxt_admin.php:520
344
  msgid "The anchor template for tag breadcrumbs."
345
  msgstr ""
346
 
347
- #: breadcrumb_navxt_admin.php:521
348
  msgid "Archive by Tag Prefix"
349
  msgstr ""
350
 
351
- #: breadcrumb_navxt_admin.php:521
352
  msgid ""
353
  "Applied before the title of the current item breadcrumb on an archive by tag "
354
  "page."
355
  msgstr ""
356
 
357
- #: breadcrumb_navxt_admin.php:522
358
  msgid "Archive by Tag Suffix"
359
  msgstr ""
360
 
361
- #: breadcrumb_navxt_admin.php:522
362
  msgid ""
363
  "Applied after the title of the current item breadcrumb on an archive by tag "
364
  "page."
365
  msgstr ""
366
 
367
- #: breadcrumb_navxt_admin.php:550
368
- #, php-format
369
- msgid "%s Prefix"
370
- msgstr ""
371
-
372
- #: breadcrumb_navxt_admin.php:550
373
  #, php-format
374
  msgid "Applied before the anchor on all %s breadcrumbs."
375
  msgstr ""
376
 
377
- #: breadcrumb_navxt_admin.php:551
378
- #, php-format
379
- msgid "%s Suffix"
380
- msgstr ""
381
-
382
- #: breadcrumb_navxt_admin.php:551
383
  #, php-format
384
  msgid "Applied after the anchor on all %s breadcrumbs."
385
  msgstr ""
386
 
387
- #: breadcrumb_navxt_admin.php:552
388
- #, php-format
389
- msgid "%s Anchor"
390
- msgstr ""
391
-
392
- #: breadcrumb_navxt_admin.php:552
393
- #, php-format
394
- msgid "The anchor template for %s breadcrumbs."
395
- msgstr ""
396
-
397
- #: breadcrumb_navxt_admin.php:553
398
  #, php-format
399
  msgid "Archive by %s Prefix"
400
  msgstr ""
401
 
402
- #: breadcrumb_navxt_admin.php:553
403
  #, php-format
404
  msgid ""
405
  "Applied before the title of the current item breadcrumb on an archive by %s "
406
  "page."
407
  msgstr ""
408
 
409
- #: breadcrumb_navxt_admin.php:554
410
  #, php-format
411
  msgid "Archive by %s Suffix"
412
  msgstr ""
413
 
414
- #: breadcrumb_navxt_admin.php:554
415
  #, php-format
416
  msgid ""
417
  "Applied after the title of the current item breadcrumb on an archive by %s "
418
  "page."
419
  msgstr ""
420
 
421
- #: breadcrumb_navxt_admin.php:563
422
  msgid "Date Archives"
423
  msgstr ""
424
 
425
- #: breadcrumb_navxt_admin.php:566
426
  msgid "Date Anchor"
427
  msgstr ""
428
 
429
- #: breadcrumb_navxt_admin.php:566
430
  msgid "The anchor template for date breadcrumbs."
431
  msgstr ""
432
 
433
- #: breadcrumb_navxt_admin.php:567
434
  msgid "Archive by Date Prefix"
435
  msgstr ""
436
 
437
- #: breadcrumb_navxt_admin.php:567
438
  msgid "Applied before the anchor on all date breadcrumbs."
439
  msgstr ""
440
 
441
- #: breadcrumb_navxt_admin.php:568 breadcrumb_navxt_admin.php:578
442
  msgid "Archive by Date Suffix"
443
  msgstr ""
444
 
445
- #: breadcrumb_navxt_admin.php:568 breadcrumb_navxt_admin.php:578
446
  msgid "Applied after the anchor on all date breadcrumbs."
447
  msgstr ""
448
 
449
- #: breadcrumb_navxt_admin.php:573
450
  msgid "Miscellaneous"
451
  msgstr ""
452
 
453
- #: breadcrumb_navxt_admin.php:576
454
  msgid "Author Prefix"
455
  msgstr ""
456
 
457
- #: breadcrumb_navxt_admin.php:577
458
  msgid "Author Suffix"
459
  msgstr ""
460
 
461
- #: breadcrumb_navxt_admin.php:579
462
  msgid "Author Display Format"
463
  msgstr ""
464
 
465
- #: breadcrumb_navxt_admin.php:579
466
  msgid ""
467
  "display_name uses the name specified in \"Display name publicly as\" under "
468
  "the user profile the others correspond to options in the user profile."
469
  msgstr ""
470
 
471
- #: breadcrumb_navxt_admin.php:580
472
  msgid "Search Prefix"
473
  msgstr ""
474
 
475
- #: breadcrumb_navxt_admin.php:581
476
  msgid "Search Suffix"
477
  msgstr ""
478
 
479
- #: breadcrumb_navxt_admin.php:582
480
  msgid "Search Anchor"
481
  msgstr ""
482
 
483
- #: breadcrumb_navxt_admin.php:582
484
  msgid ""
485
  "The anchor template for search breadcrumbs, used only when the search "
486
  "results span several pages."
487
  msgstr ""
488
 
489
- #: breadcrumb_navxt_admin.php:583
490
  msgid "404 Title"
491
  msgstr ""
492
 
493
- #: breadcrumb_navxt_admin.php:584
494
  msgid "404 Prefix"
495
  msgstr ""
496
 
497
- #: breadcrumb_navxt_admin.php:585
498
  msgid "404 Suffix"
499
  msgstr ""
500
 
501
- #: breadcrumb_navxt_admin.php:590
502
  msgid "Save Changes"
503
  msgstr ""
504
 
505
- #: breadcrumb_navxt_class.php:149
506
  msgid "Blog"
507
  msgstr ""
508
 
509
- #: breadcrumb_navxt_class.php:151 breadcrumb_navxt_class.php:155
510
- #: breadcrumb_navxt_class.php:179 breadcrumb_navxt_class.php:193
511
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
512
- msgstr ""
513
-
514
- #: breadcrumb_navxt_class.php:168
515
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
516
  msgstr ""
517
 
518
- #: breadcrumb_navxt_class.php:209
519
  msgid "404"
520
  msgstr ""
521
 
522
- #: breadcrumb_navxt_class.php:212
523
  msgid "Search results for &#39;"
524
  msgstr ""
525
 
526
- #: breadcrumb_navxt_class.php:223
 
 
 
 
 
 
527
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
528
  msgstr ""
529
 
530
- #: breadcrumb_navxt_class.php:226
531
  msgid "Articles by: "
532
  msgstr ""
533
 
534
- #: breadcrumb_navxt_class.php:230
535
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
536
  msgstr ""
537
 
538
- #: breadcrumb_navxt_class.php:239
539
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
540
  msgstr ""
541
 
542
- #: breadcrumb_navxt_class.php:242
543
  msgid "Archive by category &#39;"
544
  msgstr ""
545
 
546
- #: breadcrumb_navxt_class.php:246
547
  msgid "Archive by tag &#39;"
548
  msgstr ""
549
 
550
- #: breadcrumb_navxt_class.php:249
551
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
552
  msgstr ""
553
 
554
- #: breadcrumb_navxt_class.php:500
555
  msgid "Untagged"
556
  msgstr ""
557
 
@@ -559,57 +568,81 @@ msgstr ""
559
  msgid "Adds a breadcrumb trail to your sidebar"
560
  msgstr ""
561
 
562
- #: breadcrumb_navxt_widget.php:66
563
  msgid "Title:"
564
  msgstr ""
565
 
566
- #: breadcrumb_navxt_widget.php:71
567
  msgid "Output trail as a list"
568
  msgstr ""
569
 
570
- #: breadcrumb_navxt_widget.php:73
571
  msgid "Link the breadcrumbs"
572
  msgstr ""
573
 
574
- #: breadcrumb_navxt_widget.php:75
575
  msgid "Reverse the order of the trail"
576
  msgstr ""
577
 
578
- #: mtekk_admin_class.php:137
 
 
 
 
 
 
 
 
579
  msgid "Settings"
580
  msgstr ""
581
 
582
- #: mtekk_admin_class.php:259
583
  msgid "Settings successfully imported from the uploaded file."
584
  msgstr ""
585
 
586
- #: mtekk_admin_class.php:264
 
 
 
 
587
  msgid "Importing settings from file failed."
588
  msgstr ""
589
 
590
- #: mtekk_admin_class.php:283
591
  msgid "Settings successfully reset to the default values."
592
  msgstr ""
593
 
594
- #: mtekk_admin_class.php:313
 
 
 
 
 
 
 
 
 
 
 
 
595
  #, php-format
596
  msgid "Get help with \"%s\""
597
  msgstr ""
598
 
599
- #: mtekk_admin_class.php:394
600
  msgid "Import/Export/Reset Settings"
601
  msgstr ""
602
 
603
- #: mtekk_admin_class.php:395
604
  msgid ""
605
  "Import settings from a XML file, export the current settings to a XML file, "
606
  "or reset to the default settings."
607
  msgstr ""
608
 
609
- #: mtekk_admin_class.php:398
610
  msgid "Settings File"
611
  msgstr ""
612
 
613
- #: mtekk_admin_class.php:401
614
  msgid "Select a XML settings file to upload and import settings from."
615
  msgstr ""
8
  msgstr ""
9
  "Project-Id-Version: \n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
11
+ "POT-Creation-Date: 2010-08-13 02:16+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"
23
  "is %s, this plugin requires %s"
24
  msgstr ""
25
 
26
+ #: breadcrumb_navxt_admin.php:112
27
  msgid "Insufficient privileges to proceed."
28
  msgstr ""
29
 
30
+ #: breadcrumb_navxt_admin.php:189 breadcrumb_navxt_admin.php:280
31
+ #: breadcrumb_navxt_admin.php:591 breadcrumb_navxt_class.php:156
32
+ #: breadcrumb_navxt_class.php:160 breadcrumb_navxt_class.php:184
33
+ #: breadcrumb_navxt_class.php:198
34
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
35
  msgstr ""
36
 
37
+ #: breadcrumb_navxt_admin.php:349
38
  msgid "Settings successfully saved."
39
  msgstr ""
40
 
41
+ #: breadcrumb_navxt_admin.php:349
42
+ msgid "Undo the options save."
43
+ msgstr ""
44
+
45
+ #: breadcrumb_navxt_admin.php:372
46
  #, php-format
47
  msgid ""
48
  "Tips for the settings are located below select options. Please refer to the %"
49
  "sdocumentation%s for more information."
50
  msgstr ""
51
 
52
+ #: breadcrumb_navxt_admin.php:373
53
  msgid "Go to the Breadcrumb NavXT online documentation"
54
  msgstr ""
55
 
56
+ #: breadcrumb_navxt_admin.php:459 mtekk_admin_class.php:444
 
 
 
 
 
 
 
 
 
 
 
 
57
  msgid "Import"
58
  msgstr ""
59
 
60
+ #: breadcrumb_navxt_admin.php:459 mtekk_admin_class.php:445
61
  msgid "Export"
62
  msgstr ""
63
 
64
+ #: breadcrumb_navxt_admin.php:459 mtekk_admin_class.php:446
65
  msgid "Reset"
66
  msgstr ""
67
 
68
+ #: breadcrumb_navxt_admin.php:481
69
  msgid "Breadcrumb NavXT Settings"
70
  msgstr ""
71
 
72
+ #: breadcrumb_navxt_admin.php:489
73
  msgid "General"
74
  msgstr ""
75
 
76
+ #: breadcrumb_navxt_admin.php:492
77
  msgid "Breadcrumb Separator"
78
  msgstr ""
79
 
80
+ #: breadcrumb_navxt_admin.php:492
81
  msgid "Placed in between each breadcrumb."
82
  msgstr ""
83
 
84
+ #: breadcrumb_navxt_admin.php:493
85
  msgid "Breadcrumb Max Title Length"
86
  msgstr ""
87
 
88
+ #: breadcrumb_navxt_admin.php:497
89
  msgid "Home Breadcrumb"
90
  msgstr ""
91
 
92
+ #: breadcrumb_navxt_admin.php:502
93
  msgid "Place the home breadcrumb in the trail."
94
  msgstr ""
95
 
96
+ #: breadcrumb_navxt_admin.php:507
97
  msgid "Home Title: "
98
  msgstr ""
99
 
100
+ #: breadcrumb_navxt_admin.php:515
101
  msgid "Blog Breadcrumb"
102
  msgstr ""
103
 
104
+ #: breadcrumb_navxt_admin.php:515
105
  msgid "Place the blog breadcrumb in the trail."
106
  msgstr ""
107
 
108
+ #: breadcrumb_navxt_admin.php:516
109
  msgid "Home Prefix"
110
  msgstr ""
111
 
112
+ #: breadcrumb_navxt_admin.php:517
113
  msgid "Home Suffix"
114
  msgstr ""
115
 
116
+ #: breadcrumb_navxt_admin.php:518
117
  msgid "Home Anchor"
118
  msgstr ""
119
 
120
+ #: breadcrumb_navxt_admin.php:518
121
  msgid "The anchor template for the home breadcrumb."
122
  msgstr ""
123
 
124
+ #: breadcrumb_navxt_admin.php:519
125
  msgid "Blog Anchor"
126
  msgstr ""
127
 
128
+ #: breadcrumb_navxt_admin.php:519
129
  msgid ""
130
  "The anchor template for the blog breadcrumb, used only in static front page "
131
  "environments."
132
  msgstr ""
133
 
134
+ #: breadcrumb_navxt_admin.php:524
135
  msgid "Current Item"
136
  msgstr ""
137
 
138
+ #: breadcrumb_navxt_admin.php:527
139
  msgid "Link Current Item"
140
  msgstr ""
141
 
142
+ #: breadcrumb_navxt_admin.php:527
143
  msgid "Yes"
144
  msgstr ""
145
 
146
+ #: breadcrumb_navxt_admin.php:528
147
  msgid "Current Item Prefix"
148
  msgstr ""
149
 
150
+ #: breadcrumb_navxt_admin.php:528
151
  msgid ""
152
  "This is always placed in front of the last breadcrumb in the trail, before "
153
  "any other prefixes for that breadcrumb."
154
  msgstr ""
155
 
156
+ #: breadcrumb_navxt_admin.php:529
157
  msgid "Current Item Suffix"
158
  msgstr ""
159
 
160
+ #: breadcrumb_navxt_admin.php:529
161
  msgid ""
162
  "This is always placed after the last breadcrumb in the trail, and after any "
163
  "other prefixes for that breadcrumb."
164
  msgstr ""
165
 
166
+ #: breadcrumb_navxt_admin.php:530
167
  msgid "Current Item Anchor"
168
  msgstr ""
169
 
170
+ #: breadcrumb_navxt_admin.php:530
171
  msgid "The anchor template for current item breadcrumbs."
172
  msgstr ""
173
 
174
+ #: breadcrumb_navxt_admin.php:531
175
  msgid "Paged Breadcrumb"
176
  msgstr ""
177
 
178
+ #: breadcrumb_navxt_admin.php:531
179
  msgid "Include the paged breadcrumb in the breadcrumb trail."
180
  msgstr ""
181
 
182
+ #: breadcrumb_navxt_admin.php:531
183
  msgid ""
184
  "Indicates that the user is on a page other than the first on paginated posts/"
185
  "pages."
186
  msgstr ""
187
 
188
+ #: breadcrumb_navxt_admin.php:532
189
  msgid "Paged Prefix"
190
  msgstr ""
191
 
192
+ #: breadcrumb_navxt_admin.php:533
193
  msgid "Paged Suffix"
194
  msgstr ""
195
 
196
+ #: breadcrumb_navxt_admin.php:538
197
  msgid "Posts &amp; Pages"
198
  msgstr ""
199
 
200
+ #: breadcrumb_navxt_admin.php:541
201
  msgid "Post Prefix"
202
  msgstr ""
203
 
204
+ #: breadcrumb_navxt_admin.php:542
205
  msgid "Post Suffix"
206
  msgstr ""
207
 
208
+ #: breadcrumb_navxt_admin.php:543
209
  msgid "Post Anchor"
210
  msgstr ""
211
 
212
+ #: breadcrumb_navxt_admin.php:543
213
  msgid "The anchor template for post breadcrumbs."
214
  msgstr ""
215
 
216
+ #: breadcrumb_navxt_admin.php:544
217
  msgid "Post Taxonomy Display"
218
  msgstr ""
219
 
220
+ #: breadcrumb_navxt_admin.php:544
221
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
222
  msgstr ""
223
 
224
+ #: breadcrumb_navxt_admin.php:548
225
  msgid "Post Taxonomy"
226
  msgstr ""
227
 
228
+ #: breadcrumb_navxt_admin.php:552 breadcrumb_navxt_admin.php:650
229
  msgid "Categories"
230
  msgstr ""
231
 
232
+ #: breadcrumb_navxt_admin.php:553
233
  msgid "Dates"
234
  msgstr ""
235
 
236
+ #: breadcrumb_navxt_admin.php:554 breadcrumb_navxt_admin.php:662
237
  msgid "Tags"
238
  msgstr ""
239
 
240
+ #: breadcrumb_navxt_admin.php:555
241
  msgid "Pages"
242
  msgstr ""
243
 
244
+ #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_admin.php:640
245
  msgid "The taxonomy which the breadcrumb trail will show."
246
  msgstr ""
247
 
248
+ #: breadcrumb_navxt_admin.php:570
249
  msgid "Page Prefix"
250
  msgstr ""
251
 
252
+ #: breadcrumb_navxt_admin.php:571
253
  msgid "Page Suffix"
254
  msgstr ""
255
 
256
+ #: breadcrumb_navxt_admin.php:572
257
  msgid "Page Anchor"
258
  msgstr ""
259
 
260
+ #: breadcrumb_navxt_admin.php:572
261
  msgid "The anchor template for page breadcrumbs."
262
  msgstr ""
263
 
264
+ #: breadcrumb_navxt_admin.php:573
265
  msgid "Attachment Prefix"
266
  msgstr ""
267
 
268
+ #: breadcrumb_navxt_admin.php:574
269
  msgid "Attachment Suffix"
270
  msgstr ""
271
 
272
+ #: breadcrumb_navxt_admin.php:616 breadcrumb_navxt_admin.php:699
273
+ #, php-format
274
+ msgid "%s Prefix"
275
+ msgstr ""
276
+
277
+ #: breadcrumb_navxt_admin.php:617 breadcrumb_navxt_admin.php:700
278
+ #, php-format
279
+ msgid "%s Suffix"
280
+ msgstr ""
281
+
282
+ #: breadcrumb_navxt_admin.php:618 breadcrumb_navxt_admin.php:701
283
+ #, php-format
284
+ msgid "%s Anchor"
285
+ msgstr ""
286
+
287
+ #: breadcrumb_navxt_admin.php:618 breadcrumb_navxt_admin.php:701
288
+ #, php-format
289
+ msgid "The anchor template for %s breadcrumbs."
290
+ msgstr ""
291
+
292
+ #: breadcrumb_navxt_admin.php:622
293
+ #, php-format
294
+ msgid "%s Taxonomy Display"
295
+ msgstr ""
296
+
297
+ #: breadcrumb_navxt_admin.php:622
298
+ #, php-format
299
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
300
+ msgstr ""
301
+
302
+ #: breadcrumb_navxt_admin.php:626
303
+ #, php-format
304
+ msgid "%s Taxonomy"
305
+ msgstr ""
306
+
307
+ #: breadcrumb_navxt_admin.php:653
308
  msgid "Category Prefix"
309
  msgstr ""
310
 
311
+ #: breadcrumb_navxt_admin.php:653
312
  msgid "Applied before the anchor on all category breadcrumbs."
313
  msgstr ""
314
 
315
+ #: breadcrumb_navxt_admin.php:654
316
  msgid "Category Suffix"
317
  msgstr ""
318
 
319
+ #: breadcrumb_navxt_admin.php:654
320
  msgid "Applied after the anchor on all category breadcrumbs."
321
  msgstr ""
322
 
323
+ #: breadcrumb_navxt_admin.php:655
324
  msgid "Category Anchor"
325
  msgstr ""
326
 
327
+ #: breadcrumb_navxt_admin.php:655
328
  msgid "The anchor template for category breadcrumbs."
329
  msgstr ""
330
 
331
+ #: breadcrumb_navxt_admin.php:656
332
  msgid "Archive by Category Prefix"
333
  msgstr ""
334
 
335
+ #: breadcrumb_navxt_admin.php:656
336
  msgid ""
337
  "Applied before the title of the current item breadcrumb on an archive by "
338
  "cateogry page."
339
  msgstr ""
340
 
341
+ #: breadcrumb_navxt_admin.php:657
342
  msgid "Archive by Category Suffix"
343
  msgstr ""
344
 
345
+ #: breadcrumb_navxt_admin.php:657
346
  msgid ""
347
  "Applied after the title of the current item breadcrumb on an archive by "
348
  "cateogry page."
349
  msgstr ""
350
 
351
+ #: breadcrumb_navxt_admin.php:665
352
  msgid "Tag Prefix"
353
  msgstr ""
354
 
355
+ #: breadcrumb_navxt_admin.php:665
356
  msgid "Applied before the anchor on all tag breadcrumbs."
357
  msgstr ""
358
 
359
+ #: breadcrumb_navxt_admin.php:666
360
  msgid "Tag Suffix"
361
  msgstr ""
362
 
363
+ #: breadcrumb_navxt_admin.php:666
364
  msgid "Applied after the anchor on all tag breadcrumbs."
365
  msgstr ""
366
 
367
+ #: breadcrumb_navxt_admin.php:667
368
  msgid "Tag Anchor"
369
  msgstr ""
370
 
371
+ #: breadcrumb_navxt_admin.php:667
372
  msgid "The anchor template for tag breadcrumbs."
373
  msgstr ""
374
 
375
+ #: breadcrumb_navxt_admin.php:668
376
  msgid "Archive by Tag Prefix"
377
  msgstr ""
378
 
379
+ #: breadcrumb_navxt_admin.php:668
380
  msgid ""
381
  "Applied before the title of the current item breadcrumb on an archive by tag "
382
  "page."
383
  msgstr ""
384
 
385
+ #: breadcrumb_navxt_admin.php:669
386
  msgid "Archive by Tag Suffix"
387
  msgstr ""
388
 
389
+ #: breadcrumb_navxt_admin.php:669
390
  msgid ""
391
  "Applied after the title of the current item breadcrumb on an archive by tag "
392
  "page."
393
  msgstr ""
394
 
395
+ #: breadcrumb_navxt_admin.php:699
 
 
 
 
 
396
  #, php-format
397
  msgid "Applied before the anchor on all %s breadcrumbs."
398
  msgstr ""
399
 
400
+ #: breadcrumb_navxt_admin.php:700
 
 
 
 
 
401
  #, php-format
402
  msgid "Applied after the anchor on all %s breadcrumbs."
403
  msgstr ""
404
 
405
+ #: breadcrumb_navxt_admin.php:702
 
 
 
 
 
 
 
 
 
 
406
  #, php-format
407
  msgid "Archive by %s Prefix"
408
  msgstr ""
409
 
410
+ #: breadcrumb_navxt_admin.php:702
411
  #, php-format
412
  msgid ""
413
  "Applied before the title of the current item breadcrumb on an archive by %s "
414
  "page."
415
  msgstr ""
416
 
417
+ #: breadcrumb_navxt_admin.php:703
418
  #, php-format
419
  msgid "Archive by %s Suffix"
420
  msgstr ""
421
 
422
+ #: breadcrumb_navxt_admin.php:703
423
  #, php-format
424
  msgid ""
425
  "Applied after the title of the current item breadcrumb on an archive by %s "
426
  "page."
427
  msgstr ""
428
 
429
+ #: breadcrumb_navxt_admin.php:712
430
  msgid "Date Archives"
431
  msgstr ""
432
 
433
+ #: breadcrumb_navxt_admin.php:715
434
  msgid "Date Anchor"
435
  msgstr ""
436
 
437
+ #: breadcrumb_navxt_admin.php:715
438
  msgid "The anchor template for date breadcrumbs."
439
  msgstr ""
440
 
441
+ #: breadcrumb_navxt_admin.php:716
442
  msgid "Archive by Date Prefix"
443
  msgstr ""
444
 
445
+ #: breadcrumb_navxt_admin.php:716
446
  msgid "Applied before the anchor on all date breadcrumbs."
447
  msgstr ""
448
 
449
+ #: breadcrumb_navxt_admin.php:717
450
  msgid "Archive by Date Suffix"
451
  msgstr ""
452
 
453
+ #: breadcrumb_navxt_admin.php:717
454
  msgid "Applied after the anchor on all date breadcrumbs."
455
  msgstr ""
456
 
457
+ #: breadcrumb_navxt_admin.php:722
458
  msgid "Miscellaneous"
459
  msgstr ""
460
 
461
+ #: breadcrumb_navxt_admin.php:725
462
  msgid "Author Prefix"
463
  msgstr ""
464
 
465
+ #: breadcrumb_navxt_admin.php:726
466
  msgid "Author Suffix"
467
  msgstr ""
468
 
469
+ #: breadcrumb_navxt_admin.php:727
470
  msgid "Author Display Format"
471
  msgstr ""
472
 
473
+ #: breadcrumb_navxt_admin.php:727
474
  msgid ""
475
  "display_name uses the name specified in \"Display name publicly as\" under "
476
  "the user profile the others correspond to options in the user profile."
477
  msgstr ""
478
 
479
+ #: breadcrumb_navxt_admin.php:728
480
  msgid "Search Prefix"
481
  msgstr ""
482
 
483
+ #: breadcrumb_navxt_admin.php:729
484
  msgid "Search Suffix"
485
  msgstr ""
486
 
487
+ #: breadcrumb_navxt_admin.php:730
488
  msgid "Search Anchor"
489
  msgstr ""
490
 
491
+ #: breadcrumb_navxt_admin.php:730
492
  msgid ""
493
  "The anchor template for search breadcrumbs, used only when the search "
494
  "results span several pages."
495
  msgstr ""
496
 
497
+ #: breadcrumb_navxt_admin.php:731
498
  msgid "404 Title"
499
  msgstr ""
500
 
501
+ #: breadcrumb_navxt_admin.php:732
502
  msgid "404 Prefix"
503
  msgstr ""
504
 
505
+ #: breadcrumb_navxt_admin.php:733
506
  msgid "404 Suffix"
507
  msgstr ""
508
 
509
+ #: breadcrumb_navxt_admin.php:738
510
  msgid "Save Changes"
511
  msgstr ""
512
 
513
+ #: breadcrumb_navxt_class.php:154
514
  msgid "Blog"
515
  msgstr ""
516
 
517
+ #: breadcrumb_navxt_class.php:173
 
 
 
 
 
518
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
519
  msgstr ""
520
 
521
+ #: breadcrumb_navxt_class.php:214
522
  msgid "404"
523
  msgstr ""
524
 
525
+ #: breadcrumb_navxt_class.php:217
526
  msgid "Search results for &#39;"
527
  msgstr ""
528
 
529
+ #: breadcrumb_navxt_class.php:221
530
+ msgid ""
531
+ "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
532
+ "%\">"
533
+ msgstr ""
534
+
535
+ #: breadcrumb_navxt_class.php:228
536
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
537
  msgstr ""
538
 
539
+ #: breadcrumb_navxt_class.php:231
540
  msgid "Articles by: "
541
  msgstr ""
542
 
543
+ #: breadcrumb_navxt_class.php:235
544
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
545
  msgstr ""
546
 
547
+ #: breadcrumb_navxt_class.php:244
548
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
549
  msgstr ""
550
 
551
+ #: breadcrumb_navxt_class.php:247
552
  msgid "Archive by category &#39;"
553
  msgstr ""
554
 
555
+ #: breadcrumb_navxt_class.php:251
556
  msgid "Archive by tag &#39;"
557
  msgstr ""
558
 
559
+ #: breadcrumb_navxt_class.php:254
560
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
561
  msgstr ""
562
 
563
+ #: breadcrumb_navxt_class.php:425
564
  msgid "Untagged"
565
  msgstr ""
566
 
568
  msgid "Adds a breadcrumb trail to your sidebar"
569
  msgstr ""
570
 
571
+ #: breadcrumb_navxt_widget.php:72
572
  msgid "Title:"
573
  msgstr ""
574
 
575
+ #: breadcrumb_navxt_widget.php:77
576
  msgid "Output trail as a list"
577
  msgstr ""
578
 
579
+ #: breadcrumb_navxt_widget.php:79
580
  msgid "Link the breadcrumbs"
581
  msgstr ""
582
 
583
+ #: breadcrumb_navxt_widget.php:81
584
  msgid "Reverse the order of the trail"
585
  msgstr ""
586
 
587
+ #: breadcrumb_navxt_widget.php:83
588
+ msgid "Hide the trail on the front page"
589
+ msgstr ""
590
+
591
+ #: mtekk_admin_class.php:56
592
+ msgid "Undo"
593
+ msgstr ""
594
+
595
+ #: mtekk_admin_class.php:150
596
  msgid "Settings"
597
  msgstr ""
598
 
599
+ #: mtekk_admin_class.php:284
600
  msgid "Settings successfully imported from the uploaded file."
601
  msgstr ""
602
 
603
+ #: mtekk_admin_class.php:284
604
+ msgid "Undo the options import."
605
+ msgstr ""
606
+
607
+ #: mtekk_admin_class.php:289
608
  msgid "Importing settings from file failed."
609
  msgstr ""
610
 
611
+ #: mtekk_admin_class.php:310
612
  msgid "Settings successfully reset to the default values."
613
  msgstr ""
614
 
615
+ #: mtekk_admin_class.php:310
616
+ msgid "Undo the options reset."
617
+ msgstr ""
618
+
619
+ #: mtekk_admin_class.php:324
620
+ msgid "Settings successfully undid the last operation."
621
+ msgstr ""
622
+
623
+ #: mtekk_admin_class.php:324
624
+ msgid "Undo the last undo operation."
625
+ msgstr ""
626
+
627
+ #: mtekk_admin_class.php:354
628
  #, php-format
629
  msgid "Get help with \"%s\""
630
  msgstr ""
631
 
632
+ #: mtekk_admin_class.php:435
633
  msgid "Import/Export/Reset Settings"
634
  msgstr ""
635
 
636
+ #: mtekk_admin_class.php:436
637
  msgid ""
638
  "Import settings from a XML file, export the current settings to a XML file, "
639
  "or reset to the default settings."
640
  msgstr ""
641
 
642
+ #: mtekk_admin_class.php:439
643
  msgid "Settings File"
644
  msgstr ""
645
 
646
+ #: mtekk_admin_class.php:442
647
  msgid "Select a XML settings file to upload and import settings from."
648
  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-05-09 01:08+0000\n"
6
- "PO-Revision-Date: 2010-05-20 12:52-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"
@@ -22,513 +22,529 @@ msgstr ""
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:110
26
  msgid "Insufficient privileges to proceed."
27
  msgstr "No tiene privilegios para proceder."
28
 
29
- #: breadcrumb_navxt_admin.php:135
30
- #: breadcrumb_navxt_class.php:216
31
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
32
- msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
 
 
 
 
 
33
 
34
- #: breadcrumb_navxt_admin.php:249
35
  msgid "Settings successfully saved."
36
  msgstr "Ajustes guardados exitosamente."
37
 
38
- #: breadcrumb_navxt_admin.php:272
 
 
 
 
39
  #, php-format
40
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
41
  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)."
42
 
43
- #: breadcrumb_navxt_admin.php:273
44
  msgid "Go to the Breadcrumb NavXT online documentation"
45
  msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
46
 
47
- #: breadcrumb_navxt_admin.php:327
48
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
49
- msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores predeterminados. ¿Seguro que desea continuar?"
50
-
51
- #: breadcrumb_navxt_admin.php:330
52
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
53
- msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores que se importen. ¿Seguro que desea continuar?"
54
-
55
- #: breadcrumb_navxt_admin.php:381
56
- #: mtekk_admin_class.php:403
57
  msgid "Import"
58
  msgstr "Importar"
59
 
60
- #: breadcrumb_navxt_admin.php:381
61
- #: mtekk_admin_class.php:404
62
  msgid "Export"
63
  msgstr "Exportar"
64
 
65
- #: breadcrumb_navxt_admin.php:381
66
- #: mtekk_admin_class.php:405
67
  msgid "Reset"
68
  msgstr "Reiniciar"
69
 
70
- #: breadcrumb_navxt_admin.php:405
71
  msgid "Breadcrumb NavXT Settings"
72
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
73
 
74
- #: breadcrumb_navxt_admin.php:413
75
  msgid "General"
76
  msgstr "General"
77
 
78
- #: breadcrumb_navxt_admin.php:416
79
  msgid "Breadcrumb Separator"
80
  msgstr "Separador de Navegación"
81
 
82
- #: breadcrumb_navxt_admin.php:416
83
  msgid "Placed in between each breadcrumb."
84
  msgstr "Colocado en medio de cada opción de navegación."
85
 
86
- #: breadcrumb_navxt_admin.php:417
87
  msgid "Breadcrumb Max Title Length"
88
  msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
89
 
90
- #: breadcrumb_navxt_admin.php:421
91
  msgid "Home Breadcrumb"
92
  msgstr "Incluir Inicio"
93
 
94
- #: breadcrumb_navxt_admin.php:426
95
  msgid "Place the home breadcrumb in the trail."
96
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
97
 
98
- #: breadcrumb_navxt_admin.php:431
99
  msgid "Home Title: "
100
  msgstr "Título de Página de Inicio:"
101
 
102
- #: breadcrumb_navxt_admin.php:439
103
  msgid "Blog Breadcrumb"
104
  msgstr "Incluir Inicio (del Blog)"
105
 
106
- #: breadcrumb_navxt_admin.php:439
107
  msgid "Place the blog breadcrumb in the trail."
108
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
109
 
110
- #: breadcrumb_navxt_admin.php:440
111
  msgid "Home Prefix"
112
  msgstr "Prefijo de Inicio"
113
 
114
- #: breadcrumb_navxt_admin.php:441
115
  msgid "Home Suffix"
116
  msgstr "Sufijo de Inicio"
117
 
118
- #: breadcrumb_navxt_admin.php:442
119
  msgid "Home Anchor"
120
  msgstr "Vínculo a Inicio"
121
 
122
- #: breadcrumb_navxt_admin.php:442
123
  msgid "The anchor template for the home breadcrumb."
124
  msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
125
 
126
- #: breadcrumb_navxt_admin.php:443
127
  msgid "Blog Anchor"
128
  msgstr "Vínculo a Blog"
129
 
130
- #: breadcrumb_navxt_admin.php:443
131
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
132
  msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
133
 
134
- #: breadcrumb_navxt_admin.php:448
135
  msgid "Current Item"
136
  msgstr "Item Actual"
137
 
138
- #: breadcrumb_navxt_admin.php:451
139
  msgid "Link Current Item"
140
  msgstr "Incluir Vínculo a Item Actual"
141
 
142
- #: breadcrumb_navxt_admin.php:451
143
  msgid "Yes"
144
  msgstr "Sí"
145
 
146
- #: breadcrumb_navxt_admin.php:452
147
  msgid "Current Item Prefix"
148
  msgstr "Prefijo de Item Actual"
149
 
150
- #: breadcrumb_navxt_admin.php:452
151
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
152
  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."
153
 
154
- #: breadcrumb_navxt_admin.php:453
155
  msgid "Current Item Suffix"
156
  msgstr "Sufijo de Item Actual"
157
 
158
- #: breadcrumb_navxt_admin.php:453
159
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
160
  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."
161
 
162
- #: breadcrumb_navxt_admin.php:454
163
  msgid "Current Item Anchor"
164
  msgstr "Vínculo a Item Actual"
165
 
166
- #: breadcrumb_navxt_admin.php:454
167
  msgid "The anchor template for current item breadcrumbs."
168
  msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
169
 
170
- #: breadcrumb_navxt_admin.php:455
171
  msgid "Paged Breadcrumb"
172
  msgstr "Ruta de Navegación Paginada"
173
 
174
- #: breadcrumb_navxt_admin.php:455
175
  msgid "Include the paged breadcrumb in the breadcrumb trail."
176
  msgstr "Incluir la navegación paginada en la ruta de navegación"
177
 
178
- #: breadcrumb_navxt_admin.php:455
179
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
180
  msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
181
 
182
- #: breadcrumb_navxt_admin.php:456
183
  msgid "Paged Prefix"
184
  msgstr "Prefijo para Paginado"
185
 
186
- #: breadcrumb_navxt_admin.php:457
187
  msgid "Paged Suffix"
188
  msgstr "Sufijo para Paginado"
189
 
190
- #: breadcrumb_navxt_admin.php:462
191
  msgid "Posts &amp; Pages"
192
  msgstr "Entradas &amp; Páginas"
193
 
194
- #: breadcrumb_navxt_admin.php:465
195
  msgid "Post Prefix"
196
  msgstr "Prefijo de Entrada"
197
 
198
- #: breadcrumb_navxt_admin.php:466
199
  msgid "Post Suffix"
200
  msgstr "Sufijo de Entrada"
201
 
202
- #: breadcrumb_navxt_admin.php:467
203
  msgid "Post Anchor"
204
  msgstr "Vínculo a Entrada"
205
 
206
- #: breadcrumb_navxt_admin.php:467
207
  msgid "The anchor template for post breadcrumbs."
208
  msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
209
 
210
- #: breadcrumb_navxt_admin.php:468
211
  msgid "Post Taxonomy Display"
212
  msgstr "Mostrar Clasificación de Entradas"
213
 
214
- #: breadcrumb_navxt_admin.php:468
215
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
216
  msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
217
 
218
- #: breadcrumb_navxt_admin.php:472
219
  msgid "Post Taxonomy"
220
  msgstr "Clasificación de Entradas"
221
 
222
- #: breadcrumb_navxt_admin.php:476
223
- #: breadcrumb_navxt_admin.php:503
224
  msgid "Categories"
225
  msgstr "Categorías"
226
 
227
- #: breadcrumb_navxt_admin.php:477
228
  msgid "Dates"
229
  msgstr "Fechas"
230
 
231
- #: breadcrumb_navxt_admin.php:478
232
- #: breadcrumb_navxt_admin.php:515
233
  msgid "Tags"
234
  msgstr "Etiquetas"
235
 
236
- #: breadcrumb_navxt_admin.php:479
237
  msgid "Pages"
238
  msgstr "Páginas"
239
 
240
- #: breadcrumb_navxt_admin.php:490
 
241
  msgid "The taxonomy which the breadcrumb trail will show."
242
  msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
243
 
244
- #: breadcrumb_navxt_admin.php:494
245
  msgid "Page Prefix"
246
  msgstr "Prefijo de Página"
247
 
248
- #: breadcrumb_navxt_admin.php:495
249
  msgid "Page Suffix"
250
  msgstr "Sufijo de Página"
251
 
252
- #: breadcrumb_navxt_admin.php:496
253
  msgid "Page Anchor"
254
  msgstr "Vínculo a Página"
255
 
256
- #: breadcrumb_navxt_admin.php:496
257
  msgid "The anchor template for page breadcrumbs."
258
  msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
259
 
260
- #: breadcrumb_navxt_admin.php:497
261
  msgid "Attachment Prefix"
262
  msgstr "Prefijo de Archivo Adjunto"
263
 
264
- #: breadcrumb_navxt_admin.php:498
265
  msgid "Attachment Suffix"
266
  msgstr "Sufijo de Archivo Adjunto"
267
 
268
- #: breadcrumb_navxt_admin.php:506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  msgid "Category Prefix"
270
  msgstr "Prefijo de Categoría"
271
 
272
- #: breadcrumb_navxt_admin.php:506
273
  msgid "Applied before the anchor on all category breadcrumbs."
274
  msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
275
 
276
- #: breadcrumb_navxt_admin.php:507
277
  msgid "Category Suffix"
278
  msgstr "Sufijo de Categoría"
279
 
280
- #: breadcrumb_navxt_admin.php:507
281
  msgid "Applied after the anchor on all category breadcrumbs."
282
  msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
283
 
284
- #: breadcrumb_navxt_admin.php:508
285
  msgid "Category Anchor"
286
  msgstr "Vínculo a Categoría"
287
 
288
- #: breadcrumb_navxt_admin.php:508
289
  msgid "The anchor template for category breadcrumbs."
290
  msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
291
 
292
- #: breadcrumb_navxt_admin.php:509
293
  msgid "Archive by Category Prefix"
294
  msgstr "Prefijo de Archivo por Categoría"
295
 
296
- #: breadcrumb_navxt_admin.php:509
297
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
298
  msgstr "Aplicado antes del título del item actual en un archivo por categoría."
299
 
300
- #: breadcrumb_navxt_admin.php:510
301
  msgid "Archive by Category Suffix"
302
  msgstr "Sufijo de Archivo por Categoría"
303
 
304
- #: breadcrumb_navxt_admin.php:510
305
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
306
  msgstr "Aplicado después del título del item actual en un archivo por categoría."
307
 
308
- #: breadcrumb_navxt_admin.php:518
309
  msgid "Tag Prefix"
310
  msgstr "Prefijo de Etiqueta"
311
 
312
- #: breadcrumb_navxt_admin.php:518
313
  msgid "Applied before the anchor on all tag breadcrumbs."
314
  msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
315
 
316
- #: breadcrumb_navxt_admin.php:519
317
  msgid "Tag Suffix"
318
  msgstr "Sufijo de Etiqueta"
319
 
320
- #: breadcrumb_navxt_admin.php:519
321
  msgid "Applied after the anchor on all tag breadcrumbs."
322
  msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
323
 
324
- #: breadcrumb_navxt_admin.php:520
325
  msgid "Tag Anchor"
326
  msgstr "Vínculo a Etiqueta"
327
 
328
- #: breadcrumb_navxt_admin.php:520
329
  msgid "The anchor template for tag breadcrumbs."
330
  msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
331
 
332
- #: breadcrumb_navxt_admin.php:521
333
  msgid "Archive by Tag Prefix"
334
  msgstr "Prefijo de Archivo por Etiqueta"
335
 
336
- #: breadcrumb_navxt_admin.php:521
337
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
338
  msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
339
 
340
- #: breadcrumb_navxt_admin.php:522
341
  msgid "Archive by Tag Suffix"
342
  msgstr "Sufijo de Archivo por Etiqueta"
343
 
344
- #: breadcrumb_navxt_admin.php:522
345
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
346
  msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
347
 
348
- #: breadcrumb_navxt_admin.php:550
349
- #, php-format
350
- msgid "%s Prefix"
351
- msgstr "Prefijo de %s"
352
-
353
- #: breadcrumb_navxt_admin.php:550
354
  #, php-format
355
  msgid "Applied before the anchor on all %s breadcrumbs."
356
  msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
357
 
358
- #: breadcrumb_navxt_admin.php:551
359
- #, php-format
360
- msgid "%s Suffix"
361
- msgstr "Sufijo de %s"
362
-
363
- #: breadcrumb_navxt_admin.php:551
364
  #, php-format
365
  msgid "Applied after the anchor on all %s breadcrumbs."
366
  msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
367
 
368
- #: breadcrumb_navxt_admin.php:552
369
- #, php-format
370
- msgid "%s Anchor"
371
- msgstr "Vínculo a %s"
372
-
373
- #: breadcrumb_navxt_admin.php:552
374
- #, php-format
375
- msgid "The anchor template for %s breadcrumbs."
376
- msgstr "La plantilla de vínculo para los elementos de ruta de %s."
377
-
378
- #: breadcrumb_navxt_admin.php:553
379
  #, php-format
380
  msgid "Archive by %s Prefix"
381
  msgstr "Archivo por Prefijo de %s"
382
 
383
- #: breadcrumb_navxt_admin.php:553
384
  #, php-format
385
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
386
  msgstr "Aplicado antes del título del item actual en un archivo por página %s."
387
 
388
- #: breadcrumb_navxt_admin.php:554
389
  #, php-format
390
  msgid "Archive by %s Suffix"
391
  msgstr "Archivo por Sufijo de %s"
392
 
393
- #: breadcrumb_navxt_admin.php:554
394
  #, php-format
395
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
396
  msgstr "Aplicado después del título del item actual en un archivo por página %s."
397
 
398
- #: breadcrumb_navxt_admin.php:563
399
  msgid "Date Archives"
400
  msgstr "Archivos por Fecha"
401
 
402
- #: breadcrumb_navxt_admin.php:566
403
  msgid "Date Anchor"
404
  msgstr "Vínculo a Fecha"
405
 
406
- #: breadcrumb_navxt_admin.php:566
407
  msgid "The anchor template for date breadcrumbs."
408
  msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
409
 
410
- #: breadcrumb_navxt_admin.php:567
411
  msgid "Archive by Date Prefix"
412
  msgstr "Prefijo de Archivo por Fecha"
413
 
414
- #: breadcrumb_navxt_admin.php:567
415
  msgid "Applied before the anchor on all date breadcrumbs."
416
  msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
417
 
418
- #: breadcrumb_navxt_admin.php:568
419
- #: breadcrumb_navxt_admin.php:578
420
  msgid "Archive by Date Suffix"
421
  msgstr "Sufijo de Archivo por Fecha"
422
 
423
- #: breadcrumb_navxt_admin.php:568
424
- #: breadcrumb_navxt_admin.php:578
425
  msgid "Applied after the anchor on all date breadcrumbs."
426
  msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
427
 
428
- #: breadcrumb_navxt_admin.php:573
429
  msgid "Miscellaneous"
430
  msgstr "Misceláneos"
431
 
432
- #: breadcrumb_navxt_admin.php:576
433
  msgid "Author Prefix"
434
  msgstr "Prefijo de Autor"
435
 
436
- #: breadcrumb_navxt_admin.php:577
437
  msgid "Author Suffix"
438
  msgstr "Sufijo de Autor"
439
 
440
- #: breadcrumb_navxt_admin.php:579
441
  msgid "Author Display Format"
442
  msgstr "Formato de Despliegue de Autor"
443
 
444
- #: breadcrumb_navxt_admin.php:579
445
  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."
446
  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."
447
 
448
- #: breadcrumb_navxt_admin.php:580
449
  msgid "Search Prefix"
450
  msgstr "Prefijo de Búsqueda"
451
 
452
- #: breadcrumb_navxt_admin.php:581
453
  msgid "Search Suffix"
454
  msgstr "Sufijo de Búsqueda"
455
 
456
- #: breadcrumb_navxt_admin.php:582
457
  msgid "Search Anchor"
458
  msgstr "Vínculo a Búsqueda"
459
 
460
- #: breadcrumb_navxt_admin.php:582
461
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
462
  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."
463
 
464
- #: breadcrumb_navxt_admin.php:583
465
  msgid "404 Title"
466
  msgstr "Título Error 404"
467
 
468
- #: breadcrumb_navxt_admin.php:584
469
  msgid "404 Prefix"
470
  msgstr "Prefijo de Error 404"
471
 
472
- #: breadcrumb_navxt_admin.php:585
473
  msgid "404 Suffix"
474
  msgstr "Sufijo de Error 404"
475
 
476
- #: breadcrumb_navxt_admin.php:590
477
  msgid "Save Changes"
478
  msgstr "Grabar Cambios"
479
 
480
- #: breadcrumb_navxt_class.php:149
481
  msgid "Blog"
482
  msgstr "Inicio"
483
 
484
- #: breadcrumb_navxt_class.php:151
485
- #: breadcrumb_navxt_class.php:155
486
- #: breadcrumb_navxt_class.php:179
487
- #: breadcrumb_navxt_class.php:193
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
489
- msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
490
-
491
- #: breadcrumb_navxt_class.php:168
492
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
493
  msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
494
 
495
- #: breadcrumb_navxt_class.php:209
496
  msgid "404"
497
  msgstr "Página no encontrada"
498
 
499
- #: breadcrumb_navxt_class.php:212
500
  msgid "Search results for &#39;"
501
  msgstr "Resultados de búsqueda para &#39;"
502
 
503
- #: breadcrumb_navxt_class.php:223
 
 
 
 
504
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
505
  msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
506
 
507
- #: breadcrumb_navxt_class.php:226
508
  msgid "Articles by: "
509
  msgstr "Artículos por: "
510
 
511
- #: breadcrumb_navxt_class.php:230
512
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
513
  msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
514
 
515
- #: breadcrumb_navxt_class.php:239
516
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
517
  msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
518
 
519
- #: breadcrumb_navxt_class.php:242
520
  msgid "Archive by category &#39;"
521
  msgstr "Archivo por Categoría &#39;"
522
 
523
- #: breadcrumb_navxt_class.php:246
524
  msgid "Archive by tag &#39;"
525
  msgstr "Archivo por Etiqueta &#39;"
526
 
527
- #: breadcrumb_navxt_class.php:249
528
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
529
  msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
530
 
531
- #: breadcrumb_navxt_class.php:500
532
  msgid "Untagged"
533
  msgstr "Sin etiqueta"
534
 
@@ -536,59 +552,95 @@ msgstr "Sin etiqueta"
536
  msgid "Adds a breadcrumb trail to your sidebar"
537
  msgstr "Agrega una ruta de navegación en su barra lateral"
538
 
539
- #: breadcrumb_navxt_widget.php:66
540
  msgid "Title:"
541
  msgstr "Título:"
542
 
543
- #: breadcrumb_navxt_widget.php:71
544
  msgid "Output trail as a list"
545
  msgstr "Mostrar ruta como una lista"
546
 
547
- #: breadcrumb_navxt_widget.php:73
548
  msgid "Link the breadcrumbs"
549
  msgstr "Enlace a la Ruta"
550
 
551
- #: breadcrumb_navxt_widget.php:75
552
  msgid "Reverse the order of the trail"
553
  msgstr "Invertir el orden de la ruta"
554
 
555
- #: mtekk_admin_class.php:137
 
 
 
 
 
 
 
 
556
  msgid "Settings"
557
  msgstr "Configuraciones"
558
 
559
- #: mtekk_admin_class.php:259
560
  msgid "Settings successfully imported from the uploaded file."
561
  msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
562
 
563
- #: mtekk_admin_class.php:264
 
 
 
 
564
  msgid "Importing settings from file failed."
565
  msgstr "Falló la importación de los ajustes desde el archivo."
566
 
567
- #: mtekk_admin_class.php:283
568
  msgid "Settings successfully reset to the default values."
569
  msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
570
 
571
- #: mtekk_admin_class.php:313
 
 
 
 
 
 
 
 
 
 
 
 
572
  #, php-format
573
  msgid "Get help with \"%s\""
574
  msgstr "Obtener ayuda con \"%s\""
575
 
576
- #: mtekk_admin_class.php:394
577
  msgid "Import/Export/Reset Settings"
578
  msgstr "Importar/Exportar/Reiniciar Ajustes"
579
 
580
- #: mtekk_admin_class.php:395
581
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
582
  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."
583
 
584
- #: mtekk_admin_class.php:398
585
  msgid "Settings File"
586
  msgstr "Archivo de Ajustes"
587
 
588
- #: mtekk_admin_class.php:401
589
  msgid "Select a XML settings file to upload and import settings from."
590
  msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
591
 
 
 
 
 
 
 
 
 
 
 
 
 
592
  #~ msgid ""
593
  #~ "Warning, your version of Breadcrumb NavXT does not match the version "
594
  #~ "supported by this administrative interface. As a result, settings may not "
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"
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
 
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?"
635
+ #~ msgstr ""
636
+ #~ "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los "
637
+ #~ "valores predeterminados. ¿Seguro que desea continuar?"
638
+ #~ msgid ""
639
+ #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
640
+ #~ "the imported values. Are you sure you want to continue?"
641
+ #~ msgstr ""
642
+ #~ "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los "
643
+ #~ "valores que se importen. ¿Seguro que desea continuar?"
644
  #~ msgid ""
645
  #~ "Warning, your version of Breadcrumb NavXT does not match the version "
646
  #~ "supported by this administrative interface. As a result, settings may not "
languages/breadcrumb_navxt-fr_FR.mo CHANGED
Binary file
languages/breadcrumb_navxt-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: breadcrumb-navxt\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2010-05-30 10:43+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Laurent Grabielle <infos@3w3t.com>\n"
8
  "Language-Team: 3w3t\n"
@@ -21,509 +21,525 @@ msgstr ""
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:110
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:135
29
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:216
30
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
31
- msgstr "<a title=\"Aller à la première page des résultats pour %title%.\" href=\"%link%\">"
 
 
 
 
 
32
 
33
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:245
34
  msgid "Settings successfully saved."
35
  msgstr "Les réglages ont été correctement sauvegardés."
36
 
37
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:268
 
 
 
 
38
  #, php-format
39
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
40
  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."
41
 
42
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:269
43
  msgid "Go to the Breadcrumb NavXT online documentation"
44
  msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
45
 
46
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:323
47
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
48
- msgstr "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par les valeurs par défaut. Etes vous sûr de vouloir continuer?"
49
-
50
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:326
51
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
52
- msgstr "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par les valeurs importées. Etes vous sûr de vouloir continuer?"
53
-
54
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:368
55
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:403
56
  msgid "Import"
57
  msgstr "Importation"
58
 
59
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:368
60
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:404
61
  msgid "Export"
62
  msgstr "Exportation"
63
 
64
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:368
65
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:405
66
  msgid "Reset"
67
  msgstr "Réinitialisation"
68
 
69
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:392
70
  msgid "Breadcrumb NavXT Settings"
71
  msgstr "Paramétrages de Breadcrumb NavXT"
72
 
73
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:400
74
  msgid "General"
75
  msgstr "Général"
76
 
77
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:403
78
  msgid "Breadcrumb Separator"
79
  msgstr "Séparateur du fil d'ariane"
80
 
81
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:403
82
  msgid "Placed in between each breadcrumb."
83
  msgstr "Placé entre chaque élément du fil d'ariane."
84
 
85
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:404
86
  msgid "Breadcrumb Max Title Length"
87
  msgstr "Longueur maximum du titre "
88
 
89
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:408
90
  msgid "Home Breadcrumb"
91
  msgstr "Origine du fil d'ariane"
92
 
93
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:413
94
  msgid "Place the home breadcrumb in the trail."
95
  msgstr "Inclure la page d'accueil dans le fil d'ariane."
96
 
97
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:418
98
  msgid "Home Title: "
99
  msgstr "Titre de la page d'accueil:"
100
 
101
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:426
102
  msgid "Blog Breadcrumb"
103
  msgstr "Fil d'ariane du site"
104
 
105
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:426
106
  msgid "Place the blog breadcrumb in the trail."
107
  msgstr "Mettre le fil d'ariane du site en route. "
108
 
109
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:427
110
  msgid "Home Prefix"
111
  msgstr "Préfixe de la page d'accueil"
112
 
113
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:428
114
  msgid "Home Suffix"
115
  msgstr "Suffixe de la page d'accueil"
116
 
117
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:429
118
  msgid "Home Anchor"
119
  msgstr "Ancre pour la page d'accueil"
120
 
121
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:429
122
  msgid "The anchor template for the home breadcrumb."
123
  msgstr "Modèle de l'ancre pour l'élement origine du fil d'ariane."
124
 
125
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:430
126
  msgid "Blog Anchor"
127
  msgstr "Ancre pour le blog"
128
 
129
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:430
130
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
131
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand l'accueil est une page statique."
132
 
133
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:435
134
  msgid "Current Item"
135
  msgstr "Elément courant"
136
 
137
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:438
138
  msgid "Link Current Item"
139
  msgstr "Faire un lien avec l'élément courant"
140
 
141
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:438
142
  msgid "Yes"
143
  msgstr "Oui"
144
 
145
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:439
146
  msgid "Current Item Prefix"
147
  msgstr "Préfixe pour l'élément courant"
148
 
149
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:439
150
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
151
  msgstr "Toujours placé au début du dernier élément du fil d'ariane, avant tout autre préfixe."
152
 
153
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:440
154
  msgid "Current Item Suffix"
155
  msgstr "Suffixe pour l'élément courant"
156
 
157
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:440
158
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
159
  msgstr "Toujours placé en fin dernier élément du fil d'ariane, et après tout autre suffixe."
160
 
161
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:441
162
  msgid "Current Item Anchor"
163
  msgstr "Ancre pour l'élément courant"
164
 
165
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:441
166
  msgid "The anchor template for current item breadcrumbs."
167
  msgstr "Modèle de l'ancre pour l'élement courant du fil d'ariane."
168
 
169
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:442
170
  msgid "Paged Breadcrumb"
171
  msgstr "Fil d'ariane avec pagination"
172
 
173
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:442
174
  msgid "Include the paged breadcrumb in the breadcrumb trail."
175
  msgstr "Inclus la pagination dans le fil d'ariane."
176
 
177
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:442
178
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
179
  msgstr "Indique que l'utilisateur se trouve dans une autre page/article que la première lorsque la pagination est activée."
180
 
181
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:443
182
  msgid "Paged Prefix"
183
  msgstr "Préfixe pour la pagination"
184
 
185
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:444
186
  msgid "Paged Suffix"
187
  msgstr "Suffixe pour la pagination"
188
 
189
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:449
190
  msgid "Posts &amp; Pages"
191
  msgstr "Articles &amp; Pages"
192
 
193
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:452
194
  msgid "Post Prefix"
195
  msgstr "Préfixe des articles"
196
 
197
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:453
198
  msgid "Post Suffix"
199
  msgstr "Suffixe des articles"
200
 
201
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:454
202
  msgid "Post Anchor"
203
  msgstr "Ancre des articles"
204
 
205
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:454
206
  msgid "The anchor template for post breadcrumbs."
207
  msgstr "Modèle de l'ancre pour le fil d'ariane des articles"
208
 
209
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:455
210
  msgid "Post Taxonomy Display"
211
  msgstr "Affichage de la taxonomie des articles"
212
 
213
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:455
214
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
215
  msgstr "Montrer la taxonomie dans le fil d'ariane."
216
 
217
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:459
218
  msgid "Post Taxonomy"
219
  msgstr "Taxonomie des articles"
220
 
221
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:463
222
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:490
223
  msgid "Categories"
224
  msgstr "Catégories"
225
 
226
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:464
227
  msgid "Dates"
228
  msgstr "Dates"
229
 
230
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:465
231
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:502
232
  msgid "Tags"
233
  msgstr "Tags"
234
 
235
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:466
236
  msgid "Pages"
237
  msgstr "Pages"
238
 
239
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:477
 
240
  msgid "The taxonomy which the breadcrumb trail will show."
241
  msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
242
 
243
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:481
244
  msgid "Page Prefix"
245
  msgstr "Préfixe pour les pages"
246
 
247
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:482
248
  msgid "Page Suffix"
249
  msgstr "Suffixe pour les pages"
250
 
251
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:483
252
  msgid "Page Anchor"
253
  msgstr "Ancre des pages"
254
 
255
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:483
256
  msgid "The anchor template for page breadcrumbs."
257
  msgstr "Modèle de l'ancre pour un élément page du fil d'ariane."
258
 
259
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:484
260
  msgid "Attachment Prefix"
261
  msgstr "Préfixe pour les attachements"
262
 
263
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:485
264
  msgid "Attachment Suffix"
265
  msgstr "Suffixe pour les attachements"
266
 
267
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
268
  msgid "Category Prefix"
269
  msgstr "Préfixe pour catégorie"
270
 
271
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:493
272
  msgid "Applied before the anchor on all category breadcrumbs."
273
  msgstr "Appliqué avant chaque ancre pour tous les éléments catégorie du fil d'ariane."
274
 
275
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:494
276
  msgid "Category Suffix"
277
  msgstr "Suffixe pour catégorie"
278
 
279
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:494
280
  msgid "Applied after the anchor on all category breadcrumbs."
281
  msgstr "Appliqué après chaque ancre pour tous les éléments catégorie du fil d'ariane."
282
 
283
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:495
284
  msgid "Category Anchor"
285
  msgstr "Ancre pour les catégories"
286
 
287
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:495
288
  msgid "The anchor template for category breadcrumbs."
289
  msgstr "Modèle de l'ancre pour les éléments catégorie du fil d'ariane"
290
 
291
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:496
292
  msgid "Archive by Category Prefix"
293
  msgstr "Préfixe pour les archives par catégorie"
294
 
295
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:496
296
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
297
  msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par catégorie."
298
 
299
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:497
300
  msgid "Archive by Category Suffix"
301
  msgstr "Suffixe pour les archive par catégorie"
302
 
303
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:497
304
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
305
  msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par catégorie."
306
 
307
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:505
308
  msgid "Tag Prefix"
309
  msgstr "Préfixe pour les tag"
310
 
311
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:505
312
  msgid "Applied before the anchor on all tag breadcrumbs."
313
  msgstr "Appliqué avant l'ancre de tous les éléments tag du fil d'ariane. "
314
 
315
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:506
316
  msgid "Tag Suffix"
317
  msgstr "Suffixe pour les tags"
318
 
319
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:506
320
  msgid "Applied after the anchor on all tag breadcrumbs."
321
  msgstr "Appliqué après l'ancre de tous les éléments tag du fil d'ariane. "
322
 
323
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:507
324
  msgid "Tag Anchor"
325
  msgstr "Ancre pour les tags"
326
 
327
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:507
328
  msgid "The anchor template for tag breadcrumbs."
329
  msgstr "Modèle de l'ancre pour les élément du fil d'ariane tag."
330
 
331
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:508
332
  msgid "Archive by Tag Prefix"
333
  msgstr "Préfixe pour archive par tag"
334
 
335
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:508
336
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
337
  msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par tag."
338
 
339
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:509
340
  msgid "Archive by Tag Suffix"
341
  msgstr "Suffixe pour archive par tag"
342
 
343
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:509
344
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
345
  msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par tag."
346
 
347
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:537
348
- #, php-format
349
- msgid "%s Prefix"
350
- msgstr "Préfixe des %s"
351
-
352
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:537
353
  #, php-format
354
  msgid "Applied before the anchor on all %s breadcrumbs."
355
  msgstr "Appliqué avant l'ancre de tous les éléments %s du fil d'ariane. "
356
 
357
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:538
358
- #, php-format
359
- msgid "%s Suffix"
360
- msgstr "Suffixe des %s"
361
-
362
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:538
363
  #, php-format
364
  msgid "Applied after the anchor on all %s breadcrumbs."
365
  msgstr "Appliqué après l'ancre de tous les éléments %s du fil d'ariane. "
366
 
367
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:539
368
- #, php-format
369
- msgid "%s Anchor"
370
- msgstr "Ancre des %s"
371
-
372
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:539
373
- #, php-format
374
- msgid "The anchor template for %s breadcrumbs."
375
- msgstr "Modèle de l'ancre pour le fil d'ariane des %s."
376
-
377
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:540
378
  #, php-format
379
  msgid "Archive by %s Prefix"
380
  msgstr "Préfixe pour archive par %s"
381
 
382
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:540
383
  #, php-format
384
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
385
  msgstr "Appliqué avant le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
386
 
387
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:541
388
  #, php-format
389
  msgid "Archive by %s Suffix"
390
  msgstr "Suffixe pour archive par %s"
391
 
392
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:541
393
  #, php-format
394
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
395
  msgstr "Appliqué après le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
396
 
397
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:550
398
  msgid "Date Archives"
399
  msgstr "Archives par date"
400
 
401
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:553
402
  msgid "Date Anchor"
403
  msgstr "Ancre pour archive par date"
404
 
405
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:553
406
  msgid "The anchor template for date breadcrumbs."
407
  msgstr "Modèle de l'ancre pour la date dans le fil d'ariane."
408
 
409
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:554
410
  msgid "Archive by Date Prefix"
411
  msgstr "Préfixe pour les archives par date"
412
 
413
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:554
414
  msgid "Applied before the anchor on all date breadcrumbs."
415
  msgstr "Appliqué avant l'ancre de chaque élément date du fil d'ariane."
416
 
417
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:555
418
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:565
419
  msgid "Archive by Date Suffix"
420
  msgstr "Suffixe pour archive par date"
421
 
422
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:555
423
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:565
424
  msgid "Applied after the anchor on all date breadcrumbs."
425
  msgstr "Appliqué après l'ancre de chaque élément date du fil d'ariane."
426
 
427
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:560
428
  msgid "Miscellaneous"
429
  msgstr "Divers"
430
 
431
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:563
432
  msgid "Author Prefix"
433
  msgstr "Préfixe pour auteur"
434
 
435
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:564
436
  msgid "Author Suffix"
437
  msgstr "Suffixe pour auteur"
438
 
439
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:566
440
  msgid "Author Display Format"
441
  msgstr "Format d'affichage de l'auteur"
442
 
443
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:566
444
  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."
445
  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."
446
 
447
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:567
448
  msgid "Search Prefix"
449
  msgstr "Préfixe pour la recherche"
450
 
451
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:568
452
  msgid "Search Suffix"
453
  msgstr "Suffixe pour la recherche"
454
 
455
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:569
456
  msgid "Search Anchor"
457
  msgstr "Ancre de recherche"
458
 
459
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:569
460
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
461
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
462
 
463
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:570
464
  msgid "404 Title"
465
  msgstr "Titre erreur 404"
466
 
467
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:571
468
  msgid "404 Prefix"
469
  msgstr "Préfixe erreur 404"
470
 
471
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:572
472
  msgid "404 Suffix"
473
  msgstr "Suffixe erreur 404"
474
 
475
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:149
476
  msgid "Blog"
477
  msgstr "Accueil"
478
 
479
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:151
480
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:155
481
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:179
482
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:193
483
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
484
- msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">"
485
-
486
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:168
487
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
488
  msgstr "<a title=\"recharger la page courante. \" href=\"%link%\">"
489
 
490
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:209
491
  msgid "404"
492
  msgstr "404"
493
 
494
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:212
495
  msgid "Search results for &#39;"
496
  msgstr "Résultat de recherche pour &#39;"
497
 
498
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:223
 
 
 
 
499
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
500
  msgstr "<a title=\"Aller aux archives du tag %title%.\" href=\"%link%\">"
501
 
502
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:226
503
  msgid "Articles by: "
504
  msgstr "Articles par:"
505
 
506
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:230
507
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
508
  msgstr "<a title=\"Aller à la première page des articles par %title%.\" href=\"%link%\">"
509
 
510
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:239
511
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
512
  msgstr "<a title=\"Aller aux archives de la catégorie %title%.\" href=\"%link%\">"
513
 
514
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:242
515
  msgid "Archive by category &#39;"
516
  msgstr "Archive par categorie &#39;"
517
 
518
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:246
519
  msgid "Archive by tag &#39;"
520
  msgstr "Archive par tag &#39;"
521
 
522
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:249
523
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
524
  msgstr "<a title=\"Aller aux archives %title%.\" href=\"%link%\">"
525
 
526
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:498
527
  msgid "Untagged"
528
  msgstr "Marquage enlevé"
529
 
@@ -531,59 +547,95 @@ msgstr "Marquage enlevé"
531
  msgid "Adds a breadcrumb trail to your sidebar"
532
  msgstr "Ajoute le fil d'ariane à votre barre latérale "
533
 
534
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:66
535
  msgid "Title:"
536
  msgstr "Titre:"
537
 
538
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:71
539
  msgid "Output trail as a list"
540
  msgstr "Affiche le chemin d'accès en liste"
541
 
542
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:73
543
  msgid "Link the breadcrumbs"
544
  msgstr "Lie le fil d'ariane"
545
 
546
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_widget.php:75
547
  msgid "Reverse the order of the trail"
548
  msgstr "Inverse l'ordre du chemin d'accès"
549
 
550
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:137
 
 
 
 
 
 
 
 
551
  msgid "Settings"
552
  msgstr "Réglages"
553
 
554
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:259
555
  msgid "Settings successfully imported from the uploaded file."
556
  msgstr "Les paramétrages ont été importés depuis le fichier téléchargé avec succès."
557
 
558
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:264
 
 
 
 
559
  msgid "Importing settings from file failed."
560
  msgstr "L'importation des paramétrages depuis le fichier a échoué."
561
 
562
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:283
563
  msgid "Settings successfully reset to the default values."
564
  msgstr "Les paramétrages ont été réinitialisés avec les valeurs par défaut."
565
 
566
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:313
 
 
 
 
 
 
 
 
 
 
 
 
567
  #, php-format
568
  msgid "Get help with \"%s\""
569
  msgstr "Obtenir de l'aide avec \"%s\""
570
 
571
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:394
572
  msgid "Import/Export/Reset Settings"
573
  msgstr "Importation/Exportation/Reinitialisation des paramétrages"
574
 
575
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:395
576
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
577
  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."
578
 
579
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:398
580
  msgid "Settings File"
581
  msgstr "Fichier de paramétrages"
582
 
583
- #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/mtekk_admin_class.php:401
584
  msgid "Select a XML settings file to upload and import settings from."
585
  msgstr "Selectionner un fichier XML à télécharger à partir duquel les paramétrages seront importés."
586
 
 
 
 
 
 
 
 
 
 
 
 
 
587
  #~ msgid "Save Changes"
588
  #~ msgstr "Sauvegarder les changements"
589
  #~ 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"
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
 
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?"
630
+ #~ msgstr ""
631
+ #~ "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par "
632
+ #~ "les valeurs par défaut. Etes vous sûr de vouloir continuer?"
633
+ #~ msgid ""
634
+ #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
635
+ #~ "the imported values. Are you sure you want to continue?"
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 ""
languages/breadcrumb_navxt-it_IT.mo CHANGED
Binary file
languages/breadcrumb_navxt-it_IT.po CHANGED
@@ -7,8 +7,8 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: breadcrumb-navxt\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
10
- "POT-Creation-Date: 2010-05-09 01:08+0000\n"
11
- "PO-Revision-Date: 2010-05-10 22:03+0100\n"
12
  "Last-Translator: Luca Camellini <luccame@gmail.com>\n"
13
  "Language-Team: luccame <luccame@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
@@ -22,513 +22,529 @@ msgstr ""
22
  msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
23
  msgstr "La versione di PHP in uso è obsoleta, si prega di eseguire l'aggiornamento ad una versione più recente. La tua versione è %s, questo plugin richiede la %s"
24
 
25
- #: breadcrumb_navxt_admin.php:110
26
  msgid "Insufficient privileges to proceed."
27
  msgstr "Permessi insufficienti per procedere"
28
 
29
- #: breadcrumb_navxt_admin.php:135
30
- #: breadcrumb_navxt_class.php:216
31
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
32
- msgstr "<a title=\"Vai alla prima pagina dei risultati della ricerca per %title%.\" href=\"%link%\">"
 
 
 
 
 
33
 
34
- #: breadcrumb_navxt_admin.php:249
35
  msgid "Settings successfully saved."
36
- msgstr "Impostazioni salvate correttamente."
 
 
 
 
37
 
38
- #: breadcrumb_navxt_admin.php:272
39
  #, php-format
40
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
41
  msgstr "I suggerimenti per le impostazioni sono posizionati sotto le opzioni. Si prega di fare riferimento alla %sdocumentazione%s per maggiori informazioni."
42
 
43
- #: breadcrumb_navxt_admin.php:273
44
  msgid "Go to the Breadcrumb NavXT online documentation"
45
  msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
46
 
47
- #: breadcrumb_navxt_admin.php:327
48
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
49
- msgstr "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte con i valori predefiniti. Sei sicuro di voler continuare?"
50
-
51
- #: breadcrumb_navxt_admin.php:330
52
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
53
- msgstr "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte con i valori importati. Sei sicuro di voler continuare?"
54
-
55
- #: breadcrumb_navxt_admin.php:381
56
- #: mtekk_admin_class.php:403
57
  msgid "Import"
58
  msgstr "Importa"
59
 
60
- #: breadcrumb_navxt_admin.php:381
61
- #: mtekk_admin_class.php:404
62
  msgid "Export"
63
  msgstr "Esporta"
64
 
65
- #: breadcrumb_navxt_admin.php:381
66
- #: mtekk_admin_class.php:405
67
  msgid "Reset"
68
  msgstr "Reimposta"
69
 
70
- #: breadcrumb_navxt_admin.php:405
71
  msgid "Breadcrumb NavXT Settings"
72
  msgstr "Impostazioni di Breadcrumb NavXT"
73
 
74
- #: breadcrumb_navxt_admin.php:413
75
  msgid "General"
76
  msgstr "Generale"
77
 
78
- #: breadcrumb_navxt_admin.php:416
79
  msgid "Breadcrumb Separator"
80
  msgstr "Separatore delle breadcrumb"
81
 
82
- #: breadcrumb_navxt_admin.php:416
83
  msgid "Placed in between each breadcrumb."
84
  msgstr "Inserito tra ogni breadcrumb."
85
 
86
- #: breadcrumb_navxt_admin.php:417
87
  msgid "Breadcrumb Max Title Length"
88
  msgstr "Lunghezza massima titolo delle breadcrumb"
89
 
90
- #: breadcrumb_navxt_admin.php:421
91
  msgid "Home Breadcrumb"
92
  msgstr "Breadcrumb della Home Page"
93
 
94
- #: breadcrumb_navxt_admin.php:426
95
  msgid "Place the home breadcrumb in the trail."
96
  msgstr "Inserisci la Breadcrumb per la Home Page nel percorso."
97
 
98
- #: breadcrumb_navxt_admin.php:431
99
  msgid "Home Title: "
100
  msgstr "Titolo Home:"
101
 
102
- #: breadcrumb_navxt_admin.php:439
103
  msgid "Blog Breadcrumb"
104
  msgstr "Breadcrumb del Blog"
105
 
106
- #: breadcrumb_navxt_admin.php:439
107
  msgid "Place the blog breadcrumb in the trail."
108
  msgstr "Inserisci la Breadcrumb per il Blog nel percorso."
109
 
110
- #: breadcrumb_navxt_admin.php:440
111
  msgid "Home Prefix"
112
  msgstr "Prefisso Home"
113
 
114
- #: breadcrumb_navxt_admin.php:441
115
  msgid "Home Suffix"
116
  msgstr "Suffisso Home"
117
 
118
- #: breadcrumb_navxt_admin.php:442
119
  msgid "Home Anchor"
120
  msgstr "Collegamento Home"
121
 
122
- #: breadcrumb_navxt_admin.php:442
123
  msgid "The anchor template for the home breadcrumb."
124
  msgstr "Template collegamento per la Home Breadcrumb."
125
 
126
- #: breadcrumb_navxt_admin.php:443
127
  msgid "Blog Anchor"
128
  msgstr "Collegamento Blog"
129
 
130
- #: breadcrumb_navxt_admin.php:443
131
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
132
  msgstr "Template collegamento per la Blog Breadcrumb, usato solo in ambienti con pagina iniziale statica."
133
 
134
- #: breadcrumb_navxt_admin.php:448
135
  msgid "Current Item"
136
  msgstr "Voce corrente"
137
 
138
- #: breadcrumb_navxt_admin.php:451
139
  msgid "Link Current Item"
140
  msgstr "Collegamento voce corrente"
141
 
142
- #: breadcrumb_navxt_admin.php:451
143
  msgid "Yes"
144
  msgstr "S&igrave;"
145
 
146
- #: breadcrumb_navxt_admin.php:452
147
  msgid "Current Item Prefix"
148
  msgstr "Prefisso voce corrente"
149
 
150
- #: breadcrumb_navxt_admin.php:452
151
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
152
  msgstr "Questo &egrave; sempre inserito davanti all'ultima breadcrumb del percorso, prima di qualsiasi altro prefisso della breadcrumb."
153
 
154
- #: breadcrumb_navxt_admin.php:453
155
  msgid "Current Item Suffix"
156
  msgstr "Suffisso della voce corrente"
157
 
158
- #: breadcrumb_navxt_admin.php:453
159
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
160
  msgstr "Questo è sempre inserito dopo l'ultima breadcrumb del percorso, e dopo qualsiasi altro suffisso della breadcrumb."
161
 
162
- #: breadcrumb_navxt_admin.php:454
163
  msgid "Current Item Anchor"
164
  msgstr "Collegamento della voce corrente"
165
 
166
- #: breadcrumb_navxt_admin.php:454
167
  msgid "The anchor template for current item breadcrumbs."
168
  msgstr "Template collegamento per le breadcrumb della voce corrente."
169
 
170
- #: breadcrumb_navxt_admin.php:455
171
  msgid "Paged Breadcrumb"
172
  msgstr "Breadcrumb paginata"
173
 
174
- #: breadcrumb_navxt_admin.php:455
175
  msgid "Include the paged breadcrumb in the breadcrumb trail."
176
  msgstr "Includi la breadcrumb paginata nel percorso."
177
 
178
- #: breadcrumb_navxt_admin.php:455
179
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
180
  msgstr "Indica che l'utente si trova su una pagina diversa dalla prima negli elenchi di pagine o articoli."
181
 
182
- #: breadcrumb_navxt_admin.php:456
183
  msgid "Paged Prefix"
184
  msgstr "Prefisso paginato"
185
 
186
- #: breadcrumb_navxt_admin.php:457
187
  msgid "Paged Suffix"
188
  msgstr "Suffisso paginato"
189
 
190
- #: breadcrumb_navxt_admin.php:462
191
  msgid "Posts &amp; Pages"
192
  msgstr "Articoli &amp; Pagine"
193
 
194
- #: breadcrumb_navxt_admin.php:465
195
  msgid "Post Prefix"
196
  msgstr "Prefisso Articolo"
197
 
198
- #: breadcrumb_navxt_admin.php:466
199
  msgid "Post Suffix"
200
  msgstr "Suffisso Articolo"
201
 
202
- #: breadcrumb_navxt_admin.php:467
203
  msgid "Post Anchor"
204
  msgstr "Collegamento Articolo"
205
 
206
- #: breadcrumb_navxt_admin.php:467
207
  msgid "The anchor template for post breadcrumbs."
208
  msgstr "Template collegamento per le breadcrumb di articoli."
209
 
210
- #: breadcrumb_navxt_admin.php:468
211
  msgid "Post Taxonomy Display"
212
  msgstr "Visualizzazione Tassonomia Articolo"
213
 
214
- #: breadcrumb_navxt_admin.php:468
215
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
216
  msgstr "Mostra la tassonomia che riconduce ad un articolo nel percorso di breadcrumb."
217
 
218
- #: breadcrumb_navxt_admin.php:472
219
  msgid "Post Taxonomy"
220
  msgstr "Tassonomia Articolo"
221
 
222
- #: breadcrumb_navxt_admin.php:476
223
- #: breadcrumb_navxt_admin.php:503
224
  msgid "Categories"
225
  msgstr "Categorie"
226
 
227
- #: breadcrumb_navxt_admin.php:477
228
  msgid "Dates"
229
  msgstr "Date"
230
 
231
- #: breadcrumb_navxt_admin.php:478
232
- #: breadcrumb_navxt_admin.php:515
233
  msgid "Tags"
234
  msgstr "Tags"
235
 
236
- #: breadcrumb_navxt_admin.php:479
237
  msgid "Pages"
238
  msgstr "Pagine"
239
 
240
- #: breadcrumb_navxt_admin.php:490
 
241
  msgid "The taxonomy which the breadcrumb trail will show."
242
  msgstr "La tassonomia che sar&agrave; mostrata nel percorso di breadcrumb."
243
 
244
- #: breadcrumb_navxt_admin.php:494
245
  msgid "Page Prefix"
246
  msgstr "Prefisso Pagina"
247
 
248
- #: breadcrumb_navxt_admin.php:495
249
  msgid "Page Suffix"
250
  msgstr "Suffisso Pagina"
251
 
252
- #: breadcrumb_navxt_admin.php:496
253
  msgid "Page Anchor"
254
  msgstr "Collegamento Pagina"
255
 
256
- #: breadcrumb_navxt_admin.php:496
257
  msgid "The anchor template for page breadcrumbs."
258
  msgstr "Template collegamento per le breadcrumb di pagine."
259
 
260
- #: breadcrumb_navxt_admin.php:497
261
  msgid "Attachment Prefix"
262
  msgstr "Prefisso Allegato"
263
 
264
- #: breadcrumb_navxt_admin.php:498
265
  msgid "Attachment Suffix"
266
  msgstr "Suffisso Allegato"
267
 
268
- #: breadcrumb_navxt_admin.php:506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  msgid "Category Prefix"
270
  msgstr "Prefisso Categoria"
271
 
272
- #: breadcrumb_navxt_admin.php:506
273
  msgid "Applied before the anchor on all category breadcrumbs."
274
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs di categorie."
275
 
276
- #: breadcrumb_navxt_admin.php:507
277
  msgid "Category Suffix"
278
  msgstr "Suffisso Categoria"
279
 
280
- #: breadcrumb_navxt_admin.php:507
281
  msgid "Applied after the anchor on all category breadcrumbs."
282
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di categorie."
283
 
284
- #: breadcrumb_navxt_admin.php:508
285
  msgid "Category Anchor"
286
  msgstr "Collegamento Categoria"
287
 
288
- #: breadcrumb_navxt_admin.php:508
289
  msgid "The anchor template for category breadcrumbs."
290
  msgstr "Template collegamento per le breadcrumb di categorie."
291
 
292
- #: breadcrumb_navxt_admin.php:509
293
  msgid "Archive by Category Prefix"
294
  msgstr "Prefisso Archivio per categoria"
295
 
296
- #: breadcrumb_navxt_admin.php:509
297
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
298
  msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
299
 
300
- #: breadcrumb_navxt_admin.php:510
301
  msgid "Archive by Category Suffix"
302
  msgstr "Suffisso Archivio per categoria"
303
 
304
- #: breadcrumb_navxt_admin.php:510
305
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
306
  msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
307
 
308
- #: breadcrumb_navxt_admin.php:518
309
  msgid "Tag Prefix"
310
  msgstr "Prefisso Tag"
311
 
312
- #: breadcrumb_navxt_admin.php:518
313
  msgid "Applied before the anchor on all tag breadcrumbs."
314
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs di tag."
315
 
316
- #: breadcrumb_navxt_admin.php:519
317
  msgid "Tag Suffix"
318
  msgstr "Suffisso Tag"
319
 
320
- #: breadcrumb_navxt_admin.php:519
321
  msgid "Applied after the anchor on all tag breadcrumbs."
322
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di tag."
323
 
324
- #: breadcrumb_navxt_admin.php:520
325
  msgid "Tag Anchor"
326
  msgstr "Collegamento Tag"
327
 
328
- #: breadcrumb_navxt_admin.php:520
329
  msgid "The anchor template for tag breadcrumbs."
330
  msgstr "Template collegamento per le breadcrumb di tag."
331
 
332
- #: breadcrumb_navxt_admin.php:521
333
  msgid "Archive by Tag Prefix"
334
  msgstr "Prefisso Archivio per tag"
335
 
336
- #: breadcrumb_navxt_admin.php:521
337
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
338
  msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
339
 
340
- #: breadcrumb_navxt_admin.php:522
341
  msgid "Archive by Tag Suffix"
342
  msgstr "Suffisso Archivio per tag"
343
 
344
- #: breadcrumb_navxt_admin.php:522
345
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
346
  msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
347
 
348
- #: breadcrumb_navxt_admin.php:550
349
- #, php-format
350
- msgid "%s Prefix"
351
- msgstr "Prefisso %s "
352
-
353
- #: breadcrumb_navxt_admin.php:550
354
  #, php-format
355
  msgid "Applied before the anchor on all %s breadcrumbs."
356
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs di %s."
357
 
358
- #: breadcrumb_navxt_admin.php:551
359
- #, php-format
360
- msgid "%s Suffix"
361
- msgstr "Suffisso %s"
362
-
363
- #: breadcrumb_navxt_admin.php:551
364
  #, php-format
365
  msgid "Applied after the anchor on all %s breadcrumbs."
366
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di %s."
367
 
368
- #: breadcrumb_navxt_admin.php:552
369
- #, php-format
370
- msgid "%s Anchor"
371
- msgstr "Collegamento %s"
372
-
373
- #: breadcrumb_navxt_admin.php:552
374
- #, php-format
375
- msgid "The anchor template for %s breadcrumbs."
376
- msgstr "Template collegamento per le breadcrumb di %s."
377
-
378
- #: breadcrumb_navxt_admin.php:553
379
  #, php-format
380
  msgid "Archive by %s Prefix"
381
  msgstr "Prefisso Archivio per %s"
382
 
383
- #: breadcrumb_navxt_admin.php:553
384
  #, php-format
385
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
386
  msgstr "Applicato prima del titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
387
 
388
- #: breadcrumb_navxt_admin.php:554
389
  #, php-format
390
  msgid "Archive by %s Suffix"
391
  msgstr "Suffisso Archivio per %s"
392
 
393
- #: breadcrumb_navxt_admin.php:554
394
  #, php-format
395
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
396
  msgstr "Applicato dopo il titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
397
 
398
- #: breadcrumb_navxt_admin.php:563
399
  msgid "Date Archives"
400
  msgstr "Archivi per Data"
401
 
402
- #: breadcrumb_navxt_admin.php:566
403
  msgid "Date Anchor"
404
  msgstr "Collegameto Date"
405
 
406
- #: breadcrumb_navxt_admin.php:566
407
  msgid "The anchor template for date breadcrumbs."
408
  msgstr "Template collegamento per le breadcrumb per data."
409
 
410
- #: breadcrumb_navxt_admin.php:567
411
  msgid "Archive by Date Prefix"
412
  msgstr "Prefisso Archivi per Data"
413
 
414
- #: breadcrumb_navxt_admin.php:567
415
  msgid "Applied before the anchor on all date breadcrumbs."
416
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs per data."
417
 
418
- #: breadcrumb_navxt_admin.php:568
419
- #: breadcrumb_navxt_admin.php:578
420
  msgid "Archive by Date Suffix"
421
  msgstr "Suffisso Archivi per Data"
422
 
423
- #: breadcrumb_navxt_admin.php:568
424
- #: breadcrumb_navxt_admin.php:578
425
  msgid "Applied after the anchor on all date breadcrumbs."
426
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs per data."
427
 
428
- #: breadcrumb_navxt_admin.php:573
429
  msgid "Miscellaneous"
430
  msgstr "Varie"
431
 
432
- #: breadcrumb_navxt_admin.php:576
433
  msgid "Author Prefix"
434
  msgstr "Prefisso Autore"
435
 
436
- #: breadcrumb_navxt_admin.php:577
437
  msgid "Author Suffix"
438
  msgstr "Suffisso Autore"
439
 
440
- #: breadcrumb_navxt_admin.php:579
441
  msgid "Author Display Format"
442
  msgstr "Formato visualizzazione autore"
443
 
444
- #: breadcrumb_navxt_admin.php:579
445
  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."
446
  msgstr "display_name usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
447
 
448
- #: breadcrumb_navxt_admin.php:580
449
  msgid "Search Prefix"
450
  msgstr "Prefisso Ricerca"
451
 
452
- #: breadcrumb_navxt_admin.php:581
453
  msgid "Search Suffix"
454
  msgstr "Suffisso Ricerca"
455
 
456
- #: breadcrumb_navxt_admin.php:582
457
  msgid "Search Anchor"
458
  msgstr "Collegamento Ricerca"
459
 
460
- #: breadcrumb_navxt_admin.php:582
461
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
462
  msgstr "Template collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce pi&ugrave; pagine di risultati."
463
 
464
- #: breadcrumb_navxt_admin.php:583
465
  msgid "404 Title"
466
  msgstr "Titolo 404"
467
 
468
- #: breadcrumb_navxt_admin.php:584
469
  msgid "404 Prefix"
470
  msgstr "Prefisso 404"
471
 
472
- #: breadcrumb_navxt_admin.php:585
473
  msgid "404 Suffix"
474
  msgstr "Suffisso 404"
475
 
476
- #: breadcrumb_navxt_admin.php:590
477
  msgid "Save Changes"
478
  msgstr "Salva modifiche"
479
 
480
- #: breadcrumb_navxt_class.php:149
481
  msgid "Blog"
482
  msgstr "Blog"
483
 
484
- #: breadcrumb_navxt_class.php:151
485
- #: breadcrumb_navxt_class.php:155
486
- #: breadcrumb_navxt_class.php:179
487
- #: breadcrumb_navxt_class.php:193
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
489
- msgstr "<a title=\"Vai a %title%.\" href=\"%link%\">"
490
-
491
- #: breadcrumb_navxt_class.php:168
492
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
493
  msgstr "<a title=\"Ricarica la pagina corrente.\" href=\"%link%\">"
494
 
495
- #: breadcrumb_navxt_class.php:209
496
  msgid "404"
497
  msgstr "404"
498
 
499
- #: breadcrumb_navxt_class.php:212
500
  msgid "Search results for &#39;"
501
  msgstr "Risultati della ricerca per &#39;"
502
 
503
- #: breadcrumb_navxt_class.php:223
 
 
 
 
504
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
505
  msgstr "<a title=\"Vai agli archivi del tag %title%.\" href=\"%link%\">"
506
 
507
- #: breadcrumb_navxt_class.php:226
508
  msgid "Articles by: "
509
  msgstr "Articoli di: "
510
 
511
- #: breadcrumb_navxt_class.php:230
512
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
513
  msgstr "<a title=\"Vai alla prima pagina degli articoli per %title%.\" href=\"%link%\">"
514
 
515
- #: breadcrumb_navxt_class.php:239
516
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
517
  msgstr "<a title=\"Vai agli archivi della categoria %title%.\" href=\"%link%\">"
518
 
519
- #: breadcrumb_navxt_class.php:242
520
  msgid "Archive by category &#39;"
521
  msgstr "Archivio della categoria &#39;"
522
 
523
- #: breadcrumb_navxt_class.php:246
524
  msgid "Archive by tag &#39;"
525
  msgstr "Archivio del tag &#39;"
526
 
527
- #: breadcrumb_navxt_class.php:249
528
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
529
  msgstr "<a title=\"Vai agli archivi %title%.\" href=\"%link%\">"
530
 
531
- #: breadcrumb_navxt_class.php:500
532
  msgid "Untagged"
533
  msgstr "Non taggato"
534
 
@@ -536,56 +552,93 @@ msgstr "Non taggato"
536
  msgid "Adds a breadcrumb trail to your sidebar"
537
  msgstr "Aggiunge una breadcrumb alla tua barra laterale"
538
 
539
- #: breadcrumb_navxt_widget.php:66
540
  msgid "Title:"
541
  msgstr "Titolo:"
542
 
543
- #: breadcrumb_navxt_widget.php:71
544
  msgid "Output trail as a list"
545
  msgstr "Mostra breadcrumb come lista"
546
 
547
- #: breadcrumb_navxt_widget.php:73
548
  msgid "Link the breadcrumbs"
549
  msgstr "Collega le breadcrumb"
550
 
551
- #: breadcrumb_navxt_widget.php:75
552
  msgid "Reverse the order of the trail"
553
  msgstr "Inverti l'ordine del percorso"
554
 
555
- #: mtekk_admin_class.php:137
 
 
 
 
 
 
 
 
556
  msgid "Settings"
557
- msgstr "Impostazioni"
558
 
559
- #: mtekk_admin_class.php:259
560
  msgid "Settings successfully imported from the uploaded file."
561
- msgstr "Impostazioni importate correttamente dal file caricato."
 
 
 
 
562
 
563
- #: mtekk_admin_class.php:264
564
  msgid "Importing settings from file failed."
565
- msgstr "Importazione delle impostazioni dal file fallita."
566
 
567
- #: mtekk_admin_class.php:283
568
  msgid "Settings successfully reset to the default values."
569
- msgstr "Impostazioni correttamente riportate ai valori predefiniti."
 
 
 
 
 
 
 
 
 
 
 
 
570
 
571
- #: mtekk_admin_class.php:313
572
  #, php-format
573
  msgid "Get help with \"%s\""
574
  msgstr "Trova aiuto per \"%s\""
575
 
576
- #: mtekk_admin_class.php:394
577
  msgid "Import/Export/Reset Settings"
578
- msgstr "Importa/Esporta/Azzera impostazioni"
579
 
580
- #: mtekk_admin_class.php:395
581
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
582
- msgstr "Importa le impostazioni da un file XML, esporta le impostazioni attuali su un file XML, o reimposta le opzioni predefinite."
583
 
584
- #: mtekk_admin_class.php:398
585
  msgid "Settings File"
586
- msgstr "File delle impostazioni"
587
 
588
- #: mtekk_admin_class.php:401
589
  msgid "Select a XML settings file to upload and import settings from."
590
- msgstr "Seleziona un file XML da caricare per importare le impostazioni."
 
 
 
 
 
 
 
 
 
 
 
 
 
591
 
7
  msgstr ""
8
  "Project-Id-Version: breadcrumb-navxt\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
10
+ "POT-Creation-Date: 2010-08-13 02:16+0000\n"
11
+ "PO-Revision-Date: 2010-08-21 06:03+0100\n"
12
  "Last-Translator: Luca Camellini <luccame@gmail.com>\n"
13
  "Language-Team: luccame <luccame@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
22
  msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
23
  msgstr "La versione di PHP in uso è obsoleta, si prega di eseguire l'aggiornamento ad una versione più recente. La tua versione è %s, questo plugin richiede la %s"
24
 
25
+ #: breadcrumb_navxt_admin.php:112
26
  msgid "Insufficient privileges to proceed."
27
  msgstr "Permessi insufficienti per procedere"
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=\"Vai a %title%.\" href=\"%link%\">"
38
 
39
+ #: breadcrumb_navxt_admin.php:349
40
  msgid "Settings successfully saved."
41
+ msgstr "Opzioni salvate correttamente."
42
+
43
+ #: breadcrumb_navxt_admin.php:349
44
+ msgid "Undo the options save."
45
+ msgstr "Annulla il salvataggio delle opzioni."
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 "I suggerimenti per le impostazioni sono posizionati sotto le opzioni. Si prega di fare riferimento alla %sdocumentazione%s per maggiori informazioni."
51
 
52
+ #: breadcrumb_navxt_admin.php:373
53
  msgid "Go to the Breadcrumb NavXT online documentation"
54
  msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
55
 
56
+ #: breadcrumb_navxt_admin.php:459
57
+ #: mtekk_admin_class.php:444
 
 
 
 
 
 
 
 
58
  msgid "Import"
59
  msgstr "Importa"
60
 
61
+ #: breadcrumb_navxt_admin.php:459
62
+ #: mtekk_admin_class.php:445
63
  msgid "Export"
64
  msgstr "Esporta"
65
 
66
+ #: breadcrumb_navxt_admin.php:459
67
+ #: mtekk_admin_class.php:446
68
  msgid "Reset"
69
  msgstr "Reimposta"
70
 
71
+ #: breadcrumb_navxt_admin.php:481
72
  msgid "Breadcrumb NavXT Settings"
73
  msgstr "Impostazioni di Breadcrumb NavXT"
74
 
75
+ #: breadcrumb_navxt_admin.php:489
76
  msgid "General"
77
  msgstr "Generale"
78
 
79
+ #: breadcrumb_navxt_admin.php:492
80
  msgid "Breadcrumb Separator"
81
  msgstr "Separatore delle breadcrumb"
82
 
83
+ #: breadcrumb_navxt_admin.php:492
84
  msgid "Placed in between each breadcrumb."
85
  msgstr "Inserito tra ogni breadcrumb."
86
 
87
+ #: breadcrumb_navxt_admin.php:493
88
  msgid "Breadcrumb Max Title Length"
89
  msgstr "Lunghezza massima titolo delle breadcrumb"
90
 
91
+ #: breadcrumb_navxt_admin.php:497
92
  msgid "Home Breadcrumb"
93
  msgstr "Breadcrumb della Home Page"
94
 
95
+ #: breadcrumb_navxt_admin.php:502
96
  msgid "Place the home breadcrumb in the trail."
97
  msgstr "Inserisci la Breadcrumb per la Home Page nel percorso."
98
 
99
+ #: breadcrumb_navxt_admin.php:507
100
  msgid "Home Title: "
101
  msgstr "Titolo Home:"
102
 
103
+ #: breadcrumb_navxt_admin.php:515
104
  msgid "Blog Breadcrumb"
105
  msgstr "Breadcrumb del Blog"
106
 
107
+ #: breadcrumb_navxt_admin.php:515
108
  msgid "Place the blog breadcrumb in the trail."
109
  msgstr "Inserisci la Breadcrumb per il Blog nel percorso."
110
 
111
+ #: breadcrumb_navxt_admin.php:516
112
  msgid "Home Prefix"
113
  msgstr "Prefisso Home"
114
 
115
+ #: breadcrumb_navxt_admin.php:517
116
  msgid "Home Suffix"
117
  msgstr "Suffisso Home"
118
 
119
+ #: breadcrumb_navxt_admin.php:518
120
  msgid "Home Anchor"
121
  msgstr "Collegamento Home"
122
 
123
+ #: breadcrumb_navxt_admin.php:518
124
  msgid "The anchor template for the home breadcrumb."
125
  msgstr "Template collegamento per la Home Breadcrumb."
126
 
127
+ #: breadcrumb_navxt_admin.php:519
128
  msgid "Blog Anchor"
129
  msgstr "Collegamento 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 "Template collegamento per la Blog Breadcrumb, usato solo in ambienti con pagina iniziale statica."
134
 
135
+ #: breadcrumb_navxt_admin.php:524
136
  msgid "Current Item"
137
  msgstr "Voce corrente"
138
 
139
+ #: breadcrumb_navxt_admin.php:527
140
  msgid "Link Current Item"
141
  msgstr "Collegamento voce corrente"
142
 
143
+ #: breadcrumb_navxt_admin.php:527
144
  msgid "Yes"
145
  msgstr "S&igrave;"
146
 
147
+ #: breadcrumb_navxt_admin.php:528
148
  msgid "Current Item Prefix"
149
  msgstr "Prefisso voce corrente"
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 "Questo &egrave; sempre inserito davanti all'ultima breadcrumb del percorso, prima di qualsiasi altro prefisso della breadcrumb."
154
 
155
+ #: breadcrumb_navxt_admin.php:529
156
  msgid "Current Item Suffix"
157
  msgstr "Suffisso della voce corrente"
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 "Questo è sempre inserito dopo l'ultima breadcrumb del percorso, e dopo qualsiasi altro suffisso della breadcrumb."
162
 
163
+ #: breadcrumb_navxt_admin.php:530
164
  msgid "Current Item Anchor"
165
  msgstr "Collegamento della voce corrente"
166
 
167
+ #: breadcrumb_navxt_admin.php:530
168
  msgid "The anchor template for current item breadcrumbs."
169
  msgstr "Template collegamento per le breadcrumb della voce corrente."
170
 
171
+ #: breadcrumb_navxt_admin.php:531
172
  msgid "Paged Breadcrumb"
173
  msgstr "Breadcrumb paginata"
174
 
175
+ #: breadcrumb_navxt_admin.php:531
176
  msgid "Include the paged breadcrumb in the breadcrumb trail."
177
  msgstr "Includi la breadcrumb paginata nel percorso."
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 "Indica che l'utente si trova su una pagina diversa dalla prima negli elenchi di pagine o articoli."
182
 
183
+ #: breadcrumb_navxt_admin.php:532
184
  msgid "Paged Prefix"
185
  msgstr "Prefisso paginato"
186
 
187
+ #: breadcrumb_navxt_admin.php:533
188
  msgid "Paged Suffix"
189
  msgstr "Suffisso paginato"
190
 
191
+ #: breadcrumb_navxt_admin.php:538
192
  msgid "Posts &amp; Pages"
193
  msgstr "Articoli &amp; Pagine"
194
 
195
+ #: breadcrumb_navxt_admin.php:541
196
  msgid "Post Prefix"
197
  msgstr "Prefisso Articolo"
198
 
199
+ #: breadcrumb_navxt_admin.php:542
200
  msgid "Post Suffix"
201
  msgstr "Suffisso Articolo"
202
 
203
+ #: breadcrumb_navxt_admin.php:543
204
  msgid "Post Anchor"
205
  msgstr "Collegamento Articolo"
206
 
207
+ #: breadcrumb_navxt_admin.php:543
208
  msgid "The anchor template for post breadcrumbs."
209
  msgstr "Template collegamento per le breadcrumb di articoli."
210
 
211
+ #: breadcrumb_navxt_admin.php:544
212
  msgid "Post Taxonomy Display"
213
  msgstr "Visualizzazione Tassonomia Articolo"
214
 
215
+ #: breadcrumb_navxt_admin.php:544
216
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
217
  msgstr "Mostra la tassonomia che riconduce ad un articolo nel percorso di breadcrumb."
218
 
219
+ #: breadcrumb_navxt_admin.php:548
220
  msgid "Post Taxonomy"
221
  msgstr "Tassonomia Articolo"
222
 
223
+ #: breadcrumb_navxt_admin.php:552
224
+ #: breadcrumb_navxt_admin.php:650
225
  msgid "Categories"
226
  msgstr "Categorie"
227
 
228
+ #: breadcrumb_navxt_admin.php:553
229
  msgid "Dates"
230
  msgstr "Date"
231
 
232
+ #: breadcrumb_navxt_admin.php:554
233
+ #: breadcrumb_navxt_admin.php:662
234
  msgid "Tags"
235
  msgstr "Tags"
236
 
237
+ #: breadcrumb_navxt_admin.php:555
238
  msgid "Pages"
239
  msgstr "Pagine"
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 "La tassonomia che sar&agrave; mostrata nel percorso di breadcrumb."
245
 
246
+ #: breadcrumb_navxt_admin.php:570
247
  msgid "Page Prefix"
248
  msgstr "Prefisso Pagina"
249
 
250
+ #: breadcrumb_navxt_admin.php:571
251
  msgid "Page Suffix"
252
  msgstr "Suffisso Pagina"
253
 
254
+ #: breadcrumb_navxt_admin.php:572
255
  msgid "Page Anchor"
256
  msgstr "Collegamento Pagina"
257
 
258
+ #: breadcrumb_navxt_admin.php:572
259
  msgid "The anchor template for page breadcrumbs."
260
  msgstr "Template collegamento per le breadcrumb di pagine."
261
 
262
+ #: breadcrumb_navxt_admin.php:573
263
  msgid "Attachment Prefix"
264
  msgstr "Prefisso Allegato"
265
 
266
+ #: breadcrumb_navxt_admin.php:574
267
  msgid "Attachment Suffix"
268
  msgstr "Suffisso Allegato"
269
 
270
+ #: breadcrumb_navxt_admin.php:616
271
+ #: breadcrumb_navxt_admin.php:699
272
+ #, php-format
273
+ msgid "%s Prefix"
274
+ msgstr "Prefisso %s "
275
+
276
+ #: breadcrumb_navxt_admin.php:617
277
+ #: breadcrumb_navxt_admin.php:700
278
+ #, php-format
279
+ msgid "%s Suffix"
280
+ msgstr "Suffisso %s"
281
+
282
+ #: breadcrumb_navxt_admin.php:618
283
+ #: breadcrumb_navxt_admin.php:701
284
+ #, php-format
285
+ msgid "%s Anchor"
286
+ msgstr "Collegamento %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 "Template collegamento per le breadcrumb di %s."
293
+
294
+ #: breadcrumb_navxt_admin.php:622
295
+ #, php-format
296
+ msgid "%s Taxonomy Display"
297
+ msgstr "Mostra Tassonomia %s"
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 "Mostra la tassonomia che riconduce a %s nel percorso breadcrumb."
303
+
304
+ #: breadcrumb_navxt_admin.php:626
305
+ #, php-format
306
+ msgid "%s Taxonomy"
307
+ msgstr "Tassonomia %s"
308
+
309
+ #: breadcrumb_navxt_admin.php:653
310
  msgid "Category Prefix"
311
  msgstr "Prefisso Categoria"
312
 
313
+ #: breadcrumb_navxt_admin.php:653
314
  msgid "Applied before the anchor on all category breadcrumbs."
315
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs di categorie."
316
 
317
+ #: breadcrumb_navxt_admin.php:654
318
  msgid "Category Suffix"
319
  msgstr "Suffisso Categoria"
320
 
321
+ #: breadcrumb_navxt_admin.php:654
322
  msgid "Applied after the anchor on all category breadcrumbs."
323
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di categorie."
324
 
325
+ #: breadcrumb_navxt_admin.php:655
326
  msgid "Category Anchor"
327
  msgstr "Collegamento Categoria"
328
 
329
+ #: breadcrumb_navxt_admin.php:655
330
  msgid "The anchor template for category breadcrumbs."
331
  msgstr "Template collegamento per le breadcrumb di categorie."
332
 
333
+ #: breadcrumb_navxt_admin.php:656
334
  msgid "Archive by Category Prefix"
335
  msgstr "Prefisso Archivio per categoria"
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 "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
340
 
341
+ #: breadcrumb_navxt_admin.php:657
342
  msgid "Archive by Category Suffix"
343
  msgstr "Suffisso Archivio per categoria"
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 "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
348
 
349
+ #: breadcrumb_navxt_admin.php:665
350
  msgid "Tag Prefix"
351
  msgstr "Prefisso Tag"
352
 
353
+ #: breadcrumb_navxt_admin.php:665
354
  msgid "Applied before the anchor on all tag breadcrumbs."
355
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs di tag."
356
 
357
+ #: breadcrumb_navxt_admin.php:666
358
  msgid "Tag Suffix"
359
  msgstr "Suffisso Tag"
360
 
361
+ #: breadcrumb_navxt_admin.php:666
362
  msgid "Applied after the anchor on all tag breadcrumbs."
363
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di tag."
364
 
365
+ #: breadcrumb_navxt_admin.php:667
366
  msgid "Tag Anchor"
367
  msgstr "Collegamento Tag"
368
 
369
+ #: breadcrumb_navxt_admin.php:667
370
  msgid "The anchor template for tag breadcrumbs."
371
  msgstr "Template collegamento per le breadcrumb di tag."
372
 
373
+ #: breadcrumb_navxt_admin.php:668
374
  msgid "Archive by Tag Prefix"
375
  msgstr "Prefisso Archivio per tag"
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 "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
380
 
381
+ #: breadcrumb_navxt_admin.php:669
382
  msgid "Archive by Tag Suffix"
383
  msgstr "Suffisso Archivio per tag"
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 "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
388
 
389
+ #: breadcrumb_navxt_admin.php:699
 
 
 
 
 
390
  #, php-format
391
  msgid "Applied before the anchor on all %s breadcrumbs."
392
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs di %s."
393
 
394
+ #: breadcrumb_navxt_admin.php:700
 
 
 
 
 
395
  #, php-format
396
  msgid "Applied after the anchor on all %s breadcrumbs."
397
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di %s."
398
 
399
+ #: breadcrumb_navxt_admin.php:702
 
 
 
 
 
 
 
 
 
 
400
  #, php-format
401
  msgid "Archive by %s Prefix"
402
  msgstr "Prefisso Archivio per %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 "Applicato prima del titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
408
 
409
+ #: breadcrumb_navxt_admin.php:703
410
  #, php-format
411
  msgid "Archive by %s Suffix"
412
  msgstr "Suffisso Archivio per %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 "Applicato dopo il titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
418
 
419
+ #: breadcrumb_navxt_admin.php:712
420
  msgid "Date Archives"
421
  msgstr "Archivi per Data"
422
 
423
+ #: breadcrumb_navxt_admin.php:715
424
  msgid "Date Anchor"
425
  msgstr "Collegameto Date"
426
 
427
+ #: breadcrumb_navxt_admin.php:715
428
  msgid "The anchor template for date breadcrumbs."
429
  msgstr "Template collegamento per le breadcrumb per data."
430
 
431
+ #: breadcrumb_navxt_admin.php:716
432
  msgid "Archive by Date Prefix"
433
  msgstr "Prefisso Archivi per Data"
434
 
435
+ #: breadcrumb_navxt_admin.php:716
436
  msgid "Applied before the anchor on all date breadcrumbs."
437
  msgstr "Applicato prima del collegamento per tutte le breadcrumbs per data."
438
 
439
+ #: breadcrumb_navxt_admin.php:717
 
440
  msgid "Archive by Date Suffix"
441
  msgstr "Suffisso Archivi per Data"
442
 
443
+ #: breadcrumb_navxt_admin.php:717
 
444
  msgid "Applied after the anchor on all date breadcrumbs."
445
  msgstr "Applicato dopo il collegamento per tutte le breadcrumbs per data."
446
 
447
+ #: breadcrumb_navxt_admin.php:722
448
  msgid "Miscellaneous"
449
  msgstr "Varie"
450
 
451
+ #: breadcrumb_navxt_admin.php:725
452
  msgid "Author Prefix"
453
  msgstr "Prefisso Autore"
454
 
455
+ #: breadcrumb_navxt_admin.php:726
456
  msgid "Author Suffix"
457
  msgstr "Suffisso Autore"
458
 
459
+ #: breadcrumb_navxt_admin.php:727
460
  msgid "Author Display Format"
461
  msgstr "Formato visualizzazione autore"
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 usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
466
 
467
+ #: breadcrumb_navxt_admin.php:728
468
  msgid "Search Prefix"
469
  msgstr "Prefisso Ricerca"
470
 
471
+ #: breadcrumb_navxt_admin.php:729
472
  msgid "Search Suffix"
473
  msgstr "Suffisso Ricerca"
474
 
475
+ #: breadcrumb_navxt_admin.php:730
476
  msgid "Search Anchor"
477
  msgstr "Collegamento Ricerca"
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 "Template collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce pi&ugrave; pagine di risultati."
482
 
483
+ #: breadcrumb_navxt_admin.php:731
484
  msgid "404 Title"
485
  msgstr "Titolo 404"
486
 
487
+ #: breadcrumb_navxt_admin.php:732
488
  msgid "404 Prefix"
489
  msgstr "Prefisso 404"
490
 
491
+ #: breadcrumb_navxt_admin.php:733
492
  msgid "404 Suffix"
493
  msgstr "Suffisso 404"
494
 
495
+ #: breadcrumb_navxt_admin.php:738
496
  msgid "Save Changes"
497
  msgstr "Salva modifiche"
498
 
499
+ #: breadcrumb_navxt_class.php:154
500
  msgid "Blog"
501
  msgstr "Blog"
502
 
503
+ #: breadcrumb_navxt_class.php:173
 
 
 
 
 
 
 
504
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
505
  msgstr "<a title=\"Ricarica la pagina corrente.\" href=\"%link%\">"
506
 
507
+ #: breadcrumb_navxt_class.php:214
508
  msgid "404"
509
  msgstr "404"
510
 
511
+ #: breadcrumb_navxt_class.php:217
512
  msgid "Search results for &#39;"
513
  msgstr "Risultati della ricerca per &#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=\"Vai alla prima pagina dei risultati della ricerca per %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=\"Vai agli archivi del tag %title%.\" href=\"%link%\">"
522
 
523
+ #: breadcrumb_navxt_class.php:231
524
  msgid "Articles by: "
525
  msgstr "Articoli di: "
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=\"Vai alla prima pagina degli articoli per %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=\"Vai agli archivi della categoria %title%.\" href=\"%link%\">"
534
 
535
+ #: breadcrumb_navxt_class.php:247
536
  msgid "Archive by category &#39;"
537
  msgstr "Archivio della categoria &#39;"
538
 
539
+ #: breadcrumb_navxt_class.php:251
540
  msgid "Archive by tag &#39;"
541
  msgstr "Archivio del tag &#39;"
542
 
543
+ #: breadcrumb_navxt_class.php:254
544
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
545
  msgstr "<a title=\"Vai agli archivi %title%.\" href=\"%link%\">"
546
 
547
+ #: breadcrumb_navxt_class.php:425
548
  msgid "Untagged"
549
  msgstr "Non taggato"
550
 
552
  msgid "Adds a breadcrumb trail to your sidebar"
553
  msgstr "Aggiunge una breadcrumb alla tua barra laterale"
554
 
555
+ #: breadcrumb_navxt_widget.php:72
556
  msgid "Title:"
557
  msgstr "Titolo:"
558
 
559
+ #: breadcrumb_navxt_widget.php:77
560
  msgid "Output trail as a list"
561
  msgstr "Mostra breadcrumb come lista"
562
 
563
+ #: breadcrumb_navxt_widget.php:79
564
  msgid "Link the breadcrumbs"
565
  msgstr "Collega le breadcrumb"
566
 
567
+ #: breadcrumb_navxt_widget.php:81
568
  msgid "Reverse the order of the trail"
569
  msgstr "Inverti l'ordine del percorso"
570
 
571
+ #: breadcrumb_navxt_widget.php:83
572
+ msgid "Hide the trail on the front page"
573
+ msgstr "Non mostrare il percorso nella home page"
574
+
575
+ #: mtekk_admin_class.php:56
576
+ msgid "Undo"
577
+ msgstr "Annulla"
578
+
579
+ #: mtekk_admin_class.php:150
580
  msgid "Settings"
581
+ msgstr "opzioni"
582
 
583
+ #: mtekk_admin_class.php:284
584
  msgid "Settings successfully imported from the uploaded file."
585
+ msgstr "Opzioni importate correttamente dal file caricato."
586
+
587
+ #: mtekk_admin_class.php:284
588
+ msgid "Undo the options import."
589
+ msgstr "Annulla l'importazione delle opzioni."
590
 
591
+ #: mtekk_admin_class.php:289
592
  msgid "Importing settings from file failed."
593
+ msgstr "Importazione delle opzioni dal file fallita."
594
 
595
+ #: mtekk_admin_class.php:310
596
  msgid "Settings successfully reset to the default values."
597
+ msgstr "opzioni correttamente riportate ai valori predefiniti."
598
+
599
+ #: mtekk_admin_class.php:310
600
+ msgid "Undo the options reset."
601
+ msgstr "Annulla la reimpostazione delle opzioni."
602
+
603
+ #: mtekk_admin_class.php:324
604
+ msgid "Settings successfully undid the last operation."
605
+ msgstr "L'ultima operazione è stata annullata correttamente."
606
+
607
+ #: mtekk_admin_class.php:324
608
+ msgid "Undo the last undo operation."
609
+ msgstr "Annulla l'ultimo annullamento."
610
 
611
+ #: mtekk_admin_class.php:354
612
  #, php-format
613
  msgid "Get help with \"%s\""
614
  msgstr "Trova aiuto per \"%s\""
615
 
616
+ #: mtekk_admin_class.php:435
617
  msgid "Import/Export/Reset Settings"
618
+ msgstr "Importa/Esporta/Reimposta opzioni"
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 "Importa le opzioni da un file XML, esporta le opzioni attuali su un file XML, o reimposta le opzioni predefinite."
623
 
624
+ #: mtekk_admin_class.php:439
625
  msgid "Settings File"
626
+ msgstr "File delle opzioni"
627
 
628
+ #: mtekk_admin_class.php:442
629
  msgid "Select a XML settings file to upload and import settings from."
630
+ msgstr "Seleziona un file XML da caricare per importare le opzioni."
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?"
635
+ #~ msgstr ""
636
+ #~ "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte "
637
+ #~ "con i valori predefiniti. Sei sicuro di voler continuare?"
638
+ #~ msgid ""
639
+ #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
640
+ #~ "the imported values. Are you sure you want to continue?"
641
+ #~ msgstr ""
642
+ #~ "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte "
643
+ #~ "con i valori importati. Sei sicuro di voler continuare?"
644
 
languages/breadcrumb_navxt-ja.mo ADDED
Binary file
languages/breadcrumb_navxt-ja.po ADDED
@@ -0,0 +1,652 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Breadcrumb NavXT\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2010-08-18 11:59+0900\n"
6
+ "PO-Revision-Date: 2010-08-18 12:01+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"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-Language: Japanese\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-Country: JAPAN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+
19
+ #: ../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 "お使いのPHPのバージョンが古すぎます。最新バージョンにアップグレードしてください。お使いのバージョンは%sになり、このプラグインを使用するためには%s以上が必要になります。"
23
+
24
+ #: ../breadcrumb_navxt_admin.php:112
25
+ msgid "Insufficient privileges to proceed."
26
+ msgstr "実行権限がありません。"
27
+
28
+ #: ../breadcrumb_navxt_admin.php:189
29
+ #: ../breadcrumb_navxt_admin.php:280
30
+ #: ../breadcrumb_navxt_admin.php:591
31
+ #: ../breadcrumb_navxt_class.php:156
32
+ #: ../breadcrumb_navxt_class.php:160
33
+ #: ../breadcrumb_navxt_class.php:184
34
+ #: ../breadcrumb_navxt_class.php:198
35
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
36
+ msgstr "<a title=\"%title%\" href=\"%link%\">"
37
+
38
+ #: ../breadcrumb_navxt_admin.php:349
39
+ msgid "Settings successfully saved."
40
+ msgstr "設定は正常に保存されました。"
41
+
42
+ #: ../breadcrumb_navxt_admin.php:349
43
+ msgid "Undo the options save."
44
+ msgstr "オプション設定を元に戻す。"
45
+
46
+ #: ../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 "設定に関するTIPSは、選択オプション下に表示されています。詳細情報については%sドキュメント%sをご参照ください。"
50
+
51
+ #: ../breadcrumb_navxt_admin.php:373
52
+ msgid "Go to the Breadcrumb NavXT online documentation"
53
+ msgstr "オンラインドキュメントへ移動"
54
+
55
+ #: ../breadcrumb_navxt_admin.php:459
56
+ #: ../mtekk_admin_class.php:444
57
+ msgid "Import"
58
+ msgstr "インポート"
59
+
60
+ #: ../breadcrumb_navxt_admin.php:459
61
+ #: ../mtekk_admin_class.php:445
62
+ msgid "Export"
63
+ msgstr "エクスポート"
64
+
65
+ #: ../breadcrumb_navxt_admin.php:459
66
+ #: ../mtekk_admin_class.php:446
67
+ msgid "Reset"
68
+ msgstr "リセット"
69
+
70
+ #: ../breadcrumb_navxt_admin.php:481
71
+ msgid "Breadcrumb NavXT Settings"
72
+ msgstr "Breadcrumb NavXT 設定"
73
+
74
+ #: ../breadcrumb_navxt_admin.php:489
75
+ msgid "General"
76
+ msgstr "一般"
77
+
78
+ #: ../breadcrumb_navxt_admin.php:492
79
+ msgid "Breadcrumb Separator"
80
+ msgstr "区切り"
81
+
82
+ #: ../breadcrumb_navxt_admin.php:492
83
+ msgid "Placed in between each breadcrumb."
84
+ msgstr "各パンくずリスト間に配置"
85
+
86
+ #: ../breadcrumb_navxt_admin.php:493
87
+ msgid "Breadcrumb Max Title Length"
88
+ msgstr "タイトルの最大文字数"
89
+
90
+ #: ../breadcrumb_navxt_admin.php:497
91
+ msgid "Home Breadcrumb"
92
+ msgstr "ホーム"
93
+
94
+ #: ../breadcrumb_navxt_admin.php:502
95
+ msgid "Place the home breadcrumb in the trail."
96
+ msgstr "パンくずリストにホームを配置"
97
+
98
+ #: ../breadcrumb_navxt_admin.php:507
99
+ msgid "Home Title: "
100
+ msgstr "ホームタイトル:"
101
+
102
+ #: ../breadcrumb_navxt_admin.php:515
103
+ msgid "Blog Breadcrumb"
104
+ msgstr "ブログ"
105
+
106
+ #: ../breadcrumb_navxt_admin.php:515
107
+ msgid "Place the blog breadcrumb in the trail."
108
+ msgstr "パンくずリストにブログを配置"
109
+
110
+ #: ../breadcrumb_navxt_admin.php:516
111
+ msgid "Home Prefix"
112
+ msgstr "ホーム接頭辞"
113
+
114
+ #: ../breadcrumb_navxt_admin.php:517
115
+ msgid "Home Suffix"
116
+ msgstr "ホーム接尾辞"
117
+
118
+ #: ../breadcrumb_navxt_admin.php:518
119
+ msgid "Home Anchor"
120
+ msgstr "ホームリンク"
121
+
122
+ #: ../breadcrumb_navxt_admin.php:518
123
+ msgid "The anchor template for the home breadcrumb."
124
+ msgstr "ホームのリンク書式"
125
+
126
+ #: ../breadcrumb_navxt_admin.php:519
127
+ msgid "Blog Anchor"
128
+ msgstr "ブログリンク"
129
+
130
+ #: ../breadcrumb_navxt_admin.php:519
131
+ msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
132
+ msgstr "ブログのリンク書式(固定のフロントページ環境を使用時のみ)"
133
+
134
+ #: ../breadcrumb_navxt_admin.php:524
135
+ msgid "Current Item"
136
+ msgstr "アクティブページ"
137
+
138
+ #: ../breadcrumb_navxt_admin.php:527
139
+ msgid "Link Current Item"
140
+ msgstr "アクティブページのリンク"
141
+
142
+ #: ../breadcrumb_navxt_admin.php:527
143
+ msgid "Yes"
144
+ msgstr "はい"
145
+
146
+ #: ../breadcrumb_navxt_admin.php:528
147
+ msgid "Current Item Prefix"
148
+ msgstr "アクティブページ接頭辞"
149
+
150
+ #: ../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 "常に他の接頭辞よりも前にアクティブページの接頭辞として配置されます。"
153
+
154
+ #: ../breadcrumb_navxt_admin.php:529
155
+ msgid "Current Item Suffix"
156
+ msgstr "アクティブページ接尾辞"
157
+
158
+ #: ../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 "常に他の接尾辞よりも後にアクティブページの接尾辞として配置されます。"
161
+
162
+ #: ../breadcrumb_navxt_admin.php:530
163
+ msgid "Current Item Anchor"
164
+ msgstr "アクティブページリンク"
165
+
166
+ #: ../breadcrumb_navxt_admin.php:530
167
+ msgid "The anchor template for current item breadcrumbs."
168
+ msgstr "アクティブページのリンク書式"
169
+
170
+ #: ../breadcrumb_navxt_admin.php:531
171
+ msgid "Paged Breadcrumb"
172
+ msgstr "ページネーション"
173
+
174
+ #: ../breadcrumb_navxt_admin.php:531
175
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
176
+ msgstr "ページネーションを含む"
177
+
178
+ #: ../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 "ページネーションが適用されている場合、表示箇所が何頁目であるかを表示する。"
181
+
182
+ #: ../breadcrumb_navxt_admin.php:532
183
+ msgid "Paged Prefix"
184
+ msgstr "ページネーション接頭辞"
185
+
186
+ #: ../breadcrumb_navxt_admin.php:533
187
+ msgid "Paged Suffix"
188
+ msgstr "ページネーション接尾辞"
189
+
190
+ #: ../breadcrumb_navxt_admin.php:538
191
+ msgid "Posts &amp; Pages"
192
+ msgstr "投稿およびページ"
193
+
194
+ #: ../breadcrumb_navxt_admin.php:541
195
+ msgid "Post Prefix"
196
+ msgstr "投稿接頭辞"
197
+
198
+ #: ../breadcrumb_navxt_admin.php:542
199
+ msgid "Post Suffix"
200
+ msgstr "投稿接尾辞"
201
+
202
+ #: ../breadcrumb_navxt_admin.php:543
203
+ msgid "Post Anchor"
204
+ msgstr "投稿リンク"
205
+
206
+ #: ../breadcrumb_navxt_admin.php:543
207
+ msgid "The anchor template for post breadcrumbs."
208
+ msgstr "投稿のリンク書式"
209
+
210
+ #: ../breadcrumb_navxt_admin.php:544
211
+ msgid "Post Taxonomy Display"
212
+ msgstr "投稿タクソノミーの表示"
213
+
214
+ #: ../breadcrumb_navxt_admin.php:544
215
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
216
+ msgstr "パンくずリストに投稿へ誘導するためのタクソノミーを表示"
217
+
218
+ #: ../breadcrumb_navxt_admin.php:548
219
+ msgid "Post Taxonomy"
220
+ msgstr "投稿タクソノミー"
221
+
222
+ #: ../breadcrumb_navxt_admin.php:552
223
+ #: ../breadcrumb_navxt_admin.php:650
224
+ msgid "Categories"
225
+ msgstr "カテゴリー"
226
+
227
+ #: ../breadcrumb_navxt_admin.php:553
228
+ msgid "Dates"
229
+ msgstr "日付"
230
+
231
+ #: ../breadcrumb_navxt_admin.php:554
232
+ #: ../breadcrumb_navxt_admin.php:662
233
+ msgid "Tags"
234
+ msgstr "タグ"
235
+
236
+ #: ../breadcrumb_navxt_admin.php:555
237
+ msgid "Pages"
238
+ msgstr "ページ"
239
+
240
+ #: ../breadcrumb_navxt_admin.php:566
241
+ #: ../breadcrumb_navxt_admin.php:640
242
+ msgid "The taxonomy which the breadcrumb trail will show."
243
+ msgstr "パンくずリストに表示するタクソノミー"
244
+
245
+ #: ../breadcrumb_navxt_admin.php:570
246
+ msgid "Page Prefix"
247
+ msgstr "ページ接頭辞"
248
+
249
+ #: ../breadcrumb_navxt_admin.php:571
250
+ msgid "Page Suffix"
251
+ msgstr "ページ接尾辞"
252
+
253
+ #: ../breadcrumb_navxt_admin.php:572
254
+ msgid "Page Anchor"
255
+ msgstr "ページリンク"
256
+
257
+ #: ../breadcrumb_navxt_admin.php:572
258
+ msgid "The anchor template for page breadcrumbs."
259
+ msgstr "ページのリンク書式"
260
+
261
+ #: ../breadcrumb_navxt_admin.php:573
262
+ msgid "Attachment Prefix"
263
+ msgstr "添付接頭辞"
264
+
265
+ #: ../breadcrumb_navxt_admin.php:574
266
+ msgid "Attachment Suffix"
267
+ msgstr "添付接尾辞"
268
+
269
+ #: ../breadcrumb_navxt_admin.php:616
270
+ #: ../breadcrumb_navxt_admin.php:699
271
+ #, php-format
272
+ msgid "%s Prefix"
273
+ msgstr "%s 接頭辞"
274
+
275
+ #: ../breadcrumb_navxt_admin.php:617
276
+ #: ../breadcrumb_navxt_admin.php:700
277
+ #, php-format
278
+ msgid "%s Suffix"
279
+ msgstr "%s 接尾辞"
280
+
281
+ #: ../breadcrumb_navxt_admin.php:618
282
+ #: ../breadcrumb_navxt_admin.php:701
283
+ #, php-format
284
+ msgid "%s Anchor"
285
+ msgstr "%s リンク"
286
+
287
+ #: ../breadcrumb_navxt_admin.php:618
288
+ #: ../breadcrumb_navxt_admin.php:701
289
+ #, php-format
290
+ msgid "The anchor template for %s breadcrumbs."
291
+ msgstr "%sのリンク書式"
292
+
293
+ #: ../breadcrumb_navxt_admin.php:622
294
+ #, php-format
295
+ msgid "%s Taxonomy Display"
296
+ msgstr "タクソノミー「%s」の表示"
297
+
298
+ #: ../breadcrumb_navxt_admin.php:622
299
+ #, php-format
300
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
301
+ msgstr "パンくずリスト上の%sにつながるタクソノミーを表示"
302
+
303
+ #: ../breadcrumb_navxt_admin.php:626
304
+ #, php-format
305
+ msgid "%s Taxonomy"
306
+ msgstr "タクソノミー「%s 」"
307
+
308
+ #: ../breadcrumb_navxt_admin.php:653
309
+ msgid "Category Prefix"
310
+ msgstr "カテゴリー接頭辞"
311
+
312
+ #: ../breadcrumb_navxt_admin.php:653
313
+ msgid "Applied before the anchor on all category breadcrumbs."
314
+ msgstr "すべてのカテゴリーリンクの前に適用されます。"
315
+
316
+ #: ../breadcrumb_navxt_admin.php:654
317
+ msgid "Category Suffix"
318
+ msgstr "カテゴリー接尾辞"
319
+
320
+ #: ../breadcrumb_navxt_admin.php:654
321
+ msgid "Applied after the anchor on all category breadcrumbs."
322
+ msgstr "すべてのカテゴリーリンクの後に適用されます。"
323
+
324
+ #: ../breadcrumb_navxt_admin.php:655
325
+ msgid "Category Anchor"
326
+ msgstr "カテゴリーリンク"
327
+
328
+ #: ../breadcrumb_navxt_admin.php:655
329
+ msgid "The anchor template for category breadcrumbs."
330
+ msgstr "カテゴリーのリンク書式"
331
+
332
+ #: ../breadcrumb_navxt_admin.php:656
333
+ msgid "Archive by Category Prefix"
334
+ msgstr "カテゴリーアーカイブの接頭辞"
335
+
336
+ #: ../breadcrumb_navxt_admin.php:656
337
+ msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
338
+ msgstr "カテゴリーアーカイブがアクティブページの場合、接頭辞として配置されます。"
339
+
340
+ #: ../breadcrumb_navxt_admin.php:657
341
+ msgid "Archive by Category Suffix"
342
+ msgstr "カテゴリーアーカイブの接尾辞"
343
+
344
+ #: ../breadcrumb_navxt_admin.php:657
345
+ msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
346
+ msgstr "カテゴリーアーカイブがアクティブページの場合、接尾辞として配置されます。"
347
+
348
+ #: ../breadcrumb_navxt_admin.php:665
349
+ msgid "Tag Prefix"
350
+ msgstr "タグ接頭辞"
351
+
352
+ #: ../breadcrumb_navxt_admin.php:665
353
+ msgid "Applied before the anchor on all tag breadcrumbs."
354
+ msgstr "すべてのタグリンクの前に適用されます。"
355
+
356
+ #: ../breadcrumb_navxt_admin.php:666
357
+ msgid "Tag Suffix"
358
+ msgstr "タグ接尾辞"
359
+
360
+ #: ../breadcrumb_navxt_admin.php:666
361
+ msgid "Applied after the anchor on all tag breadcrumbs."
362
+ msgstr "すべてのタグリンクの後に適用されます。"
363
+
364
+ #: ../breadcrumb_navxt_admin.php:667
365
+ msgid "Tag Anchor"
366
+ msgstr "タグリンク"
367
+
368
+ #: ../breadcrumb_navxt_admin.php:667
369
+ msgid "The anchor template for tag breadcrumbs."
370
+ msgstr "タグのリンク書式"
371
+
372
+ #: ../breadcrumb_navxt_admin.php:668
373
+ msgid "Archive by Tag Prefix"
374
+ msgstr "タグアーカイブの接頭辞"
375
+
376
+ #: ../breadcrumb_navxt_admin.php:668
377
+ msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
378
+ msgstr "タグアーカイブがアクティブページの場合、接頭辞として配置されます。"
379
+
380
+ #: ../breadcrumb_navxt_admin.php:669
381
+ msgid "Archive by Tag Suffix"
382
+ msgstr "タグアーカイブの接尾辞"
383
+
384
+ #: ../breadcrumb_navxt_admin.php:669
385
+ msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
386
+ msgstr "タグアーカイブがアクティブページの場合、接尾辞として配置されます。"
387
+
388
+ #: ../breadcrumb_navxt_admin.php:699
389
+ #, php-format
390
+ msgid "Applied before the anchor on all %s breadcrumbs."
391
+ msgstr "すべての%sリンクの前に適用されます。"
392
+
393
+ #: ../breadcrumb_navxt_admin.php:700
394
+ #, php-format
395
+ msgid "Applied after the anchor on all %s breadcrumbs."
396
+ msgstr "すべての%sリンクの後に適用されます。"
397
+
398
+ #: ../breadcrumb_navxt_admin.php:702
399
+ #, php-format
400
+ msgid "Archive by %s Prefix"
401
+ msgstr "%sアーカイブの接頭辞"
402
+
403
+ #: ../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 "%sアーカイブがアクティブページの場合、接頭辞として配置されます。"
407
+
408
+ #: ../breadcrumb_navxt_admin.php:703
409
+ #, php-format
410
+ msgid "Archive by %s Suffix"
411
+ msgstr "%sアーカイブの接尾辞"
412
+
413
+ #: ../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 "%sアーカイブがアクティブページの場合、接尾辞として配置されます。"
417
+
418
+ #: ../breadcrumb_navxt_admin.php:712
419
+ msgid "Date Archives"
420
+ msgstr "日付アーカイブ"
421
+
422
+ #: ../breadcrumb_navxt_admin.php:715
423
+ msgid "Date Anchor"
424
+ msgstr "日付リンク"
425
+
426
+ #: ../breadcrumb_navxt_admin.php:715
427
+ msgid "The anchor template for date breadcrumbs."
428
+ msgstr "日付のリンク書式"
429
+
430
+ #: ../breadcrumb_navxt_admin.php:716
431
+ msgid "Archive by Date Prefix"
432
+ msgstr "日付アーカイブの接頭辞"
433
+
434
+ #: ../breadcrumb_navxt_admin.php:716
435
+ msgid "Applied before the anchor on all date breadcrumbs."
436
+ msgstr "すべての日付リンクの前に適用されます。"
437
+
438
+ #: ../breadcrumb_navxt_admin.php:717
439
+ msgid "Archive by Date Suffix"
440
+ msgstr "日付アーカイブの接尾辞"
441
+
442
+ #: ../breadcrumb_navxt_admin.php:717
443
+ msgid "Applied after the anchor on all date breadcrumbs."
444
+ msgstr "すべての日付リンクの後に適用されます。"
445
+
446
+ #: ../breadcrumb_navxt_admin.php:722
447
+ msgid "Miscellaneous"
448
+ msgstr "その他"
449
+
450
+ #: ../breadcrumb_navxt_admin.php:725
451
+ msgid "Author Prefix"
452
+ msgstr "投稿者接頭辞"
453
+
454
+ #: ../breadcrumb_navxt_admin.php:726
455
+ msgid "Author Suffix"
456
+ msgstr "投稿者接尾辞"
457
+
458
+ #: ../breadcrumb_navxt_admin.php:727
459
+ msgid "Author Display Format"
460
+ msgstr "投稿者表示形式"
461
+
462
+ #: ../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」はユーザプロフィール内の「ブログ上の表示名」が使用されます。その他もユーザプロフィール内の設定内容が適用されます。"
465
+
466
+ #: ../breadcrumb_navxt_admin.php:728
467
+ msgid "Search Prefix"
468
+ msgstr "検索結果接頭辞"
469
+
470
+ #: ../breadcrumb_navxt_admin.php:729
471
+ msgid "Search Suffix"
472
+ msgstr "検索結果接尾辞"
473
+
474
+ #: ../breadcrumb_navxt_admin.php:730
475
+ msgid "Search Anchor"
476
+ msgstr "検索結果リンク"
477
+
478
+ #: ../breadcrumb_navxt_admin.php:730
479
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
480
+ msgstr "検索結果のリンク書式(検索結果が複数ページに及ぶ場合のみに適用)"
481
+
482
+ #: ../breadcrumb_navxt_admin.php:731
483
+ msgid "404 Title"
484
+ msgstr "404タイトル"
485
+
486
+ #: ../breadcrumb_navxt_admin.php:732
487
+ msgid "404 Prefix"
488
+ msgstr "404接頭辞"
489
+
490
+ #: ../breadcrumb_navxt_admin.php:733
491
+ msgid "404 Suffix"
492
+ msgstr "404接尾辞"
493
+
494
+ #: ../breadcrumb_navxt_class.php:154
495
+ msgid "Blog"
496
+ msgstr "ブログ"
497
+
498
+ #: ../breadcrumb_navxt_class.php:173
499
+ msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
500
+ msgstr "<a title=\"再読み込み\" href=\"%link%\">"
501
+
502
+ #: ../breadcrumb_navxt_class.php:214
503
+ msgid "404"
504
+ msgstr "404"
505
+
506
+ #: ../breadcrumb_navxt_class.php:217
507
+ msgid "Search results for &#39;"
508
+ msgstr "&#39;の検索結果"
509
+
510
+ #: ../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=\"%title%の検索結果の最初のページに戻る\" href=\"%link%\">"
513
+
514
+ #: ../breadcrumb_navxt_class.php:228
515
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
516
+ msgstr "<a title=\"%title%\" href=\"%link%\">"
517
+
518
+ #: ../breadcrumb_navxt_class.php:231
519
+ msgid "Articles by: "
520
+ msgstr "投稿者:"
521
+
522
+ #: ../breadcrumb_navxt_class.php:235
523
+ msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
524
+ msgstr "<a title=\"%title%\" href=\"%link%\">"
525
+
526
+ #: ../breadcrumb_navxt_class.php:244
527
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
528
+ msgstr "<a title=\"%title%\" href=\"%link%\">"
529
+
530
+ #: ../breadcrumb_navxt_class.php:247
531
+ msgid "Archive by category &#39;"
532
+ msgstr "カテゴリー &#39;"
533
+
534
+ #: ../breadcrumb_navxt_class.php:251
535
+ msgid "Archive by tag &#39;"
536
+ msgstr "タグ &#39;"
537
+
538
+ #: ../breadcrumb_navxt_class.php:254
539
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
540
+ msgstr "<a title=\"%title%\" href=\"%link%\">"
541
+
542
+ #: ../breadcrumb_navxt_class.php:425
543
+ msgid "Untagged"
544
+ msgstr "タグなし"
545
+
546
+ #: ../breadcrumb_navxt_widget.php:24
547
+ msgid "Adds a breadcrumb trail to your sidebar"
548
+ msgstr "サイドバーにパンくずリストを追加"
549
+
550
+ #: ../breadcrumb_navxt_widget.php:72
551
+ msgid "Title:"
552
+ msgstr "タイトル:"
553
+
554
+ #: ../breadcrumb_navxt_widget.php:77
555
+ msgid "Output trail as a list"
556
+ msgstr "リストとして表示"
557
+
558
+ #: ../breadcrumb_navxt_widget.php:79
559
+ msgid "Link the breadcrumbs"
560
+ msgstr "パンクすリストにリンク"
561
+
562
+ #: ../breadcrumb_navxt_widget.php:81
563
+ msgid "Reverse the order of the trail"
564
+ msgstr "開始位置を逆にする。"
565
+
566
+ #: ../breadcrumb_navxt_widget.php:83
567
+ msgid "Hide the trail on the front page"
568
+ msgstr "フロントページ上では非表示にする"
569
+
570
+ #: ../mtekk_admin_class.php:56
571
+ msgid "Undo"
572
+ msgstr "元に戻す"
573
+
574
+ #: ../mtekk_admin_class.php:150
575
+ msgid "Settings"
576
+ msgstr "設定"
577
+
578
+ #: ../mtekk_admin_class.php:284
579
+ msgid "Settings successfully imported from the uploaded file."
580
+ msgstr "アップロードしたファイルより設定が正常に反映されました。"
581
+
582
+ #: ../mtekk_admin_class.php:284
583
+ msgid "Undo the options import."
584
+ msgstr "オプションのインポートを元に戻す。"
585
+
586
+ #: ../mtekk_admin_class.php:289
587
+ msgid "Importing settings from file failed."
588
+ msgstr "設定ファイルのインポートに失敗しました。"
589
+
590
+ #: ../mtekk_admin_class.php:310
591
+ msgid "Settings successfully reset to the default values."
592
+ msgstr "設定が初期値に戻されました。"
593
+
594
+ #: ../mtekk_admin_class.php:310
595
+ msgid "Undo the options reset."
596
+ msgstr "オプションのリセットを元に戻す。"
597
+
598
+ #: ../mtekk_admin_class.php:324
599
+ msgid "Settings successfully undid the last operation."
600
+ msgstr "設定が正常に最後の操作を元に戻した。"
601
+
602
+ #: ../mtekk_admin_class.php:324
603
+ msgid "Undo the last undo operation."
604
+ msgstr "最後に戻した操作を元に戻す。"
605
+
606
+ #: ../mtekk_admin_class.php:354
607
+ #, php-format
608
+ msgid "Get help with \"%s\""
609
+ msgstr "\"%s\" のサポートを受ける"
610
+
611
+ #: ../mtekk_admin_class.php:435
612
+ msgid "Import/Export/Reset Settings"
613
+ msgstr "インポート/エクスポート/リセット設定"
614
+
615
+ #: ../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 "XMLファイルより設定をインポートし、現在の設定をXMLファイルにエクスポート、または初期値に戻す。"
618
+
619
+ #: ../mtekk_admin_class.php:439
620
+ msgid "Settings File"
621
+ msgstr "設定ファイル"
622
+
623
+ #: ../mtekk_admin_class.php:442
624
+ msgid "Select a XML settings file to upload and import settings from."
625
+ msgstr "XML設定ファイルを選択の上、アップロードし、設定を読み込んでください。"
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?"
630
+ #~ msgstr ""
631
+ #~ "現在の設定がすべて初期値で上書きされます。実行してもよろしいですか?"
632
+ #~ msgid ""
633
+ #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
634
+ #~ "the imported values. Are you sure you want to continue?"
635
+ #~ msgstr ""
636
+ #~ "現在の設定がすべてインポートする値で上書きされます。実行してもよろしいです"
637
+ #~ "か?"
638
+ #~ msgid "Save Changes"
639
+ #~ msgstr "Anderungen speichern"
640
+ #~ msgid ""
641
+ #~ "Warning, your version of Breadcrumb NavXT does not match the version "
642
+ #~ "supported by this administrative interface. As a result, settings may not "
643
+ #~ "work as expected."
644
+ #~ msgstr ""
645
+ #~ "Warnung: Deine Version von Breadcrumb NavXT stimmt nicht mit den "
646
+ #~ "unterstutzen Versionen von diesem Administrations-Interface uberein. Dies "
647
+ #~ "kann zu Fehlfunktionen fuhren."
648
+ #~ msgid "Your Breadcrumb NavXT Administration interface version is "
649
+ #~ msgstr "Die Breadcrumb NavXT Administrations-Interface Version ist "
650
+ #~ msgid "Your Breadcrumb NavXT version is "
651
+ #~ msgstr "Die Breadcrumb NavXT Version ist "
652
+
languages/breadcrumb_navxt-sv_SE.mo CHANGED
Binary file
languages/breadcrumb_navxt-sv_SE.po CHANGED
@@ -2,9 +2,9 @@ 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-05-09 01:08+0000\n"
6
- "PO-Revision-Date: 2010-05-17 22:05+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"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,513 +19,529 @@ msgstr ""
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:110
23
  msgid "Insufficient privileges to proceed."
24
  msgstr "Otillräcklig privilegier för att fortsätta."
25
 
26
- #: breadcrumb_navxt_admin.php:135
27
- #: breadcrumb_navxt_class.php:216
28
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
29
- msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
 
 
 
 
 
30
 
31
- #: breadcrumb_navxt_admin.php:249
32
  msgid "Settings successfully saved."
33
  msgstr "Inställningarna sparade."
34
 
35
- #: breadcrumb_navxt_admin.php:272
 
 
 
 
36
  #, php-format
37
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
38
  msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
39
 
40
- #: breadcrumb_navxt_admin.php:273
41
  msgid "Go to the Breadcrumb NavXT online documentation"
42
  msgstr "Gå till Breadcrumb NavXT online dokumentation"
43
 
44
- #: breadcrumb_navxt_admin.php:327
45
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
46
- msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med standardvärden. Är du säker på att du vill fortsätta?"
47
-
48
- #: breadcrumb_navxt_admin.php:330
49
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
50
- msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med importerade värden. Är du säker på att du vill fortsätta?"
51
-
52
- #: breadcrumb_navxt_admin.php:381
53
- #: mtekk_admin_class.php:403
54
  msgid "Import"
55
  msgstr "Importera"
56
 
57
- #: breadcrumb_navxt_admin.php:381
58
- #: mtekk_admin_class.php:404
59
  msgid "Export"
60
  msgstr "Exportera"
61
 
62
- #: breadcrumb_navxt_admin.php:381
63
- #: mtekk_admin_class.php:405
64
  msgid "Reset"
65
  msgstr "Återställ"
66
 
67
- #: breadcrumb_navxt_admin.php:405
68
  msgid "Breadcrumb NavXT Settings"
69
  msgstr "Breadcrumb NavXT Inställningar"
70
 
71
- #: breadcrumb_navxt_admin.php:413
72
  msgid "General"
73
  msgstr "Allmänt"
74
 
75
- #: breadcrumb_navxt_admin.php:416
76
  msgid "Breadcrumb Separator"
77
  msgstr "Breadcrumb separator"
78
 
79
- #: breadcrumb_navxt_admin.php:416
80
  msgid "Placed in between each breadcrumb."
81
  msgstr "Placeras i mellan varje breadcrumb."
82
 
83
- #: breadcrumb_navxt_admin.php:417
84
  msgid "Breadcrumb Max Title Length"
85
  msgstr "Breadcrumb max titel längd"
86
 
87
- #: breadcrumb_navxt_admin.php:421
88
  msgid "Home Breadcrumb"
89
  msgstr "Hem Breadcrumb"
90
 
91
- #: breadcrumb_navxt_admin.php:426
92
  msgid "Place the home breadcrumb in the trail."
93
  msgstr "Placera hem breadcrumb i spåret."
94
 
95
- #: breadcrumb_navxt_admin.php:431
96
  msgid "Home Title: "
97
  msgstr "Hem titel: "
98
 
99
- #: breadcrumb_navxt_admin.php:439
100
  msgid "Blog Breadcrumb"
101
  msgstr "Blogg breadcrumb"
102
 
103
- #: breadcrumb_navxt_admin.php:439
104
  msgid "Place the blog breadcrumb in the trail."
105
  msgstr "Placera blogg breadcrumb i spåret."
106
 
107
- #: breadcrumb_navxt_admin.php:440
108
  msgid "Home Prefix"
109
  msgstr "Hem Prefix"
110
 
111
- #: breadcrumb_navxt_admin.php:441
112
  msgid "Home Suffix"
113
  msgstr "hem Suffix"
114
 
115
- #: breadcrumb_navxt_admin.php:442
116
  msgid "Home Anchor"
117
  msgstr "Hem Länk "
118
 
119
- #: breadcrumb_navxt_admin.php:442
120
  msgid "The anchor template for the home breadcrumb."
121
  msgstr "Länk mall för hem breadcrumb."
122
 
123
- #: breadcrumb_navxt_admin.php:443
124
  msgid "Blog Anchor"
125
  msgstr "Blogg länk"
126
 
127
- #: breadcrumb_navxt_admin.php:443
128
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
129
  msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
130
 
131
- #: breadcrumb_navxt_admin.php:448
132
  msgid "Current Item"
133
  msgstr "Nuvarande punkt"
134
 
135
- #: breadcrumb_navxt_admin.php:451
136
  msgid "Link Current Item"
137
  msgstr "Länk Nuvarande punkt"
138
 
139
- #: breadcrumb_navxt_admin.php:451
140
  msgid "Yes"
141
  msgstr "Ja"
142
 
143
- #: breadcrumb_navxt_admin.php:452
144
  msgid "Current Item Prefix"
145
  msgstr "Nuvarande punkt Prefix"
146
 
147
- #: breadcrumb_navxt_admin.php:452
148
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
149
  msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
150
 
151
- #: breadcrumb_navxt_admin.php:453
152
  msgid "Current Item Suffix"
153
  msgstr "Nuvarande punkt Suffix"
154
 
155
- #: breadcrumb_navxt_admin.php:453
156
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
157
  msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
158
 
159
- #: breadcrumb_navxt_admin.php:454
160
  msgid "Current Item Anchor"
161
  msgstr "Nuvarande punkt Länk"
162
 
163
- #: breadcrumb_navxt_admin.php:454
164
  msgid "The anchor template for current item breadcrumbs."
165
  msgstr "Länk mall för nuvarande punkt breadcrumbs."
166
 
167
- #: breadcrumb_navxt_admin.php:455
168
  msgid "Paged Breadcrumb"
169
  msgstr ""
170
 
171
- #: breadcrumb_navxt_admin.php:455
172
  msgid "Include the paged breadcrumb in the breadcrumb trail."
173
  msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
174
 
175
- #: breadcrumb_navxt_admin.php:455
176
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
177
  msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
178
 
179
- #: breadcrumb_navxt_admin.php:456
180
  msgid "Paged Prefix"
181
  msgstr ""
182
 
183
- #: breadcrumb_navxt_admin.php:457
184
  msgid "Paged Suffix"
185
  msgstr ""
186
 
187
- #: breadcrumb_navxt_admin.php:462
188
  msgid "Posts &amp; Pages"
189
  msgstr "Inlägg &amp; Sidor"
190
 
191
- #: breadcrumb_navxt_admin.php:465
192
  msgid "Post Prefix"
193
  msgstr "Inläggs Prefix"
194
 
195
- #: breadcrumb_navxt_admin.php:466
196
  msgid "Post Suffix"
197
  msgstr "Inläggs Suffix"
198
 
199
- #: breadcrumb_navxt_admin.php:467
200
  msgid "Post Anchor"
201
  msgstr "Inläggs Länk"
202
 
203
- #: breadcrumb_navxt_admin.php:467
204
  msgid "The anchor template for post breadcrumbs."
205
  msgstr "Länk mall för inläggs breadcrumbs."
206
 
207
- #: breadcrumb_navxt_admin.php:468
208
  msgid "Post Taxonomy Display"
209
  msgstr "Inläggs taxonomi visning"
210
 
211
- #: breadcrumb_navxt_admin.php:468
212
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
213
  msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
214
 
215
- #: breadcrumb_navxt_admin.php:472
216
  msgid "Post Taxonomy"
217
  msgstr "Inäggs taxonomi"
218
 
219
- #: breadcrumb_navxt_admin.php:476
220
- #: breadcrumb_navxt_admin.php:503
221
  msgid "Categories"
222
  msgstr "Kategorier"
223
 
224
- #: breadcrumb_navxt_admin.php:477
225
  msgid "Dates"
226
  msgstr "Datum"
227
 
228
- #: breadcrumb_navxt_admin.php:478
229
- #: breadcrumb_navxt_admin.php:515
230
  msgid "Tags"
231
  msgstr "Taggar"
232
 
233
- #: breadcrumb_navxt_admin.php:479
234
  msgid "Pages"
235
  msgstr "Sidor"
236
 
237
- #: breadcrumb_navxt_admin.php:490
 
238
  msgid "The taxonomy which the breadcrumb trail will show."
239
  msgstr "Den taxonomi som breadcrumb kommer att visa."
240
 
241
- #: breadcrumb_navxt_admin.php:494
242
  msgid "Page Prefix"
243
  msgstr "Sido Prefix"
244
 
245
- #: breadcrumb_navxt_admin.php:495
246
  msgid "Page Suffix"
247
  msgstr "Sido Suffix"
248
 
249
- #: breadcrumb_navxt_admin.php:496
250
  msgid "Page Anchor"
251
  msgstr "Sido Länk"
252
 
253
- #: breadcrumb_navxt_admin.php:496
254
  msgid "The anchor template for page breadcrumbs."
255
  msgstr "Länk mall för sido breadcrumbs."
256
 
257
- #: breadcrumb_navxt_admin.php:497
258
  msgid "Attachment Prefix"
259
  msgstr ""
260
 
261
- #: breadcrumb_navxt_admin.php:498
262
  msgid "Attachment Suffix"
263
  msgstr ""
264
 
265
- #: breadcrumb_navxt_admin.php:506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  msgid "Category Prefix"
267
  msgstr "Kategori prefix"
268
 
269
- #: breadcrumb_navxt_admin.php:506
270
  msgid "Applied before the anchor on all category breadcrumbs."
271
  msgstr "Tillämpad innan länken på alla kategori breadcrumb"
272
 
273
- #: breadcrumb_navxt_admin.php:507
274
  msgid "Category Suffix"
275
  msgstr "Kategori Suffix"
276
 
277
- #: breadcrumb_navxt_admin.php:507
278
  msgid "Applied after the anchor on all category breadcrumbs."
279
  msgstr "Tillämpad efter länken på alla kategori breadcrumb"
280
 
281
- #: breadcrumb_navxt_admin.php:508
282
  msgid "Category Anchor"
283
  msgstr "Kategori länk"
284
 
285
- #: breadcrumb_navxt_admin.php:508
286
  msgid "The anchor template for category breadcrumbs."
287
  msgstr "länk mall för kategori breadcrumbs"
288
 
289
- #: breadcrumb_navxt_admin.php:509
290
  msgid "Archive by Category Prefix"
291
  msgstr "Arkiv av kategori prefix"
292
 
293
- #: breadcrumb_navxt_admin.php:509
294
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
295
  msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
296
 
297
- #: breadcrumb_navxt_admin.php:510
298
  msgid "Archive by Category Suffix"
299
  msgstr "Arkiv av Kategori Suffix"
300
 
301
- #: breadcrumb_navxt_admin.php:510
302
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
303
  msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
304
 
305
- #: breadcrumb_navxt_admin.php:518
306
  msgid "Tag Prefix"
307
  msgstr "Tagg Prefix"
308
 
309
- #: breadcrumb_navxt_admin.php:518
310
  msgid "Applied before the anchor on all tag breadcrumbs."
311
  msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
312
 
313
- #: breadcrumb_navxt_admin.php:519
314
  msgid "Tag Suffix"
315
  msgstr "Tag Suffix"
316
 
317
- #: breadcrumb_navxt_admin.php:519
318
  msgid "Applied after the anchor on all tag breadcrumbs."
319
  msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
320
 
321
- #: breadcrumb_navxt_admin.php:520
322
  msgid "Tag Anchor"
323
  msgstr "Tagg Länk"
324
 
325
- #: breadcrumb_navxt_admin.php:520
326
  msgid "The anchor template for tag breadcrumbs."
327
  msgstr "Länk mall för tagg breadcrumbs."
328
 
329
- #: breadcrumb_navxt_admin.php:521
330
  msgid "Archive by Tag Prefix"
331
  msgstr "Arkiv av Tagg Prefix"
332
 
333
- #: breadcrumb_navxt_admin.php:521
334
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
335
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
336
 
337
- #: breadcrumb_navxt_admin.php:522
338
  msgid "Archive by Tag Suffix"
339
  msgstr "Arkiv av Tagg Suffix"
340
 
341
- #: breadcrumb_navxt_admin.php:522
342
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
343
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
344
 
345
- #: breadcrumb_navxt_admin.php:550
346
- #, php-format
347
- msgid "%s Prefix"
348
- msgstr "%s Prefix"
349
-
350
- #: breadcrumb_navxt_admin.php:550
351
  #, php-format
352
  msgid "Applied before the anchor on all %s breadcrumbs."
353
  msgstr "Tillämpad innan länken på alla %s breadcrumbs."
354
 
355
- #: breadcrumb_navxt_admin.php:551
356
- #, php-format
357
- msgid "%s Suffix"
358
- msgstr "%s Suffix"
359
-
360
- #: breadcrumb_navxt_admin.php:551
361
  #, php-format
362
  msgid "Applied after the anchor on all %s breadcrumbs."
363
  msgstr "Tillämpad efter länken på alla %s breadcrumbs."
364
 
365
- #: breadcrumb_navxt_admin.php:552
366
- #, php-format
367
- msgid "%s Anchor"
368
- msgstr "%s Länk"
369
-
370
- #: breadcrumb_navxt_admin.php:552
371
- #, php-format
372
- msgid "The anchor template for %s breadcrumbs."
373
- msgstr "Länk mall för %s breadcrumbs."
374
-
375
- #: breadcrumb_navxt_admin.php:553
376
  #, php-format
377
  msgid "Archive by %s Prefix"
378
  msgstr "Arkiv av %s Prefix"
379
 
380
- #: breadcrumb_navxt_admin.php:553
381
  #, php-format
382
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
383
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
384
 
385
- #: breadcrumb_navxt_admin.php:554
386
  #, php-format
387
  msgid "Archive by %s Suffix"
388
  msgstr "Arkiv av %s Suffix"
389
 
390
- #: breadcrumb_navxt_admin.php:554
391
  #, php-format
392
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
393
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
394
 
395
- #: breadcrumb_navxt_admin.php:563
396
  msgid "Date Archives"
397
  msgstr "Datum Arkiv"
398
 
399
- #: breadcrumb_navxt_admin.php:566
400
  msgid "Date Anchor"
401
  msgstr "Datum länk"
402
 
403
- #: breadcrumb_navxt_admin.php:566
404
  msgid "The anchor template for date breadcrumbs."
405
  msgstr "Länk mall för datum breadcrumbs."
406
 
407
- #: breadcrumb_navxt_admin.php:567
408
  msgid "Archive by Date Prefix"
409
  msgstr "Arkiv av datum Prefix"
410
 
411
- #: breadcrumb_navxt_admin.php:567
412
  msgid "Applied before the anchor on all date breadcrumbs."
413
  msgstr "Tillämpad innan länken på alla datum breadcrumbs."
414
 
415
- #: breadcrumb_navxt_admin.php:568
416
- #: breadcrumb_navxt_admin.php:578
417
  msgid "Archive by Date Suffix"
418
  msgstr "Arkiv av daum suffix"
419
 
420
- #: breadcrumb_navxt_admin.php:568
421
- #: breadcrumb_navxt_admin.php:578
422
  msgid "Applied after the anchor on all date breadcrumbs."
423
  msgstr "Tillämpad efter länken på alla datum breadcrumbs."
424
 
425
- #: breadcrumb_navxt_admin.php:573
426
  msgid "Miscellaneous"
427
  msgstr "Diverse"
428
 
429
- #: breadcrumb_navxt_admin.php:576
430
  msgid "Author Prefix"
431
  msgstr "Författar Prefix"
432
 
433
- #: breadcrumb_navxt_admin.php:577
434
  msgid "Author Suffix"
435
  msgstr "Författar Suffix"
436
 
437
- #: breadcrumb_navxt_admin.php:579
438
  msgid "Author Display Format"
439
  msgstr "Författar visnings format"
440
 
441
- #: breadcrumb_navxt_admin.php:579
442
  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."
443
  msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
444
 
445
- #: breadcrumb_navxt_admin.php:580
446
  msgid "Search Prefix"
447
  msgstr "Sök Prefix"
448
 
449
- #: breadcrumb_navxt_admin.php:581
450
  msgid "Search Suffix"
451
  msgstr "Sök Suffix"
452
 
453
- #: breadcrumb_navxt_admin.php:582
454
  msgid "Search Anchor"
455
  msgstr "Sök Länk"
456
 
457
- #: breadcrumb_navxt_admin.php:582
458
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
459
  msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
460
 
461
- #: breadcrumb_navxt_admin.php:583
462
  msgid "404 Title"
463
  msgstr "404 Titel"
464
 
465
- #: breadcrumb_navxt_admin.php:584
466
  msgid "404 Prefix"
467
  msgstr "404 Prefix"
468
 
469
- #: breadcrumb_navxt_admin.php:585
470
  msgid "404 Suffix"
471
  msgstr "404 Suffix"
472
 
473
- #: breadcrumb_navxt_admin.php:590
474
  msgid "Save Changes"
475
  msgstr "Spara ändringar"
476
 
477
- #: breadcrumb_navxt_class.php:149
478
  msgid "Blog"
479
  msgstr "Blogg"
480
 
481
- #: breadcrumb_navxt_class.php:151
482
- #: breadcrumb_navxt_class.php:155
483
- #: breadcrumb_navxt_class.php:179
484
- #: breadcrumb_navxt_class.php:193
485
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
486
- msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
487
-
488
- #: breadcrumb_navxt_class.php:168
489
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
490
  msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
491
 
492
- #: breadcrumb_navxt_class.php:209
493
  msgid "404"
494
  msgstr "404"
495
 
496
- #: breadcrumb_navxt_class.php:212
497
  msgid "Search results for &#39;"
498
  msgstr "Sök resultat för &#39;"
499
 
500
- #: breadcrumb_navxt_class.php:223
 
 
 
 
501
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
502
  msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
503
 
504
- #: breadcrumb_navxt_class.php:226
505
  msgid "Articles by: "
506
  msgstr "Artiklar av:"
507
 
508
- #: breadcrumb_navxt_class.php:230
509
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
510
  msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
511
 
512
- #: breadcrumb_navxt_class.php:239
513
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
514
  msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
515
 
516
- #: breadcrumb_navxt_class.php:242
517
  msgid "Archive by category &#39;"
518
  msgstr "Arkiv av kategorin &#39;"
519
 
520
- #: breadcrumb_navxt_class.php:246
521
  msgid "Archive by tag &#39;"
522
  msgstr "Arkiv av tagg &#39;"
523
 
524
- #: breadcrumb_navxt_class.php:249
525
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
526
  msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
527
 
528
- #: breadcrumb_navxt_class.php:500
529
  msgid "Untagged"
530
  msgstr "Otaggad"
531
 
@@ -533,56 +549,93 @@ msgstr "Otaggad"
533
  msgid "Adds a breadcrumb trail to your sidebar"
534
  msgstr "Lägger till breadcrumb till din sidebar"
535
 
536
- #: breadcrumb_navxt_widget.php:66
537
  msgid "Title:"
538
  msgstr "Titel:"
539
 
540
- #: breadcrumb_navxt_widget.php:71
541
  msgid "Output trail as a list"
542
  msgstr "Skriv ut breadcrumb som en lista"
543
 
544
- #: breadcrumb_navxt_widget.php:73
545
  msgid "Link the breadcrumbs"
546
  msgstr "Länka Breadcrumb"
547
 
548
- #: breadcrumb_navxt_widget.php:75
549
  msgid "Reverse the order of the trail"
550
  msgstr "Omvänd ordning i breadcrumb"
551
 
552
- #: mtekk_admin_class.php:137
 
 
 
 
 
 
 
 
553
  msgid "Settings"
554
  msgstr "Inställningar"
555
 
556
- #: mtekk_admin_class.php:259
557
  msgid "Settings successfully imported from the uploaded file."
558
  msgstr "Inställningarna importerades framgångsrikt från filen."
559
 
560
- #: mtekk_admin_class.php:264
 
 
 
 
561
  msgid "Importing settings from file failed."
562
  msgstr "Importering av inställningar från fil misslyckades."
563
 
564
- #: mtekk_admin_class.php:283
565
  msgid "Settings successfully reset to the default values."
566
  msgstr "Inställningarna återställdes till standardvärdena."
567
 
568
- #: mtekk_admin_class.php:313
 
 
 
 
 
 
 
 
 
 
 
 
569
  #, php-format
570
  msgid "Get help with \"%s\""
571
  msgstr "Få hjälp med \"%s\""
572
 
573
- #: mtekk_admin_class.php:394
574
  msgid "Import/Export/Reset Settings"
575
  msgstr "Importera/Exportera/Återställ inställningar"
576
 
577
- #: mtekk_admin_class.php:395
578
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
579
  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."
580
 
581
- #: mtekk_admin_class.php:398
582
  msgid "Settings File"
583
  msgstr "Inställnings fil"
584
 
585
- #: mtekk_admin_class.php:401
586
  msgid "Select a XML settings file to upload and import settings from."
587
  msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
588
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 08:02+0100\n"
7
+ "Last-Translator: Spathon <patrik@spathon.se>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
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:112
23
  msgid "Insufficient privileges to proceed."
24
  msgstr "Otillräcklig privilegier för att fortsätta."
25
 
26
+ #: breadcrumb_navxt_admin.php:189
27
+ #: breadcrumb_navxt_admin.php:280
28
+ #: breadcrumb_navxt_admin.php:591
29
+ #: breadcrumb_navxt_class.php:156
30
+ #: breadcrumb_navxt_class.php:160
31
+ #: breadcrumb_navxt_class.php:184
32
+ #: breadcrumb_navxt_class.php:198
33
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
34
+ msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
35
 
36
+ #: breadcrumb_navxt_admin.php:349
37
  msgid "Settings successfully saved."
38
  msgstr "Inställningarna sparade."
39
 
40
+ #: breadcrumb_navxt_admin.php:349
41
+ msgid "Undo the options save."
42
+ msgstr "Ångra sparade inställningar."
43
+
44
+ #: breadcrumb_navxt_admin.php:372
45
  #, php-format
46
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
47
  msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
48
 
49
+ #: breadcrumb_navxt_admin.php:373
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr "Gå till Breadcrumb NavXT online dokumentation"
52
 
53
+ #: breadcrumb_navxt_admin.php:459
54
+ #: mtekk_admin_class.php:444
 
 
 
 
 
 
 
 
55
  msgid "Import"
56
  msgstr "Importera"
57
 
58
+ #: breadcrumb_navxt_admin.php:459
59
+ #: mtekk_admin_class.php:445
60
  msgid "Export"
61
  msgstr "Exportera"
62
 
63
+ #: breadcrumb_navxt_admin.php:459
64
+ #: mtekk_admin_class.php:446
65
  msgid "Reset"
66
  msgstr "Återställ"
67
 
68
+ #: breadcrumb_navxt_admin.php:481
69
  msgid "Breadcrumb NavXT Settings"
70
  msgstr "Breadcrumb NavXT Inställningar"
71
 
72
+ #: breadcrumb_navxt_admin.php:489
73
  msgid "General"
74
  msgstr "Allmänt"
75
 
76
+ #: breadcrumb_navxt_admin.php:492
77
  msgid "Breadcrumb Separator"
78
  msgstr "Breadcrumb separator"
79
 
80
+ #: breadcrumb_navxt_admin.php:492
81
  msgid "Placed in between each breadcrumb."
82
  msgstr "Placeras i mellan varje breadcrumb."
83
 
84
+ #: breadcrumb_navxt_admin.php:493
85
  msgid "Breadcrumb Max Title Length"
86
  msgstr "Breadcrumb max titel längd"
87
 
88
+ #: breadcrumb_navxt_admin.php:497
89
  msgid "Home Breadcrumb"
90
  msgstr "Hem Breadcrumb"
91
 
92
+ #: breadcrumb_navxt_admin.php:502
93
  msgid "Place the home breadcrumb in the trail."
94
  msgstr "Placera hem breadcrumb i spåret."
95
 
96
+ #: breadcrumb_navxt_admin.php:507
97
  msgid "Home Title: "
98
  msgstr "Hem titel: "
99
 
100
+ #: breadcrumb_navxt_admin.php:515
101
  msgid "Blog Breadcrumb"
102
  msgstr "Blogg breadcrumb"
103
 
104
+ #: breadcrumb_navxt_admin.php:515
105
  msgid "Place the blog breadcrumb in the trail."
106
  msgstr "Placera blogg breadcrumb i spåret."
107
 
108
+ #: breadcrumb_navxt_admin.php:516
109
  msgid "Home Prefix"
110
  msgstr "Hem Prefix"
111
 
112
+ #: breadcrumb_navxt_admin.php:517
113
  msgid "Home Suffix"
114
  msgstr "hem Suffix"
115
 
116
+ #: breadcrumb_navxt_admin.php:518
117
  msgid "Home Anchor"
118
  msgstr "Hem Länk "
119
 
120
+ #: breadcrumb_navxt_admin.php:518
121
  msgid "The anchor template for the home breadcrumb."
122
  msgstr "Länk mall för hem breadcrumb."
123
 
124
+ #: breadcrumb_navxt_admin.php:519
125
  msgid "Blog Anchor"
126
  msgstr "Blogg länk"
127
 
128
+ #: breadcrumb_navxt_admin.php:519
129
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
130
  msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
131
 
132
+ #: breadcrumb_navxt_admin.php:524
133
  msgid "Current Item"
134
  msgstr "Nuvarande punkt"
135
 
136
+ #: breadcrumb_navxt_admin.php:527
137
  msgid "Link Current Item"
138
  msgstr "Länk Nuvarande punkt"
139
 
140
+ #: breadcrumb_navxt_admin.php:527
141
  msgid "Yes"
142
  msgstr "Ja"
143
 
144
+ #: breadcrumb_navxt_admin.php:528
145
  msgid "Current Item Prefix"
146
  msgstr "Nuvarande punkt Prefix"
147
 
148
+ #: breadcrumb_navxt_admin.php:528
149
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
150
  msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
151
 
152
+ #: breadcrumb_navxt_admin.php:529
153
  msgid "Current Item Suffix"
154
  msgstr "Nuvarande punkt Suffix"
155
 
156
+ #: breadcrumb_navxt_admin.php:529
157
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
158
  msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
159
 
160
+ #: breadcrumb_navxt_admin.php:530
161
  msgid "Current Item Anchor"
162
  msgstr "Nuvarande punkt Länk"
163
 
164
+ #: breadcrumb_navxt_admin.php:530
165
  msgid "The anchor template for current item breadcrumbs."
166
  msgstr "Länk mall för nuvarande punkt breadcrumbs."
167
 
168
+ #: breadcrumb_navxt_admin.php:531
169
  msgid "Paged Breadcrumb"
170
  msgstr ""
171
 
172
+ #: breadcrumb_navxt_admin.php:531
173
  msgid "Include the paged breadcrumb in the breadcrumb trail."
174
  msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
175
 
176
+ #: breadcrumb_navxt_admin.php:531
177
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
178
  msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
179
 
180
+ #: breadcrumb_navxt_admin.php:532
181
  msgid "Paged Prefix"
182
  msgstr ""
183
 
184
+ #: breadcrumb_navxt_admin.php:533
185
  msgid "Paged Suffix"
186
  msgstr ""
187
 
188
+ #: breadcrumb_navxt_admin.php:538
189
  msgid "Posts &amp; Pages"
190
  msgstr "Inlägg &amp; Sidor"
191
 
192
+ #: breadcrumb_navxt_admin.php:541
193
  msgid "Post Prefix"
194
  msgstr "Inläggs Prefix"
195
 
196
+ #: breadcrumb_navxt_admin.php:542
197
  msgid "Post Suffix"
198
  msgstr "Inläggs Suffix"
199
 
200
+ #: breadcrumb_navxt_admin.php:543
201
  msgid "Post Anchor"
202
  msgstr "Inläggs Länk"
203
 
204
+ #: breadcrumb_navxt_admin.php:543
205
  msgid "The anchor template for post breadcrumbs."
206
  msgstr "Länk mall för inläggs breadcrumbs."
207
 
208
+ #: breadcrumb_navxt_admin.php:544
209
  msgid "Post Taxonomy Display"
210
  msgstr "Inläggs taxonomi visning"
211
 
212
+ #: breadcrumb_navxt_admin.php:544
213
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
214
  msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
215
 
216
+ #: breadcrumb_navxt_admin.php:548
217
  msgid "Post Taxonomy"
218
  msgstr "Inäggs taxonomi"
219
 
220
+ #: breadcrumb_navxt_admin.php:552
221
+ #: breadcrumb_navxt_admin.php:650
222
  msgid "Categories"
223
  msgstr "Kategorier"
224
 
225
+ #: breadcrumb_navxt_admin.php:553
226
  msgid "Dates"
227
  msgstr "Datum"
228
 
229
+ #: breadcrumb_navxt_admin.php:554
230
+ #: breadcrumb_navxt_admin.php:662
231
  msgid "Tags"
232
  msgstr "Taggar"
233
 
234
+ #: breadcrumb_navxt_admin.php:555
235
  msgid "Pages"
236
  msgstr "Sidor"
237
 
238
+ #: breadcrumb_navxt_admin.php:566
239
+ #: breadcrumb_navxt_admin.php:640
240
  msgid "The taxonomy which the breadcrumb trail will show."
241
  msgstr "Den taxonomi som breadcrumb kommer att visa."
242
 
243
+ #: breadcrumb_navxt_admin.php:570
244
  msgid "Page Prefix"
245
  msgstr "Sido Prefix"
246
 
247
+ #: breadcrumb_navxt_admin.php:571
248
  msgid "Page Suffix"
249
  msgstr "Sido Suffix"
250
 
251
+ #: breadcrumb_navxt_admin.php:572
252
  msgid "Page Anchor"
253
  msgstr "Sido Länk"
254
 
255
+ #: breadcrumb_navxt_admin.php:572
256
  msgid "The anchor template for page breadcrumbs."
257
  msgstr "Länk mall för sido breadcrumbs."
258
 
259
+ #: breadcrumb_navxt_admin.php:573
260
  msgid "Attachment Prefix"
261
  msgstr ""
262
 
263
+ #: breadcrumb_navxt_admin.php:574
264
  msgid "Attachment Suffix"
265
  msgstr ""
266
 
267
+ #: breadcrumb_navxt_admin.php:616
268
+ #: breadcrumb_navxt_admin.php:699
269
+ #, php-format
270
+ msgid "%s Prefix"
271
+ msgstr "%s Prefix"
272
+
273
+ #: breadcrumb_navxt_admin.php:617
274
+ #: breadcrumb_navxt_admin.php:700
275
+ #, php-format
276
+ msgid "%s Suffix"
277
+ msgstr "%s Suffix"
278
+
279
+ #: breadcrumb_navxt_admin.php:618
280
+ #: breadcrumb_navxt_admin.php:701
281
+ #, php-format
282
+ msgid "%s Anchor"
283
+ msgstr "%s Länk"
284
+
285
+ #: breadcrumb_navxt_admin.php:618
286
+ #: breadcrumb_navxt_admin.php:701
287
+ #, php-format
288
+ msgid "The anchor template for %s breadcrumbs."
289
+ msgstr "Länk mall för %s breadcrumbs."
290
+
291
+ #: breadcrumb_navxt_admin.php:622
292
+ #, php-format
293
+ msgid "%s Taxonomy Display"
294
+ msgstr "%s Ttaxonomi visning"
295
+
296
+ #: breadcrumb_navxt_admin.php:622
297
+ #, php-format
298
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
299
+ msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
300
+
301
+ #: breadcrumb_navxt_admin.php:626
302
+ #, php-format
303
+ msgid "%s Taxonomy"
304
+ msgstr "%s Taxonomi"
305
+
306
+ #: breadcrumb_navxt_admin.php:653
307
  msgid "Category Prefix"
308
  msgstr "Kategori prefix"
309
 
310
+ #: breadcrumb_navxt_admin.php:653
311
  msgid "Applied before the anchor on all category breadcrumbs."
312
  msgstr "Tillämpad innan länken på alla kategori breadcrumb"
313
 
314
+ #: breadcrumb_navxt_admin.php:654
315
  msgid "Category Suffix"
316
  msgstr "Kategori Suffix"
317
 
318
+ #: breadcrumb_navxt_admin.php:654
319
  msgid "Applied after the anchor on all category breadcrumbs."
320
  msgstr "Tillämpad efter länken på alla kategori breadcrumb"
321
 
322
+ #: breadcrumb_navxt_admin.php:655
323
  msgid "Category Anchor"
324
  msgstr "Kategori länk"
325
 
326
+ #: breadcrumb_navxt_admin.php:655
327
  msgid "The anchor template for category breadcrumbs."
328
  msgstr "länk mall för kategori breadcrumbs"
329
 
330
+ #: breadcrumb_navxt_admin.php:656
331
  msgid "Archive by Category Prefix"
332
  msgstr "Arkiv av kategori prefix"
333
 
334
+ #: breadcrumb_navxt_admin.php:656
335
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
336
  msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
337
 
338
+ #: breadcrumb_navxt_admin.php:657
339
  msgid "Archive by Category Suffix"
340
  msgstr "Arkiv av Kategori Suffix"
341
 
342
+ #: breadcrumb_navxt_admin.php:657
343
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
344
  msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
345
 
346
+ #: breadcrumb_navxt_admin.php:665
347
  msgid "Tag Prefix"
348
  msgstr "Tagg Prefix"
349
 
350
+ #: breadcrumb_navxt_admin.php:665
351
  msgid "Applied before the anchor on all tag breadcrumbs."
352
  msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
353
 
354
+ #: breadcrumb_navxt_admin.php:666
355
  msgid "Tag Suffix"
356
  msgstr "Tag Suffix"
357
 
358
+ #: breadcrumb_navxt_admin.php:666
359
  msgid "Applied after the anchor on all tag breadcrumbs."
360
  msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
361
 
362
+ #: breadcrumb_navxt_admin.php:667
363
  msgid "Tag Anchor"
364
  msgstr "Tagg Länk"
365
 
366
+ #: breadcrumb_navxt_admin.php:667
367
  msgid "The anchor template for tag breadcrumbs."
368
  msgstr "Länk mall för tagg breadcrumbs."
369
 
370
+ #: breadcrumb_navxt_admin.php:668
371
  msgid "Archive by Tag Prefix"
372
  msgstr "Arkiv av Tagg Prefix"
373
 
374
+ #: breadcrumb_navxt_admin.php:668
375
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
376
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
377
 
378
+ #: breadcrumb_navxt_admin.php:669
379
  msgid "Archive by Tag Suffix"
380
  msgstr "Arkiv av Tagg Suffix"
381
 
382
+ #: breadcrumb_navxt_admin.php:669
383
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
384
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
385
 
386
+ #: breadcrumb_navxt_admin.php:699
 
 
 
 
 
387
  #, php-format
388
  msgid "Applied before the anchor on all %s breadcrumbs."
389
  msgstr "Tillämpad innan länken på alla %s breadcrumbs."
390
 
391
+ #: breadcrumb_navxt_admin.php:700
 
 
 
 
 
392
  #, php-format
393
  msgid "Applied after the anchor on all %s breadcrumbs."
394
  msgstr "Tillämpad efter länken på alla %s breadcrumbs."
395
 
396
+ #: breadcrumb_navxt_admin.php:702
 
 
 
 
 
 
 
 
 
 
397
  #, php-format
398
  msgid "Archive by %s Prefix"
399
  msgstr "Arkiv av %s Prefix"
400
 
401
+ #: breadcrumb_navxt_admin.php:702
402
  #, php-format
403
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
404
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
405
 
406
+ #: breadcrumb_navxt_admin.php:703
407
  #, php-format
408
  msgid "Archive by %s Suffix"
409
  msgstr "Arkiv av %s Suffix"
410
 
411
+ #: breadcrumb_navxt_admin.php:703
412
  #, php-format
413
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
414
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
415
 
416
+ #: breadcrumb_navxt_admin.php:712
417
  msgid "Date Archives"
418
  msgstr "Datum Arkiv"
419
 
420
+ #: breadcrumb_navxt_admin.php:715
421
  msgid "Date Anchor"
422
  msgstr "Datum länk"
423
 
424
+ #: breadcrumb_navxt_admin.php:715
425
  msgid "The anchor template for date breadcrumbs."
426
  msgstr "Länk mall för datum breadcrumbs."
427
 
428
+ #: breadcrumb_navxt_admin.php:716
429
  msgid "Archive by Date Prefix"
430
  msgstr "Arkiv av datum Prefix"
431
 
432
+ #: breadcrumb_navxt_admin.php:716
433
  msgid "Applied before the anchor on all date breadcrumbs."
434
  msgstr "Tillämpad innan länken på alla datum breadcrumbs."
435
 
436
+ #: breadcrumb_navxt_admin.php:717
 
437
  msgid "Archive by Date Suffix"
438
  msgstr "Arkiv av daum suffix"
439
 
440
+ #: breadcrumb_navxt_admin.php:717
 
441
  msgid "Applied after the anchor on all date breadcrumbs."
442
  msgstr "Tillämpad efter länken på alla datum breadcrumbs."
443
 
444
+ #: breadcrumb_navxt_admin.php:722
445
  msgid "Miscellaneous"
446
  msgstr "Diverse"
447
 
448
+ #: breadcrumb_navxt_admin.php:725
449
  msgid "Author Prefix"
450
  msgstr "Författar Prefix"
451
 
452
+ #: breadcrumb_navxt_admin.php:726
453
  msgid "Author Suffix"
454
  msgstr "Författar Suffix"
455
 
456
+ #: breadcrumb_navxt_admin.php:727
457
  msgid "Author Display Format"
458
  msgstr "Författar visnings format"
459
 
460
+ #: breadcrumb_navxt_admin.php:727
461
  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."
462
  msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
463
 
464
+ #: breadcrumb_navxt_admin.php:728
465
  msgid "Search Prefix"
466
  msgstr "Sök Prefix"
467
 
468
+ #: breadcrumb_navxt_admin.php:729
469
  msgid "Search Suffix"
470
  msgstr "Sök Suffix"
471
 
472
+ #: breadcrumb_navxt_admin.php:730
473
  msgid "Search Anchor"
474
  msgstr "Sök Länk"
475
 
476
+ #: breadcrumb_navxt_admin.php:730
477
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
478
  msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
479
 
480
+ #: breadcrumb_navxt_admin.php:731
481
  msgid "404 Title"
482
  msgstr "404 Titel"
483
 
484
+ #: breadcrumb_navxt_admin.php:732
485
  msgid "404 Prefix"
486
  msgstr "404 Prefix"
487
 
488
+ #: breadcrumb_navxt_admin.php:733
489
  msgid "404 Suffix"
490
  msgstr "404 Suffix"
491
 
492
+ #: breadcrumb_navxt_admin.php:738
493
  msgid "Save Changes"
494
  msgstr "Spara ändringar"
495
 
496
+ #: breadcrumb_navxt_class.php:154
497
  msgid "Blog"
498
  msgstr "Blogg"
499
 
500
+ #: breadcrumb_navxt_class.php:173
 
 
 
 
 
 
 
501
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
502
  msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
503
 
504
+ #: breadcrumb_navxt_class.php:214
505
  msgid "404"
506
  msgstr "404"
507
 
508
+ #: breadcrumb_navxt_class.php:217
509
  msgid "Search results for &#39;"
510
  msgstr "Sök resultat för &#39;"
511
 
512
+ #: breadcrumb_navxt_class.php:221
513
+ msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
514
+ msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
515
+
516
+ #: breadcrumb_navxt_class.php:228
517
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
518
  msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
519
 
520
+ #: breadcrumb_navxt_class.php:231
521
  msgid "Articles by: "
522
  msgstr "Artiklar av:"
523
 
524
+ #: breadcrumb_navxt_class.php:235
525
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
526
  msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
527
 
528
+ #: breadcrumb_navxt_class.php:244
529
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
530
  msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
531
 
532
+ #: breadcrumb_navxt_class.php:247
533
  msgid "Archive by category &#39;"
534
  msgstr "Arkiv av kategorin &#39;"
535
 
536
+ #: breadcrumb_navxt_class.php:251
537
  msgid "Archive by tag &#39;"
538
  msgstr "Arkiv av tagg &#39;"
539
 
540
+ #: breadcrumb_navxt_class.php:254
541
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
542
  msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
543
 
544
+ #: breadcrumb_navxt_class.php:425
545
  msgid "Untagged"
546
  msgstr "Otaggad"
547
 
549
  msgid "Adds a breadcrumb trail to your sidebar"
550
  msgstr "Lägger till breadcrumb till din sidebar"
551
 
552
+ #: breadcrumb_navxt_widget.php:72
553
  msgid "Title:"
554
  msgstr "Titel:"
555
 
556
+ #: breadcrumb_navxt_widget.php:77
557
  msgid "Output trail as a list"
558
  msgstr "Skriv ut breadcrumb som en lista"
559
 
560
+ #: breadcrumb_navxt_widget.php:79
561
  msgid "Link the breadcrumbs"
562
  msgstr "Länka Breadcrumb"
563
 
564
+ #: breadcrumb_navxt_widget.php:81
565
  msgid "Reverse the order of the trail"
566
  msgstr "Omvänd ordning i breadcrumb"
567
 
568
+ #: breadcrumb_navxt_widget.php:83
569
+ msgid "Hide the trail on the front page"
570
+ msgstr "Göm spåret på förstasidan"
571
+
572
+ #: mtekk_admin_class.php:56
573
+ msgid "Undo"
574
+ msgstr "Ångra"
575
+
576
+ #: mtekk_admin_class.php:150
577
  msgid "Settings"
578
  msgstr "Inställningar"
579
 
580
+ #: mtekk_admin_class.php:284
581
  msgid "Settings successfully imported from the uploaded file."
582
  msgstr "Inställningarna importerades framgångsrikt från filen."
583
 
584
+ #: mtekk_admin_class.php:284
585
+ msgid "Undo the options import."
586
+ msgstr "Ångra inställnings importeringen."
587
+
588
+ #: mtekk_admin_class.php:289
589
  msgid "Importing settings from file failed."
590
  msgstr "Importering av inställningar från fil misslyckades."
591
 
592
+ #: mtekk_admin_class.php:310
593
  msgid "Settings successfully reset to the default values."
594
  msgstr "Inställningarna återställdes till standardvärdena."
595
 
596
+ #: mtekk_admin_class.php:310
597
+ msgid "Undo the options reset."
598
+ msgstr "Ångra inställnings återställningen."
599
+
600
+ #: mtekk_admin_class.php:324
601
+ msgid "Settings successfully undid the last operation."
602
+ msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
603
+
604
+ #: mtekk_admin_class.php:324
605
+ msgid "Undo the last undo operation."
606
+ msgstr "Ångra senaste operationen."
607
+
608
+ #: mtekk_admin_class.php:354
609
  #, php-format
610
  msgid "Get help with \"%s\""
611
  msgstr "Få hjälp med \"%s\""
612
 
613
+ #: mtekk_admin_class.php:435
614
  msgid "Import/Export/Reset Settings"
615
  msgstr "Importera/Exportera/Återställ inställningar"
616
 
617
+ #: mtekk_admin_class.php:436
618
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
619
  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."
620
 
621
+ #: mtekk_admin_class.php:439
622
  msgid "Settings File"
623
  msgstr "Inställnings fil"
624
 
625
+ #: mtekk_admin_class.php:442
626
  msgid "Select a XML settings file to upload and import settings from."
627
  msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
628
 
629
+ #~ msgid ""
630
+ #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
631
+ #~ "the default values. Are you sure you want to continue?"
632
+ #~ msgstr ""
633
+ #~ "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna "
634
+ #~ "med standardvärden. Är du säker på att du vill fortsätta?"
635
+
636
+ #~ msgid ""
637
+ #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
638
+ #~ "the imported values. Are you sure you want to continue?"
639
+ #~ msgstr ""
640
+ #~ "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna "
641
+ #~ "med importerade värden. Är du säker på att du vill fortsätta?"
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-05-09 01:08+0000\n"
6
- "PO-Revision-Date: 2010-05-08 20:10-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"
@@ -19,513 +19,529 @@ msgstr ""
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:110
23
  msgid "Insufficient privileges to proceed."
24
  msgstr ""
25
 
26
- #: breadcrumb_navxt_admin.php:135
27
- #: breadcrumb_navxt_class.php:216
28
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
 
 
 
 
 
29
  msgstr ""
30
 
31
- #: breadcrumb_navxt_admin.php:249
32
  msgid "Settings successfully saved."
33
  msgstr ""
34
 
35
- #: breadcrumb_navxt_admin.php:272
 
 
 
 
36
  #, php-format
37
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
38
  msgstr ""
39
 
40
- #: breadcrumb_navxt_admin.php:273
41
  msgid "Go to the Breadcrumb NavXT online documentation"
42
  msgstr ""
43
 
44
- #: breadcrumb_navxt_admin.php:327
45
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
46
- msgstr ""
47
-
48
- #: breadcrumb_navxt_admin.php:330
49
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
50
- msgstr ""
51
-
52
- #: breadcrumb_navxt_admin.php:381
53
- #: mtekk_admin_class.php:403
54
  msgid "Import"
55
  msgstr ""
56
 
57
- #: breadcrumb_navxt_admin.php:381
58
- #: mtekk_admin_class.php:404
59
  msgid "Export"
60
  msgstr ""
61
 
62
- #: breadcrumb_navxt_admin.php:381
63
- #: mtekk_admin_class.php:405
64
  msgid "Reset"
65
  msgstr ""
66
 
67
- #: breadcrumb_navxt_admin.php:405
68
  msgid "Breadcrumb NavXT Settings"
69
  msgstr ""
70
 
71
- #: breadcrumb_navxt_admin.php:413
72
  msgid "General"
73
  msgstr ""
74
 
75
- #: breadcrumb_navxt_admin.php:416
76
  msgid "Breadcrumb Separator"
77
  msgstr ""
78
 
79
- #: breadcrumb_navxt_admin.php:416
80
  msgid "Placed in between each breadcrumb."
81
  msgstr ""
82
 
83
- #: breadcrumb_navxt_admin.php:417
84
  msgid "Breadcrumb Max Title Length"
85
  msgstr ""
86
 
87
- #: breadcrumb_navxt_admin.php:421
88
  msgid "Home Breadcrumb"
89
  msgstr ""
90
 
91
- #: breadcrumb_navxt_admin.php:426
92
  msgid "Place the home breadcrumb in the trail."
93
  msgstr ""
94
 
95
- #: breadcrumb_navxt_admin.php:431
96
  msgid "Home Title: "
97
  msgstr ""
98
 
99
- #: breadcrumb_navxt_admin.php:439
100
  msgid "Blog Breadcrumb"
101
  msgstr ""
102
 
103
- #: breadcrumb_navxt_admin.php:439
104
  msgid "Place the blog breadcrumb in the trail."
105
  msgstr ""
106
 
107
- #: breadcrumb_navxt_admin.php:440
108
  msgid "Home Prefix"
109
  msgstr ""
110
 
111
- #: breadcrumb_navxt_admin.php:441
112
  msgid "Home Suffix"
113
  msgstr ""
114
 
115
- #: breadcrumb_navxt_admin.php:442
116
  msgid "Home Anchor"
117
  msgstr ""
118
 
119
- #: breadcrumb_navxt_admin.php:442
120
  msgid "The anchor template for the home breadcrumb."
121
  msgstr ""
122
 
123
- #: breadcrumb_navxt_admin.php:443
124
  msgid "Blog Anchor"
125
  msgstr ""
126
 
127
- #: breadcrumb_navxt_admin.php:443
128
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
129
  msgstr ""
130
 
131
- #: breadcrumb_navxt_admin.php:448
132
  msgid "Current Item"
133
  msgstr ""
134
 
135
- #: breadcrumb_navxt_admin.php:451
136
  msgid "Link Current Item"
137
  msgstr ""
138
 
139
- #: breadcrumb_navxt_admin.php:451
140
  msgid "Yes"
141
  msgstr ""
142
 
143
- #: breadcrumb_navxt_admin.php:452
144
  msgid "Current Item Prefix"
145
  msgstr ""
146
 
147
- #: breadcrumb_navxt_admin.php:452
148
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
149
  msgstr ""
150
 
151
- #: breadcrumb_navxt_admin.php:453
152
  msgid "Current Item Suffix"
153
  msgstr ""
154
 
155
- #: breadcrumb_navxt_admin.php:453
156
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
157
  msgstr ""
158
 
159
- #: breadcrumb_navxt_admin.php:454
160
  msgid "Current Item Anchor"
161
  msgstr ""
162
 
163
- #: breadcrumb_navxt_admin.php:454
164
  msgid "The anchor template for current item breadcrumbs."
165
  msgstr ""
166
 
167
- #: breadcrumb_navxt_admin.php:455
168
  msgid "Paged Breadcrumb"
169
  msgstr ""
170
 
171
- #: breadcrumb_navxt_admin.php:455
172
  msgid "Include the paged breadcrumb in the breadcrumb trail."
173
  msgstr ""
174
 
175
- #: breadcrumb_navxt_admin.php:455
176
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
177
  msgstr ""
178
 
179
- #: breadcrumb_navxt_admin.php:456
180
  msgid "Paged Prefix"
181
  msgstr ""
182
 
183
- #: breadcrumb_navxt_admin.php:457
184
  msgid "Paged Suffix"
185
  msgstr ""
186
 
187
- #: breadcrumb_navxt_admin.php:462
188
  msgid "Posts &amp; Pages"
189
  msgstr ""
190
 
191
- #: breadcrumb_navxt_admin.php:465
192
  msgid "Post Prefix"
193
  msgstr ""
194
 
195
- #: breadcrumb_navxt_admin.php:466
196
  msgid "Post Suffix"
197
  msgstr ""
198
 
199
- #: breadcrumb_navxt_admin.php:467
200
  msgid "Post Anchor"
201
  msgstr ""
202
 
203
- #: breadcrumb_navxt_admin.php:467
204
  msgid "The anchor template for post breadcrumbs."
205
  msgstr ""
206
 
207
- #: breadcrumb_navxt_admin.php:468
208
  msgid "Post Taxonomy Display"
209
  msgstr ""
210
 
211
- #: breadcrumb_navxt_admin.php:468
212
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
213
  msgstr ""
214
 
215
- #: breadcrumb_navxt_admin.php:472
216
  msgid "Post Taxonomy"
217
  msgstr ""
218
 
219
- #: breadcrumb_navxt_admin.php:476
220
- #: breadcrumb_navxt_admin.php:503
221
  msgid "Categories"
222
  msgstr ""
223
 
224
- #: breadcrumb_navxt_admin.php:477
225
  msgid "Dates"
226
  msgstr ""
227
 
228
- #: breadcrumb_navxt_admin.php:478
229
- #: breadcrumb_navxt_admin.php:515
230
  msgid "Tags"
231
  msgstr ""
232
 
233
- #: breadcrumb_navxt_admin.php:479
234
  msgid "Pages"
235
  msgstr ""
236
 
237
- #: breadcrumb_navxt_admin.php:490
 
238
  msgid "The taxonomy which the breadcrumb trail will show."
239
  msgstr ""
240
 
241
- #: breadcrumb_navxt_admin.php:494
242
  msgid "Page Prefix"
243
  msgstr ""
244
 
245
- #: breadcrumb_navxt_admin.php:495
246
  msgid "Page Suffix"
247
  msgstr ""
248
 
249
- #: breadcrumb_navxt_admin.php:496
250
  msgid "Page Anchor"
251
  msgstr ""
252
 
253
- #: breadcrumb_navxt_admin.php:496
254
  msgid "The anchor template for page breadcrumbs."
255
  msgstr ""
256
 
257
- #: breadcrumb_navxt_admin.php:497
258
  msgid "Attachment Prefix"
259
  msgstr ""
260
 
261
- #: breadcrumb_navxt_admin.php:498
262
  msgid "Attachment Suffix"
263
  msgstr ""
264
 
265
- #: breadcrumb_navxt_admin.php:506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  msgid "Category Prefix"
267
  msgstr ""
268
 
269
- #: breadcrumb_navxt_admin.php:506
270
  msgid "Applied before the anchor on all category breadcrumbs."
271
  msgstr ""
272
 
273
- #: breadcrumb_navxt_admin.php:507
274
  msgid "Category Suffix"
275
  msgstr ""
276
 
277
- #: breadcrumb_navxt_admin.php:507
278
  msgid "Applied after the anchor on all category breadcrumbs."
279
  msgstr ""
280
 
281
- #: breadcrumb_navxt_admin.php:508
282
  msgid "Category Anchor"
283
  msgstr ""
284
 
285
- #: breadcrumb_navxt_admin.php:508
286
  msgid "The anchor template for category breadcrumbs."
287
  msgstr ""
288
 
289
- #: breadcrumb_navxt_admin.php:509
290
  msgid "Archive by Category Prefix"
291
  msgstr ""
292
 
293
- #: breadcrumb_navxt_admin.php:509
294
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
295
  msgstr ""
296
 
297
- #: breadcrumb_navxt_admin.php:510
298
  msgid "Archive by Category Suffix"
299
  msgstr ""
300
 
301
- #: breadcrumb_navxt_admin.php:510
302
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
303
  msgstr ""
304
 
305
- #: breadcrumb_navxt_admin.php:518
306
  msgid "Tag Prefix"
307
  msgstr ""
308
 
309
- #: breadcrumb_navxt_admin.php:518
310
  msgid "Applied before the anchor on all tag breadcrumbs."
311
  msgstr ""
312
 
313
- #: breadcrumb_navxt_admin.php:519
314
  msgid "Tag Suffix"
315
  msgstr ""
316
 
317
- #: breadcrumb_navxt_admin.php:519
318
  msgid "Applied after the anchor on all tag breadcrumbs."
319
  msgstr ""
320
 
321
- #: breadcrumb_navxt_admin.php:520
322
  msgid "Tag Anchor"
323
  msgstr ""
324
 
325
- #: breadcrumb_navxt_admin.php:520
326
  msgid "The anchor template for tag breadcrumbs."
327
  msgstr ""
328
 
329
- #: breadcrumb_navxt_admin.php:521
330
  msgid "Archive by Tag Prefix"
331
  msgstr ""
332
 
333
- #: breadcrumb_navxt_admin.php:521
334
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
335
  msgstr ""
336
 
337
- #: breadcrumb_navxt_admin.php:522
338
  msgid "Archive by Tag Suffix"
339
  msgstr ""
340
 
341
- #: breadcrumb_navxt_admin.php:522
342
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
343
  msgstr ""
344
 
345
- #: breadcrumb_navxt_admin.php:550
346
- #, php-format
347
- msgid "%s Prefix"
348
- msgstr ""
349
-
350
- #: breadcrumb_navxt_admin.php:550
351
  #, php-format
352
  msgid "Applied before the anchor on all %s breadcrumbs."
353
  msgstr ""
354
 
355
- #: breadcrumb_navxt_admin.php:551
356
- #, php-format
357
- msgid "%s Suffix"
358
- msgstr ""
359
-
360
- #: breadcrumb_navxt_admin.php:551
361
  #, php-format
362
  msgid "Applied after the anchor on all %s breadcrumbs."
363
  msgstr ""
364
 
365
- #: breadcrumb_navxt_admin.php:552
366
- #, php-format
367
- msgid "%s Anchor"
368
- msgstr ""
369
-
370
- #: breadcrumb_navxt_admin.php:552
371
- #, php-format
372
- msgid "The anchor template for %s breadcrumbs."
373
- msgstr ""
374
-
375
- #: breadcrumb_navxt_admin.php:553
376
  #, php-format
377
  msgid "Archive by %s Prefix"
378
  msgstr ""
379
 
380
- #: breadcrumb_navxt_admin.php:553
381
  #, php-format
382
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
383
  msgstr ""
384
 
385
- #: breadcrumb_navxt_admin.php:554
386
  #, php-format
387
  msgid "Archive by %s Suffix"
388
  msgstr ""
389
 
390
- #: breadcrumb_navxt_admin.php:554
391
  #, php-format
392
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
393
  msgstr ""
394
 
395
- #: breadcrumb_navxt_admin.php:563
396
  msgid "Date Archives"
397
  msgstr ""
398
 
399
- #: breadcrumb_navxt_admin.php:566
400
  msgid "Date Anchor"
401
  msgstr ""
402
 
403
- #: breadcrumb_navxt_admin.php:566
404
  msgid "The anchor template for date breadcrumbs."
405
  msgstr ""
406
 
407
- #: breadcrumb_navxt_admin.php:567
408
  msgid "Archive by Date Prefix"
409
  msgstr ""
410
 
411
- #: breadcrumb_navxt_admin.php:567
412
  msgid "Applied before the anchor on all date breadcrumbs."
413
  msgstr ""
414
 
415
- #: breadcrumb_navxt_admin.php:568
416
- #: breadcrumb_navxt_admin.php:578
417
  msgid "Archive by Date Suffix"
418
  msgstr ""
419
 
420
- #: breadcrumb_navxt_admin.php:568
421
- #: breadcrumb_navxt_admin.php:578
422
  msgid "Applied after the anchor on all date breadcrumbs."
423
  msgstr ""
424
 
425
- #: breadcrumb_navxt_admin.php:573
426
  msgid "Miscellaneous"
427
  msgstr ""
428
 
429
- #: breadcrumb_navxt_admin.php:576
430
  msgid "Author Prefix"
431
  msgstr ""
432
 
433
- #: breadcrumb_navxt_admin.php:577
434
  msgid "Author Suffix"
435
  msgstr ""
436
 
437
- #: breadcrumb_navxt_admin.php:579
438
  msgid "Author Display Format"
439
  msgstr ""
440
 
441
- #: breadcrumb_navxt_admin.php:579
442
  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."
443
  msgstr ""
444
 
445
- #: breadcrumb_navxt_admin.php:580
446
  msgid "Search Prefix"
447
  msgstr ""
448
 
449
- #: breadcrumb_navxt_admin.php:581
450
  msgid "Search Suffix"
451
  msgstr ""
452
 
453
- #: breadcrumb_navxt_admin.php:582
454
  msgid "Search Anchor"
455
  msgstr ""
456
 
457
- #: breadcrumb_navxt_admin.php:582
458
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
459
  msgstr ""
460
 
461
- #: breadcrumb_navxt_admin.php:583
462
  msgid "404 Title"
463
  msgstr ""
464
 
465
- #: breadcrumb_navxt_admin.php:584
466
  msgid "404 Prefix"
467
  msgstr ""
468
 
469
- #: breadcrumb_navxt_admin.php:585
470
  msgid "404 Suffix"
471
  msgstr ""
472
 
473
- #: breadcrumb_navxt_admin.php:590
474
  msgid "Save Changes"
475
  msgstr ""
476
 
477
- #: breadcrumb_navxt_class.php:149
478
  msgid "Blog"
479
  msgstr ""
480
 
481
- #: breadcrumb_navxt_class.php:151
482
- #: breadcrumb_navxt_class.php:155
483
- #: breadcrumb_navxt_class.php:179
484
- #: breadcrumb_navxt_class.php:193
485
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
486
- msgstr ""
487
-
488
- #: breadcrumb_navxt_class.php:168
489
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
490
  msgstr ""
491
 
492
- #: breadcrumb_navxt_class.php:209
493
  msgid "404"
494
  msgstr ""
495
 
496
- #: breadcrumb_navxt_class.php:212
497
  msgid "Search results for &#39;"
498
  msgstr ""
499
 
500
- #: breadcrumb_navxt_class.php:223
 
 
 
 
501
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
502
  msgstr ""
503
 
504
- #: breadcrumb_navxt_class.php:226
505
  msgid "Articles by: "
506
  msgstr ""
507
 
508
- #: breadcrumb_navxt_class.php:230
509
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
510
  msgstr ""
511
 
512
- #: breadcrumb_navxt_class.php:239
513
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
514
  msgstr ""
515
 
516
- #: breadcrumb_navxt_class.php:242
517
  msgid "Archive by category &#39;"
518
  msgstr ""
519
 
520
- #: breadcrumb_navxt_class.php:246
521
  msgid "Archive by tag &#39;"
522
  msgstr ""
523
 
524
- #: breadcrumb_navxt_class.php:249
525
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
526
  msgstr ""
527
 
528
- #: breadcrumb_navxt_class.php:500
529
  msgid "Untagged"
530
  msgstr ""
531
 
@@ -533,56 +549,80 @@ msgstr ""
533
  msgid "Adds a breadcrumb trail to your sidebar"
534
  msgstr ""
535
 
536
- #: breadcrumb_navxt_widget.php:66
537
  msgid "Title:"
538
  msgstr ""
539
 
540
- #: breadcrumb_navxt_widget.php:71
541
  msgid "Output trail as a list"
542
  msgstr ""
543
 
544
- #: breadcrumb_navxt_widget.php:73
545
  msgid "Link the breadcrumbs"
546
  msgstr ""
547
 
548
- #: breadcrumb_navxt_widget.php:75
549
  msgid "Reverse the order of the trail"
550
  msgstr ""
551
 
552
- #: mtekk_admin_class.php:137
 
 
 
 
 
 
 
 
553
  msgid "Settings"
554
  msgstr ""
555
 
556
- #: mtekk_admin_class.php:259
557
  msgid "Settings successfully imported from the uploaded file."
558
  msgstr ""
559
 
560
- #: mtekk_admin_class.php:264
 
 
 
 
561
  msgid "Importing settings from file failed."
562
  msgstr ""
563
 
564
- #: mtekk_admin_class.php:283
565
  msgid "Settings successfully reset to the default values."
566
  msgstr ""
567
 
568
- #: mtekk_admin_class.php:313
 
 
 
 
 
 
 
 
 
 
 
 
569
  #, php-format
570
  msgid "Get help with \"%s\""
571
  msgstr ""
572
 
573
- #: mtekk_admin_class.php:394
574
  msgid "Import/Export/Reset Settings"
575
  msgstr ""
576
 
577
- #: mtekk_admin_class.php:395
578
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
579
  msgstr ""
580
 
581
- #: mtekk_admin_class.php:398
582
  msgid "Settings File"
583
  msgstr ""
584
 
585
- #: mtekk_admin_class.php:401
586
  msgid "Select a XML settings file to upload and import settings from."
587
  msgstr ""
588
 
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-12 21:21-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"
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:112
23
  msgid "Insufficient privileges to proceed."
24
  msgstr ""
25
 
26
+ #: breadcrumb_navxt_admin.php:189
27
+ #: breadcrumb_navxt_admin.php:280
28
+ #: breadcrumb_navxt_admin.php:591
29
+ #: breadcrumb_navxt_class.php:156
30
+ #: breadcrumb_navxt_class.php:160
31
+ #: breadcrumb_navxt_class.php:184
32
+ #: breadcrumb_navxt_class.php:198
33
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
34
  msgstr ""
35
 
36
+ #: breadcrumb_navxt_admin.php:349
37
  msgid "Settings successfully saved."
38
  msgstr ""
39
 
40
+ #: breadcrumb_navxt_admin.php:349
41
+ msgid "Undo the options save."
42
+ msgstr ""
43
+
44
+ #: breadcrumb_navxt_admin.php:372
45
  #, php-format
46
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
47
  msgstr ""
48
 
49
+ #: breadcrumb_navxt_admin.php:373
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr ""
52
 
53
+ #: breadcrumb_navxt_admin.php:459
54
+ #: mtekk_admin_class.php:444
 
 
 
 
 
 
 
 
55
  msgid "Import"
56
  msgstr ""
57
 
58
+ #: breadcrumb_navxt_admin.php:459
59
+ #: mtekk_admin_class.php:445
60
  msgid "Export"
61
  msgstr ""
62
 
63
+ #: breadcrumb_navxt_admin.php:459
64
+ #: mtekk_admin_class.php:446
65
  msgid "Reset"
66
  msgstr ""
67
 
68
+ #: breadcrumb_navxt_admin.php:481
69
  msgid "Breadcrumb NavXT Settings"
70
  msgstr ""
71
 
72
+ #: breadcrumb_navxt_admin.php:489
73
  msgid "General"
74
  msgstr ""
75
 
76
+ #: breadcrumb_navxt_admin.php:492
77
  msgid "Breadcrumb Separator"
78
  msgstr ""
79
 
80
+ #: breadcrumb_navxt_admin.php:492
81
  msgid "Placed in between each breadcrumb."
82
  msgstr ""
83
 
84
+ #: breadcrumb_navxt_admin.php:493
85
  msgid "Breadcrumb Max Title Length"
86
  msgstr ""
87
 
88
+ #: breadcrumb_navxt_admin.php:497
89
  msgid "Home Breadcrumb"
90
  msgstr ""
91
 
92
+ #: breadcrumb_navxt_admin.php:502
93
  msgid "Place the home breadcrumb in the trail."
94
  msgstr ""
95
 
96
+ #: breadcrumb_navxt_admin.php:507
97
  msgid "Home Title: "
98
  msgstr ""
99
 
100
+ #: breadcrumb_navxt_admin.php:515
101
  msgid "Blog Breadcrumb"
102
  msgstr ""
103
 
104
+ #: breadcrumb_navxt_admin.php:515
105
  msgid "Place the blog breadcrumb in the trail."
106
  msgstr ""
107
 
108
+ #: breadcrumb_navxt_admin.php:516
109
  msgid "Home Prefix"
110
  msgstr ""
111
 
112
+ #: breadcrumb_navxt_admin.php:517
113
  msgid "Home Suffix"
114
  msgstr ""
115
 
116
+ #: breadcrumb_navxt_admin.php:518
117
  msgid "Home Anchor"
118
  msgstr ""
119
 
120
+ #: breadcrumb_navxt_admin.php:518
121
  msgid "The anchor template for the home breadcrumb."
122
  msgstr ""
123
 
124
+ #: breadcrumb_navxt_admin.php:519
125
  msgid "Blog Anchor"
126
  msgstr ""
127
 
128
+ #: breadcrumb_navxt_admin.php:519
129
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
130
  msgstr ""
131
 
132
+ #: breadcrumb_navxt_admin.php:524
133
  msgid "Current Item"
134
  msgstr ""
135
 
136
+ #: breadcrumb_navxt_admin.php:527
137
  msgid "Link Current Item"
138
  msgstr ""
139
 
140
+ #: breadcrumb_navxt_admin.php:527
141
  msgid "Yes"
142
  msgstr ""
143
 
144
+ #: breadcrumb_navxt_admin.php:528
145
  msgid "Current Item Prefix"
146
  msgstr ""
147
 
148
+ #: breadcrumb_navxt_admin.php:528
149
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
150
  msgstr ""
151
 
152
+ #: breadcrumb_navxt_admin.php:529
153
  msgid "Current Item Suffix"
154
  msgstr ""
155
 
156
+ #: breadcrumb_navxt_admin.php:529
157
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
158
  msgstr ""
159
 
160
+ #: breadcrumb_navxt_admin.php:530
161
  msgid "Current Item Anchor"
162
  msgstr ""
163
 
164
+ #: breadcrumb_navxt_admin.php:530
165
  msgid "The anchor template for current item breadcrumbs."
166
  msgstr ""
167
 
168
+ #: breadcrumb_navxt_admin.php:531
169
  msgid "Paged Breadcrumb"
170
  msgstr ""
171
 
172
+ #: breadcrumb_navxt_admin.php:531
173
  msgid "Include the paged breadcrumb in the breadcrumb trail."
174
  msgstr ""
175
 
176
+ #: breadcrumb_navxt_admin.php:531
177
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
178
  msgstr ""
179
 
180
+ #: breadcrumb_navxt_admin.php:532
181
  msgid "Paged Prefix"
182
  msgstr ""
183
 
184
+ #: breadcrumb_navxt_admin.php:533
185
  msgid "Paged Suffix"
186
  msgstr ""
187
 
188
+ #: breadcrumb_navxt_admin.php:538
189
  msgid "Posts &amp; Pages"
190
  msgstr ""
191
 
192
+ #: breadcrumb_navxt_admin.php:541
193
  msgid "Post Prefix"
194
  msgstr ""
195
 
196
+ #: breadcrumb_navxt_admin.php:542
197
  msgid "Post Suffix"
198
  msgstr ""
199
 
200
+ #: breadcrumb_navxt_admin.php:543
201
  msgid "Post Anchor"
202
  msgstr ""
203
 
204
+ #: breadcrumb_navxt_admin.php:543
205
  msgid "The anchor template for post breadcrumbs."
206
  msgstr ""
207
 
208
+ #: breadcrumb_navxt_admin.php:544
209
  msgid "Post Taxonomy Display"
210
  msgstr ""
211
 
212
+ #: breadcrumb_navxt_admin.php:544
213
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
214
  msgstr ""
215
 
216
+ #: breadcrumb_navxt_admin.php:548
217
  msgid "Post Taxonomy"
218
  msgstr ""
219
 
220
+ #: breadcrumb_navxt_admin.php:552
221
+ #: breadcrumb_navxt_admin.php:650
222
  msgid "Categories"
223
  msgstr ""
224
 
225
+ #: breadcrumb_navxt_admin.php:553
226
  msgid "Dates"
227
  msgstr ""
228
 
229
+ #: breadcrumb_navxt_admin.php:554
230
+ #: breadcrumb_navxt_admin.php:662
231
  msgid "Tags"
232
  msgstr ""
233
 
234
+ #: breadcrumb_navxt_admin.php:555
235
  msgid "Pages"
236
  msgstr ""
237
 
238
+ #: breadcrumb_navxt_admin.php:566
239
+ #: breadcrumb_navxt_admin.php:640
240
  msgid "The taxonomy which the breadcrumb trail will show."
241
  msgstr ""
242
 
243
+ #: breadcrumb_navxt_admin.php:570
244
  msgid "Page Prefix"
245
  msgstr ""
246
 
247
+ #: breadcrumb_navxt_admin.php:571
248
  msgid "Page Suffix"
249
  msgstr ""
250
 
251
+ #: breadcrumb_navxt_admin.php:572
252
  msgid "Page Anchor"
253
  msgstr ""
254
 
255
+ #: breadcrumb_navxt_admin.php:572
256
  msgid "The anchor template for page breadcrumbs."
257
  msgstr ""
258
 
259
+ #: breadcrumb_navxt_admin.php:573
260
  msgid "Attachment Prefix"
261
  msgstr ""
262
 
263
+ #: breadcrumb_navxt_admin.php:574
264
  msgid "Attachment Suffix"
265
  msgstr ""
266
 
267
+ #: breadcrumb_navxt_admin.php:616
268
+ #: breadcrumb_navxt_admin.php:699
269
+ #, php-format
270
+ msgid "%s Prefix"
271
+ msgstr ""
272
+
273
+ #: breadcrumb_navxt_admin.php:617
274
+ #: breadcrumb_navxt_admin.php:700
275
+ #, php-format
276
+ msgid "%s Suffix"
277
+ msgstr ""
278
+
279
+ #: breadcrumb_navxt_admin.php:618
280
+ #: breadcrumb_navxt_admin.php:701
281
+ #, php-format
282
+ msgid "%s Anchor"
283
+ msgstr ""
284
+
285
+ #: breadcrumb_navxt_admin.php:618
286
+ #: breadcrumb_navxt_admin.php:701
287
+ #, php-format
288
+ msgid "The anchor template for %s breadcrumbs."
289
+ msgstr ""
290
+
291
+ #: breadcrumb_navxt_admin.php:622
292
+ #, php-format
293
+ msgid "%s Taxonomy Display"
294
+ msgstr ""
295
+
296
+ #: breadcrumb_navxt_admin.php:622
297
+ #, php-format
298
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
299
+ msgstr ""
300
+
301
+ #: breadcrumb_navxt_admin.php:626
302
+ #, php-format
303
+ msgid "%s Taxonomy"
304
+ msgstr ""
305
+
306
+ #: breadcrumb_navxt_admin.php:653
307
  msgid "Category Prefix"
308
  msgstr ""
309
 
310
+ #: breadcrumb_navxt_admin.php:653
311
  msgid "Applied before the anchor on all category breadcrumbs."
312
  msgstr ""
313
 
314
+ #: breadcrumb_navxt_admin.php:654
315
  msgid "Category Suffix"
316
  msgstr ""
317
 
318
+ #: breadcrumb_navxt_admin.php:654
319
  msgid "Applied after the anchor on all category breadcrumbs."
320
  msgstr ""
321
 
322
+ #: breadcrumb_navxt_admin.php:655
323
  msgid "Category Anchor"
324
  msgstr ""
325
 
326
+ #: breadcrumb_navxt_admin.php:655
327
  msgid "The anchor template for category breadcrumbs."
328
  msgstr ""
329
 
330
+ #: breadcrumb_navxt_admin.php:656
331
  msgid "Archive by Category Prefix"
332
  msgstr ""
333
 
334
+ #: breadcrumb_navxt_admin.php:656
335
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
336
  msgstr ""
337
 
338
+ #: breadcrumb_navxt_admin.php:657
339
  msgid "Archive by Category Suffix"
340
  msgstr ""
341
 
342
+ #: breadcrumb_navxt_admin.php:657
343
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
344
  msgstr ""
345
 
346
+ #: breadcrumb_navxt_admin.php:665
347
  msgid "Tag Prefix"
348
  msgstr ""
349
 
350
+ #: breadcrumb_navxt_admin.php:665
351
  msgid "Applied before the anchor on all tag breadcrumbs."
352
  msgstr ""
353
 
354
+ #: breadcrumb_navxt_admin.php:666
355
  msgid "Tag Suffix"
356
  msgstr ""
357
 
358
+ #: breadcrumb_navxt_admin.php:666
359
  msgid "Applied after the anchor on all tag breadcrumbs."
360
  msgstr ""
361
 
362
+ #: breadcrumb_navxt_admin.php:667
363
  msgid "Tag Anchor"
364
  msgstr ""
365
 
366
+ #: breadcrumb_navxt_admin.php:667
367
  msgid "The anchor template for tag breadcrumbs."
368
  msgstr ""
369
 
370
+ #: breadcrumb_navxt_admin.php:668
371
  msgid "Archive by Tag Prefix"
372
  msgstr ""
373
 
374
+ #: breadcrumb_navxt_admin.php:668
375
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
376
  msgstr ""
377
 
378
+ #: breadcrumb_navxt_admin.php:669
379
  msgid "Archive by Tag Suffix"
380
  msgstr ""
381
 
382
+ #: breadcrumb_navxt_admin.php:669
383
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
384
  msgstr ""
385
 
386
+ #: breadcrumb_navxt_admin.php:699
 
 
 
 
 
387
  #, php-format
388
  msgid "Applied before the anchor on all %s breadcrumbs."
389
  msgstr ""
390
 
391
+ #: breadcrumb_navxt_admin.php:700
 
 
 
 
 
392
  #, php-format
393
  msgid "Applied after the anchor on all %s breadcrumbs."
394
  msgstr ""
395
 
396
+ #: breadcrumb_navxt_admin.php:702
 
 
 
 
 
 
 
 
 
 
397
  #, php-format
398
  msgid "Archive by %s Prefix"
399
  msgstr ""
400
 
401
+ #: breadcrumb_navxt_admin.php:702
402
  #, php-format
403
  msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
404
  msgstr ""
405
 
406
+ #: breadcrumb_navxt_admin.php:703
407
  #, php-format
408
  msgid "Archive by %s Suffix"
409
  msgstr ""
410
 
411
+ #: breadcrumb_navxt_admin.php:703
412
  #, php-format
413
  msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
414
  msgstr ""
415
 
416
+ #: breadcrumb_navxt_admin.php:712
417
  msgid "Date Archives"
418
  msgstr ""
419
 
420
+ #: breadcrumb_navxt_admin.php:715
421
  msgid "Date Anchor"
422
  msgstr ""
423
 
424
+ #: breadcrumb_navxt_admin.php:715
425
  msgid "The anchor template for date breadcrumbs."
426
  msgstr ""
427
 
428
+ #: breadcrumb_navxt_admin.php:716
429
  msgid "Archive by Date Prefix"
430
  msgstr ""
431
 
432
+ #: breadcrumb_navxt_admin.php:716
433
  msgid "Applied before the anchor on all date breadcrumbs."
434
  msgstr ""
435
 
436
+ #: breadcrumb_navxt_admin.php:717
 
437
  msgid "Archive by Date Suffix"
438
  msgstr ""
439
 
440
+ #: breadcrumb_navxt_admin.php:717
 
441
  msgid "Applied after the anchor on all date breadcrumbs."
442
  msgstr ""
443
 
444
+ #: breadcrumb_navxt_admin.php:722
445
  msgid "Miscellaneous"
446
  msgstr ""
447
 
448
+ #: breadcrumb_navxt_admin.php:725
449
  msgid "Author Prefix"
450
  msgstr ""
451
 
452
+ #: breadcrumb_navxt_admin.php:726
453
  msgid "Author Suffix"
454
  msgstr ""
455
 
456
+ #: breadcrumb_navxt_admin.php:727
457
  msgid "Author Display Format"
458
  msgstr ""
459
 
460
+ #: breadcrumb_navxt_admin.php:727
461
  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."
462
  msgstr ""
463
 
464
+ #: breadcrumb_navxt_admin.php:728
465
  msgid "Search Prefix"
466
  msgstr ""
467
 
468
+ #: breadcrumb_navxt_admin.php:729
469
  msgid "Search Suffix"
470
  msgstr ""
471
 
472
+ #: breadcrumb_navxt_admin.php:730
473
  msgid "Search Anchor"
474
  msgstr ""
475
 
476
+ #: breadcrumb_navxt_admin.php:730
477
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
478
  msgstr ""
479
 
480
+ #: breadcrumb_navxt_admin.php:731
481
  msgid "404 Title"
482
  msgstr ""
483
 
484
+ #: breadcrumb_navxt_admin.php:732
485
  msgid "404 Prefix"
486
  msgstr ""
487
 
488
+ #: breadcrumb_navxt_admin.php:733
489
  msgid "404 Suffix"
490
  msgstr ""
491
 
492
+ #: breadcrumb_navxt_admin.php:738
493
  msgid "Save Changes"
494
  msgstr ""
495
 
496
+ #: breadcrumb_navxt_class.php:154
497
  msgid "Blog"
498
  msgstr ""
499
 
500
+ #: breadcrumb_navxt_class.php:173
 
 
 
 
 
 
 
501
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
502
  msgstr ""
503
 
504
+ #: breadcrumb_navxt_class.php:214
505
  msgid "404"
506
  msgstr ""
507
 
508
+ #: breadcrumb_navxt_class.php:217
509
  msgid "Search results for &#39;"
510
  msgstr ""
511
 
512
+ #: breadcrumb_navxt_class.php:221
513
+ msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
514
+ msgstr ""
515
+
516
+ #: breadcrumb_navxt_class.php:228
517
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
518
  msgstr ""
519
 
520
+ #: breadcrumb_navxt_class.php:231
521
  msgid "Articles by: "
522
  msgstr ""
523
 
524
+ #: breadcrumb_navxt_class.php:235
525
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
526
  msgstr ""
527
 
528
+ #: breadcrumb_navxt_class.php:244
529
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
530
  msgstr ""
531
 
532
+ #: breadcrumb_navxt_class.php:247
533
  msgid "Archive by category &#39;"
534
  msgstr ""
535
 
536
+ #: breadcrumb_navxt_class.php:251
537
  msgid "Archive by tag &#39;"
538
  msgstr ""
539
 
540
+ #: breadcrumb_navxt_class.php:254
541
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
542
  msgstr ""
543
 
544
+ #: breadcrumb_navxt_class.php:425
545
  msgid "Untagged"
546
  msgstr ""
547
 
549
  msgid "Adds a breadcrumb trail to your sidebar"
550
  msgstr ""
551
 
552
+ #: breadcrumb_navxt_widget.php:72
553
  msgid "Title:"
554
  msgstr ""
555
 
556
+ #: breadcrumb_navxt_widget.php:77
557
  msgid "Output trail as a list"
558
  msgstr ""
559
 
560
+ #: breadcrumb_navxt_widget.php:79
561
  msgid "Link the breadcrumbs"
562
  msgstr ""
563
 
564
+ #: breadcrumb_navxt_widget.php:81
565
  msgid "Reverse the order of the trail"
566
  msgstr ""
567
 
568
+ #: breadcrumb_navxt_widget.php:83
569
+ msgid "Hide the trail on the front page"
570
+ msgstr ""
571
+
572
+ #: mtekk_admin_class.php:56
573
+ msgid "Undo"
574
+ msgstr ""
575
+
576
+ #: mtekk_admin_class.php:150
577
  msgid "Settings"
578
  msgstr ""
579
 
580
+ #: mtekk_admin_class.php:284
581
  msgid "Settings successfully imported from the uploaded file."
582
  msgstr ""
583
 
584
+ #: mtekk_admin_class.php:284
585
+ msgid "Undo the options import."
586
+ msgstr ""
587
+
588
+ #: mtekk_admin_class.php:289
589
  msgid "Importing settings from file failed."
590
  msgstr ""
591
 
592
+ #: mtekk_admin_class.php:310
593
  msgid "Settings successfully reset to the default values."
594
  msgstr ""
595
 
596
+ #: mtekk_admin_class.php:310
597
+ msgid "Undo the options reset."
598
+ msgstr ""
599
+
600
+ #: mtekk_admin_class.php:324
601
+ msgid "Settings successfully undid the last operation."
602
+ msgstr ""
603
+
604
+ #: mtekk_admin_class.php:324
605
+ msgid "Undo the last undo operation."
606
+ msgstr ""
607
+
608
+ #: mtekk_admin_class.php:354
609
  #, php-format
610
  msgid "Get help with \"%s\""
611
  msgstr ""
612
 
613
+ #: mtekk_admin_class.php:435
614
  msgid "Import/Export/Reset Settings"
615
  msgstr ""
616
 
617
+ #: mtekk_admin_class.php:436
618
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
619
  msgstr ""
620
 
621
+ #: mtekk_admin_class.php:439
622
  msgid "Settings File"
623
  msgstr ""
624
 
625
+ #: mtekk_admin_class.php:442
626
  msgid "Select a XML settings file to upload and import settings from."
627
  msgstr ""
628
 
mtekk_admin_class.php CHANGED
@@ -46,7 +46,14 @@ abstract class mtekk_admin
46
  }
47
  function admin_url()
48
  {
49
- return admin_url('options-general.php?page=' .$this->identifier);
 
 
 
 
 
 
 
50
  }
51
  function init()
52
  {
@@ -74,6 +81,12 @@ abstract class mtekk_admin
74
  //Run the import function on init if import form has been submitted
75
  $this->opts_import();
76
  }
 
 
 
 
 
 
77
  //Add in the nice "settings" link to the plugins page
78
  add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
79
  //Register options
@@ -146,9 +159,38 @@ abstract class mtekk_admin
146
  function uninstall()
147
  {
148
  //Remove the option array setting
149
- $this->delete_option($this->unique_prefix . '_options');
150
  //Remove the version setting
151
- $this->delete_option($this->unique_prefix . '_version');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  }
153
  /**
154
  * opts_update
@@ -222,6 +264,8 @@ abstract class mtekk_admin
222
  }
223
  //Do a nonce check, prevent malicious link/form problems
224
  check_admin_referer($this->unique_prefix . '_admin_import_export');
 
 
225
  //Create a DOM document
226
  $dom = new DOMDocument('1.0', 'UTF-8');
227
  //We want to catch errors ourselves
@@ -229,6 +273,8 @@ abstract class mtekk_admin
229
  //Load the user uploaded file, handle failure gracefully
230
  if($dom->load($_FILES[$this->unique_prefix . '_admin_import_file']['tmp_name']))
231
  {
 
 
232
  //Have to use an xpath query otherwise we run into problems
233
  $xpath = new DOMXPath($dom);
234
  $option_sets = $xpath->query('plugin');
@@ -238,25 +284,21 @@ abstract class mtekk_admin
238
  //We only want to import options for only this plugin
239
  if($options->getAttribute('name') === $this->short_name)
240
  {
241
- //Do a quick version check
242
- list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
243
- list($major, $minor, $release) = explode('.', $options->getAttribute('version'));
244
- //We don't support using newer versioned option files in older releases
245
- if($plug_major == $major && $plug_minor >= $minor)
246
  {
247
- //Loop around all of the options
248
- foreach($options->getelementsByTagName('option') as $child)
249
- {
250
- //Place the option into the option array, DOMDocument decodes html entities for us
251
- $this->opt[$child->getAttribute('name')] = $child->nodeValue;
252
- }
253
  }
254
  }
255
  }
 
256
  //Commit the loaded options to the database
257
- $this->update_option($this->unique_prefix . '_options', $this->opt);
258
  //Everything was successful, let the user know
259
- $this->message['updated fade'][] = __('Settings successfully imported from the uploaded file.', $this->identifier);
260
  }
261
  else
262
  {
@@ -277,10 +319,26 @@ abstract class mtekk_admin
277
  {
278
  //Do a nonce check, prevent malicious link/form problems
279
  check_admin_referer($this->unique_prefix . '_admin_import_export');
280
- //Only needs this one line, will load in the hard coded default option values
281
- $this->update_option($this->unique_prefix . '_options', $this->opt);
 
 
282
  //Reset successful, let the user know
283
- $this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
  add_action('admin_notices', array($this, 'message'));
285
  }
286
  /**
@@ -400,9 +458,9 @@ abstract class mtekk_admin
400
  printf('<input type="file" name="%s_admin_import_file" id="%s_admin_import_file" size="32" /><br /><span class="setting-description">', $this->unique_prefix, $this->unique_prefix);
401
  _e('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt');
402
  echo '</span></td></tr></table><p class="submit">';
403
- printf('<input type="submit" class="button" name="%s_admin_import" value="' . __('Import', $this->identifier) . '" onclick="return %s_confirm(\'import\')" />', $this->unique_prefix, $this->unique_prefix);
404
- printf('<input type="submit" class="button" name="%s_admin_export" value="' . __('Export', $this->identifier) . '" />', $this->unique_prefix);
405
- printf('<input type="submit" class="button" name="%s_admin_reset" value="' . __('Reset', $this->identifier) . '" onclick="return %s_confirm(\'reset\')" />', $this->unique_prefix, $this->unique_prefix);
406
  echo '</p></fieldset></form></div>';
407
  }
408
  /**
@@ -431,6 +489,26 @@ abstract class mtekk_admin
431
  </tr>
432
  <?php
433
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
434
  /**
435
  * input_check
436
  *
46
  }
47
  function admin_url()
48
  {
49
+ return admin_url('options-general.php?page=' . $this->identifier);
50
+ }
51
+ function undo_anchor($title = '')
52
+ {
53
+ //Assemble our url, nonce and all
54
+ $url = wp_nonce_url($this->admin_url() . '&' . $this->unique_prefix . '_admin_undo=true', $this->unique_prefix . '_admin_undo');
55
+ //Return a valid Undo anchor
56
+ return ' <a title="' . $title . '" href="' . $url . '">' . __('Undo', $this->identifier) . '</a>';
57
  }
58
  function init()
59
  {
81
  //Run the import function on init if import form has been submitted
82
  $this->opts_import();
83
  }
84
+ //Admin Options rollback hook
85
+ else if(isset($_GET[$this->unique_prefix . '_admin_undo']))
86
+ {
87
+ //Run the rollback function on init if undo button has been pressed
88
+ $this->opts_undo();
89
+ }
90
  //Add in the nice "settings" link to the plugins page
91
  add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
92
  //Register options
159
  function uninstall()
160
  {
161
  //Remove the option array setting
162
+ delete_option($this->unique_prefix . '_options');
163
  //Remove the version setting
164
+ delete_option($this->unique_prefix . '_version');
165
+ }
166
+ /**
167
+ * import_hook
168
+ *
169
+ * Overidable, allows plugin authors to specify what to do for version migration
170
+ *
171
+ * @param array $opts
172
+ * @param string $version
173
+ */
174
+ function import_hook($opts, $version)
175
+ {
176
+ //Do a quick version check
177
+ list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
178
+ list($major, $minor, $release) = explode('.', $version);
179
+ //We don't support using newer versioned option files in older releases
180
+ if($plug_major == $major && $plug_minor >= $minor)
181
+ {
182
+ $this->opt = $opts;
183
+ }
184
+ }
185
+ /**
186
+ * opts_backup
187
+ *
188
+ * Synchronizes the backup options entry with the current options entry
189
+ */
190
+ function opts_backup()
191
+ {
192
+ //Set the backup options in the DB to the current options
193
+ update_option($this->unique_prefix . '_options_bk', get_option($this->unique_prefix . '_options'));
194
  }
195
  /**
196
  * opts_update
264
  }
265
  //Do a nonce check, prevent malicious link/form problems
266
  check_admin_referer($this->unique_prefix . '_admin_import_export');
267
+ //Set the backup options in the DB to the current options
268
+ $this->opts_backup();
269
  //Create a DOM document
270
  $dom = new DOMDocument('1.0', 'UTF-8');
271
  //We want to catch errors ourselves
273
  //Load the user uploaded file, handle failure gracefully
274
  if($dom->load($_FILES[$this->unique_prefix . '_admin_import_file']['tmp_name']))
275
  {
276
+ $opts_temp = array();
277
+ $version = '';
278
  //Have to use an xpath query otherwise we run into problems
279
  $xpath = new DOMXPath($dom);
280
  $option_sets = $xpath->query('plugin');
284
  //We only want to import options for only this plugin
285
  if($options->getAttribute('name') === $this->short_name)
286
  {
287
+ //Grab the file version
288
+ $version = explode('.', $options->getAttribute('version'));
289
+ //Loop around all of the options
290
+ foreach($options->getelementsByTagName('option') as $child)
 
291
  {
292
+ //Place the option into the option array, DOMDocument decodes html entities for us
293
+ $opts_temp[$child->getAttribute('name')] = $child->nodeValue;
 
 
 
 
294
  }
295
  }
296
  }
297
+ $this->import_hook($opts_temp, $version);
298
  //Commit the loaded options to the database
299
+ update_option($this->unique_prefix . '_options', $this->opt);
300
  //Everything was successful, let the user know
301
+ $this->message['updated fade'][] = __('Settings successfully imported from the uploaded file.', $this->identifier) . $this->undo_anchor(__('Undo the options import.', $this->identifier));
302
  }
303
  else
304
  {
319
  {
320
  //Do a nonce check, prevent malicious link/form problems
321
  check_admin_referer($this->unique_prefix . '_admin_import_export');
322
+ //Set the backup options in the DB to the current options
323
+ $this->opts_backup();
324
+ //Load in the hard coded default option values
325
+ update_option($this->unique_prefix . '_options', $this->opt);
326
  //Reset successful, let the user know
327
+ $this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier) . $this->undo_anchor(__('Undo the options reset.', $this->identifier));
328
+ add_action('admin_notices', array($this, 'message'));
329
+ }
330
+ function opts_undo()
331
+ {
332
+ //Do a nonce check, prevent malicious link/form problems
333
+ check_admin_referer($this->unique_prefix . '_admin_undo');
334
+ //Set the options array to the current options
335
+ $opt = get_option($this->unique_prefix . '_options');
336
+ //Set the options in the DB to the backup options
337
+ update_option($this->unique_prefix . '_options', get_option($this->unique_prefix . '_options_bk'));
338
+ //Set the backup options to the undid options
339
+ update_option($this->unique_prefix . '_options_bk', $opt);
340
+ //Send the success/undo message
341
+ $this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->undo_anchor(__('Undo the last undo operation.', $this->identifier));
342
  add_action('admin_notices', array($this, 'message'));
343
  }
344
  /**
458
  printf('<input type="file" name="%s_admin_import_file" id="%s_admin_import_file" size="32" /><br /><span class="setting-description">', $this->unique_prefix, $this->unique_prefix);
459
  _e('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt');
460
  echo '</span></td></tr></table><p class="submit">';
461
+ printf('<input type="submit" class="button" name="%s_admin_import" value="' . __('Import', $this->identifier) . '"/>', $this->unique_prefix, $this->unique_prefix);
462
+ printf('<input type="submit" class="button" name="%s_admin_export" value="' . __('Export', $this->identifier) . '"/>', $this->unique_prefix);
463
+ printf('<input type="submit" class="button" name="%s_admin_reset" value="' . __('Reset', $this->identifier) . '"/>', $this->unique_prefix, $this->unique_prefix);
464
  echo '</p></fieldset></form></div>';
465
  }
466
  /**
489
  </tr>
490
  <?php
491
  }
492
+ /**
493
+ * textbox
494
+ *
495
+ * This will output a well formed textbox
496
+ *
497
+ * @param string $label
498
+ * @param string $option
499
+ * @param string $rows [optional]
500
+ * @param bool $disable [optional]
501
+ * @param string $description [optional]
502
+ */
503
+ function textbox($label, $option, $rows = '3', $disable = false, $description = '')
504
+ {
505
+ $optid = $this->get_valid_id($option);?>
506
+ <p>
507
+ <label for="<?php echo $optid;?>"><?php echo $label;?></label>
508
+ </p>
509
+ <textarea rows="<?php echo $height;?>" 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 />
510
+ <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }
511
+ }
512
  /**
513
  * input_check
514
  *
readme.txt CHANGED
@@ -1,14 +1,14 @@
1
  === Breadcrumb NavXT ===
2
  Contributors: mtekk, hakre
3
  Tags: breadcrumb, navigation
4
- Requires at least: 2.8
5
- Tested up to: 3.0
6
- Stable tag: 3.5.1
7
  Adds breadcrumb navigation showing the visitor's path to their current location.
8
 
9
  == Description ==
10
 
11
- Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress blog. These breadcrumb trails are highly customizable to suit the needs of just about any blog. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users. Do note that Breadcrumb NavXT requires PHP5.
12
 
13
  = Translations =
14
 
@@ -22,15 +22,24 @@ Breadcrumb NavXT distributes with translations for the following languages:
22
  * Russian by Yuri Gribov
23
  * Swedish by Patrik Spathon
24
  * Italian by Luca Camellini
 
25
 
26
 
27
  Don't see your language on the list? Feel free to translate Breadcrumb NavXT and send John Havlik the translations.
28
 
29
  == Installation ==
30
 
31
- Please visit [Breadcrumb NavXT's](http://mtekk.weblogs.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
32
 
33
  == Changelog ==
 
 
 
 
 
 
 
 
34
  = 3.5.1 =
35
  * Bug fix: Fixed issue where a deactivation/activation cycle would reset all of the user specified settings.
36
  * Bug fix: Fixed issue where the archive by date suffix field did not save.
1
  === Breadcrumb NavXT ===
2
  Contributors: mtekk, hakre
3
  Tags: breadcrumb, navigation
4
+ Requires at least: 3.0
5
+ Tested up to: 3.0.1
6
+ Stable tag: 3.6.0
7
  Adds breadcrumb navigation showing the visitor's path to their current location.
8
 
9
  == Description ==
10
 
11
+ Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users. Do note that Breadcrumb NavXT requires PHP5.
12
 
13
  = Translations =
14
 
22
  * Russian by Yuri Gribov
23
  * Swedish by Patrik Spathon
24
  * Italian by Luca Camellini
25
+ * Japanese by Kazuhiro Terada
26
 
27
 
28
  Don't see your language on the list? Feel free to translate Breadcrumb NavXT and send John Havlik the translations.
29
 
30
  == Installation ==
31
 
32
+ 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.
33
 
34
  == Changelog ==
35
+ = 3.6.0 =
36
+ * New feature: Vastly improved support for WordPress custom post types.
37
+ * New feature: Can now restrict breadcrumb trail output for the front page in the included Widget.
38
+ * New feature: Can now undo setting saves, resets, and imports.
39
+ * New feature: Translations for Japanese now included thanks to Kazuhiro Terada.
40
+ * Bug fix: Fixed issue where the class element were not closed in a li opening tag.
41
+ * Bug fix: Safer handling of blank anchor templates.
42
+ * Bug fix: Fixed issue where the %title% tag in the current item anchor template would be trimmed.
43
  = 3.5.1 =
44
  * Bug fix: Fixed issue where a deactivation/activation cycle would reset all of the user specified settings.
45
  * Bug fix: Fixed issue where the archive by date suffix field did not save.