Breadcrumb NavXT - Version 4.2.0

Version Description

  • Behaviour change: Date archives are only available for the 'post' post type.
  • New feature: All Custom Post Types can now either use a post parent, or taxonomy based hierarchy.
  • New feature: Post Format archives are now supported.
  • New feature: Reorganized settings page with more responsive elements.
  • Bug fix: Widget will now display properly when told to include the paged breadcrumb on the main posts archive.
  • Bug fix: Using flat taxonomies as the post hierarchy no longer causes extraneous breadcrumb templates to be applied.
  • Bug fix: Mainsite link now works on posts and pages in multisite environments.
  • Bug fix: bcn_breadcrumb::title_trim() no longer cuts HTML encoded characters.
  • Bug fix: bcn_breadcrumb::title_trim() no longer trims the title when the title length is equal to the max length.
Download this release

Release Info

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

Code changes from version 4.1.0 to 4.2.0

breadcrumb_navxt_admin.php CHANGED
@@ -3,13 +3,12 @@
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: 4.1.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
10
  TextDomain: breadcrumb-navxt
11
  DomainPath: /languages/
12
-
13
  */
14
  /* Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
15
 
@@ -27,6 +26,7 @@ DomainPath: /languages/
27
  along with this program; if not, write to the Free Software
28
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
29
  */
 
30
  //Do a PHP version check, require 5.2 or newer
31
  if(version_compare(phpversion(), '5.2.0', '<'))
32
  {
@@ -61,7 +61,7 @@ if(!class_exists('mtekk_adminKit'))
61
  */
62
  class bcn_admin extends mtekk_adminKit
63
  {
64
- protected $version = '4.1.0';
65
  protected $full_name = 'Breadcrumb NavXT Settings';
66
  protected $short_name = 'Breadcrumb NavXT';
67
  protected $access_level = 'manage_options';
@@ -106,6 +106,8 @@ class bcn_admin extends mtekk_adminKit
106
  //First make sure our defaults are safe
107
  $this->find_posttypes($this->opt);
108
  $this->find_taxonomies($this->opt);
 
 
109
  }
110
  /**
111
  * Makes sure the current user can manage options to proceed
@@ -128,7 +130,7 @@ class bcn_admin extends mtekk_adminKit
128
  {
129
  global $wp_post_types;
130
  //If our version is not the same as in the db, time to update
131
- if($version !== $this->version)
132
  {
133
  //Upgrading to 3.8.1
134
  if(version_compare($version, '3.8.1', '<'))
@@ -148,7 +150,7 @@ class bcn_admin extends mtekk_adminKit
148
  //Handle all of our boolean options first, they're real easy, just add a 'b'
149
  if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
150
  {
151
- $this->breadcrumb_trail->opt['b'.$option] = $value;
152
  }
153
  //Handle migration of anchor templates to the templates
154
  else if(strpos($option, 'anchor') > 0)
@@ -308,7 +310,7 @@ class bcn_admin extends mtekk_adminKit
308
  //Let's call the parent version of the page, will handle our setting stuff
309
  parent::admin_page();
310
  ?>
311
- <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb-navxt'); ?></h2>
312
  <?php
313
  //We exit after the version check if there is an action the user needs to take before saving settings
314
  if(!$this->version_check(get_option($this->unique_prefix . '_version')))
@@ -320,12 +322,46 @@ class bcn_admin extends mtekk_adminKit
320
  <?php settings_fields('bcn_options');?>
321
  <div id="hasadmintabs">
322
  <fieldset id="general" class="bcn_options">
 
323
  <h3><?php _e('General', 'breadcrumb-navxt'); ?></h3>
324
  <table class="form-table">
325
  <?php
326
- $this->input_text(__('Breadcrumb Separator', 'breadcrumb-navxt'), 'hseparator', '32', false, __('Placed in between each breadcrumb.', 'breadcrumb-navxt'));
327
- $this->input_text(__('Breadcrumb Max Title Length', 'breadcrumb-navxt'), 'amax_title_length', '10');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  ?>
 
 
 
329
  <tr valign="top">
330
  <th scope="row">
331
  <?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?>
@@ -346,12 +382,22 @@ class bcn_admin extends mtekk_adminKit
346
  </td>
347
  </tr>
348
  <?php
349
- $this->input_text(__('Home Template', 'breadcrumb-navxt'), 'Hhome_template', '64', false, __('The template for the home breadcrumb.', 'breadcrumb-navxt'));
350
- $this->input_text(__('Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hhome_template_no_anchor', '64', false, __('The template for the home breadcrumb, used when the breadcrumb is not linked.', 'breadcrumb-navxt'));
 
 
 
 
 
 
351
  $this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
352
- $this->input_text(__('Blog Template', 'breadcrumb-navxt'), 'Hblog_template', '64', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb-navxt'));
353
- $this->input_text(__('Blog Template (Unlinked)', 'breadcrumb-navxt'), 'Hblog_template_no_anchor', '64', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
 
354
  ?>
 
 
 
355
  <tr valign="top">
356
  <th scope="row">
357
  <?php _e('Main Site Breadcrumb', 'breadcrumb-navxt'); ?>
@@ -373,74 +419,80 @@ class bcn_admin extends mtekk_adminKit
373
  </td>
374
  </tr>
375
  <?php
376
- $this->input_text(__('Main Site Home Template', 'breadcrumb-navxt'), 'Hmainsite_template', '64', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb-navxt'));
377
- $this->input_text(__('Main Site Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hmainsite_template_no_anchor', '64', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
 
378
  ?>
379
  </table>
 
380
  </fieldset>
381
- <fieldset id="current" class="bcn_options">
382
- <h3><?php _e('Current Item', 'breadcrumb-navxt'); ?></h3>
 
383
  <table class="form-table">
384
  <?php
385
- $this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes'));
386
- $this->input_check(__('Paged Breadcrumb', 'breadcrumb-navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb-navxt'));
387
- $this->input_text(__('Paged Template', 'breadcrumb-navxt'), 'Hpaged_template', '64', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
388
- ?>
389
- </table>
390
- </fieldset>
391
- <fieldset id="single" class="bcn_options">
392
- <h3><?php _e('Posts &amp; Pages', 'breadcrumb-navxt'); ?></h3>
393
- <table class="form-table">
394
- <?php
395
- $this->input_text(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', '64', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
396
- $this->input_text(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', '64', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
397
- $this->input_check(__('Post Taxonomy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'));
398
  ?>
399
  <tr valign="top">
400
  <th scope="row">
401
- <?php _e('Post Taxonomy', 'breadcrumb-navxt'); ?>
402
  </th>
403
  <td>
404
  <?php
405
  $this->input_radio('Spost_post_taxonomy_type', 'category', __('Categories'));
406
  $this->input_radio('Spost_post_taxonomy_type', 'date', __('Dates'));
407
  $this->input_radio('Spost_post_taxonomy_type', 'post_tag', __('Tags'));
408
- $this->input_radio('Spost_post_taxonomy_type', 'page', __('Pages'));
 
409
  //Loop through all of the taxonomies in the array
410
  foreach($wp_taxonomies as $taxonomy)
411
  {
 
 
 
 
 
412
  //We only want custom taxonomies
413
  if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
414
  {
415
- $this->input_radio('Spost_post_taxonomy_type', $taxonomy->name, mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8'));
416
  }
417
  }
418
  ?>
419
- <span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb-navxt'); ?></span>
420
  </td>
421
  </tr>
 
 
 
422
  <?php
423
- $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', '64', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
424
- $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', '64', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
425
- $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', '64', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
426
- $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', '64', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
427
  ?>
428
  </table>
429
- </fieldset>
430
  <?php
431
  //Loop through all of the post types in the array
432
  foreach($wp_post_types as $post_type)
433
  {
 
 
 
 
 
434
  //We only want custom post types
435
  if(!$post_type->_builtin)
436
  {
 
437
  ?>
438
- <fieldset id="post_<?php echo $post_type->name ?>" class="bcn_options">
439
  <h3><?php echo $post_type->labels->singular_name; ?></h3>
440
  <table class="form-table">
441
  <?php
442
- $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template', '64', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))));
443
- $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template_no_anchor', '64', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))));
444
  $optid = $this->get_valid_id('apost_' . $post_type->name . '_root');
445
  ?>
446
  <tr valign="top">
@@ -452,20 +504,25 @@ class bcn_admin extends mtekk_adminKit
452
  </td>
453
  </tr>
454
  <?php
455
- $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))), !$post_type->has_archive);
456
- $this->input_check(sprintf(__('%s Taxonomy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $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))));
457
  ?>
458
  <tr valign="top">
459
  <th scope="row">
460
- <?php printf(__('%s Taxonomy', 'breadcrumb-navxt'), $post_type->labels->singular_name); ?>
461
  </th>
462
  <td>
463
  <?php
464
- $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'date', __('Dates'));
465
- $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Pages'));
466
  //Loop through all of the taxonomies in the array
467
  foreach($wp_taxonomies as $taxonomy)
468
  {
 
 
 
 
 
469
  //We only want custom taxonomies
470
  if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
471
  {
@@ -473,61 +530,87 @@ class bcn_admin extends mtekk_adminKit
473
  }
474
  }
475
  ?>
476
- <span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb-navxt'); ?></span>
477
  </td>
478
  </tr>
479
  </table>
480
- </fieldset>
481
  <?php
482
  }
483
- }?>
 
 
 
484
  <fieldset id="tax" class="bcn_options alttab">
485
- <h3><?php _e('Categories &amp; Tags', 'breadcrumb-navxt'); ?></h3>
 
486
  <table class="form-table">
487
  <?php
488
- $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Hcategory_template', '64', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
489
- $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Hcategory_template_no_anchor', '64', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
490
- $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Hpost_tag_template', '64', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
491
- $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_tag_template_no_anchor', '64', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
 
 
 
 
 
 
 
 
 
 
 
 
492
  ?>
493
  </table>
494
- </fieldset>
495
  <?php
496
  //Loop through all of the taxonomies in the array
497
  foreach($wp_taxonomies as $taxonomy)
498
  {
 
 
 
 
 
499
  //We only want custom taxonomies
500
  if(!$taxonomy->_builtin)
501
  {
 
502
  ?>
503
- <fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options alttab">
504
- <h3><?php echo mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8'); ?></h3>
505
  <table class="form-table">
506
  <?php
507
- $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template', '64', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), strtolower(__($taxonomy->label))));
508
- $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template_no_anchor', '64', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), strtolower(__($taxonomy->label))));
509
  ?>
510
  </table>
511
- </fieldset>
512
  <?php
513
  }
514
  }
515
- ?>
 
516
  <fieldset id="miscellaneous" class="bcn_options">
517
- <h3><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
 
518
  <table class="form-table">
519
  <?php
520
- $this->input_text(__('Author Template', 'breadcrumb-navxt'), 'Hauthor_template', '64', false, __('The template for author breadcrumbs.', 'breadcrumb-navxt'));
521
- $this->input_text(__('Author Template (Unlinked)', 'breadcrumb-navxt'), 'Hauthor_template_no_anchor', '64', false, __('The template for author breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
522
  $this->input_select(__('Author Display Format', 'breadcrumb-navxt'), 'Sauthor_name', array("display_name", "nickname", "first_name", "last_name"), false, __('display_name uses the name specified in "Display name publicly as" under the user profile the others correspond to options in the user profile.', 'breadcrumb-navxt'));
523
- $this->input_text(__('Date Template', 'breadcrumb-navxt'), 'Hdate_template', '64', false, __('The template for date breadcrumbs.', 'breadcrumb-navxt'));
524
- $this->input_text(__('Date Template (Unlinked)', 'breadcrumb-navxt'), 'Hdate_template_no_anchor', '64', false, __('The template for date breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
525
- $this->input_text(__('Search Template', 'breadcrumb-navxt'), 'Hsearch_template', '64', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb-navxt'));
526
- $this->input_text(__('Search Template (Unlinked)', 'breadcrumb-navxt'), 'Hsearch_template_no_anchor', '64', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked.', 'breadcrumb-navxt'));
527
- $this->input_text(__('404 Title', 'breadcrumb-navxt'), 'S404_title', '32');
528
- $this->input_text(__('404 Template', 'breadcrumb-navxt'), 'H404_template', '64', false, __('The template for 404 breadcrumbs.', 'breadcrumb-navxt'));
529
  ?>
530
  </table>
 
 
 
 
 
 
 
 
 
 
 
 
531
  </fieldset>
532
  </div>
533
  <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
@@ -538,12 +621,19 @@ class bcn_admin extends mtekk_adminKit
538
  </div>
539
  <?php
540
  }
 
 
 
 
 
 
 
541
  function opts_update_prebk(&$opts)
542
  {
543
  //Add custom post types
544
- $this->find_posttypes($this->opt);
545
  //Add custom taxonomy types
546
- $this->find_taxonomies($this->opt);
547
  }
548
  /**
549
  * Places settings into $opts array, if missing, for the registered post types
@@ -556,6 +646,11 @@ class bcn_admin extends mtekk_adminKit
556
  //Loop through all of the post types in the array
557
  foreach($wp_post_types as $post_type)
558
  {
 
 
 
 
 
559
  //We only want custom post types
560
  if(!$post_type->_builtin)
561
  {
@@ -571,30 +666,39 @@ class bcn_admin extends mtekk_adminKit
571
  {
572
  //Set post_root for hierarchical types
573
  $opts['apost_' . $post_type->name . '_root'] = get_option('page_on_front');
 
 
 
 
574
  }
575
  //If it is flat, we need a taxonomy selection
576
  else
577
  {
578
  //Set post_root for flat types
579
  $opts['apost_' . $post_type->name . '_root'] = get_option('page_for_posts');
580
- }
581
- //Default to not displaying a taxonomy
582
- $opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
583
- //Loop through all of the possible taxonomies
584
- foreach($wp_taxonomies as $taxonomy)
585
- {
586
- //Activate the first taxonomy valid for this post type and exit the loop
587
- if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
588
  {
589
- $opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
590
- $opts['Spost_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
591
- break;
 
 
 
 
 
 
 
 
 
592
  }
593
  }
594
  //If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
595
  if(!isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
596
  {
597
- $opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'date';
598
  }
599
  }
600
  }
@@ -611,6 +715,11 @@ class bcn_admin extends mtekk_adminKit
611
  //We'll add our custom taxonomy stuff at this time
612
  foreach($wp_taxonomies as $taxonomy)
613
  {
 
 
 
 
 
614
  //We only want custom taxonomies
615
  if(!$taxonomy->_builtin)
616
  {
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: 4.2.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
10
  TextDomain: breadcrumb-navxt
11
  DomainPath: /languages/
 
12
  */
13
  /* Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
14
 
26
  along with this program; if not, write to the Free Software
27
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
  */
29
+ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
30
  //Do a PHP version check, require 5.2 or newer
31
  if(version_compare(phpversion(), '5.2.0', '<'))
32
  {
61
  */
62
  class bcn_admin extends mtekk_adminKit
63
  {
64
+ protected $version = '4.2.0';
65
  protected $full_name = 'Breadcrumb NavXT Settings';
66
  protected $short_name = 'Breadcrumb NavXT';
67
  protected $access_level = 'manage_options';
106
  //First make sure our defaults are safe
107
  $this->find_posttypes($this->opt);
108
  $this->find_taxonomies($this->opt);
109
+ //Let others hook into our settings
110
+ $this->opt = apply_filters($this->unique_prefix . '_settings_init', $this->opt);
111
  }
112
  /**
113
  * Makes sure the current user can manage options to proceed
130
  {
131
  global $wp_post_types;
132
  //If our version is not the same as in the db, time to update
133
+ if(version_compare($version, $this->version, '<'))
134
  {
135
  //Upgrading to 3.8.1
136
  if(version_compare($version, '3.8.1', '<'))
150
  //Handle all of our boolean options first, they're real easy, just add a 'b'
151
  if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
152
  {
153
+ $this->breadcrumb_trail->opt['b' . $option] = $value;
154
  }
155
  //Handle migration of anchor templates to the templates
156
  else if(strpos($option, 'anchor') > 0)
310
  //Let's call the parent version of the page, will handle our setting stuff
311
  parent::admin_page();
312
  ?>
313
+ <div class="wrap"><div id="icon-options-general" class="icon32"></div><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb-navxt'); ?></h2>
314
  <?php
315
  //We exit after the version check if there is an action the user needs to take before saving settings
316
  if(!$this->version_check(get_option($this->unique_prefix . '_version')))
322
  <?php settings_fields('bcn_options');?>
323
  <div id="hasadmintabs">
324
  <fieldset id="general" class="bcn_options">
325
+ <h3 class="tab-title" title="<?php _e('A collection of settings most likely to be modified are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('General', 'breadcrumb-navxt'); ?></h3>
326
  <h3><?php _e('General', 'breadcrumb-navxt'); ?></h3>
327
  <table class="form-table">
328
  <?php
329
+ $this->input_text(__('Breadcrumb Separator', 'breadcrumb-navxt'), 'hseparator', 'regular-text', false, __('Placed in between each breadcrumb.', 'breadcrumb-navxt'));
330
+ ?>
331
+ <tr valign="top">
332
+ <th scope="row">
333
+ <?php _e('Title Length', 'breadcrumb-navxt'); ?>
334
+ </th>
335
+ <td>
336
+ <label>
337
+ <input name="bcn_options[blimit_title]" type="checkbox" id="blimit_title" value="true" <?php checked(true, $this->opt['blimit_title']); ?> />
338
+ <?php _e('Limit the length of the breadcrumb title.', 'breadcrumb-navxt'); ?>
339
+ </label><br />
340
+ <ul>
341
+ <li>
342
+ <label for="amax_title_length">
343
+ <?php _e('Max Title Length: ','breadcrumb-navxt');?>
344
+ <input type="number" name="bcn_options[amax_title_length]" id="amax_title_length" min="1" step="1" value="<?php echo esc_html($this->opt['amax_title_length'], ENT_COMPAT, 'UTF-8'); ?>" class="small-text" />
345
+ </label>
346
+ </li>
347
+ </ul>
348
+ </td>
349
+ </tr>
350
+ <?php
351
+ do_action($this->unique_prefix . '_settings_general');
352
+ ?>
353
+ </table>
354
+ <h3><?php _e('Current Item', 'breadcrumb-navxt'); ?></h3>
355
+ <table class="form-table">
356
+ <?php
357
+ $this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes'));
358
+ $this->input_check(__('Paged Breadcrumb', 'breadcrumb-navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb-navxt'));
359
+ $this->input_text(__('Paged Template', 'breadcrumb-navxt'), 'Hpaged_template', 'large-text', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
360
+ do_action($this->unique_prefix . '_settings_current_item');
361
  ?>
362
+ </table>
363
+ <h3><?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?></h3>
364
+ <table class="form-table">
365
  <tr valign="top">
366
  <th scope="row">
367
  <?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?>
382
  </td>
383
  </tr>
384
  <?php
385
+ $this->input_text(__('Home Template', 'breadcrumb-navxt'), 'Hhome_template', 'large-text', false, __('The template for the home breadcrumb.', 'breadcrumb-navxt'));
386
+ $this->input_text(__('Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hhome_template_no_anchor', 'large-text', false, __('The template for the home breadcrumb, used when the breadcrumb is not linked.', 'breadcrumb-navxt'));
387
+ do_action($this->unique_prefix . '_settings_home');
388
+ ?>
389
+ </table>
390
+ <h3><?php _e('Blog Breadcrumb', 'breadcrumb-navxt'); ?></h3>
391
+ <table class="form-table">
392
+ <?php
393
  $this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
394
+ $this->input_text(__('Blog Template', 'breadcrumb-navxt'), 'Hblog_template', 'large-text', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb-navxt'));
395
+ $this->input_text(__('Blog Template (Unlinked)', 'breadcrumb-navxt'), 'Hblog_template_no_anchor', 'large-text', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
396
+ do_action($this->unique_prefix . '_settings_blog');
397
  ?>
398
+ </table>
399
+ <h3><?php _e('Mainsite Breadcrumb', 'breadcrumb-navxt'); ?></h3>
400
+ <table class="form-table">
401
  <tr valign="top">
402
  <th scope="row">
403
  <?php _e('Main Site Breadcrumb', 'breadcrumb-navxt'); ?>
419
  </td>
420
  </tr>
421
  <?php
422
+ $this->input_text(__('Main Site Home Template', 'breadcrumb-navxt'), 'Hmainsite_template', 'large-text', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb-navxt'));
423
+ $this->input_text(__('Main Site Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hmainsite_template_no_anchor', 'large-text', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
424
+ do_action($this->unique_prefix . '_settings_mainsite');
425
  ?>
426
  </table>
427
+ <?php do_action($this->unique_prefix . '_after_settings_tab_general'); ?>
428
  </fieldset>
429
+ <fieldset id="post" class="bcn_options">
430
+ <h3 class="tab-title" title="<?php _e('The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Post Types', 'breadcrumb-navxt'); ?></h3>
431
+ <h3><?php _e('Posts', 'breadcrumb-navxt'); ?></h3>
432
  <table class="form-table">
433
  <?php
434
+ $this->input_text(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', 'large-text', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
435
+ $this->input_text(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', 'large-text', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
436
+ $this->input_check(__('Post Hierarchy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'));
 
 
 
 
 
 
 
 
 
 
437
  ?>
438
  <tr valign="top">
439
  <th scope="row">
440
+ <?php _e('Post Hierarchy', 'breadcrumb-navxt'); ?>
441
  </th>
442
  <td>
443
  <?php
444
  $this->input_radio('Spost_post_taxonomy_type', 'category', __('Categories'));
445
  $this->input_radio('Spost_post_taxonomy_type', 'date', __('Dates'));
446
  $this->input_radio('Spost_post_taxonomy_type', 'post_tag', __('Tags'));
447
+ //We use the value 'page' but really, this will follow the parent post hierarchy
448
+ $this->input_radio('Spost_post_taxonomy_type', 'page', __('Post Parent'));
449
  //Loop through all of the taxonomies in the array
450
  foreach($wp_taxonomies as $taxonomy)
451
  {
452
+ //Check for non-public taxonomies
453
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
454
+ {
455
+ continue;
456
+ }
457
  //We only want custom taxonomies
458
  if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
459
  {
460
+ $this->input_radio('Spost_post_taxonomy_type', $taxonomy->name, mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'));
461
  }
462
  }
463
  ?>
464
+ <p class="description"><?php _e('The hierarchy which the breadcrumb trail will show.', 'breadcrumb-navxt'); ?></p>
465
  </td>
466
  </tr>
467
+ </table>
468
+ <h3><?php _e('Pages', 'breadcrumb-navxt'); ?></h3>
469
+ <table class="form-table">
470
  <?php
471
+ $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', 'large-text', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
472
+ $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', 'large-text', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
473
+ $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', 'large-text', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
474
+ $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', 'large-text', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
475
  ?>
476
  </table>
 
477
  <?php
478
  //Loop through all of the post types in the array
479
  foreach($wp_post_types as $post_type)
480
  {
481
+ //Check for non-public CPTs
482
+ if(!apply_filters('bcn_show_cpt_private', $post_type->public, $post_type->name))
483
+ {
484
+ continue;
485
+ }
486
  //We only want custom post types
487
  if(!$post_type->_builtin)
488
  {
489
+ $singular_name_lc = mb_strtolower($post_type->labels->singular_name, 'UTF-8');
490
  ?>
 
491
  <h3><?php echo $post_type->labels->singular_name; ?></h3>
492
  <table class="form-table">
493
  <?php
494
+ $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $singular_name_lc));
495
+ $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $singular_name_lc));
496
  $optid = $this->get_valid_id('apost_' . $post_type->name . '_root');
497
  ?>
498
  <tr valign="top">
504
  </td>
505
  </tr>
506
  <?php
507
+ $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), !$post_type->has_archive);
508
+ $this->input_check(sprintf(__('%s Hierarchy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the taxonomy leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc));
509
  ?>
510
  <tr valign="top">
511
  <th scope="row">
512
+ <?php printf(__('%s Hierarchy', 'breadcrumb-navxt'), $post_type->labels->singular_name); ?>
513
  </th>
514
  <td>
515
  <?php
516
+ //We use the value 'page' but really, this will follow the parent post hierarchy
517
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent'));
518
  //Loop through all of the taxonomies in the array
519
  foreach($wp_taxonomies as $taxonomy)
520
  {
521
+ //Check for non-public taxonomies
522
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
523
+ {
524
+ continue;
525
+ }
526
  //We only want custom taxonomies
527
  if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
528
  {
530
  }
531
  }
532
  ?>
533
+ <p class="description"><?php _e('The hierarchy which the breadcrumb trail will show.', 'breadcrumb-navxt'); ?></p>
534
  </td>
535
  </tr>
536
  </table>
 
537
  <?php
538
  }
539
+ }
540
+ do_action($this->unique_prefix . '_after_settings_tab_post');
541
+ ?>
542
+ </fieldset>
543
  <fieldset id="tax" class="bcn_options alttab">
544
+ <h3 class="tab-title" title="<?php _e('The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Taxonomies', 'breadcrumb-navxt'); ?></h3>
545
+ <h3><?php _e('Categories', 'breadcrumb-navxt'); ?></h3>
546
  <table class="form-table">
547
  <?php
548
+ $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Hcategory_template', 'large-text', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
549
+ $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Hcategory_template_no_anchor', 'large-text', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
550
+ ?>
551
+ </table>
552
+ <h3><?php _e('Tags', 'breadcrumb-navxt'); ?></h3>
553
+ <table class="form-table">
554
+ <?php
555
+ $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Hpost_tag_template', 'large-text', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
556
+ $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_tag_template_no_anchor', 'large-text', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
557
+ ?>
558
+ </table>
559
+ <h3><?php _e('Post Formats', 'breadcrumb-navxt'); ?></h3>
560
+ <table class="form-table">
561
+ <?php
562
+ $this->input_text(__('Post Format Template', 'breadcrumb-navxt'), 'Hpost_format_template', 'large-text', false, __('The template for post format breadcrumbs.', 'breadcrumb-navxt'));
563
+ $this->input_text(__('Post Format Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_format_template_no_anchor', 'large-text', false, __('The template for post_format breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
564
  ?>
565
  </table>
 
566
  <?php
567
  //Loop through all of the taxonomies in the array
568
  foreach($wp_taxonomies as $taxonomy)
569
  {
570
+ //Check for non-public taxonomies
571
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
572
+ {
573
+ continue;
574
+ }
575
  //We only want custom taxonomies
576
  if(!$taxonomy->_builtin)
577
  {
578
+ $label_lc = mb_strtolower($taxonomy->label, 'UTF-8');
579
  ?>
580
+ <h3><?php echo mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'); ?></h3>
 
581
  <table class="form-table">
582
  <?php
583
+ $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $label_lc));
584
+ $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $label_lc));
585
  ?>
586
  </table>
 
587
  <?php
588
  }
589
  }
590
+ do_action($this->unique_prefix . '_after_settings_tab_taxonomy'); ?>
591
+ </fieldset>
592
  <fieldset id="miscellaneous" class="bcn_options">
593
+ <h3 class="tab-title" title="<?php _e('The settings for author and date archives, searches, and 404 pages are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
594
+ <h3><?php _e('Author Archives', 'breadcrumb-navxt'); ?></h3>
595
  <table class="form-table">
596
  <?php
597
+ $this->input_text(__('Author Template', 'breadcrumb-navxt'), 'Hauthor_template', 'large-text', false, __('The template for author breadcrumbs.', 'breadcrumb-navxt'));
598
+ $this->input_text(__('Author Template (Unlinked)', 'breadcrumb-navxt'), 'Hauthor_template_no_anchor', 'large-text', false, __('The template for author breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
599
  $this->input_select(__('Author Display Format', 'breadcrumb-navxt'), 'Sauthor_name', array("display_name", "nickname", "first_name", "last_name"), false, __('display_name uses the name specified in "Display name publicly as" under the user profile the others correspond to options in the user profile.', 'breadcrumb-navxt'));
 
 
 
 
 
 
600
  ?>
601
  </table>
602
+ <h3><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
603
+ <table class="form-table">
604
+ <?php
605
+ $this->input_text(__('Date Template', 'breadcrumb-navxt'), 'Hdate_template', 'large-text', false, __('The template for date breadcrumbs.', 'breadcrumb-navxt'));
606
+ $this->input_text(__('Date Template (Unlinked)', 'breadcrumb-navxt'), 'Hdate_template_no_anchor', 'large-text', false, __('The template for date breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
607
+ $this->input_text(__('Search Template', 'breadcrumb-navxt'), 'Hsearch_template', 'large-text', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb-navxt'));
608
+ $this->input_text(__('Search Template (Unlinked)', 'breadcrumb-navxt'), 'Hsearch_template_no_anchor', 'large-text', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked.', 'breadcrumb-navxt'));
609
+ $this->input_text(__('404 Title', 'breadcrumb-navxt'), 'S404_title', 'regular-text');
610
+ $this->input_text(__('404 Template', 'breadcrumb-navxt'), 'H404_template', 'large-text', false, __('The template for 404 breadcrumbs.', 'breadcrumb-navxt'));
611
+ ?>
612
+ </table>
613
+ <?php do_action($this->unique_prefix . '_after_settings_tab_miscellaneous'); ?>
614
  </fieldset>
615
  </div>
616
  <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
621
  </div>
622
  <?php
623
  }
624
+ function opts_fix(&$opts)
625
+ {
626
+ if($opts['amax_title_length'] < 1)
627
+ {
628
+ $opts['amax_title_length'] = 1;
629
+ }
630
+ }
631
  function opts_update_prebk(&$opts)
632
  {
633
  //Add custom post types
634
+ $this->find_posttypes($opts);
635
  //Add custom taxonomy types
636
+ $this->find_taxonomies($opts);
637
  }
638
  /**
639
  * Places settings into $opts array, if missing, for the registered post types
646
  //Loop through all of the post types in the array
647
  foreach($wp_post_types as $post_type)
648
  {
649
+ //Check for non-public CPTs
650
+ if(!apply_filters('bcn_show_cpt_private', $post_type->public, $post_type->name))
651
+ {
652
+ continue;
653
+ }
654
  //We only want custom post types
655
  if(!$post_type->_builtin)
656
  {
666
  {
667
  //Set post_root for hierarchical types
668
  $opts['apost_' . $post_type->name . '_root'] = get_option('page_on_front');
669
+ //Default to displaying a 'taxonomy'
670
+ $opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
671
+ //The 'taxonomy' is the page/post hierarchy for hierarchical post types
672
+ $opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'page';
673
  }
674
  //If it is flat, we need a taxonomy selection
675
  else
676
  {
677
  //Set post_root for flat types
678
  $opts['apost_' . $post_type->name . '_root'] = get_option('page_for_posts');
679
+ //Default to not displaying a taxonomy
680
+ $opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
681
+ //Loop through all of the possible taxonomies
682
+ foreach($wp_taxonomies as $taxonomy)
 
 
 
 
683
  {
684
+ //Check for non-public taxonomies
685
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
686
+ {
687
+ continue;
688
+ }
689
+ //Activate the first taxonomy valid for this post type and exit the loop
690
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
691
+ {
692
+ $opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
693
+ $opts['Spost_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
694
+ break;
695
+ }
696
  }
697
  }
698
  //If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
699
  if(!isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
700
  {
701
+ $opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'page';
702
  }
703
  }
704
  }
715
  //We'll add our custom taxonomy stuff at this time
716
  foreach($wp_taxonomies as $taxonomy)
717
  {
718
+ //Check for non-public taxonomies
719
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
720
+ {
721
+ continue;
722
+ }
723
  //We only want custom taxonomies
724
  if(!$taxonomy->_builtin)
725
  {
breadcrumb_navxt_class.php CHANGED
@@ -16,7 +16,7 @@
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
-
20
  //The breadcrumb class
21
  class bcn_breadcrumb
22
  {
@@ -48,23 +48,30 @@ class bcn_breadcrumb
48
  */
49
  public function bcn_breadcrumb($title = '', $template = '', $type = '', $url = NULL)
50
  {
 
 
51
  //Set the title
52
  $this->set_title($title);
53
  //Assign the breadcrumb template
54
  if($template == NULL)
55
  {
56
- $template = __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt');
 
 
 
 
 
 
 
57
  }
58
  if($url == NULL)
59
  {
60
- $this->template_no_anchor = $template;
61
  }
62
  else
63
  {
64
- $this->template = $template;
65
  }
66
- //The breadcrumb type
67
- $this->type = $type;
68
  //Always NULL if unlinked
69
  $this->set_url($url);
70
  }
@@ -76,7 +83,7 @@ class bcn_breadcrumb
76
  public function set_title($title)
77
  {
78
  //Set the title
79
- $this->title = apply_filters('bcn_breadcrumb_title', __($title, 'breadcrumb-navxt'));
80
  }
81
  /**
82
  * Function to get the protected title member
@@ -128,12 +135,15 @@ class bcn_breadcrumb
128
  */
129
  public function title_trim($max_length)
130
  {
 
 
 
131
  //Make sure that we are not making it longer with that ellipse
132
- if((mb_strlen($this->title) + 3) > $max_length)
133
  {
134
  //Trim the title
135
  $this->title = mb_substr($this->title, 0, $max_length - 1);
136
- //Make sure we can split a, four keywords are available %link%, %title%, %htitle%, and %type%pace, but we want to limmit to cutting at max an additional 25%
137
  if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
138
  {
139
  //Don't split mid word
@@ -143,8 +153,10 @@ class bcn_breadcrumb
143
  }
144
  }
145
  //Remove the whitespace at the end and add the hellip
146
- $this->title = rtrim($this->title) . '&hellip;';
147
  }
 
 
148
  }
149
  /**
150
  * Assembles the parts of the breadcrumb into a html string
@@ -154,7 +166,6 @@ class bcn_breadcrumb
154
  */
155
  public function assemble($linked = true)
156
  {
157
- //var_dump($this);
158
  //Build our replacements array
159
  $replacements = array(
160
  esc_attr(strip_tags($this->title)),
@@ -185,7 +196,7 @@ class bcn_breadcrumb
185
  class bcn_breadcrumb_trail
186
  {
187
  //Our member variables
188
- private $version = '4.1.0';
189
  //An array of breadcrumbs
190
  public $trail = array();
191
  //The options
@@ -202,7 +213,7 @@ class bcn_breadcrumb_trail
202
  //Title displayed when for the main site
203
  'Smainsite_title' => __('Home', 'breadcrumb-navxt'),
204
  //The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
205
- 'Hmainsite_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
206
  //The breadcrumb template for the main site, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
207
  'Hmainsite_template_no_anchor' => '%htitle%',
208
  //Should the home page be shown
@@ -210,29 +221,27 @@ class bcn_breadcrumb_trail
210
  //Title displayed when is_home() returns true
211
  'Shome_title' => __('Home', 'breadcrumb-navxt'),
212
  //The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
213
- 'Hhome_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
214
  //The breadcrumb template for the home page, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
215
  'Hhome_template_no_anchor' => '%htitle%',
216
  //Should the blog page be shown globally
217
  'bblog_display' => true,
218
  //The breadcrumb template for the blog page only in static front page mode, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
219
- 'Hblog_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
220
  //The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
221
  'Hblog_template_no_anchor' => '%htitle%',
222
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
223
  //the first and not after the last breadcrumb
224
  'hseparator' => ' &gt; ',
 
 
225
  //The maximum title lenght
226
- 'amax_title_length' => 0,
227
  //Current item options, really only applies to static pages and posts unless other current items are linked
228
  'bcurrent_item_linked' => false,
229
- //The breadcrumb template for current items, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
230
- //'Hcurrent_item_template' => __('<a title="Reload the current page." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
231
- //The breadcrumb template for current items, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
232
- //'Hcurrent_item_template_no_anchor' => '%htitle%',
233
  //Static page options
234
  //The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
235
- 'Hpost_page_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
236
  //The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
237
  'Hpost_page_template_no_anchor' => '%htitle%',
238
  //Just a link to the page on front property
@@ -244,7 +253,7 @@ class bcn_breadcrumb_trail
244
  'bpaged_display' => false,
245
  //The post options previously singleblogpost
246
  //The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
247
- 'Hpost_post_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
248
  //The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
249
  'Hpost_post_template_no_anchor' => '%htitle%',
250
  //Just a link for the page for posts
@@ -256,7 +265,7 @@ class bcn_breadcrumb_trail
256
  //Attachment settings
257
  //TODO: Need to move attachments to support via normal post handlers
258
  //The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
259
- 'Hpost_attachment_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
260
  //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
261
  'Hpost_attachment_template_no_anchor' => '%htitle%',
262
  //404 page settings
@@ -266,28 +275,33 @@ class bcn_breadcrumb_trail
266
  'S404_title' => __('404', 'breadcrumb-navxt'),
267
  //Search page options
268
  //The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
269
- 'Hsearch_template' => __('Search results for &#39;<a title="Go to the first page of search results for %title%." href="%link%">%htitle%</a>&#39;', 'breadcrumb-navxt'),
270
  //The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
271
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
272
  //Tag related stuff
273
  //The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
274
- 'Hpost_tag_template' => __('<a title="Go to the %title% tag archives." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
275
  //The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
276
  'Hpost_tag_template_no_anchor' => '%htitle%',
 
 
 
 
 
277
  //Author page stuff
278
  //The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
279
- 'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
280
  //The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
281
  'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
282
  //Which of the various WordPress display types should the author breadcrumb display
283
  'Sauthor_name' => 'display_name',
284
  //Category stuff
285
  //The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
286
- 'Hcategory_template' => __('<a title="Go to the %title% category archives." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
287
  //The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
288
  'Hcategory_template_no_anchor' => '%htitle%',
289
  //The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
290
- 'Hdate_template' => __('<a title="Go to the %title% archives." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
291
  //The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
292
  'Hdate_template_no_anchor' => '%htitle%'
293
  );
@@ -371,7 +385,7 @@ class bcn_breadcrumb_trail
371
  *
372
  * TODO: Add logic for contextual taxonomy selection
373
  */
374
- function post_taxonomy($id, $type, $parent = null)
375
  {
376
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
377
  if($this->opt['bpost_' . $type . '_taxonomy_display'])
@@ -530,8 +544,8 @@ class bcn_breadcrumb_trail
530
  //Add the link
531
  $breadcrumb->set_url(get_permalink());
532
  }
533
- //If we have a hiearchical post, go through the parent tree
534
- if(is_post_type_hierarchical($post->post_type))
535
  {
536
  //Done with the current item, now on to the parents
537
  $frontpage = get_option('page_on_front');
@@ -540,17 +554,12 @@ class bcn_breadcrumb_trail
540
  {
541
  $this->post_parents($post->post_parent, $frontpage);
542
  }
543
- else if(!$this->is_builtin($post->post_type))
544
- {
545
- //Handle the post's taxonomy
546
- $this->post_taxonomy($post->ID, $post->post_type, $post->post_parent);
547
- }
548
  }
549
- //Otherwise we need the follow the taxonomy tree
550
  else
551
  {
552
- //Handle the post's taxonomy
553
- $this->post_taxonomy($post->ID, $post->post_type, $post->post_parent);
554
  }
555
  }
556
  /**
@@ -589,13 +598,13 @@ class bcn_breadcrumb_trail
589
  else if(!$this->is_builtin($parent->post_type))
590
  {
591
  //Handle the post's taxonomy
592
- $this->post_taxonomy($post->post_parent, $parent->post_type);
593
  }
594
  }
595
  else
596
  {
597
  //Handle the post's taxonomy
598
- $this->post_taxonomy($post->post_parent, $parent->post_type);
599
  }
600
  }
601
  /**
@@ -746,7 +755,7 @@ class bcn_breadcrumb_trail
746
  if($this->opt['bmainsite_display'] && !is_main_site())
747
  {
748
  //Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
749
- $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['Smainsite_title'], $this->opt['Hmainsite_template_no_anchor'], array('mainsite-home'), get_home_url($current_site->blog_id)));
750
  }
751
  }
752
  }
@@ -870,7 +879,7 @@ class bcn_breadcrumb_trail
870
  $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($post_type)), $this->opt['Hpost_' . $post_type . '_template'], array('post-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
871
  }
872
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
873
- if($root_id > 1 || $this->opt['bblog_display'] && get_option('show_on_front') == 'page' && (is_home() || is_single() || is_tax() || is_category() || is_tag()))
874
  {
875
  //If we entered here with a posts page, we need to set the id
876
  if($root_id < 0)
@@ -1079,7 +1088,7 @@ class bcn_breadcrumb_trail
1079
  }
1080
  }
1081
  //Trim titles, if needed
1082
- if($this->opt['amax_title_length'] > 0)
1083
  {
1084
  //Trim the breadcrumb's title
1085
  $breadcrumb->title_trim($this->opt['amax_title_length']);
@@ -1137,7 +1146,7 @@ class bcn_breadcrumb_trail
1137
  $trail_str .= ' class="current_item"';
1138
  }
1139
  //Trim titles, if needed
1140
- if($this->opt['amax_title_length'] > 0)
1141
  {
1142
  //Trim the breadcrumb's title
1143
  $breadcrumb->title_trim($this->opt['amax_title_length']);
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
+ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
  //The breadcrumb class
21
  class bcn_breadcrumb
22
  {
48
  */
49
  public function bcn_breadcrumb($title = '', $template = '', $type = '', $url = NULL)
50
  {
51
+ //The breadcrumb type
52
+ $this->type = $type;
53
  //Set the title
54
  $this->set_title($title);
55
  //Assign the breadcrumb template
56
  if($template == NULL)
57
  {
58
+ if($url == NULL)
59
+ {
60
+ $template = $this->template = __('%htitle%', 'breadcrumb-navxt');
61
+ }
62
+ else
63
+ {
64
+ $template = __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt');
65
+ }
66
  }
67
  if($url == NULL)
68
  {
69
+ $this->template_no_anchor = $template;
70
  }
71
  else
72
  {
73
+ $this->template = $template;
74
  }
 
 
75
  //Always NULL if unlinked
76
  $this->set_url($url);
77
  }
83
  public function set_title($title)
84
  {
85
  //Set the title
86
+ $this->title = apply_filters('bcn_breadcrumb_title', $title, $this->type);
87
  }
88
  /**
89
  * Function to get the protected title member
135
  */
136
  public function title_trim($max_length)
137
  {
138
+ //To preserve HTML entities, must decode before splitting
139
+ $this->title = html_entity_decode($this->title, ENT_COMPAT, 'UTF-8');
140
+ $title_length = mb_strlen($this->title);
141
  //Make sure that we are not making it longer with that ellipse
142
+ if($title_length > $max_length && ($title_length + 2) > $max_length)
143
  {
144
  //Trim the title
145
  $this->title = mb_substr($this->title, 0, $max_length - 1);
146
+ //Make sure we can split a, but we want to limmit to cutting at max an additional 25%
147
  if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
148
  {
149
  //Don't split mid word
153
  }
154
  }
155
  //Remove the whitespace at the end and add the hellip
156
+ $this->title = rtrim($this->title) . html_entity_decode('&hellip;', ENT_COMPAT, 'UTF-8');
157
  }
158
+ //Return to the encoded version of all HTML entities (keep standards complance)
159
+ $this->title = htmlentities($this->title, ENT_COMPAT, 'UTF-8');
160
  }
161
  /**
162
  * Assembles the parts of the breadcrumb into a html string
166
  */
167
  public function assemble($linked = true)
168
  {
 
169
  //Build our replacements array
170
  $replacements = array(
171
  esc_attr(strip_tags($this->title)),
196
  class bcn_breadcrumb_trail
197
  {
198
  //Our member variables
199
+ private $version = '4.2.0';
200
  //An array of breadcrumbs
201
  public $trail = array();
202
  //The options
213
  //Title displayed when for the main site
214
  'Smainsite_title' => __('Home', 'breadcrumb-navxt'),
215
  //The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
216
+ 'Hmainsite_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
217
  //The breadcrumb template for the main site, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
218
  'Hmainsite_template_no_anchor' => '%htitle%',
219
  //Should the home page be shown
221
  //Title displayed when is_home() returns true
222
  'Shome_title' => __('Home', 'breadcrumb-navxt'),
223
  //The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
224
+ 'Hhome_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
225
  //The breadcrumb template for the home page, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
226
  'Hhome_template_no_anchor' => '%htitle%',
227
  //Should the blog page be shown globally
228
  'bblog_display' => true,
229
  //The breadcrumb template for the blog page only in static front page mode, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
230
+ 'Hblog_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
231
  //The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
232
  'Hblog_template_no_anchor' => '%htitle%',
233
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
234
  //the first and not after the last breadcrumb
235
  'hseparator' => ' &gt; ',
236
+ //Whether or not we should trim the breadcrumb titles
237
+ 'blimit_title' => false,
238
  //The maximum title lenght
239
+ 'amax_title_length' => 20,
240
  //Current item options, really only applies to static pages and posts unless other current items are linked
241
  'bcurrent_item_linked' => false,
 
 
 
 
242
  //Static page options
243
  //The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
244
+ 'Hpost_page_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
245
  //The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
246
  'Hpost_page_template_no_anchor' => '%htitle%',
247
  //Just a link to the page on front property
253
  'bpaged_display' => false,
254
  //The post options previously singleblogpost
255
  //The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
256
+ 'Hpost_post_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
257
  //The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
258
  'Hpost_post_template_no_anchor' => '%htitle%',
259
  //Just a link for the page for posts
265
  //Attachment settings
266
  //TODO: Need to move attachments to support via normal post handlers
267
  //The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
268
+ 'Hpost_attachment_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
269
  //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
270
  'Hpost_attachment_template_no_anchor' => '%htitle%',
271
  //404 page settings
275
  'S404_title' => __('404', 'breadcrumb-navxt'),
276
  //Search page options
277
  //The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
278
+ 'Hsearch_template' => __('Search results for &#39;<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>&#39;', 'breadcrumb-navxt'),
279
  //The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
280
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
281
  //Tag related stuff
282
  //The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
283
+ 'Hpost_tag_template' => __('<a title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
284
  //The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
285
  'Hpost_tag_template_no_anchor' => '%htitle%',
286
+ //Post format related stuff
287
+ //The breadcrumb template for post format breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
288
+ 'Hpost_format_template' => __('<a title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
289
+ //The breadcrumb template for post format breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
290
+ 'Hpost_format_template_no_anchor' => '%htitle%',
291
  //Author page stuff
292
  //The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
293
+ 'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
294
  //The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
295
  'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
296
  //Which of the various WordPress display types should the author breadcrumb display
297
  'Sauthor_name' => 'display_name',
298
  //Category stuff
299
  //The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
300
+ 'Hcategory_template' => __('<a title="Go to the %title% category archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
301
  //The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
302
  'Hcategory_template_no_anchor' => '%htitle%',
303
  //The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
304
+ 'Hdate_template' => __('<a title="Go to the %title% archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
305
  //The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
306
  'Hdate_template_no_anchor' => '%htitle%'
307
  );
385
  *
386
  * TODO: Add logic for contextual taxonomy selection
387
  */
388
+ function post_hierarchy($id, $type, $parent = null)
389
  {
390
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
391
  if($this->opt['bpost_' . $type . '_taxonomy_display'])
544
  //Add the link
545
  $breadcrumb->set_url(get_permalink());
546
  }
547
+ //If we have page, force it to go through the parent tree
548
+ if($post->post_type === 'page')
549
  {
550
  //Done with the current item, now on to the parents
551
  $frontpage = get_option('page_on_front');
554
  {
555
  $this->post_parents($post->post_parent, $frontpage);
556
  }
 
 
 
 
 
557
  }
558
+ //Otherwise we need the follow the hiearchy tree
559
  else
560
  {
561
+ //Handle the post's hiearchy
562
+ $this->post_hierarchy($post->ID, $post->post_type, $post->post_parent);
563
  }
564
  }
565
  /**
598
  else if(!$this->is_builtin($parent->post_type))
599
  {
600
  //Handle the post's taxonomy
601
+ $this->post_hierarchy($post->post_parent, $parent->post_type);
602
  }
603
  }
604
  else
605
  {
606
  //Handle the post's taxonomy
607
+ $this->post_hierarchy($post->post_parent, $parent->post_type);
608
  }
609
  }
610
  /**
755
  if($this->opt['bmainsite_display'] && !is_main_site())
756
  {
757
  //Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
758
+ $breadcrumb = $this->add(new bcn_breadcrumb($this->opt['Smainsite_title'], $this->opt['Hmainsite_template'], array('mainsite-home'), get_home_url($current_site->blog_id)));
759
  }
760
  }
761
  }
879
  $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($post_type)), $this->opt['Hpost_' . $post_type . '_template'], array('post-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
880
  }
881
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
882
+ if($root_id > 1 || $this->opt['bblog_display'] && get_option('show_on_front') == 'page' && (is_home() || is_single() || is_tax() || is_category() || is_tag() || is_date()))
883
  {
884
  //If we entered here with a posts page, we need to set the id
885
  if($root_id < 0)
1088
  }
1089
  }
1090
  //Trim titles, if needed
1091
+ if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
1092
  {
1093
  //Trim the breadcrumb's title
1094
  $breadcrumb->title_trim($this->opt['amax_title_length']);
1146
  $trail_str .= ' class="current_item"';
1147
  }
1148
  //Trim titles, if needed
1149
+ if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
1150
  {
1151
  //Trim the breadcrumb's title
1152
  $breadcrumb->title_trim($this->opt['amax_title_length']);
breadcrumb_navxt_uninstaller.php CHANGED
@@ -1,181 +1,181 @@
1
- <?php
2
- /**
3
- * Breadcrumb NavXT - uninstall class
4
- *
5
- * uninstall class for WordPress Uninstall Plugin API
6
- *
7
- * @see uninstall.php
8
- *
9
- * @author Tom Klingenberg
10
- */
11
-
12
-
13
- /**
14
- * Breadcrumb NavXT abstract plugin uninstaller class
15
- *
16
- * @author Tom Klingenberg
17
- */
18
- abstract class bcn_uninstaller_abstract {
19
-
20
- /**
21
- * plugin base
22
- *
23
- * @var string plugin dirname
24
- */
25
- protected $_base = '';
26
-
27
- /**
28
- * plugin name
29
- *
30
- * @var string plugin basename (the php-file including the .php suffix)
31
- */
32
- protected $_plugin = '';
33
-
34
- /**
35
- * uninstalled flag
36
- *
37
- * @var bool uninstall flag, true if uninstall allready run, false on init
38
- */
39
- protected $_uninstalled = false;
40
-
41
- /**
42
- * uninstall result
43
- *
44
- * @var bool wether or not uninstall worked
45
- */
46
- protected $_uninstallResult = null;
47
-
48
- /**
49
- * get plugin path
50
- *
51
- * @return string full path to plugin file
52
- */
53
- protected function _getPluginPath()
54
- {
55
- return sprintf('%s/%s/%s', WP_PLUGIN_DIR, $this->_base, $this->_plugin);
56
- }
57
-
58
- /**
59
- * constructor
60
- *
61
- * @param array $options class options
62
- * plugin =>
63
- */
64
- public function __construct(array $options = null)
65
- {
66
- /* plugin setter */
67
- if (isset($options['plugin']))
68
- {
69
- $this->setPlugin($options['plugin']);
70
- }
71
-
72
- /* init */
73
- $this->_uninstallResult = $this->uninstall();
74
- }
75
-
76
- /**
77
- * Result Getter
78
- *
79
- * @return bool wether or not uninstall did run successfull.
80
- */
81
- public function getResult()
82
- {
83
- return $this->_uninstallResult;
84
- }
85
-
86
- /**
87
- * plugin setter
88
- *
89
- * @param string $plugin plugin name as common with wordpress as 'dir/file.php'
90
- * e.g. 'breadcrumb-navxt/breadcrumb_navxt_admin.php'.
91
- * @return this
92
- */
93
- public function setPlugin($plugin)
94
- {
95
- /* if plugin contains a base, check and process it. */
96
- if (false !== strpos($plugin, '/'))
97
- {
98
- // check
99
-
100
- $compare = $this->_base . '/';
101
-
102
- if (substr($plugin, 0, strlen($compare)) != $compare)
103
- {
104
- throw new DomainException(sprintf('Plugin "%s" has the wrong base to fit the one of Uninstaller ("%").', $plugin, $this->_base), 30001);
105
- }
106
-
107
- // process
108
-
109
- $plugin = substr($plugin, strlen($compare));
110
- }
111
-
112
- /* set local store */
113
-
114
- $this->_plugin = $plugin;
115
-
116
- return $this;
117
- }
118
-
119
- } /// class bcn_uninstaller_abstract
120
-
121
- /**
122
- * Breadcrumb NavXT uninstaller class
123
- *
124
- * @author Tom Klingenberg
125
- */
126
- class bcn_uninstaller extends bcn_uninstaller_abstract {
127
-
128
- /**
129
- * plugin base
130
- *
131
- * @var string plugin dirname
132
- */
133
- protected $_base = 'breadcrumb-navxt';
134
-
135
- /**
136
- * uninstall breadcrumb navxt admin plugin
137
- *
138
- * @return bool
139
- */
140
- private function _uninstallAdmin()
141
- {
142
- // load dependencies if applicable
143
-
144
- if(!class_exists('bcn_admin'))
145
- require_once($this->_getPluginPath());
146
-
147
- // uninstall
148
- $bcn_admin->uninstall();
149
- }
150
-
151
- /**
152
- * uninstall method
153
- *
154
- * @return bool wether or not uninstall did run successfull.
155
- */
156
- public function uninstall()
157
- {
158
- if ($this->_uninstalled)
159
- {
160
- throw new BadMethodCallException('Uninstall already exectuted. It can be executed only once.', 30101);
161
- }
162
-
163
- // decide what to do
164
- switch($this->_plugin)
165
- {
166
- case 'breadcrumb_navxt_admin.php':
167
- return $this->_uninstallAdmin();
168
-
169
- case 'breadcrumb_navxt_class.php':
170
- return true;
171
-
172
- default:
173
- throw new BadMethodCallException(sprintf('Invalid Plugin ("%s") in %s::uninstall().', $this->_plugin , get_class($this)), 30102);
174
- }
175
-
176
- // flag object as uninstalled
177
-
178
- $this->_uninstalled = true;
179
- }
180
-
181
- } /// class bcn_uninstaller
1
+ <?php
2
+ /**
3
+ * Breadcrumb NavXT - uninstall class
4
+ *
5
+ * uninstall class for WordPress Uninstall Plugin API
6
+ *
7
+ * @see uninstall.php
8
+ *
9
+ * @author Tom Klingenberg
10
+ */
11
+
12
+ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
13
+ /**
14
+ * Breadcrumb NavXT abstract plugin uninstaller class
15
+ *
16
+ * @author Tom Klingenberg
17
+ */
18
+ abstract class bcn_uninstaller_abstract {
19
+
20
+ /**
21
+ * plugin base
22
+ *
23
+ * @var string plugin dirname
24
+ */
25
+ protected $_base = '';
26
+
27
+ /**
28
+ * plugin name
29
+ *
30
+ * @var string plugin basename (the php-file including the .php suffix)
31
+ */
32
+ protected $_plugin = '';
33
+
34
+ /**
35
+ * uninstalled flag
36
+ *
37
+ * @var bool uninstall flag, true if uninstall allready run, false on init
38
+ */
39
+ protected $_uninstalled = false;
40
+
41
+ /**
42
+ * uninstall result
43
+ *
44
+ * @var bool wether or not uninstall worked
45
+ */
46
+ protected $_uninstallResult = null;
47
+
48
+ /**
49
+ * get plugin path
50
+ *
51
+ * @return string full path to plugin file
52
+ */
53
+ protected function _getPluginPath()
54
+ {
55
+ return sprintf('%s/%s/%s', WP_PLUGIN_DIR, $this->_base, $this->_plugin);
56
+ }
57
+
58
+ /**
59
+ * constructor
60
+ *
61
+ * @param array $options class options
62
+ * plugin =>
63
+ */
64
+ public function __construct(array $options = null)
65
+ {
66
+ /* plugin setter */
67
+ if (isset($options['plugin']))
68
+ {
69
+ $this->setPlugin($options['plugin']);
70
+ }
71
+
72
+ /* init */
73
+ $this->_uninstallResult = $this->uninstall();
74
+ }
75
+
76
+ /**
77
+ * Result Getter
78
+ *
79
+ * @return bool wether or not uninstall did run successfull.
80
+ */
81
+ public function getResult()
82
+ {
83
+ return $this->_uninstallResult;
84
+ }
85
+
86
+ /**
87
+ * plugin setter
88
+ *
89
+ * @param string $plugin plugin name as common with wordpress as 'dir/file.php'
90
+ * e.g. 'breadcrumb-navxt/breadcrumb_navxt_admin.php'.
91
+ * @return this
92
+ */
93
+ public function setPlugin($plugin)
94
+ {
95
+ /* if plugin contains a base, check and process it. */
96
+ if (false !== strpos($plugin, '/'))
97
+ {
98
+ // check
99
+
100
+ $compare = $this->_base . '/';
101
+
102
+ if (substr($plugin, 0, strlen($compare)) != $compare)
103
+ {
104
+ throw new DomainException(sprintf('Plugin "%s" has the wrong base to fit the one of Uninstaller ("%").', $plugin, $this->_base), 30001);
105
+ }
106
+
107
+ // process
108
+
109
+ $plugin = substr($plugin, strlen($compare));
110
+ }
111
+
112
+ /* set local store */
113
+
114
+ $this->_plugin = $plugin;
115
+
116
+ return $this;
117
+ }
118
+
119
+ } /// class bcn_uninstaller_abstract
120
+
121
+ /**
122
+ * Breadcrumb NavXT uninstaller class
123
+ *
124
+ * @author Tom Klingenberg
125
+ */
126
+ class bcn_uninstaller extends bcn_uninstaller_abstract {
127
+
128
+ /**
129
+ * plugin base
130
+ *
131
+ * @var string plugin dirname
132
+ */
133
+ protected $_base = 'breadcrumb-navxt';
134
+
135
+ /**
136
+ * uninstall breadcrumb navxt admin plugin
137
+ *
138
+ * @return bool
139
+ */
140
+ private function _uninstallAdmin()
141
+ {
142
+ // load dependencies if applicable
143
+
144
+ if(!class_exists('bcn_admin'))
145
+ require_once($this->_getPluginPath());
146
+
147
+ // uninstall
148
+ $bcn_admin->uninstall();
149
+ }
150
+
151
+ /**
152
+ * uninstall method
153
+ *
154
+ * @return bool wether or not uninstall did run successfull.
155
+ */
156
+ public function uninstall()
157
+ {
158
+ if ($this->_uninstalled)
159
+ {
160
+ throw new BadMethodCallException('Uninstall already exectuted. It can be executed only once.', 30101);
161
+ }
162
+
163
+ // decide what to do
164
+ switch($this->_plugin)
165
+ {
166
+ case 'breadcrumb_navxt_admin.php':
167
+ return $this->_uninstallAdmin();
168
+
169
+ case 'breadcrumb_navxt_class.php':
170
+ return true;
171
+
172
+ default:
173
+ throw new BadMethodCallException(sprintf('Invalid Plugin ("%s") in %s::uninstall().', $this->_plugin , get_class($this)), 30102);
174
+ }
175
+
176
+ // flag object as uninstalled
177
+
178
+ $this->_uninstalled = true;
179
+ }
180
+
181
+ } /// class bcn_uninstaller
breadcrumb_navxt_widget.php CHANGED
@@ -16,6 +16,7 @@
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
 
19
  class bcn_widget extends WP_Widget
20
  {
21
  //Default constructor
@@ -35,8 +36,10 @@ class bcn_widget extends WP_Widget
35
  function widget($args, $instance)
36
  {
37
  extract($args);
 
 
38
  //If we are on the front page and don't display on the front, return early
39
- if($instance['front'] && is_front_page())
40
  {
41
  return;
42
  }
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
+ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
  class bcn_widget extends WP_Widget
21
  {
22
  //Default constructor
36
  function widget($args, $instance)
37
  {
38
  extract($args);
39
+ //A bit of a hack but we need the DB settings to know if we should exit early
40
+ $opt = get_option('bcn_options');
41
  //If we are on the front page and don't display on the front, return early
42
+ if($instance['front'] && is_front_page() && !(is_paged() && $opt['bpaged_display']))
43
  {
44
  return;
45
  }
includes/block_direct_access.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* Copyright 2012 John Havlik (email : mtekkmonkey@gmail.com)
3
+
4
+ This program is free software; you can redistribute it and/or modify
5
+ it under the terms of the GNU General Public License as published by
6
+ the Free Software Foundation; either version 2 of the License, or
7
+ (at your option) any later version.
8
+
9
+ This program is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ GNU General Public License for more details.
13
+
14
+ You should have received a copy of the GNU General Public License
15
+ along with this program; if not, write to the Free Software
16
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ */
18
+ //If this file is included directly (e.g. WordPress isn't running), return 404
19
+ if(!defined('ABSPATH'))
20
+ {
21
+ //First catches the Apache users
22
+ header("HTTP/1.0 404 Not Found");
23
+ //This should catch FastCGI users
24
+ header("Status: 404 Not Found");
25
+ die();
26
+ }
includes/mtekk_adminkit.php CHANGED
@@ -16,6 +16,7 @@
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
 
19
  abstract class mtekk_adminKit
20
  {
21
  private $__version = '1.1';
@@ -144,6 +145,8 @@ abstract class mtekk_adminKit
144
  register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
145
  //Synchronize up our settings with the database as we're done modifying them now
146
  $this->opt = $this->parse_args(get_option($this->unique_prefix . '_options'), $this->opt);
 
 
147
  }
148
  /**
149
  * Adds the adminpage the menue and the nice little settings link
@@ -273,6 +276,15 @@ abstract class mtekk_adminKit
273
  $this->message();
274
  return false;
275
  }
 
 
 
 
 
 
 
 
 
276
  else if(!is_array($this->opt))
277
  {
278
  //Throw an error since it appears the options were never registered
@@ -300,8 +312,10 @@ abstract class mtekk_adminKit
300
  }
301
  /**
302
  * A prototype function. End user should override if they need this feature.
 
 
303
  */
304
- function opts_fix()
305
  {
306
  }
307
  /**
@@ -608,7 +622,7 @@ abstract class mtekk_adminKit
608
  $opt = get_option($this->unique_prefix . '_options');
609
  //Set the options in the DB to the backup options
610
  update_option($this->unique_prefix . '_options', get_option($this->unique_prefix . '_options_bk'));
611
- //Set the backup options to the undid options
612
  update_option($this->unique_prefix . '_options_bk', $opt);
613
  //Send the success/undo message
614
  $this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->admin_anchor('undo', __('Undo the last undo operation.', $this->identifier), __('Undo', $this->identifier));
@@ -759,9 +773,9 @@ abstract class mtekk_adminKit
759
  $form .= sprintf('<label for="%s_admin_import_file">', $this->unique_prefix);
760
  $form .= __('Settings File', $this->identifier);
761
  $form .= '</label></th><td>';
762
- $form .= sprintf('<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);
763
  $form .= __('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt');
764
- $form .= '</span></td></tr></table><p class="submit">';
765
  $form .= sprintf('<input type="submit" class="button" name="%s_admin_import" value="' . __('Import', $this->identifier) . '"/>', $this->unique_prefix, $this->unique_prefix);
766
  $form .= sprintf('<input type="submit" class="button" name="%s_admin_export" value="' . __('Export', $this->identifier) . '"/>', $this->unique_prefix);
767
  $form .= sprintf('<input type="submit" class="button" name="%s_admin_reset" value="' . __('Reset', $this->identifier) . '"/>', $this->unique_prefix, $this->unique_prefix);
@@ -785,14 +799,58 @@ abstract class mtekk_adminKit
785
  *
786
  * @param string $label
787
  * @param string $option
788
- * @param string $width [optional]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
789
  * @param bool $disable [optional]
790
  * @param string $description [optional]
 
 
 
791
  * @return
792
  */
793
- function input_text($label, $option, $width = '32', $disable = false, $description = '')
794
  {
795
  $optid = $this->get_valid_id($option);
 
 
 
 
 
 
 
 
 
 
 
 
 
796
  if($disable)
797
  {?>
798
  <input type="hidden" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" />
@@ -802,8 +860,8 @@ abstract class mtekk_adminKit
802
  <label for="<?php echo $optid;?>"><?php echo $label;?></label>
803
  </th>
804
  <td>
805
- <input type="text" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" size="<?php echo $width;?>" /><br />
806
- <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
807
  </td>
808
  </tr>
809
  <?php
@@ -824,7 +882,7 @@ abstract class mtekk_adminKit
824
  <label for="<?php echo $optid;?>"><?php echo $label;?></label>
825
  </p>
826
  <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="large-text code disabled"';}else{echo 'class="large-text code"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
827
- <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }
828
  }
829
  /**
830
  * This will output a well formed tiny mce ready textbox
@@ -848,7 +906,7 @@ abstract class mtekk_adminKit
848
  </th>
849
  <td>
850
  <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="mtekk_mce disabled"';}else{echo 'class="mtekk_mce"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
851
- <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
852
  </td>
853
  </tr>
854
  <?php
@@ -875,7 +933,7 @@ abstract class mtekk_adminKit
875
  <input type="checkbox" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?> value="true" <?php checked(true, $this->opt[$option]);?> />
876
  <?php echo $instruction; ?>
877
  </label><br />
878
- <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
879
  </td>
880
  </tr>
881
  <?php
@@ -923,7 +981,7 @@ abstract class mtekk_adminKit
923
  <select name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?>>
924
  <?php $this->select_options($option, $titles, $values); ?>
925
  </select><br />
926
- <?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
927
  </td>
928
  </tr>
929
  <?php
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
+ require_once(dirname(__FILE__) . '/block_direct_access.php');
20
  abstract class mtekk_adminKit
21
  {
22
  private $__version = '1.1';
145
  register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
146
  //Synchronize up our settings with the database as we're done modifying them now
147
  $this->opt = $this->parse_args(get_option($this->unique_prefix . '_options'), $this->opt);
148
+ //Run the opts fix filter
149
+ $this->opts_fix($this->opt);
150
  }
151
  /**
152
  * Adds the adminpage the menue and the nice little settings link
276
  $this->message();
277
  return false;
278
  }
279
+ //Do a quick version check
280
+ else if(version_compare($version, $this->version, '>') && is_array($this->opt))
281
+ {
282
+ //Throw an error since the DB version is out of date
283
+ $this->message['error'][] = __('Your settings are for a newer version.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
284
+ //Output any messages that there may be
285
+ $this->message();
286
+ return true;
287
+ }
288
  else if(!is_array($this->opt))
289
  {
290
  //Throw an error since it appears the options were never registered
312
  }
313
  /**
314
  * A prototype function. End user should override if they need this feature.
315
+ *
316
+ * @param array $opts
317
  */
318
+ function opts_fix(&$opts)
319
  {
320
  }
321
  /**
622
  $opt = get_option($this->unique_prefix . '_options');
623
  //Set the options in the DB to the backup options
624
  update_option($this->unique_prefix . '_options', get_option($this->unique_prefix . '_options_bk'));
625
+ //Set the backup options to the undone options
626
  update_option($this->unique_prefix . '_options_bk', $opt);
627
  //Send the success/undo message
628
  $this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->admin_anchor('undo', __('Undo the last undo operation.', $this->identifier), __('Undo', $this->identifier));
773
  $form .= sprintf('<label for="%s_admin_import_file">', $this->unique_prefix);
774
  $form .= __('Settings File', $this->identifier);
775
  $form .= '</label></th><td>';
776
+ $form .= sprintf('<input type="file" name="%s_admin_import_file" id="%s_admin_import_file" size="32" /><p class="description">', $this->unique_prefix, $this->unique_prefix);
777
  $form .= __('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt');
778
+ $form .= '</p></td></tr></table><p class="submit">';
779
  $form .= sprintf('<input type="submit" class="button" name="%s_admin_import" value="' . __('Import', $this->identifier) . '"/>', $this->unique_prefix, $this->unique_prefix);
780
  $form .= sprintf('<input type="submit" class="button" name="%s_admin_export" value="' . __('Export', $this->identifier) . '"/>', $this->unique_prefix);
781
  $form .= sprintf('<input type="submit" class="button" name="%s_admin_reset" value="' . __('Reset', $this->identifier) . '"/>', $this->unique_prefix, $this->unique_prefix);
799
  *
800
  * @param string $label
801
  * @param string $option
802
+ * @param string $class [optional]
803
+ * @param bool $disable [optional]
804
+ * @param string $description [optional]
805
+ * @return
806
+ */
807
+ function input_text($label, $option, $class = 'regular-text', $disable = false, $description = '')
808
+ {
809
+ $optid = $this->get_valid_id($option);
810
+ if($disable)
811
+ {?>
812
+ <input type="hidden" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" />
813
+ <?php } ?>
814
+ <tr valign="top">
815
+ <th scope="row">
816
+ <label for="<?php echo $optid;?>"><?php echo $label;?></label>
817
+ </th>
818
+ <td>
819
+ <input type="text" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled"'; $class .= ' disabled';}?> value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" class="<?php echo $class;?>" /><br />
820
+ <?php if($description !== ''){?><p class="description"><?php echo $description;?></p><?php }?>
821
+ </td>
822
+ </tr>
823
+ <?php
824
+ }
825
+ /**
826
+ * This will output a well formed table row for a HTML5 number input
827
+ *
828
+ * @param string $label
829
+ * @param string $option
830
+ * @param string $class [optional]
831
  * @param bool $disable [optional]
832
  * @param string $description [optional]
833
+ * @param int|string $min [optional]
834
+ * @param int|string $max [optional]
835
+ * @param int|string $step [optional]
836
  * @return
837
  */
838
+ function input_number($label, $option, $class = 'small-text', $disable = false, $description = '', $min = '', $max = '', $step = '')
839
  {
840
  $optid = $this->get_valid_id($option);
841
+ $extras = '';
842
+ if($min !== '')
843
+ {
844
+ $extras .= 'min="' . $min . '" ';
845
+ }
846
+ if($max !== '')
847
+ {
848
+ $extras .= 'max="' . $max . '" ';
849
+ }
850
+ if($step !== '')
851
+ {
852
+ $extras .= 'step="' . $step . '" ';
853
+ }
854
  if($disable)
855
  {?>
856
  <input type="hidden" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" />
860
  <label for="<?php echo $optid;?>"><?php echo $label;?></label>
861
  </th>
862
  <td>
863
+ <input type="number" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php echo $extras;?><?php if($disable){echo 'disabled="disabled"'; $class .= ' disabled';}?> value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" class="<?php echo $class;?>" /><br />
864
+ <?php if($description !== ''){?><p class="description"><?php echo $description;?></p><?php }?>
865
  </td>
866
  </tr>
867
  <?php
882
  <label for="<?php echo $optid;?>"><?php echo $label;?></label>
883
  </p>
884
  <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="large-text code disabled"';}else{echo 'class="large-text code"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
885
+ <?php if($description !== ''){?><p class="description"><?php echo $description;?></p><?php }
886
  }
887
  /**
888
  * This will output a well formed tiny mce ready textbox
906
  </th>
907
  <td>
908
  <textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="mtekk_mce disabled"';}else{echo 'class="mtekk_mce"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
909
+ <?php if($description !== ''){?><p class="description"><?php echo $description;?></p><?php }?>
910
  </td>
911
  </tr>
912
  <?php
933
  <input type="checkbox" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?> value="true" <?php checked(true, $this->opt[$option]);?> />
934
  <?php echo $instruction; ?>
935
  </label><br />
936
+ <?php if($description !== ''){?><p class="description"><?php echo $description;?></p><?php }?>
937
  </td>
938
  </tr>
939
  <?php
981
  <select name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?>>
982
  <?php $this->select_options($option, $titles, $values); ?>
983
  </select><br />
984
+ <?php if($description !== ''){?><p class="description"><?php echo $description;?></p><?php }?>
985
  </td>
986
  </tr>
987
  <?php
includes/mtekk_adminkit_tabs.css CHANGED
@@ -1,13 +1,12 @@
1
- /**
2
- * Tabbed Admin Page (CSS)
3
- *
4
- * @author Tom Klingenberg
5
- * @colordef #dfdfdf light-grey (tabs border color)
6
- * @colordef #f9f9f9 very-light-grey (admin standard background color)
7
- */
8
- #hasadmintabs ul.ui-tabs-nav {border-bottom:1px solid #dfdfdf; font-size:12px; height:29px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:13px 0 0; overflow:visible; padding:0 0 0 8px;}
9
- #hasadmintabs ul.ui-tabs-nav li {display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;}
10
- #hasadmintabs ul.ui-tabs-nav li a {background:transparent none no-repeat scroll 0 50%; border-bottom:1px solid #dfdfdf; display:block; float:left; line-height:28px; padding:1px 13px 0; position:relative; text-decoration:none;}
11
- #hasadmintabs ul.ui-tabs-nav li.ui-tabs-selected a{border-top-left-radius:4px; border-top-right-radius:4px;border:1px solid #dfdfdf; border-bottom-color:#f9f9f9; color:#333333; font-weight:normal; padding:0 12px;}
12
- #hasadmintabs ul.ui-tabs-nav a:focus, a:active {outline-color:-moz-use-text-color; outline-style:none; outline-width:medium;}
13
  #screen-options-wrap p.submit {margin:0; padding:0;}
1
+ /**
2
+ * Tabbed Admin Page (CSS)
3
+ *
4
+ * @author Tom Klingenberg
5
+ */
6
+ #hasadmintabs ul.ui-tabs-nav{border-bottom:1px solid #ccc; font-size:12px; height:27px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:14px 0 0; overflow:visible;padding:0 0 0 6px;}
7
+ #hasadmintabs ul.ui-tabs-nav li{display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;}
8
+ #hasadmintabs ul.ui-tabs-nav li a{background:transparent none no-repeat scroll 0 50%; border-bottom:1px solid #ccc; display:block; color:#aaa; float:left; line-height:25px; padding:1px 13px 0; position:relative; text-decoration:none;}
9
+ #hasadmintabs ul.ui-tabs-nav li.ui-tabs-selected a{border:1px solid #ccc; border-bottom-color:#fff; height: 25px; color:#464646; font-weight:normal; padding:1px 13px 0;}
10
+ #hasadmintabs ul.ui-tabs-nav li.ui-tabs-selected a:hover, #hasadmintabs ul.ui-tabs-nav a:hover{outline-color:-moz-use-text-color; outline-style:none; outline-width:medium; color:#d54e21;}
11
+ #hasadmintabs ul.ui-tabs-nav span{font-size: 12px; font-weight: bolder;}
 
12
  #screen-options-wrap p.submit {margin:0; padding:0;}
includes/mtekk_adminkit_tabs.js CHANGED
@@ -1,30 +1,31 @@
1
- jQuery(function()
2
- {
3
- mtekk_admin_tabulator_init();
4
- });
5
- /**
6
- * Tabulator Bootup
7
- */
8
- function mtekk_admin_tabulator_init(){
9
- if(!jQuery("#hasadmintabs").length) return;
10
- /* init markup for tabs */
11
- jQuery('#hasadmintabs').prepend("<ul><\/ul>");
12
- jQuery('#hasadmintabs > fieldset').each(function(i){
13
- id = jQuery(this).attr('id');
14
- cssc = jQuery(this).attr('class');
15
- caption = jQuery(this).find('h3').text();
16
- jQuery('#hasadmintabs > ul').append('<li><a href="#'+id+'" class="'+cssc+'"><span>'+caption+"<\/span><\/a><\/li>");
17
- jQuery(this).find('h3').hide();
18
- });
19
- /* init the tabs plugin */
20
- var tabs = jQuery("#hasadmintabs").tabs();
21
- var form = jQuery('#'+objectL10n.mtad_uid+'-options');
22
- var action = form.attr("action").split('#', 1) + '#' + jQuery('#hasadmintabs > fieldset').eq(tabs.tabs('option', 'selected')).attr('id');
23
- form.get(0).setAttribute("action", action);
24
- /* handler for opening the last tab after submit (compability version) */
25
- jQuery('#hasadmintabs ul a').click(function(i){
26
- var form = jQuery('#'+objectL10n.mtad_uid+'-options');
27
- var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
28
- form.get(0).setAttribute("action", action);
29
- });
 
30
  }
1
+ jQuery(function()
2
+ {
3
+ mtekk_admin_tabulator_init();
4
+ });
5
+ /**
6
+ * Tabulator Bootup
7
+ */
8
+ function mtekk_admin_tabulator_init(){
9
+ if(!jQuery("#hasadmintabs").length) return;
10
+ /* init markup for tabs */
11
+ jQuery('#hasadmintabs').prepend('<ul class="nav-tab-wrapper"><\/ul>');
12
+ jQuery('#hasadmintabs > fieldset').each(function(i){
13
+ id = jQuery(this).attr('id');
14
+ cssc = jQuery(this).attr('class');
15
+ title = jQuery(this).find('h3.tab-title').attr('title');
16
+ caption = jQuery(this).find('h3.tab-title').text();
17
+ jQuery('#hasadmintabs > ul').append('<li><a href="#'+id+'" class="nav-tab '+cssc+'" title="'+title+'"><span>'+caption+"<\/span><\/a><\/li>");
18
+ jQuery(this).find('h3.tab-title').hide();
19
+ });
20
+ /* init the tabs plugin */
21
+ var tabs = jQuery("#hasadmintabs").tabs();
22
+ var form = jQuery('#'+objectL10n.mtad_uid+'-options');
23
+ var action = form.attr("action").split('#', 1) + '#' + jQuery('#hasadmintabs > fieldset').eq(tabs.tabs('option', 'selected')).attr('id');
24
+ form.get(0).setAttribute("action", action);
25
+ /* handler for opening the last tab after submit (compability version) */
26
+ jQuery('#hasadmintabs ul a').click(function(i){
27
+ var form = jQuery('#'+objectL10n.mtad_uid+'-options');
28
+ var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
29
+ form.get(0).setAttribute("action", action);
30
+ });
31
  }
includes/multibyte_supplicant.php CHANGED
@@ -19,6 +19,7 @@
19
  along with this program; if not, write to the Free Software
20
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
  */
 
22
  if(!function_exists('mb_strlen'))
23
  {
24
  /**
@@ -69,6 +70,20 @@ if(!function_exists('mb_substr'))
69
  }
70
  }
71
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  //We need this constant to be defined, otherwise things will break
73
  if(!defined('MB_CASE_TITLE'))
74
  {
19
  along with this program; if not, write to the Free Software
20
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
  */
22
+ require_once(dirname(__FILE__) . '/block_direct_access.php');
23
  if(!function_exists('mb_strlen'))
24
  {
25
  /**
70
  }
71
  }
72
  }
73
+ if(!function_exists('mb_strtolower'))
74
+ {
75
+ /**
76
+ * Fallback for mb_strtolower for users without multibyte support
77
+ *
78
+ * @param string $str the string to change to lowercase
79
+ * @param string $encoding the encoding of the string
80
+ * @return string the lowercase string
81
+ */
82
+ function mb_strtolower($str, $encoding = 'UTF-8')
83
+ {
84
+ return strtolower($str);
85
+ }
86
+ }
87
  //We need this constant to be defined, otherwise things will break
88
  if(!defined('MB_CASE_TITLE'))
89
  {
languages/breadcrumb-navxt-az.mo CHANGED
Binary file
languages/breadcrumb-navxt-az.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:29:25+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,513 +10,748 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
- #: breadcrumb_navxt_widget.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Text to show before the trail:"
15
- msgstr ""
16
 
17
- #: breadcrumb_navxt_widget.php:100
18
  msgid "Schema.org"
19
- msgstr ""
20
 
21
- #: breadcrumb_navxt_admin.php:227
22
  msgid "Go to the Breadcrumb NavXT translation project."
23
- msgstr ""
24
 
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr ""
28
 
29
- #: breadcrumb_navxt_widget.php:89
30
  msgid "Title:"
31
  msgstr "Başlıq:"
32
 
33
- #: breadcrumb_navxt_widget.php:101
 
 
 
 
 
 
 
 
34
  msgid "Plain"
35
  msgstr "Düz"
36
 
37
- #: breadcrumb_navxt_widget.php:106
38
  msgid "Link the breadcrumbs"
39
  msgstr "Breadcrumblar linki"
40
 
41
- #: breadcrumb_navxt_widget.php:108
42
  msgid "Reverse the order of the trail"
43
  msgstr "Zolağın sıralanmasını əksinə çevirin."
44
 
45
- #: breadcrumb_navxt_widget.php:110
46
  msgid "Hide the trail on the front page"
47
  msgstr "Ana səhifədə zolağı gizlədin"
48
 
49
- #: breadcrumb_navxt_admin.php:118
50
  msgid "Insufficient privileges to proceed."
51
  msgstr "Davam etmək üçün kifayət qədər icazə yoxdur."
52
 
53
- #: breadcrumb_navxt_admin.php:220
54
  msgid "Tips for the settings are located below select options."
55
  msgstr "Tənzimləmər üçün tiplər seçim tənzimləmələrinin aşağısında yerləşdirilib."
56
 
57
- #: breadcrumb_navxt_admin.php:221
58
  msgid "Resources"
59
  msgstr "Resurslar"
60
 
61
- #: breadcrumb_navxt_admin.php:222
62
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
  msgstr "%s Dərsliklər və İzahlar %s: Müəllifin web saytında çoxlu dərsliklər, izahlar və necə etmək barədə yazılar mövcuddur."
64
 
65
- #: breadcrumb_navxt_admin.php:222
66
  msgid "Go to the Breadcrumb NavXT tag archive."
67
  msgstr "Breadcrumb NavXT tag arxivinə gedin"
68
 
69
- #: breadcrumb_navxt_admin.php:223
70
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
- msgstr "%s Online Dokumentasiya%s: Çoxlu texniki məlumat zənginliyi üçün dokumentasiyanı yoxlayın."
72
 
73
- #: breadcrumb_navxt_admin.php:223
74
  msgid "Go to the Breadcrumb NavXT online documentation"
75
- msgstr "Breadcrumb NavXT online dokumentasiyasına gedin"
76
 
77
- #: breadcrumb_navxt_admin.php:224
78
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
- msgstr "%sReport a Bug%s: Əgər səhv tapdığınızı düşünürsünüzsə, zəhmət olmasa WordPress versiyasını və səhvi necə aradan qaldırmaq barədə ətraflı olaraq əlavə edin."
80
 
81
- #: breadcrumb_navxt_admin.php:224
82
  msgid "Go to the Breadcrumb NavXT support post for your version."
83
- msgstr "Breadcrumb NavXT dəstək məqaləsinə sizin versiya üçün gedin."
84
 
85
- #: breadcrumb_navxt_admin.php:225
86
  msgid "Giving Back"
87
  msgstr "Geri Vermək"
88
 
89
- #: breadcrumb_navxt_admin.php:226
90
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
- msgstr "%sPul Yardımı%s: Breadcrumb NavXT - ni sevdiniz və inkişafına kömək etmək istəyirsiniz? Müəllifi pivə almağa görə nəzərə alın."
92
 
93
- #: breadcrumb_navxt_admin.php:226
94
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
- msgstr "Breadcrumb NavXT üçün pul yardımı etmək üçün PayPal-a gedin."
96
 
97
- #: breadcrumb_navxt_admin.php:227
98
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
- msgstr "%sTərcümə%s: Sizin diliniz mümkün deyil? John Havlik ilə tərcümə üçün əlaqə yaradın."
100
 
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
 
102
  msgid "General"
103
  msgstr "Ümumi"
104
 
105
- #: breadcrumb_navxt_admin.php:235
106
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
- msgstr "Tənzimləmələrin bu səhifədə effekt verməyi üçün, daxil edilən Breadcrumb NavXT widget-ni başqa bir yol olaraq istifadə etməlisiniz, ya da kod blokların sizin temanın içinə daxil eməlisiniz."
108
 
109
- #: breadcrumb_navxt_admin.php:236
110
  msgid "Breadcrumb trail with separators"
111
  msgstr "Breadcrumb zolağı ayırıcılar ilə"
112
 
113
- #: breadcrumb_navxt_admin.php:242
114
  msgid "Breadcrumb trail in list form"
115
  msgstr "Breadcrumb zolağı form siyahısında"
116
 
117
- #: breadcrumb_navxt_admin.php:251
118
  msgid "Quick Start"
119
  msgstr "Cəld Başlanğıc"
120
 
121
- #: breadcrumb_navxt_admin.php:254
122
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
  msgstr "Yuxarıdakı Cəld Başlanğıc bölməsindəki kodu istifadə etməklə, növbəti CSS sizin breadcrumb zolağı üçün təməl olaraq istifadə ediləcəkdir."
124
 
125
- #: breadcrumb_navxt_admin.php:266
126
  msgid "Styling"
127
  msgstr "Stil"
128
 
129
- #: breadcrumb_navxt_admin.php:272
130
  msgid "Import/Export/Reset"
131
  msgstr "İdxal/İxrac/Sıfırlama"
132
 
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
  msgid "Import"
135
  msgstr "İdxal"
136
 
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
  msgid "Export"
139
  msgstr "İxrac"
140
 
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
  msgid "Reset"
143
  msgstr "Sıfırlama"
144
 
145
- #: breadcrumb_navxt_admin.php:311
146
  msgid "Breadcrumb NavXT Settings"
147
  msgstr "Breadcrumb NavXT Tənzimləmələri"
148
 
149
- #: breadcrumb_navxt_admin.php:326
150
  msgid "Breadcrumb Separator"
151
  msgstr "Breadcrumb Ayırıcı"
152
 
153
- #: breadcrumb_navxt_admin.php:326
154
  msgid "Placed in between each breadcrumb."
155
  msgstr "Hər breadcrumb arasında yerləşdirilir."
156
 
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Breadcrumb Maksimum Başlıq Uzunluğu"
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
  msgid "Home Breadcrumb"
163
  msgstr "Ana Səhifə Breadcrumb"
164
 
165
- #: breadcrumb_navxt_admin.php:336
166
  msgid "Place the home breadcrumb in the trail."
167
  msgstr "Ana Səhifə breadcrumb-ı zolaqda yerləşdirin."
168
 
169
- #: breadcrumb_navxt_admin.php:341
170
  msgid "Home Title: "
171
  msgstr "Ana Səhifə Başlığı:"
172
 
173
- #: breadcrumb_navxt_admin.php:349
174
  msgid "Home Template"
175
  msgstr "Ana Səhifə Şablonu"
176
 
177
- #: breadcrumb_navxt_admin.php:349
178
  msgid "The template for the home breadcrumb."
179
  msgstr "Ana Səhifə breadcrumb-ı üçün Şablon"
180
 
181
- #: breadcrumb_navxt_admin.php:350
182
  msgid "Home Template (Unlinked)"
183
- msgstr "Ana Səhifə Şablonu (Bəyənilməyən)"
184
 
185
- #: breadcrumb_navxt_admin.php:350
186
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
- msgstr "Ana Səhifə breadcrumb-ı üçün Şablon, breacrumb link ilə əlaqələndirilmədikdə istifadə olunur."
188
 
189
- #: breadcrumb_navxt_admin.php:351
190
  msgid "Blog Breadcrumb"
191
  msgstr "Blog Breadcrumb"
192
 
193
- #: breadcrumb_navxt_admin.php:351
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Blog breadcrumb-nı zolaqda yerləşdirin."
196
 
197
- #: breadcrumb_navxt_admin.php:352
198
  msgid "Blog Template"
199
  msgstr "Blog Şablonu"
200
 
201
- #: breadcrumb_navxt_admin.php:352
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
- msgstr "Blog breadcrumb-ı üçün Şablon, yalnız statik ana səhifə şəraitində istifadə edilir."
204
 
205
- #: breadcrumb_navxt_admin.php:353
206
  msgid "Blog Template (Unlinked)"
207
- msgstr "Blog Şablonu (Bəyənilməyən)"
208
 
209
- #: breadcrumb_navxt_admin.php:353
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
- msgstr "Blog breadcrumb-ı üçün Şablon, yalnız statik ana səhifəsi şəraitində və breadcrumb link ilə əlaqələndirilməyəndə istifadə olunur."
212
 
213
- #: breadcrumb_navxt_admin.php:357
214
  msgid "Main Site Breadcrumb"
215
  msgstr "Əsas Sayt Breadcrumb-ı"
216
 
217
- #: breadcrumb_navxt_admin.php:362
218
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
- msgstr "Əsas Sayt Breadcrumb-nı mutisayt quraşdırmasında zolaqda yerləşdirin."
220
 
221
- #: breadcrumb_navxt_admin.php:367
222
  msgid "Main Site Home Title: "
223
  msgstr "Əsas Sayt Ana Səhifə başlığı:"
224
 
225
- #: breadcrumb_navxt_admin.php:376
226
  msgid "Main Site Home Template"
227
  msgstr "Əsas Sayt Ana Səhifə Şablonu"
228
 
229
- #: breadcrumb_navxt_admin.php:376
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində istifadə edilir."
232
 
233
- #: breadcrumb_navxt_admin.php:377
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Əsas Sayt Ana Səhifə Şablonu (Bəyənilməyən)"
236
 
237
- #: breadcrumb_navxt_admin.php:377
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
- msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
240
 
241
- #: breadcrumb_navxt_admin.php:382
242
  msgid "Current Item"
243
  msgstr "Cari Element"
244
 
245
- #: breadcrumb_navxt_admin.php:385
246
  msgid "Link Current Item"
247
  msgstr "Cari Elmentin Linki"
248
 
249
- #: breadcrumb_navxt_admin.php:385
250
  msgid "Yes"
251
  msgstr "Hə"
252
 
253
- #: breadcrumb_navxt_admin.php:386
254
  msgid "Paged Breadcrumb"
255
  msgstr "Səhifələnmiş Breadcrumb"
256
 
257
- #: breadcrumb_navxt_admin.php:386
258
  msgid "Include the paged breadcrumb in the breadcrumb trail."
259
  msgstr "Səhifələnmiş Breadcrumb-ı breadcrumb zolağında daxil edin."
260
 
261
- #: breadcrumb_navxt_admin.php:386
262
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
  msgstr "İstifadəçi məqalələr/səhifələr səhifələnməsində (pagination) birincidən başqa səhifələrdə olarkən bildirir."
264
 
265
- #: breadcrumb_navxt_admin.php:387
266
  msgid "Paged Template"
267
  msgstr "Səhifələnmə Şablonu"
268
 
269
- #: breadcrumb_navxt_admin.php:387
270
  msgid "The template for paged breadcrumbs."
271
  msgstr "Səhidələniş breadcrumb üçün şablon."
272
 
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Məqalələr &amp; Səhifələr"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
  msgid "Post Template"
279
  msgstr "Məqalə Şablonu"
280
 
281
- #: breadcrumb_navxt_admin.php:395
282
  msgid "The template for post breadcrumbs."
283
  msgstr "Məqalə breadcrumb-ı üçün şablon."
284
 
285
- #: breadcrumb_navxt_admin.php:396
286
  msgid "Post Template (Unlinked)"
287
  msgstr "Məqalə Şablonu (Bəyənilməyən)"
288
 
289
- #: breadcrumb_navxt_admin.php:396
290
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
  msgstr "Məqalə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
292
 
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Məqalə Təsnifat Görünüşü"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
- msgstr "Məqalənin Təsnifat liderliyini breadcrumb zolağında göstərir."
300
 
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Məqalə Təsnifatı"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
  msgid "Categories"
307
  msgstr "Kateqoriyalar"
308
 
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
  msgid "Dates"
311
  msgstr "Tarixlər"
312
 
313
- #: breadcrumb_navxt_admin.php:407
314
  msgid "Tags"
315
  msgstr "Taglər"
316
 
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
  msgid "Pages"
319
  msgstr "Səhifələr"
320
 
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "Breadcrumb zolağının göstərəcəyi təsnifat."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
  msgid "Page Template"
327
  msgstr "Səhifə Şablonu"
328
 
329
- #: breadcrumb_navxt_admin.php:423
330
  msgid "The template for page breadcrumbs."
331
  msgstr "Səhifə breadcrumbları üçüb şablon."
332
 
333
- #: breadcrumb_navxt_admin.php:424
334
  msgid "Page Template (Unlinked)"
335
  msgstr "Səhifə Şablonu (Bəyənilməyən)"
336
 
337
- #: breadcrumb_navxt_admin.php:424
338
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
  msgstr "Səhifə breadcrumb-ı üçüb şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
340
 
341
- #: breadcrumb_navxt_admin.php:425
342
  msgid "Attachment Template"
343
  msgstr "Fayl Yükləmə Şablonu"
344
 
345
- #: breadcrumb_navxt_admin.php:425
346
  msgid "The template for attachment breadcrumbs."
347
  msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon."
348
 
349
- #: breadcrumb_navxt_admin.php:426
350
  msgid "Attachment Template (Unlinked)"
351
  msgstr "Fayl Yükləmə Şablonu (Bəyənilməyən)"
352
 
353
- #: breadcrumb_navxt_admin.php:426
354
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
  msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
356
 
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
  msgstr "<a title=\"%title% üçün gedin.\" href=\"%link%\">%htitle%</a>"
363
 
364
- #: breadcrumb_navxt_admin.php:567
365
  msgid "%htitle%"
366
  msgstr "%htitle%"
367
 
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
  msgid "%s Template"
370
  msgstr "%s Şablon"
371
 
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
  msgid "The template for %s breadcrumbs."
374
  msgstr "%s breadcrumblar üçün şablon."
375
 
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
  msgid "%s Template (Unlinked)"
378
  msgstr "%s Şablon (Bəyənilməyən)"
379
 
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
  msgstr "%s breadcrumblar üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
383
 
384
- #: breadcrumb_navxt_admin.php:448
385
  msgid "%s Root Page"
386
  msgstr "%s Təməl Səhifə"
387
 
388
- #: breadcrumb_navxt_admin.php:451
389
  msgid "&mdash; Select &mdash;"
390
  msgstr "&mdash; Seçin &mdash;"
391
 
392
- #: breadcrumb_navxt_admin.php:455
393
  msgid "%s Archive Display"
394
  msgstr "%s Arxiv Görünüşü"
395
 
396
- #: breadcrumb_navxt_admin.php:455
397
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
  msgstr "%s məqalə tipi arxivləri üçün breadcrumb-ı breadcrumb zolağında göstərin."
399
 
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "%s Təsnifat Görünüşü"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
  msgstr "Təsnifat liderliyini %s üçün breadcrumb zolağında göstərin."
407
 
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "%s Təsnifat"
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Kateqoriyalar &amp; Taglər"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
  msgid "Category Template"
418
  msgstr "Kateqoriya Şablonu"
419
 
420
- #: breadcrumb_navxt_admin.php:488
421
  msgid "The template for category breadcrumbs."
422
  msgstr "Kateqoriya breadcrumb-ları üçün şablon."
423
 
424
- #: breadcrumb_navxt_admin.php:489
425
  msgid "Category Template (Unlinked)"
426
  msgstr "Kateqoriya Şablonu (Bəyənilməyən)"
427
 
428
- #: breadcrumb_navxt_admin.php:489
429
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
  msgstr "Kateqoriya breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
431
 
432
- #: breadcrumb_navxt_admin.php:490
433
  msgid "Tag Template"
434
  msgstr "Tag Şablonu"
435
 
436
- #: breadcrumb_navxt_admin.php:490
437
  msgid "The template for tag breadcrumbs."
438
  msgstr "Tag breadcrumb-ları üçün şablon."
439
 
440
- #: breadcrumb_navxt_admin.php:491
441
  msgid "Tag Template (Unlinked)"
442
  msgstr "Tag Şablonu (Bəyənilməyən)"
443
 
444
- #: breadcrumb_navxt_admin.php:491
445
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr "Tag breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
447
 
448
- #: breadcrumb_navxt_admin.php:517
449
  msgid "Miscellaneous"
450
  msgstr "Müxtəlif"
451
 
452
- #: breadcrumb_navxt_admin.php:520
453
  msgid "Author Template"
454
  msgstr "Müəllif Şablonu"
455
 
456
- #: breadcrumb_navxt_admin.php:520
457
  msgid "The template for author breadcrumbs."
458
  msgstr "Müəllif breadcrumb-ları üçün şablon."
459
 
460
- #: breadcrumb_navxt_admin.php:521
461
  msgid "Author Template (Unlinked)"
462
  msgstr "Müəllif Şablonu (Bəyənilməyən)"
463
 
464
- #: breadcrumb_navxt_admin.php:521
465
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
  msgstr "Müəllif breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
467
 
468
- #: breadcrumb_navxt_admin.php:522
469
  msgid "Author Display Format"
470
  msgstr "Müəllif Görüntü Formatı"
471
 
472
- #: breadcrumb_navxt_admin.php:522
473
  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."
474
  msgstr "display_name istifadəçi profilinin seçimlərində təyin edilən \"Adı kütləvi olaraq görüntüləndir\" kimi görüntülənir."
475
 
476
- #: breadcrumb_navxt_admin.php:523
477
  msgid "Date Template"
478
  msgstr "Tarix Şablonu"
479
 
480
- #: breadcrumb_navxt_admin.php:523
481
  msgid "The template for date breadcrumbs."
482
  msgstr "Tarix breadcrumb-ları üçün şablon."
483
 
484
- #: breadcrumb_navxt_admin.php:524
485
  msgid "Date Template (Unlinked)"
486
  msgstr "Tarix Şablonu (Bəyənilməyən)"
487
 
488
- #: breadcrumb_navxt_admin.php:524
489
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
  msgstr "Tarix breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
491
 
492
- #: breadcrumb_navxt_admin.php:525
493
  msgid "Search Template"
494
  msgstr "Axtarış Şablonu"
495
 
496
- #: breadcrumb_navxt_admin.php:525
497
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
  msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
499
 
500
- #: breadcrumb_navxt_admin.php:526
501
  msgid "Search Template (Unlinked)"
502
  msgstr "Axtarış Şablonu (Bəyənilməyən)"
503
 
504
- #: breadcrumb_navxt_admin.php:526
505
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
  msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız axtarış nəticələri bir neçə səhifələri birləşdirərsə və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
507
 
508
- #: breadcrumb_navxt_admin.php:527
509
  msgid "404 Title"
510
  msgstr "404 Başlığı"
511
 
512
- #: breadcrumb_navxt_admin.php:528
513
  msgid "404 Template"
514
  msgstr "404 Şablonu"
515
 
516
- #: breadcrumb_navxt_admin.php:528
517
  msgid "The template for 404 breadcrumbs."
518
  msgstr "404 breadcrumb-ları üçün şablon."
519
 
520
- #: breadcrumb_navxt_admin.php:533
521
  msgid "Save Changes"
522
- msgstr "Dəyişiklikləri yaddaşda saxlayın"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2012-09-28 21:55:44+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
+ #: breadcrumb_navxt_class.php:268
17
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
+ msgstr "<a title=\"Keçid edin %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
19
+
20
+ #: breadcrumb_navxt_class.php:278
21
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
+ msgstr "Bu nəticə üçün axtarış edin &#39;<a title=\"%title% Başlığı üçün axtarış nəticələrinin ilk səhifəsinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
+
24
+ #: breadcrumb_navxt_admin.php:325
25
+ msgid "A collection of settings most likely to be modified are located under this tab."
26
+ msgstr "Bu Tab altında daha çox dəyişdirilən tənzimləmələrin kolleksiyası yerləşir"
27
+
28
+ #: breadcrumb_navxt_admin.php:333
29
+ msgid "Title Length"
30
+ msgstr "Başlıq Uzunluğu"
31
+
32
+ #: breadcrumb_navxt_admin.php:338
33
+ msgid "Limit the length of the breadcrumb title."
34
+ msgstr "Breadcrumb başlığının uzunluğunu məhdudlaşdırmaq"
35
+
36
+ #: breadcrumb_navxt_admin.php:399
37
+ msgid "Mainsite Breadcrumb"
38
+ msgstr "Əsas sayt üçün Breadcrumb"
39
+
40
+ #: breadcrumb_navxt_admin.php:430
41
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
+ msgstr "Bu Tab altında bütün post tipləri ((Postlar, Səhifələr, and Fərdi Post Tipləri) üçün tənzimləmələr yerləşir"
43
+
44
+ #: breadcrumb_navxt_admin.php:430
45
+ msgid "Post Types"
46
+ msgstr "Post Tipləri"
47
+
48
+ #: breadcrumb_navxt_admin.php:436
49
+ msgid "Post Hierarchy Display"
50
+ msgstr "Post İerarxiyası Görünüşü"
51
+
52
+ #: breadcrumb_navxt_admin.php:440
53
+ msgid "Post Hierarchy"
54
+ msgstr "Post İerarxiyası"
55
+
56
+ #: breadcrumb_navxt_admin.php:508
57
+ msgid "%s Hierarchy Display"
58
+ msgstr "%s İerarxiya Görünüşü"
59
+
60
+ #: breadcrumb_navxt_admin.php:559
61
+ msgid "Post Formats"
62
+ msgstr "Post Formatları"
63
+
64
+ #: breadcrumb_navxt_admin.php:343
65
+ msgid "Max Title Length: "
66
+ msgstr "Maksimum Başlıq Uzunluğu:"
67
+
68
+ #: breadcrumb_navxt_admin.php:431
69
+ msgid "Posts"
70
+ msgstr "Postlar"
71
+
72
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
+ msgid "Post Parent"
74
+ msgstr "Oxşar Postlar"
75
+
76
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
+ msgid "The hierarchy which the breadcrumb trail will show."
78
+ msgstr "Breadcrumb zolağı göstəriləcək olan ierarxiya."
79
+
80
+ #: breadcrumb_navxt_admin.php:512
81
+ msgid "%s Hierarchy"
82
+ msgstr "%s İerarxiya"
83
+
84
+ #: breadcrumb_navxt_admin.php:544
85
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
+ msgstr "Bu Tab altında bütün taxonomy-lər (Kateqoriyalar, Taglər və fərdi taxonomy-lər daxil olmaqla) üçün tənzimləmələr yerləşir."
87
+
88
+ #: breadcrumb_navxt_admin.php:544
89
+ msgid "Taxonomies"
90
+ msgstr "Taxonomy-lər"
91
+
92
+ #: breadcrumb_navxt_admin.php:562
93
+ msgid "Post Format Template"
94
+ msgstr "Post Formatı Şablonu"
95
+
96
+ #: breadcrumb_navxt_admin.php:562
97
+ msgid "The template for post format breadcrumbs."
98
+ msgstr "Post Formatı breadcrumb-ları şablonu."
99
+
100
+ #: breadcrumb_navxt_admin.php:563
101
+ msgid "Post Format Template (Unlinked)"
102
+ msgstr "Post Formatı Şablonu (Linksiz)"
103
+
104
+ #: breadcrumb_navxt_admin.php:563
105
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
+ msgstr "Yalnız breadcrumb link ilə əlaqələndirilmədikdə, post_format breadcrumb-ları üçün şablondur."
107
+
108
+ #: breadcrumb_navxt_admin.php:593
109
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
+ msgstr "Bu Tab altında müəllif və tarix arxivləri, axtarışlar və 404 səhifələri üçün tənzimləmələr yerləşir"
111
+
112
+ #: breadcrumb_navxt_admin.php:594
113
+ msgid "Author Archives"
114
+ msgstr "Müəllif Arxivi"
115
+
116
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
+ msgstr "<a title=\"%title% tag arxivinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
+
120
+ #: breadcrumb_navxt_class.php:293
121
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "Məqalələr: <a title=\"%title% ilə olan postların ilk səhifəsinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:300
125
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "<a title=\"%title% kateqoriya arxivlərinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:304
129
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"%title% arxivlərə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: includes/mtekk_adminkit.php:283
133
+ msgid "Your settings are for a newer version."
134
+ msgstr "Yeni versiya üçün sizin nizamlamalarınız."
135
+
136
+ #: breadcrumb_navxt_widget.php:96
137
  msgid "Text to show before the trail:"
138
+ msgstr "Zolaqdan əvvəl göstəriləcək mətn"
139
 
140
+ #: breadcrumb_navxt_widget.php:103
141
  msgid "Schema.org"
142
+ msgstr "Schema.org"
143
 
144
+ #: breadcrumb_navxt_admin.php:229
145
  msgid "Go to the Breadcrumb NavXT translation project."
146
+ msgstr "Breadcrumb NavXT tərcümə proyektinə keçid edin."
147
 
148
+ #: breadcrumb_navxt_widget.php:33
149
+ msgid "Adds a breadcrumb trail to your sidebar"
150
+ msgstr "Sizin sidebara breadcrumb zolağı əlavə edir."
151
 
152
+ #: breadcrumb_navxt_widget.php:92
153
  msgid "Title:"
154
  msgstr "Başlıq:"
155
 
156
+ #: breadcrumb_navxt_widget.php:100
157
+ msgid "Output trail as:"
158
+ msgstr "Zolağı bu cür xaric et:"
159
+
160
+ #: breadcrumb_navxt_widget.php:102
161
+ msgid "List"
162
+ msgstr "Siyahı"
163
+
164
+ #: breadcrumb_navxt_widget.php:104
165
  msgid "Plain"
166
  msgstr "Düz"
167
 
168
+ #: breadcrumb_navxt_widget.php:109
169
  msgid "Link the breadcrumbs"
170
  msgstr "Breadcrumblar linki"
171
 
172
+ #: breadcrumb_navxt_widget.php:111
173
  msgid "Reverse the order of the trail"
174
  msgstr "Zolağın sıralanmasını əksinə çevirin."
175
 
176
+ #: breadcrumb_navxt_widget.php:113
177
  msgid "Hide the trail on the front page"
178
  msgstr "Ana səhifədə zolağı gizlədin"
179
 
180
+ #: breadcrumb_navxt_admin.php:120
181
  msgid "Insufficient privileges to proceed."
182
  msgstr "Davam etmək üçün kifayət qədər icazə yoxdur."
183
 
184
+ #: breadcrumb_navxt_admin.php:222
185
  msgid "Tips for the settings are located below select options."
186
  msgstr "Tənzimləmər üçün tiplər seçim tənzimləmələrinin aşağısında yerləşdirilib."
187
 
188
+ #: breadcrumb_navxt_admin.php:223
189
  msgid "Resources"
190
  msgstr "Resurslar"
191
 
192
+ #: breadcrumb_navxt_admin.php:224
193
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
  msgstr "%s Dərsliklər və İzahlar %s: Müəllifin web saytında çoxlu dərsliklər, izahlar və necə etmək barədə yazılar mövcuddur."
195
 
196
+ #: breadcrumb_navxt_admin.php:224
197
  msgid "Go to the Breadcrumb NavXT tag archive."
198
  msgstr "Breadcrumb NavXT tag arxivinə gedin"
199
 
200
+ #: breadcrumb_navxt_admin.php:225
201
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
+ msgstr "%sOnline Dokumentasiya%s: Çoxlu texniki məlumat zənginliyi üçün dokumentasiyanı yoxlayın."
203
 
204
+ #: breadcrumb_navxt_admin.php:225
205
  msgid "Go to the Breadcrumb NavXT online documentation"
206
+ msgstr "Breadcrumb NavXT online dokumentasiyasına keçid edin"
207
 
208
+ #: breadcrumb_navxt_admin.php:226
209
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
+ msgstr "%sReport a Bug%s: Əgər səhv tapdığınızı düşünürsünüzsə, zəhmət olmasa WordPress versiyasını və səhvi necə aradan qaldırmaq barədə ətraflı olaraq daxil edin."
211
 
212
+ #: breadcrumb_navxt_admin.php:226
213
  msgid "Go to the Breadcrumb NavXT support post for your version."
214
+ msgstr "Sizin versiya üçün Breadcrumb NavXT dəstək məqaləsinə keçid edin."
215
 
216
+ #: breadcrumb_navxt_admin.php:227
217
  msgid "Giving Back"
218
  msgstr "Geri Vermək"
219
 
220
+ #: breadcrumb_navxt_admin.php:228
221
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
+ msgstr "%sPul Yardımı%s: Breadcrumb NavXT - ni bəyəndiniz və inkişafına kömək etmək istəyirsiniz? Müəllifi pivə almağa görə nəzərə alın."
223
 
224
+ #: breadcrumb_navxt_admin.php:228
225
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
+ msgstr "Breadcrumb NavXT üçün pul yardımı etmək üçün PayPal-a keçid edin."
227
 
228
+ #: breadcrumb_navxt_admin.php:229
229
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
+ msgstr "%sTərcümə%s: Sizin diliniz mövcud deyil? John Havlik ilə tərcümə üçün əlaqə yaradın."
231
 
232
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
+ #: breadcrumb_navxt_admin.php:326
234
  msgid "General"
235
  msgstr "Ümumi"
236
 
237
+ #: breadcrumb_navxt_admin.php:237
238
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
+ msgstr "Tənzimləmələrin bu səhifədə effekt verməyi üçün, daxil edilən Breadcrumb NavXT widget-ni istifadə etməlisiniz, ya da kod bloklarını temanızın içinə daxil eməlisiniz."
240
 
241
+ #: breadcrumb_navxt_admin.php:238
242
  msgid "Breadcrumb trail with separators"
243
  msgstr "Breadcrumb zolağı ayırıcılar ilə"
244
 
245
+ #: breadcrumb_navxt_admin.php:244
246
  msgid "Breadcrumb trail in list form"
247
  msgstr "Breadcrumb zolağı form siyahısında"
248
 
249
+ #: breadcrumb_navxt_admin.php:253
250
  msgid "Quick Start"
251
  msgstr "Cəld Başlanğıc"
252
 
253
+ #: breadcrumb_navxt_admin.php:256
254
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
  msgstr "Yuxarıdakı Cəld Başlanğıc bölməsindəki kodu istifadə etməklə, növbəti CSS sizin breadcrumb zolağı üçün təməl olaraq istifadə ediləcəkdir."
256
 
257
+ #: breadcrumb_navxt_admin.php:268
258
  msgid "Styling"
259
  msgstr "Stil"
260
 
261
+ #: breadcrumb_navxt_admin.php:274
262
  msgid "Import/Export/Reset"
263
  msgstr "İdxal/İxrac/Sıfırlama"
264
 
265
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
  msgid "Import"
267
  msgstr "İdxal"
268
 
269
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
  msgid "Export"
271
  msgstr "İxrac"
272
 
273
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
  msgid "Reset"
275
  msgstr "Sıfırlama"
276
 
277
+ #: breadcrumb_navxt_admin.php:313
278
  msgid "Breadcrumb NavXT Settings"
279
  msgstr "Breadcrumb NavXT Tənzimləmələri"
280
 
281
+ #: breadcrumb_navxt_admin.php:329
282
  msgid "Breadcrumb Separator"
283
  msgstr "Breadcrumb Ayırıcı"
284
 
285
+ #: breadcrumb_navxt_admin.php:329
286
  msgid "Placed in between each breadcrumb."
287
  msgstr "Hər breadcrumb arasında yerləşdirilir."
288
 
289
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
 
 
 
 
290
  msgid "Home Breadcrumb"
291
  msgstr "Ana Səhifə Breadcrumb"
292
 
293
+ #: breadcrumb_navxt_admin.php:372
294
  msgid "Place the home breadcrumb in the trail."
295
  msgstr "Ana Səhifə breadcrumb-ı zolaqda yerləşdirin."
296
 
297
+ #: breadcrumb_navxt_admin.php:377
298
  msgid "Home Title: "
299
  msgstr "Ana Səhifə Başlığı:"
300
 
301
+ #: breadcrumb_navxt_admin.php:385
302
  msgid "Home Template"
303
  msgstr "Ana Səhifə Şablonu"
304
 
305
+ #: breadcrumb_navxt_admin.php:385
306
  msgid "The template for the home breadcrumb."
307
  msgstr "Ana Səhifə breadcrumb-ı üçün Şablon"
308
 
309
+ #: breadcrumb_navxt_admin.php:386
310
  msgid "Home Template (Unlinked)"
311
+ msgstr "Ana Səhifə Şablonu (Linksiz)"
312
 
313
+ #: breadcrumb_navxt_admin.php:386
314
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
+ msgstr "Ana Səhifə breadcrumb-ı üçün şablon, breacrumb link ilə əlaqələndirilmədikdə istifadə olunur."
316
 
317
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
  msgid "Blog Breadcrumb"
319
  msgstr "Blog Breadcrumb"
320
 
321
+ #: breadcrumb_navxt_admin.php:393
322
  msgid "Place the blog breadcrumb in the trail."
323
  msgstr "Blog breadcrumb-nı zolaqda yerləşdirin."
324
 
325
+ #: breadcrumb_navxt_admin.php:394
326
  msgid "Blog Template"
327
  msgstr "Blog Şablonu"
328
 
329
+ #: breadcrumb_navxt_admin.php:394
330
  msgid "The template for the blog breadcrumb, used only in static front page environments."
331
+ msgstr "Blog breadcrumb-ı üçün şablon, yalnız statik ana səhifə vəziyyətində istifadə olunur."
332
 
333
+ #: breadcrumb_navxt_admin.php:395
334
  msgid "Blog Template (Unlinked)"
335
+ msgstr "Blog Şablonu (Linksiz)"
336
 
337
+ #: breadcrumb_navxt_admin.php:395
338
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
+ msgstr "Blog breadcrumb-ı üçün şablon, yalnız statik ana səhifəsi vəziyyətində və breadcrumb link ilə əlaqələndirilmədikdə istifadə olunur."
340
 
341
+ #: breadcrumb_navxt_admin.php:403
342
  msgid "Main Site Breadcrumb"
343
  msgstr "Əsas Sayt Breadcrumb-ı"
344
 
345
+ #: breadcrumb_navxt_admin.php:408
346
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
+ msgstr "Əsas Sayt Breadcrumb-nı mutisayt quraşdırılması vəziyyətində olarkən zolaqda yerləşdirin."
348
 
349
+ #: breadcrumb_navxt_admin.php:413
350
  msgid "Main Site Home Title: "
351
  msgstr "Əsas Sayt Ana Səhifə başlığı:"
352
 
353
+ #: breadcrumb_navxt_admin.php:422
354
  msgid "Main Site Home Template"
355
  msgstr "Əsas Sayt Ana Səhifə Şablonu"
356
 
357
+ #: breadcrumb_navxt_admin.php:422
358
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
  msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində istifadə edilir."
360
 
361
+ #: breadcrumb_navxt_admin.php:423
362
  msgid "Main Site Home Template (Unlinked)"
363
  msgstr "Əsas Sayt Ana Səhifə Şablonu (Bəyənilməyən)"
364
 
365
+ #: breadcrumb_navxt_admin.php:423
366
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
+ msgstr "Əsas Saytın Ana Səhifəsinin breadcrumb-ı üçün şablon, yalnız multisayt şəraitində və breadcrumb link ilə əlaqələndirilmədikdə istifadə olunur."
368
 
369
+ #: breadcrumb_navxt_admin.php:354
370
  msgid "Current Item"
371
  msgstr "Cari Element"
372
 
373
+ #: breadcrumb_navxt_admin.php:357
374
  msgid "Link Current Item"
375
  msgstr "Cari Elmentin Linki"
376
 
377
+ #: breadcrumb_navxt_admin.php:357
378
  msgid "Yes"
379
  msgstr "Hə"
380
 
381
+ #: breadcrumb_navxt_admin.php:358
382
  msgid "Paged Breadcrumb"
383
  msgstr "Səhifələnmiş Breadcrumb"
384
 
385
+ #: breadcrumb_navxt_admin.php:358
386
  msgid "Include the paged breadcrumb in the breadcrumb trail."
387
  msgstr "Səhifələnmiş Breadcrumb-ı breadcrumb zolağında daxil edin."
388
 
389
+ #: breadcrumb_navxt_admin.php:358
390
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
  msgstr "İstifadəçi məqalələr/səhifələr səhifələnməsində (pagination) birincidən başqa səhifələrdə olarkən bildirir."
392
 
393
+ #: breadcrumb_navxt_admin.php:359
394
  msgid "Paged Template"
395
  msgstr "Səhifələnmə Şablonu"
396
 
397
+ #: breadcrumb_navxt_admin.php:359
398
  msgid "The template for paged breadcrumbs."
399
  msgstr "Səhidələniş breadcrumb üçün şablon."
400
 
401
+ #: breadcrumb_navxt_admin.php:434
 
 
 
 
402
  msgid "Post Template"
403
  msgstr "Məqalə Şablonu"
404
 
405
+ #: breadcrumb_navxt_admin.php:434
406
  msgid "The template for post breadcrumbs."
407
  msgstr "Məqalə breadcrumb-ı üçün şablon."
408
 
409
+ #: breadcrumb_navxt_admin.php:435
410
  msgid "Post Template (Unlinked)"
411
  msgstr "Məqalə Şablonu (Bəyənilməyən)"
412
 
413
+ #: breadcrumb_navxt_admin.php:435
414
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
  msgstr "Məqalə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
416
 
417
+ #: breadcrumb_navxt_admin.php:436
 
 
 
 
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
+ msgstr "Məqalənin taxonomy liderliyini breadcrumb zolağında göstərir."
420
 
421
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
 
 
 
 
422
  msgid "Categories"
423
  msgstr "Kateqoriyalar"
424
 
425
+ #: breadcrumb_navxt_admin.php:445
426
  msgid "Dates"
427
  msgstr "Tarixlər"
428
 
429
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
  msgid "Tags"
431
  msgstr "Taglər"
432
 
433
+ #: breadcrumb_navxt_admin.php:468
434
  msgid "Pages"
435
  msgstr "Səhifələr"
436
 
437
+ #: breadcrumb_navxt_admin.php:471
 
 
 
 
438
  msgid "Page Template"
439
  msgstr "Səhifə Şablonu"
440
 
441
+ #: breadcrumb_navxt_admin.php:471
442
  msgid "The template for page breadcrumbs."
443
  msgstr "Səhifə breadcrumbları üçüb şablon."
444
 
445
+ #: breadcrumb_navxt_admin.php:472
446
  msgid "Page Template (Unlinked)"
447
  msgstr "Səhifə Şablonu (Bəyənilməyən)"
448
 
449
+ #: breadcrumb_navxt_admin.php:472
450
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
  msgstr "Səhifə breadcrumb-ı üçüb şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
452
 
453
+ #: breadcrumb_navxt_admin.php:473
454
  msgid "Attachment Template"
455
  msgstr "Fayl Yükləmə Şablonu"
456
 
457
+ #: breadcrumb_navxt_admin.php:473
458
  msgid "The template for attachment breadcrumbs."
459
  msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon."
460
 
461
+ #: breadcrumb_navxt_admin.php:474
462
  msgid "Attachment Template (Unlinked)"
463
  msgstr "Fayl Yükləmə Şablonu (Bəyənilməyən)"
464
 
465
+ #: breadcrumb_navxt_admin.php:474
466
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
  msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
468
 
469
+ #: breadcrumb_navxt_admin.php:661
 
 
 
470
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
  msgstr "<a title=\"%title% üçün gedin.\" href=\"%link%\">%htitle%</a>"
472
 
473
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
  msgid "%htitle%"
475
  msgstr "%htitle%"
476
 
477
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
  msgid "%s Template"
479
  msgstr "%s Şablon"
480
 
481
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
  msgid "The template for %s breadcrumbs."
483
  msgstr "%s breadcrumblar üçün şablon."
484
 
485
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
  msgid "%s Template (Unlinked)"
487
  msgstr "%s Şablon (Bəyənilməyən)"
488
 
489
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
  msgstr "%s breadcrumblar üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
492
 
493
+ #: breadcrumb_navxt_admin.php:500
494
  msgid "%s Root Page"
495
  msgstr "%s Təməl Səhifə"
496
 
497
+ #: breadcrumb_navxt_admin.php:503
498
  msgid "&mdash; Select &mdash;"
499
  msgstr "&mdash; Seçin &mdash;"
500
 
501
+ #: breadcrumb_navxt_admin.php:507
502
  msgid "%s Archive Display"
503
  msgstr "%s Arxiv Görünüşü"
504
 
505
+ #: breadcrumb_navxt_admin.php:507
506
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
  msgstr "%s məqalə tipi arxivləri üçün breadcrumb-ı breadcrumb zolağında göstərin."
508
 
509
+ #: breadcrumb_navxt_admin.php:508
 
 
 
 
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Təsnifat liderliyini %s üçün breadcrumb zolağında göstərin."
512
 
513
+ #: breadcrumb_navxt_admin.php:548
 
 
 
 
 
 
 
 
514
  msgid "Category Template"
515
  msgstr "Kateqoriya Şablonu"
516
 
517
+ #: breadcrumb_navxt_admin.php:548
518
  msgid "The template for category breadcrumbs."
519
  msgstr "Kateqoriya breadcrumb-ları üçün şablon."
520
 
521
+ #: breadcrumb_navxt_admin.php:549
522
  msgid "Category Template (Unlinked)"
523
  msgstr "Kateqoriya Şablonu (Bəyənilməyən)"
524
 
525
+ #: breadcrumb_navxt_admin.php:549
526
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
  msgstr "Kateqoriya breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
528
 
529
+ #: breadcrumb_navxt_admin.php:555
530
  msgid "Tag Template"
531
  msgstr "Tag Şablonu"
532
 
533
+ #: breadcrumb_navxt_admin.php:555
534
  msgid "The template for tag breadcrumbs."
535
  msgstr "Tag breadcrumb-ları üçün şablon."
536
 
537
+ #: breadcrumb_navxt_admin.php:556
538
  msgid "Tag Template (Unlinked)"
539
  msgstr "Tag Şablonu (Bəyənilməyən)"
540
 
541
+ #: breadcrumb_navxt_admin.php:556
542
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
  msgstr "Tag breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
544
 
545
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
  msgid "Miscellaneous"
547
  msgstr "Müxtəlif"
548
 
549
+ #: breadcrumb_navxt_admin.php:597
550
  msgid "Author Template"
551
  msgstr "Müəllif Şablonu"
552
 
553
+ #: breadcrumb_navxt_admin.php:597
554
  msgid "The template for author breadcrumbs."
555
  msgstr "Müəllif breadcrumb-ları üçün şablon."
556
 
557
+ #: breadcrumb_navxt_admin.php:598
558
  msgid "Author Template (Unlinked)"
559
  msgstr "Müəllif Şablonu (Bəyənilməyən)"
560
 
561
+ #: breadcrumb_navxt_admin.php:598
562
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
  msgstr "Müəllif breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
564
 
565
+ #: breadcrumb_navxt_admin.php:599
566
  msgid "Author Display Format"
567
  msgstr "Müəllif Görüntü Formatı"
568
 
569
+ #: breadcrumb_navxt_admin.php:599
570
  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."
571
  msgstr "display_name istifadəçi profilinin seçimlərində təyin edilən \"Adı kütləvi olaraq görüntüləndir\" kimi görüntülənir."
572
 
573
+ #: breadcrumb_navxt_admin.php:605
574
  msgid "Date Template"
575
  msgstr "Tarix Şablonu"
576
 
577
+ #: breadcrumb_navxt_admin.php:605
578
  msgid "The template for date breadcrumbs."
579
  msgstr "Tarix breadcrumb-ları üçün şablon."
580
 
581
+ #: breadcrumb_navxt_admin.php:606
582
  msgid "Date Template (Unlinked)"
583
  msgstr "Tarix Şablonu (Bəyənilməyən)"
584
 
585
+ #: breadcrumb_navxt_admin.php:606
586
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
  msgstr "Tarix breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
588
 
589
+ #: breadcrumb_navxt_admin.php:607
590
  msgid "Search Template"
591
  msgstr "Axtarış Şablonu"
592
 
593
+ #: breadcrumb_navxt_admin.php:607
594
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
  msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
596
 
597
+ #: breadcrumb_navxt_admin.php:608
598
  msgid "Search Template (Unlinked)"
599
  msgstr "Axtarış Şablonu (Bəyənilməyən)"
600
 
601
+ #: breadcrumb_navxt_admin.php:608
602
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
  msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız axtarış nəticələri bir neçə səhifələri birləşdirərsə və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
604
 
605
+ #: breadcrumb_navxt_admin.php:609
606
  msgid "404 Title"
607
  msgstr "404 Başlığı"
608
 
609
+ #: breadcrumb_navxt_admin.php:610
610
  msgid "404 Template"
611
  msgstr "404 Şablonu"
612
 
613
+ #: breadcrumb_navxt_admin.php:610
614
  msgid "The template for 404 breadcrumbs."
615
  msgstr "404 breadcrumb-ları üçün şablon."
616
 
617
+ #: breadcrumb_navxt_admin.php:616
618
  msgid "Save Changes"
619
+ msgstr "Dəyişiklikləri yaddaşda saxlayın"
620
+
621
+ #: includes/mtekk_adminkit.php:204
622
+ msgid "Settings"
623
+ msgstr "Tənzimləmələr"
624
+
625
+ #: includes/mtekk_adminkit.php:274
626
+ msgid "Your settings are out of date."
627
+ msgstr "Sizin tənzimləmələr köhnəlib."
628
+
629
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
+ msgid "Migrate the settings now."
631
+ msgstr "Tənzimləmələri köçürün."
632
+
633
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
+ msgid "Migrate now."
635
+ msgstr "İndi Köçürün."
636
+
637
+ #: includes/mtekk_adminkit.php:291
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "Sizin plugin quraşdırmanız natamamdır."
640
+
641
+ #: includes/mtekk_adminkit.php:291
642
+ msgid "Load default settings now."
643
+ msgstr "Standart tənzimləmələri yükləyin."
644
+
645
+ #: includes/mtekk_adminkit.php:291
646
+ msgid "Complete now."
647
+ msgstr "İndi Tamamlayın."
648
+
649
+ #: includes/mtekk_adminkit.php:299
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "Sizin plugin tənzimləmələri səhvdir."
652
+
653
+ #: includes/mtekk_adminkit.php:299
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Tənzimləmələri düzəltmək üçün cəhd edin."
656
+
657
+ #: includes/mtekk_adminkit.php:299
658
+ msgid "Fix now."
659
+ msgstr "İndi cəh edin."
660
+
661
+ #: includes/mtekk_adminkit.php:477
662
+ msgid "Settings successfully saved."
663
+ msgstr "Tənzimləmələr uğurla yaddaşda saxlanıldı."
664
+
665
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
+ msgid "Undo the options save."
667
+ msgstr "Seçimlərin yaddaşda saxlanmasını geri qaytarın."
668
+
669
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
+ #: includes/mtekk_adminkit.php:628
672
+ msgid "Undo"
673
+ msgstr "Geri"
674
+
675
+ #: includes/mtekk_adminkit.php:482
676
+ msgid "Some settings were not saved."
677
+ msgstr "Bəzi tənzimləmələr yaddaşda saxlanılmadı."
678
+
679
+ #: includes/mtekk_adminkit.php:483
680
+ msgid "The following settings were not saved:"
681
+ msgstr "Aşağıdakı tənzimləmələr yaddaşda saxlanılmadı:"
682
+
683
+ #: includes/mtekk_adminkit.php:488
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Zəhmət olmasa bu mesajı öz %sbug report%s içinə daxil edin."
686
+
687
+ #: includes/mtekk_adminkit.php:488
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Öz versiyanız üçün %s dəstək mqaləsinə gedin."
690
+
691
+ #: includes/mtekk_adminkit.php:587
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Tənzimləmələr yüklənən fayldan uğurla idxal edildi."
694
+
695
+ #: includes/mtekk_adminkit.php:587
696
+ msgid "Undo the options import."
697
+ msgstr "Seçimlərin idxal edilməsini geri qaytarın."
698
+
699
+ #: includes/mtekk_adminkit.php:592
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Fayldan tənzimləmələrin idxal edilməsi uğursuz oldu."
702
+
703
+ #: includes/mtekk_adminkit.php:611
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Tənzimləmələr standart dəyərlərə uğurla qaytarıldı."
706
+
707
+ #: includes/mtekk_adminkit.php:611
708
+ msgid "Undo the options reset."
709
+ msgstr "Seçimlərin sıfırlanmasını geri qaytarın."
710
+
711
+ #: includes/mtekk_adminkit.php:628
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Tənzimləmələr son əməliyyata uğurla geri qaytarıldı."
714
+
715
+ #: includes/mtekk_adminkit.php:628
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Son geri qaytarma əməliyyatını geri qaytarın."
718
+
719
+ #: includes/mtekk_adminkit.php:663
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Tənzimləmələr uğurla köçürüldü."
722
+
723
+ #: includes/mtekk_adminkit.php:670
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Standart tənzimləmələr uğurla quraşdırıldı."
726
+
727
+ #: includes/mtekk_adminkit.php:771
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Tənzimləmələri XML fayldan idxal edin, cari tənzimləmələri XML fayla ixrac edin, ya da standart dəyərlərə sıfırlayın."
730
+
731
+ #: includes/mtekk_adminkit.php:774
732
+ msgid "Settings File"
733
+ msgstr "Tənzimləmələr Faylı"
734
+
735
+ #: includes/mtekk_adminkit.php:777
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Tənzimləmələri idxal etmək üçün XML tənzimləmələr faylını seçin."
738
+
739
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
+ msgid "Home"
741
+ msgstr "Ana Səhifə"
742
+
743
+ #: breadcrumb_navxt_class.php:251
744
+ msgid "Page %htitle%"
745
+ msgstr "Səhifə %htitle%"
746
+
747
+ #: breadcrumb_navxt_class.php:275
748
+ msgid "404"
749
+ msgstr "404"
750
+
751
+ #: breadcrumb_navxt_class.php:280
752
+ msgid "Search results for &#39;%htitle%&#39;"
753
+ msgstr "Axtarış nəticələri &#39;%htitle%&#39; üçün"
754
+
755
+ #: breadcrumb_navxt_class.php:295
756
+ msgid "Articles by: %htitle%"
757
+ msgstr "Artikllər tərəfindən: %htitle%"
languages/breadcrumb-navxt-da_DK.mo ADDED
Binary file
languages/breadcrumb-navxt-da_DK.po ADDED
@@ -0,0 +1,757 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Breadcrumb NavXT in Danish
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2012-09-28 21:55:08+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
+ #: breadcrumb_navxt_class.php:268
17
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
+ msgstr "<a title=\"Gå til %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
19
+
20
+ #: breadcrumb_navxt_class.php:278
21
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
+ msgstr "Søgeresultater for &#39;<a title=\"Gå til første side af søgeresultaterne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
+
24
+ #: breadcrumb_navxt_admin.php:325
25
+ msgid "A collection of settings most likely to be modified are located under this tab."
26
+ msgstr "En samling af indstillinger, der højst sandsynligt skal ændres, er placeret under denne fane."
27
+
28
+ #: breadcrumb_navxt_admin.php:333
29
+ msgid "Title Length"
30
+ msgstr "Titellængde"
31
+
32
+ #: breadcrumb_navxt_admin.php:338
33
+ msgid "Limit the length of the breadcrumb title."
34
+ msgstr "Begræns længden af breadcrumb-titlen."
35
+
36
+ #: breadcrumb_navxt_admin.php:399
37
+ msgid "Mainsite Breadcrumb"
38
+ msgstr "Hovedside-breadcrumb"
39
+
40
+ #: breadcrumb_navxt_admin.php:430
41
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
+ msgstr "Indstillingerne for alle indholdstyper (Indlæg, sider og brugeroprettede indholdstyper) er placeret under denne fane."
43
+
44
+ #: breadcrumb_navxt_admin.php:430
45
+ msgid "Post Types"
46
+ msgstr "Indholdstyper"
47
+
48
+ #: breadcrumb_navxt_admin.php:436
49
+ msgid "Post Hierarchy Display"
50
+ msgstr "Visning af hierarki for indlæg"
51
+
52
+ #: breadcrumb_navxt_admin.php:440
53
+ msgid "Post Hierarchy"
54
+ msgstr "Hierarki for indlæg"
55
+
56
+ #: breadcrumb_navxt_admin.php:508
57
+ msgid "%s Hierarchy Display"
58
+ msgstr "Visning af hierarki for %s"
59
+
60
+ #: breadcrumb_navxt_admin.php:559
61
+ msgid "Post Formats"
62
+ msgstr "Formater"
63
+
64
+ #: breadcrumb_navxt_admin.php:343
65
+ msgid "Max Title Length: "
66
+ msgstr "Maks. titellængde"
67
+
68
+ #: breadcrumb_navxt_admin.php:431
69
+ msgid "Posts"
70
+ msgstr "Indlæg"
71
+
72
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
+ msgid "Post Parent"
74
+ msgstr "Indlægsforælder"
75
+
76
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
+ msgid "The hierarchy which the breadcrumb trail will show."
78
+ msgstr "Hierarkiet som breadcrumb-stien vil vise."
79
+
80
+ #: breadcrumb_navxt_admin.php:512
81
+ msgid "%s Hierarchy"
82
+ msgstr "Hierarki for %s"
83
+
84
+ #: breadcrumb_navxt_admin.php:544
85
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
+ msgstr "Indstillingerne for alle taksonomier (inkl. kategorier, tags og brugeroprettede taksonomier) er placeret under denne fane."
87
+
88
+ #: breadcrumb_navxt_admin.php:544
89
+ msgid "Taxonomies"
90
+ msgstr "Taksonomier"
91
+
92
+ #: breadcrumb_navxt_admin.php:562
93
+ msgid "Post Format Template"
94
+ msgstr "Skabelon for format"
95
+
96
+ #: breadcrumb_navxt_admin.php:562
97
+ msgid "The template for post format breadcrumbs."
98
+ msgstr "Skabelonen for format-breadcrumbs."
99
+
100
+ #: breadcrumb_navxt_admin.php:563
101
+ msgid "Post Format Template (Unlinked)"
102
+ msgstr "Skabelon for format (uden link)"
103
+
104
+ #: breadcrumb_navxt_admin.php:563
105
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
+ msgstr "Skabelonen for post_format breadcrumbs, kun brugt når breadcrumben ikke er linket."
107
+
108
+ #: breadcrumb_navxt_admin.php:593
109
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
+ msgstr "Indstillingerne for forfatter- og datoarkiver, søgninger og 404-sider er placeret under denne fane."
111
+
112
+ #: breadcrumb_navxt_admin.php:594
113
+ msgid "Author Archives"
114
+ msgstr "Forfatterarkiv"
115
+
116
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
+ msgstr "<a title=\"Gå til tag-arkiverne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
+
120
+ #: breadcrumb_navxt_class.php:293
121
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "Artikler af: <a title=\"Gå til den første side af indlæg af %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:300
125
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "<a title=\"Gå til kategori-arkiverne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:304
129
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"Gå til arkiverne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: includes/mtekk_adminkit.php:283
133
+ msgid "Your settings are for a newer version."
134
+ msgstr "Dine indstillinger er for en nyere version."
135
+
136
+ #: breadcrumb_navxt_widget.php:96
137
+ msgid "Text to show before the trail:"
138
+ msgstr "Tekst foran stien:"
139
+
140
+ #: breadcrumb_navxt_widget.php:103
141
+ msgid "Schema.org"
142
+ msgstr "Schema.org"
143
+
144
+ #: breadcrumb_navxt_admin.php:229
145
+ msgid "Go to the Breadcrumb NavXT translation project."
146
+ msgstr "Gå til Breadcrumb NavXT oversættelsesprojekt."
147
+
148
+ #: breadcrumb_navxt_widget.php:33
149
+ msgid "Adds a breadcrumb trail to your sidebar"
150
+ msgstr "Tilføjer en breadcrumb-sti til din sidebar"
151
+
152
+ #: breadcrumb_navxt_widget.php:92
153
+ msgid "Title:"
154
+ msgstr "Titel:"
155
+
156
+ #: breadcrumb_navxt_widget.php:100
157
+ msgid "Output trail as:"
158
+ msgstr "Vis sti som:"
159
+
160
+ #: breadcrumb_navxt_widget.php:102
161
+ msgid "List"
162
+ msgstr "Liste"
163
+
164
+ #: breadcrumb_navxt_widget.php:104
165
+ msgid "Plain"
166
+ msgstr "Klar"
167
+
168
+ #: breadcrumb_navxt_widget.php:109
169
+ msgid "Link the breadcrumbs"
170
+ msgstr "Link breadcrumbs"
171
+
172
+ #: breadcrumb_navxt_widget.php:111
173
+ msgid "Reverse the order of the trail"
174
+ msgstr "Vis sti i omvendt rækkefølge"
175
+
176
+ #: breadcrumb_navxt_widget.php:113
177
+ msgid "Hide the trail on the front page"
178
+ msgstr "Skjul stien på forsiden"
179
+
180
+ #: breadcrumb_navxt_admin.php:120
181
+ msgid "Insufficient privileges to proceed."
182
+ msgstr "Utilstrækkelige privilegier til at fortsætte."
183
+
184
+ #: breadcrumb_navxt_admin.php:222
185
+ msgid "Tips for the settings are located below select options."
186
+ msgstr "Tips til indstillingerne findes under den enkelte indstilling."
187
+
188
+ #: breadcrumb_navxt_admin.php:223
189
+ msgid "Resources"
190
+ msgstr "Resurser"
191
+
192
+ #: breadcrumb_navxt_admin.php:224
193
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
+ msgstr "%sVejledninger og hjælp%s: Der er flere guides, vejledninger og hjælp på forfatterens hjemmeside."
195
+
196
+ #: breadcrumb_navxt_admin.php:224
197
+ msgid "Go to the Breadcrumb NavXT tag archive."
198
+ msgstr "Gå til tag-arkivet for Breadcrumb NavXT."
199
+
200
+ #: breadcrumb_navxt_admin.php:225
201
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
+ msgstr "%sOnline dokumentation%s: Se dokumentationen for mere detaljerede tekniske informationer."
203
+
204
+ #: breadcrumb_navxt_admin.php:225
205
+ msgid "Go to the Breadcrumb NavXT online documentation"
206
+ msgstr "Gå til den online dokumentation for Breadcrumb NavXT"
207
+
208
+ #: breadcrumb_navxt_admin.php:226
209
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
+ msgstr "%sRapporter en fejl%s: Hvis du tror, du har fundet en fejl, så inkluder venligst din WordPress-version og detajler om, hvordan fejlen kan reproduceres."
211
+
212
+ #: breadcrumb_navxt_admin.php:226
213
+ msgid "Go to the Breadcrumb NavXT support post for your version."
214
+ msgstr "Gå til Breadcrumb NavXT supportindlæg for din version."
215
+
216
+ #: breadcrumb_navxt_admin.php:227
217
+ msgid "Giving Back"
218
+ msgstr "Giv igen"
219
+
220
+ #: breadcrumb_navxt_admin.php:228
221
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
+ msgstr "%sDonate%s: Elsker du Breadcrumb NavXT og ønsker at hjælpe udviklingen? Overvej at købe forfatteren en øl."
223
+
224
+ #: breadcrumb_navxt_admin.php:228
225
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
+ msgstr "Gå til PayPal for at give en donation til Breadcrumb NavXT."
227
+
228
+ #: breadcrumb_navxt_admin.php:229
229
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
+ msgstr "%sOversæt%s: Er dit sprog ikke tilgængeligt? Kontakt John Havlik for at oversætte."
231
+
232
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
+ #: breadcrumb_navxt_admin.php:326
234
+ msgid "General"
235
+ msgstr "Generelt"
236
+
237
+ #: breadcrumb_navxt_admin.php:237
238
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
+ msgstr "For at indstillingerne på denne side skal tage effekt, skal du enten bruge den inkluderede Breadcrumb NavXT widget, eller placere mindst en af koderne herunder i dit tema."
240
+
241
+ #: breadcrumb_navxt_admin.php:238
242
+ msgid "Breadcrumb trail with separators"
243
+ msgstr "Breadcrumb-sti med adskillere"
244
+
245
+ #: breadcrumb_navxt_admin.php:244
246
+ msgid "Breadcrumb trail in list form"
247
+ msgstr "Breadcrumb-sti som liste"
248
+
249
+ #: breadcrumb_navxt_admin.php:253
250
+ msgid "Quick Start"
251
+ msgstr "Quick Start"
252
+
253
+ #: breadcrumb_navxt_admin.php:256
254
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
+ msgstr "Bruges koden fra Quick Start-sektionen herover, kan følgende CSS bruges som base til at style din breadcrumb-sti."
256
+
257
+ #: breadcrumb_navxt_admin.php:268
258
+ msgid "Styling"
259
+ msgstr "Styling"
260
+
261
+ #: breadcrumb_navxt_admin.php:274
262
+ msgid "Import/Export/Reset"
263
+ msgstr "Import/Eksport/Nulstil"
264
+
265
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
+ msgid "Import"
267
+ msgstr "Importer"
268
+
269
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
+ msgid "Export"
271
+ msgstr "Eksporter"
272
+
273
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
+ msgid "Reset"
275
+ msgstr "Nulstil"
276
+
277
+ #: breadcrumb_navxt_admin.php:313
278
+ msgid "Breadcrumb NavXT Settings"
279
+ msgstr "Breadcrumb NavXT Indstillinger"
280
+
281
+ #: breadcrumb_navxt_admin.php:329
282
+ msgid "Breadcrumb Separator"
283
+ msgstr "Breadcrumb-adskiller"
284
+
285
+ #: breadcrumb_navxt_admin.php:329
286
+ msgid "Placed in between each breadcrumb."
287
+ msgstr "Placeret mellem hver breadcrumb."
288
+
289
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
290
+ msgid "Home Breadcrumb"
291
+ msgstr "Forside-breadcrumb"
292
+
293
+ #: breadcrumb_navxt_admin.php:372
294
+ msgid "Place the home breadcrumb in the trail."
295
+ msgstr "Placer forside-breadcrumben i stien."
296
+
297
+ #: breadcrumb_navxt_admin.php:377
298
+ msgid "Home Title: "
299
+ msgstr "Forside-titel:"
300
+
301
+ #: breadcrumb_navxt_admin.php:385
302
+ msgid "Home Template"
303
+ msgstr "Skabelon for forside"
304
+
305
+ #: breadcrumb_navxt_admin.php:385
306
+ msgid "The template for the home breadcrumb."
307
+ msgstr "Skabelonen for forside-breadcrumben"
308
+
309
+ #: breadcrumb_navxt_admin.php:386
310
+ msgid "Home Template (Unlinked)"
311
+ msgstr "Skabelon for forside (uden link)"
312
+
313
+ #: breadcrumb_navxt_admin.php:386
314
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
+ msgstr "Skabelonen for forside-breadcrumb, brugt når breadcrumben ikke er linket."
316
+
317
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
+ msgid "Blog Breadcrumb"
319
+ msgstr "Blog-breadcrumb"
320
+
321
+ #: breadcrumb_navxt_admin.php:393
322
+ msgid "Place the blog breadcrumb in the trail."
323
+ msgstr "Placer blog-breadcrumben i stien."
324
+
325
+ #: breadcrumb_navxt_admin.php:394
326
+ msgid "Blog Template"
327
+ msgstr "Skabelon for blog"
328
+
329
+ #: breadcrumb_navxt_admin.php:394
330
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
331
+ msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat."
332
+
333
+ #: breadcrumb_navxt_admin.php:395
334
+ msgid "Blog Template (Unlinked)"
335
+ msgstr "Skabelon for blog (uden link)"
336
+
337
+ #: breadcrumb_navxt_admin.php:395
338
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
+ msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat, og når breadcrumben ikke er linket."
340
+
341
+ #: breadcrumb_navxt_admin.php:403
342
+ msgid "Main Site Breadcrumb"
343
+ msgstr "Hovedside-breadcrumb"
344
+
345
+ #: breadcrumb_navxt_admin.php:408
346
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
+ msgstr "Placer hovedside-breadcrumben i stien i en multisite-installation."
348
+
349
+ #: breadcrumb_navxt_admin.php:413
350
+ msgid "Main Site Home Title: "
351
+ msgstr "Hovedside-titel:"
352
+
353
+ #: breadcrumb_navxt_admin.php:422
354
+ msgid "Main Site Home Template"
355
+ msgstr "Skabelon for hovedside"
356
+
357
+ #: breadcrumb_navxt_admin.php:422
358
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
+ msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer."
360
+
361
+ #: breadcrumb_navxt_admin.php:423
362
+ msgid "Main Site Home Template (Unlinked)"
363
+ msgstr "Skabelon for hovedside (uden link)"
364
+
365
+ #: breadcrumb_navxt_admin.php:423
366
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
+ msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer, og når breadcrumben ikke er linket."
368
+
369
+ #: breadcrumb_navxt_admin.php:354
370
+ msgid "Current Item"
371
+ msgstr "Nuværende side"
372
+
373
+ #: breadcrumb_navxt_admin.php:357
374
+ msgid "Link Current Item"
375
+ msgstr "Link nuværende side"
376
+
377
+ #: breadcrumb_navxt_admin.php:357
378
+ msgid "Yes"
379
+ msgstr "Ja"
380
+
381
+ #: breadcrumb_navxt_admin.php:358
382
+ msgid "Paged Breadcrumb"
383
+ msgstr "Pagineret breadcrumb"
384
+
385
+ #: breadcrumb_navxt_admin.php:358
386
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
387
+ msgstr "Inkluder den paginerede breadcrumb i breadcrumb-stien."
388
+
389
+ #: breadcrumb_navxt_admin.php:358
390
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
+ msgstr "Indikerer at brugeren er på en anden side end den første på paginerede indlæg/sider."
392
+
393
+ #: breadcrumb_navxt_admin.php:359
394
+ msgid "Paged Template"
395
+ msgstr "Pagineret skabelon"
396
+
397
+ #: breadcrumb_navxt_admin.php:359
398
+ msgid "The template for paged breadcrumbs."
399
+ msgstr "Skabelonen for paginerede breadcrumbs."
400
+
401
+ #: breadcrumb_navxt_admin.php:434
402
+ msgid "Post Template"
403
+ msgstr "Skabelon for indlæg"
404
+
405
+ #: breadcrumb_navxt_admin.php:434
406
+ msgid "The template for post breadcrumbs."
407
+ msgstr "Skabelonen for indlægs-breadcrumbs."
408
+
409
+ #: breadcrumb_navxt_admin.php:435
410
+ msgid "Post Template (Unlinked)"
411
+ msgstr "Skabelon for indlæg (uden link)"
412
+
413
+ #: breadcrumb_navxt_admin.php:435
414
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
+ msgstr "Skabelonen for indlægs-breadcrumbs, kun brugt når breadcrumben ikke er linket."
416
+
417
+ #: breadcrumb_navxt_admin.php:436
418
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
+ msgstr "Vis taksonomien, der leder til et indlæg, i breadcrumb-stien."
420
+
421
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
422
+ msgid "Categories"
423
+ msgstr "Kategorier"
424
+
425
+ #: breadcrumb_navxt_admin.php:445
426
+ msgid "Dates"
427
+ msgstr "Datoer"
428
+
429
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
+ msgid "Tags"
431
+ msgstr "Tags"
432
+
433
+ #: breadcrumb_navxt_admin.php:468
434
+ msgid "Pages"
435
+ msgstr "Sider"
436
+
437
+ #: breadcrumb_navxt_admin.php:471
438
+ msgid "Page Template"
439
+ msgstr "Skabelon for side"
440
+
441
+ #: breadcrumb_navxt_admin.php:471
442
+ msgid "The template for page breadcrumbs."
443
+ msgstr "Skabelonen for side-breadcrumbs"
444
+
445
+ #: breadcrumb_navxt_admin.php:472
446
+ msgid "Page Template (Unlinked)"
447
+ msgstr "Skabelon for side (uden link)"
448
+
449
+ #: breadcrumb_navxt_admin.php:472
450
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
+ msgstr "Skabelonen for side-breadcrumbs, kun brugt når breadcrumben ikke er linket."
452
+
453
+ #: breadcrumb_navxt_admin.php:473
454
+ msgid "Attachment Template"
455
+ msgstr "Skabelon for vedhæftning"
456
+
457
+ #: breadcrumb_navxt_admin.php:473
458
+ msgid "The template for attachment breadcrumbs."
459
+ msgstr "Skabelonen for vedhæftnings-breadcrumbs."
460
+
461
+ #: breadcrumb_navxt_admin.php:474
462
+ msgid "Attachment Template (Unlinked)"
463
+ msgstr "Skabelon for vedhæftning (uden link)"
464
+
465
+ #: breadcrumb_navxt_admin.php:474
466
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
+ msgstr "Skabelonen for vedhæftnings-breadcrumbs, kun brugt når breadcrumben ikke er linket."
468
+
469
+ #: breadcrumb_navxt_admin.php:661
470
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
+ msgstr "<a title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a>"
472
+
473
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
+ msgid "%htitle%"
475
+ msgstr "%htitle%"
476
+
477
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
+ msgid "%s Template"
479
+ msgstr "Skabelon for %s"
480
+
481
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
+ msgid "The template for %s breadcrumbs."
483
+ msgstr "Skabelonen for %s-breadcrumbs."
484
+
485
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
+ msgid "%s Template (Unlinked)"
487
+ msgstr "Skabelon for %s (uden link)"
488
+
489
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
+ msgstr "Skabelonen for %s-breadcrumbs, kun brugt når breadcrumben ikke er linket."
492
+
493
+ #: breadcrumb_navxt_admin.php:500
494
+ msgid "%s Root Page"
495
+ msgstr "%s rodside"
496
+
497
+ #: breadcrumb_navxt_admin.php:503
498
+ msgid "&mdash; Select &mdash;"
499
+ msgstr "&mdash; Vælg &mdash;"
500
+
501
+ #: breadcrumb_navxt_admin.php:507
502
+ msgid "%s Archive Display"
503
+ msgstr "Visning af %s-arkiv"
504
+
505
+ #: breadcrumb_navxt_admin.php:507
506
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
+ msgstr "Vis breadcrumben for post type-arkiver til %s i breadcrumb-stien."
508
+
509
+ #: breadcrumb_navxt_admin.php:508
510
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
+ msgstr "Vis taksonomien, der leder til %s, i breadcrumb-stien."
512
+
513
+ #: breadcrumb_navxt_admin.php:548
514
+ msgid "Category Template"
515
+ msgstr "Skabelon for kategori"
516
+
517
+ #: breadcrumb_navxt_admin.php:548
518
+ msgid "The template for category breadcrumbs."
519
+ msgstr "Skabelonen for kategori-breadcrumbs."
520
+
521
+ #: breadcrumb_navxt_admin.php:549
522
+ msgid "Category Template (Unlinked)"
523
+ msgstr "Skabelon for kategori (uden link)"
524
+
525
+ #: breadcrumb_navxt_admin.php:549
526
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
+ msgstr "Skabelonen for kategori-breadcrumbs, kun brugt når breadcrumben ikke er linket."
528
+
529
+ #: breadcrumb_navxt_admin.php:555
530
+ msgid "Tag Template"
531
+ msgstr "Skabelon for tag"
532
+
533
+ #: breadcrumb_navxt_admin.php:555
534
+ msgid "The template for tag breadcrumbs."
535
+ msgstr "Skabelonen for tag-breadcrumbs."
536
+
537
+ #: breadcrumb_navxt_admin.php:556
538
+ msgid "Tag Template (Unlinked)"
539
+ msgstr "Skabelon for tag (uden link)"
540
+
541
+ #: breadcrumb_navxt_admin.php:556
542
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
+ msgstr "Skabelonen for tag-breadcrumbs, kun brugt når breadcrumben ikke er linket."
544
+
545
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
+ msgid "Miscellaneous"
547
+ msgstr "Diverse"
548
+
549
+ #: breadcrumb_navxt_admin.php:597
550
+ msgid "Author Template"
551
+ msgstr "Skabelon for forfatter"
552
+
553
+ #: breadcrumb_navxt_admin.php:597
554
+ msgid "The template for author breadcrumbs."
555
+ msgstr "Skabelonen for forfatter-breadcrumbs."
556
+
557
+ #: breadcrumb_navxt_admin.php:598
558
+ msgid "Author Template (Unlinked)"
559
+ msgstr "Skabelon for forfatter (uden link)"
560
+
561
+ #: breadcrumb_navxt_admin.php:598
562
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
+ msgstr "Skabelonen for forfatter-breadcrumbs, kun brugt når breadcrumben ikke er linket."
564
+
565
+ #: breadcrumb_navxt_admin.php:599
566
+ msgid "Author Display Format"
567
+ msgstr "Visning af forfatterformat"
568
+
569
+ #: breadcrumb_navxt_admin.php:599
570
+ 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."
571
+ msgstr "display_name bruger navnet angivet i \"Vis navn offentligt som\" under brugerprofilen; de øvrige svarer til indstillingerne i brugerprofilen."
572
+
573
+ #: breadcrumb_navxt_admin.php:605
574
+ msgid "Date Template"
575
+ msgstr "Skabelon for dato"
576
+
577
+ #: breadcrumb_navxt_admin.php:605
578
+ msgid "The template for date breadcrumbs."
579
+ msgstr "Skabelonen for dato-breadcrumbs."
580
+
581
+ #: breadcrumb_navxt_admin.php:606
582
+ msgid "Date Template (Unlinked)"
583
+ msgstr "Skabelon for dato (uden link)"
584
+
585
+ #: breadcrumb_navxt_admin.php:606
586
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
+ msgstr "Skabelonen for dato-breadcrumbs, kun brugt når breadcrumben ikke er linket."
588
+
589
+ #: breadcrumb_navxt_admin.php:607
590
+ msgid "Search Template"
591
+ msgstr "Skabelon for søgning"
592
+
593
+ #: breadcrumb_navxt_admin.php:607
594
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
+ msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider."
596
+
597
+ #: breadcrumb_navxt_admin.php:608
598
+ msgid "Search Template (Unlinked)"
599
+ msgstr "Skabelon for søgning (uden link)"
600
+
601
+ #: breadcrumb_navxt_admin.php:608
602
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
+ msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider, og breadcrumben ikke er linket."
604
+
605
+ #: breadcrumb_navxt_admin.php:609
606
+ msgid "404 Title"
607
+ msgstr "404-titel"
608
+
609
+ #: breadcrumb_navxt_admin.php:610
610
+ msgid "404 Template"
611
+ msgstr "Skabelon for 404"
612
+
613
+ #: breadcrumb_navxt_admin.php:610
614
+ msgid "The template for 404 breadcrumbs."
615
+ msgstr "Skabelonen for 404-breadcrumbs."
616
+
617
+ #: breadcrumb_navxt_admin.php:616
618
+ msgid "Save Changes"
619
+ msgstr "Gem ændringer"
620
+
621
+ #: includes/mtekk_adminkit.php:204
622
+ msgid "Settings"
623
+ msgstr "Indstillinger"
624
+
625
+ #: includes/mtekk_adminkit.php:274
626
+ msgid "Your settings are out of date."
627
+ msgstr "Dine indstillinger er forældede."
628
+
629
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
+ msgid "Migrate the settings now."
631
+ msgstr "Migrer indstillingerne nu."
632
+
633
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
+ msgid "Migrate now."
635
+ msgstr "Migrer nu."
636
+
637
+ #: includes/mtekk_adminkit.php:291
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "Din plugin-installation er ikke færdig."
640
+
641
+ #: includes/mtekk_adminkit.php:291
642
+ msgid "Load default settings now."
643
+ msgstr "Indlæs standardindstillinger nu."
644
+
645
+ #: includes/mtekk_adminkit.php:291
646
+ msgid "Complete now."
647
+ msgstr "Færdiggør nu."
648
+
649
+ #: includes/mtekk_adminkit.php:299
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "Dine plugin-indstillinger er ugyldige."
652
+
653
+ #: includes/mtekk_adminkit.php:299
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Forsøg at rette indstillinger nu."
656
+
657
+ #: includes/mtekk_adminkit.php:299
658
+ msgid "Fix now."
659
+ msgstr "Ret nu."
660
+
661
+ #: includes/mtekk_adminkit.php:477
662
+ msgid "Settings successfully saved."
663
+ msgstr "Indstillinger gemt."
664
+
665
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
+ msgid "Undo the options save."
667
+ msgstr "Fortryd gem af indstillinger."
668
+
669
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
+ #: includes/mtekk_adminkit.php:628
672
+ msgid "Undo"
673
+ msgstr "Fortryd"
674
+
675
+ #: includes/mtekk_adminkit.php:482
676
+ msgid "Some settings were not saved."
677
+ msgstr "Nogle indstillinger blev ikke gemt."
678
+
679
+ #: includes/mtekk_adminkit.php:483
680
+ msgid "The following settings were not saved:"
681
+ msgstr "Følgende indstillinger blev ikke gemt:"
682
+
683
+ #: includes/mtekk_adminkit.php:488
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Venligst inkluder denne besked i din %sfejlrapport%s."
686
+
687
+ #: includes/mtekk_adminkit.php:488
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Gå til %s supportindlæg for din version."
690
+
691
+ #: includes/mtekk_adminkit.php:587
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Indstillinger importeret fra den uploadede fil."
694
+
695
+ #: includes/mtekk_adminkit.php:587
696
+ msgid "Undo the options import."
697
+ msgstr "Fortryd import af indstillinger."
698
+
699
+ #: includes/mtekk_adminkit.php:592
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Importering af indstillinger fra fil mislykkedes."
702
+
703
+ #: includes/mtekk_adminkit.php:611
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Indstillinger nulstillet til standardværdierne."
706
+
707
+ #: includes/mtekk_adminkit.php:611
708
+ msgid "Undo the options reset."
709
+ msgstr "Fortryd nulstilling af indstillinger."
710
+
711
+ #: includes/mtekk_adminkit.php:628
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Indstillinger fortrød seneste handling."
714
+
715
+ #: includes/mtekk_adminkit.php:628
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Fortryd seneste fortryd-handling."
718
+
719
+ #: includes/mtekk_adminkit.php:663
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Indstillinger migreret."
722
+
723
+ #: includes/mtekk_adminkit.php:670
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Standardindstillinger installeret."
726
+
727
+ #: includes/mtekk_adminkit.php:771
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Importer indstillinger fra en XML-fil, eksporter de nuværende indstillinger til en XML-fil eller nulstil til standardindstillinger."
730
+
731
+ #: includes/mtekk_adminkit.php:774
732
+ msgid "Settings File"
733
+ msgstr "Fil med indstillinger"
734
+
735
+ #: includes/mtekk_adminkit.php:777
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Vælg en XML-fil med indstillinger at uploade og importere indstillinger fra."
738
+
739
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
+ msgid "Home"
741
+ msgstr "Forside"
742
+
743
+ #: breadcrumb_navxt_class.php:251
744
+ msgid "Page %htitle%"
745
+ msgstr "Side %htitle%"
746
+
747
+ #: breadcrumb_navxt_class.php:275
748
+ msgid "404"
749
+ msgstr "404"
750
+
751
+ #: breadcrumb_navxt_class.php:280
752
+ msgid "Search results for &#39;%htitle%&#39;"
753
+ msgstr "Søgeresultater for &#39;%htitle%&#39;"
754
+
755
+ #: breadcrumb_navxt_class.php:295
756
+ msgid "Articles by: %htitle%"
757
+ msgstr "Artikler af: %htitle%"
languages/breadcrumb-navxt-de_DE.mo CHANGED
Binary file
languages/breadcrumb-navxt-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:25:50+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,513 +10,748 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
- #: breadcrumb_navxt_widget.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Text to show before the trail:"
15
  msgstr "Text, der vor dem Trail angezeigt werden soll:"
16
 
17
- #: breadcrumb_navxt_widget.php:100
18
  msgid "Schema.org"
19
  msgstr "Schema.org"
20
 
21
- #: breadcrumb_navxt_admin.php:227
22
  msgid "Go to the Breadcrumb NavXT translation project."
23
  msgstr "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
24
 
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr "Deine PHP Version ist veraltet, bitte führe ein Upgrade auf eine neuere Version durch. Deine aktuelle Version ist %1$s, Breadcrumb NavXT benötigt mindestens %2$s"
28
 
29
- #: breadcrumb_navxt_widget.php:89
30
  msgid "Title:"
31
  msgstr "Titel:"
32
 
33
- #: breadcrumb_navxt_widget.php:101
 
 
 
 
 
 
 
 
34
  msgid "Plain"
35
  msgstr "Plain"
36
 
37
- #: breadcrumb_navxt_widget.php:106
38
  msgid "Link the breadcrumbs"
39
  msgstr "Verlinke die Breadcrumbs"
40
 
41
- #: breadcrumb_navxt_widget.php:108
42
  msgid "Reverse the order of the trail"
43
  msgstr "Die Reihenfolge des Trails umkehren"
44
 
45
- #: breadcrumb_navxt_widget.php:110
46
  msgid "Hide the trail on the front page"
47
  msgstr "Verstecke den Trail auf der Startseite"
48
 
49
- #: breadcrumb_navxt_admin.php:118
50
  msgid "Insufficient privileges to proceed."
51
  msgstr "Nicht genügend Rechte um fortzufahren."
52
 
53
- #: breadcrumb_navxt_admin.php:220
54
  msgid "Tips for the settings are located below select options."
55
  msgstr "Tips für die Einstellungen findest Du unter den Select-Optionen."
56
 
57
- #: breadcrumb_navxt_admin.php:221
58
  msgid "Resources"
59
  msgstr "Ressourcen"
60
 
61
- #: breadcrumb_navxt_admin.php:222
62
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
  msgstr "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
64
 
65
- #: breadcrumb_navxt_admin.php:222
66
  msgid "Go to the Breadcrumb NavXT tag archive."
67
  msgstr "Gehe zum Breadcrumb NavXT Archiv."
68
 
69
- #: breadcrumb_navxt_admin.php:223
70
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
  msgstr "%sOnline Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
72
 
73
- #: breadcrumb_navxt_admin.php:223
74
  msgid "Go to the Breadcrumb NavXT online documentation"
75
  msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
76
 
77
- #: breadcrumb_navxt_admin.php:224
78
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
  msgstr "%Melde einen Bug%s: Wenn du glaubst, einen Bug gefunden zu haben, füge bitte Deine Wordpress Version und Details, wie man den Bug reproduzieren kann, hinzu."
80
 
81
- #: breadcrumb_navxt_admin.php:224
82
  msgid "Go to the Breadcrumb NavXT support post for your version."
83
  msgstr "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
84
 
85
- #: breadcrumb_navxt_admin.php:225
86
  msgid "Giving Back"
87
  msgstr "Etwas Zurückgeben"
88
 
89
- #: breadcrumb_navxt_admin.php:226
90
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
  msgstr "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
92
 
93
- #: breadcrumb_navxt_admin.php:226
94
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
  msgstr "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
96
 
97
- #: breadcrumb_navxt_admin.php:227
98
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
  msgstr "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
100
 
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
 
102
  msgid "General"
103
  msgstr "Grundsätzliches"
104
 
105
- #: breadcrumb_navxt_admin.php:235
106
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
  msgstr "Du musst entweder das beinhaltete Breadcrumb NavXT Widget verwenden oder eine der Code Abschnitte unten in Deinem Theme verwenden - erst dann werden die Einstellungen aktiv."
108
 
109
- #: breadcrumb_navxt_admin.php:236
110
  msgid "Breadcrumb trail with separators"
111
  msgstr "Breadcrumb Trail mit Abstandshaltern"
112
 
113
- #: breadcrumb_navxt_admin.php:242
114
  msgid "Breadcrumb trail in list form"
115
  msgstr "Breadcrumb Trail in Listen-Form"
116
 
117
- #: breadcrumb_navxt_admin.php:251
118
  msgid "Quick Start"
119
  msgstr "Schnellstart"
120
 
121
- #: breadcrumb_navxt_admin.php:254
122
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
  msgstr "Unter Verwendung des Codes aus dem Schnellstart-Abschnitt oben kann das folgende CSS als Basis für das Styling Deines Breadcrumb Trails verwendet werden."
124
 
125
- #: breadcrumb_navxt_admin.php:266
126
  msgid "Styling"
127
  msgstr "Styling"
128
 
129
- #: breadcrumb_navxt_admin.php:272
130
  msgid "Import/Export/Reset"
131
  msgstr "Import/Export/Reset"
132
 
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
  msgid "Import"
135
  msgstr "Import"
136
 
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
  msgid "Export"
139
  msgstr "Export"
140
 
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
  msgid "Reset"
143
  msgstr "Reset"
144
 
145
- #: breadcrumb_navxt_admin.php:311
146
  msgid "Breadcrumb NavXT Settings"
147
  msgstr "Breadcrumb NavXT Einstellungen"
148
 
149
- #: breadcrumb_navxt_admin.php:326
150
  msgid "Breadcrumb Separator"
151
  msgstr "Breadcrumb Trennzeichen"
152
 
153
- #: breadcrumb_navxt_admin.php:326
154
  msgid "Placed in between each breadcrumb."
155
  msgstr "Wird zwischen jedem Breadcrumb eingefügt."
156
 
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Breadcrumb Maximale Titel Länge"
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
  msgid "Home Breadcrumb"
163
  msgstr "Home Breadcrumb"
164
 
165
- #: breadcrumb_navxt_admin.php:336
166
  msgid "Place the home breadcrumb in the trail."
167
  msgstr "Füge den Home Breadcrumb in den Trail ein."
168
 
169
- #: breadcrumb_navxt_admin.php:341
170
  msgid "Home Title: "
171
  msgstr "Home Titel:"
172
 
173
- #: breadcrumb_navxt_admin.php:349
174
  msgid "Home Template"
175
  msgstr "Home Template"
176
 
177
- #: breadcrumb_navxt_admin.php:349
178
  msgid "The template for the home breadcrumb."
179
  msgstr "Das Template für das Home Breadcrumb."
180
 
181
- #: breadcrumb_navxt_admin.php:350
182
  msgid "Home Template (Unlinked)"
183
  msgstr "Home Template (nicht verlinkt)"
184
 
185
- #: breadcrumb_navxt_admin.php:350
186
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
  msgstr "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
188
 
189
- #: breadcrumb_navxt_admin.php:351
190
  msgid "Blog Breadcrumb"
191
  msgstr "Blog Breadcrumb"
192
 
193
- #: breadcrumb_navxt_admin.php:351
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Platziere das Blog Breadcrumb im Trail."
196
 
197
- #: breadcrumb_navxt_admin.php:352
198
  msgid "Blog Template"
199
  msgstr "Blog Template"
200
 
201
- #: breadcrumb_navxt_admin.php:352
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
204
 
205
- #: breadcrumb_navxt_admin.php:353
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Blog Template (nicht verlinkt)"
208
 
209
- #: breadcrumb_navxt_admin.php:353
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
212
 
213
- #: breadcrumb_navxt_admin.php:357
214
  msgid "Main Site Breadcrumb"
215
  msgstr "Hauptseite Breadcrumb"
216
 
217
- #: breadcrumb_navxt_admin.php:362
218
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
  msgstr "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
220
 
221
- #: breadcrumb_navxt_admin.php:367
222
  msgid "Main Site Home Title: "
223
  msgstr "Hauptseite Home Titel:"
224
 
225
- #: breadcrumb_navxt_admin.php:376
226
  msgid "Main Site Home Template"
227
  msgstr "Hauptseite Home Template"
228
 
229
- #: breadcrumb_navxt_admin.php:376
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
232
 
233
- #: breadcrumb_navxt_admin.php:377
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Hauptseite Home Template (nicht verlinkt)"
236
 
237
- #: breadcrumb_navxt_admin.php:377
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
240
 
241
- #: breadcrumb_navxt_admin.php:382
242
  msgid "Current Item"
243
  msgstr "Aktueller Eintrag"
244
 
245
- #: breadcrumb_navxt_admin.php:385
246
  msgid "Link Current Item"
247
  msgstr "Aktuellen Eintrag verlinken"
248
 
249
- #: breadcrumb_navxt_admin.php:385
250
  msgid "Yes"
251
  msgstr "Ja"
252
 
253
- #: breadcrumb_navxt_admin.php:386
254
  msgid "Paged Breadcrumb"
255
  msgstr "Paged Breadcrumb"
256
 
257
- #: breadcrumb_navxt_admin.php:386
258
  msgid "Include the paged breadcrumb in the breadcrumb trail."
259
  msgstr "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
260
 
261
- #: breadcrumb_navxt_admin.php:386
262
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
  msgstr "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
264
 
265
- #: breadcrumb_navxt_admin.php:387
266
  msgid "Paged Template"
267
  msgstr "Paged Template"
268
 
269
- #: breadcrumb_navxt_admin.php:387
270
  msgid "The template for paged breadcrumbs."
271
  msgstr "Das Template für Paged Breadcrumbs."
272
 
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Posts &amp; Seiten"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
  msgid "Post Template"
279
  msgstr "Post Template"
280
 
281
- #: breadcrumb_navxt_admin.php:395
282
  msgid "The template for post breadcrumbs."
283
  msgstr "Das Template für Post Breadcrumbs."
284
 
285
- #: breadcrumb_navxt_admin.php:396
286
  msgid "Post Template (Unlinked)"
287
  msgstr "Post Template (nicht verlinkt)"
288
 
289
- #: breadcrumb_navxt_admin.php:396
290
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
  msgstr "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
292
 
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Post Systematik Anzeige"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
  msgstr "Zeige die Systematik, die zu einem Post im Breadcrumb Trail führt."
300
 
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Post Systematik"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
  msgid "Categories"
307
  msgstr "Kategorien"
308
 
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
  msgid "Dates"
311
  msgstr "Daten"
312
 
313
- #: breadcrumb_navxt_admin.php:407
314
  msgid "Tags"
315
  msgstr "Tags"
316
 
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
  msgid "Pages"
319
  msgstr "Seiten"
320
 
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "Die Systematik, welche das Breadcrumb Trail anzeigen wird."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
  msgid "Page Template"
327
  msgstr "Seiten Template"
328
 
329
- #: breadcrumb_navxt_admin.php:423
330
  msgid "The template for page breadcrumbs."
331
  msgstr "Das Template für Seiten Breadcrumbs."
332
 
333
- #: breadcrumb_navxt_admin.php:424
334
  msgid "Page Template (Unlinked)"
335
  msgstr "Seiten Template (nicht verlinkt)"
336
 
337
- #: breadcrumb_navxt_admin.php:424
338
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
  msgstr "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
340
 
341
- #: breadcrumb_navxt_admin.php:425
342
  msgid "Attachment Template"
343
  msgstr "Anhang Template"
344
 
345
- #: breadcrumb_navxt_admin.php:425
346
  msgid "The template for attachment breadcrumbs."
347
  msgstr "Das Template für Anhang Breadcrumbs."
348
 
349
- #: breadcrumb_navxt_admin.php:426
350
  msgid "Attachment Template (Unlinked)"
351
  msgstr "Anhang Template (nicht verlinkt)"
352
 
353
- #: breadcrumb_navxt_admin.php:426
354
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
  msgstr "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
356
 
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
  msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">%htitle%</a>"
363
 
364
- #: breadcrumb_navxt_admin.php:567
365
  msgid "%htitle%"
366
  msgstr "%htitle%"
367
 
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
  msgid "%s Template"
370
  msgstr "%s Template"
371
 
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
  msgid "The template for %s breadcrumbs."
374
  msgstr "Das Template für %s Breadcrumbs."
375
 
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
  msgid "%s Template (Unlinked)"
378
  msgstr "%s Template (nicht verlinkt)"
379
 
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
  msgstr "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
383
 
384
- #: breadcrumb_navxt_admin.php:448
385
  msgid "%s Root Page"
386
  msgstr "%s Root Seite"
387
 
388
- #: breadcrumb_navxt_admin.php:451
389
  msgid "&mdash; Select &mdash;"
390
  msgstr "&mdash; Auswahl &mdash;"
391
 
392
- #: breadcrumb_navxt_admin.php:455
393
  msgid "%s Archive Display"
394
  msgstr "%s Archiv Anzeige"
395
 
396
- #: breadcrumb_navxt_admin.php:455
397
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
  msgstr "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
399
 
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "%s Systematik Anzeige"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
  msgstr "Zeige die Systematik, die zu einem %s im Breadcrumb Trail führt."
407
 
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "%s Systematik"
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Kategorien &amp; Tags"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
  msgid "Category Template"
418
  msgstr "Kategorie Template"
419
 
420
- #: breadcrumb_navxt_admin.php:488
421
  msgid "The template for category breadcrumbs."
422
  msgstr "Das Template für Kategorie Breadcrumbs."
423
 
424
- #: breadcrumb_navxt_admin.php:489
425
  msgid "Category Template (Unlinked)"
426
  msgstr "Kategorie Template (nicht verlinkt)"
427
 
428
- #: breadcrumb_navxt_admin.php:489
429
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
  msgstr "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
431
 
432
- #: breadcrumb_navxt_admin.php:490
433
  msgid "Tag Template"
434
  msgstr "Tag Template"
435
 
436
- #: breadcrumb_navxt_admin.php:490
437
  msgid "The template for tag breadcrumbs."
438
  msgstr "Das Template für Tag Breadcrumbs."
439
 
440
- #: breadcrumb_navxt_admin.php:491
441
  msgid "Tag Template (Unlinked)"
442
  msgstr "(nicht verlinkt)"
443
 
444
- #: breadcrumb_navxt_admin.php:491
445
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr "- wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
447
 
448
- #: breadcrumb_navxt_admin.php:517
449
  msgid "Miscellaneous"
450
  msgstr "Sonstiges"
451
 
452
- #: breadcrumb_navxt_admin.php:520
453
  msgid "Author Template"
454
  msgstr "Autor Template"
455
 
456
- #: breadcrumb_navxt_admin.php:520
457
  msgid "The template for author breadcrumbs."
458
  msgstr "Das Template für Autoren Breadcrumbs."
459
 
460
- #: breadcrumb_navxt_admin.php:521
461
  msgid "Author Template (Unlinked)"
462
  msgstr "(nicht verlinkt)"
463
 
464
- #: breadcrumb_navxt_admin.php:521
465
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
  msgstr "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
467
 
468
- #: breadcrumb_navxt_admin.php:522
469
  msgid "Author Display Format"
470
  msgstr "Autor Anzeige Format"
471
 
472
- #: breadcrumb_navxt_admin.php:522
473
  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."
474
  msgstr "display_name verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
475
 
476
- #: breadcrumb_navxt_admin.php:523
477
  msgid "Date Template"
478
  msgstr "Datum Template"
479
 
480
- #: breadcrumb_navxt_admin.php:523
481
  msgid "The template for date breadcrumbs."
482
  msgstr "Das Template für Datum Breadcrumbs."
483
 
484
- #: breadcrumb_navxt_admin.php:524
485
  msgid "Date Template (Unlinked)"
486
  msgstr "Datum Template (nicht verlinkt)"
487
 
488
- #: breadcrumb_navxt_admin.php:524
489
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
  msgstr "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
491
 
492
- #: breadcrumb_navxt_admin.php:525
493
  msgid "Search Template"
494
  msgstr "Suche Template"
495
 
496
- #: breadcrumb_navxt_admin.php:525
497
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
  msgstr ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
499
 
500
- #: breadcrumb_navxt_admin.php:526
501
  msgid "Search Template (Unlinked)"
502
  msgstr "Suche Template (nicht verlinkt)"
503
 
504
- #: breadcrumb_navxt_admin.php:526
505
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
  msgstr "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
507
 
508
- #: breadcrumb_navxt_admin.php:527
509
  msgid "404 Title"
510
  msgstr "404 Titel"
511
 
512
- #: breadcrumb_navxt_admin.php:528
513
  msgid "404 Template"
514
  msgstr "404 Template"
515
 
516
- #: breadcrumb_navxt_admin.php:528
517
  msgid "The template for 404 breadcrumbs."
518
  msgstr "Das Template für 404 Breadcrumbs."
519
 
520
- #: breadcrumb_navxt_admin.php:533
521
  msgid "Save Changes"
522
- msgstr "Änderungen Speichern"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2012-09-28 21:56:32+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
+ #: breadcrumb_navxt_class.php:268
17
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
+ msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a> "
19
+
20
+ #: breadcrumb_navxt_class.php:278
21
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
+ msgstr "Suchergebnisse für &#39;<a title=\"Gehe zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
+
24
+ #: breadcrumb_navxt_admin.php:325
25
+ msgid "A collection of settings most likely to be modified are located under this tab."
26
+ msgstr "Eine Sammlung von Einstellungen, die am häufigsten verändert werden, finden sich unter diesem Tab."
27
+
28
+ #: breadcrumb_navxt_admin.php:333
29
+ msgid "Title Length"
30
+ msgstr "Länge des Titels"
31
+
32
+ #: breadcrumb_navxt_admin.php:338
33
+ msgid "Limit the length of the breadcrumb title."
34
+ msgstr "Länge des Breadcrumb Titels begrenzen."
35
+
36
+ #: breadcrumb_navxt_admin.php:399
37
+ msgid "Mainsite Breadcrumb"
38
+ msgstr "Breadcrumb der Hauptseite"
39
+
40
+ #: breadcrumb_navxt_admin.php:430
41
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
+ msgstr "Die Einstellugen für alle Post Arten (Posts, Seiten und Custom Post Types) finden sich unter diesem Tab."
43
+
44
+ #: breadcrumb_navxt_admin.php:430
45
+ msgid "Post Types"
46
+ msgstr "Post Typen"
47
+
48
+ #: breadcrumb_navxt_admin.php:436
49
+ msgid "Post Hierarchy Display"
50
+ msgstr "Post Hierarchie Anzeige"
51
+
52
+ #: breadcrumb_navxt_admin.php:440
53
+ msgid "Post Hierarchy"
54
+ msgstr "Post Hierarchie"
55
+
56
+ #: breadcrumb_navxt_admin.php:508
57
+ msgid "%s Hierarchy Display"
58
+ msgstr "%s Hierarchie Anzeige"
59
+
60
+ #: breadcrumb_navxt_admin.php:559
61
+ msgid "Post Formats"
62
+ msgstr "Post Formate"
63
+
64
+ #: breadcrumb_navxt_admin.php:343
65
+ msgid "Max Title Length: "
66
+ msgstr "Maximale Länge des Titels:"
67
+
68
+ #: breadcrumb_navxt_admin.php:431
69
+ msgid "Posts"
70
+ msgstr "Posts"
71
+
72
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
+ msgid "Post Parent"
74
+ msgstr "Post Parent"
75
+
76
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
+ msgid "The hierarchy which the breadcrumb trail will show."
78
+ msgstr "Die Hierarchie, welche vom Breadcrumb Trail angezeigt wird."
79
+
80
+ #: breadcrumb_navxt_admin.php:512
81
+ msgid "%s Hierarchy"
82
+ msgstr "%s Hierarchie"
83
+
84
+ #: breadcrumb_navxt_admin.php:544
85
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
+ msgstr "Die Einstellungen für alle Systematiken (inkl. Kategorien, Tags und Custom Systematiken) finden sich unter diesem Tab."
87
+
88
+ #: breadcrumb_navxt_admin.php:544
89
+ msgid "Taxonomies"
90
+ msgstr "Systematiken"
91
+
92
+ #: breadcrumb_navxt_admin.php:562
93
+ msgid "Post Format Template"
94
+ msgstr "Post Format Vorlage"
95
+
96
+ #: breadcrumb_navxt_admin.php:562
97
+ msgid "The template for post format breadcrumbs."
98
+ msgstr "Die Vorlage für Post Format Breadcrumbs."
99
+
100
+ #: breadcrumb_navxt_admin.php:563
101
+ msgid "Post Format Template (Unlinked)"
102
+ msgstr "Post Format Vorlage (nicht verlinkt)"
103
+
104
+ #: breadcrumb_navxt_admin.php:563
105
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
+ msgstr "Die Vorlage für post_format Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
107
+
108
+ #: breadcrumb_navxt_admin.php:593
109
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
+ msgstr "Die Einstellungen für Autor und Datum Archive, Suchanfragen und 404 Seiten finden sich unter diesem Tab."
111
+
112
+ #: breadcrumb_navxt_admin.php:594
113
+ msgid "Author Archives"
114
+ msgstr "Autor Archive"
115
+
116
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
+ msgstr "<a title=\"Gehe zu den %title% Tag Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
+
120
+ #: breadcrumb_navxt_class.php:293
121
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "Artikel von: <a title=\"Gehe zur ersten Seite mit Posts von %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:300
125
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "<a title=\"Gehe zu den %title% Kategorie Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:304
129
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"Gehe zu den %title% Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: includes/mtekk_adminkit.php:283
133
+ msgid "Your settings are for a newer version."
134
+ msgstr "Deine Einstellungen sind für eine aktuellere Version ausgelegt."
135
+
136
+ #: breadcrumb_navxt_widget.php:96
137
  msgid "Text to show before the trail:"
138
  msgstr "Text, der vor dem Trail angezeigt werden soll:"
139
 
140
+ #: breadcrumb_navxt_widget.php:103
141
  msgid "Schema.org"
142
  msgstr "Schema.org"
143
 
144
+ #: breadcrumb_navxt_admin.php:229
145
  msgid "Go to the Breadcrumb NavXT translation project."
146
  msgstr "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
147
 
148
+ #: breadcrumb_navxt_widget.php:33
149
+ msgid "Adds a breadcrumb trail to your sidebar"
150
+ msgstr "Fügt der Sidebar einen Breadcrumb Trail hinzu"
151
 
152
+ #: breadcrumb_navxt_widget.php:92
153
  msgid "Title:"
154
  msgstr "Titel:"
155
 
156
+ #: breadcrumb_navxt_widget.php:100
157
+ msgid "Output trail as:"
158
+ msgstr "Trail ausgeben als:"
159
+
160
+ #: breadcrumb_navxt_widget.php:102
161
+ msgid "List"
162
+ msgstr "Liste"
163
+
164
+ #: breadcrumb_navxt_widget.php:104
165
  msgid "Plain"
166
  msgstr "Plain"
167
 
168
+ #: breadcrumb_navxt_widget.php:109
169
  msgid "Link the breadcrumbs"
170
  msgstr "Verlinke die Breadcrumbs"
171
 
172
+ #: breadcrumb_navxt_widget.php:111
173
  msgid "Reverse the order of the trail"
174
  msgstr "Die Reihenfolge des Trails umkehren"
175
 
176
+ #: breadcrumb_navxt_widget.php:113
177
  msgid "Hide the trail on the front page"
178
  msgstr "Verstecke den Trail auf der Startseite"
179
 
180
+ #: breadcrumb_navxt_admin.php:120
181
  msgid "Insufficient privileges to proceed."
182
  msgstr "Nicht genügend Rechte um fortzufahren."
183
 
184
+ #: breadcrumb_navxt_admin.php:222
185
  msgid "Tips for the settings are located below select options."
186
  msgstr "Tips für die Einstellungen findest Du unter den Select-Optionen."
187
 
188
+ #: breadcrumb_navxt_admin.php:223
189
  msgid "Resources"
190
  msgstr "Ressourcen"
191
 
192
+ #: breadcrumb_navxt_admin.php:224
193
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
  msgstr "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
195
 
196
+ #: breadcrumb_navxt_admin.php:224
197
  msgid "Go to the Breadcrumb NavXT tag archive."
198
  msgstr "Gehe zum Breadcrumb NavXT Archiv."
199
 
200
+ #: breadcrumb_navxt_admin.php:225
201
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
  msgstr "%sOnline Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
203
 
204
+ #: breadcrumb_navxt_admin.php:225
205
  msgid "Go to the Breadcrumb NavXT online documentation"
206
  msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
207
 
208
+ #: breadcrumb_navxt_admin.php:226
209
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
  msgstr "%Melde einen Bug%s: Wenn du glaubst, einen Bug gefunden zu haben, füge bitte Deine Wordpress Version und Details, wie man den Bug reproduzieren kann, hinzu."
211
 
212
+ #: breadcrumb_navxt_admin.php:226
213
  msgid "Go to the Breadcrumb NavXT support post for your version."
214
  msgstr "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
215
 
216
+ #: breadcrumb_navxt_admin.php:227
217
  msgid "Giving Back"
218
  msgstr "Etwas Zurückgeben"
219
 
220
+ #: breadcrumb_navxt_admin.php:228
221
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
  msgstr "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
223
 
224
+ #: breadcrumb_navxt_admin.php:228
225
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
  msgstr "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
227
 
228
+ #: breadcrumb_navxt_admin.php:229
229
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
  msgstr "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
231
 
232
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
+ #: breadcrumb_navxt_admin.php:326
234
  msgid "General"
235
  msgstr "Grundsätzliches"
236
 
237
+ #: breadcrumb_navxt_admin.php:237
238
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
  msgstr "Du musst entweder das beinhaltete Breadcrumb NavXT Widget verwenden oder eine der Code Abschnitte unten in Deinem Theme verwenden - erst dann werden die Einstellungen aktiv."
240
 
241
+ #: breadcrumb_navxt_admin.php:238
242
  msgid "Breadcrumb trail with separators"
243
  msgstr "Breadcrumb Trail mit Abstandshaltern"
244
 
245
+ #: breadcrumb_navxt_admin.php:244
246
  msgid "Breadcrumb trail in list form"
247
  msgstr "Breadcrumb Trail in Listen-Form"
248
 
249
+ #: breadcrumb_navxt_admin.php:253
250
  msgid "Quick Start"
251
  msgstr "Schnellstart"
252
 
253
+ #: breadcrumb_navxt_admin.php:256
254
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
  msgstr "Unter Verwendung des Codes aus dem Schnellstart-Abschnitt oben kann das folgende CSS als Basis für das Styling Deines Breadcrumb Trails verwendet werden."
256
 
257
+ #: breadcrumb_navxt_admin.php:268
258
  msgid "Styling"
259
  msgstr "Styling"
260
 
261
+ #: breadcrumb_navxt_admin.php:274
262
  msgid "Import/Export/Reset"
263
  msgstr "Import/Export/Reset"
264
 
265
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
  msgid "Import"
267
  msgstr "Import"
268
 
269
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
  msgid "Export"
271
  msgstr "Export"
272
 
273
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
  msgid "Reset"
275
  msgstr "Reset"
276
 
277
+ #: breadcrumb_navxt_admin.php:313
278
  msgid "Breadcrumb NavXT Settings"
279
  msgstr "Breadcrumb NavXT Einstellungen"
280
 
281
+ #: breadcrumb_navxt_admin.php:329
282
  msgid "Breadcrumb Separator"
283
  msgstr "Breadcrumb Trennzeichen"
284
 
285
+ #: breadcrumb_navxt_admin.php:329
286
  msgid "Placed in between each breadcrumb."
287
  msgstr "Wird zwischen jedem Breadcrumb eingefügt."
288
 
289
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
 
 
 
 
290
  msgid "Home Breadcrumb"
291
  msgstr "Home Breadcrumb"
292
 
293
+ #: breadcrumb_navxt_admin.php:372
294
  msgid "Place the home breadcrumb in the trail."
295
  msgstr "Füge den Home Breadcrumb in den Trail ein."
296
 
297
+ #: breadcrumb_navxt_admin.php:377
298
  msgid "Home Title: "
299
  msgstr "Home Titel:"
300
 
301
+ #: breadcrumb_navxt_admin.php:385
302
  msgid "Home Template"
303
  msgstr "Home Template"
304
 
305
+ #: breadcrumb_navxt_admin.php:385
306
  msgid "The template for the home breadcrumb."
307
  msgstr "Das Template für das Home Breadcrumb."
308
 
309
+ #: breadcrumb_navxt_admin.php:386
310
  msgid "Home Template (Unlinked)"
311
  msgstr "Home Template (nicht verlinkt)"
312
 
313
+ #: breadcrumb_navxt_admin.php:386
314
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
  msgstr "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
316
 
317
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
  msgid "Blog Breadcrumb"
319
  msgstr "Blog Breadcrumb"
320
 
321
+ #: breadcrumb_navxt_admin.php:393
322
  msgid "Place the blog breadcrumb in the trail."
323
  msgstr "Platziere das Blog Breadcrumb im Trail."
324
 
325
+ #: breadcrumb_navxt_admin.php:394
326
  msgid "Blog Template"
327
  msgstr "Blog Template"
328
 
329
+ #: breadcrumb_navxt_admin.php:394
330
  msgid "The template for the blog breadcrumb, used only in static front page environments."
331
  msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
332
 
333
+ #: breadcrumb_navxt_admin.php:395
334
  msgid "Blog Template (Unlinked)"
335
  msgstr "Blog Template (nicht verlinkt)"
336
 
337
+ #: breadcrumb_navxt_admin.php:395
338
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
  msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
340
 
341
+ #: breadcrumb_navxt_admin.php:403
342
  msgid "Main Site Breadcrumb"
343
  msgstr "Hauptseite Breadcrumb"
344
 
345
+ #: breadcrumb_navxt_admin.php:408
346
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
  msgstr "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
348
 
349
+ #: breadcrumb_navxt_admin.php:413
350
  msgid "Main Site Home Title: "
351
  msgstr "Hauptseite Home Titel:"
352
 
353
+ #: breadcrumb_navxt_admin.php:422
354
  msgid "Main Site Home Template"
355
  msgstr "Hauptseite Home Template"
356
 
357
+ #: breadcrumb_navxt_admin.php:422
358
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
  msgstr "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
360
 
361
+ #: breadcrumb_navxt_admin.php:423
362
  msgid "Main Site Home Template (Unlinked)"
363
  msgstr "Hauptseite Home Template (nicht verlinkt)"
364
 
365
+ #: breadcrumb_navxt_admin.php:423
366
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
  msgstr "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
368
 
369
+ #: breadcrumb_navxt_admin.php:354
370
  msgid "Current Item"
371
  msgstr "Aktueller Eintrag"
372
 
373
+ #: breadcrumb_navxt_admin.php:357
374
  msgid "Link Current Item"
375
  msgstr "Aktuellen Eintrag verlinken"
376
 
377
+ #: breadcrumb_navxt_admin.php:357
378
  msgid "Yes"
379
  msgstr "Ja"
380
 
381
+ #: breadcrumb_navxt_admin.php:358
382
  msgid "Paged Breadcrumb"
383
  msgstr "Paged Breadcrumb"
384
 
385
+ #: breadcrumb_navxt_admin.php:358
386
  msgid "Include the paged breadcrumb in the breadcrumb trail."
387
  msgstr "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
388
 
389
+ #: breadcrumb_navxt_admin.php:358
390
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
  msgstr "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
392
 
393
+ #: breadcrumb_navxt_admin.php:359
394
  msgid "Paged Template"
395
  msgstr "Paged Template"
396
 
397
+ #: breadcrumb_navxt_admin.php:359
398
  msgid "The template for paged breadcrumbs."
399
  msgstr "Das Template für Paged Breadcrumbs."
400
 
401
+ #: breadcrumb_navxt_admin.php:434
 
 
 
 
402
  msgid "Post Template"
403
  msgstr "Post Template"
404
 
405
+ #: breadcrumb_navxt_admin.php:434
406
  msgid "The template for post breadcrumbs."
407
  msgstr "Das Template für Post Breadcrumbs."
408
 
409
+ #: breadcrumb_navxt_admin.php:435
410
  msgid "Post Template (Unlinked)"
411
  msgstr "Post Template (nicht verlinkt)"
412
 
413
+ #: breadcrumb_navxt_admin.php:435
414
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
  msgstr "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
416
 
417
+ #: breadcrumb_navxt_admin.php:436
 
 
 
 
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr "Zeige die Systematik, die zu einem Post im Breadcrumb Trail führt."
420
 
421
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
 
 
 
 
422
  msgid "Categories"
423
  msgstr "Kategorien"
424
 
425
+ #: breadcrumb_navxt_admin.php:445
426
  msgid "Dates"
427
  msgstr "Daten"
428
 
429
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
  msgid "Tags"
431
  msgstr "Tags"
432
 
433
+ #: breadcrumb_navxt_admin.php:468
434
  msgid "Pages"
435
  msgstr "Seiten"
436
 
437
+ #: breadcrumb_navxt_admin.php:471
 
 
 
 
438
  msgid "Page Template"
439
  msgstr "Seiten Template"
440
 
441
+ #: breadcrumb_navxt_admin.php:471
442
  msgid "The template for page breadcrumbs."
443
  msgstr "Das Template für Seiten Breadcrumbs."
444
 
445
+ #: breadcrumb_navxt_admin.php:472
446
  msgid "Page Template (Unlinked)"
447
  msgstr "Seiten Template (nicht verlinkt)"
448
 
449
+ #: breadcrumb_navxt_admin.php:472
450
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
  msgstr "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
452
 
453
+ #: breadcrumb_navxt_admin.php:473
454
  msgid "Attachment Template"
455
  msgstr "Anhang Template"
456
 
457
+ #: breadcrumb_navxt_admin.php:473
458
  msgid "The template for attachment breadcrumbs."
459
  msgstr "Das Template für Anhang Breadcrumbs."
460
 
461
+ #: breadcrumb_navxt_admin.php:474
462
  msgid "Attachment Template (Unlinked)"
463
  msgstr "Anhang Template (nicht verlinkt)"
464
 
465
+ #: breadcrumb_navxt_admin.php:474
466
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
  msgstr "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
468
 
469
+ #: breadcrumb_navxt_admin.php:661
 
 
 
470
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
  msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">%htitle%</a>"
472
 
473
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
  msgid "%htitle%"
475
  msgstr "%htitle%"
476
 
477
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
  msgid "%s Template"
479
  msgstr "%s Template"
480
 
481
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
  msgid "The template for %s breadcrumbs."
483
  msgstr "Das Template für %s Breadcrumbs."
484
 
485
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
  msgid "%s Template (Unlinked)"
487
  msgstr "%s Template (nicht verlinkt)"
488
 
489
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
  msgstr "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
492
 
493
+ #: breadcrumb_navxt_admin.php:500
494
  msgid "%s Root Page"
495
  msgstr "%s Root Seite"
496
 
497
+ #: breadcrumb_navxt_admin.php:503
498
  msgid "&mdash; Select &mdash;"
499
  msgstr "&mdash; Auswahl &mdash;"
500
 
501
+ #: breadcrumb_navxt_admin.php:507
502
  msgid "%s Archive Display"
503
  msgstr "%s Archiv Anzeige"
504
 
505
+ #: breadcrumb_navxt_admin.php:507
506
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
  msgstr "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
508
 
509
+ #: breadcrumb_navxt_admin.php:508
 
 
 
 
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Zeige die Systematik, die zu einem %s im Breadcrumb Trail führt."
512
 
513
+ #: breadcrumb_navxt_admin.php:548
 
 
 
 
 
 
 
 
514
  msgid "Category Template"
515
  msgstr "Kategorie Template"
516
 
517
+ #: breadcrumb_navxt_admin.php:548
518
  msgid "The template for category breadcrumbs."
519
  msgstr "Das Template für Kategorie Breadcrumbs."
520
 
521
+ #: breadcrumb_navxt_admin.php:549
522
  msgid "Category Template (Unlinked)"
523
  msgstr "Kategorie Template (nicht verlinkt)"
524
 
525
+ #: breadcrumb_navxt_admin.php:549
526
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
  msgstr "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
528
 
529
+ #: breadcrumb_navxt_admin.php:555
530
  msgid "Tag Template"
531
  msgstr "Tag Template"
532
 
533
+ #: breadcrumb_navxt_admin.php:555
534
  msgid "The template for tag breadcrumbs."
535
  msgstr "Das Template für Tag Breadcrumbs."
536
 
537
+ #: breadcrumb_navxt_admin.php:556
538
  msgid "Tag Template (Unlinked)"
539
  msgstr "(nicht verlinkt)"
540
 
541
+ #: breadcrumb_navxt_admin.php:556
542
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
  msgstr "- wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
544
 
545
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
  msgid "Miscellaneous"
547
  msgstr "Sonstiges"
548
 
549
+ #: breadcrumb_navxt_admin.php:597
550
  msgid "Author Template"
551
  msgstr "Autor Template"
552
 
553
+ #: breadcrumb_navxt_admin.php:597
554
  msgid "The template for author breadcrumbs."
555
  msgstr "Das Template für Autoren Breadcrumbs."
556
 
557
+ #: breadcrumb_navxt_admin.php:598
558
  msgid "Author Template (Unlinked)"
559
  msgstr "(nicht verlinkt)"
560
 
561
+ #: breadcrumb_navxt_admin.php:598
562
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
  msgstr "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
564
 
565
+ #: breadcrumb_navxt_admin.php:599
566
  msgid "Author Display Format"
567
  msgstr "Autor Anzeige Format"
568
 
569
+ #: breadcrumb_navxt_admin.php:599
570
  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."
571
  msgstr "display_name verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
572
 
573
+ #: breadcrumb_navxt_admin.php:605
574
  msgid "Date Template"
575
  msgstr "Datum Template"
576
 
577
+ #: breadcrumb_navxt_admin.php:605
578
  msgid "The template for date breadcrumbs."
579
  msgstr "Das Template für Datum Breadcrumbs."
580
 
581
+ #: breadcrumb_navxt_admin.php:606
582
  msgid "Date Template (Unlinked)"
583
  msgstr "Datum Template (nicht verlinkt)"
584
 
585
+ #: breadcrumb_navxt_admin.php:606
586
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
  msgstr "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
588
 
589
+ #: breadcrumb_navxt_admin.php:607
590
  msgid "Search Template"
591
  msgstr "Suche Template"
592
 
593
+ #: breadcrumb_navxt_admin.php:607
594
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
  msgstr ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
596
 
597
+ #: breadcrumb_navxt_admin.php:608
598
  msgid "Search Template (Unlinked)"
599
  msgstr "Suche Template (nicht verlinkt)"
600
 
601
+ #: breadcrumb_navxt_admin.php:608
602
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
  msgstr "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
604
 
605
+ #: breadcrumb_navxt_admin.php:609
606
  msgid "404 Title"
607
  msgstr "404 Titel"
608
 
609
+ #: breadcrumb_navxt_admin.php:610
610
  msgid "404 Template"
611
  msgstr "404 Template"
612
 
613
+ #: breadcrumb_navxt_admin.php:610
614
  msgid "The template for 404 breadcrumbs."
615
  msgstr "Das Template für 404 Breadcrumbs."
616
 
617
+ #: breadcrumb_navxt_admin.php:616
618
  msgid "Save Changes"
619
+ msgstr "Änderungen Speichern"
620
+
621
+ #: includes/mtekk_adminkit.php:204
622
+ msgid "Settings"
623
+ msgstr "Einstellungen"
624
+
625
+ #: includes/mtekk_adminkit.php:274
626
+ msgid "Your settings are out of date."
627
+ msgstr "Deine Einstellungen sind veraltet."
628
+
629
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
+ msgid "Migrate the settings now."
631
+ msgstr "Die Einstellungen jetzt migrieren."
632
+
633
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
+ msgid "Migrate now."
635
+ msgstr "Jetzt migrieren."
636
+
637
+ #: includes/mtekk_adminkit.php:291
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "Deine Plugin-Installtion ist fertig."
640
+
641
+ #: includes/mtekk_adminkit.php:291
642
+ msgid "Load default settings now."
643
+ msgstr "Standard-Einstellungen jetzt laden."
644
+
645
+ #: includes/mtekk_adminkit.php:291
646
+ msgid "Complete now."
647
+ msgstr "Fertiggestellt."
648
+
649
+ #: includes/mtekk_adminkit.php:299
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "Deine Plugin-Einstellungen sind fehlerhaft."
652
+
653
+ #: includes/mtekk_adminkit.php:299
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Versuche, die Einstellungen jetzt zu fixen."
656
+
657
+ #: includes/mtekk_adminkit.php:299
658
+ msgid "Fix now."
659
+ msgstr "Jetzt fixen."
660
+
661
+ #: includes/mtekk_adminkit.php:477
662
+ msgid "Settings successfully saved."
663
+ msgstr "Einstellungen erfolgreich gespeichert."
664
+
665
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
+ msgid "Undo the options save."
667
+ msgstr "Das Speichern der Optionen rückgängig machen."
668
+
669
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
+ #: includes/mtekk_adminkit.php:628
672
+ msgid "Undo"
673
+ msgstr "Rückgänig machen"
674
+
675
+ #: includes/mtekk_adminkit.php:482
676
+ msgid "Some settings were not saved."
677
+ msgstr "Einige Einstellungen wurden nicht gespeichert."
678
+
679
+ #: includes/mtekk_adminkit.php:483
680
+ msgid "The following settings were not saved:"
681
+ msgstr "Die folgenden Einstellungen wurden nicht gespeichert."
682
+
683
+ #: includes/mtekk_adminkit.php:488
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Bitte füge diese Nachricht Deinem %sbug report%s bei."
686
+
687
+ #: includes/mtekk_adminkit.php:488
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Gehe zum %s Support Post für Deine Version."
690
+
691
+ #: includes/mtekk_adminkit.php:587
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Die Einstellungen wurden erfolgreich von der hochgeladenen Datei importiert."
694
+
695
+ #: includes/mtekk_adminkit.php:587
696
+ msgid "Undo the options import."
697
+ msgstr "Den Optionen-Import rückgängig machen."
698
+
699
+ #: includes/mtekk_adminkit.php:592
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Einstellungen-Import aus Datei fehlgeschlagen."
702
+
703
+ #: includes/mtekk_adminkit.php:611
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Einstellungen erfolgreich auf Standardwerte zurückgesetzt."
706
+
707
+ #: includes/mtekk_adminkit.php:611
708
+ msgid "Undo the options reset."
709
+ msgstr "Den Optionen-Reset rückgängig machen."
710
+
711
+ #: includes/mtekk_adminkit.php:628
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Einstellungen hat die letzte Operation erfolgreich rückgängig gemacht."
714
+
715
+ #: includes/mtekk_adminkit.php:628
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Wiederholen."
718
+
719
+ #: includes/mtekk_adminkit.php:663
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Einstellungen erfolgreich migriert."
722
+
723
+ #: includes/mtekk_adminkit.php:670
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Standardeinstellungen erfolgreich installiert."
726
+
727
+ #: includes/mtekk_adminkit.php:771
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Einstellungen aus einer XML Datei importieren, aktuelle Einstellungen in XML Datei exportieren oder Reset auf Standardeinstellungen."
730
+
731
+ #: includes/mtekk_adminkit.php:774
732
+ msgid "Settings File"
733
+ msgstr "Einstellungen Datei"
734
+
735
+ #: includes/mtekk_adminkit.php:777
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Wähle eine XML Datei mit Einstellungen zum Hochladen und Einstellungen-Import."
738
+
739
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
+ msgid "Home"
741
+ msgstr "Home"
742
+
743
+ #: breadcrumb_navxt_class.php:251
744
+ msgid "Page %htitle%"
745
+ msgstr "Seite %htitle%"
746
+
747
+ #: breadcrumb_navxt_class.php:275
748
+ msgid "404"
749
+ msgstr "404"
750
+
751
+ #: breadcrumb_navxt_class.php:280
752
+ msgid "Search results for &#39;%htitle%&#39;"
753
+ msgstr "Suchresultate für &#39;%htitle%&#39;"
754
+
755
+ #: breadcrumb_navxt_class.php:295
756
+ msgid "Articles by: %htitle%"
757
+ msgstr "Artikel von: %htitle%"
languages/breadcrumb-navxt-et.mo CHANGED
Binary file
languages/breadcrumb-navxt-et.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:26:51+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,513 +10,748 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
- #: breadcrumb_navxt_widget.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Text to show before the trail:"
15
  msgstr "Tekst, mida kuvada enne teekonna rada"
16
 
17
- #: breadcrumb_navxt_widget.php:100
18
  msgid "Schema.org"
19
  msgstr "Schema.org"
20
 
21
- #: breadcrumb_navxt_admin.php:227
22
  msgid "Go to the Breadcrumb NavXT translation project."
23
  msgstr "Breadcrumb NavXT tõlke projekt."
24
 
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
28
 
29
- #: breadcrumb_navxt_widget.php:89
30
  msgid "Title:"
31
  msgstr "Nimetus"
32
 
33
- #: breadcrumb_navxt_widget.php:101
 
 
 
 
 
 
 
 
34
  msgid "Plain"
35
  msgstr "Lihtne"
36
 
37
- #: breadcrumb_navxt_widget.php:106
38
  msgid "Link the breadcrumbs"
39
  msgstr "Lisa teekonna rajale lingid"
40
 
41
- #: breadcrumb_navxt_widget.php:108
42
  msgid "Reverse the order of the trail"
43
  msgstr "Pööra teekonna rada vastupidi"
44
 
45
- #: breadcrumb_navxt_widget.php:110
46
  msgid "Hide the trail on the front page"
47
  msgstr "Peida rada avalehel"
48
 
49
- #: breadcrumb_navxt_admin.php:118
50
  msgid "Insufficient privileges to proceed."
51
  msgstr "Puuduvad õigused, et jätkata."
52
 
53
- #: breadcrumb_navxt_admin.php:220
54
  msgid "Tips for the settings are located below select options."
55
  msgstr "Seadete näpunäited paiknevad valikute all."
56
 
57
- #: breadcrumb_navxt_admin.php:221
58
  msgid "Resources"
59
  msgstr "Vahendid"
60
 
61
- #: breadcrumb_navxt_admin.php:222
62
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
  msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
64
 
65
- #: breadcrumb_navxt_admin.php:222
66
  msgid "Go to the Breadcrumb NavXT tag archive."
67
  msgstr "Mine Breadcrumb NavXT sildi arhiivi."
68
 
69
- #: breadcrumb_navxt_admin.php:223
70
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
  msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
72
 
73
- #: breadcrumb_navxt_admin.php:223
74
  msgid "Go to the Breadcrumb NavXT online documentation"
75
  msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
76
 
77
- #: breadcrumb_navxt_admin.php:224
78
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
  msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
80
 
81
- #: breadcrumb_navxt_admin.php:224
82
  msgid "Go to the Breadcrumb NavXT support post for your version."
83
  msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
84
 
85
- #: breadcrumb_navxt_admin.php:225
86
  msgid "Giving Back"
87
  msgstr "Tagasiandmine"
88
 
89
- #: breadcrumb_navxt_admin.php:226
90
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
  msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
92
 
93
- #: breadcrumb_navxt_admin.php:226
94
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
  msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
96
 
97
- #: breadcrumb_navxt_admin.php:227
98
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
  msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
100
 
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
 
102
  msgid "General"
103
  msgstr "Peamine"
104
 
105
- #: breadcrumb_navxt_admin.php:235
106
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
  msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
108
 
109
- #: breadcrumb_navxt_admin.php:236
110
  msgid "Breadcrumb trail with separators"
111
  msgstr "Teekonna rada koos eraldajatega"
112
 
113
- #: breadcrumb_navxt_admin.php:242
114
  msgid "Breadcrumb trail in list form"
115
  msgstr "Teekonna rada nimekirja formaadis"
116
 
117
- #: breadcrumb_navxt_admin.php:251
118
  msgid "Quick Start"
119
  msgstr "Kiire alustamine"
120
 
121
- #: breadcrumb_navxt_admin.php:254
122
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
  msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
124
 
125
- #: breadcrumb_navxt_admin.php:266
126
  msgid "Styling"
127
  msgstr "Stiil"
128
 
129
- #: breadcrumb_navxt_admin.php:272
130
  msgid "Import/Export/Reset"
131
  msgstr "Import/Eksport/Lähtestamine"
132
 
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
  msgid "Import"
135
  msgstr "Import"
136
 
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
  msgid "Export"
139
  msgstr "Eksport"
140
 
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
  msgid "Reset"
143
  msgstr "Lähtestamine"
144
 
145
- #: breadcrumb_navxt_admin.php:311
146
  msgid "Breadcrumb NavXT Settings"
147
  msgstr "Breadcrumb NavXT seaded"
148
 
149
- #: breadcrumb_navxt_admin.php:326
150
  msgid "Breadcrumb Separator"
151
  msgstr "Teekonna raja eraldaja"
152
 
153
- #: breadcrumb_navxt_admin.php:326
154
  msgid "Placed in between each breadcrumb."
155
  msgstr "Paigutatakse iga teekonna elemendi vahele"
156
 
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Teekonna raja maksimaalne nimetuse pikkus"
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
  msgid "Home Breadcrumb"
163
  msgstr "Avalehe rada"
164
 
165
- #: breadcrumb_navxt_admin.php:336
166
  msgid "Place the home breadcrumb in the trail."
167
  msgstr "Lisa avaleht teekonna rajale"
168
 
169
- #: breadcrumb_navxt_admin.php:341
170
  msgid "Home Title: "
171
  msgstr "Avalehe nimetus:"
172
 
173
- #: breadcrumb_navxt_admin.php:349
174
  msgid "Home Template"
175
  msgstr "Avalehe mall"
176
 
177
- #: breadcrumb_navxt_admin.php:349
178
  msgid "The template for the home breadcrumb."
179
  msgstr "Avalehe teekonna raja mall."
180
 
181
- #: breadcrumb_navxt_admin.php:350
182
  msgid "Home Template (Unlinked)"
183
  msgstr "Avalehe mall (ei ole lingitud)"
184
 
185
- #: breadcrumb_navxt_admin.php:350
186
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
  msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
188
 
189
- #: breadcrumb_navxt_admin.php:351
190
  msgid "Blog Breadcrumb"
191
  msgstr "Blogi teekonna rada"
192
 
193
- #: breadcrumb_navxt_admin.php:351
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Aseta blogi teekond rajale."
196
 
197
- #: breadcrumb_navxt_admin.php:352
198
  msgid "Blog Template"
199
  msgstr "Blogi teekonna rada"
200
 
201
- #: breadcrumb_navxt_admin.php:352
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
204
 
205
- #: breadcrumb_navxt_admin.php:353
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Blogi mall (linkimata)"
208
 
209
- #: breadcrumb_navxt_admin.php:353
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
212
 
213
- #: breadcrumb_navxt_admin.php:357
214
  msgid "Main Site Breadcrumb"
215
  msgstr "Peamise saidi teekonna rada"
216
 
217
- #: breadcrumb_navxt_admin.php:362
218
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
  msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
220
 
221
- #: breadcrumb_navxt_admin.php:367
222
  msgid "Main Site Home Title: "
223
  msgstr "Peamise saidi pealkiri:"
224
 
225
- #: breadcrumb_navxt_admin.php:376
226
  msgid "Main Site Home Template"
227
  msgstr "Peamise saidi avalehe mall"
228
 
229
- #: breadcrumb_navxt_admin.php:376
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
232
 
233
- #: breadcrumb_navxt_admin.php:377
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Peamise saidi avalehe mall (linkimata)"
236
 
237
- #: breadcrumb_navxt_admin.php:377
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
240
 
241
- #: breadcrumb_navxt_admin.php:382
242
  msgid "Current Item"
243
  msgstr "Avatud element"
244
 
245
- #: breadcrumb_navxt_admin.php:385
246
  msgid "Link Current Item"
247
  msgstr "Lingi avatud element"
248
 
249
- #: breadcrumb_navxt_admin.php:385
250
  msgid "Yes"
251
  msgstr "Jah"
252
 
253
- #: breadcrumb_navxt_admin.php:386
254
  msgid "Paged Breadcrumb"
255
  msgstr "Lehekülgedele jaotatud teekonna rada"
256
 
257
- #: breadcrumb_navxt_admin.php:386
258
  msgid "Include the paged breadcrumb in the breadcrumb trail."
259
  msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
260
 
261
- #: breadcrumb_navxt_admin.php:386
262
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
  msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
264
 
265
- #: breadcrumb_navxt_admin.php:387
266
  msgid "Paged Template"
267
  msgstr "Jaotatud mall"
268
 
269
- #: breadcrumb_navxt_admin.php:387
270
  msgid "The template for paged breadcrumbs."
271
  msgstr "Lehekülgedele jaotatud teekonna raja mall."
272
 
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Postitused &amp; Lehed"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
  msgid "Post Template"
279
  msgstr "Postituste mall"
280
 
281
- #: breadcrumb_navxt_admin.php:395
282
  msgid "The template for post breadcrumbs."
283
  msgstr "Postituste teekonna raja mall"
284
 
285
- #: breadcrumb_navxt_admin.php:396
286
  msgid "Post Template (Unlinked)"
287
  msgstr "Postituste mall (linkimata)"
288
 
289
- #: breadcrumb_navxt_admin.php:396
290
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
  msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
292
 
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Postituse süstemaatika kuvamine"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
  msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
300
 
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Postituse süstemaatika"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
  msgid "Categories"
307
  msgstr "Kategooriad"
308
 
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
  msgid "Dates"
311
  msgstr "Kuupäevad"
312
 
313
- #: breadcrumb_navxt_admin.php:407
314
  msgid "Tags"
315
  msgstr "Sildid"
316
 
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
  msgid "Pages"
319
  msgstr "Lehed"
320
 
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "Süstemaatika, mida teekonna rada kuvab."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
  msgid "Page Template"
327
  msgstr "Lehe mall"
328
 
329
- #: breadcrumb_navxt_admin.php:423
330
  msgid "The template for page breadcrumbs."
331
  msgstr "Mall lehe teekonna raja jaoks."
332
 
333
- #: breadcrumb_navxt_admin.php:424
334
  msgid "Page Template (Unlinked)"
335
  msgstr "Lehe mall (linkimata)"
336
 
337
- #: breadcrumb_navxt_admin.php:424
338
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
  msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
340
 
341
- #: breadcrumb_navxt_admin.php:425
342
  msgid "Attachment Template"
343
  msgstr "Manuse mall"
344
 
345
- #: breadcrumb_navxt_admin.php:425
346
  msgid "The template for attachment breadcrumbs."
347
  msgstr "Manuse teekonna raja mall."
348
 
349
- #: breadcrumb_navxt_admin.php:426
350
  msgid "Attachment Template (Unlinked)"
351
  msgstr "Manuse mall (linkimata)"
352
 
353
- #: breadcrumb_navxt_admin.php:426
354
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
  msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
356
 
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
  msgstr "<a title=\"Mine %title%.\" href=\"%link%\">%htitle%</a>"
363
 
364
- #: breadcrumb_navxt_admin.php:567
365
  msgid "%htitle%"
366
  msgstr "%htitle%"
367
 
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
  msgid "%s Template"
370
  msgstr "%s Mall"
371
 
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
  msgid "The template for %s breadcrumbs."
374
  msgstr "%s teekonna raja mall"
375
 
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
  msgid "%s Template (Unlinked)"
378
  msgstr "%s Mall (linkimata)"
379
 
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
  msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
383
 
384
- #: breadcrumb_navxt_admin.php:448
385
  msgid "%s Root Page"
386
  msgstr "%s juur lehekülg"
387
 
388
- #: breadcrumb_navxt_admin.php:451
389
  msgid "&mdash; Select &mdash;"
390
  msgstr "&mdash; Vali &mdash;"
391
 
392
- #: breadcrumb_navxt_admin.php:455
393
  msgid "%s Archive Display"
394
  msgstr "%s arhiivi kuvamine"
395
 
396
- #: breadcrumb_navxt_admin.php:455
397
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
  msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
399
 
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "%s süstemaatika kuvamine"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
  msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
407
 
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "%s Süstemaatika"
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Kategooriad &amp; sildid"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
  msgid "Category Template"
418
  msgstr "Kategooria mall"
419
 
420
- #: breadcrumb_navxt_admin.php:488
421
  msgid "The template for category breadcrumbs."
422
  msgstr "Kategooria teekonna rea mall"
423
 
424
- #: breadcrumb_navxt_admin.php:489
425
  msgid "Category Template (Unlinked)"
426
  msgstr "Kategooria mall (linkimata)"
427
 
428
- #: breadcrumb_navxt_admin.php:489
429
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
  msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
431
 
432
- #: breadcrumb_navxt_admin.php:490
433
  msgid "Tag Template"
434
  msgstr "Sildi mall"
435
 
436
- #: breadcrumb_navxt_admin.php:490
437
  msgid "The template for tag breadcrumbs."
438
  msgstr "Siltide teekonna riba mall"
439
 
440
- #: breadcrumb_navxt_admin.php:491
441
  msgid "Tag Template (Unlinked)"
442
  msgstr "Sildi mall (linkimata)"
443
 
444
- #: breadcrumb_navxt_admin.php:491
445
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
447
 
448
- #: breadcrumb_navxt_admin.php:517
449
  msgid "Miscellaneous"
450
  msgstr "Varia"
451
 
452
- #: breadcrumb_navxt_admin.php:520
453
  msgid "Author Template"
454
  msgstr "Autori mall"
455
 
456
- #: breadcrumb_navxt_admin.php:520
457
  msgid "The template for author breadcrumbs."
458
  msgstr "Autori teekonna riba mall."
459
 
460
- #: breadcrumb_navxt_admin.php:521
461
  msgid "Author Template (Unlinked)"
462
  msgstr "Autori mall (linkimata)"
463
 
464
- #: breadcrumb_navxt_admin.php:521
465
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
  msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
467
 
468
- #: breadcrumb_navxt_admin.php:522
469
  msgid "Author Display Format"
470
  msgstr "Autori kuvamise formaat"
471
 
472
- #: breadcrumb_navxt_admin.php:522
473
  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."
474
  msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
475
 
476
- #: breadcrumb_navxt_admin.php:523
477
  msgid "Date Template"
478
  msgstr "Kuupäeva mall"
479
 
480
- #: breadcrumb_navxt_admin.php:523
481
  msgid "The template for date breadcrumbs."
482
  msgstr "Kuupäeva teekonna riba mall."
483
 
484
- #: breadcrumb_navxt_admin.php:524
485
  msgid "Date Template (Unlinked)"
486
  msgstr "Kuupäeva mall (linkimata)"
487
 
488
- #: breadcrumb_navxt_admin.php:524
489
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
  msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
491
 
492
- #: breadcrumb_navxt_admin.php:525
493
  msgid "Search Template"
494
  msgstr "Otsingu mall"
495
 
496
- #: breadcrumb_navxt_admin.php:525
497
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
499
 
500
- #: breadcrumb_navxt_admin.php:526
501
  msgid "Search Template (Unlinked)"
502
  msgstr "Otsingu mall (linkimata)"
503
 
504
- #: breadcrumb_navxt_admin.php:526
505
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
507
 
508
- #: breadcrumb_navxt_admin.php:527
509
  msgid "404 Title"
510
  msgstr "404 pealkiri"
511
 
512
- #: breadcrumb_navxt_admin.php:528
513
  msgid "404 Template"
514
  msgstr "404 mall"
515
 
516
- #: breadcrumb_navxt_admin.php:528
517
  msgid "The template for 404 breadcrumbs."
518
  msgstr "404 teekonna riba mall."
519
 
520
- #: breadcrumb_navxt_admin.php:533
521
  msgid "Save Changes"
522
- msgstr "Salvesta muudatused"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2012-09-28 21:55:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
+ #: breadcrumb_navxt_class.php:268
17
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
+ msgstr "<a title=\"Mine %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
19
+
20
+ #: breadcrumb_navxt_class.php:278
21
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
+ msgstr "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
+
24
+ #: breadcrumb_navxt_admin.php:325
25
+ msgid "A collection of settings most likely to be modified are located under this tab."
26
+ msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
27
+
28
+ #: breadcrumb_navxt_admin.php:333
29
+ msgid "Title Length"
30
+ msgstr "Pealkirja pikkus"
31
+
32
+ #: breadcrumb_navxt_admin.php:338
33
+ msgid "Limit the length of the breadcrumb title."
34
+ msgstr "Piira teekonna raja pealkirja pikkust"
35
+
36
+ #: breadcrumb_navxt_admin.php:399
37
+ msgid "Mainsite Breadcrumb"
38
+ msgstr "Pealehe teekonna rada"
39
+
40
+ #: breadcrumb_navxt_admin.php:430
41
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
+ msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
43
+
44
+ #: breadcrumb_navxt_admin.php:430
45
+ msgid "Post Types"
46
+ msgstr "Postituse tüübid"
47
+
48
+ #: breadcrumb_navxt_admin.php:436
49
+ msgid "Post Hierarchy Display"
50
+ msgstr "Postituse hierarhia kuvamine"
51
+
52
+ #: breadcrumb_navxt_admin.php:440
53
+ msgid "Post Hierarchy"
54
+ msgstr "Postituse hierarhia"
55
+
56
+ #: breadcrumb_navxt_admin.php:508
57
+ msgid "%s Hierarchy Display"
58
+ msgstr "%s hierarhia kuvamine"
59
+
60
+ #: breadcrumb_navxt_admin.php:559
61
+ msgid "Post Formats"
62
+ msgstr "Postituse formaadid"
63
+
64
+ #: breadcrumb_navxt_admin.php:343
65
+ msgid "Max Title Length: "
66
+ msgstr "Lubatud pealkirja pikkus"
67
+
68
+ #: breadcrumb_navxt_admin.php:431
69
+ msgid "Posts"
70
+ msgstr "Postitused"
71
+
72
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
+ msgid "Post Parent"
74
+ msgstr "Postituse vanem"
75
+
76
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
+ msgid "The hierarchy which the breadcrumb trail will show."
78
+ msgstr "Hierarhia, mida teekonna rada kuvab"
79
+
80
+ #: breadcrumb_navxt_admin.php:512
81
+ msgid "%s Hierarchy"
82
+ msgstr "%s hierarhia"
83
+
84
+ #: breadcrumb_navxt_admin.php:544
85
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
+ msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
87
+
88
+ #: breadcrumb_navxt_admin.php:544
89
+ msgid "Taxonomies"
90
+ msgstr "Süstemaatikad"
91
+
92
+ #: breadcrumb_navxt_admin.php:562
93
+ msgid "Post Format Template"
94
+ msgstr "Postituse formaadi templiit"
95
+
96
+ #: breadcrumb_navxt_admin.php:562
97
+ msgid "The template for post format breadcrumbs."
98
+ msgstr "Teekonna raja postituse formaadi templiit."
99
+
100
+ #: breadcrumb_navxt_admin.php:563
101
+ msgid "Post Format Template (Unlinked)"
102
+ msgstr "Postituse formaadi templiit (linkimata)"
103
+
104
+ #: breadcrumb_navxt_admin.php:563
105
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
+ msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
107
+
108
+ #: breadcrumb_navxt_admin.php:593
109
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
+ msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
111
+
112
+ #: breadcrumb_navxt_admin.php:594
113
+ msgid "Author Archives"
114
+ msgstr "Autori arhiiv"
115
+
116
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
+ msgstr "<a title=\"Mine %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
+
120
+ #: breadcrumb_navxt_class.php:293
121
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:300
125
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "<a title=\"Mine %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:304
129
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"Mine %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: includes/mtekk_adminkit.php:283
133
+ msgid "Your settings are for a newer version."
134
+ msgstr "Sinu seaded on uuema versiooni jaoks."
135
+
136
+ #: breadcrumb_navxt_widget.php:96
137
  msgid "Text to show before the trail:"
138
  msgstr "Tekst, mida kuvada enne teekonna rada"
139
 
140
+ #: breadcrumb_navxt_widget.php:103
141
  msgid "Schema.org"
142
  msgstr "Schema.org"
143
 
144
+ #: breadcrumb_navxt_admin.php:229
145
  msgid "Go to the Breadcrumb NavXT translation project."
146
  msgstr "Breadcrumb NavXT tõlke projekt."
147
 
148
+ #: breadcrumb_navxt_widget.php:33
149
+ msgid "Adds a breadcrumb trail to your sidebar"
150
+ msgstr "Lisa teekonna rada äärepaanile"
151
 
152
+ #: breadcrumb_navxt_widget.php:92
153
  msgid "Title:"
154
  msgstr "Nimetus"
155
 
156
+ #: breadcrumb_navxt_widget.php:100
157
+ msgid "Output trail as:"
158
+ msgstr "Väljasta rada kui:"
159
+
160
+ #: breadcrumb_navxt_widget.php:102
161
+ msgid "List"
162
+ msgstr "Nimekiri"
163
+
164
+ #: breadcrumb_navxt_widget.php:104
165
  msgid "Plain"
166
  msgstr "Lihtne"
167
 
168
+ #: breadcrumb_navxt_widget.php:109
169
  msgid "Link the breadcrumbs"
170
  msgstr "Lisa teekonna rajale lingid"
171
 
172
+ #: breadcrumb_navxt_widget.php:111
173
  msgid "Reverse the order of the trail"
174
  msgstr "Pööra teekonna rada vastupidi"
175
 
176
+ #: breadcrumb_navxt_widget.php:113
177
  msgid "Hide the trail on the front page"
178
  msgstr "Peida rada avalehel"
179
 
180
+ #: breadcrumb_navxt_admin.php:120
181
  msgid "Insufficient privileges to proceed."
182
  msgstr "Puuduvad õigused, et jätkata."
183
 
184
+ #: breadcrumb_navxt_admin.php:222
185
  msgid "Tips for the settings are located below select options."
186
  msgstr "Seadete näpunäited paiknevad valikute all."
187
 
188
+ #: breadcrumb_navxt_admin.php:223
189
  msgid "Resources"
190
  msgstr "Vahendid"
191
 
192
+ #: breadcrumb_navxt_admin.php:224
193
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
  msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
195
 
196
+ #: breadcrumb_navxt_admin.php:224
197
  msgid "Go to the Breadcrumb NavXT tag archive."
198
  msgstr "Mine Breadcrumb NavXT sildi arhiivi."
199
 
200
+ #: breadcrumb_navxt_admin.php:225
201
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
  msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
203
 
204
+ #: breadcrumb_navxt_admin.php:225
205
  msgid "Go to the Breadcrumb NavXT online documentation"
206
  msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
207
 
208
+ #: breadcrumb_navxt_admin.php:226
209
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
  msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
211
 
212
+ #: breadcrumb_navxt_admin.php:226
213
  msgid "Go to the Breadcrumb NavXT support post for your version."
214
  msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
215
 
216
+ #: breadcrumb_navxt_admin.php:227
217
  msgid "Giving Back"
218
  msgstr "Tagasiandmine"
219
 
220
+ #: breadcrumb_navxt_admin.php:228
221
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
  msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
223
 
224
+ #: breadcrumb_navxt_admin.php:228
225
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
  msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
227
 
228
+ #: breadcrumb_navxt_admin.php:229
229
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
  msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
231
 
232
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
+ #: breadcrumb_navxt_admin.php:326
234
  msgid "General"
235
  msgstr "Peamine"
236
 
237
+ #: breadcrumb_navxt_admin.php:237
238
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
  msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
240
 
241
+ #: breadcrumb_navxt_admin.php:238
242
  msgid "Breadcrumb trail with separators"
243
  msgstr "Teekonna rada koos eraldajatega"
244
 
245
+ #: breadcrumb_navxt_admin.php:244
246
  msgid "Breadcrumb trail in list form"
247
  msgstr "Teekonna rada nimekirja formaadis"
248
 
249
+ #: breadcrumb_navxt_admin.php:253
250
  msgid "Quick Start"
251
  msgstr "Kiire alustamine"
252
 
253
+ #: breadcrumb_navxt_admin.php:256
254
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
  msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
256
 
257
+ #: breadcrumb_navxt_admin.php:268
258
  msgid "Styling"
259
  msgstr "Stiil"
260
 
261
+ #: breadcrumb_navxt_admin.php:274
262
  msgid "Import/Export/Reset"
263
  msgstr "Import/Eksport/Lähtestamine"
264
 
265
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
  msgid "Import"
267
  msgstr "Import"
268
 
269
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
  msgid "Export"
271
  msgstr "Eksport"
272
 
273
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
  msgid "Reset"
275
  msgstr "Lähtestamine"
276
 
277
+ #: breadcrumb_navxt_admin.php:313
278
  msgid "Breadcrumb NavXT Settings"
279
  msgstr "Breadcrumb NavXT seaded"
280
 
281
+ #: breadcrumb_navxt_admin.php:329
282
  msgid "Breadcrumb Separator"
283
  msgstr "Teekonna raja eraldaja"
284
 
285
+ #: breadcrumb_navxt_admin.php:329
286
  msgid "Placed in between each breadcrumb."
287
  msgstr "Paigutatakse iga teekonna elemendi vahele"
288
 
289
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
 
 
 
 
290
  msgid "Home Breadcrumb"
291
  msgstr "Avalehe rada"
292
 
293
+ #: breadcrumb_navxt_admin.php:372
294
  msgid "Place the home breadcrumb in the trail."
295
  msgstr "Lisa avaleht teekonna rajale"
296
 
297
+ #: breadcrumb_navxt_admin.php:377
298
  msgid "Home Title: "
299
  msgstr "Avalehe nimetus:"
300
 
301
+ #: breadcrumb_navxt_admin.php:385
302
  msgid "Home Template"
303
  msgstr "Avalehe mall"
304
 
305
+ #: breadcrumb_navxt_admin.php:385
306
  msgid "The template for the home breadcrumb."
307
  msgstr "Avalehe teekonna raja mall."
308
 
309
+ #: breadcrumb_navxt_admin.php:386
310
  msgid "Home Template (Unlinked)"
311
  msgstr "Avalehe mall (ei ole lingitud)"
312
 
313
+ #: breadcrumb_navxt_admin.php:386
314
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
  msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
316
 
317
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
  msgid "Blog Breadcrumb"
319
  msgstr "Blogi teekonna rada"
320
 
321
+ #: breadcrumb_navxt_admin.php:393
322
  msgid "Place the blog breadcrumb in the trail."
323
  msgstr "Aseta blogi teekond rajale."
324
 
325
+ #: breadcrumb_navxt_admin.php:394
326
  msgid "Blog Template"
327
  msgstr "Blogi teekonna rada"
328
 
329
+ #: breadcrumb_navxt_admin.php:394
330
  msgid "The template for the blog breadcrumb, used only in static front page environments."
331
  msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
332
 
333
+ #: breadcrumb_navxt_admin.php:395
334
  msgid "Blog Template (Unlinked)"
335
  msgstr "Blogi mall (linkimata)"
336
 
337
+ #: breadcrumb_navxt_admin.php:395
338
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
  msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
340
 
341
+ #: breadcrumb_navxt_admin.php:403
342
  msgid "Main Site Breadcrumb"
343
  msgstr "Peamise saidi teekonna rada"
344
 
345
+ #: breadcrumb_navxt_admin.php:408
346
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
  msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
348
 
349
+ #: breadcrumb_navxt_admin.php:413
350
  msgid "Main Site Home Title: "
351
  msgstr "Peamise saidi pealkiri:"
352
 
353
+ #: breadcrumb_navxt_admin.php:422
354
  msgid "Main Site Home Template"
355
  msgstr "Peamise saidi avalehe mall"
356
 
357
+ #: breadcrumb_navxt_admin.php:422
358
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
360
 
361
+ #: breadcrumb_navxt_admin.php:423
362
  msgid "Main Site Home Template (Unlinked)"
363
  msgstr "Peamise saidi avalehe mall (linkimata)"
364
 
365
+ #: breadcrumb_navxt_admin.php:423
366
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
368
 
369
+ #: breadcrumb_navxt_admin.php:354
370
  msgid "Current Item"
371
  msgstr "Avatud element"
372
 
373
+ #: breadcrumb_navxt_admin.php:357
374
  msgid "Link Current Item"
375
  msgstr "Lingi avatud element"
376
 
377
+ #: breadcrumb_navxt_admin.php:357
378
  msgid "Yes"
379
  msgstr "Jah"
380
 
381
+ #: breadcrumb_navxt_admin.php:358
382
  msgid "Paged Breadcrumb"
383
  msgstr "Lehekülgedele jaotatud teekonna rada"
384
 
385
+ #: breadcrumb_navxt_admin.php:358
386
  msgid "Include the paged breadcrumb in the breadcrumb trail."
387
  msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
388
 
389
+ #: breadcrumb_navxt_admin.php:358
390
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
  msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
392
 
393
+ #: breadcrumb_navxt_admin.php:359
394
  msgid "Paged Template"
395
  msgstr "Jaotatud mall"
396
 
397
+ #: breadcrumb_navxt_admin.php:359
398
  msgid "The template for paged breadcrumbs."
399
  msgstr "Lehekülgedele jaotatud teekonna raja mall."
400
 
401
+ #: breadcrumb_navxt_admin.php:434
 
 
 
 
402
  msgid "Post Template"
403
  msgstr "Postituste mall"
404
 
405
+ #: breadcrumb_navxt_admin.php:434
406
  msgid "The template for post breadcrumbs."
407
  msgstr "Postituste teekonna raja mall"
408
 
409
+ #: breadcrumb_navxt_admin.php:435
410
  msgid "Post Template (Unlinked)"
411
  msgstr "Postituste mall (linkimata)"
412
 
413
+ #: breadcrumb_navxt_admin.php:435
414
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
  msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
416
 
417
+ #: breadcrumb_navxt_admin.php:436
 
 
 
 
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
420
 
421
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
 
 
 
 
422
  msgid "Categories"
423
  msgstr "Kategooriad"
424
 
425
+ #: breadcrumb_navxt_admin.php:445
426
  msgid "Dates"
427
  msgstr "Kuupäevad"
428
 
429
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
  msgid "Tags"
431
  msgstr "Sildid"
432
 
433
+ #: breadcrumb_navxt_admin.php:468
434
  msgid "Pages"
435
  msgstr "Lehed"
436
 
437
+ #: breadcrumb_navxt_admin.php:471
 
 
 
 
438
  msgid "Page Template"
439
  msgstr "Lehe mall"
440
 
441
+ #: breadcrumb_navxt_admin.php:471
442
  msgid "The template for page breadcrumbs."
443
  msgstr "Mall lehe teekonna raja jaoks."
444
 
445
+ #: breadcrumb_navxt_admin.php:472
446
  msgid "Page Template (Unlinked)"
447
  msgstr "Lehe mall (linkimata)"
448
 
449
+ #: breadcrumb_navxt_admin.php:472
450
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
  msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
452
 
453
+ #: breadcrumb_navxt_admin.php:473
454
  msgid "Attachment Template"
455
  msgstr "Manuse mall"
456
 
457
+ #: breadcrumb_navxt_admin.php:473
458
  msgid "The template for attachment breadcrumbs."
459
  msgstr "Manuse teekonna raja mall."
460
 
461
+ #: breadcrumb_navxt_admin.php:474
462
  msgid "Attachment Template (Unlinked)"
463
  msgstr "Manuse mall (linkimata)"
464
 
465
+ #: breadcrumb_navxt_admin.php:474
466
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
  msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
468
 
469
+ #: breadcrumb_navxt_admin.php:661
 
 
 
470
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
  msgstr "<a title=\"Mine %title%.\" href=\"%link%\">%htitle%</a>"
472
 
473
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
  msgid "%htitle%"
475
  msgstr "%htitle%"
476
 
477
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
  msgid "%s Template"
479
  msgstr "%s Mall"
480
 
481
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
  msgid "The template for %s breadcrumbs."
483
  msgstr "%s teekonna raja mall"
484
 
485
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
  msgid "%s Template (Unlinked)"
487
  msgstr "%s Mall (linkimata)"
488
 
489
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
  msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
492
 
493
+ #: breadcrumb_navxt_admin.php:500
494
  msgid "%s Root Page"
495
  msgstr "%s juur lehekülg"
496
 
497
+ #: breadcrumb_navxt_admin.php:503
498
  msgid "&mdash; Select &mdash;"
499
  msgstr "&mdash; Vali &mdash;"
500
 
501
+ #: breadcrumb_navxt_admin.php:507
502
  msgid "%s Archive Display"
503
  msgstr "%s arhiivi kuvamine"
504
 
505
+ #: breadcrumb_navxt_admin.php:507
506
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
  msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
508
 
509
+ #: breadcrumb_navxt_admin.php:508
 
 
 
 
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
512
 
513
+ #: breadcrumb_navxt_admin.php:548
 
 
 
 
 
 
 
 
514
  msgid "Category Template"
515
  msgstr "Kategooria mall"
516
 
517
+ #: breadcrumb_navxt_admin.php:548
518
  msgid "The template for category breadcrumbs."
519
  msgstr "Kategooria teekonna rea mall"
520
 
521
+ #: breadcrumb_navxt_admin.php:549
522
  msgid "Category Template (Unlinked)"
523
  msgstr "Kategooria mall (linkimata)"
524
 
525
+ #: breadcrumb_navxt_admin.php:549
526
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
  msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
528
 
529
+ #: breadcrumb_navxt_admin.php:555
530
  msgid "Tag Template"
531
  msgstr "Sildi mall"
532
 
533
+ #: breadcrumb_navxt_admin.php:555
534
  msgid "The template for tag breadcrumbs."
535
  msgstr "Siltide teekonna riba mall"
536
 
537
+ #: breadcrumb_navxt_admin.php:556
538
  msgid "Tag Template (Unlinked)"
539
  msgstr "Sildi mall (linkimata)"
540
 
541
+ #: breadcrumb_navxt_admin.php:556
542
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
  msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
544
 
545
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
  msgid "Miscellaneous"
547
  msgstr "Varia"
548
 
549
+ #: breadcrumb_navxt_admin.php:597
550
  msgid "Author Template"
551
  msgstr "Autori mall"
552
 
553
+ #: breadcrumb_navxt_admin.php:597
554
  msgid "The template for author breadcrumbs."
555
  msgstr "Autori teekonna riba mall."
556
 
557
+ #: breadcrumb_navxt_admin.php:598
558
  msgid "Author Template (Unlinked)"
559
  msgstr "Autori mall (linkimata)"
560
 
561
+ #: breadcrumb_navxt_admin.php:598
562
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
  msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
564
 
565
+ #: breadcrumb_navxt_admin.php:599
566
  msgid "Author Display Format"
567
  msgstr "Autori kuvamise formaat"
568
 
569
+ #: breadcrumb_navxt_admin.php:599
570
  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."
571
  msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
572
 
573
+ #: breadcrumb_navxt_admin.php:605
574
  msgid "Date Template"
575
  msgstr "Kuupäeva mall"
576
 
577
+ #: breadcrumb_navxt_admin.php:605
578
  msgid "The template for date breadcrumbs."
579
  msgstr "Kuupäeva teekonna riba mall."
580
 
581
+ #: breadcrumb_navxt_admin.php:606
582
  msgid "Date Template (Unlinked)"
583
  msgstr "Kuupäeva mall (linkimata)"
584
 
585
+ #: breadcrumb_navxt_admin.php:606
586
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
  msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
588
 
589
+ #: breadcrumb_navxt_admin.php:607
590
  msgid "Search Template"
591
  msgstr "Otsingu mall"
592
 
593
+ #: breadcrumb_navxt_admin.php:607
594
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
596
 
597
+ #: breadcrumb_navxt_admin.php:608
598
  msgid "Search Template (Unlinked)"
599
  msgstr "Otsingu mall (linkimata)"
600
 
601
+ #: breadcrumb_navxt_admin.php:608
602
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
604
 
605
+ #: breadcrumb_navxt_admin.php:609
606
  msgid "404 Title"
607
  msgstr "404 pealkiri"
608
 
609
+ #: breadcrumb_navxt_admin.php:610
610
  msgid "404 Template"
611
  msgstr "404 mall"
612
 
613
+ #: breadcrumb_navxt_admin.php:610
614
  msgid "The template for 404 breadcrumbs."
615
  msgstr "404 teekonna riba mall."
616
 
617
+ #: breadcrumb_navxt_admin.php:616
618
  msgid "Save Changes"
619
+ msgstr "Salvesta muudatused"
620
+
621
+ #: includes/mtekk_adminkit.php:204
622
+ msgid "Settings"
623
+ msgstr "Seaded"
624
+
625
+ #: includes/mtekk_adminkit.php:274
626
+ msgid "Your settings are out of date."
627
+ msgstr "Sinu seaded on aegunud."
628
+
629
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
+ msgid "Migrate the settings now."
631
+ msgstr "Suuna seaded ümber."
632
+
633
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
+ msgid "Migrate now."
635
+ msgstr "Suuna nüüd."
636
+
637
+ #: includes/mtekk_adminkit.php:291
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "Sinu plugina install on lõpetamata."
640
+
641
+ #: includes/mtekk_adminkit.php:291
642
+ msgid "Load default settings now."
643
+ msgstr "Laadi vaikeseaded nüüd."
644
+
645
+ #: includes/mtekk_adminkit.php:291
646
+ msgid "Complete now."
647
+ msgstr "Vii nüüd lõpule."
648
+
649
+ #: includes/mtekk_adminkit.php:299
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "Sinu plugina seaded on vigased."
652
+
653
+ #: includes/mtekk_adminkit.php:299
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Püüa parandada seadeid nüüd."
656
+
657
+ #: includes/mtekk_adminkit.php:299
658
+ msgid "Fix now."
659
+ msgstr "Paranda nüüd."
660
+
661
+ #: includes/mtekk_adminkit.php:477
662
+ msgid "Settings successfully saved."
663
+ msgstr "Seaded on edukalt salvestatud."
664
+
665
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
+ msgid "Undo the options save."
667
+ msgstr "Pööra seadete salvestamine tagasi."
668
+
669
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
+ #: includes/mtekk_adminkit.php:628
672
+ msgid "Undo"
673
+ msgstr "Pööra tagasi"
674
+
675
+ #: includes/mtekk_adminkit.php:482
676
+ msgid "Some settings were not saved."
677
+ msgstr "Mõned seadetest ei salvestunud."
678
+
679
+ #: includes/mtekk_adminkit.php:483
680
+ msgid "The following settings were not saved:"
681
+ msgstr "Järgnevaid seadeid ei salvestatud:"
682
+
683
+ #: includes/mtekk_adminkit.php:488
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Palun lisa see sõnum oma %svea raportisse%s."
686
+
687
+ #: includes/mtekk_adminkit.php:488
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Mine %s oma versiooni tugi postitusse."
690
+
691
+ #: includes/mtekk_adminkit.php:587
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Seaded imporditi edukalt üleslaetud failist."
694
+
695
+ #: includes/mtekk_adminkit.php:587
696
+ msgid "Undo the options import."
697
+ msgstr "Pööra valikute import tagasi."
698
+
699
+ #: includes/mtekk_adminkit.php:592
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Valikute import failist ebaõnnestus."
702
+
703
+ #: includes/mtekk_adminkit.php:611
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
706
+
707
+ #: includes/mtekk_adminkit.php:611
708
+ msgid "Undo the options reset."
709
+ msgstr "Tühista valikute tagasipööramine."
710
+
711
+ #: includes/mtekk_adminkit.php:628
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Viimase operatsiooni seaded tühistati edukalt."
714
+
715
+ #: includes/mtekk_adminkit.php:628
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Tühista viimane tagasipööramine operatsioon."
718
+
719
+ #: includes/mtekk_adminkit.php:663
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Seaded on edualt suunatud."
722
+
723
+ #: includes/mtekk_adminkit.php:670
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Vaikeseaded on edukalt installeeritud."
726
+
727
+ #: includes/mtekk_adminkit.php:771
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
730
+
731
+ #: includes/mtekk_adminkit.php:774
732
+ msgid "Settings File"
733
+ msgstr "Seadete fail"
734
+
735
+ #: includes/mtekk_adminkit.php:777
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
738
+
739
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
+ msgid "Home"
741
+ msgstr "Avaleht"
742
+
743
+ #: breadcrumb_navxt_class.php:251
744
+ msgid "Page %htitle%"
745
+ msgstr "Leht %htitle%"
746
+
747
+ #: breadcrumb_navxt_class.php:275
748
+ msgid "404"
749
+ msgstr "404"
750
+
751
+ #: breadcrumb_navxt_class.php:280
752
+ msgid "Search results for &#39;%htitle%&#39;"
753
+ msgstr "Otsitulemused &#39;%htitle%&#39;"
754
+
755
+ #: breadcrumb_navxt_class.php:295
756
+ msgid "Articles by: %htitle%"
757
+ msgstr "Artiklid: %htitle%"
languages/breadcrumb-navxt-pt_PT.mo CHANGED
Binary file
languages/breadcrumb-navxt-pt_PT.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:27:22+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,513 +10,748 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
- #: breadcrumb_navxt_widget.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Text to show before the trail:"
15
- msgstr "Texto a exibir antes do caminh:"
16
 
17
- #: breadcrumb_navxt_widget.php:100
18
  msgid "Schema.org"
19
  msgstr "Schema.org"
20
 
21
- #: breadcrumb_navxt_admin.php:227
22
  msgid "Go to the Breadcrumb NavXT translation project."
23
  msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
24
 
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr "A sua versão do PHP é muito antiga, atualize-a para uma versão mais recente. A sua versão é a %1$s, o Breadcrum NavXT necessita da %2$s."
28
 
29
- #: breadcrumb_navxt_widget.php:89
30
  msgid "Title:"
31
  msgstr "Título:"
32
 
33
- #: breadcrumb_navxt_widget.php:101
 
 
 
 
 
 
 
 
34
  msgid "Plain"
35
  msgstr "Por extenso"
36
 
37
- #: breadcrumb_navxt_widget.php:106
38
  msgid "Link the breadcrumbs"
39
  msgstr "Ligue a navegação estruturada"
40
 
41
- #: breadcrumb_navxt_widget.php:108
42
  msgid "Reverse the order of the trail"
43
- msgstr "Ordem do rasto inversa"
44
 
45
- #: breadcrumb_navxt_widget.php:110
46
  msgid "Hide the trail on the front page"
47
- msgstr "Esconda o rasto na página principal"
48
 
49
- #: breadcrumb_navxt_admin.php:118
50
  msgid "Insufficient privileges to proceed."
51
  msgstr "Permissões insuficientes para prosseguir."
52
 
53
- #: breadcrumb_navxt_admin.php:220
54
  msgid "Tips for the settings are located below select options."
55
  msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
56
 
57
- #: breadcrumb_navxt_admin.php:221
58
  msgid "Resources"
59
  msgstr "Recursos"
60
 
61
- #: breadcrumb_navxt_admin.php:222
62
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
- msgstr "%sTutoriais e How tos%s: Existem vários guias, tutoriais e how tos disponíveis na página do autor."
64
 
65
- #: breadcrumb_navxt_admin.php:222
66
  msgid "Go to the Breadcrumb NavXT tag archive."
67
  msgstr "Vá para o tópico Breadcrumb NavXT"
68
 
69
- #: breadcrumb_navxt_admin.php:223
70
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
  msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
72
 
73
- #: breadcrumb_navxt_admin.php:223
74
  msgid "Go to the Breadcrumb NavXT online documentation"
75
  msgstr "Vá para a documentação online do Breadcrumb NavXT."
76
 
77
- #: breadcrumb_navxt_admin.php:224
78
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
  msgstr "%sReporte um erro%s: Se julga que encontrou um erro, por favor inclua a sua versão do Wordpress assim cmo os detalhes que se devem ter em atenção para se reproduzir o erro."
80
 
81
- #: breadcrumb_navxt_admin.php:224
82
  msgid "Go to the Breadcrumb NavXT support post for your version."
83
  msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
84
 
85
- #: breadcrumb_navxt_admin.php:225
86
  msgid "Giving Back"
87
  msgstr "Retribuir"
88
 
89
- #: breadcrumb_navxt_admin.php:226
90
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
  msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
92
 
93
- #: breadcrumb_navxt_admin.php:226
94
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
  msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
96
 
97
- #: breadcrumb_navxt_admin.php:227
98
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
  msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
100
 
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
 
102
  msgid "General"
103
  msgstr "Genérica"
104
 
105
- #: breadcrumb_navxt_admin.php:235
106
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
  msgstr "Para que as configurações desta página surtam efeito, tem de incluir o widget Breadcrumb NavXT ou colocar os seguintes blocos de código no seu tema."
108
 
109
- #: breadcrumb_navxt_admin.php:236
110
  msgid "Breadcrumb trail with separators"
111
  msgstr "Rastos de navegação estruturada com separadores"
112
 
113
- #: breadcrumb_navxt_admin.php:242
114
  msgid "Breadcrumb trail in list form"
115
  msgstr "Rasto da navegação estruturada em forma de lista"
116
 
117
- #: breadcrumb_navxt_admin.php:251
118
  msgid "Quick Start"
119
  msgstr "Início rápido"
120
 
121
- #: breadcrumb_navxt_admin.php:254
122
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
  msgstr "Usando o código da secção iniciação rápida acima, o seguinte CSS pode ser usado como base para estilizar o rasto da sua navegação estruturada."
124
 
125
- #: breadcrumb_navxt_admin.php:266
126
  msgid "Styling"
127
  msgstr "Estilos"
128
 
129
- #: breadcrumb_navxt_admin.php:272
130
  msgid "Import/Export/Reset"
131
  msgstr "Importar/Exportar/Anular"
132
 
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
  msgid "Import"
135
  msgstr "Importar"
136
 
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
  msgid "Export"
139
  msgstr "Exportar"
140
 
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
  msgid "Reset"
143
  msgstr "Anular"
144
 
145
- #: breadcrumb_navxt_admin.php:311
146
  msgid "Breadcrumb NavXT Settings"
147
  msgstr "Preferências da navegação estruturada NavXT "
148
 
149
- #: breadcrumb_navxt_admin.php:326
150
  msgid "Breadcrumb Separator"
151
  msgstr "Separador da navegação estruturada"
152
 
153
- #: breadcrumb_navxt_admin.php:326
154
  msgid "Placed in between each breadcrumb."
155
  msgstr "Colocado entre cada link de navegação."
156
 
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Tamanho máximo para o título de cada navegação estruturada"
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
  msgid "Home Breadcrumb"
163
  msgstr "Navegação para a página principal"
164
 
165
- #: breadcrumb_navxt_admin.php:336
166
  msgid "Place the home breadcrumb in the trail."
167
  msgstr "Coloca a navegação da página principal no rasto"
168
 
169
- #: breadcrumb_navxt_admin.php:341
170
  msgid "Home Title: "
171
  msgstr "Título da página inicial:"
172
 
173
- #: breadcrumb_navxt_admin.php:349
174
  msgid "Home Template"
175
  msgstr "Modelo da página inicial:"
176
 
177
- #: breadcrumb_navxt_admin.php:349
178
  msgid "The template for the home breadcrumb."
179
  msgstr "O modelo para a navegação da página inicial."
180
 
181
- #: breadcrumb_navxt_admin.php:350
182
  msgid "Home Template (Unlinked)"
183
  msgstr "Modelo da página inicial (sem link)"
184
 
185
- #: breadcrumb_navxt_admin.php:350
186
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
  msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
188
 
189
- #: breadcrumb_navxt_admin.php:351
190
  msgid "Blog Breadcrumb"
191
  msgstr "Navegação estruturada do blog"
192
 
193
- #: breadcrumb_navxt_admin.php:351
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Coloque a navegação estruturada do blog no rasto."
196
 
197
- #: breadcrumb_navxt_admin.php:352
198
  msgid "Blog Template"
199
  msgstr "Modelo de blog"
200
 
201
- #: breadcrumb_navxt_admin.php:352
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
204
 
205
- #: breadcrumb_navxt_admin.php:353
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Modelo de blog (sem link)"
208
 
209
- #: breadcrumb_navxt_admin.php:353
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
212
 
213
- #: breadcrumb_navxt_admin.php:357
214
  msgid "Main Site Breadcrumb"
215
  msgstr "Navegação do site principal"
216
 
217
- #: breadcrumb_navxt_admin.php:362
218
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
  msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
220
 
221
- #: breadcrumb_navxt_admin.php:367
222
  msgid "Main Site Home Title: "
223
  msgstr "Título para o site principal:"
224
 
225
- #: breadcrumb_navxt_admin.php:376
226
  msgid "Main Site Home Template"
227
  msgstr "Modelo para o sítio principal"
228
 
229
- #: breadcrumb_navxt_admin.php:376
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
232
 
233
- #: breadcrumb_navxt_admin.php:377
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Modelo da página inicial do site principal (sem link)"
236
 
237
- #: breadcrumb_navxt_admin.php:377
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "O modelo para a navegação da página inicial do site principal, usado somente em ambiente de multi-site e quando a navegação estruturada não está ligada."
240
 
241
- #: breadcrumb_navxt_admin.php:382
242
  msgid "Current Item"
243
  msgstr "Item actual"
244
 
245
- #: breadcrumb_navxt_admin.php:385
246
  msgid "Link Current Item"
247
  msgstr "Link no item actual"
248
 
249
- #: breadcrumb_navxt_admin.php:385
250
  msgid "Yes"
251
  msgstr "Sim"
252
 
253
- #: breadcrumb_navxt_admin.php:386
254
  msgid "Paged Breadcrumb"
255
  msgstr "Navegação estruturada e paginada."
256
 
257
- #: breadcrumb_navxt_admin.php:386
258
  msgid "Include the paged breadcrumb in the breadcrumb trail."
259
  msgstr "Inclui a navegação paginada e estruturada no rasto."
260
 
261
- #: breadcrumb_navxt_admin.php:386
262
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
  msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
264
 
265
- #: breadcrumb_navxt_admin.php:387
266
  msgid "Paged Template"
267
  msgstr "Modelo paginado"
268
 
269
- #: breadcrumb_navxt_admin.php:387
270
  msgid "The template for paged breadcrumbs."
271
  msgstr "Modelo para a navegação estruturada."
272
 
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Artigos &amp; Páginas"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
  msgid "Post Template"
279
  msgstr "Modelo de artigo"
280
 
281
- #: breadcrumb_navxt_admin.php:395
282
  msgid "The template for post breadcrumbs."
283
  msgstr "O modelo para a navegação de artigos."
284
 
285
- #: breadcrumb_navxt_admin.php:396
286
  msgid "Post Template (Unlinked)"
287
  msgstr "Modelo de Artigo (sem link)"
288
 
289
- #: breadcrumb_navxt_admin.php:396
290
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
  msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
292
 
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Exibição de taxonomia de artigo"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
  msgstr "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
300
 
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Taxonomia de artigos"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
  msgid "Categories"
307
  msgstr "Categorias"
308
 
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
  msgid "Dates"
311
  msgstr "Datas"
312
 
313
- #: breadcrumb_navxt_admin.php:407
314
  msgid "Tags"
315
  msgstr "Tópicos"
316
 
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
  msgid "Pages"
319
  msgstr "Páginas"
320
 
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "A taxonomia que o rasto da navegação estruturada irá mostrar."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
  msgid "Page Template"
327
  msgstr "Modelo de página"
328
 
329
- #: breadcrumb_navxt_admin.php:423
330
  msgid "The template for page breadcrumbs."
331
  msgstr "O modelo para página de navegação estruturada."
332
 
333
- #: breadcrumb_navxt_admin.php:424
334
  msgid "Page Template (Unlinked)"
335
  msgstr "Modelo de página (sem link)"
336
 
337
- #: breadcrumb_navxt_admin.php:424
338
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
  msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
340
 
341
- #: breadcrumb_navxt_admin.php:425
342
  msgid "Attachment Template"
343
  msgstr "Modelo de anexo"
344
 
345
- #: breadcrumb_navxt_admin.php:425
346
  msgid "The template for attachment breadcrumbs."
347
  msgstr "Modelo para anexos de navegação estruturada."
348
 
349
- #: breadcrumb_navxt_admin.php:426
350
  msgid "Attachment Template (Unlinked)"
351
  msgstr "Modelo de anexo (sem link)"
352
 
353
- #: breadcrumb_navxt_admin.php:426
354
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
  msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
356
 
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
  msgstr "<a title=\"Vá para %title%.\" href=\"%link%\">%htitle%</a>"
363
 
364
- #: breadcrumb_navxt_admin.php:567
365
  msgid "%htitle%"
366
  msgstr "%htitle%"
367
 
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
  msgid "%s Template"
370
  msgstr "Modelo de %s"
371
 
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
  msgid "The template for %s breadcrumbs."
374
  msgstr "O modelo para navegação de %s."
375
 
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
  msgid "%s Template (Unlinked)"
378
  msgstr "Modelo de %s (sem link)"
379
 
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
  msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
383
 
384
- #: breadcrumb_navxt_admin.php:448
385
  msgid "%s Root Page"
386
  msgstr "Página raíz de %s"
387
 
388
- #: breadcrumb_navxt_admin.php:451
389
  msgid "&mdash; Select &mdash;"
390
  msgstr "&mdash; Escolha &mdash;"
391
 
392
- #: breadcrumb_navxt_admin.php:455
393
  msgid "%s Archive Display"
394
  msgstr "Exibir arquivo de %s"
395
 
396
- #: breadcrumb_navxt_admin.php:455
397
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
  msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
399
 
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "Exibir a taxonomia %s"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
  msgstr "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
407
 
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "Taxonomia de %s"
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Categoria &amp; Tópicos"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
  msgid "Category Template"
418
  msgstr "Modelo de categoria"
419
 
420
- #: breadcrumb_navxt_admin.php:488
421
  msgid "The template for category breadcrumbs."
422
  msgstr "O template para categoria de navegação estruturada."
423
 
424
- #: breadcrumb_navxt_admin.php:489
425
  msgid "Category Template (Unlinked)"
426
  msgstr "Modelo de categoria (sem link)"
427
 
428
- #: breadcrumb_navxt_admin.php:489
429
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
  msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
431
 
432
- #: breadcrumb_navxt_admin.php:490
433
  msgid "Tag Template"
434
  msgstr "Modelo de tópico"
435
 
436
- #: breadcrumb_navxt_admin.php:490
437
  msgid "The template for tag breadcrumbs."
438
  msgstr "O modelo para a navegação dos tópicos."
439
 
440
- #: breadcrumb_navxt_admin.php:491
441
  msgid "Tag Template (Unlinked)"
442
  msgstr "Modelo de tópico (sem link)"
443
 
444
- #: breadcrumb_navxt_admin.php:491
445
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
447
 
448
- #: breadcrumb_navxt_admin.php:517
449
  msgid "Miscellaneous"
450
  msgstr "Diversos"
451
 
452
- #: breadcrumb_navxt_admin.php:520
453
  msgid "Author Template"
454
  msgstr "Modelo de autor"
455
 
456
- #: breadcrumb_navxt_admin.php:520
457
  msgid "The template for author breadcrumbs."
458
  msgstr "Modelo para o autor da navegação estruturada."
459
 
460
- #: breadcrumb_navxt_admin.php:521
461
  msgid "Author Template (Unlinked)"
462
  msgstr "Modelo de autor (sem link)"
463
 
464
- #: breadcrumb_navxt_admin.php:521
465
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
  msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
467
 
468
- #: breadcrumb_navxt_admin.php:522
469
  msgid "Author Display Format"
470
  msgstr "Formato de visualização do Autor "
471
 
472
- #: breadcrumb_navxt_admin.php:522
473
  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."
474
  msgstr "display_name usa o nome especificado em \"Display name publicly as\" sob o perfil do utilizador os outros corresponde a opções no perfil do utilizador."
475
 
476
- #: breadcrumb_navxt_admin.php:523
477
  msgid "Date Template"
478
  msgstr "Modelo de data"
479
 
480
- #: breadcrumb_navxt_admin.php:523
481
  msgid "The template for date breadcrumbs."
482
  msgstr "O modelo para as datas da navegação estruturada."
483
 
484
- #: breadcrumb_navxt_admin.php:524
485
  msgid "Date Template (Unlinked)"
486
  msgstr "Modelo de data (sem link)"
487
 
488
- #: breadcrumb_navxt_admin.php:524
489
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
  msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
491
 
492
- #: breadcrumb_navxt_admin.php:525
493
  msgid "Search Template"
494
  msgstr "Modelo de pesquisa"
495
 
496
- #: breadcrumb_navxt_admin.php:525
497
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
  msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
499
 
500
- #: breadcrumb_navxt_admin.php:526
501
  msgid "Search Template (Unlinked)"
502
  msgstr "Modelo de pesquisa (sem link)"
503
 
504
- #: breadcrumb_navxt_admin.php:526
505
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
  msgstr "A âncora para o modelo da navegação da pesquisa, usada somente quando o resultado de busca se estende por várias páginas e a navegação estruturada não tem link."
507
 
508
- #: breadcrumb_navxt_admin.php:527
509
  msgid "404 Title"
510
  msgstr "404 Título"
511
 
512
- #: breadcrumb_navxt_admin.php:528
513
  msgid "404 Template"
514
  msgstr "Modelo 404"
515
 
516
- #: breadcrumb_navxt_admin.php:528
517
  msgid "The template for 404 breadcrumbs."
518
  msgstr "O modelo para 404 navegação estruturada."
519
 
520
- #: breadcrumb_navxt_admin.php:533
521
  msgid "Save Changes"
522
- msgstr "Gravar alterações"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2012-09-28 21:55:58+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
+ #: breadcrumb_navxt_class.php:268
17
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
+ msgstr "<a title=\"Ir para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
19
+
20
+ #: breadcrumb_navxt_class.php:278
21
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
+ msgstr "Resultados de pesquisa pro &#39;<a title=\"Ir para a primeira página dos resultados de pesquisa por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
+
24
+ #: breadcrumb_navxt_admin.php:325
25
+ msgid "A collection of settings most likely to be modified are located under this tab."
26
+ msgstr "Conjunto de configurações mais frequentes encontra-se neste separador."
27
+
28
+ #: breadcrumb_navxt_admin.php:333
29
+ msgid "Title Length"
30
+ msgstr "Comprimento do título"
31
+
32
+ #: breadcrumb_navxt_admin.php:338
33
+ msgid "Limit the length of the breadcrumb title."
34
+ msgstr "Limita o tamanho dos títulos da navegação estruturada."
35
+
36
+ #: breadcrumb_navxt_admin.php:399
37
+ msgid "Mainsite Breadcrumb"
38
+ msgstr "Navegação estruturada do site principal"
39
+
40
+ #: breadcrumb_navxt_admin.php:430
41
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
+ msgstr "As configurações para todos os tipos de artigo (Artigos, Páginas e Tipos de Artigo Personalizado) encontram-se neste separador."
43
+
44
+ #: breadcrumb_navxt_admin.php:430
45
+ msgid "Post Types"
46
+ msgstr "Tipos de artigo"
47
+
48
+ #: breadcrumb_navxt_admin.php:436
49
+ msgid "Post Hierarchy Display"
50
+ msgstr "Exibir hierarquia de artigos"
51
+
52
+ #: breadcrumb_navxt_admin.php:440
53
+ msgid "Post Hierarchy"
54
+ msgstr "Hierarquia de artigos"
55
+
56
+ #: breadcrumb_navxt_admin.php:508
57
+ msgid "%s Hierarchy Display"
58
+ msgstr "Exibir hierarquia de %s"
59
+
60
+ #: breadcrumb_navxt_admin.php:559
61
+ msgid "Post Formats"
62
+ msgstr "Formatos de artigo"
63
+
64
+ #: breadcrumb_navxt_admin.php:343
65
+ msgid "Max Title Length: "
66
+ msgstr "Tamanho máximo do título:"
67
+
68
+ #: breadcrumb_navxt_admin.php:431
69
+ msgid "Posts"
70
+ msgstr "Artigos"
71
+
72
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
+ msgid "Post Parent"
74
+ msgstr "Pai do artigo"
75
+
76
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
+ msgid "The hierarchy which the breadcrumb trail will show."
78
+ msgstr "A hierarquia exibida no caminho de navegação."
79
+
80
+ #: breadcrumb_navxt_admin.php:512
81
+ msgid "%s Hierarchy"
82
+ msgstr "Hierarquia de %s"
83
+
84
+ #: breadcrumb_navxt_admin.php:544
85
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
+ msgstr "As configurações de todas as taxonomias (incluindo categorias, tags e taxonomias personalizadas) encontram-se neste separador."
87
+
88
+ #: breadcrumb_navxt_admin.php:544
89
+ msgid "Taxonomies"
90
+ msgstr "Taxonomias"
91
+
92
+ #: breadcrumb_navxt_admin.php:562
93
+ msgid "Post Format Template"
94
+ msgstr "Modelo do formato de artigo"
95
+
96
+ #: breadcrumb_navxt_admin.php:562
97
+ msgid "The template for post format breadcrumbs."
98
+ msgstr "O modelo para navegação dos formatos de artigo."
99
+
100
+ #: breadcrumb_navxt_admin.php:563
101
+ msgid "Post Format Template (Unlinked)"
102
+ msgstr "Modelo de formato de artigo (sem link)"
103
+
104
+ #: breadcrumb_navxt_admin.php:563
105
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
+ msgstr "O modelo para navegação dos formatos de artigo, quando a navegação não tem link."
107
+
108
+ #: breadcrumb_navxt_admin.php:593
109
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
+ msgstr "As configurações dos arquivos por autor e data, pesquisas e páginas de erro 404 encontram-se neste separador."
111
+
112
+ #: breadcrumb_navxt_admin.php:594
113
+ msgid "Author Archives"
114
+ msgstr "Arquivos por autor"
115
+
116
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
+ msgstr "<a title=\"Ir para os arquivos da tag %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
+
120
+ #: breadcrumb_navxt_class.php:293
121
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "Artigos por: <a title=\"Ir para a primeira página de artigos por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:300
125
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "<a title=\"Ir para os arquivos da categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:304
129
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"Ir para os arquivos de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: includes/mtekk_adminkit.php:283
133
+ msgid "Your settings are for a newer version."
134
+ msgstr "As suas configurações dizem respeito a uma versão mais recente."
135
+
136
+ #: breadcrumb_navxt_widget.php:96
137
  msgid "Text to show before the trail:"
138
+ msgstr "Texto a exibir antes do caminho:"
139
 
140
+ #: breadcrumb_navxt_widget.php:103
141
  msgid "Schema.org"
142
  msgstr "Schema.org"
143
 
144
+ #: breadcrumb_navxt_admin.php:229
145
  msgid "Go to the Breadcrumb NavXT translation project."
146
  msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
147
 
148
+ #: breadcrumb_navxt_widget.php:33
149
+ msgid "Adds a breadcrumb trail to your sidebar"
150
+ msgstr "Adiciona um caminho à barra lateral"
151
 
152
+ #: breadcrumb_navxt_widget.php:92
153
  msgid "Title:"
154
  msgstr "Título:"
155
 
156
+ #: breadcrumb_navxt_widget.php:100
157
+ msgid "Output trail as:"
158
+ msgstr "Produzir rasto como:"
159
+
160
+ #: breadcrumb_navxt_widget.php:102
161
+ msgid "List"
162
+ msgstr "Lista"
163
+
164
+ #: breadcrumb_navxt_widget.php:104
165
  msgid "Plain"
166
  msgstr "Por extenso"
167
 
168
+ #: breadcrumb_navxt_widget.php:109
169
  msgid "Link the breadcrumbs"
170
  msgstr "Ligue a navegação estruturada"
171
 
172
+ #: breadcrumb_navxt_widget.php:111
173
  msgid "Reverse the order of the trail"
174
+ msgstr "Inverter a ordem do caminho"
175
 
176
+ #: breadcrumb_navxt_widget.php:113
177
  msgid "Hide the trail on the front page"
178
+ msgstr "Esconder o caminho na página principal"
179
 
180
+ #: breadcrumb_navxt_admin.php:120
181
  msgid "Insufficient privileges to proceed."
182
  msgstr "Permissões insuficientes para prosseguir."
183
 
184
+ #: breadcrumb_navxt_admin.php:222
185
  msgid "Tips for the settings are located below select options."
186
  msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
187
 
188
+ #: breadcrumb_navxt_admin.php:223
189
  msgid "Resources"
190
  msgstr "Recursos"
191
 
192
+ #: breadcrumb_navxt_admin.php:224
193
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
+ msgstr "%sTutoriais e Guias%s: Existem vários guias e tutoriais disponíveis na página do autor."
195
 
196
+ #: breadcrumb_navxt_admin.php:224
197
  msgid "Go to the Breadcrumb NavXT tag archive."
198
  msgstr "Vá para o tópico Breadcrumb NavXT"
199
 
200
+ #: breadcrumb_navxt_admin.php:225
201
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
  msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
203
 
204
+ #: breadcrumb_navxt_admin.php:225
205
  msgid "Go to the Breadcrumb NavXT online documentation"
206
  msgstr "Vá para a documentação online do Breadcrumb NavXT."
207
 
208
+ #: breadcrumb_navxt_admin.php:226
209
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
  msgstr "%sReporte um erro%s: Se julga que encontrou um erro, por favor inclua a sua versão do Wordpress assim cmo os detalhes que se devem ter em atenção para se reproduzir o erro."
211
 
212
+ #: breadcrumb_navxt_admin.php:226
213
  msgid "Go to the Breadcrumb NavXT support post for your version."
214
  msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
215
 
216
+ #: breadcrumb_navxt_admin.php:227
217
  msgid "Giving Back"
218
  msgstr "Retribuir"
219
 
220
+ #: breadcrumb_navxt_admin.php:228
221
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
  msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
223
 
224
+ #: breadcrumb_navxt_admin.php:228
225
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
  msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
227
 
228
+ #: breadcrumb_navxt_admin.php:229
229
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
  msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
231
 
232
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
+ #: breadcrumb_navxt_admin.php:326
234
  msgid "General"
235
  msgstr "Genérica"
236
 
237
+ #: breadcrumb_navxt_admin.php:237
238
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
  msgstr "Para que as configurações desta página surtam efeito, tem de incluir o widget Breadcrumb NavXT ou colocar os seguintes blocos de código no seu tema."
240
 
241
+ #: breadcrumb_navxt_admin.php:238
242
  msgid "Breadcrumb trail with separators"
243
  msgstr "Rastos de navegação estruturada com separadores"
244
 
245
+ #: breadcrumb_navxt_admin.php:244
246
  msgid "Breadcrumb trail in list form"
247
  msgstr "Rasto da navegação estruturada em forma de lista"
248
 
249
+ #: breadcrumb_navxt_admin.php:253
250
  msgid "Quick Start"
251
  msgstr "Início rápido"
252
 
253
+ #: breadcrumb_navxt_admin.php:256
254
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
  msgstr "Usando o código da secção iniciação rápida acima, o seguinte CSS pode ser usado como base para estilizar o rasto da sua navegação estruturada."
256
 
257
+ #: breadcrumb_navxt_admin.php:268
258
  msgid "Styling"
259
  msgstr "Estilos"
260
 
261
+ #: breadcrumb_navxt_admin.php:274
262
  msgid "Import/Export/Reset"
263
  msgstr "Importar/Exportar/Anular"
264
 
265
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
  msgid "Import"
267
  msgstr "Importar"
268
 
269
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
  msgid "Export"
271
  msgstr "Exportar"
272
 
273
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
  msgid "Reset"
275
  msgstr "Anular"
276
 
277
+ #: breadcrumb_navxt_admin.php:313
278
  msgid "Breadcrumb NavXT Settings"
279
  msgstr "Preferências da navegação estruturada NavXT "
280
 
281
+ #: breadcrumb_navxt_admin.php:329
282
  msgid "Breadcrumb Separator"
283
  msgstr "Separador da navegação estruturada"
284
 
285
+ #: breadcrumb_navxt_admin.php:329
286
  msgid "Placed in between each breadcrumb."
287
  msgstr "Colocado entre cada link de navegação."
288
 
289
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
 
 
 
 
290
  msgid "Home Breadcrumb"
291
  msgstr "Navegação para a página principal"
292
 
293
+ #: breadcrumb_navxt_admin.php:372
294
  msgid "Place the home breadcrumb in the trail."
295
  msgstr "Coloca a navegação da página principal no rasto"
296
 
297
+ #: breadcrumb_navxt_admin.php:377
298
  msgid "Home Title: "
299
  msgstr "Título da página inicial:"
300
 
301
+ #: breadcrumb_navxt_admin.php:385
302
  msgid "Home Template"
303
  msgstr "Modelo da página inicial:"
304
 
305
+ #: breadcrumb_navxt_admin.php:385
306
  msgid "The template for the home breadcrumb."
307
  msgstr "O modelo para a navegação da página inicial."
308
 
309
+ #: breadcrumb_navxt_admin.php:386
310
  msgid "Home Template (Unlinked)"
311
  msgstr "Modelo da página inicial (sem link)"
312
 
313
+ #: breadcrumb_navxt_admin.php:386
314
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
  msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
316
 
317
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
  msgid "Blog Breadcrumb"
319
  msgstr "Navegação estruturada do blog"
320
 
321
+ #: breadcrumb_navxt_admin.php:393
322
  msgid "Place the blog breadcrumb in the trail."
323
  msgstr "Coloque a navegação estruturada do blog no rasto."
324
 
325
+ #: breadcrumb_navxt_admin.php:394
326
  msgid "Blog Template"
327
  msgstr "Modelo de blog"
328
 
329
+ #: breadcrumb_navxt_admin.php:394
330
  msgid "The template for the blog breadcrumb, used only in static front page environments."
331
  msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
332
 
333
+ #: breadcrumb_navxt_admin.php:395
334
  msgid "Blog Template (Unlinked)"
335
  msgstr "Modelo de blog (sem link)"
336
 
337
+ #: breadcrumb_navxt_admin.php:395
338
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
  msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
340
 
341
+ #: breadcrumb_navxt_admin.php:403
342
  msgid "Main Site Breadcrumb"
343
  msgstr "Navegação do site principal"
344
 
345
+ #: breadcrumb_navxt_admin.php:408
346
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
  msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
348
 
349
+ #: breadcrumb_navxt_admin.php:413
350
  msgid "Main Site Home Title: "
351
  msgstr "Título para o site principal:"
352
 
353
+ #: breadcrumb_navxt_admin.php:422
354
  msgid "Main Site Home Template"
355
  msgstr "Modelo para o sítio principal"
356
 
357
+ #: breadcrumb_navxt_admin.php:422
358
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
  msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
360
 
361
+ #: breadcrumb_navxt_admin.php:423
362
  msgid "Main Site Home Template (Unlinked)"
363
  msgstr "Modelo da página inicial do site principal (sem link)"
364
 
365
+ #: breadcrumb_navxt_admin.php:423
366
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
  msgstr "O modelo para a navegação da página inicial do site principal, usado somente em ambiente de multi-site e quando a navegação estruturada não está ligada."
368
 
369
+ #: breadcrumb_navxt_admin.php:354
370
  msgid "Current Item"
371
  msgstr "Item actual"
372
 
373
+ #: breadcrumb_navxt_admin.php:357
374
  msgid "Link Current Item"
375
  msgstr "Link no item actual"
376
 
377
+ #: breadcrumb_navxt_admin.php:357
378
  msgid "Yes"
379
  msgstr "Sim"
380
 
381
+ #: breadcrumb_navxt_admin.php:358
382
  msgid "Paged Breadcrumb"
383
  msgstr "Navegação estruturada e paginada."
384
 
385
+ #: breadcrumb_navxt_admin.php:358
386
  msgid "Include the paged breadcrumb in the breadcrumb trail."
387
  msgstr "Inclui a navegação paginada e estruturada no rasto."
388
 
389
+ #: breadcrumb_navxt_admin.php:358
390
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
  msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
392
 
393
+ #: breadcrumb_navxt_admin.php:359
394
  msgid "Paged Template"
395
  msgstr "Modelo paginado"
396
 
397
+ #: breadcrumb_navxt_admin.php:359
398
  msgid "The template for paged breadcrumbs."
399
  msgstr "Modelo para a navegação estruturada."
400
 
401
+ #: breadcrumb_navxt_admin.php:434
 
 
 
 
402
  msgid "Post Template"
403
  msgstr "Modelo de artigo"
404
 
405
+ #: breadcrumb_navxt_admin.php:434
406
  msgid "The template for post breadcrumbs."
407
  msgstr "O modelo para a navegação de artigos."
408
 
409
+ #: breadcrumb_navxt_admin.php:435
410
  msgid "Post Template (Unlinked)"
411
  msgstr "Modelo de Artigo (sem link)"
412
 
413
+ #: breadcrumb_navxt_admin.php:435
414
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
  msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
416
 
417
+ #: breadcrumb_navxt_admin.php:436
 
 
 
 
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
420
 
421
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
 
 
 
 
422
  msgid "Categories"
423
  msgstr "Categorias"
424
 
425
+ #: breadcrumb_navxt_admin.php:445
426
  msgid "Dates"
427
  msgstr "Datas"
428
 
429
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
  msgid "Tags"
431
  msgstr "Tópicos"
432
 
433
+ #: breadcrumb_navxt_admin.php:468
434
  msgid "Pages"
435
  msgstr "Páginas"
436
 
437
+ #: breadcrumb_navxt_admin.php:471
 
 
 
 
438
  msgid "Page Template"
439
  msgstr "Modelo de página"
440
 
441
+ #: breadcrumb_navxt_admin.php:471
442
  msgid "The template for page breadcrumbs."
443
  msgstr "O modelo para página de navegação estruturada."
444
 
445
+ #: breadcrumb_navxt_admin.php:472
446
  msgid "Page Template (Unlinked)"
447
  msgstr "Modelo de página (sem link)"
448
 
449
+ #: breadcrumb_navxt_admin.php:472
450
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
  msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
452
 
453
+ #: breadcrumb_navxt_admin.php:473
454
  msgid "Attachment Template"
455
  msgstr "Modelo de anexo"
456
 
457
+ #: breadcrumb_navxt_admin.php:473
458
  msgid "The template for attachment breadcrumbs."
459
  msgstr "Modelo para anexos de navegação estruturada."
460
 
461
+ #: breadcrumb_navxt_admin.php:474
462
  msgid "Attachment Template (Unlinked)"
463
  msgstr "Modelo de anexo (sem link)"
464
 
465
+ #: breadcrumb_navxt_admin.php:474
466
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
  msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
468
 
469
+ #: breadcrumb_navxt_admin.php:661
 
 
 
470
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
  msgstr "<a title=\"Vá para %title%.\" href=\"%link%\">%htitle%</a>"
472
 
473
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
  msgid "%htitle%"
475
  msgstr "%htitle%"
476
 
477
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
  msgid "%s Template"
479
  msgstr "Modelo de %s"
480
 
481
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
  msgid "The template for %s breadcrumbs."
483
  msgstr "O modelo para navegação de %s."
484
 
485
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
  msgid "%s Template (Unlinked)"
487
  msgstr "Modelo de %s (sem link)"
488
 
489
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
  msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
492
 
493
+ #: breadcrumb_navxt_admin.php:500
494
  msgid "%s Root Page"
495
  msgstr "Página raíz de %s"
496
 
497
+ #: breadcrumb_navxt_admin.php:503
498
  msgid "&mdash; Select &mdash;"
499
  msgstr "&mdash; Escolha &mdash;"
500
 
501
+ #: breadcrumb_navxt_admin.php:507
502
  msgid "%s Archive Display"
503
  msgstr "Exibir arquivo de %s"
504
 
505
+ #: breadcrumb_navxt_admin.php:507
506
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
  msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
508
 
509
+ #: breadcrumb_navxt_admin.php:508
 
 
 
 
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
512
 
513
+ #: breadcrumb_navxt_admin.php:548
 
 
 
 
 
 
 
 
514
  msgid "Category Template"
515
  msgstr "Modelo de categoria"
516
 
517
+ #: breadcrumb_navxt_admin.php:548
518
  msgid "The template for category breadcrumbs."
519
  msgstr "O template para categoria de navegação estruturada."
520
 
521
+ #: breadcrumb_navxt_admin.php:549
522
  msgid "Category Template (Unlinked)"
523
  msgstr "Modelo de categoria (sem link)"
524
 
525
+ #: breadcrumb_navxt_admin.php:549
526
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
  msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
528
 
529
+ #: breadcrumb_navxt_admin.php:555
530
  msgid "Tag Template"
531
  msgstr "Modelo de tópico"
532
 
533
+ #: breadcrumb_navxt_admin.php:555
534
  msgid "The template for tag breadcrumbs."
535
  msgstr "O modelo para a navegação dos tópicos."
536
 
537
+ #: breadcrumb_navxt_admin.php:556
538
  msgid "Tag Template (Unlinked)"
539
  msgstr "Modelo de tópico (sem link)"
540
 
541
+ #: breadcrumb_navxt_admin.php:556
542
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
  msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
544
 
545
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
  msgid "Miscellaneous"
547
  msgstr "Diversos"
548
 
549
+ #: breadcrumb_navxt_admin.php:597
550
  msgid "Author Template"
551
  msgstr "Modelo de autor"
552
 
553
+ #: breadcrumb_navxt_admin.php:597
554
  msgid "The template for author breadcrumbs."
555
  msgstr "Modelo para o autor da navegação estruturada."
556
 
557
+ #: breadcrumb_navxt_admin.php:598
558
  msgid "Author Template (Unlinked)"
559
  msgstr "Modelo de autor (sem link)"
560
 
561
+ #: breadcrumb_navxt_admin.php:598
562
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
  msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
564
 
565
+ #: breadcrumb_navxt_admin.php:599
566
  msgid "Author Display Format"
567
  msgstr "Formato de visualização do Autor "
568
 
569
+ #: breadcrumb_navxt_admin.php:599
570
  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."
571
  msgstr "display_name usa o nome especificado em \"Display name publicly as\" sob o perfil do utilizador os outros corresponde a opções no perfil do utilizador."
572
 
573
+ #: breadcrumb_navxt_admin.php:605
574
  msgid "Date Template"
575
  msgstr "Modelo de data"
576
 
577
+ #: breadcrumb_navxt_admin.php:605
578
  msgid "The template for date breadcrumbs."
579
  msgstr "O modelo para as datas da navegação estruturada."
580
 
581
+ #: breadcrumb_navxt_admin.php:606
582
  msgid "Date Template (Unlinked)"
583
  msgstr "Modelo de data (sem link)"
584
 
585
+ #: breadcrumb_navxt_admin.php:606
586
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
  msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
588
 
589
+ #: breadcrumb_navxt_admin.php:607
590
  msgid "Search Template"
591
  msgstr "Modelo de pesquisa"
592
 
593
+ #: breadcrumb_navxt_admin.php:607
594
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
  msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
596
 
597
+ #: breadcrumb_navxt_admin.php:608
598
  msgid "Search Template (Unlinked)"
599
  msgstr "Modelo de pesquisa (sem link)"
600
 
601
+ #: breadcrumb_navxt_admin.php:608
602
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
  msgstr "A âncora para o modelo da navegação da pesquisa, usada somente quando o resultado de busca se estende por várias páginas e a navegação estruturada não tem link."
604
 
605
+ #: breadcrumb_navxt_admin.php:609
606
  msgid "404 Title"
607
  msgstr "404 Título"
608
 
609
+ #: breadcrumb_navxt_admin.php:610
610
  msgid "404 Template"
611
  msgstr "Modelo 404"
612
 
613
+ #: breadcrumb_navxt_admin.php:610
614
  msgid "The template for 404 breadcrumbs."
615
  msgstr "O modelo para 404 navegação estruturada."
616
 
617
+ #: breadcrumb_navxt_admin.php:616
618
  msgid "Save Changes"
619
+ msgstr "Gravar alterações"
620
+
621
+ #: includes/mtekk_adminkit.php:204
622
+ msgid "Settings"
623
+ msgstr "Configurações"
624
+
625
+ #: includes/mtekk_adminkit.php:274
626
+ msgid "Your settings are out of date."
627
+ msgstr "As suas configurações estão desactualizadas."
628
+
629
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
+ msgid "Migrate the settings now."
631
+ msgstr "Migre as configurações agora."
632
+
633
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
+ msgid "Migrate now."
635
+ msgstr "Migre agora."
636
+
637
+ #: includes/mtekk_adminkit.php:291
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "A instalação do seu plugin está completa."
640
+
641
+ #: includes/mtekk_adminkit.php:291
642
+ msgid "Load default settings now."
643
+ msgstr "Carregue as configurações por omissão agora."
644
+
645
+ #: includes/mtekk_adminkit.php:291
646
+ msgid "Complete now."
647
+ msgstr "Complete agora."
648
+
649
+ #: includes/mtekk_adminkit.php:299
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "As suas configurações são inválidas."
652
+
653
+ #: includes/mtekk_adminkit.php:299
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Tente corrigir agora as configurações."
656
+
657
+ #: includes/mtekk_adminkit.php:299
658
+ msgid "Fix now."
659
+ msgstr "Corrigir agora."
660
+
661
+ #: includes/mtekk_adminkit.php:477
662
+ msgid "Settings successfully saved."
663
+ msgstr "Configurações gravadas com sucesso."
664
+
665
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
+ msgid "Undo the options save."
667
+ msgstr "Desfazer as opções salvar."
668
+
669
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
+ #: includes/mtekk_adminkit.php:628
672
+ msgid "Undo"
673
+ msgstr "Desfazer"
674
+
675
+ #: includes/mtekk_adminkit.php:482
676
+ msgid "Some settings were not saved."
677
+ msgstr "Algumas configurações não forma salvas."
678
+
679
+ #: includes/mtekk_adminkit.php:483
680
+ msgid "The following settings were not saved:"
681
+ msgstr "As seguintes configurações não foram salvas:"
682
+
683
+ #: includes/mtekk_adminkit.php:488
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Por favor inclua esta mensagem no seu %sbug report%s."
686
+
687
+ #: includes/mtekk_adminkit.php:488
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Seguir para o %s artigo de suporte da sua versão."
690
+
691
+ #: includes/mtekk_adminkit.php:587
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Configurações importadas com sucesso do ficheiro carregado."
694
+
695
+ #: includes/mtekk_adminkit.php:587
696
+ msgid "Undo the options import."
697
+ msgstr "Desfazer as opções de importação."
698
+
699
+ #: includes/mtekk_adminkit.php:592
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Importando as configurações do ficheiro falhado."
702
+
703
+ #: includes/mtekk_adminkit.php:611
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Configurações anuladas com sucesso para os valores por omissão."
706
+
707
+ #: includes/mtekk_adminkit.php:611
708
+ msgid "Undo the options reset."
709
+ msgstr "Desfazer a anulação de opções."
710
+
711
+ #: includes/mtekk_adminkit.php:628
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Configurações da última operação desfeitas com sucesso"
714
+
715
+ #: includes/mtekk_adminkit.php:628
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Desfazer a última operação."
718
+
719
+ #: includes/mtekk_adminkit.php:663
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Configurações migradas com sucesso."
722
+
723
+ #: includes/mtekk_adminkit.php:670
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Configurações por omissão instaladas com sucesso."
726
+
727
+ #: includes/mtekk_adminkit.php:771
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Importe as configurações de um ficheiro XML, exporte as configurações actuais para um ficheiro XML ou anule para as configurações por omissão."
730
+
731
+ #: includes/mtekk_adminkit.php:774
732
+ msgid "Settings File"
733
+ msgstr "Ficheiro de configurações"
734
+
735
+ #: includes/mtekk_adminkit.php:777
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Seleccionne um ficheiro de configuração XML para carregar"
738
+
739
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
+ msgid "Home"
741
+ msgstr "Página inicial"
742
+
743
+ #: breadcrumb_navxt_class.php:251
744
+ msgid "Page %htitle%"
745
+ msgstr "Página %htitle%"
746
+
747
+ #: breadcrumb_navxt_class.php:275
748
+ msgid "404"
749
+ msgstr "404"
750
+
751
+ #: breadcrumb_navxt_class.php:280
752
+ msgid "Search results for &#39;%htitle%&#39;"
753
+ msgstr "Resultados da pesquisa por &#39;%htitle%&#39;"
754
+
755
+ #: breadcrumb_navxt_class.php:295
756
+ msgid "Articles by: %htitle%"
757
+ msgstr "Artigos por: %htitle%"
languages/breadcrumb-navxt-ru_RU.mo CHANGED
Binary file
languages/breadcrumb-navxt-ru_RU.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:27:59+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,513 +10,748 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
- #: breadcrumb_navxt_widget.php:93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  msgid "Text to show before the trail:"
15
  msgstr "Текст, выводимый перед путем:"
16
 
17
- #: breadcrumb_navxt_widget.php:100
18
  msgid "Schema.org"
19
  msgstr "Schema.org"
20
 
21
- #: breadcrumb_navxt_admin.php:227
22
  msgid "Go to the Breadcrumb NavXT translation project."
23
  msgstr "Перейти на сайт перевода Breadcrumb NavXT"
24
 
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr "Ваша версия PHP устарела, пожалуйста обновите ее. У вас версия %1$s, Breadcrumb NavXT требует %2$s"
28
 
29
- #: breadcrumb_navxt_widget.php:89
30
  msgid "Title:"
31
  msgstr "Заголовок:"
32
 
33
- #: breadcrumb_navxt_widget.php:101
 
 
 
 
 
 
 
 
34
  msgid "Plain"
35
  msgstr "Текст"
36
 
37
- #: breadcrumb_navxt_widget.php:106
38
  msgid "Link the breadcrumbs"
39
  msgstr "Путь в виде ссылок"
40
 
41
- #: breadcrumb_navxt_widget.php:108
42
  msgid "Reverse the order of the trail"
43
  msgstr "Обратная сортировка пути"
44
 
45
- #: breadcrumb_navxt_widget.php:110
46
  msgid "Hide the trail on the front page"
47
  msgstr "Не показывать виджет на главной"
48
 
49
- #: breadcrumb_navxt_admin.php:118
50
  msgid "Insufficient privileges to proceed."
51
  msgstr "Недостаточно прав для продолжения."
52
 
53
- #: breadcrumb_navxt_admin.php:220
54
  msgid "Tips for the settings are located below select options."
55
  msgstr "Различные подсказки по работе с плагином."
56
 
57
- #: breadcrumb_navxt_admin.php:221
58
  msgid "Resources"
59
  msgstr "Ресурсы"
60
 
61
- #: breadcrumb_navxt_admin.php:222
62
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
  msgstr "%sРуководства и FAQ'и%s: Тут вы найдете несколько руководств, туториалов и FAQ'ов по использованию плагина."
64
 
65
- #: breadcrumb_navxt_admin.php:222
66
  msgid "Go to the Breadcrumb NavXT tag archive."
67
  msgstr "Все записи с тегом 'Breadcrumb NavXT'."
68
 
69
- #: breadcrumb_navxt_admin.php:223
70
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
  msgstr "%sДокументация онлайн%s: Здесь вы найдете документацию с более подробной технической информацией."
72
 
73
- #: breadcrumb_navxt_admin.php:223
74
  msgid "Go to the Breadcrumb NavXT online documentation"
75
  msgstr "Перейти на сайт с онлайн документацией по плагину Breadcrumb NavXT."
76
 
77
- #: breadcrumb_navxt_admin.php:224
78
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
  msgstr "%sСообщить об ошибке%s: Если вы нашли ошибку в работе плагина, то сообщите о ней автору. Не забудьте указать версию WordPress и ситуацию, при которой можно воспроизвести ошибку."
80
 
81
- #: breadcrumb_navxt_admin.php:224
82
  msgid "Go to the Breadcrumb NavXT support post for your version."
83
  msgstr "Сообщить об ошибке плагина Breadcrumb NavXT вашей версии."
84
 
85
- #: breadcrumb_navxt_admin.php:225
86
  msgid "Giving Back"
87
  msgstr "Внести свой вклад"
88
 
89
- #: breadcrumb_navxt_admin.php:226
90
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
  msgstr "%sПожертвования%s: Любите плагин Breadcrumb NavXT и хотите помочь его разработке? Купите автору пиво :)"
92
 
93
- #: breadcrumb_navxt_admin.php:226
94
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
  msgstr "Перейти к сайту PayPal, чтобы сделать пожертвование автору плагина Breadcrumb NavXT."
96
 
97
- #: breadcrumb_navxt_admin.php:227
98
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
  msgstr "%sПеревод%s: Ваш язык недоступен? Свяжитесь с John Havlik, если хотите перевести плагин на свой язык."
100
 
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
 
102
  msgid "General"
103
  msgstr "Основные"
104
 
105
- #: breadcrumb_navxt_admin.php:235
106
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
  msgstr "Для использования плагина вы должны или использовать соответствующий виджет или поместить указанные примеры кода в нужный файл вашего шаблона."
108
 
109
- #: breadcrumb_navxt_admin.php:236
110
  msgid "Breadcrumb trail with separators"
111
  msgstr "Путь с разделителями"
112
 
113
- #: breadcrumb_navxt_admin.php:242
114
  msgid "Breadcrumb trail in list form"
115
  msgstr "Путь в формате list"
116
 
117
- #: breadcrumb_navxt_admin.php:251
118
  msgid "Quick Start"
119
  msgstr "Быстрый старт"
120
 
121
- #: breadcrumb_navxt_admin.php:254
122
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
  msgstr "Следующий CSS-код может быть использован для оформления стиля пути."
124
 
125
- #: breadcrumb_navxt_admin.php:266
126
  msgid "Styling"
127
  msgstr "Стиль"
128
 
129
- #: breadcrumb_navxt_admin.php:272
130
  msgid "Import/Export/Reset"
131
  msgstr "Импорт/Экспорт/Сброс"
132
 
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
  msgid "Import"
135
  msgstr "Импорт"
136
 
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
  msgid "Export"
139
  msgstr "Экспорт"
140
 
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
  msgid "Reset"
143
  msgstr "Сброс"
144
 
145
- #: breadcrumb_navxt_admin.php:311
146
  msgid "Breadcrumb NavXT Settings"
147
  msgstr "Настройки Breadcrumb NavXT"
148
 
149
- #: breadcrumb_navxt_admin.php:326
150
  msgid "Breadcrumb Separator"
151
  msgstr "Разделитель"
152
 
153
- #: breadcrumb_navxt_admin.php:326
154
  msgid "Placed in between each breadcrumb."
155
  msgstr "Устанавливается между ссылками."
156
 
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Максимальная длина заголовка ссылки"
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
  msgid "Home Breadcrumb"
163
  msgstr "Ссылка на главную"
164
 
165
- #: breadcrumb_navxt_admin.php:336
166
  msgid "Place the home breadcrumb in the trail."
167
  msgstr "Поместить ссылку на главную страницу блога в путь."
168
 
169
- #: breadcrumb_navxt_admin.php:341
170
  msgid "Home Title: "
171
  msgstr "Заголовок ссылки на главную"
172
 
173
- #: breadcrumb_navxt_admin.php:349
174
  msgid "Home Template"
175
  msgstr "Шаблон ссылки на главную"
176
 
177
- #: breadcrumb_navxt_admin.php:349
178
  msgid "The template for the home breadcrumb."
179
  msgstr "Шаблон ссылки для главной страницы блога."
180
 
181
- #: breadcrumb_navxt_admin.php:350
182
  msgid "Home Template (Unlinked)"
183
  msgstr "Шаблон ссылки на главную (некликабельная)"
184
 
185
- #: breadcrumb_navxt_admin.php:350
186
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
  msgstr "Шаблон ссылки для главной страницы блога (когда ссылка на главную некликабельна)."
188
 
189
- #: breadcrumb_navxt_admin.php:351
190
  msgid "Blog Breadcrumb"
191
  msgstr "Ссылка на блог"
192
 
193
- #: breadcrumb_navxt_admin.php:351
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Поместить ссылку на блог в путь."
196
 
197
- #: breadcrumb_navxt_admin.php:352
198
  msgid "Blog Template"
199
  msgstr "Шаблон ссылки на блог"
200
 
201
- #: breadcrumb_navxt_admin.php:352
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "Шаблон ссылки на блог (используется только при статической главной странице)."
204
 
205
- #: breadcrumb_navxt_admin.php:353
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Шаблон ссылки на блог (некликабельная)"
208
 
209
- #: breadcrumb_navxt_admin.php:353
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "Шаблон ссылки на блог (используется только при статической главной странице и только, когда ссылка на блог некликабельна)."
212
 
213
- #: breadcrumb_navxt_admin.php:357
214
  msgid "Main Site Breadcrumb"
215
  msgstr "Ссылка на главный сайт"
216
 
217
- #: breadcrumb_navxt_admin.php:362
218
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
  msgstr "Поместить ссылку на главный сайт в путь (при включенном режиме мультисайта)."
220
 
221
- #: breadcrumb_navxt_admin.php:367
222
  msgid "Main Site Home Title: "
223
  msgstr "Заголовок ссылки на главный сайт:"
224
 
225
- #: breadcrumb_navxt_admin.php:376
226
  msgid "Main Site Home Template"
227
  msgstr "Шаблон ссылки на главный сайт"
228
 
229
- #: breadcrumb_navxt_admin.php:376
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта)."
232
 
233
- #: breadcrumb_navxt_admin.php:377
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Шаблон ссылки на главный сайт (некликабельная)."
236
 
237
- #: breadcrumb_navxt_admin.php:377
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта и только, когда ссылка на главный сайт некликабельна)."
240
 
241
- #: breadcrumb_navxt_admin.php:382
242
  msgid "Current Item"
243
  msgstr "Текущая позиция"
244
 
245
- #: breadcrumb_navxt_admin.php:385
246
  msgid "Link Current Item"
247
  msgstr "Показывать текущую позицию в виде ссылки"
248
 
249
- #: breadcrumb_navxt_admin.php:385
250
  msgid "Yes"
251
  msgstr "Да"
252
 
253
- #: breadcrumb_navxt_admin.php:386
254
  msgid "Paged Breadcrumb"
255
  msgstr "Постраничная навигация"
256
 
257
- #: breadcrumb_navxt_admin.php:386
258
  msgid "Include the paged breadcrumb in the breadcrumb trail."
259
  msgstr "Включить поддержку постраничной навигации."
260
 
261
- #: breadcrumb_navxt_admin.php:386
262
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
  msgstr "В текущей позиции будет указан номер страницы, если посетитель находится на странице, образованной постраничной навигацией."
264
 
265
- #: breadcrumb_navxt_admin.php:387
266
  msgid "Paged Template"
267
  msgstr "Шаблон"
268
 
269
- #: breadcrumb_navxt_admin.php:387
270
  msgid "The template for paged breadcrumbs."
271
  msgstr "Шаблон для страниц с постраничной навигацией."
272
 
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Записи &amp; Страницы"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
  msgid "Post Template"
279
  msgstr "Шаблон ссылки на запись"
280
 
281
- #: breadcrumb_navxt_admin.php:395
282
  msgid "The template for post breadcrumbs."
283
  msgstr "Шаблон ссылки на запись."
284
 
285
- #: breadcrumb_navxt_admin.php:396
286
  msgid "Post Template (Unlinked)"
287
  msgstr "Шаблон ссылки на запись (некликабельная)"
288
 
289
- #: breadcrumb_navxt_admin.php:396
290
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
  msgstr "Шаблон ссылки на запись (когда ссылка на запись некликабельна)."
292
 
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Пути"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
  msgstr "Показывать в пути все возможные варианты доступа к текущей позиции."
300
 
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Вариант пути"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
  msgid "Categories"
307
  msgstr "Рубрики"
308
 
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
  msgid "Dates"
311
  msgstr "Даты"
312
 
313
- #: breadcrumb_navxt_admin.php:407
314
  msgid "Tags"
315
  msgstr "Метки"
316
 
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
  msgid "Pages"
319
  msgstr "Страницы"
320
 
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "Будет использован в пути указанный вариант пути к текущей записи."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
  msgid "Page Template"
327
  msgstr "Шаблон ссылки на страницу"
328
 
329
- #: breadcrumb_navxt_admin.php:423
330
  msgid "The template for page breadcrumbs."
331
  msgstr "Шаблон ссылки на страницу."
332
 
333
- #: breadcrumb_navxt_admin.php:424
334
  msgid "Page Template (Unlinked)"
335
  msgstr "Шаблон ссылки на страницу (некликабельная)"
336
 
337
- #: breadcrumb_navxt_admin.php:424
338
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
  msgstr "Шаблон ссылки на страницу (когда ссылка на страницу некликабельна)."
340
 
341
- #: breadcrumb_navxt_admin.php:425
342
  msgid "Attachment Template"
343
  msgstr "Шаблон ссылки на вложение"
344
 
345
- #: breadcrumb_navxt_admin.php:425
346
  msgid "The template for attachment breadcrumbs."
347
  msgstr "Шаблон ссылки на вложение."
348
 
349
- #: breadcrumb_navxt_admin.php:426
350
  msgid "Attachment Template (Unlinked)"
351
  msgstr "Шаблон ссылки на вложение (некликабельная)"
352
 
353
- #: breadcrumb_navxt_admin.php:426
354
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
  msgstr "Шаблон ссылки на вложение (когда ссылка на вложение некликабельна)."
356
 
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
  msgstr "<a title=\"Перейти к %title%.\" href=\"%link%\">%htitle%</a>"
363
 
364
- #: breadcrumb_navxt_admin.php:567
365
  msgid "%htitle%"
366
  msgstr "%htitle%"
367
 
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
  msgid "%s Template"
370
  msgstr "%s Шаблон"
371
 
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
  msgid "The template for %s breadcrumbs."
374
  msgstr "Шаблон для %s пути."
375
 
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
  msgid "%s Template (Unlinked)"
378
  msgstr "%s Шаблон (некликабельная)"
379
 
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
  msgstr "Шаблон для %s пути (когда %s путь некликабелен)."
383
 
384
- #: breadcrumb_navxt_admin.php:448
385
  msgid "%s Root Page"
386
  msgstr "%s Главная страница"
387
 
388
- #: breadcrumb_navxt_admin.php:451
389
  msgid "&mdash; Select &mdash;"
390
  msgstr "&mdash; Выбор &mdash;"
391
 
392
- #: breadcrumb_navxt_admin.php:455
393
  msgid "%s Archive Display"
394
  msgstr "%s Архив"
395
 
396
- #: breadcrumb_navxt_admin.php:455
397
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
  msgstr "Показывать путь для %s архивов типов записей."
399
 
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "%s Таксономия"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
  msgstr "Показывать путь для %s таксономий."
407
 
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "%s Таксономия"
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Рубрики &amp; Метки"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
  msgid "Category Template"
418
  msgstr "Шаблон ссылки на рубрику"
419
 
420
- #: breadcrumb_navxt_admin.php:488
421
  msgid "The template for category breadcrumbs."
422
  msgstr "Шаблон ссылки на рубрику."
423
 
424
- #: breadcrumb_navxt_admin.php:489
425
  msgid "Category Template (Unlinked)"
426
  msgstr "Шаблон ссылки на рубрику (некликабельная)"
427
 
428
- #: breadcrumb_navxt_admin.php:489
429
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
  msgstr "Шаблон ссылки на рубрику (когда ссылка на рубрику некликабельна)."
431
 
432
- #: breadcrumb_navxt_admin.php:490
433
  msgid "Tag Template"
434
  msgstr "Шаблон ссылки на метку"
435
 
436
- #: breadcrumb_navxt_admin.php:490
437
  msgid "The template for tag breadcrumbs."
438
  msgstr "Шаблон ссылки на метку."
439
 
440
- #: breadcrumb_navxt_admin.php:491
441
  msgid "Tag Template (Unlinked)"
442
  msgstr "Шаблон ссылки на метку (некликабельная)"
443
 
444
- #: breadcrumb_navxt_admin.php:491
445
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr "Шаблон ссылки на метку (когда ссылка на метку некликабельна)."
447
 
448
- #: breadcrumb_navxt_admin.php:517
449
  msgid "Miscellaneous"
450
  msgstr "Другое"
451
 
452
- #: breadcrumb_navxt_admin.php:520
453
  msgid "Author Template"
454
  msgstr "Шаблон ссылки на автора"
455
 
456
- #: breadcrumb_navxt_admin.php:520
457
  msgid "The template for author breadcrumbs."
458
  msgstr "Шаблон ссылки на автора."
459
 
460
- #: breadcrumb_navxt_admin.php:521
461
  msgid "Author Template (Unlinked)"
462
  msgstr "Шаблон ссылки на автора (некликабельная)"
463
 
464
- #: breadcrumb_navxt_admin.php:521
465
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
  msgstr "Шаблон ссылки на автора (когда ссылка на автора некликабельна)."
467
 
468
- #: breadcrumb_navxt_admin.php:522
469
  msgid "Author Display Format"
470
  msgstr "Формат имени автора"
471
 
472
- #: breadcrumb_navxt_admin.php:522
473
  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."
474
  msgstr "display_name отображает имя автора так, как указано у него в профиле в опции \"Отображать как\"."
475
 
476
- #: breadcrumb_navxt_admin.php:523
477
  msgid "Date Template"
478
  msgstr "Шаблон ссылки на архив по дате"
479
 
480
- #: breadcrumb_navxt_admin.php:523
481
  msgid "The template for date breadcrumbs."
482
  msgstr "Шаблон ссылки на архив по дате."
483
 
484
- #: breadcrumb_navxt_admin.php:524
485
  msgid "Date Template (Unlinked)"
486
  msgstr "Шаблон ссылки на архив по дате (некликабельная)"
487
 
488
- #: breadcrumb_navxt_admin.php:524
489
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
  msgstr "Шаблон ссылки на архив по дате (когда ссылка на архив по дате некликабельна)."
491
 
492
- #: breadcrumb_navxt_admin.php:525
493
  msgid "Search Template"
494
  msgstr "Шаблон ссылки на страницу с результатами поиска"
495
 
496
- #: breadcrumb_navxt_admin.php:525
497
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
  msgstr "Шаблон ссылки на страницу с результатами поиска (используется только, когда страница с результатами поиска разделена постраничной навигацией)."
499
 
500
- #: breadcrumb_navxt_admin.php:526
501
  msgid "Search Template (Unlinked)"
502
  msgstr "Шаблон ссылки на страницу с результатами поиска (некликабельная)"
503
 
504
- #: breadcrumb_navxt_admin.php:526
505
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
  msgstr "Шаблон ссылки на страницу с результатами поиска (когда страница с результатами поиска разделена постраничной навигацией и когда ссылка на страницу с результатами поиска некликабельна)."
507
 
508
- #: breadcrumb_navxt_admin.php:527
509
  msgid "404 Title"
510
  msgstr "Страница 404 (не найдено)"
511
 
512
- #: breadcrumb_navxt_admin.php:528
513
  msgid "404 Template"
514
  msgstr "Шаблон текста для 404 страницы"
515
 
516
- #: breadcrumb_navxt_admin.php:528
517
  msgid "The template for 404 breadcrumbs."
518
  msgstr "Шаблон текста в пути для 404 страницы."
519
 
520
- #: breadcrumb_navxt_admin.php:533
521
  msgid "Save Changes"
522
- msgstr "Сохранить изменения"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2012-09-28 21:54:53+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
+ #: breadcrumb_navxt_class.php:268
17
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
+ msgstr "<a title=\"Перейти к %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
19
+
20
+ #: breadcrumb_navxt_class.php:278
21
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
+ msgstr "Результаты поиска для запроса: &#39;<a title=\"Перейти на первую страницу с результатами поиска %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
+
24
+ #: breadcrumb_navxt_admin.php:325
25
+ msgid "A collection of settings most likely to be modified are located under this tab."
26
+ msgstr "Основные настройки."
27
+
28
+ #: breadcrumb_navxt_admin.php:333
29
+ msgid "Title Length"
30
+ msgstr "Длина заголовка"
31
+
32
+ #: breadcrumb_navxt_admin.php:338
33
+ msgid "Limit the length of the breadcrumb title."
34
+ msgstr "Ограничить длину заголовка"
35
+
36
+ #: breadcrumb_navxt_admin.php:399
37
+ msgid "Mainsite Breadcrumb"
38
+ msgstr "Ссылка на главный сайт"
39
+
40
+ #: breadcrumb_navxt_admin.php:430
41
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
+ msgstr "Настройки для всех типов записей (записи, страницы, записи произвольного типа)."
43
+
44
+ #: breadcrumb_navxt_admin.php:430
45
+ msgid "Post Types"
46
+ msgstr "Записи и страницы"
47
+
48
+ #: breadcrumb_navxt_admin.php:436
49
+ msgid "Post Hierarchy Display"
50
+ msgstr "Вывод иерархии"
51
+
52
+ #: breadcrumb_navxt_admin.php:440
53
+ msgid "Post Hierarchy"
54
+ msgstr "Иерархия записи"
55
+
56
+ #: breadcrumb_navxt_admin.php:508
57
+ msgid "%s Hierarchy Display"
58
+ msgstr "%s вывод иерархии"
59
+
60
+ #: breadcrumb_navxt_admin.php:559
61
+ msgid "Post Formats"
62
+ msgstr "Форматы записей"
63
+
64
+ #: breadcrumb_navxt_admin.php:343
65
+ msgid "Max Title Length: "
66
+ msgstr "Максимальная длина:"
67
+
68
+ #: breadcrumb_navxt_admin.php:431
69
+ msgid "Posts"
70
+ msgstr "Записи"
71
+
72
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
+ msgid "Post Parent"
74
+ msgstr "Под-страницы"
75
+
76
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
+ msgid "The hierarchy which the breadcrumb trail will show."
78
+ msgstr "Путь будет строиться по выбранной иерархии."
79
+
80
+ #: breadcrumb_navxt_admin.php:512
81
+ msgid "%s Hierarchy"
82
+ msgstr "%s иерархия"
83
+
84
+ #: breadcrumb_navxt_admin.php:544
85
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
+ msgstr "Настройки таксономий (рубрики, метки и произвольные таксономии)."
87
+
88
+ #: breadcrumb_navxt_admin.php:544
89
+ msgid "Taxonomies"
90
+ msgstr "Таксономии"
91
+
92
+ #: breadcrumb_navxt_admin.php:562
93
+ msgid "Post Format Template"
94
+ msgstr "Форматы записей"
95
+
96
+ #: breadcrumb_navxt_admin.php:562
97
+ msgid "The template for post format breadcrumbs."
98
+ msgstr "Шаблон ссылки на свой формат записей"
99
+
100
+ #: breadcrumb_navxt_admin.php:563
101
+ msgid "Post Format Template (Unlinked)"
102
+ msgstr "Шаблон ссылки на свой формат записей (некликабельная)"
103
+
104
+ #: breadcrumb_navxt_admin.php:563
105
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
+ msgstr "Шаблон ссылки на свой формат записей (когда ссылка на свой формат записей некликабельна)."
107
+
108
+ #: breadcrumb_navxt_admin.php:593
109
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
+ msgstr "Настройки архивов по автору, дате, поиску и 404 ошибки."
111
+
112
+ #: breadcrumb_navxt_admin.php:594
113
+ msgid "Author Archives"
114
+ msgstr "Архивы по автору"
115
+
116
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
+ msgstr "<a title=\"Перейти к архиву по метке %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
+
120
+ #: breadcrumb_navxt_class.php:293
121
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "Статьи от: <a title=\"Перейти на первую страницу с записями %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:300
125
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "<a title=\"Перейти к архиву рубрики %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:304
129
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"Перейти к архиву %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: includes/mtekk_adminkit.php:283
133
+ msgid "Your settings are for a newer version."
134
+ msgstr "Ваши настройки для новой версии."
135
+
136
+ #: breadcrumb_navxt_widget.php:96
137
  msgid "Text to show before the trail:"
138
  msgstr "Текст, выводимый перед путем:"
139
 
140
+ #: breadcrumb_navxt_widget.php:103
141
  msgid "Schema.org"
142
  msgstr "Schema.org"
143
 
144
+ #: breadcrumb_navxt_admin.php:229
145
  msgid "Go to the Breadcrumb NavXT translation project."
146
  msgstr "Перейти на сайт перевода Breadcrumb NavXT"
147
 
148
+ #: breadcrumb_navxt_widget.php:33
149
+ msgid "Adds a breadcrumb trail to your sidebar"
150
+ msgstr "\"Хлебные крошки\" в вашем сайдбаре."
151
 
152
+ #: breadcrumb_navxt_widget.php:92
153
  msgid "Title:"
154
  msgstr "Заголовок:"
155
 
156
+ #: breadcrumb_navxt_widget.php:100
157
+ msgid "Output trail as:"
158
+ msgstr "Выводить путь как:"
159
+
160
+ #: breadcrumb_navxt_widget.php:102
161
+ msgid "List"
162
+ msgstr "Список"
163
+
164
+ #: breadcrumb_navxt_widget.php:104
165
  msgid "Plain"
166
  msgstr "Текст"
167
 
168
+ #: breadcrumb_navxt_widget.php:109
169
  msgid "Link the breadcrumbs"
170
  msgstr "Путь в виде ссылок"
171
 
172
+ #: breadcrumb_navxt_widget.php:111
173
  msgid "Reverse the order of the trail"
174
  msgstr "Обратная сортировка пути"
175
 
176
+ #: breadcrumb_navxt_widget.php:113
177
  msgid "Hide the trail on the front page"
178
  msgstr "Не показывать виджет на главной"
179
 
180
+ #: breadcrumb_navxt_admin.php:120
181
  msgid "Insufficient privileges to proceed."
182
  msgstr "Недостаточно прав для продолжения."
183
 
184
+ #: breadcrumb_navxt_admin.php:222
185
  msgid "Tips for the settings are located below select options."
186
  msgstr "Различные подсказки по работе с плагином."
187
 
188
+ #: breadcrumb_navxt_admin.php:223
189
  msgid "Resources"
190
  msgstr "Ресурсы"
191
 
192
+ #: breadcrumb_navxt_admin.php:224
193
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
  msgstr "%sРуководства и FAQ'и%s: Тут вы найдете несколько руководств, туториалов и FAQ'ов по использованию плагина."
195
 
196
+ #: breadcrumb_navxt_admin.php:224
197
  msgid "Go to the Breadcrumb NavXT tag archive."
198
  msgstr "Все записи с тегом 'Breadcrumb NavXT'."
199
 
200
+ #: breadcrumb_navxt_admin.php:225
201
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
  msgstr "%sДокументация онлайн%s: Здесь вы найдете документацию с более подробной технической информацией."
203
 
204
+ #: breadcrumb_navxt_admin.php:225
205
  msgid "Go to the Breadcrumb NavXT online documentation"
206
  msgstr "Перейти на сайт с онлайн документацией по плагину Breadcrumb NavXT."
207
 
208
+ #: breadcrumb_navxt_admin.php:226
209
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
  msgstr "%sСообщить об ошибке%s: Если вы нашли ошибку в работе плагина, то сообщите о ней автору. Не забудьте указать версию WordPress и ситуацию, при которой можно воспроизвести ошибку."
211
 
212
+ #: breadcrumb_navxt_admin.php:226
213
  msgid "Go to the Breadcrumb NavXT support post for your version."
214
  msgstr "Сообщить об ошибке плагина Breadcrumb NavXT вашей версии."
215
 
216
+ #: breadcrumb_navxt_admin.php:227
217
  msgid "Giving Back"
218
  msgstr "Внести свой вклад"
219
 
220
+ #: breadcrumb_navxt_admin.php:228
221
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
  msgstr "%sПожертвования%s: Любите плагин Breadcrumb NavXT и хотите помочь его разработке? Купите автору пиво :)"
223
 
224
+ #: breadcrumb_navxt_admin.php:228
225
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
  msgstr "Перейти к сайту PayPal, чтобы сделать пожертвование автору плагина Breadcrumb NavXT."
227
 
228
+ #: breadcrumb_navxt_admin.php:229
229
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
  msgstr "%sПеревод%s: Ваш язык недоступен? Свяжитесь с John Havlik, если хотите перевести плагин на свой язык."
231
 
232
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
+ #: breadcrumb_navxt_admin.php:326
234
  msgid "General"
235
  msgstr "Основные"
236
 
237
+ #: breadcrumb_navxt_admin.php:237
238
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
  msgstr "Для использования плагина вы должны или использовать соответствующий виджет или поместить указанные примеры кода в нужный файл вашего шаблона."
240
 
241
+ #: breadcrumb_navxt_admin.php:238
242
  msgid "Breadcrumb trail with separators"
243
  msgstr "Путь с разделителями"
244
 
245
+ #: breadcrumb_navxt_admin.php:244
246
  msgid "Breadcrumb trail in list form"
247
  msgstr "Путь в формате list"
248
 
249
+ #: breadcrumb_navxt_admin.php:253
250
  msgid "Quick Start"
251
  msgstr "Быстрый старт"
252
 
253
+ #: breadcrumb_navxt_admin.php:256
254
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
  msgstr "Следующий CSS-код может быть использован для оформления стиля пути."
256
 
257
+ #: breadcrumb_navxt_admin.php:268
258
  msgid "Styling"
259
  msgstr "Стиль"
260
 
261
+ #: breadcrumb_navxt_admin.php:274
262
  msgid "Import/Export/Reset"
263
  msgstr "Импорт/Экспорт/Сброс"
264
 
265
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
  msgid "Import"
267
  msgstr "Импорт"
268
 
269
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
  msgid "Export"
271
  msgstr "Экспорт"
272
 
273
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
  msgid "Reset"
275
  msgstr "Сброс"
276
 
277
+ #: breadcrumb_navxt_admin.php:313
278
  msgid "Breadcrumb NavXT Settings"
279
  msgstr "Настройки Breadcrumb NavXT"
280
 
281
+ #: breadcrumb_navxt_admin.php:329
282
  msgid "Breadcrumb Separator"
283
  msgstr "Разделитель"
284
 
285
+ #: breadcrumb_navxt_admin.php:329
286
  msgid "Placed in between each breadcrumb."
287
  msgstr "Устанавливается между ссылками."
288
 
289
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
 
 
 
 
290
  msgid "Home Breadcrumb"
291
  msgstr "Ссылка на главную"
292
 
293
+ #: breadcrumb_navxt_admin.php:372
294
  msgid "Place the home breadcrumb in the trail."
295
  msgstr "Поместить ссылку на главную страницу блога в путь."
296
 
297
+ #: breadcrumb_navxt_admin.php:377
298
  msgid "Home Title: "
299
  msgstr "Заголовок ссылки на главную"
300
 
301
+ #: breadcrumb_navxt_admin.php:385
302
  msgid "Home Template"
303
  msgstr "Шаблон ссылки на главную"
304
 
305
+ #: breadcrumb_navxt_admin.php:385
306
  msgid "The template for the home breadcrumb."
307
  msgstr "Шаблон ссылки для главной страницы блога."
308
 
309
+ #: breadcrumb_navxt_admin.php:386
310
  msgid "Home Template (Unlinked)"
311
  msgstr "Шаблон ссылки на главную (некликабельная)"
312
 
313
+ #: breadcrumb_navxt_admin.php:386
314
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
  msgstr "Шаблон ссылки для главной страницы блога (когда ссылка на главную некликабельна)."
316
 
317
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
  msgid "Blog Breadcrumb"
319
  msgstr "Ссылка на блог"
320
 
321
+ #: breadcrumb_navxt_admin.php:393
322
  msgid "Place the blog breadcrumb in the trail."
323
  msgstr "Поместить ссылку на блог в путь."
324
 
325
+ #: breadcrumb_navxt_admin.php:394
326
  msgid "Blog Template"
327
  msgstr "Шаблон ссылки на блог"
328
 
329
+ #: breadcrumb_navxt_admin.php:394
330
  msgid "The template for the blog breadcrumb, used only in static front page environments."
331
  msgstr "Шаблон ссылки на блог (используется только при статической главной странице)."
332
 
333
+ #: breadcrumb_navxt_admin.php:395
334
  msgid "Blog Template (Unlinked)"
335
  msgstr "Шаблон ссылки на блог (некликабельная)"
336
 
337
+ #: breadcrumb_navxt_admin.php:395
338
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
  msgstr "Шаблон ссылки на блог (используется только при статической главной странице и только, когда ссылка на блог некликабельна)."
340
 
341
+ #: breadcrumb_navxt_admin.php:403
342
  msgid "Main Site Breadcrumb"
343
  msgstr "Ссылка на главный сайт"
344
 
345
+ #: breadcrumb_navxt_admin.php:408
346
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
  msgstr "Поместить ссылку на главный сайт в путь (при включенном режиме мультисайта)."
348
 
349
+ #: breadcrumb_navxt_admin.php:413
350
  msgid "Main Site Home Title: "
351
  msgstr "Заголовок ссылки на главный сайт:"
352
 
353
+ #: breadcrumb_navxt_admin.php:422
354
  msgid "Main Site Home Template"
355
  msgstr "Шаблон ссылки на главный сайт"
356
 
357
+ #: breadcrumb_navxt_admin.php:422
358
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
  msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта)."
360
 
361
+ #: breadcrumb_navxt_admin.php:423
362
  msgid "Main Site Home Template (Unlinked)"
363
  msgstr "Шаблон ссылки на главный сайт (некликабельная)."
364
 
365
+ #: breadcrumb_navxt_admin.php:423
366
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
  msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта и только, когда ссылка на главный сайт некликабельна)."
368
 
369
+ #: breadcrumb_navxt_admin.php:354
370
  msgid "Current Item"
371
  msgstr "Текущая позиция"
372
 
373
+ #: breadcrumb_navxt_admin.php:357
374
  msgid "Link Current Item"
375
  msgstr "Показывать текущую позицию в виде ссылки"
376
 
377
+ #: breadcrumb_navxt_admin.php:357
378
  msgid "Yes"
379
  msgstr "Да"
380
 
381
+ #: breadcrumb_navxt_admin.php:358
382
  msgid "Paged Breadcrumb"
383
  msgstr "Постраничная навигация"
384
 
385
+ #: breadcrumb_navxt_admin.php:358
386
  msgid "Include the paged breadcrumb in the breadcrumb trail."
387
  msgstr "Включить поддержку постраничной навигации."
388
 
389
+ #: breadcrumb_navxt_admin.php:358
390
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
  msgstr "В текущей позиции будет указан номер страницы, если посетитель находится на странице, образованной постраничной навигацией."
392
 
393
+ #: breadcrumb_navxt_admin.php:359
394
  msgid "Paged Template"
395
  msgstr "Шаблон"
396
 
397
+ #: breadcrumb_navxt_admin.php:359
398
  msgid "The template for paged breadcrumbs."
399
  msgstr "Шаблон для страниц с постраничной навигацией."
400
 
401
+ #: breadcrumb_navxt_admin.php:434
 
 
 
 
402
  msgid "Post Template"
403
  msgstr "Шаблон ссылки на запись"
404
 
405
+ #: breadcrumb_navxt_admin.php:434
406
  msgid "The template for post breadcrumbs."
407
  msgstr "Шаблон ссылки на запись."
408
 
409
+ #: breadcrumb_navxt_admin.php:435
410
  msgid "Post Template (Unlinked)"
411
  msgstr "Шаблон ссылки на запись (некликабельная)"
412
 
413
+ #: breadcrumb_navxt_admin.php:435
414
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
  msgstr "Шаблон ссылки на запись (когда ссылка на запись некликабельна)."
416
 
417
+ #: breadcrumb_navxt_admin.php:436
 
 
 
 
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr "Показывать в пути все возможные варианты доступа к текущей позиции."
420
 
421
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
 
 
 
 
422
  msgid "Categories"
423
  msgstr "Рубрики"
424
 
425
+ #: breadcrumb_navxt_admin.php:445
426
  msgid "Dates"
427
  msgstr "Даты"
428
 
429
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
  msgid "Tags"
431
  msgstr "Метки"
432
 
433
+ #: breadcrumb_navxt_admin.php:468
434
  msgid "Pages"
435
  msgstr "Страницы"
436
 
437
+ #: breadcrumb_navxt_admin.php:471
 
 
 
 
438
  msgid "Page Template"
439
  msgstr "Шаблон ссылки на страницу"
440
 
441
+ #: breadcrumb_navxt_admin.php:471
442
  msgid "The template for page breadcrumbs."
443
  msgstr "Шаблон ссылки на страницу."
444
 
445
+ #: breadcrumb_navxt_admin.php:472
446
  msgid "Page Template (Unlinked)"
447
  msgstr "Шаблон ссылки на страницу (некликабельная)"
448
 
449
+ #: breadcrumb_navxt_admin.php:472
450
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
  msgstr "Шаблон ссылки на страницу (когда ссылка на страницу некликабельна)."
452
 
453
+ #: breadcrumb_navxt_admin.php:473
454
  msgid "Attachment Template"
455
  msgstr "Шаблон ссылки на вложение"
456
 
457
+ #: breadcrumb_navxt_admin.php:473
458
  msgid "The template for attachment breadcrumbs."
459
  msgstr "Шаблон ссылки на вложение."
460
 
461
+ #: breadcrumb_navxt_admin.php:474
462
  msgid "Attachment Template (Unlinked)"
463
  msgstr "Шаблон ссылки на вложение (некликабельная)"
464
 
465
+ #: breadcrumb_navxt_admin.php:474
466
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
  msgstr "Шаблон ссылки на вложение (когда ссылка на вложение некликабельна)."
468
 
469
+ #: breadcrumb_navxt_admin.php:661
 
 
 
470
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
  msgstr "<a title=\"Перейти к %title%.\" href=\"%link%\">%htitle%</a>"
472
 
473
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
  msgid "%htitle%"
475
  msgstr "%htitle%"
476
 
477
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
  msgid "%s Template"
479
  msgstr "%s Шаблон"
480
 
481
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
  msgid "The template for %s breadcrumbs."
483
  msgstr "Шаблон для %s пути."
484
 
485
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
  msgid "%s Template (Unlinked)"
487
  msgstr "%s Шаблон (некликабельная)"
488
 
489
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
  msgstr "Шаблон для %s пути (когда %s путь некликабелен)."
492
 
493
+ #: breadcrumb_navxt_admin.php:500
494
  msgid "%s Root Page"
495
  msgstr "%s Главная страница"
496
 
497
+ #: breadcrumb_navxt_admin.php:503
498
  msgid "&mdash; Select &mdash;"
499
  msgstr "&mdash; Выбор &mdash;"
500
 
501
+ #: breadcrumb_navxt_admin.php:507
502
  msgid "%s Archive Display"
503
  msgstr "%s Архив"
504
 
505
+ #: breadcrumb_navxt_admin.php:507
506
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
  msgstr "Показывать путь для %s архивов типов записей."
508
 
509
+ #: breadcrumb_navxt_admin.php:508
 
 
 
 
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Показывать путь для %s таксономий."
512
 
513
+ #: breadcrumb_navxt_admin.php:548
 
 
 
 
 
 
 
 
514
  msgid "Category Template"
515
  msgstr "Шаблон ссылки на рубрику"
516
 
517
+ #: breadcrumb_navxt_admin.php:548
518
  msgid "The template for category breadcrumbs."
519
  msgstr "Шаблон ссылки на рубрику."
520
 
521
+ #: breadcrumb_navxt_admin.php:549
522
  msgid "Category Template (Unlinked)"
523
  msgstr "Шаблон ссылки на рубрику (некликабельная)"
524
 
525
+ #: breadcrumb_navxt_admin.php:549
526
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
  msgstr "Шаблон ссылки на рубрику (когда ссылка на рубрику некликабельна)."
528
 
529
+ #: breadcrumb_navxt_admin.php:555
530
  msgid "Tag Template"
531
  msgstr "Шаблон ссылки на метку"
532
 
533
+ #: breadcrumb_navxt_admin.php:555
534
  msgid "The template for tag breadcrumbs."
535
  msgstr "Шаблон ссылки на метку."
536
 
537
+ #: breadcrumb_navxt_admin.php:556
538
  msgid "Tag Template (Unlinked)"
539
  msgstr "Шаблон ссылки на метку (некликабельная)"
540
 
541
+ #: breadcrumb_navxt_admin.php:556
542
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
  msgstr "Шаблон ссылки на метку (когда ссылка на метку некликабельна)."
544
 
545
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
  msgid "Miscellaneous"
547
  msgstr "Другое"
548
 
549
+ #: breadcrumb_navxt_admin.php:597
550
  msgid "Author Template"
551
  msgstr "Шаблон ссылки на автора"
552
 
553
+ #: breadcrumb_navxt_admin.php:597
554
  msgid "The template for author breadcrumbs."
555
  msgstr "Шаблон ссылки на автора."
556
 
557
+ #: breadcrumb_navxt_admin.php:598
558
  msgid "Author Template (Unlinked)"
559
  msgstr "Шаблон ссылки на автора (некликабельная)"
560
 
561
+ #: breadcrumb_navxt_admin.php:598
562
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
  msgstr "Шаблон ссылки на автора (когда ссылка на автора некликабельна)."
564
 
565
+ #: breadcrumb_navxt_admin.php:599
566
  msgid "Author Display Format"
567
  msgstr "Формат имени автора"
568
 
569
+ #: breadcrumb_navxt_admin.php:599
570
  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."
571
  msgstr "display_name отображает имя автора так, как указано у него в профиле в опции \"Отображать как\"."
572
 
573
+ #: breadcrumb_navxt_admin.php:605
574
  msgid "Date Template"
575
  msgstr "Шаблон ссылки на архив по дате"
576
 
577
+ #: breadcrumb_navxt_admin.php:605
578
  msgid "The template for date breadcrumbs."
579
  msgstr "Шаблон ссылки на архив по дате."
580
 
581
+ #: breadcrumb_navxt_admin.php:606
582
  msgid "Date Template (Unlinked)"
583
  msgstr "Шаблон ссылки на архив по дате (некликабельная)"
584
 
585
+ #: breadcrumb_navxt_admin.php:606
586
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
  msgstr "Шаблон ссылки на архив по дате (когда ссылка на архив по дате некликабельна)."
588
 
589
+ #: breadcrumb_navxt_admin.php:607
590
  msgid "Search Template"
591
  msgstr "Шаблон ссылки на страницу с результатами поиска"
592
 
593
+ #: breadcrumb_navxt_admin.php:607
594
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
  msgstr "Шаблон ссылки на страницу с результатами поиска (используется только, когда страница с результатами поиска разделена постраничной навигацией)."
596
 
597
+ #: breadcrumb_navxt_admin.php:608
598
  msgid "Search Template (Unlinked)"
599
  msgstr "Шаблон ссылки на страницу с результатами поиска (некликабельная)"
600
 
601
+ #: breadcrumb_navxt_admin.php:608
602
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
  msgstr "Шаблон ссылки на страницу с результатами поиска (когда страница с результатами поиска разделена постраничной навигацией и когда ссылка на страницу с результатами поиска некликабельна)."
604
 
605
+ #: breadcrumb_navxt_admin.php:609
606
  msgid "404 Title"
607
  msgstr "Страница 404 (не найдено)"
608
 
609
+ #: breadcrumb_navxt_admin.php:610
610
  msgid "404 Template"
611
  msgstr "Шаблон текста для 404 страницы"
612
 
613
+ #: breadcrumb_navxt_admin.php:610
614
  msgid "The template for 404 breadcrumbs."
615
  msgstr "Шаблон текста в пути для 404 страницы."
616
 
617
+ #: breadcrumb_navxt_admin.php:616
618
  msgid "Save Changes"
619
+ msgstr "Сохранить изменения"
620
+
621
+ #: includes/mtekk_adminkit.php:204
622
+ msgid "Settings"
623
+ msgstr "Настройки"
624
+
625
+ #: includes/mtekk_adminkit.php:274
626
+ msgid "Your settings are out of date."
627
+ msgstr "Ваши настройки устарели."
628
+
629
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
+ msgid "Migrate the settings now."
631
+ msgstr "Обновить настройки сейчас."
632
+
633
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
+ msgid "Migrate now."
635
+ msgstr "Обновить сейчас."
636
+
637
+ #: includes/mtekk_adminkit.php:291
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "Установка плагина некорректна."
640
+
641
+ #: includes/mtekk_adminkit.php:291
642
+ msgid "Load default settings now."
643
+ msgstr "Загрузить дефолтные настройки."
644
+
645
+ #: includes/mtekk_adminkit.php:291
646
+ msgid "Complete now."
647
+ msgstr "Сделать сейчас."
648
+
649
+ #: includes/mtekk_adminkit.php:299
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "Настройки плагина испорчены."
652
+
653
+ #: includes/mtekk_adminkit.php:299
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Попытаться исправить настройки сейчас."
656
+
657
+ #: includes/mtekk_adminkit.php:299
658
+ msgid "Fix now."
659
+ msgstr "Исправить сейчас."
660
+
661
+ #: includes/mtekk_adminkit.php:477
662
+ msgid "Settings successfully saved."
663
+ msgstr "Настройки удачно сохранены."
664
+
665
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
+ msgid "Undo the options save."
667
+ msgstr "Отменить сохранение настроек."
668
+
669
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
+ #: includes/mtekk_adminkit.php:628
672
+ msgid "Undo"
673
+ msgstr "Отменить"
674
+
675
+ #: includes/mtekk_adminkit.php:482
676
+ msgid "Some settings were not saved."
677
+ msgstr "Некоторые настройки не были сохранены."
678
+
679
+ #: includes/mtekk_adminkit.php:483
680
+ msgid "The following settings were not saved:"
681
+ msgstr "Следующие настройки не были сохранены:"
682
+
683
+ #: includes/mtekk_adminkit.php:488
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Пожалуйста, добавьте текст в ваше %sсообщение об ошибке%s."
686
+
687
+ #: includes/mtekk_adminkit.php:488
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Перейти на %s страницу поддержки для вашей версии плагина."
690
+
691
+ #: includes/mtekk_adminkit.php:587
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Настройки удачно импортированы из загруженного файла."
694
+
695
+ #: includes/mtekk_adminkit.php:587
696
+ msgid "Undo the options import."
697
+ msgstr "Отменить импорт настроек."
698
+
699
+ #: includes/mtekk_adminkit.php:592
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Импортируемые настройки испорчены."
702
+
703
+ #: includes/mtekk_adminkit.php:611
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Настройки удачно сброшены на дефолтные значения."
706
+
707
+ #: includes/mtekk_adminkit.php:611
708
+ msgid "Undo the options reset."
709
+ msgstr "Отменить сброс настроек."
710
+
711
+ #: includes/mtekk_adminkit.php:628
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Последняя операция была удачно отменена."
714
+
715
+ #: includes/mtekk_adminkit.php:628
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Отменить отмену последней операции."
718
+
719
+ #: includes/mtekk_adminkit.php:663
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Настройки удачно обновлены."
722
+
723
+ #: includes/mtekk_adminkit.php:670
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Дефолтные настройки были удачно установлены."
726
+
727
+ #: includes/mtekk_adminkit.php:771
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Импорт настроек из XML-файла, экспорт настроек в XML-файл, или сброс настроек на дефолтные значения."
730
+
731
+ #: includes/mtekk_adminkit.php:774
732
+ msgid "Settings File"
733
+ msgstr "Файл настроек"
734
+
735
+ #: includes/mtekk_adminkit.php:777
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Выберите XML-файл настроек для загрузки и импорта."
738
+
739
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
+ msgid "Home"
741
+ msgstr "Главная"
742
+
743
+ #: breadcrumb_navxt_class.php:251
744
+ msgid "Page %htitle%"
745
+ msgstr "Страница %htitle%"
746
+
747
+ #: breadcrumb_navxt_class.php:275
748
+ msgid "404"
749
+ msgstr "404. Страница не найдена"
750
+
751
+ #: breadcrumb_navxt_class.php:280
752
+ msgid "Search results for &#39;%htitle%&#39;"
753
+ msgstr "Результаты поиска для запроса: &#39;%htitle%&#39;"
754
+
755
+ #: breadcrumb_navxt_class.php:295
756
+ msgid "Articles by: %htitle%"
757
+ msgstr "Записи от: '%htitle%'"
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: 2011-12-03 04:49:09+00:00\n"
6
- "PO-Revision-Date: 2012-06-05 20:32-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,722 +14,779 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
- #: breadcrumb_navxt_widget.php:32
18
- msgid "Adds a breadcrumb trail to your sidebar"
19
- msgstr ""
20
-
21
- #: breadcrumb_navxt_widget.php:93
22
- msgid "Title:"
23
- msgstr ""
24
-
25
- #: breadcrumb_navxt_widget.php:97
26
- msgid "Output trail as:"
27
- msgstr ""
28
-
29
- #: breadcrumb_navxt_widget.php:99
30
- msgid "List"
31
- msgstr ""
32
-
33
- #: breadcrumb_navxt_widget.php:100
34
- msgid "RDFa"
35
- msgstr ""
36
-
37
- #: breadcrumb_navxt_widget.php:101
38
- msgid "Microformat"
39
- msgstr ""
40
-
41
- #: breadcrumb_navxt_widget.php:102
42
- msgid "Plain"
43
- msgstr ""
44
-
45
- #: breadcrumb_navxt_widget.php:107
46
- msgid "Link the breadcrumbs"
47
- msgstr ""
48
-
49
- #: breadcrumb_navxt_widget.php:109
50
- msgid "Reverse the order of the trail"
51
- msgstr ""
52
-
53
- #: breadcrumb_navxt_widget.php:111
54
- msgid "Hide the trail on the front page"
55
- msgstr ""
56
-
57
  #: breadcrumb_navxt_admin.php:36
58
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
59
  msgstr ""
60
 
61
- #: breadcrumb_navxt_admin.php:113
62
  msgid "Insufficient privileges to proceed."
63
  msgstr ""
64
 
65
- #: breadcrumb_navxt_admin.php:204
66
  msgid "Tips for the settings are located below select options."
67
  msgstr ""
68
 
69
- #: breadcrumb_navxt_admin.php:205
70
  msgid "Resources"
71
  msgstr ""
72
 
73
- #: breadcrumb_navxt_admin.php:206
74
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
75
  msgstr ""
76
 
77
- #: breadcrumb_navxt_admin.php:206
78
  msgid "Go to the Breadcrumb NavXT tag archive."
79
  msgstr ""
80
 
81
- #: breadcrumb_navxt_admin.php:207
82
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
83
  msgstr ""
84
 
85
- #: breadcrumb_navxt_admin.php:207
86
  msgid "Go to the Breadcrumb NavXT online documentation"
87
  msgstr ""
88
 
89
- #: breadcrumb_navxt_admin.php:208
90
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
91
  msgstr ""
92
 
93
- #: breadcrumb_navxt_admin.php:208
94
- #: breadcrumb_navxt_admin.php:211
95
  msgid "Go to the Breadcrumb NavXT support post for your version."
96
  msgstr ""
97
 
98
- #: breadcrumb_navxt_admin.php:209
99
  msgid "Giving Back"
100
  msgstr ""
101
 
102
- #: breadcrumb_navxt_admin.php:210
103
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
104
  msgstr ""
105
 
106
- #: breadcrumb_navxt_admin.php:210
107
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
108
  msgstr ""
109
 
110
- #: breadcrumb_navxt_admin.php:211
111
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
112
  msgstr ""
113
 
114
- #: breadcrumb_navxt_admin.php:216
115
- #: breadcrumb_navxt_admin.php:307
 
 
 
 
 
116
  msgid "General"
117
  msgstr ""
118
 
119
- #: breadcrumb_navxt_admin.php:219
120
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
121
  msgstr ""
122
 
123
- #: breadcrumb_navxt_admin.php:220
124
  msgid "Breadcrumb trail with separators"
125
  msgstr ""
126
 
127
- #: breadcrumb_navxt_admin.php:226
128
  msgid "Breadcrumb trail in list form"
129
  msgstr ""
130
 
131
- #: breadcrumb_navxt_admin.php:235
132
  msgid "Quick Start"
133
  msgstr ""
134
 
135
- #: breadcrumb_navxt_admin.php:238
136
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
137
  msgstr ""
138
 
139
- #: breadcrumb_navxt_admin.php:250
140
  msgid "Styling"
141
  msgstr ""
142
 
143
- #: breadcrumb_navxt_admin.php:256
144
  msgid "Import/Export/Reset"
145
  msgstr ""
146
 
147
- #: breadcrumb_navxt_admin.php:280
148
- #: includes/mtekk_adminkit.php:765
149
  msgid "Import"
150
  msgstr ""
151
 
152
- #: breadcrumb_navxt_admin.php:281
153
- #: includes/mtekk_adminkit.php:766
154
  msgid "Export"
155
  msgstr ""
156
 
157
- #: breadcrumb_navxt_admin.php:282
158
- #: includes/mtekk_adminkit.php:767
159
  msgid "Reset"
160
  msgstr ""
161
 
162
- #: breadcrumb_navxt_admin.php:295
163
  msgid "Breadcrumb NavXT Settings"
164
  msgstr ""
165
 
166
- #: breadcrumb_navxt_admin.php:310
 
 
 
 
167
  msgid "Breadcrumb Separator"
168
  msgstr ""
169
 
170
- #: breadcrumb_navxt_admin.php:310
171
  msgid "Placed in between each breadcrumb."
172
  msgstr ""
173
 
174
- #: breadcrumb_navxt_admin.php:311
175
- msgid "Breadcrumb Max Title Length"
176
  msgstr ""
177
 
178
- #: breadcrumb_navxt_admin.php:315
179
- msgid "Home Breadcrumb"
180
  msgstr ""
181
 
182
- #: breadcrumb_navxt_admin.php:320
183
- msgid "Place the home breadcrumb in the trail."
184
  msgstr ""
185
 
186
- #: breadcrumb_navxt_admin.php:325
187
- msgid "Home Title: "
188
  msgstr ""
189
 
190
- #: breadcrumb_navxt_admin.php:333
191
- msgid "Home Template"
192
  msgstr ""
193
 
194
- #: breadcrumb_navxt_admin.php:333
195
- msgid "The template for the home breadcrumb."
196
  msgstr ""
197
 
198
- #: breadcrumb_navxt_admin.php:334
199
- msgid "Home Template (Unlinked)"
200
  msgstr ""
201
 
202
- #: breadcrumb_navxt_admin.php:334
203
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
204
  msgstr ""
205
 
206
- #: breadcrumb_navxt_admin.php:335
207
- msgid "Blog Breadcrumb"
208
  msgstr ""
209
 
210
- #: breadcrumb_navxt_admin.php:335
211
- msgid "Place the blog breadcrumb in the trail."
212
  msgstr ""
213
 
214
- #: breadcrumb_navxt_admin.php:336
215
- msgid "Blog Template"
216
  msgstr ""
217
 
218
- #: breadcrumb_navxt_admin.php:336
219
- msgid "The template for the blog breadcrumb, used only in static front page environments."
 
220
  msgstr ""
221
 
222
- #: breadcrumb_navxt_admin.php:337
223
- msgid "Blog Template (Unlinked)"
224
  msgstr ""
225
 
226
- #: breadcrumb_navxt_admin.php:337
227
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
228
  msgstr ""
229
 
230
- #: breadcrumb_navxt_admin.php:341
231
- msgid "Main Site Breadcrumb"
232
  msgstr ""
233
 
234
- #: breadcrumb_navxt_admin.php:346
235
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
236
  msgstr ""
237
 
238
- #: breadcrumb_navxt_admin.php:351
239
- msgid "Main Site Home Title: "
240
  msgstr ""
241
 
242
- #: breadcrumb_navxt_admin.php:360
243
- msgid "Main Site Home Template"
244
  msgstr ""
245
 
246
- #: breadcrumb_navxt_admin.php:360
247
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
 
248
  msgstr ""
249
 
250
- #: breadcrumb_navxt_admin.php:361
251
- msgid "Main Site Home Template (Unlinked)"
252
  msgstr ""
253
 
254
- #: breadcrumb_navxt_admin.php:361
255
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
256
  msgstr ""
257
 
258
- #: breadcrumb_navxt_admin.php:366
259
- msgid "Current Item"
260
  msgstr ""
261
 
262
- #: breadcrumb_navxt_admin.php:369
263
- msgid "Link Current Item"
264
  msgstr ""
265
 
266
- #: breadcrumb_navxt_admin.php:369
267
- msgid "Yes"
 
 
 
 
268
  msgstr ""
269
 
270
- #: breadcrumb_navxt_admin.php:370
271
- msgid "Current Item Template"
272
  msgstr ""
273
 
274
- #: breadcrumb_navxt_admin.php:370
275
- msgid "The template for current item breadcrumbs."
276
  msgstr ""
277
 
278
- #: breadcrumb_navxt_admin.php:371
279
- msgid "Current Item Template (Unlinked)"
280
  msgstr ""
281
 
282
- #: breadcrumb_navxt_admin.php:371
283
- msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
284
  msgstr ""
285
 
286
- #: breadcrumb_navxt_admin.php:372
287
- msgid "Paged Breadcrumb"
288
  msgstr ""
289
 
290
- #: breadcrumb_navxt_admin.php:372
291
- msgid "Include the paged breadcrumb in the breadcrumb trail."
292
  msgstr ""
293
 
294
- #: breadcrumb_navxt_admin.php:372
295
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
296
  msgstr ""
297
 
298
- #: breadcrumb_navxt_admin.php:373
299
- msgid "Paged Template"
300
  msgstr ""
301
 
302
- #: breadcrumb_navxt_admin.php:373
303
- msgid "The template for paged breadcrumbs."
304
  msgstr ""
305
 
306
- #: breadcrumb_navxt_admin.php:378
307
- msgid "Posts &amp; Pages"
308
  msgstr ""
309
 
310
- #: breadcrumb_navxt_admin.php:381
311
  msgid "Post Template"
312
  msgstr ""
313
 
314
- #: breadcrumb_navxt_admin.php:381
315
  msgid "The template for post breadcrumbs."
316
  msgstr ""
317
 
318
- #: breadcrumb_navxt_admin.php:382
319
  msgid "Post Template (Unlinked)"
320
  msgstr ""
321
 
322
- #: breadcrumb_navxt_admin.php:382
323
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
324
  msgstr ""
325
 
326
- #: breadcrumb_navxt_admin.php:383
327
- msgid "Post Taxonomy Display"
328
  msgstr ""
329
 
330
- #: breadcrumb_navxt_admin.php:383
331
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
332
  msgstr ""
333
 
334
- #: breadcrumb_navxt_admin.php:387
335
- msgid "Post Taxonomy"
336
  msgstr ""
337
 
338
- #: breadcrumb_navxt_admin.php:391
 
339
  msgid "Categories"
340
  msgstr ""
341
 
342
- #: breadcrumb_navxt_admin.php:392
343
- #: breadcrumb_navxt_admin.php:490
344
  msgid "Dates"
345
  msgstr ""
346
 
347
- #: breadcrumb_navxt_admin.php:393
 
348
  msgid "Tags"
349
  msgstr ""
350
 
351
- #: breadcrumb_navxt_admin.php:394
352
- #: breadcrumb_navxt_admin.php:491
353
- msgid "Pages"
 
 
 
 
 
354
  msgstr ""
355
 
356
- #: breadcrumb_navxt_admin.php:405
357
- #: breadcrumb_navxt_admin.php:502
358
- msgid "The taxonomy which the breadcrumb trail will show."
359
  msgstr ""
360
 
361
- #: breadcrumb_navxt_admin.php:409
362
  msgid "Page Template"
363
  msgstr ""
364
 
365
- #: breadcrumb_navxt_admin.php:409
366
  msgid "The template for page breadcrumbs."
367
  msgstr ""
368
 
369
- #: breadcrumb_navxt_admin.php:410
370
  msgid "Page Template (Unlinked)"
371
  msgstr ""
372
 
373
- #: breadcrumb_navxt_admin.php:410
374
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
375
  msgstr ""
376
 
377
- #: breadcrumb_navxt_admin.php:411
378
  msgid "Attachment Template"
379
  msgstr ""
380
 
381
- #: breadcrumb_navxt_admin.php:411
382
  msgid "The template for attachment breadcrumbs."
383
  msgstr ""
384
 
385
- #: breadcrumb_navxt_admin.php:412
386
  msgid "Attachment Template (Unlinked)"
387
  msgstr ""
388
 
389
- #: breadcrumb_navxt_admin.php:412
390
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
391
  msgstr ""
392
 
393
- #: breadcrumb_navxt_admin.php:427
394
- #: breadcrumb_navxt_admin.php:600
395
- #: breadcrumb_navxt_class.php:56
396
- #: breadcrumb_navxt_class.php:205
397
- #: breadcrumb_navxt_class.php:213
398
- #: breadcrumb_navxt_class.php:219
399
- #: breadcrumb_navxt_class.php:235
400
- #: breadcrumb_navxt_class.php:247
401
- #: breadcrumb_navxt_class.php:259
402
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
403
- msgstr ""
404
-
405
- #: breadcrumb_navxt_admin.php:428
406
- #: breadcrumb_navxt_admin.php:601
407
- msgid "%htitle%"
408
- msgstr ""
409
-
410
- #: breadcrumb_navxt_admin.php:465
411
- #: breadcrumb_navxt_admin.php:541
412
  msgid "%s Template"
413
  msgstr ""
414
 
415
- #: breadcrumb_navxt_admin.php:465
416
- #: breadcrumb_navxt_admin.php:541
417
  msgid "The template for %s breadcrumbs."
418
  msgstr ""
419
 
420
- #: breadcrumb_navxt_admin.php:466
421
- #: breadcrumb_navxt_admin.php:542
422
  msgid "%s Template (Unlinked)"
423
  msgstr ""
424
 
425
- #: breadcrumb_navxt_admin.php:466
426
- #: breadcrumb_navxt_admin.php:542
427
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
428
  msgstr ""
429
 
430
- #: breadcrumb_navxt_admin.php:471
431
  msgid "%s Root Page"
432
  msgstr ""
433
 
434
- #: breadcrumb_navxt_admin.php:474
435
  msgid "&mdash; Select &mdash;"
436
  msgstr ""
437
 
438
- #: breadcrumb_navxt_admin.php:478
439
  msgid "%s Archive Display"
440
  msgstr ""
441
 
442
- #: breadcrumb_navxt_admin.php:478
443
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
444
  msgstr ""
445
 
446
- #: breadcrumb_navxt_admin.php:482
447
- msgid "%s Taxonomy Display"
448
  msgstr ""
449
 
450
- #: breadcrumb_navxt_admin.php:482
451
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
452
  msgstr ""
453
 
454
- #: breadcrumb_navxt_admin.php:486
455
- msgid "%s Taxonomy"
456
  msgstr ""
457
 
458
- #: breadcrumb_navxt_admin.php:512
459
- msgid "Categories &amp; Tags"
 
 
 
 
460
  msgstr ""
461
 
462
- #: breadcrumb_navxt_admin.php:515
463
  msgid "Category Template"
464
  msgstr ""
465
 
466
- #: breadcrumb_navxt_admin.php:515
467
  msgid "The template for category breadcrumbs."
468
  msgstr ""
469
 
470
- #: breadcrumb_navxt_admin.php:516
471
  msgid "Category Template (Unlinked)"
472
  msgstr ""
473
 
474
- #: breadcrumb_navxt_admin.php:516
475
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
476
  msgstr ""
477
 
478
- #: breadcrumb_navxt_admin.php:517
479
  msgid "Tag Template"
480
  msgstr ""
481
 
482
- #: breadcrumb_navxt_admin.php:517
483
  msgid "The template for tag breadcrumbs."
484
  msgstr ""
485
 
486
- #: breadcrumb_navxt_admin.php:518
487
  msgid "Tag Template (Unlinked)"
488
  msgstr ""
489
 
490
- #: breadcrumb_navxt_admin.php:518
491
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
492
  msgstr ""
493
 
494
- #: breadcrumb_navxt_admin.php:551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
495
  msgid "Miscellaneous"
496
  msgstr ""
497
 
498
- #: breadcrumb_navxt_admin.php:554
 
 
 
 
499
  msgid "Author Template"
500
  msgstr ""
501
 
502
- #: breadcrumb_navxt_admin.php:554
503
  msgid "The template for author breadcrumbs."
504
  msgstr ""
505
 
506
- #: breadcrumb_navxt_admin.php:555
507
  msgid "Author Template (Unlinked)"
508
  msgstr ""
509
 
510
- #: breadcrumb_navxt_admin.php:555
511
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
512
  msgstr ""
513
 
514
- #: breadcrumb_navxt_admin.php:556
515
  msgid "Author Display Format"
516
  msgstr ""
517
 
518
- #: breadcrumb_navxt_admin.php:556
519
  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."
520
  msgstr ""
521
 
522
- #: breadcrumb_navxt_admin.php:557
523
  msgid "Date Template"
524
  msgstr ""
525
 
526
- #: breadcrumb_navxt_admin.php:557
527
  msgid "The template for date breadcrumbs."
528
  msgstr ""
529
 
530
- #: breadcrumb_navxt_admin.php:558
531
  msgid "Date Template (Unlinked)"
532
  msgstr ""
533
 
534
- #: breadcrumb_navxt_admin.php:558
535
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
536
  msgstr ""
537
 
538
- #: breadcrumb_navxt_admin.php:559
539
  msgid "Search Template"
540
  msgstr ""
541
 
542
- #: breadcrumb_navxt_admin.php:559
543
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
544
  msgstr ""
545
 
546
- #: breadcrumb_navxt_admin.php:560
547
  msgid "Search Template (Unlinked)"
548
  msgstr ""
549
 
550
- #: breadcrumb_navxt_admin.php:560
551
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
552
  msgstr ""
553
 
554
- #: breadcrumb_navxt_admin.php:561
555
  msgid "404 Title"
556
  msgstr ""
557
 
558
- #: breadcrumb_navxt_admin.php:562
559
  msgid "404 Template"
560
  msgstr ""
561
 
562
- #: breadcrumb_navxt_admin.php:562
563
  msgid "The template for 404 breadcrumbs."
564
  msgstr ""
565
 
566
- #: breadcrumb_navxt_admin.php:567
567
  msgid "Save Changes"
568
  msgstr ""
569
 
570
- #: includes/mtekk_adminkit.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
  msgid "Settings"
572
  msgstr ""
573
 
574
- #: includes/mtekk_adminkit.php:271
575
  msgid "Your settings are out of date."
576
  msgstr ""
577
 
578
- #: includes/mtekk_adminkit.php:271
 
579
  msgid "Migrate the settings now."
580
  msgstr ""
581
 
582
- #: includes/mtekk_adminkit.php:271
 
583
  msgid "Migrate now."
584
  msgstr ""
585
 
586
- #: includes/mtekk_adminkit.php:279
 
 
 
 
587
  msgid "Your plugin install is incomplete."
588
  msgstr ""
589
 
590
- #: includes/mtekk_adminkit.php:279
591
  msgid "Load default settings now."
592
  msgstr ""
593
 
594
- #: includes/mtekk_adminkit.php:279
595
  msgid "Complete now."
596
  msgstr ""
597
 
598
- #: includes/mtekk_adminkit.php:287
599
  msgid "Your plugin settings are invalid."
600
  msgstr ""
601
 
602
- #: includes/mtekk_adminkit.php:287
603
  msgid "Attempt to fix settings now."
604
  msgstr ""
605
 
606
- #: includes/mtekk_adminkit.php:287
607
  msgid "Fix now."
608
  msgstr ""
609
 
610
- #: includes/mtekk_adminkit.php:463
611
  msgid "Settings successfully saved."
612
  msgstr ""
613
 
614
- #: includes/mtekk_adminkit.php:463
615
- #: includes/mtekk_adminkit.php:468
616
  msgid "Undo the options save."
617
  msgstr ""
618
 
619
- #: includes/mtekk_adminkit.php:463
620
- #: includes/mtekk_adminkit.php:468
621
- #: includes/mtekk_adminkit.php:573
622
- #: includes/mtekk_adminkit.php:597
623
- #: includes/mtekk_adminkit.php:614
624
  msgid "Undo"
625
  msgstr ""
626
 
627
- #: includes/mtekk_adminkit.php:468
628
  msgid "Some settings were not saved."
629
  msgstr ""
630
 
631
- #: includes/mtekk_adminkit.php:469
632
  msgid "The following settings were not saved:"
633
  msgstr ""
634
 
635
- #: includes/mtekk_adminkit.php:474
636
  msgid "Please include this message in your %sbug report%s."
637
  msgstr ""
638
 
639
- #: includes/mtekk_adminkit.php:474
640
  msgid "Go to the %s support post for your version."
641
  msgstr ""
642
 
643
- #: includes/mtekk_adminkit.php:573
644
  msgid "Settings successfully imported from the uploaded file."
645
  msgstr ""
646
 
647
- #: includes/mtekk_adminkit.php:573
648
  msgid "Undo the options import."
649
  msgstr ""
650
 
651
- #: includes/mtekk_adminkit.php:578
652
  msgid "Importing settings from file failed."
653
  msgstr ""
654
 
655
- #: includes/mtekk_adminkit.php:597
656
  msgid "Settings successfully reset to the default values."
657
  msgstr ""
658
 
659
- #: includes/mtekk_adminkit.php:597
660
  msgid "Undo the options reset."
661
  msgstr ""
662
 
663
- #: includes/mtekk_adminkit.php:614
664
  msgid "Settings successfully undid the last operation."
665
  msgstr ""
666
 
667
- #: includes/mtekk_adminkit.php:614
668
  msgid "Undo the last undo operation."
669
  msgstr ""
670
 
671
- #: includes/mtekk_adminkit.php:649
672
  msgid "Settings successfully migrated."
673
  msgstr ""
674
 
675
- #: includes/mtekk_adminkit.php:656
676
  msgid "Default settings successfully installed."
677
  msgstr ""
678
 
679
- #: includes/mtekk_adminkit.php:757
680
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
681
  msgstr ""
682
 
683
- #: includes/mtekk_adminkit.php:760
684
  msgid "Settings File"
685
  msgstr ""
686
 
687
- #: includes/mtekk_adminkit.php:763
688
  msgid "Select a XML settings file to upload and import settings from."
689
  msgstr ""
690
 
691
- #: breadcrumb_navxt_class.php:203
692
- #: breadcrumb_navxt_class.php:211
693
- msgid "Home"
694
- msgstr ""
695
-
696
- #: breadcrumb_navxt_class.php:230
697
- msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
698
- msgstr ""
699
-
700
- #: breadcrumb_navxt_class.php:242
701
- msgid "Page %htitle%"
702
- msgstr ""
703
-
704
- #: breadcrumb_navxt_class.php:266
705
- msgid "404"
706
- msgstr ""
707
-
708
- #: breadcrumb_navxt_class.php:269
709
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>&#39;"
710
- msgstr ""
711
-
712
- #: breadcrumb_navxt_class.php:271
713
- msgid "Search results for &#39;%htitle%&#39;"
714
- msgstr ""
715
-
716
- #: breadcrumb_navxt_class.php:274
717
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
718
- msgstr ""
719
-
720
- #: breadcrumb_navxt_class.php:279
721
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
722
- msgstr ""
723
-
724
- #: breadcrumb_navxt_class.php:281
725
- msgid "Articles by: %htitle%"
726
- msgstr ""
727
-
728
- #: breadcrumb_navxt_class.php:286
729
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
730
- msgstr ""
731
-
732
- #: breadcrumb_navxt_class.php:290
733
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
734
- msgstr ""
735
-
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: 2012-08-17 22:18:33+00:00\n"
6
+ "PO-Revision-Date: 2012-09-28 20:34-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  #: breadcrumb_navxt_admin.php:36
18
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
19
  msgstr ""
20
 
21
+ #: breadcrumb_navxt_admin.php:120
22
  msgid "Insufficient privileges to proceed."
23
  msgstr ""
24
 
25
+ #: breadcrumb_navxt_admin.php:222
26
  msgid "Tips for the settings are located below select options."
27
  msgstr ""
28
 
29
+ #: breadcrumb_navxt_admin.php:223
30
  msgid "Resources"
31
  msgstr ""
32
 
33
+ #: breadcrumb_navxt_admin.php:224
34
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
35
  msgstr ""
36
 
37
+ #: breadcrumb_navxt_admin.php:224
38
  msgid "Go to the Breadcrumb NavXT tag archive."
39
  msgstr ""
40
 
41
+ #: breadcrumb_navxt_admin.php:225
42
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
43
  msgstr ""
44
 
45
+ #: breadcrumb_navxt_admin.php:225
46
  msgid "Go to the Breadcrumb NavXT online documentation"
47
  msgstr ""
48
 
49
+ #: breadcrumb_navxt_admin.php:226
50
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
51
  msgstr ""
52
 
53
+ #: breadcrumb_navxt_admin.php:226
 
54
  msgid "Go to the Breadcrumb NavXT support post for your version."
55
  msgstr ""
56
 
57
+ #: breadcrumb_navxt_admin.php:227
58
  msgid "Giving Back"
59
  msgstr ""
60
 
61
+ #: breadcrumb_navxt_admin.php:228
62
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
63
  msgstr ""
64
 
65
+ #: breadcrumb_navxt_admin.php:228
66
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
67
  msgstr ""
68
 
69
+ #: breadcrumb_navxt_admin.php:229
70
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
71
  msgstr ""
72
 
73
+ #: breadcrumb_navxt_admin.php:229
74
+ msgid "Go to the Breadcrumb NavXT translation project."
75
+ msgstr ""
76
+
77
+ #: breadcrumb_navxt_admin.php:234
78
+ #: breadcrumb_navxt_admin.php:325
79
+ #: breadcrumb_navxt_admin.php:326
80
  msgid "General"
81
  msgstr ""
82
 
83
+ #: breadcrumb_navxt_admin.php:237
84
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
85
  msgstr ""
86
 
87
+ #: breadcrumb_navxt_admin.php:238
88
  msgid "Breadcrumb trail with separators"
89
  msgstr ""
90
 
91
+ #: breadcrumb_navxt_admin.php:244
92
  msgid "Breadcrumb trail in list form"
93
  msgstr ""
94
 
95
+ #: breadcrumb_navxt_admin.php:253
96
  msgid "Quick Start"
97
  msgstr ""
98
 
99
+ #: breadcrumb_navxt_admin.php:256
100
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
101
  msgstr ""
102
 
103
+ #: breadcrumb_navxt_admin.php:268
104
  msgid "Styling"
105
  msgstr ""
106
 
107
+ #: breadcrumb_navxt_admin.php:274
108
  msgid "Import/Export/Reset"
109
  msgstr ""
110
 
111
+ #: breadcrumb_navxt_admin.php:298
112
+ #: includes/mtekk_adminkit.php:779
113
  msgid "Import"
114
  msgstr ""
115
 
116
+ #: breadcrumb_navxt_admin.php:299
117
+ #: includes/mtekk_adminkit.php:780
118
  msgid "Export"
119
  msgstr ""
120
 
121
+ #: breadcrumb_navxt_admin.php:300
122
+ #: includes/mtekk_adminkit.php:781
123
  msgid "Reset"
124
  msgstr ""
125
 
126
+ #: breadcrumb_navxt_admin.php:313
127
  msgid "Breadcrumb NavXT Settings"
128
  msgstr ""
129
 
130
+ #: breadcrumb_navxt_admin.php:325
131
+ msgid "A collection of settings most likely to be modified are located under this tab."
132
+ msgstr ""
133
+
134
+ #: breadcrumb_navxt_admin.php:329
135
  msgid "Breadcrumb Separator"
136
  msgstr ""
137
 
138
+ #: breadcrumb_navxt_admin.php:329
139
  msgid "Placed in between each breadcrumb."
140
  msgstr ""
141
 
142
+ #: breadcrumb_navxt_admin.php:333
143
+ msgid "Title Length"
144
  msgstr ""
145
 
146
+ #: breadcrumb_navxt_admin.php:338
147
+ msgid "Limit the length of the breadcrumb title."
148
  msgstr ""
149
 
150
+ #: breadcrumb_navxt_admin.php:343
151
+ msgid "Max Title Length: "
152
  msgstr ""
153
 
154
+ #: breadcrumb_navxt_admin.php:354
155
+ msgid "Current Item"
156
  msgstr ""
157
 
158
+ #: breadcrumb_navxt_admin.php:357
159
+ msgid "Link Current Item"
160
  msgstr ""
161
 
162
+ #: breadcrumb_navxt_admin.php:357
163
+ msgid "Yes"
164
  msgstr ""
165
 
166
+ #: breadcrumb_navxt_admin.php:358
167
+ msgid "Paged Breadcrumb"
168
  msgstr ""
169
 
170
+ #: breadcrumb_navxt_admin.php:358
171
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
172
  msgstr ""
173
 
174
+ #: breadcrumb_navxt_admin.php:358
175
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
176
  msgstr ""
177
 
178
+ #: breadcrumb_navxt_admin.php:359
179
+ msgid "Paged Template"
180
  msgstr ""
181
 
182
+ #: breadcrumb_navxt_admin.php:359
183
+ msgid "The template for paged breadcrumbs."
184
  msgstr ""
185
 
186
+ #: breadcrumb_navxt_admin.php:363
187
+ #: breadcrumb_navxt_admin.php:367
188
+ msgid "Home Breadcrumb"
189
  msgstr ""
190
 
191
+ #: breadcrumb_navxt_admin.php:372
192
+ msgid "Place the home breadcrumb in the trail."
193
  msgstr ""
194
 
195
+ #: breadcrumb_navxt_admin.php:377
196
+ msgid "Home Title: "
197
  msgstr ""
198
 
199
+ #: breadcrumb_navxt_admin.php:385
200
+ msgid "Home Template"
201
  msgstr ""
202
 
203
+ #: breadcrumb_navxt_admin.php:385
204
+ msgid "The template for the home breadcrumb."
205
  msgstr ""
206
 
207
+ #: breadcrumb_navxt_admin.php:386
208
+ msgid "Home Template (Unlinked)"
209
  msgstr ""
210
 
211
+ #: breadcrumb_navxt_admin.php:386
212
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
213
  msgstr ""
214
 
215
+ #: breadcrumb_navxt_admin.php:390
216
+ #: breadcrumb_navxt_admin.php:393
217
+ msgid "Blog Breadcrumb"
218
  msgstr ""
219
 
220
+ #: breadcrumb_navxt_admin.php:393
221
+ msgid "Place the blog breadcrumb in the trail."
222
  msgstr ""
223
 
224
+ #: breadcrumb_navxt_admin.php:394
225
+ msgid "Blog Template"
226
  msgstr ""
227
 
228
+ #: breadcrumb_navxt_admin.php:394
229
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
230
  msgstr ""
231
 
232
+ #: breadcrumb_navxt_admin.php:395
233
+ msgid "Blog Template (Unlinked)"
234
  msgstr ""
235
 
236
+ #: breadcrumb_navxt_admin.php:395
237
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
238
+ msgstr ""
239
+
240
+ #: breadcrumb_navxt_admin.php:399
241
+ msgid "Mainsite Breadcrumb"
242
  msgstr ""
243
 
244
+ #: breadcrumb_navxt_admin.php:403
245
+ msgid "Main Site Breadcrumb"
246
  msgstr ""
247
 
248
+ #: breadcrumb_navxt_admin.php:408
249
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
250
  msgstr ""
251
 
252
+ #: breadcrumb_navxt_admin.php:413
253
+ msgid "Main Site Home Title: "
254
  msgstr ""
255
 
256
+ #: breadcrumb_navxt_admin.php:422
257
+ msgid "Main Site Home Template"
258
  msgstr ""
259
 
260
+ #: breadcrumb_navxt_admin.php:422
261
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
262
  msgstr ""
263
 
264
+ #: breadcrumb_navxt_admin.php:423
265
+ msgid "Main Site Home Template (Unlinked)"
266
  msgstr ""
267
 
268
+ #: breadcrumb_navxt_admin.php:423
269
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
270
  msgstr ""
271
 
272
+ #: breadcrumb_navxt_admin.php:430
273
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
274
  msgstr ""
275
 
276
+ #: breadcrumb_navxt_admin.php:430
277
+ msgid "Post Types"
278
  msgstr ""
279
 
280
+ #: breadcrumb_navxt_admin.php:431
281
+ msgid "Posts"
282
  msgstr ""
283
 
284
+ #: breadcrumb_navxt_admin.php:434
285
  msgid "Post Template"
286
  msgstr ""
287
 
288
+ #: breadcrumb_navxt_admin.php:434
289
  msgid "The template for post breadcrumbs."
290
  msgstr ""
291
 
292
+ #: breadcrumb_navxt_admin.php:435
293
  msgid "Post Template (Unlinked)"
294
  msgstr ""
295
 
296
+ #: breadcrumb_navxt_admin.php:435
297
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
298
  msgstr ""
299
 
300
+ #: breadcrumb_navxt_admin.php:436
301
+ msgid "Post Hierarchy Display"
302
  msgstr ""
303
 
304
+ #: breadcrumb_navxt_admin.php:436
305
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
306
  msgstr ""
307
 
308
+ #: breadcrumb_navxt_admin.php:440
309
+ msgid "Post Hierarchy"
310
  msgstr ""
311
 
312
+ #: breadcrumb_navxt_admin.php:444
313
+ #: breadcrumb_navxt_admin.php:545
314
  msgid "Categories"
315
  msgstr ""
316
 
317
+ #: breadcrumb_navxt_admin.php:445
 
318
  msgid "Dates"
319
  msgstr ""
320
 
321
+ #: breadcrumb_navxt_admin.php:446
322
+ #: breadcrumb_navxt_admin.php:552
323
  msgid "Tags"
324
  msgstr ""
325
 
326
+ #: breadcrumb_navxt_admin.php:448
327
+ #: breadcrumb_navxt_admin.php:517
328
+ msgid "Post Parent"
329
+ msgstr ""
330
+
331
+ #: breadcrumb_navxt_admin.php:464
332
+ #: breadcrumb_navxt_admin.php:533
333
+ msgid "The hierarchy which the breadcrumb trail will show."
334
  msgstr ""
335
 
336
+ #: breadcrumb_navxt_admin.php:468
337
+ msgid "Pages"
 
338
  msgstr ""
339
 
340
+ #: breadcrumb_navxt_admin.php:471
341
  msgid "Page Template"
342
  msgstr ""
343
 
344
+ #: breadcrumb_navxt_admin.php:471
345
  msgid "The template for page breadcrumbs."
346
  msgstr ""
347
 
348
+ #: breadcrumb_navxt_admin.php:472
349
  msgid "Page Template (Unlinked)"
350
  msgstr ""
351
 
352
+ #: breadcrumb_navxt_admin.php:472
353
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
354
  msgstr ""
355
 
356
+ #: breadcrumb_navxt_admin.php:473
357
  msgid "Attachment Template"
358
  msgstr ""
359
 
360
+ #: breadcrumb_navxt_admin.php:473
361
  msgid "The template for attachment breadcrumbs."
362
  msgstr ""
363
 
364
+ #: breadcrumb_navxt_admin.php:474
365
  msgid "Attachment Template (Unlinked)"
366
  msgstr ""
367
 
368
+ #: breadcrumb_navxt_admin.php:474
369
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
370
  msgstr ""
371
 
372
+ #: breadcrumb_navxt_admin.php:494
373
+ #: breadcrumb_navxt_admin.php:583
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
374
  msgid "%s Template"
375
  msgstr ""
376
 
377
+ #: breadcrumb_navxt_admin.php:494
378
+ #: breadcrumb_navxt_admin.php:583
379
  msgid "The template for %s breadcrumbs."
380
  msgstr ""
381
 
382
+ #: breadcrumb_navxt_admin.php:495
383
+ #: breadcrumb_navxt_admin.php:584
384
  msgid "%s Template (Unlinked)"
385
  msgstr ""
386
 
387
+ #: breadcrumb_navxt_admin.php:495
388
+ #: breadcrumb_navxt_admin.php:584
389
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
390
  msgstr ""
391
 
392
+ #: breadcrumb_navxt_admin.php:500
393
  msgid "%s Root Page"
394
  msgstr ""
395
 
396
+ #: breadcrumb_navxt_admin.php:503
397
  msgid "&mdash; Select &mdash;"
398
  msgstr ""
399
 
400
+ #: breadcrumb_navxt_admin.php:507
401
  msgid "%s Archive Display"
402
  msgstr ""
403
 
404
+ #: breadcrumb_navxt_admin.php:507
405
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
406
  msgstr ""
407
 
408
+ #: breadcrumb_navxt_admin.php:508
409
+ msgid "%s Hierarchy Display"
410
  msgstr ""
411
 
412
+ #: breadcrumb_navxt_admin.php:508
413
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
414
  msgstr ""
415
 
416
+ #: breadcrumb_navxt_admin.php:512
417
+ msgid "%s Hierarchy"
418
  msgstr ""
419
 
420
+ #: breadcrumb_navxt_admin.php:544
421
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
422
+ msgstr ""
423
+
424
+ #: breadcrumb_navxt_admin.php:544
425
+ msgid "Taxonomies"
426
  msgstr ""
427
 
428
+ #: breadcrumb_navxt_admin.php:548
429
  msgid "Category Template"
430
  msgstr ""
431
 
432
+ #: breadcrumb_navxt_admin.php:548
433
  msgid "The template for category breadcrumbs."
434
  msgstr ""
435
 
436
+ #: breadcrumb_navxt_admin.php:549
437
  msgid "Category Template (Unlinked)"
438
  msgstr ""
439
 
440
+ #: breadcrumb_navxt_admin.php:549
441
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
442
  msgstr ""
443
 
444
+ #: breadcrumb_navxt_admin.php:555
445
  msgid "Tag Template"
446
  msgstr ""
447
 
448
+ #: breadcrumb_navxt_admin.php:555
449
  msgid "The template for tag breadcrumbs."
450
  msgstr ""
451
 
452
+ #: breadcrumb_navxt_admin.php:556
453
  msgid "Tag Template (Unlinked)"
454
  msgstr ""
455
 
456
+ #: breadcrumb_navxt_admin.php:556
457
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
458
  msgstr ""
459
 
460
+ #: breadcrumb_navxt_admin.php:559
461
+ msgid "Post Formats"
462
+ msgstr ""
463
+
464
+ #: breadcrumb_navxt_admin.php:562
465
+ msgid "Post Format Template"
466
+ msgstr ""
467
+
468
+ #: breadcrumb_navxt_admin.php:562
469
+ msgid "The template for post format breadcrumbs."
470
+ msgstr ""
471
+
472
+ #: breadcrumb_navxt_admin.php:563
473
+ msgid "Post Format Template (Unlinked)"
474
+ msgstr ""
475
+
476
+ #: breadcrumb_navxt_admin.php:563
477
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
478
+ msgstr ""
479
+
480
+ #: breadcrumb_navxt_admin.php:593
481
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
482
+ msgstr ""
483
+
484
+ #: breadcrumb_navxt_admin.php:593
485
+ #: breadcrumb_navxt_admin.php:602
486
  msgid "Miscellaneous"
487
  msgstr ""
488
 
489
+ #: breadcrumb_navxt_admin.php:594
490
+ msgid "Author Archives"
491
+ msgstr ""
492
+
493
+ #: breadcrumb_navxt_admin.php:597
494
  msgid "Author Template"
495
  msgstr ""
496
 
497
+ #: breadcrumb_navxt_admin.php:597
498
  msgid "The template for author breadcrumbs."
499
  msgstr ""
500
 
501
+ #: breadcrumb_navxt_admin.php:598
502
  msgid "Author Template (Unlinked)"
503
  msgstr ""
504
 
505
+ #: breadcrumb_navxt_admin.php:598
506
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
507
  msgstr ""
508
 
509
+ #: breadcrumb_navxt_admin.php:599
510
  msgid "Author Display Format"
511
  msgstr ""
512
 
513
+ #: breadcrumb_navxt_admin.php:599
514
  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."
515
  msgstr ""
516
 
517
+ #: breadcrumb_navxt_admin.php:605
518
  msgid "Date Template"
519
  msgstr ""
520
 
521
+ #: breadcrumb_navxt_admin.php:605
522
  msgid "The template for date breadcrumbs."
523
  msgstr ""
524
 
525
+ #: breadcrumb_navxt_admin.php:606
526
  msgid "Date Template (Unlinked)"
527
  msgstr ""
528
 
529
+ #: breadcrumb_navxt_admin.php:606
530
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
531
  msgstr ""
532
 
533
+ #: breadcrumb_navxt_admin.php:607
534
  msgid "Search Template"
535
  msgstr ""
536
 
537
+ #: breadcrumb_navxt_admin.php:607
538
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
539
  msgstr ""
540
 
541
+ #: breadcrumb_navxt_admin.php:608
542
  msgid "Search Template (Unlinked)"
543
  msgstr ""
544
 
545
+ #: breadcrumb_navxt_admin.php:608
546
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
547
  msgstr ""
548
 
549
+ #: breadcrumb_navxt_admin.php:609
550
  msgid "404 Title"
551
  msgstr ""
552
 
553
+ #: breadcrumb_navxt_admin.php:610
554
  msgid "404 Template"
555
  msgstr ""
556
 
557
+ #: breadcrumb_navxt_admin.php:610
558
  msgid "The template for 404 breadcrumbs."
559
  msgstr ""
560
 
561
+ #: breadcrumb_navxt_admin.php:616
562
  msgid "Save Changes"
563
  msgstr ""
564
 
565
+ #: breadcrumb_navxt_admin.php:661
566
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
567
+ msgstr ""
568
+
569
+ #: breadcrumb_navxt_admin.php:662
570
+ #: breadcrumb_navxt_class.php:60
571
+ msgid "%htitle%"
572
+ msgstr ""
573
+
574
+ #: breadcrumb_navxt_class.php:64
575
+ #: breadcrumb_navxt_class.php:216
576
+ #: breadcrumb_navxt_class.php:224
577
+ #: breadcrumb_navxt_class.php:230
578
+ #: breadcrumb_navxt_class.php:244
579
+ #: breadcrumb_navxt_class.php:256
580
+ #: breadcrumb_navxt_class.php:268
581
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
582
+ msgstr ""
583
+
584
+ #: breadcrumb_navxt_class.php:214
585
+ #: breadcrumb_navxt_class.php:222
586
+ msgid "Home"
587
+ msgstr ""
588
+
589
+ #: breadcrumb_navxt_class.php:251
590
+ msgid "Page %htitle%"
591
+ msgstr ""
592
+
593
+ #: breadcrumb_navxt_class.php:275
594
+ msgid "404"
595
+ msgstr ""
596
+
597
+ #: breadcrumb_navxt_class.php:278
598
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
599
+ msgstr ""
600
+
601
+ #: breadcrumb_navxt_class.php:280
602
+ msgid "Search results for &#39;%htitle%&#39;"
603
+ msgstr ""
604
+
605
+ #: breadcrumb_navxt_class.php:283
606
+ #: breadcrumb_navxt_class.php:288
607
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
608
+ msgstr ""
609
+
610
+ #: breadcrumb_navxt_class.php:293
611
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
612
+ msgstr ""
613
+
614
+ #: breadcrumb_navxt_class.php:295
615
+ msgid "Articles by: %htitle%"
616
+ msgstr ""
617
+
618
+ #: breadcrumb_navxt_class.php:300
619
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
620
+ msgstr ""
621
+
622
+ #: breadcrumb_navxt_class.php:304
623
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
624
+ msgstr ""
625
+
626
+ #: breadcrumb_navxt_widget.php:33
627
+ msgid "Adds a breadcrumb trail to your sidebar"
628
+ msgstr ""
629
+
630
+ #: breadcrumb_navxt_widget.php:92
631
+ msgid "Title:"
632
+ msgstr ""
633
+
634
+ #: breadcrumb_navxt_widget.php:96
635
+ msgid "Text to show before the trail:"
636
+ msgstr ""
637
+
638
+ #: breadcrumb_navxt_widget.php:100
639
+ msgid "Output trail as:"
640
+ msgstr ""
641
+
642
+ #: breadcrumb_navxt_widget.php:102
643
+ msgid "List"
644
+ msgstr ""
645
+
646
+ #: breadcrumb_navxt_widget.php:103
647
+ msgid "Schema.org"
648
+ msgstr ""
649
+
650
+ #: breadcrumb_navxt_widget.php:104
651
+ msgid "Plain"
652
+ msgstr ""
653
+
654
+ #: breadcrumb_navxt_widget.php:109
655
+ msgid "Link the breadcrumbs"
656
+ msgstr ""
657
+
658
+ #: breadcrumb_navxt_widget.php:111
659
+ msgid "Reverse the order of the trail"
660
+ msgstr ""
661
+
662
+ #: breadcrumb_navxt_widget.php:113
663
+ msgid "Hide the trail on the front page"
664
+ msgstr ""
665
+
666
+ #: includes/mtekk_adminkit.php:204
667
  msgid "Settings"
668
  msgstr ""
669
 
670
+ #: includes/mtekk_adminkit.php:274
671
  msgid "Your settings are out of date."
672
  msgstr ""
673
 
674
+ #: includes/mtekk_adminkit.php:274
675
+ #: includes/mtekk_adminkit.php:283
676
  msgid "Migrate the settings now."
677
  msgstr ""
678
 
679
+ #: includes/mtekk_adminkit.php:274
680
+ #: includes/mtekk_adminkit.php:283
681
  msgid "Migrate now."
682
  msgstr ""
683
 
684
+ #: includes/mtekk_adminkit.php:283
685
+ msgid "Your settings are for a newer version."
686
+ msgstr ""
687
+
688
+ #: includes/mtekk_adminkit.php:291
689
  msgid "Your plugin install is incomplete."
690
  msgstr ""
691
 
692
+ #: includes/mtekk_adminkit.php:291
693
  msgid "Load default settings now."
694
  msgstr ""
695
 
696
+ #: includes/mtekk_adminkit.php:291
697
  msgid "Complete now."
698
  msgstr ""
699
 
700
+ #: includes/mtekk_adminkit.php:299
701
  msgid "Your plugin settings are invalid."
702
  msgstr ""
703
 
704
+ #: includes/mtekk_adminkit.php:299
705
  msgid "Attempt to fix settings now."
706
  msgstr ""
707
 
708
+ #: includes/mtekk_adminkit.php:299
709
  msgid "Fix now."
710
  msgstr ""
711
 
712
+ #: includes/mtekk_adminkit.php:477
713
  msgid "Settings successfully saved."
714
  msgstr ""
715
 
716
+ #: includes/mtekk_adminkit.php:477
717
+ #: includes/mtekk_adminkit.php:482
718
  msgid "Undo the options save."
719
  msgstr ""
720
 
721
+ #: includes/mtekk_adminkit.php:477
722
+ #: includes/mtekk_adminkit.php:482
723
+ #: includes/mtekk_adminkit.php:587
724
+ #: includes/mtekk_adminkit.php:611
725
+ #: includes/mtekk_adminkit.php:628
726
  msgid "Undo"
727
  msgstr ""
728
 
729
+ #: includes/mtekk_adminkit.php:482
730
  msgid "Some settings were not saved."
731
  msgstr ""
732
 
733
+ #: includes/mtekk_adminkit.php:483
734
  msgid "The following settings were not saved:"
735
  msgstr ""
736
 
737
+ #: includes/mtekk_adminkit.php:488
738
  msgid "Please include this message in your %sbug report%s."
739
  msgstr ""
740
 
741
+ #: includes/mtekk_adminkit.php:488
742
  msgid "Go to the %s support post for your version."
743
  msgstr ""
744
 
745
+ #: includes/mtekk_adminkit.php:587
746
  msgid "Settings successfully imported from the uploaded file."
747
  msgstr ""
748
 
749
+ #: includes/mtekk_adminkit.php:587
750
  msgid "Undo the options import."
751
  msgstr ""
752
 
753
+ #: includes/mtekk_adminkit.php:592
754
  msgid "Importing settings from file failed."
755
  msgstr ""
756
 
757
+ #: includes/mtekk_adminkit.php:611
758
  msgid "Settings successfully reset to the default values."
759
  msgstr ""
760
 
761
+ #: includes/mtekk_adminkit.php:611
762
  msgid "Undo the options reset."
763
  msgstr ""
764
 
765
+ #: includes/mtekk_adminkit.php:628
766
  msgid "Settings successfully undid the last operation."
767
  msgstr ""
768
 
769
+ #: includes/mtekk_adminkit.php:628
770
  msgid "Undo the last undo operation."
771
  msgstr ""
772
 
773
+ #: includes/mtekk_adminkit.php:663
774
  msgid "Settings successfully migrated."
775
  msgstr ""
776
 
777
+ #: includes/mtekk_adminkit.php:670
778
  msgid "Default settings successfully installed."
779
  msgstr ""
780
 
781
+ #: includes/mtekk_adminkit.php:771
782
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
783
  msgstr ""
784
 
785
+ #: includes/mtekk_adminkit.php:774
786
  msgid "Settings File"
787
  msgstr ""
788
 
789
+ #: includes/mtekk_adminkit.php:777
790
  msgid "Select a XML settings file to upload and import settings from."
791
  msgstr ""
792
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt.pot CHANGED
@@ -1,772 +1,836 @@
1
- # Copyright (C) 2010
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
- "POT-Creation-Date: 2011-12-03 04:49:09+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: breadcrumb_navxt_widget.php:32
16
- msgid "Adds a breadcrumb trail to your sidebar"
17
- msgstr ""
18
-
19
- #: breadcrumb_navxt_widget.php:93
20
- msgid "Title:"
21
- msgstr ""
22
-
23
- #: breadcrumb_navxt_widget.php:97
24
- msgid "Output trail as:"
25
- msgstr ""
26
-
27
- #: breadcrumb_navxt_widget.php:99
28
- msgid "List"
29
- msgstr ""
30
-
31
- #: breadcrumb_navxt_widget.php:100
32
- msgid "RDFa"
33
- msgstr ""
34
-
35
- #: breadcrumb_navxt_widget.php:101
36
- msgid "Microformat"
37
- msgstr ""
38
-
39
- #: breadcrumb_navxt_widget.php:102
40
- msgid "Plain"
41
- msgstr ""
42
-
43
- #: breadcrumb_navxt_widget.php:107
44
- msgid "Link the breadcrumbs"
45
- msgstr ""
46
-
47
- #: breadcrumb_navxt_widget.php:109
48
- msgid "Reverse the order of the trail"
49
- msgstr ""
50
-
51
- #: breadcrumb_navxt_widget.php:111
52
- msgid "Hide the trail on the front page"
53
- msgstr ""
54
-
55
  #: breadcrumb_navxt_admin.php:36
56
  msgid ""
57
  "Your PHP version is too old, please upgrade to a newer version. Your version "
58
- "is %s, Breadcrumb NavXT requires %s"
59
  msgstr ""
60
 
61
- #: breadcrumb_navxt_admin.php:113
62
  msgid "Insufficient privileges to proceed."
63
  msgstr ""
64
 
65
- #: breadcrumb_navxt_admin.php:204
66
  msgid "Tips for the settings are located below select options."
67
  msgstr ""
68
 
69
- #: breadcrumb_navxt_admin.php:205
70
  msgid "Resources"
71
  msgstr ""
72
 
73
- #: breadcrumb_navxt_admin.php:206
74
  msgid ""
75
  "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
76
  "available on the author's website."
77
  msgstr ""
78
 
79
- #: breadcrumb_navxt_admin.php:206
80
  msgid "Go to the Breadcrumb NavXT tag archive."
81
  msgstr ""
82
 
83
- #: breadcrumb_navxt_admin.php:207
84
  msgid ""
85
  "%sOnline Documentation%s: Check out the documentation for more indepth "
86
  "technical information."
87
  msgstr ""
88
 
89
- #: breadcrumb_navxt_admin.php:207
90
  msgid "Go to the Breadcrumb NavXT online documentation"
91
  msgstr ""
92
 
93
- #: breadcrumb_navxt_admin.php:208
94
  msgid ""
95
  "%sReport a Bug%s: If you think you have found a bug, please include your "
96
  "WordPress version and details on how to reproduce the bug."
97
  msgstr ""
98
 
99
- #: breadcrumb_navxt_admin.php:208 breadcrumb_navxt_admin.php:211
100
  msgid "Go to the Breadcrumb NavXT support post for your version."
101
  msgstr ""
102
 
103
- #: breadcrumb_navxt_admin.php:209
104
  msgid "Giving Back"
105
  msgstr ""
106
 
107
- #: breadcrumb_navxt_admin.php:210
108
  msgid ""
109
  "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
110
  "buying the author a beer."
111
  msgstr ""
112
 
113
- #: breadcrumb_navxt_admin.php:210
114
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
115
  msgstr ""
116
 
117
- #: breadcrumb_navxt_admin.php:211
118
  msgid ""
119
  "%sTranslate%s: Is your language not available? Contact John Havlik to get "
120
  "translating."
121
  msgstr ""
122
 
123
- #: breadcrumb_navxt_admin.php:216 breadcrumb_navxt_admin.php:307
 
 
 
 
 
124
  msgid "General"
125
  msgstr ""
126
 
127
- #: breadcrumb_navxt_admin.php:219
128
  msgid ""
129
  "For the settings on this page to take effect, you must either use the "
130
  "included Breadcrumb NavXT widget, or place either of the code sections below "
131
  "into your theme."
132
  msgstr ""
133
 
134
- #: breadcrumb_navxt_admin.php:220
135
  msgid "Breadcrumb trail with separators"
136
  msgstr ""
137
 
138
- #: breadcrumb_navxt_admin.php:226
139
  msgid "Breadcrumb trail in list form"
140
  msgstr ""
141
 
142
- #: breadcrumb_navxt_admin.php:235
143
  msgid "Quick Start"
144
  msgstr ""
145
 
146
- #: breadcrumb_navxt_admin.php:238
147
  msgid ""
148
  "Using the code from the Quick Start section above, the following CSS can be "
149
  "used as base for styling your breadcrumb trail."
150
  msgstr ""
151
 
152
- #: breadcrumb_navxt_admin.php:250
153
  msgid "Styling"
154
  msgstr ""
155
 
156
- #: breadcrumb_navxt_admin.php:256
157
  msgid "Import/Export/Reset"
158
  msgstr ""
159
 
160
- #: breadcrumb_navxt_admin.php:280 includes/mtekk_adminkit.php:765
161
  msgid "Import"
162
  msgstr ""
163
 
164
- #: breadcrumb_navxt_admin.php:281 includes/mtekk_adminkit.php:766
165
  msgid "Export"
166
  msgstr ""
167
 
168
- #: breadcrumb_navxt_admin.php:282 includes/mtekk_adminkit.php:767
169
  msgid "Reset"
170
  msgstr ""
171
 
172
- #: breadcrumb_navxt_admin.php:295
173
  msgid "Breadcrumb NavXT Settings"
174
  msgstr ""
175
 
176
- #: breadcrumb_navxt_admin.php:310
 
 
 
 
 
 
177
  msgid "Breadcrumb Separator"
178
  msgstr ""
179
 
180
- #: breadcrumb_navxt_admin.php:310
181
  msgid "Placed in between each breadcrumb."
182
  msgstr ""
183
 
184
- #: breadcrumb_navxt_admin.php:311
185
- msgid "Breadcrumb Max Title Length"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
  msgstr ""
187
 
188
- #: breadcrumb_navxt_admin.php:315
 
 
 
 
 
 
 
 
189
  msgid "Home Breadcrumb"
190
  msgstr ""
191
 
192
- #: breadcrumb_navxt_admin.php:320
193
  msgid "Place the home breadcrumb in the trail."
194
  msgstr ""
195
 
196
- #: breadcrumb_navxt_admin.php:325
197
  msgid "Home Title: "
198
  msgstr ""
199
 
200
- #: breadcrumb_navxt_admin.php:333
201
  msgid "Home Template"
202
  msgstr ""
203
 
204
- #: breadcrumb_navxt_admin.php:333
205
  msgid "The template for the home breadcrumb."
206
  msgstr ""
207
 
208
- #: breadcrumb_navxt_admin.php:334
209
  msgid "Home Template (Unlinked)"
210
  msgstr ""
211
 
212
- #: breadcrumb_navxt_admin.php:334
213
  msgid ""
214
  "The template for the home breadcrumb, used when the breadcrumb is not linked."
215
  msgstr ""
216
 
217
- #: breadcrumb_navxt_admin.php:335
218
  msgid "Blog Breadcrumb"
219
  msgstr ""
220
 
221
- #: breadcrumb_navxt_admin.php:335
222
  msgid "Place the blog breadcrumb in the trail."
223
  msgstr ""
224
 
225
- #: breadcrumb_navxt_admin.php:336
226
  msgid "Blog Template"
227
  msgstr ""
228
 
229
- #: breadcrumb_navxt_admin.php:336
230
  msgid ""
231
  "The template for the blog breadcrumb, used only in static front page "
232
  "environments."
233
  msgstr ""
234
 
235
- #: breadcrumb_navxt_admin.php:337
236
  msgid "Blog Template (Unlinked)"
237
  msgstr ""
238
 
239
- #: breadcrumb_navxt_admin.php:337
240
  msgid ""
241
  "The template for the blog breadcrumb, used only in static front page "
242
  "environments and when the breadcrumb is not linked."
243
  msgstr ""
244
 
245
- #: breadcrumb_navxt_admin.php:341
 
 
 
 
246
  msgid "Main Site Breadcrumb"
247
  msgstr ""
248
 
249
- #: breadcrumb_navxt_admin.php:346
250
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
251
  msgstr ""
252
 
253
- #: breadcrumb_navxt_admin.php:351
254
  msgid "Main Site Home Title: "
255
  msgstr ""
256
 
257
- #: breadcrumb_navxt_admin.php:360
258
  msgid "Main Site Home Template"
259
  msgstr ""
260
 
261
- #: breadcrumb_navxt_admin.php:360
262
  msgid ""
263
  "The template for the main site home breadcrumb, used only in multisite "
264
  "environments."
265
  msgstr ""
266
 
267
- #: breadcrumb_navxt_admin.php:361
268
  msgid "Main Site Home Template (Unlinked)"
269
  msgstr ""
270
 
271
- #: breadcrumb_navxt_admin.php:361
272
  msgid ""
273
  "The template for the main site home breadcrumb, used only in multisite "
274
  "environments and when the breadcrumb is not linked."
275
  msgstr ""
276
 
277
- #: breadcrumb_navxt_admin.php:366
278
- msgid "Current Item"
279
- msgstr ""
280
-
281
- #: breadcrumb_navxt_admin.php:369
282
- msgid "Link Current Item"
283
- msgstr ""
284
-
285
- #: breadcrumb_navxt_admin.php:369
286
- msgid "Yes"
287
- msgstr ""
288
-
289
- #: breadcrumb_navxt_admin.php:370
290
- msgid "Current Item Template"
291
- msgstr ""
292
-
293
- #: breadcrumb_navxt_admin.php:370
294
- msgid "The template for current item breadcrumbs."
295
- msgstr ""
296
-
297
- #: breadcrumb_navxt_admin.php:371
298
- msgid "Current Item Template (Unlinked)"
299
- msgstr ""
300
-
301
- #: breadcrumb_navxt_admin.php:371
302
  msgid ""
303
- "The template for current item breadcrumbs, used only when the breadcrumb is "
304
- "not linked."
305
  msgstr ""
306
 
307
- #: breadcrumb_navxt_admin.php:372
308
- msgid "Paged Breadcrumb"
309
  msgstr ""
310
 
311
- #: breadcrumb_navxt_admin.php:372
312
- msgid "Include the paged breadcrumb in the breadcrumb trail."
313
  msgstr ""
314
 
315
- #: breadcrumb_navxt_admin.php:372
316
- msgid ""
317
- "Indicates that the user is on a page other than the first on paginated posts/"
318
- "pages."
319
- msgstr ""
320
-
321
- #: breadcrumb_navxt_admin.php:373
322
- msgid "Paged Template"
323
- msgstr ""
324
-
325
- #: breadcrumb_navxt_admin.php:373
326
- msgid "The template for paged breadcrumbs."
327
- msgstr ""
328
-
329
- #: breadcrumb_navxt_admin.php:378
330
- msgid "Posts &amp; Pages"
331
- msgstr ""
332
-
333
- #: breadcrumb_navxt_admin.php:381
334
  msgid "Post Template"
335
  msgstr ""
336
 
337
- #: breadcrumb_navxt_admin.php:381
338
  msgid "The template for post breadcrumbs."
339
  msgstr ""
340
 
341
- #: breadcrumb_navxt_admin.php:382
342
  msgid "Post Template (Unlinked)"
343
  msgstr ""
344
 
345
- #: breadcrumb_navxt_admin.php:382
346
  msgid ""
347
  "The template for post breadcrumbs, used only when the breadcrumb is not "
348
  "linked."
349
  msgstr ""
350
 
351
- #: breadcrumb_navxt_admin.php:383
352
- msgid "Post Taxonomy Display"
353
  msgstr ""
354
 
355
- #: breadcrumb_navxt_admin.php:383
356
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
357
  msgstr ""
358
 
359
- #: breadcrumb_navxt_admin.php:387
360
- msgid "Post Taxonomy"
361
  msgstr ""
362
 
363
- #: breadcrumb_navxt_admin.php:391
364
  msgid "Categories"
365
  msgstr ""
366
 
367
- #: breadcrumb_navxt_admin.php:392 breadcrumb_navxt_admin.php:490
368
  msgid "Dates"
369
  msgstr ""
370
 
371
- #: breadcrumb_navxt_admin.php:393
372
  msgid "Tags"
373
  msgstr ""
374
 
375
- #: breadcrumb_navxt_admin.php:394 breadcrumb_navxt_admin.php:491
376
- msgid "Pages"
 
 
 
 
377
  msgstr ""
378
 
379
- #: breadcrumb_navxt_admin.php:405 breadcrumb_navxt_admin.php:502
380
- msgid "The taxonomy which the breadcrumb trail will show."
381
  msgstr ""
382
 
383
- #: breadcrumb_navxt_admin.php:409
384
  msgid "Page Template"
385
  msgstr ""
386
 
387
- #: breadcrumb_navxt_admin.php:409
388
  msgid "The template for page breadcrumbs."
389
  msgstr ""
390
 
391
- #: breadcrumb_navxt_admin.php:410
392
  msgid "Page Template (Unlinked)"
393
  msgstr ""
394
 
395
- #: breadcrumb_navxt_admin.php:410
396
  msgid ""
397
  "The template for page breadcrumbs, used only when the breadcrumb is not "
398
  "linked."
399
  msgstr ""
400
 
401
- #: breadcrumb_navxt_admin.php:411
402
  msgid "Attachment Template"
403
  msgstr ""
404
 
405
- #: breadcrumb_navxt_admin.php:411
406
  msgid "The template for attachment breadcrumbs."
407
  msgstr ""
408
 
409
- #: breadcrumb_navxt_admin.php:412
410
  msgid "Attachment Template (Unlinked)"
411
  msgstr ""
412
 
413
- #: breadcrumb_navxt_admin.php:412
414
  msgid ""
415
  "The template for attachment breadcrumbs, used only when the breadcrumb is "
416
  "not linked."
417
  msgstr ""
418
 
419
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:600
420
- #: breadcrumb_navxt_class.php:56 breadcrumb_navxt_class.php:205
421
- #: breadcrumb_navxt_class.php:213 breadcrumb_navxt_class.php:219
422
- #: breadcrumb_navxt_class.php:235 breadcrumb_navxt_class.php:247
423
- #: breadcrumb_navxt_class.php:259
424
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
425
- msgstr ""
426
-
427
- #: breadcrumb_navxt_admin.php:428 breadcrumb_navxt_admin.php:601
428
- msgid "%htitle%"
429
- msgstr ""
430
-
431
- #: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
432
  msgid "%s Template"
433
  msgstr ""
434
 
435
- #: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
436
  msgid "The template for %s breadcrumbs."
437
  msgstr ""
438
 
439
- #: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
440
  msgid "%s Template (Unlinked)"
441
  msgstr ""
442
 
443
- #: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
444
  msgid ""
445
  "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr ""
447
 
448
- #: breadcrumb_navxt_admin.php:471
449
  msgid "%s Root Page"
450
  msgstr ""
451
 
452
- #: breadcrumb_navxt_admin.php:474
453
  msgid "&mdash; Select &mdash;"
454
  msgstr ""
455
 
456
- #: breadcrumb_navxt_admin.php:478
457
  msgid "%s Archive Display"
458
  msgstr ""
459
 
460
- #: breadcrumb_navxt_admin.php:478
461
  msgid ""
462
  "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
463
  msgstr ""
464
 
465
- #: breadcrumb_navxt_admin.php:482
466
- msgid "%s Taxonomy Display"
467
  msgstr ""
468
 
469
- #: breadcrumb_navxt_admin.php:482
470
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
471
  msgstr ""
472
 
473
- #: breadcrumb_navxt_admin.php:486
474
- msgid "%s Taxonomy"
 
 
 
 
 
 
475
  msgstr ""
476
 
477
- #: breadcrumb_navxt_admin.php:512
478
- msgid "Categories &amp; Tags"
479
  msgstr ""
480
 
481
- #: breadcrumb_navxt_admin.php:515
482
  msgid "Category Template"
483
  msgstr ""
484
 
485
- #: breadcrumb_navxt_admin.php:515
486
  msgid "The template for category breadcrumbs."
487
  msgstr ""
488
 
489
- #: breadcrumb_navxt_admin.php:516
490
  msgid "Category Template (Unlinked)"
491
  msgstr ""
492
 
493
- #: breadcrumb_navxt_admin.php:516
494
  msgid ""
495
  "The template for category breadcrumbs, used only when the breadcrumb is not "
496
  "linked."
497
  msgstr ""
498
 
499
- #: breadcrumb_navxt_admin.php:517
500
  msgid "Tag Template"
501
  msgstr ""
502
 
503
- #: breadcrumb_navxt_admin.php:517
504
  msgid "The template for tag breadcrumbs."
505
  msgstr ""
506
 
507
- #: breadcrumb_navxt_admin.php:518
508
  msgid "Tag Template (Unlinked)"
509
  msgstr ""
510
 
511
- #: breadcrumb_navxt_admin.php:518
512
  msgid ""
513
  "The template for tag breadcrumbs, used only when the breadcrumb is not "
514
  "linked."
515
  msgstr ""
516
 
517
- #: breadcrumb_navxt_admin.php:551
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
518
  msgid "Miscellaneous"
519
  msgstr ""
520
 
521
- #: breadcrumb_navxt_admin.php:554
 
 
 
 
522
  msgid "Author Template"
523
  msgstr ""
524
 
525
- #: breadcrumb_navxt_admin.php:554
526
  msgid "The template for author breadcrumbs."
527
  msgstr ""
528
 
529
- #: breadcrumb_navxt_admin.php:555
530
  msgid "Author Template (Unlinked)"
531
  msgstr ""
532
 
533
- #: breadcrumb_navxt_admin.php:555
534
  msgid ""
535
  "The template for author breadcrumbs, used only when the breadcrumb is not "
536
  "linked."
537
  msgstr ""
538
 
539
- #: breadcrumb_navxt_admin.php:556
540
  msgid "Author Display Format"
541
  msgstr ""
542
 
543
- #: breadcrumb_navxt_admin.php:556
544
  msgid ""
545
  "display_name uses the name specified in \"Display name publicly as\" under "
546
  "the user profile the others correspond to options in the user profile."
547
  msgstr ""
548
 
549
- #: breadcrumb_navxt_admin.php:557
550
  msgid "Date Template"
551
  msgstr ""
552
 
553
- #: breadcrumb_navxt_admin.php:557
554
  msgid "The template for date breadcrumbs."
555
  msgstr ""
556
 
557
- #: breadcrumb_navxt_admin.php:558
558
  msgid "Date Template (Unlinked)"
559
  msgstr ""
560
 
561
- #: breadcrumb_navxt_admin.php:558
562
  msgid ""
563
  "The template for date breadcrumbs, used only when the breadcrumb is not "
564
  "linked."
565
  msgstr ""
566
 
567
- #: breadcrumb_navxt_admin.php:559
568
  msgid "Search Template"
569
  msgstr ""
570
 
571
- #: breadcrumb_navxt_admin.php:559
572
  msgid ""
573
  "The anchor template for search breadcrumbs, used only when the search "
574
  "results span several pages."
575
  msgstr ""
576
 
577
- #: breadcrumb_navxt_admin.php:560
578
  msgid "Search Template (Unlinked)"
579
  msgstr ""
580
 
581
- #: breadcrumb_navxt_admin.php:560
582
  msgid ""
583
  "The anchor template for search breadcrumbs, used only when the search "
584
  "results span several pages and the breadcrumb is not linked."
585
  msgstr ""
586
 
587
- #: breadcrumb_navxt_admin.php:561
588
  msgid "404 Title"
589
  msgstr ""
590
 
591
- #: breadcrumb_navxt_admin.php:562
592
  msgid "404 Template"
593
  msgstr ""
594
 
595
- #: breadcrumb_navxt_admin.php:562
596
  msgid "The template for 404 breadcrumbs."
597
  msgstr ""
598
 
599
- #: breadcrumb_navxt_admin.php:567
600
  msgid "Save Changes"
601
  msgstr ""
602
 
603
- #: includes/mtekk_adminkit.php:201
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
604
  msgid "Settings"
605
  msgstr ""
606
 
607
- #: includes/mtekk_adminkit.php:271
608
  msgid "Your settings are out of date."
609
  msgstr ""
610
 
611
- #: includes/mtekk_adminkit.php:271
612
  msgid "Migrate the settings now."
613
  msgstr ""
614
 
615
- #: includes/mtekk_adminkit.php:271
616
  msgid "Migrate now."
617
  msgstr ""
618
 
619
- #: includes/mtekk_adminkit.php:279
 
 
 
 
620
  msgid "Your plugin install is incomplete."
621
  msgstr ""
622
 
623
- #: includes/mtekk_adminkit.php:279
624
  msgid "Load default settings now."
625
  msgstr ""
626
 
627
- #: includes/mtekk_adminkit.php:279
628
  msgid "Complete now."
629
  msgstr ""
630
 
631
- #: includes/mtekk_adminkit.php:287
632
  msgid "Your plugin settings are invalid."
633
  msgstr ""
634
 
635
- #: includes/mtekk_adminkit.php:287
636
  msgid "Attempt to fix settings now."
637
  msgstr ""
638
 
639
- #: includes/mtekk_adminkit.php:287
640
  msgid "Fix now."
641
  msgstr ""
642
 
643
- #: includes/mtekk_adminkit.php:463
644
  msgid "Settings successfully saved."
645
  msgstr ""
646
 
647
- #: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
648
  msgid "Undo the options save."
649
  msgstr ""
650
 
651
- #: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
652
- #: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
653
- #: includes/mtekk_adminkit.php:614
654
  msgid "Undo"
655
  msgstr ""
656
 
657
- #: includes/mtekk_adminkit.php:468
658
  msgid "Some settings were not saved."
659
  msgstr ""
660
 
661
- #: includes/mtekk_adminkit.php:469
662
  msgid "The following settings were not saved:"
663
  msgstr ""
664
 
665
- #: includes/mtekk_adminkit.php:474
666
  msgid "Please include this message in your %sbug report%s."
667
  msgstr ""
668
 
669
- #: includes/mtekk_adminkit.php:474
670
  msgid "Go to the %s support post for your version."
671
  msgstr ""
672
 
673
- #: includes/mtekk_adminkit.php:573
674
  msgid "Settings successfully imported from the uploaded file."
675
  msgstr ""
676
 
677
- #: includes/mtekk_adminkit.php:573
678
  msgid "Undo the options import."
679
  msgstr ""
680
 
681
- #: includes/mtekk_adminkit.php:578
682
  msgid "Importing settings from file failed."
683
  msgstr ""
684
 
685
- #: includes/mtekk_adminkit.php:597
686
  msgid "Settings successfully reset to the default values."
687
  msgstr ""
688
 
689
- #: includes/mtekk_adminkit.php:597
690
  msgid "Undo the options reset."
691
  msgstr ""
692
 
693
- #: includes/mtekk_adminkit.php:614
694
  msgid "Settings successfully undid the last operation."
695
  msgstr ""
696
 
697
- #: includes/mtekk_adminkit.php:614
698
  msgid "Undo the last undo operation."
699
  msgstr ""
700
 
701
- #: includes/mtekk_adminkit.php:649
702
  msgid "Settings successfully migrated."
703
  msgstr ""
704
 
705
- #: includes/mtekk_adminkit.php:656
706
  msgid "Default settings successfully installed."
707
  msgstr ""
708
 
709
- #: includes/mtekk_adminkit.php:757
710
  msgid ""
711
  "Import settings from a XML file, export the current settings to a XML file, "
712
  "or reset to the default settings."
713
  msgstr ""
714
 
715
- #: includes/mtekk_adminkit.php:760
716
  msgid "Settings File"
717
  msgstr ""
718
 
719
- #: includes/mtekk_adminkit.php:763
720
  msgid "Select a XML settings file to upload and import settings from."
721
  msgstr ""
722
-
723
- #: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
724
- msgid "Home"
725
- msgstr ""
726
-
727
- #: breadcrumb_navxt_class.php:230
728
- msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
729
- msgstr ""
730
-
731
- #: breadcrumb_navxt_class.php:242
732
- msgid "Page %htitle%"
733
- msgstr ""
734
-
735
- #: breadcrumb_navxt_class.php:266
736
- msgid "404"
737
- msgstr ""
738
-
739
- #: breadcrumb_navxt_class.php:269
740
- msgid ""
741
- "Search results for &#39;<a title=\"Go to the first page of search results "
742
- "for %title%.\" href=\"%link%\">%htitle%</a>&#39;"
743
- msgstr ""
744
-
745
- #: breadcrumb_navxt_class.php:271
746
- msgid "Search results for &#39;%htitle%&#39;"
747
- msgstr ""
748
-
749
- #: breadcrumb_navxt_class.php:274
750
- msgid ""
751
- "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
752
- msgstr ""
753
-
754
- #: breadcrumb_navxt_class.php:279
755
- msgid ""
756
- "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%"
757
- "link%\">%htitle%</a>"
758
- msgstr ""
759
-
760
- #: breadcrumb_navxt_class.php:281
761
- msgid "Articles by: %htitle%"
762
- msgstr ""
763
-
764
- #: breadcrumb_navxt_class.php:286
765
- msgid ""
766
- "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</"
767
- "a>"
768
- msgstr ""
769
-
770
- #: breadcrumb_navxt_class.php:290
771
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
772
- msgstr ""
1
+ # Copyright (C) 2012
2
  # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
+ "POT-Creation-Date: 2012-08-17 22:18:33+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  #: breadcrumb_navxt_admin.php:36
16
  msgid ""
17
  "Your PHP version is too old, please upgrade to a newer version. Your version "
18
+ "is %1$s, Breadcrumb NavXT requires %2$s"
19
  msgstr ""
20
 
21
+ #: breadcrumb_navxt_admin.php:120
22
  msgid "Insufficient privileges to proceed."
23
  msgstr ""
24
 
25
+ #: breadcrumb_navxt_admin.php:222
26
  msgid "Tips for the settings are located below select options."
27
  msgstr ""
28
 
29
+ #: breadcrumb_navxt_admin.php:223
30
  msgid "Resources"
31
  msgstr ""
32
 
33
+ #: breadcrumb_navxt_admin.php:224
34
  msgid ""
35
  "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
36
  "available on the author's website."
37
  msgstr ""
38
 
39
+ #: breadcrumb_navxt_admin.php:224
40
  msgid "Go to the Breadcrumb NavXT tag archive."
41
  msgstr ""
42
 
43
+ #: breadcrumb_navxt_admin.php:225
44
  msgid ""
45
  "%sOnline Documentation%s: Check out the documentation for more indepth "
46
  "technical information."
47
  msgstr ""
48
 
49
+ #: breadcrumb_navxt_admin.php:225
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr ""
52
 
53
+ #: breadcrumb_navxt_admin.php:226
54
  msgid ""
55
  "%sReport a Bug%s: If you think you have found a bug, please include your "
56
  "WordPress version and details on how to reproduce the bug."
57
  msgstr ""
58
 
59
+ #: breadcrumb_navxt_admin.php:226
60
  msgid "Go to the Breadcrumb NavXT support post for your version."
61
  msgstr ""
62
 
63
+ #: breadcrumb_navxt_admin.php:227
64
  msgid "Giving Back"
65
  msgstr ""
66
 
67
+ #: breadcrumb_navxt_admin.php:228
68
  msgid ""
69
  "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
70
  "buying the author a beer."
71
  msgstr ""
72
 
73
+ #: breadcrumb_navxt_admin.php:228
74
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
75
  msgstr ""
76
 
77
+ #: breadcrumb_navxt_admin.php:229
78
  msgid ""
79
  "%sTranslate%s: Is your language not available? Contact John Havlik to get "
80
  "translating."
81
  msgstr ""
82
 
83
+ #: breadcrumb_navxt_admin.php:229
84
+ msgid "Go to the Breadcrumb NavXT translation project."
85
+ msgstr ""
86
+
87
+ #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
88
+ #: breadcrumb_navxt_admin.php:326
89
  msgid "General"
90
  msgstr ""
91
 
92
+ #: breadcrumb_navxt_admin.php:237
93
  msgid ""
94
  "For the settings on this page to take effect, you must either use the "
95
  "included Breadcrumb NavXT widget, or place either of the code sections below "
96
  "into your theme."
97
  msgstr ""
98
 
99
+ #: breadcrumb_navxt_admin.php:238
100
  msgid "Breadcrumb trail with separators"
101
  msgstr ""
102
 
103
+ #: breadcrumb_navxt_admin.php:244
104
  msgid "Breadcrumb trail in list form"
105
  msgstr ""
106
 
107
+ #: breadcrumb_navxt_admin.php:253
108
  msgid "Quick Start"
109
  msgstr ""
110
 
111
+ #: breadcrumb_navxt_admin.php:256
112
  msgid ""
113
  "Using the code from the Quick Start section above, the following CSS can be "
114
  "used as base for styling your breadcrumb trail."
115
  msgstr ""
116
 
117
+ #: breadcrumb_navxt_admin.php:268
118
  msgid "Styling"
119
  msgstr ""
120
 
121
+ #: breadcrumb_navxt_admin.php:274
122
  msgid "Import/Export/Reset"
123
  msgstr ""
124
 
125
+ #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
126
  msgid "Import"
127
  msgstr ""
128
 
129
+ #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
130
  msgid "Export"
131
  msgstr ""
132
 
133
+ #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
134
  msgid "Reset"
135
  msgstr ""
136
 
137
+ #: breadcrumb_navxt_admin.php:313
138
  msgid "Breadcrumb NavXT Settings"
139
  msgstr ""
140
 
141
+ #: breadcrumb_navxt_admin.php:325
142
+ msgid ""
143
+ "A collection of settings most likely to be modified are located under this "
144
+ "tab."
145
+ msgstr ""
146
+
147
+ #: breadcrumb_navxt_admin.php:329
148
  msgid "Breadcrumb Separator"
149
  msgstr ""
150
 
151
+ #: breadcrumb_navxt_admin.php:329
152
  msgid "Placed in between each breadcrumb."
153
  msgstr ""
154
 
155
+ #: breadcrumb_navxt_admin.php:333
156
+ msgid "Title Length"
157
+ msgstr ""
158
+
159
+ #: breadcrumb_navxt_admin.php:338
160
+ msgid "Limit the length of the breadcrumb title."
161
+ msgstr ""
162
+
163
+ #: breadcrumb_navxt_admin.php:343
164
+ msgid "Max Title Length: "
165
+ msgstr ""
166
+
167
+ #: breadcrumb_navxt_admin.php:354
168
+ msgid "Current Item"
169
+ msgstr ""
170
+
171
+ #: breadcrumb_navxt_admin.php:357
172
+ msgid "Link Current Item"
173
+ msgstr ""
174
+
175
+ #: breadcrumb_navxt_admin.php:357
176
+ msgid "Yes"
177
+ msgstr ""
178
+
179
+ #: breadcrumb_navxt_admin.php:358
180
+ msgid "Paged Breadcrumb"
181
+ msgstr ""
182
+
183
+ #: breadcrumb_navxt_admin.php:358
184
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
185
+ msgstr ""
186
+
187
+ #: breadcrumb_navxt_admin.php:358
188
+ msgid ""
189
+ "Indicates that the user is on a page other than the first on paginated posts/"
190
+ "pages."
191
  msgstr ""
192
 
193
+ #: breadcrumb_navxt_admin.php:359
194
+ msgid "Paged Template"
195
+ msgstr ""
196
+
197
+ #: breadcrumb_navxt_admin.php:359
198
+ msgid "The template for paged breadcrumbs."
199
+ msgstr ""
200
+
201
+ #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
202
  msgid "Home Breadcrumb"
203
  msgstr ""
204
 
205
+ #: breadcrumb_navxt_admin.php:372
206
  msgid "Place the home breadcrumb in the trail."
207
  msgstr ""
208
 
209
+ #: breadcrumb_navxt_admin.php:377
210
  msgid "Home Title: "
211
  msgstr ""
212
 
213
+ #: breadcrumb_navxt_admin.php:385
214
  msgid "Home Template"
215
  msgstr ""
216
 
217
+ #: breadcrumb_navxt_admin.php:385
218
  msgid "The template for the home breadcrumb."
219
  msgstr ""
220
 
221
+ #: breadcrumb_navxt_admin.php:386
222
  msgid "Home Template (Unlinked)"
223
  msgstr ""
224
 
225
+ #: breadcrumb_navxt_admin.php:386
226
  msgid ""
227
  "The template for the home breadcrumb, used when the breadcrumb is not linked."
228
  msgstr ""
229
 
230
+ #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
231
  msgid "Blog Breadcrumb"
232
  msgstr ""
233
 
234
+ #: breadcrumb_navxt_admin.php:393
235
  msgid "Place the blog breadcrumb in the trail."
236
  msgstr ""
237
 
238
+ #: breadcrumb_navxt_admin.php:394
239
  msgid "Blog Template"
240
  msgstr ""
241
 
242
+ #: breadcrumb_navxt_admin.php:394
243
  msgid ""
244
  "The template for the blog breadcrumb, used only in static front page "
245
  "environments."
246
  msgstr ""
247
 
248
+ #: breadcrumb_navxt_admin.php:395
249
  msgid "Blog Template (Unlinked)"
250
  msgstr ""
251
 
252
+ #: breadcrumb_navxt_admin.php:395
253
  msgid ""
254
  "The template for the blog breadcrumb, used only in static front page "
255
  "environments and when the breadcrumb is not linked."
256
  msgstr ""
257
 
258
+ #: breadcrumb_navxt_admin.php:399
259
+ msgid "Mainsite Breadcrumb"
260
+ msgstr ""
261
+
262
+ #: breadcrumb_navxt_admin.php:403
263
  msgid "Main Site Breadcrumb"
264
  msgstr ""
265
 
266
+ #: breadcrumb_navxt_admin.php:408
267
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
268
  msgstr ""
269
 
270
+ #: breadcrumb_navxt_admin.php:413
271
  msgid "Main Site Home Title: "
272
  msgstr ""
273
 
274
+ #: breadcrumb_navxt_admin.php:422
275
  msgid "Main Site Home Template"
276
  msgstr ""
277
 
278
+ #: breadcrumb_navxt_admin.php:422
279
  msgid ""
280
  "The template for the main site home breadcrumb, used only in multisite "
281
  "environments."
282
  msgstr ""
283
 
284
+ #: breadcrumb_navxt_admin.php:423
285
  msgid "Main Site Home Template (Unlinked)"
286
  msgstr ""
287
 
288
+ #: breadcrumb_navxt_admin.php:423
289
  msgid ""
290
  "The template for the main site home breadcrumb, used only in multisite "
291
  "environments and when the breadcrumb is not linked."
292
  msgstr ""
293
 
294
+ #: breadcrumb_navxt_admin.php:430
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  msgid ""
296
+ "The settings for all post types (Posts, Pages, and Custom Post Types) are "
297
+ "located under this tab."
298
  msgstr ""
299
 
300
+ #: breadcrumb_navxt_admin.php:430
301
+ msgid "Post Types"
302
  msgstr ""
303
 
304
+ #: breadcrumb_navxt_admin.php:431
305
+ msgid "Posts"
306
  msgstr ""
307
 
308
+ #: breadcrumb_navxt_admin.php:434
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  msgid "Post Template"
310
  msgstr ""
311
 
312
+ #: breadcrumb_navxt_admin.php:434
313
  msgid "The template for post breadcrumbs."
314
  msgstr ""
315
 
316
+ #: breadcrumb_navxt_admin.php:435
317
  msgid "Post Template (Unlinked)"
318
  msgstr ""
319
 
320
+ #: breadcrumb_navxt_admin.php:435
321
  msgid ""
322
  "The template for post breadcrumbs, used only when the breadcrumb is not "
323
  "linked."
324
  msgstr ""
325
 
326
+ #: breadcrumb_navxt_admin.php:436
327
+ msgid "Post Hierarchy Display"
328
  msgstr ""
329
 
330
+ #: breadcrumb_navxt_admin.php:436
331
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
332
  msgstr ""
333
 
334
+ #: breadcrumb_navxt_admin.php:440
335
+ msgid "Post Hierarchy"
336
  msgstr ""
337
 
338
+ #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
339
  msgid "Categories"
340
  msgstr ""
341
 
342
+ #: breadcrumb_navxt_admin.php:445
343
  msgid "Dates"
344
  msgstr ""
345
 
346
+ #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
347
  msgid "Tags"
348
  msgstr ""
349
 
350
+ #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
351
+ msgid "Post Parent"
352
+ msgstr ""
353
+
354
+ #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
355
+ msgid "The hierarchy which the breadcrumb trail will show."
356
  msgstr ""
357
 
358
+ #: breadcrumb_navxt_admin.php:468
359
+ msgid "Pages"
360
  msgstr ""
361
 
362
+ #: breadcrumb_navxt_admin.php:471
363
  msgid "Page Template"
364
  msgstr ""
365
 
366
+ #: breadcrumb_navxt_admin.php:471
367
  msgid "The template for page breadcrumbs."
368
  msgstr ""
369
 
370
+ #: breadcrumb_navxt_admin.php:472
371
  msgid "Page Template (Unlinked)"
372
  msgstr ""
373
 
374
+ #: breadcrumb_navxt_admin.php:472
375
  msgid ""
376
  "The template for page breadcrumbs, used only when the breadcrumb is not "
377
  "linked."
378
  msgstr ""
379
 
380
+ #: breadcrumb_navxt_admin.php:473
381
  msgid "Attachment Template"
382
  msgstr ""
383
 
384
+ #: breadcrumb_navxt_admin.php:473
385
  msgid "The template for attachment breadcrumbs."
386
  msgstr ""
387
 
388
+ #: breadcrumb_navxt_admin.php:474
389
  msgid "Attachment Template (Unlinked)"
390
  msgstr ""
391
 
392
+ #: breadcrumb_navxt_admin.php:474
393
  msgid ""
394
  "The template for attachment breadcrumbs, used only when the breadcrumb is "
395
  "not linked."
396
  msgstr ""
397
 
398
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
 
 
 
 
 
 
 
 
 
 
 
 
399
  msgid "%s Template"
400
  msgstr ""
401
 
402
+ #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
403
  msgid "The template for %s breadcrumbs."
404
  msgstr ""
405
 
406
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
407
  msgid "%s Template (Unlinked)"
408
  msgstr ""
409
 
410
+ #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
411
  msgid ""
412
  "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
413
  msgstr ""
414
 
415
+ #: breadcrumb_navxt_admin.php:500
416
  msgid "%s Root Page"
417
  msgstr ""
418
 
419
+ #: breadcrumb_navxt_admin.php:503
420
  msgid "&mdash; Select &mdash;"
421
  msgstr ""
422
 
423
+ #: breadcrumb_navxt_admin.php:507
424
  msgid "%s Archive Display"
425
  msgstr ""
426
 
427
+ #: breadcrumb_navxt_admin.php:507
428
  msgid ""
429
  "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
430
  msgstr ""
431
 
432
+ #: breadcrumb_navxt_admin.php:508
433
+ msgid "%s Hierarchy Display"
434
  msgstr ""
435
 
436
+ #: breadcrumb_navxt_admin.php:508
437
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
438
  msgstr ""
439
 
440
+ #: breadcrumb_navxt_admin.php:512
441
+ msgid "%s Hierarchy"
442
+ msgstr ""
443
+
444
+ #: breadcrumb_navxt_admin.php:544
445
+ msgid ""
446
+ "The settings for all taxonomies (including Categories, Tags, and custom "
447
+ "taxonomies) are located under this tab."
448
  msgstr ""
449
 
450
+ #: breadcrumb_navxt_admin.php:544
451
+ msgid "Taxonomies"
452
  msgstr ""
453
 
454
+ #: breadcrumb_navxt_admin.php:548
455
  msgid "Category Template"
456
  msgstr ""
457
 
458
+ #: breadcrumb_navxt_admin.php:548
459
  msgid "The template for category breadcrumbs."
460
  msgstr ""
461
 
462
+ #: breadcrumb_navxt_admin.php:549
463
  msgid "Category Template (Unlinked)"
464
  msgstr ""
465
 
466
+ #: breadcrumb_navxt_admin.php:549
467
  msgid ""
468
  "The template for category breadcrumbs, used only when the breadcrumb is not "
469
  "linked."
470
  msgstr ""
471
 
472
+ #: breadcrumb_navxt_admin.php:555
473
  msgid "Tag Template"
474
  msgstr ""
475
 
476
+ #: breadcrumb_navxt_admin.php:555
477
  msgid "The template for tag breadcrumbs."
478
  msgstr ""
479
 
480
+ #: breadcrumb_navxt_admin.php:556
481
  msgid "Tag Template (Unlinked)"
482
  msgstr ""
483
 
484
+ #: breadcrumb_navxt_admin.php:556
485
  msgid ""
486
  "The template for tag breadcrumbs, used only when the breadcrumb is not "
487
  "linked."
488
  msgstr ""
489
 
490
+ #: breadcrumb_navxt_admin.php:559
491
+ msgid "Post Formats"
492
+ msgstr ""
493
+
494
+ #: breadcrumb_navxt_admin.php:562
495
+ msgid "Post Format Template"
496
+ msgstr ""
497
+
498
+ #: breadcrumb_navxt_admin.php:562
499
+ msgid "The template for post format breadcrumbs."
500
+ msgstr ""
501
+
502
+ #: breadcrumb_navxt_admin.php:563
503
+ msgid "Post Format Template (Unlinked)"
504
+ msgstr ""
505
+
506
+ #: breadcrumb_navxt_admin.php:563
507
+ msgid ""
508
+ "The template for post_format breadcrumbs, used only when the breadcrumb is "
509
+ "not linked."
510
+ msgstr ""
511
+
512
+ #: breadcrumb_navxt_admin.php:593
513
+ msgid ""
514
+ "The settings for author and date archives, searches, and 404 pages are "
515
+ "located under this tab."
516
+ msgstr ""
517
+
518
+ #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
519
  msgid "Miscellaneous"
520
  msgstr ""
521
 
522
+ #: breadcrumb_navxt_admin.php:594
523
+ msgid "Author Archives"
524
+ msgstr ""
525
+
526
+ #: breadcrumb_navxt_admin.php:597
527
  msgid "Author Template"
528
  msgstr ""
529
 
530
+ #: breadcrumb_navxt_admin.php:597
531
  msgid "The template for author breadcrumbs."
532
  msgstr ""
533
 
534
+ #: breadcrumb_navxt_admin.php:598
535
  msgid "Author Template (Unlinked)"
536
  msgstr ""
537
 
538
+ #: breadcrumb_navxt_admin.php:598
539
  msgid ""
540
  "The template for author breadcrumbs, used only when the breadcrumb is not "
541
  "linked."
542
  msgstr ""
543
 
544
+ #: breadcrumb_navxt_admin.php:599
545
  msgid "Author Display Format"
546
  msgstr ""
547
 
548
+ #: breadcrumb_navxt_admin.php:599
549
  msgid ""
550
  "display_name uses the name specified in \"Display name publicly as\" under "
551
  "the user profile the others correspond to options in the user profile."
552
  msgstr ""
553
 
554
+ #: breadcrumb_navxt_admin.php:605
555
  msgid "Date Template"
556
  msgstr ""
557
 
558
+ #: breadcrumb_navxt_admin.php:605
559
  msgid "The template for date breadcrumbs."
560
  msgstr ""
561
 
562
+ #: breadcrumb_navxt_admin.php:606
563
  msgid "Date Template (Unlinked)"
564
  msgstr ""
565
 
566
+ #: breadcrumb_navxt_admin.php:606
567
  msgid ""
568
  "The template for date breadcrumbs, used only when the breadcrumb is not "
569
  "linked."
570
  msgstr ""
571
 
572
+ #: breadcrumb_navxt_admin.php:607
573
  msgid "Search Template"
574
  msgstr ""
575
 
576
+ #: breadcrumb_navxt_admin.php:607
577
  msgid ""
578
  "The anchor template for search breadcrumbs, used only when the search "
579
  "results span several pages."
580
  msgstr ""
581
 
582
+ #: breadcrumb_navxt_admin.php:608
583
  msgid "Search Template (Unlinked)"
584
  msgstr ""
585
 
586
+ #: breadcrumb_navxt_admin.php:608
587
  msgid ""
588
  "The anchor template for search breadcrumbs, used only when the search "
589
  "results span several pages and the breadcrumb is not linked."
590
  msgstr ""
591
 
592
+ #: breadcrumb_navxt_admin.php:609
593
  msgid "404 Title"
594
  msgstr ""
595
 
596
+ #: breadcrumb_navxt_admin.php:610
597
  msgid "404 Template"
598
  msgstr ""
599
 
600
+ #: breadcrumb_navxt_admin.php:610
601
  msgid "The template for 404 breadcrumbs."
602
  msgstr ""
603
 
604
+ #: breadcrumb_navxt_admin.php:616
605
  msgid "Save Changes"
606
  msgstr ""
607
 
608
+ #: breadcrumb_navxt_admin.php:661
609
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
610
+ msgstr ""
611
+
612
+ #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
613
+ msgid "%htitle%"
614
+ msgstr ""
615
+
616
+ #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
617
+ #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
618
+ #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
619
+ #: breadcrumb_navxt_class.php:268
620
+ msgid ""
621
+ "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
622
+ msgstr ""
623
+
624
+ #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
625
+ msgid "Home"
626
+ msgstr ""
627
+
628
+ #: breadcrumb_navxt_class.php:251
629
+ msgid "Page %htitle%"
630
+ msgstr ""
631
+
632
+ #: breadcrumb_navxt_class.php:275
633
+ msgid "404"
634
+ msgstr ""
635
+
636
+ #: breadcrumb_navxt_class.php:278
637
+ msgid ""
638
+ "Search results for &#39;<a title=\"Go to the first page of search results "
639
+ "for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
640
+ msgstr ""
641
+
642
+ #: breadcrumb_navxt_class.php:280
643
+ msgid "Search results for &#39;%htitle%&#39;"
644
+ msgstr ""
645
+
646
+ #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
647
+ msgid ""
648
+ "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%"
649
+ "\">%htitle%</a>"
650
+ msgstr ""
651
+
652
+ #: breadcrumb_navxt_class.php:293
653
+ msgid ""
654
+ "Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
655
+ "\"%link%\" class=\"%type%\">%htitle%</a>"
656
+ msgstr ""
657
+
658
+ #: breadcrumb_navxt_class.php:295
659
+ msgid "Articles by: %htitle%"
660
+ msgstr ""
661
+
662
+ #: breadcrumb_navxt_class.php:300
663
+ msgid ""
664
+ "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class="
665
+ "\"%type%\">%htitle%</a>"
666
+ msgstr ""
667
+
668
+ #: breadcrumb_navxt_class.php:304
669
+ msgid ""
670
+ "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">"
671
+ "%htitle%</a>"
672
+ msgstr ""
673
+
674
+ #: breadcrumb_navxt_widget.php:33
675
+ msgid "Adds a breadcrumb trail to your sidebar"
676
+ msgstr ""
677
+
678
+ #: breadcrumb_navxt_widget.php:92
679
+ msgid "Title:"
680
+ msgstr ""
681
+
682
+ #: breadcrumb_navxt_widget.php:96
683
+ msgid "Text to show before the trail:"
684
+ msgstr ""
685
+
686
+ #: breadcrumb_navxt_widget.php:100
687
+ msgid "Output trail as:"
688
+ msgstr ""
689
+
690
+ #: breadcrumb_navxt_widget.php:102
691
+ msgid "List"
692
+ msgstr ""
693
+
694
+ #: breadcrumb_navxt_widget.php:103
695
+ msgid "Schema.org"
696
+ msgstr ""
697
+
698
+ #: breadcrumb_navxt_widget.php:104
699
+ msgid "Plain"
700
+ msgstr ""
701
+
702
+ #: breadcrumb_navxt_widget.php:109
703
+ msgid "Link the breadcrumbs"
704
+ msgstr ""
705
+
706
+ #: breadcrumb_navxt_widget.php:111
707
+ msgid "Reverse the order of the trail"
708
+ msgstr ""
709
+
710
+ #: breadcrumb_navxt_widget.php:113
711
+ msgid "Hide the trail on the front page"
712
+ msgstr ""
713
+
714
+ #: includes/mtekk_adminkit.php:204
715
  msgid "Settings"
716
  msgstr ""
717
 
718
+ #: includes/mtekk_adminkit.php:274
719
  msgid "Your settings are out of date."
720
  msgstr ""
721
 
722
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
723
  msgid "Migrate the settings now."
724
  msgstr ""
725
 
726
+ #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
727
  msgid "Migrate now."
728
  msgstr ""
729
 
730
+ #: includes/mtekk_adminkit.php:283
731
+ msgid "Your settings are for a newer version."
732
+ msgstr ""
733
+
734
+ #: includes/mtekk_adminkit.php:291
735
  msgid "Your plugin install is incomplete."
736
  msgstr ""
737
 
738
+ #: includes/mtekk_adminkit.php:291
739
  msgid "Load default settings now."
740
  msgstr ""
741
 
742
+ #: includes/mtekk_adminkit.php:291
743
  msgid "Complete now."
744
  msgstr ""
745
 
746
+ #: includes/mtekk_adminkit.php:299
747
  msgid "Your plugin settings are invalid."
748
  msgstr ""
749
 
750
+ #: includes/mtekk_adminkit.php:299
751
  msgid "Attempt to fix settings now."
752
  msgstr ""
753
 
754
+ #: includes/mtekk_adminkit.php:299
755
  msgid "Fix now."
756
  msgstr ""
757
 
758
+ #: includes/mtekk_adminkit.php:477
759
  msgid "Settings successfully saved."
760
  msgstr ""
761
 
762
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
763
  msgid "Undo the options save."
764
  msgstr ""
765
 
766
+ #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
767
+ #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
768
+ #: includes/mtekk_adminkit.php:628
769
  msgid "Undo"
770
  msgstr ""
771
 
772
+ #: includes/mtekk_adminkit.php:482
773
  msgid "Some settings were not saved."
774
  msgstr ""
775
 
776
+ #: includes/mtekk_adminkit.php:483
777
  msgid "The following settings were not saved:"
778
  msgstr ""
779
 
780
+ #: includes/mtekk_adminkit.php:488
781
  msgid "Please include this message in your %sbug report%s."
782
  msgstr ""
783
 
784
+ #: includes/mtekk_adminkit.php:488
785
  msgid "Go to the %s support post for your version."
786
  msgstr ""
787
 
788
+ #: includes/mtekk_adminkit.php:587
789
  msgid "Settings successfully imported from the uploaded file."
790
  msgstr ""
791
 
792
+ #: includes/mtekk_adminkit.php:587
793
  msgid "Undo the options import."
794
  msgstr ""
795
 
796
+ #: includes/mtekk_adminkit.php:592
797
  msgid "Importing settings from file failed."
798
  msgstr ""
799
 
800
+ #: includes/mtekk_adminkit.php:611
801
  msgid "Settings successfully reset to the default values."
802
  msgstr ""
803
 
804
+ #: includes/mtekk_adminkit.php:611
805
  msgid "Undo the options reset."
806
  msgstr ""
807
 
808
+ #: includes/mtekk_adminkit.php:628
809
  msgid "Settings successfully undid the last operation."
810
  msgstr ""
811
 
812
+ #: includes/mtekk_adminkit.php:628
813
  msgid "Undo the last undo operation."
814
  msgstr ""
815
 
816
+ #: includes/mtekk_adminkit.php:663
817
  msgid "Settings successfully migrated."
818
  msgstr ""
819
 
820
+ #: includes/mtekk_adminkit.php:670
821
  msgid "Default settings successfully installed."
822
  msgstr ""
823
 
824
+ #: includes/mtekk_adminkit.php:771
825
  msgid ""
826
  "Import settings from a XML file, export the current settings to a XML file, "
827
  "or reset to the default settings."
828
  msgstr ""
829
 
830
+ #: includes/mtekk_adminkit.php:774
831
  msgid "Settings File"
832
  msgstr ""
833
 
834
+ #: includes/mtekk_adminkit.php:777
835
  msgid "Select a XML settings file to upload and import settings from."
836
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: mtekk, hakre
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.2
6
- Tested up to: 3.4
7
- Stable tag: 4.1.0
8
  Adds breadcrumb navigation showing the visitor's path to their current location.
9
 
10
  == Description ==
@@ -18,6 +18,7 @@ Breadcrumb NavXT distributes with translations for the following languages:
18
  * English - default -
19
  * Russian by Alexander Samsonov
20
  * German by Daniel Lang
 
21
  * French (France) by Emmanuel Beziat
22
  * Norwegian (Bokm�l) by Jan Rosvoldsve
23
  * Spanish (Spain) by Karin Sequen
@@ -28,12 +29,13 @@ Breadcrumb NavXT distributes with translations for the following languages:
28
  * Azerbaijani by Zaur Bayramov
29
 
30
  The following were not included, but are in the process of being updated:
 
31
  * Italian by Tamara Balestri
32
  * Malay by Ben Di
33
  * Hindi by Love Chandel
34
 
35
  The following translations are in need of a maintainer:
36
- * Dutch originally maintained by Stan Lenssen
37
  * Japanese originally maintained by Kazuhiro Terada
38
 
39
  Don't see your language on the list? Stop by [Breadcrumb NavXT's translation project](http://translate.mtekk.us/projects/breadcrumb-navxt "Go to Breadcrumb NavXT's GlotPress based translation project").
@@ -43,6 +45,16 @@ Don't see your language on the list? Stop by [Breadcrumb NavXT's translation pro
43
  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.
44
 
45
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
46
  = 4.1.0 =
47
  * Behavior change: Made the behavior of posts using flat taxonomies match the behavior of using a hierarchical taxonomy when the post is not assigned a taxonomy term.
48
  * New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they don�t have a parent.
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.2
6
+ Tested up to: 3.4.2
7
+ Stable tag: 4.2.0
8
  Adds breadcrumb navigation showing the visitor's path to their current location.
9
 
10
  == Description ==
18
  * English - default -
19
  * Russian by Alexander Samsonov
20
  * German by Daniel Lang
21
+ * Dutch by Joachim Jensen
22
  * French (France) by Emmanuel Beziat
23
  * Norwegian (Bokm�l) by Jan Rosvoldsve
24
  * Spanish (Spain) by Karin Sequen
29
  * Azerbaijani by Zaur Bayramov
30
 
31
  The following were not included, but are in the process of being updated:
32
+
33
  * Italian by Tamara Balestri
34
  * Malay by Ben Di
35
  * Hindi by Love Chandel
36
 
37
  The following translations are in need of a maintainer:
38
+
39
  * Japanese originally maintained by Kazuhiro Terada
40
 
41
  Don't see your language on the list? Stop by [Breadcrumb NavXT's translation project](http://translate.mtekk.us/projects/breadcrumb-navxt "Go to Breadcrumb NavXT's GlotPress based translation project").
45
  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.
46
 
47
  == Changelog ==
48
+ = 4.2.0 =
49
+ * Behaviour change: Date archives are only available for the 'post' post type.
50
+ * New feature: All Custom Post Types can now either use a post parent, or taxonomy based hierarchy.
51
+ * New feature: Post Format archives are now supported.
52
+ * New feature: Reorganized settings page with more responsive elements.
53
+ * Bug fix: Widget will now display properly when told to include the paged breadcrumb on the main posts archive.
54
+ * Bug fix: Using flat taxonomies as the post hierarchy no longer causes extraneous breadcrumb templates to be applied.
55
+ * Bug fix: Mainsite link now works on posts and pages in multisite environments.
56
+ * Bug fix: `bcn_breadcrumb::title_trim()` no longer cuts HTML encoded characters.
57
+ * Bug fix: `bcn_breadcrumb::title_trim()` no longer trims the title when the title length is equal to the max length.
58
  = 4.1.0 =
59
  * Behavior change: Made the behavior of posts using flat taxonomies match the behavior of using a hierarchical taxonomy when the post is not assigned a taxonomy term.
60
  * New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they don�t have a parent.
uninstall.php CHANGED
@@ -1,34 +1,34 @@
1
- <?php
2
- /**
3
- * Breadcrumb NavXT - uninstall script
4
- *
5
- * uninstall script based on WordPress Uninstall Plugin API
6
- *
7
- *
8
- * Because bcn_admin->uninstall() does not work with WPMU,
9
- * an uninstaller class has been written, that encapsulates
10
- * the uninstall logic and calls bcn_admin->uninstall()
11
- * when applicable.
12
- *
13
- * @see http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7#Uninstall_Plugin_API
14
- * @see http://trac.mu.wordpress.org/ticket/967
15
- *
16
- * this uninstall.php file was executed multiple times because
17
- * breadcrumb navxt (until 3.3) constsisted of two plugins:
18
- *
19
- * 1.) breadcrumb_navxt_class.php / Core
20
- * 2.) breadcrumb_navxt_admin.php / Adminstration Interface
21
- *
22
- * @author Tom Klingenberg
23
- */
24
-
25
-
26
- /*
27
- * @see bcn_uninstaller
28
- */
29
- require_once(dirname(__FILE__) . '/breadcrumb_navxt_uninstaller.php');
30
-
31
- /*
32
- * main
33
- */
34
- new bcn_uninstaller( array('plugin' => $plugin) );
1
+ <?php
2
+ /**
3
+ * Breadcrumb NavXT - uninstall script
4
+ *
5
+ * uninstall script based on WordPress Uninstall Plugin API
6
+ *
7
+ *
8
+ * Because bcn_admin->uninstall() does not work with WPMU,
9
+ * an uninstaller class has been written, that encapsulates
10
+ * the uninstall logic and calls bcn_admin->uninstall()
11
+ * when applicable.
12
+ *
13
+ * @see http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7#Uninstall_Plugin_API
14
+ * @see http://trac.mu.wordpress.org/ticket/967
15
+ *
16
+ * this uninstall.php file was executed multiple times because
17
+ * breadcrumb navxt (until 3.3) constsisted of two plugins:
18
+ *
19
+ * 1.) breadcrumb_navxt_class.php / Core
20
+ * 2.) breadcrumb_navxt_admin.php / Adminstration Interface
21
+ *
22
+ * @author Tom Klingenberg
23
+ */
24
+
25
+
26
+ /*
27
+ * @see bcn_uninstaller
28
+ */
29
+ require_once(dirname(__FILE__) . '/breadcrumb_navxt_uninstaller.php');
30
+
31
+ /*
32
+ * main
33
+ */
34
+ new bcn_uninstaller( array('plugin' => $plugin) );