Breadcrumb NavXT - Version 5.3.0

Version Description

Release date: November 12th, 2015

  • Behavior change: Breadcrumb NavXT will no longer default to setting the root page for CPTs.
  • Behavior change: Breadcrumb NavXT will no longer inject a breadcrumb for a CPT archive page if a root page is set for that CPT.
  • Behavior change: Breadcrumb NavXT now defaults to BCN_SETTINGS_USE_LOCAL rather than BCN_SETTINGS_USE_NETWORK if all of the BCN_SETTINGS_* globals are not defined.
  • Behavior change: The included widget now supports RDFA style, Schema.org BreadcrumbList format rather than the deprecated Google Breadcrumbs format.
  • Behavior change: Default settings for breadcrumb templates now conform to RDFA style, Schema.org BreadcrumbList format rather than the deprecated Google Breadcrumbs format.
  • New feature: Added bcn_widget_display_trail action to enhance the included widgets extensibility.
  • New feature: Added bcn_widget_display_types action to enhance the included widgets extensibility.
  • New feature: The plugin uninstaller has been re-factored, includes support for uninstalling in PHP5.2.
  • New feature: Unit tests added for all non-deprecated features in bcn_breadcrumb.
  • New feature: Unit tests added for the uninstaller.
  • New feature: Date based hierarchies are now available for CPTs.
  • New feature: Date archives restricted by CPT are now supported.
  • New feature: Taxonomy archives restricted by CPT are now supported.
  • Bug fix: Fixed issue where the multibyte supplicant functions were not always being included due to WordPress shipping with its own subset of theses functions.
  • Bug fix: Fixed issue where on an archive for a post type the archive breadcrumb would appear twice.
Download this release

Release Info

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

Code changes from version 5.2.2 to 5.3.0

Files changed (47) hide show
  1. breadcrumb-navxt.php +31 -34
  2. class.bcn_admin.php +7 -7
  3. class.bcn_breadcrumb.php +41 -24
  4. class.bcn_breadcrumb_trail.php +199 -100
  5. class.bcn_network_admin.php +9 -7
  6. class.bcn_uninstaller.php +0 -184
  7. class.bcn_widget.php +9 -3
  8. includes/class.mtekk_adminkit_uninstaller.php +70 -0
  9. languages/breadcrumb-navxt-ca.mo +0 -0
  10. languages/breadcrumb-navxt-ca.po +0 -841
  11. languages/breadcrumb-navxt-cs_CZ.mo +0 -0
  12. languages/breadcrumb-navxt-cs_CZ.po +0 -776
  13. languages/breadcrumb-navxt-da_DK.mo +0 -0
  14. languages/breadcrumb-navxt-da_DK.po +0 -841
  15. languages/breadcrumb-navxt-de_DE.mo +0 -0
  16. languages/breadcrumb-navxt-de_DE.po +0 -841
  17. languages/breadcrumb-navxt-es_ES.mo +0 -0
  18. languages/breadcrumb-navxt-es_ES.po +434 -439
  19. languages/breadcrumb-navxt-et.mo +0 -0
  20. languages/breadcrumb-navxt-et.po +434 -439
  21. languages/breadcrumb-navxt-fa_IR.mo +0 -0
  22. languages/breadcrumb-navxt-fa_IR.po +0 -843
  23. languages/breadcrumb-navxt-fi.mo +0 -0
  24. languages/breadcrumb-navxt-fi.po +434 -439
  25. languages/breadcrumb-navxt-it_IT.mo +0 -0
  26. languages/breadcrumb-navxt-it_IT.po +0 -841
  27. languages/breadcrumb-navxt-ko_KR.mo +0 -0
  28. languages/breadcrumb-navxt-ko_KR.po +0 -841
  29. languages/breadcrumb-navxt-lt_LT.mo +0 -0
  30. languages/breadcrumb-navxt-lt_LT.po +0 -845
  31. languages/breadcrumb-navxt-nl_NL.mo +0 -0
  32. languages/breadcrumb-navxt-nl_NL.po +0 -841
  33. languages/breadcrumb-navxt-pt_PT.mo +0 -0
  34. languages/breadcrumb-navxt-pt_PT.po +0 -841
  35. languages/breadcrumb-navxt-ru_RU.mo +0 -0
  36. languages/breadcrumb-navxt-ru_RU.po +0 -841
  37. languages/breadcrumb-navxt-sv_SE.mo +0 -0
  38. languages/breadcrumb-navxt-sv_SE.po +0 -841
  39. languages/breadcrumb-navxt-tr_TR.mo +0 -0
  40. languages/breadcrumb-navxt-tr_TR.po +0 -841
  41. languages/breadcrumb-navxt-zh_CN.mo +0 -0
  42. languages/breadcrumb-navxt-zh_CN.po +0 -841
  43. languages/breadcrumb-navxt.mo +0 -0
  44. languages/breadcrumb-navxt.po +0 -861
  45. languages/breadcrumb-navxt.pot +200 -209
  46. readme.txt +72 -157
  47. uninstall.php +69 -4
breadcrumb-navxt.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Breadcrumb NavXT
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
- Version: 5.2.2
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
@@ -41,10 +41,7 @@ if(version_compare(phpversion(), '5.3.0', '<'))
41
  }
42
  return;
43
  }
44
- if(!function_exists('mb_strlen'))
45
- {
46
- require_once(dirname(__FILE__) . '/includes/multibyte_supplicant.php');
47
- }
48
  //Include admin base class
49
  if(!class_exists('mtekk_adminKit'))
50
  {
@@ -60,7 +57,7 @@ $breadcrumb_navxt = NULL;
60
  //TODO change to extends mtekk_plugKit
61
  class breadcrumb_navxt
62
  {
63
- const version = '5.2.2';
64
  protected $name = 'Breadcrumb NavXT';
65
  protected $identifier = 'breadcrumb-navxt';
66
  protected $unique_prefix = 'bcn';
@@ -128,7 +125,8 @@ class breadcrumb_navxt
128
  'itemtype' => true,
129
  'xmlns:v' => true,
130
  'typeof' => true,
131
- 'property' => true
 
132
  ),
133
  'img' => array(
134
  'alt' => true,
@@ -147,7 +145,8 @@ class breadcrumb_navxt
147
  'itemtype' => true,
148
  'xmlns:v' => true,
149
  'typeof' => true,
150
- 'property' => true
 
151
  ),
152
  'span' => array(
153
  'title' => true,
@@ -166,7 +165,8 @@ class breadcrumb_navxt
166
  'itemtype' => true,
167
  'xmlns:v' => true,
168
  'typeof' => true,
169
- 'property' => true
 
170
  ),
171
  'h1' => array(
172
  'title' => true,
@@ -185,7 +185,8 @@ class breadcrumb_navxt
185
  'itemtype' => true,
186
  'xmlns:v' => true,
187
  'typeof' => true,
188
- 'property' => true
 
189
  ),
190
  'h2' => array(
191
  'title' => true,
@@ -204,7 +205,13 @@ class breadcrumb_navxt
204
  'itemtype' => true,
205
  'xmlns:v' => true,
206
  'typeof' => true,
207
- 'property' => true
 
 
 
 
 
 
208
  )
209
  );
210
  return mtekk_adminKit::array_merge_recursive($tags, $allowed_html);
@@ -253,8 +260,8 @@ class breadcrumb_navxt
253
  if(!isset($opts['Hpost_' . $post_type->name . '_template']) || !$post_type->hierarchical && !isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
254
  {
255
  //Add the necessary option array members
256
- $opts['Hpost_' . $post_type->name . '_template'] = __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>', 'breadcrumb-navxt');
257
- $opts['Hpost_' . $post_type->name . '_template_no_anchor'] = __('<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>', 'breadcrumb-navxt');
258
  if($post_type->has_archive == true || is_string($post_type->has_archive))
259
  {
260
  $opts['bpost_' . $post_type->name . '_archive_display'] = true;
@@ -263,18 +270,8 @@ class breadcrumb_navxt
263
  {
264
  $opts['bpost_' . $post_type->name . '_archive_display'] = false;
265
  }
266
- //Do type dependent tasks
267
- if($post_type->hierarchical)
268
- {
269
- //Set post_root for hierarchical types
270
- $opts['apost_' . $post_type->name . '_root'] = get_option('page_on_front');
271
- }
272
- //If it is flat, we need a taxonomy selection
273
- else
274
- {
275
- //Set post_root for flat types
276
- $opts['apost_' . $post_type->name . '_root'] = get_option('page_for_posts');
277
- }
278
  //Default to not displaying a taxonomy
279
  $opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
280
  //Loop through all of the possible taxonomies
@@ -320,8 +317,8 @@ class breadcrumb_navxt
320
  if(!isset($opts['Htax_' . $taxonomy->name . '_template']))
321
  {
322
  //Add the necessary option array members
323
- $opts['Htax_' . $taxonomy->name . '_template'] = __(sprintf('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %%title%% %s archives." href="%%link%%">%%htitle%%</a></span>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
324
- $opts['Htax_' . $taxonomy->name . '_template_no_anchor'] = __(sprintf('<span typeof="v:Breadcrumb"><span property="v:title">%%htitle%%</span></span>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
325
  }
326
  }
327
  }
@@ -345,15 +342,15 @@ class breadcrumb_navxt
345
  */
346
  private function get_settings()
347
  {
348
- //Let's begin by grabbing the current settings for the site (works for both multisite and single installs)
349
- $this->breadcrumb_trail->opt = wp_parse_args(get_site_option('bcn_options'), $this->opt);
350
  //If we're in multisite mode, look at the three BCN_SETTINGS globals
351
- if(defined('MULTISITE') && MULTISITE)
352
  {
353
- if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
354
  {
355
- //Grab the current settings for the current local site from the db
356
- $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
357
  }
358
  else if(defined('BCN_SETTINGS_FAVOR_LOCAL') && BCN_SETTINGS_FAVOR_LOCAL)
359
  {
@@ -363,7 +360,7 @@ class breadcrumb_navxt
363
  else if(defined('BCN_SETTINGS_FAVOR_NETWORK') && BCN_SETTINGS_FAVOR_NETWORK)
364
  {
365
  //Grab the current settings from the db
366
- $this->breadcrumb_trail->opt = wp_parse_args($this->breadcrumb_trail->opt, get_option('bcn_options'));
367
  }
368
  }
369
  }
3
  Plugin Name: Breadcrumb NavXT
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
+ Version: 5.3.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
41
  }
42
  return;
43
  }
44
+ require_once(dirname(__FILE__) . '/includes/multibyte_supplicant.php');
 
 
 
45
  //Include admin base class
46
  if(!class_exists('mtekk_adminKit'))
47
  {
57
  //TODO change to extends mtekk_plugKit
58
  class breadcrumb_navxt
59
  {
60
+ const version = '5.3.0';
61
  protected $name = 'Breadcrumb NavXT';
62
  protected $identifier = 'breadcrumb-navxt';
63
  protected $unique_prefix = 'bcn';
125
  'itemtype' => true,
126
  'xmlns:v' => true,
127
  'typeof' => true,
128
+ 'property' => true,
129
+ 'vocab' => true
130
  ),
131
  'img' => array(
132
  'alt' => true,
145
  'itemtype' => true,
146
  'xmlns:v' => true,
147
  'typeof' => true,
148
+ 'property' => true,
149
+ 'vocab' => true
150
  ),
151
  'span' => array(
152
  'title' => true,
165
  'itemtype' => true,
166
  'xmlns:v' => true,
167
  'typeof' => true,
168
+ 'property' => true,
169
+ 'vocab' => true
170
  ),
171
  'h1' => array(
172
  'title' => true,
185
  'itemtype' => true,
186
  'xmlns:v' => true,
187
  'typeof' => true,
188
+ 'property' => true,
189
+ 'vocab' => true
190
  ),
191
  'h2' => array(
192
  'title' => true,
205
  'itemtype' => true,
206
  'xmlns:v' => true,
207
  'typeof' => true,
208
+ 'property' => true,
209
+ 'vocab' => true
210
+ ),
211
+ 'meta' => array(
212
+ 'content' => true,
213
+ 'property' => true,
214
+ 'vocab' => true
215
  )
216
  );
217
  return mtekk_adminKit::array_merge_recursive($tags, $allowed_html);
260
  if(!isset($opts['Hpost_' . $post_type->name . '_template']) || !$post_type->hierarchical && !isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
261
  {
262
  //Add the necessary option array members
263
+ $opts['Hpost_' . $post_type->name . '_template'] = bcn_breadcrumb::get_default_template();
264
+ $opts['Hpost_' . $post_type->name . '_template_no_anchor'] = bcn_breadcrumb::default_template_no_anchor;
265
  if($post_type->has_archive == true || is_string($post_type->has_archive))
266
  {
267
  $opts['bpost_' . $post_type->name . '_archive_display'] = true;
270
  {
271
  $opts['bpost_' . $post_type->name . '_archive_display'] = false;
272
  }
273
+ //Default to not showing a post_root
274
+ $opts['apost_' . $post_type->name . '_root'] = 0;
 
 
 
 
 
 
 
 
 
 
275
  //Default to not displaying a taxonomy
276
  $opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
277
  //Loop through all of the possible taxonomies
317
  if(!isset($opts['Htax_' . $taxonomy->name . '_template']))
318
  {
319
  //Add the necessary option array members
320
+ $opts['Htax_' . $taxonomy->name . '_template'] = __(sprintf('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %%title%% %s archives." href="%%link%%" class="%%type%%"><span property="name">%%htitle%%</span></a><meta property="position" content="%%position%%"></span>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
321
+ $opts['Htax_' . $taxonomy->name . '_template_no_anchor'] = __(sprintf('<span property="itemListElement" typeof="ListItem"><span property="name">%%htitle%%</span><meta property="position" content="%%position%%"></span>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
322
  }
323
  }
324
  }
342
  */
343
  private function get_settings()
344
  {
345
+ //Grab the current settings for the current local site from the db
346
+ $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
347
  //If we're in multisite mode, look at the three BCN_SETTINGS globals
348
+ if(is_multisite())
349
  {
350
+ if(defined('BCN_SETTINGS_USE_NETWORK') && BCN_SETTINGS_USE_NETWORK)
351
  {
352
+ //Grab the current network wide settings
353
+ $this->breadcrumb_trail->opt = wp_parse_args(get_site_option('bcn_options'), $this->opt);
354
  }
355
  else if(defined('BCN_SETTINGS_FAVOR_LOCAL') && BCN_SETTINGS_FAVOR_LOCAL)
356
  {
360
  else if(defined('BCN_SETTINGS_FAVOR_NETWORK') && BCN_SETTINGS_FAVOR_NETWORK)
361
  {
362
  //Grab the current settings from the db
363
+ $this->breadcrumb_trail->opt = wp_parse_args(get_site_option('bcn_options'), get_option('bcn_options'));
364
  }
365
  }
366
  }
class.bcn_admin.php CHANGED
@@ -42,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
42
  */
43
  class bcn_admin extends mtekk_adminKit
44
  {
45
- const version = '5.2.2';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
@@ -323,9 +323,9 @@ class bcn_admin extends mtekk_adminKit
323
  /**
324
  * A message function that checks for the BCN_SETTINGS_* define statement
325
  */
326
- function multisite_settings_warn()
327
- {
328
- if(defined('MULTISITE') && MULTISITE)
329
  {
330
  if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
331
  {
@@ -346,11 +346,10 @@ class bcn_admin extends mtekk_adminKit
346
  //Fall through if no settings mode was set
347
  else
348
  {
349
- $this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK.', 'breadcrumb-navxt');
350
- $this->message['updated fade'][] = __('Warning: Your network settings will override any settings set in this page.', 'breadcrumb-navxt');
351
  }
352
  }
353
- }
354
  /**
355
  * A message function that checks for deprecated settings that are set and warns the user
356
  */
@@ -528,6 +527,7 @@ class bcn_admin extends mtekk_adminKit
528
  <?php
529
  //We use the value 'page' but really, this will follow the parent post hierarchy
530
  $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'), false, 'adminkit-enset');
 
531
  //Loop through all of the taxonomies in the array
532
  foreach($wp_taxonomies as $taxonomy)
533
  {
42
  */
43
  class bcn_admin extends mtekk_adminKit
44
  {
45
+ const version = '5.3.0';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
323
  /**
324
  * A message function that checks for the BCN_SETTINGS_* define statement
325
  */
326
+ function multisite_settings_warn()
327
+ {
328
+ if(is_multisite())
329
  {
330
  if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
331
  {
346
  //Fall through if no settings mode was set
347
  else
348
  {
349
+ $this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL.', 'breadcrumb-navxt');
 
350
  }
351
  }
352
+ }
353
  /**
354
  * A message function that checks for deprecated settings that are set and warns the user
355
  */
527
  <?php
528
  //We use the value 'page' but really, this will follow the parent post hierarchy
529
  $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'), false, 'adminkit-enset');
530
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'date', __('Dates', 'breadcrumb-navxt'), false, 'adminkit-enset');
531
  //Loop through all of the taxonomies in the array
532
  foreach($wp_taxonomies as $taxonomy)
533
  {
class.bcn_breadcrumb.php CHANGED
@@ -21,13 +21,13 @@ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
21
  class bcn_breadcrumb
22
  {
23
  //Our member variables
24
- const version = '5.2.2';
25
  //The main text that will be shown
26
  protected $title;
27
  //The breadcrumb's template, used durring assembly
28
  protected $template;
29
  //The breadcrumb's no anchor template, used durring assembly when there won't be an anchor
30
- protected $template_no_anchor = '%title%';
31
  //Boolean, is this element linked
32
  protected $linked = false;
33
  //The link the breadcrumb leads to, null if $linked == false
@@ -38,6 +38,7 @@ class bcn_breadcrumb
38
  //The type of this breadcrumb
39
  public $type;
40
  protected $allowed_html = array();
 
41
  /**
42
  * The enhanced default constructor, ends up setting all parameters via the set_ functions
43
  *
@@ -46,7 +47,7 @@ class bcn_breadcrumb
46
  * @param string $type (optional) The breadcrumb type
47
  * @param string $url (optional) The url the breadcrumb links to
48
  */
49
- public function __construct($title = '', $template = '', array $type = array(), $url = NULL, $id = NULL)
50
  {
51
  //Filter allowed_html array to allow others to add acceptable tags
52
  $this->allowed_html = apply_filters('bcn_allowed_html', wp_kses_allowed_html('post'));
@@ -56,30 +57,39 @@ class bcn_breadcrumb
56
  $this->set_id($id);
57
  //Set the title
58
  $this->set_title($title);
59
- //Assign the breadcrumb template, need strict comparison as we only want to enter if we had a blank URL, not NULL URL
60
- if($template == NULL || $url === '')
 
 
61
  {
62
- if($url == NULL || $url === '')
 
 
 
 
 
 
63
  {
64
- $template = __('<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>', 'breadcrumb-navxt');
 
65
  }
66
  else
67
  {
68
- $template = __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt');
69
- }
70
- }
71
- //Loose comparison, evaluates to true if URL is '' or NULL
72
- if($url == NULL)
73
- {
74
- $this->template_no_anchor = wp_kses(apply_filters('bcn_breadcrumb_template_no_anchor', $template, $this->type, $this->id), $this->allowed_html);
75
- }
76
- else
77
- {
78
  $this->set_template($template);
 
79
  }
80
  //Always NULL if unlinked
81
  $this->set_url($url);
82
  }
 
 
 
 
 
 
 
 
 
83
  /**
84
  * Function to set the protected title member
85
  *
@@ -108,9 +118,13 @@ class bcn_breadcrumb
108
  */
109
  public function set_url($url)
110
  {
111
- $this->url = esc_url(apply_filters('bcn_breadcrumb_url', $url, $this->type, $this->id));
112
- //Set linked to true if we set a non-null $url
113
- if($url && $url != '')
 
 
 
 
114
  {
115
  $this->linked = true;
116
  }
@@ -187,19 +201,22 @@ class bcn_breadcrumb
187
  /**
188
  * Assembles the parts of the breadcrumb into a html string
189
  *
190
- * @param bool $linked (optional) Allow the output to contain anchors?
 
 
191
  * @return string The compiled breadcrumb string
192
  */
193
- public function assemble($linked = true)
194
  {
195
  //Build our replacements array
196
  $replacements = array(
197
  '%title%' => esc_attr(strip_tags($this->title)),
198
- '%link%' => $this->url,
199
  '%htitle%' => $this->title,
200
  '%type%' => apply_filters('bcn_breadcrumb_types', $this->type, $this->id),
201
  '%ftitle%' => esc_attr(strip_tags($this->_title)),
202
- '%fhtitle%' => $this->_title
 
203
  );
204
  //The type may be an array, implode it if that is the case
205
  if(is_array($replacements['%type%']))
21
  class bcn_breadcrumb
22
  {
23
  //Our member variables
24
+ const version = '5.3.0';
25
  //The main text that will be shown
26
  protected $title;
27
  //The breadcrumb's template, used durring assembly
28
  protected $template;
29
  //The breadcrumb's no anchor template, used durring assembly when there won't be an anchor
30
+ protected $template_no_anchor;
31
  //Boolean, is this element linked
32
  protected $linked = false;
33
  //The link the breadcrumb leads to, null if $linked == false
38
  //The type of this breadcrumb
39
  public $type;
40
  protected $allowed_html = array();
41
+ const default_template_no_anchor = '<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>';
42
  /**
43
  * The enhanced default constructor, ends up setting all parameters via the set_ functions
44
  *
47
  * @param string $type (optional) The breadcrumb type
48
  * @param string $url (optional) The url the breadcrumb links to
49
  */
50
+ public function __construct($title = '', $template = '', array $type = array(), $url = '', $id = NULL)
51
  {
52
  //Filter allowed_html array to allow others to add acceptable tags
53
  $this->allowed_html = apply_filters('bcn_allowed_html', wp_kses_allowed_html('post'));
57
  $this->set_id($id);
58
  //Set the title
59
  $this->set_title($title);
60
+ //Set the default anchorless templates value
61
+ $this->template_no_anchor = bcn_breadcrumb::default_template_no_anchor;
62
+ //If we didn't get a good template, use a default template
63
+ if($template == NULL)
64
  {
65
+ $this->set_template(bcn_breadcrumb::get_default_template());
66
+ }
67
+ //If something was passed in template wise, update the appropriate internal template
68
+ else
69
+ {
70
+ //Loose comparison, evaluates to true if URL is '' or NULL
71
+ if($url == NULL)
72
  {
73
+ $this->template_no_anchor = wp_kses(apply_filters('bcn_breadcrumb_template_no_anchor', $template, $this->type, $this->id), $this->allowed_html);
74
+ $this->set_template(bcn_breadcrumb::get_default_template());
75
  }
76
  else
77
  {
 
 
 
 
 
 
 
 
 
 
78
  $this->set_template($template);
79
+ }
80
  }
81
  //Always NULL if unlinked
82
  $this->set_url($url);
83
  }
84
+ /**
85
+ * Function to return the translated default template
86
+ *
87
+ * @return string The default breadcrumb template
88
+ */
89
+ static public function get_default_template()
90
+ {
91
+ return __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt');
92
+ }
93
  /**
94
  * Function to set the protected title member
95
  *
118
  */
119
  public function set_url($url)
120
  {
121
+ $this->url = apply_filters('bcn_breadcrumb_url', $url, $this->type, $this->id);
122
+ //If the URL seemed nullish, we are not linked
123
+ if($this->url == NULL)
124
+ {
125
+ $this->linked = false;
126
+ }
127
+ else
128
  {
129
  $this->linked = true;
130
  }
201
  /**
202
  * Assembles the parts of the breadcrumb into a html string
203
  *
204
+ * @param bool $linked Allow the output to contain anchors?
205
+ * @param int $position The position of the breadcrumb in the trail (between 1 and n when there are n breadcrumbs in the trail)
206
+ *
207
  * @return string The compiled breadcrumb string
208
  */
209
+ public function assemble($linked, $position)
210
  {
211
  //Build our replacements array
212
  $replacements = array(
213
  '%title%' => esc_attr(strip_tags($this->title)),
214
+ '%link%' => esc_url($this->url),
215
  '%htitle%' => $this->title,
216
  '%type%' => apply_filters('bcn_breadcrumb_types', $this->type, $this->id),
217
  '%ftitle%' => esc_attr(strip_tags($this->_title)),
218
+ '%fhtitle%' => $this->_title,
219
+ '%position%' => $position
220
  );
221
  //The type may be an array, implode it if that is the case
222
  if(is_array($replacements['%type%']))
class.bcn_breadcrumb_trail.php CHANGED
@@ -21,7 +21,7 @@ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
21
  class bcn_breadcrumb_trail
22
  {
23
  //Our member variables
24
- const version = '5.2.2';
25
  //An array of breadcrumbs
26
  public $breadcrumbs = array();
27
  public $trail = array();
@@ -42,22 +42,22 @@ class bcn_breadcrumb_trail
42
  $this->opt = array(
43
  //Should the mainsite be shown
44
  'bmainsite_display' => true,
45
- //The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
46
- 'Hmainsite_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
47
- //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%
48
- 'Hmainsite_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
49
  //Should the home page be shown
50
  'bhome_display' => true,
51
- //The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
52
- 'Hhome_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
53
- //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%
54
- 'Hhome_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
55
  //Should the blog page be shown globally
56
  'bblog_display' => true,
57
- //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%
58
- 'Hblog_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
59
- //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%
60
- 'Hblog_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
61
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
62
  //the first and not after the last breadcrumb
63
  'hseparator' => ' &gt; ',
@@ -65,25 +65,25 @@ class bcn_breadcrumb_trail
65
  'blimit_title' => false,
66
  //The maximum title length
67
  'amax_title_length' => 20,
68
- //Current item options, really only applies to static pages and posts unless other current items are linked
69
  'bcurrent_item_linked' => false,
70
  //Static page options
71
- //The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
72
- 'Hpost_page_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
73
- //The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
74
- 'Hpost_page_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
75
  //Just a link to the page on front property
76
  'apost_page_root' => get_option('page_on_front'),
77
  //Paged options
78
- //The template for paged breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
79
  'Hpaged_template' => __('Page %htitle%', 'breadcrumb-navxt'),
80
  //Should we try filling out paged information
81
  'bpaged_display' => false,
82
  //The post options previously singleblogpost
83
- //The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
84
- 'Hpost_post_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
85
- //The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
86
- 'Hpost_post_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
87
  //Just a link for the page for posts
88
  'apost_post_root' => get_option('page_for_posts'),
89
  //Should the trail include the taxonomy of the post
@@ -91,47 +91,46 @@ class bcn_breadcrumb_trail
91
  //What taxonomy should be shown leading to the post, tag or category
92
  'Spost_post_taxonomy_type' => 'category',
93
  //Attachment settings
94
- //TODO: Need to move attachments to support via normal post handlers
95
- //The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
96
- 'Hpost_attachment_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
97
- //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
98
- 'Hpost_attachment_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
99
  //404 page settings
100
- //The template for 404 breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
101
- 'H404_template' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
102
  //The text to be shown in the breadcrumb for a 404 page
103
  'S404_title' => __('404', 'breadcrumb-navxt'),
104
  //Search page options
105
- //The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
106
  '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'),
107
- //The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
108
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
109
  //Tag related stuff
110
- //The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
111
- 'Htax_post_tag_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
112
- //The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
113
- 'Htax_post_tag_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
114
  //Post format related stuff
115
- //The breadcrumb template for post format breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
116
- 'Htax_post_format_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
117
- //The breadcrumb template for post format breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
118
- 'Htax_post_format_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
119
  //Author page stuff
120
- //The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
121
  'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
122
- //The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
123
  'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
124
  //Which of the various WordPress display types should the author breadcrumb display
125
  'Sauthor_name' => 'display_name',
126
  //Category stuff
127
- //The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
128
- 'Htax_category_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% category archives." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
129
- //The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
130
- 'Htax_category_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>',
131
- //The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
132
- 'Hdate_template' => __('<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% archives." href="%link%" class="%type%">%htitle%</a></span>', 'breadcrumb-navxt'),
133
- //The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
134
- 'Hdate_template_no_anchor' => '<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>'
135
  );
136
  }
137
  /**
@@ -205,15 +204,46 @@ class bcn_breadcrumb_trail
205
  }
206
  }
207
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
208
  /**
209
  * A Breadcrumb Trail Filling Function
210
  *
211
- * This function fills breadcrumbs for any post taxonomy.
212
- * @param int $id The id of the post to figure out the taxonomy for.
213
- * @param string $type The post type of the post to figure out the taxonomy for.
214
  * @param int $parent (optional) The id of the parent of the current post, used if hiearchal posts will be the "taxonomy" for the current post
215
  *
216
- * TODO: Add logic for contextual taxonomy selection
217
  */
218
  protected function post_hierarchy($id, $type, $parent = NULL)
219
  {
@@ -223,29 +253,15 @@ class bcn_breadcrumb_trail
223
  //Check if we have a date 'taxonomy' request
224
  if($this->opt['Spost_' . $type . '_taxonomy_type'] == 'date')
225
  {
226
- $this->do_archive_by_date();
227
  }
228
  //Handle all hierarchical taxonomies, including categories
229
  else if(is_taxonomy_hierarchical($this->opt['Spost_' . $type . '_taxonomy_type']))
230
  {
231
- //Fill a temporary object with the terms
232
- $bcn_object = get_the_terms($id, $this->opt['Spost_' . $type . '_taxonomy_type']);
233
- if(is_array($bcn_object))
234
  {
235
- //Now find which one has a parent, pick the first one that does
236
- $bcn_use_term = key($bcn_object);
237
- foreach($bcn_object as $key=>$object)
238
- {
239
- //We want the first term hiearchy
240
- if($object->parent > 0)
241
- {
242
- $bcn_use_term = $key;
243
- //We found our first term hiearchy, can exit loop now
244
- break;
245
- }
246
- }
247
  //Fill out the term hiearchy
248
- $parent = $this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['Spost_' . $type . '_taxonomy_type']);
249
  }
250
  }
251
  //Handle the use of hierarchical posts as the 'taxonomy'
@@ -283,7 +299,7 @@ class bcn_breadcrumb_trail
283
  * A Breadcrumb Trail Filling Function
284
  *
285
  * This functions fills a breadcrumb for the terms of a post
286
- * @param int $id The id of the post to find the terms for.
287
  * @param string $taxonomy The name of the taxonomy that the term belongs to
288
  *
289
  * TODO Need to implement this cleaner
@@ -312,7 +328,7 @@ class bcn_breadcrumb_trail
312
  //This is a bit hackish, but it compiles the term anchor and appends it to the current breadcrumb title
313
  $bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . str_replace(
314
  array('%title%', '%link%', '%htitle%', '%type%'),
315
- array($term->name, get_term_link($term, $taxonomy), $term->name, $term->taxonomy),
316
  $this->opt['Htax_' . $term->taxonomy . '_template']));
317
  $is_first = false;
318
  }
@@ -331,7 +347,7 @@ class bcn_breadcrumb_trail
331
  //Get the current category object, filter applied within this call
332
  $term = get_term($id, $taxonomy);
333
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
334
- $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['Htax_' . $taxonomy . '_template'], array('taxonomy', $taxonomy), get_term_link($term, $taxonomy), $id));
335
  //Make sure the id is valid, and that we won't end up spinning in a loop
336
  if($term->parent && $term->parent != $id)
337
  {
@@ -437,7 +453,6 @@ class bcn_breadcrumb_trail
437
  * A Breadcrumb Trail Filling Function
438
  *
439
  * This function fills a breadcrumb for any taxonomy archive, was previously two separate functions
440
- *
441
  */
442
  protected function do_archive_by_term()
443
  {
@@ -451,7 +466,7 @@ class bcn_breadcrumb_trail
451
  {
452
  $breadcrumb->set_template($this->opt['Htax_' . $term->taxonomy . '_template']);
453
  //Figure out the anchor for current category
454
- $breadcrumb->set_url(get_term_link($term, $term->taxonomy));
455
  }
456
  //Get parents of current term
457
  if($term->parent)
@@ -463,9 +478,10 @@ class bcn_breadcrumb_trail
463
  * A Breadcrumb Trail Filling Function
464
  *
465
  * This functions fills a breadcrumb for a date archive.
466
- *
 
467
  */
468
- protected function do_archive_by_date()
469
  {
470
  global $wp_query;
471
  //First deal with the day breadcrumb
@@ -483,8 +499,9 @@ class bcn_breadcrumb_trail
483
  {
484
  //We're linking, so set the linked template
485
  $breadcrumb->set_template($this->opt['Hdate_template']);
 
486
  //Deal with the anchor
487
- $breadcrumb->set_url(get_day_link(get_the_time('Y'), get_the_time('m'), get_the_time('d')));
488
  }
489
  }
490
  //Now deal with the month breadcrumb
@@ -502,8 +519,9 @@ class bcn_breadcrumb_trail
502
  {
503
  //We're linking, so set the linked template
504
  $breadcrumb->set_template($this->opt['Hdate_template']);
 
505
  //Deal with the anchor
506
- $breadcrumb->set_url(get_month_link(get_the_time('Y'), get_the_time('m')));
507
  }
508
  }
509
  //Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
@@ -518,8 +536,9 @@ class bcn_breadcrumb_trail
518
  {
519
  //We're linking, so set the linked template
520
  $breadcrumb->set_template($this->opt['Hdate_template']);
 
521
  //Deal with the anchor
522
- $breadcrumb->set_url(get_year_link(get_the_time('Y')));
523
  }
524
  }
525
  /**
@@ -529,13 +548,15 @@ class bcn_breadcrumb_trail
529
  */
530
  protected function do_archive_by_post_type()
531
  {
 
532
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
533
- $breadcrumb = $this->add(new bcn_breadcrumb(post_type_archive_title('', false), $this->opt['Hpost_' . get_query_var('post_type') . '_template_no_anchor'], array('archive', 'post-' . get_query_var('post_type') . '-archive', 'current-item')));
534
  if($this->opt['bcurrent_item_linked'] || is_paged() && $this->opt['bpaged_display'])
535
  {
536
- $breadcrumb->set_template($this->opt['Hpost_' . get_query_var('post_type') . '_template']);
 
537
  //Deal with the anchor
538
- $breadcrumb->set_url(get_post_type_archive_link(get_query_var('post_type')));
539
  }
540
  }
541
  /**
@@ -617,6 +638,16 @@ class bcn_breadcrumb_trail
617
  $type = get_post_type_object($post_type);
618
  return $type->_builtin;
619
  }
 
 
 
 
 
 
 
 
 
 
620
  /**
621
  * Determines if a post type has archives enabled or not
622
  *
@@ -628,6 +659,51 @@ class bcn_breadcrumb_trail
628
  $type = get_post_type_object($post_type);
629
  return $type->has_archive;
630
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
631
  /**
632
  * A Breadcrumb Trail Filling Function
633
  *
@@ -638,17 +714,25 @@ class bcn_breadcrumb_trail
638
  protected function type_archive($type)
639
  {
640
  global $wp_taxonomies;
 
 
 
 
 
641
  //If this is a custom post type with a post type archive, add it
642
- if(isset($type->post_type) && !$this->is_builtin($type->post_type) && $this->opt['bpost_' . $type->post_type . '_archive_display'] && $this->has_archive($type->post_type))
643
  {
644
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
645
- $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($type->post_type)), $this->opt['Hpost_' . $type->post_type . '_template'], array('post', 'post-' . $type->post_type . '-archive'), get_post_type_archive_link($type->post_type)));
646
  }
647
  //Otherwise, if this is a custom taxonomy with an archive, add it
648
- else if(isset($type->taxonomy) && isset($wp_taxonomies[$type->taxonomy]->object_type[0]) && !$this->is_builtin($wp_taxonomies[$type->taxonomy]->object_type[0]) && $this->opt['bpost_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_archive_display'] && $this->has_archive($wp_taxonomies[$type->taxonomy]->object_type[0]))
 
 
 
649
  {
650
  //We end up using the post type in several places, give it a variable
651
- $post_type = apply_filters('bcn_type_archive_post_type', $wp_taxonomies[$type->taxonomy]->object_type[0]);
652
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
653
  $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-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
654
  }
@@ -686,10 +770,10 @@ class bcn_breadcrumb_trail
686
  }
687
  }
688
  //We need to do special things for custom post type archives, but not author or date archives
689
- else if(is_archive() && !is_author() && !is_date() && !$this->is_builtin($wp_taxonomies[$type->taxonomy]->object_type[0]))
690
  {
691
  //We need the type for later, so save it
692
- $type_str = $wp_taxonomies[$type->taxonomy]->object_type[0];
693
  //This will assign a ID for root page of a custom post's taxonomy archive
694
  if(is_numeric($this->opt['apost_' . $type_str . '_root']))
695
  {
@@ -731,6 +815,7 @@ class bcn_breadcrumb_trail
731
  //Find our type string and root_id
732
  $this->find_type($type, $type_str, $root_id);
733
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
 
734
  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()))
735
  {
736
  //If we entered here with a posts page, we need to set the id
@@ -744,13 +829,15 @@ class bcn_breadcrumb_trail
744
  {
745
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
746
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($root_id), $this->opt['Hpost_' . $type_str . '_template_no_anchor'], array($type_str . '-root', 'post', 'post-' . $type_str), NULL, $root_id));
747
- //If we are at home, then we need to add the current item type
748
- if(is_home())
749
  {
750
  $breadcrumb->add_type('current-item');
751
  }
752
  //If we're not on the current item we need to setup the anchor
753
- if(!is_home() || (is_paged() && $this->opt['bpaged_display']) || (is_home() && $this->opt['bcurrent_item_linked']))
 
 
754
  {
755
  $breadcrumb->set_template($this->opt['Hpost_' . $type_str . '_template']);
756
  //Figure out the anchor for home page
@@ -787,11 +874,12 @@ class bcn_breadcrumb_trail
787
  //Need to switch between paged and page for archives and singular (posts)
788
  if(get_query_var('paged') > 0)
789
  {
790
- $page_number = get_query_var('paged');
 
791
  }
792
  else
793
  {
794
- $page_number = get_query_var('page');
795
  }
796
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
797
  $this->breadcrumbs[] = new bcn_breadcrumb($page_number, $this->opt['Hpaged_template'], array('paged'));
@@ -858,9 +946,12 @@ class bcn_breadcrumb_trail
858
  //For date based archives
859
  if(is_date())
860
  {
861
- $this->do_archive_by_date();
 
862
  }
863
- else if(is_post_type_archive() && !isset($type->taxonomy))
 
 
864
  {
865
  $this->do_archive_by_post_type();
866
  }
@@ -868,8 +959,12 @@ class bcn_breadcrumb_trail
868
  else if(is_category() || is_tag() || is_tax())
869
  {
870
  $this->do_archive_by_term();
 
 
 
 
 
871
  }
872
- $this->type_archive($type);
873
  }
874
  //For 404 pages
875
  else if(is_404())
@@ -932,6 +1027,7 @@ class bcn_breadcrumb_trail
932
  $this->order($reverse);
933
  //Initilize the string which will hold the assembled trail
934
  $trail_str = '';
 
935
  //The main compiling loop
936
  foreach($this->breadcrumbs as $key => $breadcrumb)
937
  {
@@ -959,7 +1055,8 @@ class bcn_breadcrumb_trail
959
  $breadcrumb->title_trim($this->opt['amax_title_length']);
960
  }
961
  //Place in the breadcrumb's assembled elements
962
- $trail_str .= $breadcrumb->assemble($linked);
 
963
  }
964
  //Should we return or echo the assembled trail?
965
  if($return)
@@ -990,6 +1087,7 @@ class bcn_breadcrumb_trail
990
  $this->order($reverse);
991
  //Initilize the string which will hold the assembled trail
992
  $trail_str = '';
 
993
  //The main compiling loop
994
  foreach($this->breadcrumbs as $key => $breadcrumb)
995
  {
@@ -1019,7 +1117,8 @@ class bcn_breadcrumb_trail
1019
  $breadcrumb->title_trim($this->opt['amax_title_length']);
1020
  }
1021
  //Assemble the breadrumb and wrap with li's
1022
- $trail_str .= sprintf("<li%s>%s</li>\n", $li_attribs, $breadcrumb->assemble($linked));
 
1023
  }
1024
  //Should we return or echo the assembled trail?
1025
  if($return)
21
  class bcn_breadcrumb_trail
22
  {
23
  //Our member variables
24
+ const version = '5.3.0';
25
  //An array of breadcrumbs
26
  public $breadcrumbs = array();
27
  public $trail = array();
42
  $this->opt = array(
43
  //Should the mainsite be shown
44
  'bmainsite_display' => true,
45
+ //The breadcrumb template for the main site
46
+ 'Hmainsite_template' => bcn_breadcrumb::get_default_template(),
47
+ //The breadcrumb template for the main site, used when an anchor is not needed
48
+ 'Hmainsite_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
49
  //Should the home page be shown
50
  'bhome_display' => true,
51
+ //The breadcrumb template for the home page
52
+ 'Hhome_template' => bcn_breadcrumb::get_default_template(),
53
+ //The breadcrumb template for the home page, used when an anchor is not needed
54
+ 'Hhome_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
55
  //Should the blog page be shown globally
56
  'bblog_display' => true,
57
+ //The breadcrumb template for the blog page only in static front page mode
58
+ 'Hblog_template' => bcn_breadcrumb::get_default_template(),
59
+ //The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed
60
+ 'Hblog_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
61
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
62
  //the first and not after the last breadcrumb
63
  'hseparator' => ' &gt; ',
65
  'blimit_title' => false,
66
  //The maximum title length
67
  'amax_title_length' => 20,
68
+ //Current item options
69
  'bcurrent_item_linked' => false,
70
  //Static page options
71
+ //The anchor template for page breadcrumbs
72
+ 'Hpost_page_template' => bcn_breadcrumb::get_default_template(),
73
+ //The anchor template for page breadcrumbs, used when an anchor is not needed
74
+ 'Hpost_page_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
75
  //Just a link to the page on front property
76
  'apost_page_root' => get_option('page_on_front'),
77
  //Paged options
78
+ //The template for paged breadcrumb
79
  'Hpaged_template' => __('Page %htitle%', 'breadcrumb-navxt'),
80
  //Should we try filling out paged information
81
  'bpaged_display' => false,
82
  //The post options previously singleblogpost
83
+ //The breadcrumb template for post breadcrumbs
84
+ 'Hpost_post_template' => bcn_breadcrumb::get_default_template(),
85
+ //The breadcrumb template for post breadcrumbs, used when an anchor is not needed
86
+ 'Hpost_post_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
87
  //Just a link for the page for posts
88
  'apost_post_root' => get_option('page_for_posts'),
89
  //Should the trail include the taxonomy of the post
91
  //What taxonomy should be shown leading to the post, tag or category
92
  'Spost_post_taxonomy_type' => 'category',
93
  //Attachment settings
94
+ //The breadcrumb template for attachment breadcrumbs
95
+ 'Hpost_attachment_template' => bcn_breadcrumb::get_default_template(),
96
+ //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed
97
+ 'Hpost_attachment_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
 
98
  //404 page settings
99
+ //The template for 404 breadcrumbs
100
+ 'H404_template' => bcn_breadcrumb::default_template_no_anchor,
101
  //The text to be shown in the breadcrumb for a 404 page
102
  'S404_title' => __('404', 'breadcrumb-navxt'),
103
  //Search page options
104
+ //The breadcrumb template for search breadcrumbs
105
  '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'),
106
+ //The breadcrumb template for search breadcrumbs, used when an anchor is not necessary
107
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
108
  //Tag related stuff
109
+ //The breadcrumb template for tag breadcrumbs
110
+ 'Htax_post_tag_template' => __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% tag archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
111
+ //The breadcrumb template for tag breadcrumbs, used when an anchor is not necessary
112
+ 'Htax_post_tag_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
113
  //Post format related stuff
114
+ //The breadcrumb template for post format breadcrumbs, used when an anchor is not necessary
115
+ 'Htax_post_format_template' => __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
116
+ //The breadcrumb template for post format breadcrumbs
117
+ 'Htax_post_format_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
118
  //Author page stuff
119
+ //The anchor template for author breadcrumbs
120
  'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
121
+ //The anchor template for author breadcrumbs, used when anchors are not needed
122
  'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
123
  //Which of the various WordPress display types should the author breadcrumb display
124
  'Sauthor_name' => 'display_name',
125
  //Category stuff
126
+ //The breadcrumb template for category breadcrumbs
127
+ 'Htax_category_template' => __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% category archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
128
+ //The breadcrumb template for category breadcrumbs, used when anchors are not needed
129
+ 'Htax_category_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor,
130
+ //The breadcrumb template for date breadcrumbs
131
+ 'Hdate_template' => __('<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to the %title% archives." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>', 'breadcrumb-navxt'),
132
+ //The breadcrumb template for date breadcrumbs, used when anchors are not needed
133
+ 'Hdate_template_no_anchor' => bcn_breadcrumb::default_template_no_anchor
134
  );
135
  }
136
  /**
204
  }
205
  }
206
  }
207
+ /**
208
+ * This function selects the term that should be used for a post's hierarchy
209
+ *
210
+ * @param int $id The ID of the post to find the term for
211
+ * @param string $type The post type of the post to figure out the taxonomy for
212
+ * @return WP_Term|bool The term object to use for the post hierarchy or false if no suitable term was found
213
+ *
214
+ * TODO: Add logic for contextual taxonomy selection
215
+ */
216
+ protected function pick_post_term($id, $type)
217
+ {
218
+ //Fill a temporary object with the terms
219
+ $bcn_object = get_the_terms($id, $this->opt['Spost_' . $type . '_taxonomy_type']);
220
+ //Make sure we have an non-empty array
221
+ if(is_array($bcn_object) && $bcn_object)
222
+ {
223
+ //Now find which one has a parent, pick the first one that does
224
+ $bcn_use_term = key($bcn_object);
225
+ foreach($bcn_object as $key => $object)
226
+ {
227
+ //We want the first term hiearchy
228
+ if($object->parent > 0)
229
+ {
230
+ $bcn_use_term = $key;
231
+ //We found our first term hiearchy, can exit loop now
232
+ break;
233
+ }
234
+ }
235
+ return $bcn_object[$bcn_use_term];
236
+ }
237
+ return false;
238
+ }
239
  /**
240
  * A Breadcrumb Trail Filling Function
241
  *
242
+ * This function fills breadcrumbs for any post taxonomy
243
+ * @param int $id The id of the post to figure out the taxonomy for
244
+ * @param string $type The post type of the post to figure out the taxonomy for
245
  * @param int $parent (optional) The id of the parent of the current post, used if hiearchal posts will be the "taxonomy" for the current post
246
  *
 
247
  */
248
  protected function post_hierarchy($id, $type, $parent = NULL)
249
  {
253
  //Check if we have a date 'taxonomy' request
254
  if($this->opt['Spost_' . $type . '_taxonomy_type'] == 'date')
255
  {
256
+ $this->do_archive_by_date($type);
257
  }
258
  //Handle all hierarchical taxonomies, including categories
259
  else if(is_taxonomy_hierarchical($this->opt['Spost_' . $type . '_taxonomy_type']))
260
  {
261
+ if(($term = $this->pick_post_term($id, $type)) !== false)
 
 
262
  {
 
 
 
 
 
 
 
 
 
 
 
 
263
  //Fill out the term hiearchy
264
+ $parent = $this->term_parents($term->term_id, $this->opt['Spost_' . $type . '_taxonomy_type']);
265
  }
266
  }
267
  //Handle the use of hierarchical posts as the 'taxonomy'
299
  * A Breadcrumb Trail Filling Function
300
  *
301
  * This functions fills a breadcrumb for the terms of a post
302
+ * @param int $id The id of the post to find the terms for
303
  * @param string $taxonomy The name of the taxonomy that the term belongs to
304
  *
305
  * TODO Need to implement this cleaner
328
  //This is a bit hackish, but it compiles the term anchor and appends it to the current breadcrumb title
329
  $bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . str_replace(
330
  array('%title%', '%link%', '%htitle%', '%type%'),
331
+ array($term->name, $this->maybe_add_post_type_arg(get_term_link($term), NULL, $term->taxonomy), $term->name, $term->taxonomy),
332
  $this->opt['Htax_' . $term->taxonomy . '_template']));
333
  $is_first = false;
334
  }
347
  //Get the current category object, filter applied within this call
348
  $term = get_term($id, $taxonomy);
349
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
350
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['Htax_' . $taxonomy . '_template'], array('taxonomy', $taxonomy), $this->maybe_add_post_type_arg(get_term_link($term), NULL, $taxonomy), $id));
351
  //Make sure the id is valid, and that we won't end up spinning in a loop
352
  if($term->parent && $term->parent != $id)
353
  {
453
  * A Breadcrumb Trail Filling Function
454
  *
455
  * This function fills a breadcrumb for any taxonomy archive, was previously two separate functions
 
456
  */
457
  protected function do_archive_by_term()
458
  {
466
  {
467
  $breadcrumb->set_template($this->opt['Htax_' . $term->taxonomy . '_template']);
468
  //Figure out the anchor for current category
469
+ $breadcrumb->set_url($this->maybe_add_post_type_arg(get_term_link($term), NULL, $term->taxonomy));
470
  }
471
  //Get parents of current term
472
  if($term->parent)
478
  * A Breadcrumb Trail Filling Function
479
  *
480
  * This functions fills a breadcrumb for a date archive.
481
+ *
482
+ * @param string $type The type to restrict the date archives to
483
  */
484
+ protected function do_archive_by_date($type)
485
  {
486
  global $wp_query;
487
  //First deal with the day breadcrumb
499
  {
500
  //We're linking, so set the linked template
501
  $breadcrumb->set_template($this->opt['Hdate_template']);
502
+ $url = get_day_link(get_the_time('Y'), get_the_time('m'), get_the_time('d'));
503
  //Deal with the anchor
504
+ $breadcrumb->set_url($this->maybe_add_post_type_arg($url, $type));
505
  }
506
  }
507
  //Now deal with the month breadcrumb
519
  {
520
  //We're linking, so set the linked template
521
  $breadcrumb->set_template($this->opt['Hdate_template']);
522
+ $url = get_month_link(get_the_time('Y'), get_the_time('m'));
523
  //Deal with the anchor
524
+ $breadcrumb->set_url($this->maybe_add_post_type_arg($url, $type));
525
  }
526
  }
527
  //Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
536
  {
537
  //We're linking, so set the linked template
538
  $breadcrumb->set_template($this->opt['Hdate_template']);
539
+ $url = get_year_link(get_the_time('Y'));
540
  //Deal with the anchor
541
+ $breadcrumb->set_url($this->maybe_add_post_type_arg($url, $type));
542
  }
543
  }
544
  /**
548
  */
549
  protected function do_archive_by_post_type()
550
  {
551
+ $type_str = $this->get_type_string_query_var();
552
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
553
+ $breadcrumb = $this->add(new bcn_breadcrumb(post_type_archive_title('', false), $this->opt['Hpost_' . $type_str . '_template_no_anchor'], array('archive', 'post-' . $type_str . '-archive', 'current-item')));
554
  if($this->opt['bcurrent_item_linked'] || is_paged() && $this->opt['bpaged_display'])
555
  {
556
+
557
+ $breadcrumb->set_template($this->opt['Hpost_' . $type_str . '_template']);
558
  //Deal with the anchor
559
+ $breadcrumb->set_url(get_post_type_archive_link($type_str));
560
  }
561
  }
562
  /**
638
  $type = get_post_type_object($post_type);
639
  return $type->_builtin;
640
  }
641
+ /**
642
+ * Determines if the current location is a for a root page or not
643
+ *
644
+ * @param string $post_type the name of the post type
645
+ * @return bool
646
+ */
647
+ protected function treat_as_root_page($post_type)
648
+ {
649
+ return (is_home() || (is_post_type_archive() && is_numeric($this->opt['apost_' . $post_type . '_root']) && !$this->opt['bpost_' . $post_type . '_archive_display']));
650
+ }
651
  /**
652
  * Determines if a post type has archives enabled or not
653
  *
659
  $type = get_post_type_object($post_type);
660
  return $type->has_archive;
661
  }
662
+ /**
663
+ * Retrieves the query var for 'post_type', sets default to post, and escapes
664
+ *
665
+ * @param string $default[optional] The default value to return if nothing was found/set
666
+ *
667
+ * @return string The post type string found in the post_type query var
668
+ */
669
+ protected function get_type_string_query_var($default = 'post')
670
+ {
671
+ $type_str = get_query_var('post_type', $default);
672
+ if($type_str === '')
673
+ {
674
+ $type_str = $default;
675
+ }
676
+ return esc_attr($type_str);
677
+ }
678
+ /**
679
+ * Adds the post type argument to the URL iff the passed in type is not post
680
+ *
681
+ * @param string $url The URL to possibly add the post_type argument to
682
+ * @param string $type[optional] The type to possibly add to the URL
683
+ * @param string $taxonomy[optional] If we're dealing with a taxonomy term, the taxonomy of that term
684
+ *
685
+ * @return string The possibly modified URL
686
+ */
687
+ protected function maybe_add_post_type_arg($url, $type = NULL, $taxonomy = NULL)
688
+ {
689
+ global $wp_taxonomies;
690
+ //Rather than default to post, we should try to find the type
691
+ if($type == NULL)
692
+ {
693
+ $type = $this->get_type_string_query_var();
694
+ }
695
+ //Don't add onto the URL if we are on the default post type for the archive in question
696
+ if($taxonomy && $type === $wp_taxonomies[$taxonomy]->object_type[0])
697
+ {
698
+ return $url;
699
+ }
700
+ //If the type is not a post, add the type to query
701
+ if($type !== 'post')
702
+ {
703
+ $url = add_query_arg(array('post_type' => $type), $url);
704
+ }
705
+ return $url;
706
+ }
707
  /**
708
  * A Breadcrumb Trail Filling Function
709
  *
714
  protected function type_archive($type)
715
  {
716
  global $wp_taxonomies;
717
+ $type_str = false;
718
+ if(!isset($type->taxonomy))
719
+ {
720
+ $type_str = $this->get_type_string_query_var();
721
+ }
722
  //If this is a custom post type with a post type archive, add it
723
+ if($type_str && !$this->is_builtin($type_str) && $this->opt['bpost_' . $type_str . '_archive_display'] && $this->has_archive($type_str))
724
  {
725
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
726
+ $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($type_str)), $this->opt['Hpost_' . $type_str . '_template'], array('post', 'post-' . $type_str . '-archive'), get_post_type_archive_link($type_str)));
727
  }
728
  //Otherwise, if this is a custom taxonomy with an archive, add it
729
+ else if(isset($type->taxonomy) && isset($wp_taxonomies[$type->taxonomy]->object_type[0])
730
+ && !$this->is_builtin($this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0]))
731
+ && $this->opt['bpost_' . $this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0]) . '_archive_display']
732
+ && $this->has_archive($this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0])))
733
  {
734
  //We end up using the post type in several places, give it a variable
735
+ $post_type = apply_filters('bcn_type_archive_post_type', $this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0]));
736
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
737
  $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-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
738
  }
770
  }
771
  }
772
  //We need to do special things for custom post type archives, but not author or date archives
773
+ else if(is_archive() && !is_author() && !is_date() && !$this->is_builtin($this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0])))
774
  {
775
  //We need the type for later, so save it
776
+ $type_str = $this->get_type_string_query_var($wp_taxonomies[$type->taxonomy]->object_type[0]);
777
  //This will assign a ID for root page of a custom post's taxonomy archive
778
  if(is_numeric($this->opt['apost_' . $type_str . '_root']))
779
  {
815
  //Find our type string and root_id
816
  $this->find_type($type, $type_str, $root_id);
817
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
818
+ //TODO: this is_home() may need to be $this->treat_as_root_page($type_str)
819
  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()))
820
  {
821
  //If we entered here with a posts page, we need to set the id
829
  {
830
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
831
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($root_id), $this->opt['Hpost_' . $type_str . '_template_no_anchor'], array($type_str . '-root', 'post', 'post-' . $type_str), NULL, $root_id));
832
+ //If we are at home, or any root page archive then we need to add the current item type
833
+ if($this->treat_as_root_page($type_str))
834
  {
835
  $breadcrumb->add_type('current-item');
836
  }
837
  //If we're not on the current item we need to setup the anchor
838
+ if(!$this->treat_as_root_page($type_str)
839
+ || (is_paged() && $this->opt['bpaged_display'])
840
+ || ($this->treat_as_root_page($type_str) && $this->opt['bcurrent_item_linked']))
841
  {
842
  $breadcrumb->set_template($this->opt['Hpost_' . $type_str . '_template']);
843
  //Figure out the anchor for home page
874
  //Need to switch between paged and page for archives and singular (posts)
875
  if(get_query_var('paged') > 0)
876
  {
877
+ //Can use simple type hinting here to int since we already checked for greater than 0
878
+ $page_number = (int) get_query_var('paged');
879
  }
880
  else
881
  {
882
+ $page_number = absint(get_query_var('page'));
883
  }
884
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
885
  $this->breadcrumbs[] = new bcn_breadcrumb($page_number, $this->opt['Hpaged_template'], array('paged'));
946
  //For date based archives
947
  if(is_date())
948
  {
949
+ $this->do_archive_by_date($this->get_type_string_query_var());
950
+ $this->type_archive($type);
951
  }
952
+ //If we have a post type archive, and it does not have a root page generate the archive
953
+ else if(is_post_type_archive() && !isset($type->taxonomy)
954
+ && (!is_numeric($this->opt['apost_' . $type->name . '_root']) || $this->opt['bpost_' . $type->name . '_archive_display']))
955
  {
956
  $this->do_archive_by_post_type();
957
  }
959
  else if(is_category() || is_tag() || is_tax())
960
  {
961
  $this->do_archive_by_term();
962
+ $this->type_archive($type);
963
+ }
964
+ else
965
+ {
966
+ $this->type_archive($type);
967
  }
 
968
  }
969
  //For 404 pages
970
  else if(is_404())
1027
  $this->order($reverse);
1028
  //Initilize the string which will hold the assembled trail
1029
  $trail_str = '';
1030
+ $position = 1;
1031
  //The main compiling loop
1032
  foreach($this->breadcrumbs as $key => $breadcrumb)
1033
  {
1055
  $breadcrumb->title_trim($this->opt['amax_title_length']);
1056
  }
1057
  //Place in the breadcrumb's assembled elements
1058
+ $trail_str .= $breadcrumb->assemble($linked, $position);
1059
+ $position++;
1060
  }
1061
  //Should we return or echo the assembled trail?
1062
  if($return)
1087
  $this->order($reverse);
1088
  //Initilize the string which will hold the assembled trail
1089
  $trail_str = '';
1090
+ $position = 1;
1091
  //The main compiling loop
1092
  foreach($this->breadcrumbs as $key => $breadcrumb)
1093
  {
1117
  $breadcrumb->title_trim($this->opt['amax_title_length']);
1118
  }
1119
  //Assemble the breadrumb and wrap with li's
1120
+ $trail_str .= sprintf("<li%s>%s</li>\n", $li_attribs, $breadcrumb->assemble($linked, $position));
1121
+ $position++;
1122
  }
1123
  //Should we return or echo the assembled trail?
1124
  if($return)
class.bcn_network_admin.php CHANGED
@@ -42,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
42
  */
43
  class bcn_network_admin extends mtekk_adminKit
44
  {
45
- const version = '5.2.2';
46
  protected $full_name = 'Breadcrumb NavXT Network Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_network_options';
@@ -394,9 +394,9 @@ class bcn_network_admin extends mtekk_adminKit
394
  /**
395
  * A message function that checks for the BCN_SETTINGS_* define statement
396
  */
397
- function multisite_settings_warn()
398
- {
399
- if(defined('MULTISITE') && MULTISITE)
400
  {
401
  if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
402
  {
@@ -417,10 +417,11 @@ class bcn_network_admin extends mtekk_adminKit
417
  //Fall through if no settings mode was set
418
  else
419
  {
420
- $this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK.', 'breadcrumb-navxt');
 
421
  }
422
  }
423
- }
424
  /**
425
  * A message function that checks for deprecated settings that are set and warns the user
426
  */
@@ -597,7 +598,8 @@ class bcn_network_admin extends mtekk_adminKit
597
  <td>
598
  <?php
599
  //We use the value 'page' but really, this will follow the parent post hierarchy
600
- $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'));
 
601
  //Loop through all of the taxonomies in the array
602
  foreach($wp_taxonomies as $taxonomy)
603
  {
42
  */
43
  class bcn_network_admin extends mtekk_adminKit
44
  {
45
+ const version = '5.3.0';
46
  protected $full_name = 'Breadcrumb NavXT Network Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_network_options';
394
  /**
395
  * A message function that checks for the BCN_SETTINGS_* define statement
396
  */
397
+ function multisite_settings_warn()
398
+ {
399
+ if(is_multisite())
400
  {
401
  if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
402
  {
417
  //Fall through if no settings mode was set
418
  else
419
  {
420
+ $this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL.', 'breadcrumb-navxt');
421
+ $this->message['updated fade'][] = __('Warning: Your network settings will override any settings set in this page.', 'breadcrumb-navxt');
422
  }
423
  }
424
+ }
425
  /**
426
  * A message function that checks for deprecated settings that are set and warns the user
427
  */
598
  <td>
599
  <?php
600
  //We use the value 'page' but really, this will follow the parent post hierarchy
601
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'), false, 'adminkit-enset');
602
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'date', __('Dates', 'breadcrumb-navxt'), false, 'adminkit-enset');
603
  //Loop through all of the taxonomies in the array
604
  foreach($wp_taxonomies as $taxonomy)
605
  {
class.bcn_uninstaller.php DELETED
@@ -1,184 +0,0 @@
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
- //Grab our global breadcrumb_navxt object
143
- global $breadcrumb_navxt;
144
- //Load dependencies if applicable
145
- if(!class_exists('breadcrumb_navxt'))
146
- {
147
- require_once($this->_getPluginPath());
148
- }
149
- //Initalize $breadcrumb_navxt so we can use it
150
- $bcn_breadcrumb_trail = new bcn_breadcrumb_trail();
151
- //Let's make an instance of our object takes care of everything
152
- $breadcrumb_navxt = new breadcrumb_navxt($bcn_breadcrumb_trail);
153
- //Uninstall
154
- $breadcrumb_navxt->uninstall();
155
- }
156
-
157
- /**
158
- * uninstall method
159
- *
160
- * @return bool wether or not uninstall did run successfull.
161
- */
162
- public function uninstall()
163
- {
164
- if ($this->_uninstalled)
165
- {
166
- throw new BadMethodCallException('Uninstall already exectuted. It can be executed only once.', 30101);
167
- }
168
-
169
- // decide what to do
170
- switch($this->_plugin)
171
- {
172
- case 'breadcrumb-navxt.php':
173
- return $this->_uninstallAdmin();
174
-
175
- default:
176
- throw new BadMethodCallException(sprintf('Invalid Plugin ("%s") in %s::uninstall().', $this->_plugin , get_class($this)), 30102);
177
- }
178
-
179
- // flag object as uninstalled
180
-
181
- $this->_uninstalled = true;
182
- }
183
-
184
- } /// class bcn_uninstaller
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
class.bcn_widget.php CHANGED
@@ -19,7 +19,7 @@
19
  require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
  class bcn_widget extends WP_Widget
21
  {
22
- const version = '5.2.2';
23
  protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false);
24
  //Default constructor
25
  function __construct()
@@ -61,18 +61,23 @@ class bcn_widget extends WP_Widget
61
  }
62
  else if($instance['type'] == 'microdata')
63
  {
64
- echo '<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">' . $instance['pretext'];
65
  //Display the regular output breadcrumb
66
  bcn_display(false, $instance['linked'], $instance['reverse']);
67
  echo '</div>';
68
  }
69
- else
70
  {
71
  //Display the pretext
72
  echo $instance['pretext'];
73
  //Display the regular output breadcrumb
74
  bcn_display(false, $instance['linked'], $instance['reverse']);
75
  }
 
 
 
 
 
76
  //Manditory after widget junk
77
  echo $args['after_widget'];
78
  }
@@ -104,6 +109,7 @@ class bcn_widget extends WP_Widget
104
  <option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', 'breadcrumb-navxt'); ?></option>
105
  <option value="microdata" <?php selected('microdata', $instance['type']);?>><?php _e('Google (RDFa) Breadcrumbs', 'breadcrumb-navxt'); ?></option>
106
  <option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', 'breadcrumb-navxt'); ?></option>
 
107
  </select>
108
  </p>
109
  <p>
19
  require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
  class bcn_widget extends WP_Widget
21
  {
22
+ const version = '5.3.0';
23
  protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false);
24
  //Default constructor
25
  function __construct()
61
  }
62
  else if($instance['type'] == 'microdata')
63
  {
64
+ echo '<div class="breadcrumbs" vocab="http://schema.org/" typeof="BreadcrumbList">' . $instance['pretext'];
65
  //Display the regular output breadcrumb
66
  bcn_display(false, $instance['linked'], $instance['reverse']);
67
  echo '</div>';
68
  }
69
+ else if($instance['type'] == 'plain')
70
  {
71
  //Display the pretext
72
  echo $instance['pretext'];
73
  //Display the regular output breadcrumb
74
  bcn_display(false, $instance['linked'], $instance['reverse']);
75
  }
76
+ else
77
+ {
78
+ //If we recieved a type that is not of the built in displays, it must be relegated to an extension plugin
79
+ do_action('bcn_widget_display_trail', $instance);
80
+ }
81
  //Manditory after widget junk
82
  echo $args['after_widget'];
83
  }
109
  <option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', 'breadcrumb-navxt'); ?></option>
110
  <option value="microdata" <?php selected('microdata', $instance['type']);?>><?php _e('Google (RDFa) Breadcrumbs', 'breadcrumb-navxt'); ?></option>
111
  <option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', 'breadcrumb-navxt'); ?></option>
112
+ <?php do_action('bcn_widget_display_types', $instance);?>
113
  </select>
114
  </p>
115
  <p>
includes/class.mtekk_adminkit_uninstaller.php ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Copyright 2015 John Havlik (email : john.havlik@mtekk.us)
4
+
5
+ This program is free software; you can redistribute it and/or modify
6
+ it under the terms of the GNU General Public License as published by
7
+ the Free Software Foundation; either version 2 of the License, or
8
+ (at your option) any later version.
9
+
10
+ This program is distributed in the hope that it will be useful,
11
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ GNU General Public License for more details.
14
+
15
+ You should have received a copy of the GNU General Public License
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
+ /**
21
+ * Breadcrumb NavXT abstract plugin uninstaller class
22
+ *
23
+ * @author Tom Klingenberg
24
+ */
25
+ abstract class mtekk_adminKit_uninstaller
26
+ {
27
+ protected $unique_prefix = '';
28
+ protected $plugin_basename = null;
29
+ protected $_uninstall_result = false;
30
+ /**
31
+ * get plugin path
32
+ *
33
+ * @return string full path to plugin file
34
+ */
35
+ protected function _get_plugin_path()
36
+ {
37
+ return sprintf('%s/%s', dirname(dirname(__FILE__)), $this->plugin_basename);
38
+ }
39
+
40
+ /**
41
+ * constructor
42
+ *
43
+ * @param array $options class options
44
+ * plugin =>
45
+ */
46
+ public function __construct()
47
+ {
48
+ $this->_uninstall_result = $this->uninstall();
49
+ }
50
+
51
+ /**
52
+ * Result Getter
53
+ *
54
+ * @return bool wether or not uninstall did run successfull.
55
+ */
56
+ public function get_result()
57
+ {
58
+ return $this->_uninstall_result;
59
+ }
60
+
61
+ public function is_installed()
62
+ {
63
+ return ((get_option($this->unique_prefix . '_options') !== false)
64
+ && (get_option($this->unique_prefix . '_options_bk') !== false)
65
+ && (get_option($this->unique_prefix . '_version') !== false)
66
+ && (get_site_option($this->unique_prefix . '_options') !== false)
67
+ && (get_site_option($this->unique_prefix . '_options_bk') !== false)
68
+ && (get_site_option($this->unique_prefix . '_version') !== false));
69
+ }
70
+ } /// class bcn_uninstaller_abstract
languages/breadcrumb-navxt-ca.mo DELETED
Binary file
languages/breadcrumb-navxt-ca.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Catalan
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-05-23 08:32:55+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr ""
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr ""
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Adjunts"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Av&iacute;s: la configuraci&oacute; de llocs individuals prevaldr&agrave; sobre valors establerts en aquesta p&agrave;gina."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Av&iacute;s: la configuraci&oacute; de llocs individuals ha de prevaler sobre valors establerts en aquesta p&agrave;gina."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Av&iacute;s: la configuraci&oacute; de xarxa prevaldr&agrave; sobre valors establerts en aquesta p&agrave;gina."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Av&iacute;s: la configuraci&oacute; de xarxa ha de prevaler sobre valors establerts en aquesta p&agrave;gina."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Av&iacute;s: No es trobat definits BCN_SETTINGS_*, es fará servir per defecte BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Configuraci&oacute; de la xarxa Breadcrumb NavXT"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Afegeix una ruta de navegaci&oacute; que mostra la traject&ograve;ria del visitant a la seva ubicaci&oacute; actual. Per obtenir més informaci&oacute; sobre com utilitzar aquesta visitat <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "La jerarquia en la qual es mostra la ruta de molles. Prengui nota que l'opció de \"Entrada/Pàgina Superior\" pot requerir un plugin addicional per a comportar-se com s'espera, ja que aquest és un tipus de publicació sense jerarquia."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Resultats de recerca per a &#39;<a title=\"Anar a la primer pàgina dels resultats de recerca per a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Un conjunt d'ajustaments que probablement seran modificats es troba en aquesta pestanya."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Longitud del títol"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Molles (Breadcrumbs) del Lloc Principal"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Els ajustaments per a tots els tipus d'entrades (Entrades, Pàgines, Personalitzades) es troben en aquesta pestanya."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Tipus d'Entrades"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Jerarquia per a desplegar entrades"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Jerarquia d'entrades"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Jerarquia de Desplegament"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Formats d'Entrades"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Longitud Màxima del Títol:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Entrades"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Entrada o Pàgina superior"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "La jerarquia que mostrarà la ruta de molles."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Jerarquia"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Els ajustaments per a totes les taxonomies (incloent Categories, Etiquetes i Personalitzades) estan en aquesta pestanya. "
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Taxonomies"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Plantilla per a Format de l'Entrada"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "La plantilla per al format de la ruta de molles en l'entrada"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Plantilla per a Format de l'Entrada (sense enllaç)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "La plantilla per al format de la ruta de molles en l'entrada, utilitzat només quan la molla no té enllaç. "
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Els ajustaments per a autor i arxius, recerques, i pàgines 404 estan en aquesta pestanya."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Arxius d'Autor "
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Articles per: <a title=\"Anar a la primer pàgina d'entrades per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Els seus ajustaments són per a una versió més nova."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Text a mostrar abans de les molles:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Anar al projecte de traducció de Breadcrumb NavXT"
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "La seva versió de PHP és massa antiga, per favor, actualitzi a la nova versió. La seva versió és %1$s, el plugin Breadcrumb NavXT requereix la versió %2$s "
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Agrega una ruta de navegació en la seva barra lateral"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Títol:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Mostrar ruta com:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Llista"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Text pla"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Enllaç a la Ruta"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Invertir l'ordre de la ruta"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Ocultar la ruta de la pàgina principal"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "No té privilegis per a procedir."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Trobarà tips per als ajustaments sota cada opció."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Recursos"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutorials i Instructius%s: En el *website de l'autor estan disponibles diverses guies, tutorials i instructius."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Anar a l'arxiu d'etiquetes de Breadcrumb NavXT"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sDocumentació En Línia%s: Revisi la documentació per a més informació tècnica."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Anar a la documentació en línia de Breadcrumb NavXT (en anglès)"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sReportar Errors%s: Si pensa que ha trobat un error, per favor inclogui la seva versió de WordPress i els detalls de com es reproduïx l'error."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Anar a la documentació en línia de Breadcrumb NavXT para la seva versió. "
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Donar de tornada"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonar%s: Li agrada Breadcrumb NavXT i desitja col·laborar amb el desenvolupament? Consideri comprar-li a l'autor una cervesa."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Anar a la pàgina de Paypal para donar-li un donatiu a. Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTraduir%s: No està disponible en el seu idioma? Comuniqui's amb John Havlik para col·laborar amb la traducció."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "General"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "Perquè prenguin efecte els ajustaments en aquesta pàgina, ha d'incloure el widget del plugin o col·locar el codi en la seva plantilla."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Ruta de Navegació amb Separadors"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Ruta de Navegació com Llistat"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Inici Ràpid"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Fent servir el codi d'Inici Ràpid de la secció anterior, el següent CSS pot utilitzar-se com base per a donar-li estil a la seva ruta de navegació."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Estilo"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Importar/Exportar/Reiniciar"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Importar"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Exportar"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Reiniciar"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Opcions de Configuració de Breadcrumb NavXT"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Separador de Navegació"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Col·locat enmig de cada opció de navegació."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Incloure l'Inici"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Plantilla de la Pàgina d'Inici"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Plantilla de la Pàgina d'Inici (sense vincle)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici, quan l'element d'inici no està enllaçat."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Incloure Inici (del Blog)"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Plantilla del Blog"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "La plantilla de la ruta de navegació per al blog, utilitzat només quan la pàgina inicial és una pàgina estàtica."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Plantilla del Blog (sense vincle)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "La plantilla de la ruta de navegació per al blog, utilitzat només quan la pàgina inicial és una pàgina estàtica i l'element d'inici no està enllaçat."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Ruta del Lloc Principal"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Col·locar un enllaç a la pàgina d'inici del lloc principal en la ruta de navegació d'una configuració amb múltiples blogs."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Plantilla d'Inici del Lloc Principal"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Plantilla d'Inici del Lloc Principal (sense vincle)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs i l'element de navegació no està enllaçat."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Item Actual"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Incloure Vincle a Ítem Actual"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Si"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Ruta de Navegació paginada"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Incloure la navegació paginada en la ruta de navegació"
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Mostrar que l'usuari està en una pàgina distinta a la primera d'una entrada/arxiu amb múltiples pàgines. "
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Plantilla d'Entrada paginada"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Plantilla de ruta de navegació d'entrades de diverses pàgines."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Plantilla d'Entrades"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "La plantilla de la ruta de navegació per a entrades."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Plantilla de l'Entrada (sense vincle)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "La plantilla de la ruta de navegació per a entrades, quan l'element no està enllaçat."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Categories"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Dates"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Etiquetes"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Pàgines"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Plantilla de la Pàgina"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "La plantilla de la ruta de navegació per a pàgines."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Plantilla de la Pàgina (sense vincle)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "La plantilla de la ruta de navegació per a pàgines, quan l'element no està enllaçat."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Plantilla d'Arxiu Adjunt"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "La plantilla de la ruta de navegació per a arxius adjunts."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Plantilla de l'Arxiu Adjunt (sense vincle)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "La plantilla de la ruta de navegació per a arxius adjunts, quan l'element no està enllaçat."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "Plantilla de %s"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "La plantilla de la ruta de navegació per a %s."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "Plantilla de %s (sense vincle)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "La plantilla de la ruta de navegació per a %s, quan l'element no està enllaçat."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s Pàgina Arrel"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Seleccioni &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "Desplegament d'Arxius de %s"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Mostrar la ruta de navegació per als %s arxius de les entrades de tipus."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Plantilla de Categoria"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "La plantilla de la ruta de navegació per a categories."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Plantilla de la Categoria (sense vincle)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "La plantilla de la ruta de navegació per a categories, quan l'element no està enllaçat."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Plantilla de l'Etiqueta"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "La plantilla de la ruta de navegació per a etiquetes."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Plantilla de l'Etiqueta (sense vincle)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "La plantilla de la ruta de navegació per a etiquetes, quan l'element no està enllaçat."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Miscel·lanis"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Plantilla d'Autor"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "La plantilla de la ruta de navegació per a autors."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Plantilla de l'Autor (sense vincle)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "La plantilla de la ruta de navegació per a autors, quan l'element no està enllaçat."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Format de Desplegament d'Autor"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name utilitza el nom especificat en \"Mostrar aquest nom públicament\" en el perfil de l'usuari, l'altres opcions corresponen als camps nom (first_name), cognom (last_name) i alies (nickname) en el perfil de l'usuari."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Plantilla de la Data"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "La plantilla de la ruta de navegació per a dates."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Plantilla de la Data (sense vincle)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "La plantilla de la ruta de navegació per a dates, quan l'element no està enllaçat."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Plantilla de la Recerca"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Plantilla del vincle a la primera pàgina de resultats de recerca en la ruta de navegació, utilitzat només quan aquests ocupen més d'una pàgina."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Plantilla de la Recerca (sense vincle)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "La plantilla de la ruta de navegació per a la primera pàgina de resultats de recerca, utilitzat només quan aquests ocupen més d'una pàgina i l'element no està enllaçat."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "Títol Error 404."
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "Plantilla d'Error 404."
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "La plantilla per a la ruta de la pàgina d'error 404."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Gravar Canvis"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Configuracions"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Els paràmetres estan desactualitzats."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Migrar la configuració ara."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Migrar ara."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "La instal·lació del plugin no s'ha completat."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Carregar els ajustaments predeterminats ara."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Completar ara."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Els ajustaments del plugin no són vàlids."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Intentar arreglar els ajustaments ara."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Arreglar ara."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Ajustaments guardats amb èxit."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Desfer modificació d'opcions."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Desfer"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Alguns ajustaments no van ser gravats."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Els següents ajustaments no van ser gravats:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Per favor, incloure aquest missatge en el seu %sreporti de bugs%s."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Anar a la documentació en línia de %s per a la seva versió."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Els ajustaments de Breadcrumb NavXT es van importar reeixidament des de l'arxiu."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Desfer importació d'opcions."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Va fallar la importació dels ajustaments des de l'arxiu."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Els ajustaments predeterminats de Breadcrumb NavXT es van restaurar amb èxit."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Desfer reinici d'opcions."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Es va desfer amb èxit l'operació anterior."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Desfer l'última operació de \"desfer\""
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Configuració migrats amb èxit."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Els ajustaments predeterminats es van instal·lar amb èxit."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Importar els ajustaments de Breadcrumb NavXT des d'un arxiu XML, exportar els ajustaments actuals a un arxiu XML o reiniciar els valors predeterminats de Breadcrumb NavXT."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Arxiu d'Ajustaments"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Seleccionar un arxiu XML per a carregar i importar els ajustaments d'aquest plugin."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Pàgina %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "Página no encontrada"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Resultats de recerca per a &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Articles per: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-cs_CZ.mo DELETED
Binary file
languages/breadcrumb-navxt-cs_CZ.po DELETED
@@ -1,776 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Czech
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-11-21 02:03:59+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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: class.bcn_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Síťová nastavení Breadcrumb NavXT"
16
-
17
- msgid "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>."
18
- msgstr "Přidá drobečkovou navigaci zobrazující návštěvníkovi cestu k aktuálnímu umístění. Pro podrobnosti k používání tohoto pluginu navštivte <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
-
20
- #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
- #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
- msgstr "Struktura, kterou zobrazí řetězec drobečkové navigace. Mějte na paměti, že možnost \"Rodič příspěvku\" může pro korektní fungování vyžadovat další plugin, protože tento typ obsahu není strukturovaný."
24
-
25
- #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
- #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
- #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
- #: class.bcn_breadcrumb_trail.php:99
29
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
- msgstr "<a title=\"Zobrazit %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
-
32
- #: class.bcn_breadcrumb_trail.php:109
33
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
- msgstr "Výhledky hledání pro &#39;<a title=\"Zobrazit první stránku výsledků hledání pro %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
-
36
- #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
- msgid "A collection of settings most likely to be modified are located under this tab."
38
- msgstr "Sestava nastavení, které budete pravděpodobně chtít použít, je zde."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Délka titulku"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Omezte délku titulku v názvu drobečkové navigace."
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Navigace hlavního webu"
51
-
52
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
- msgstr "Nastavení všech typů obsahu jsou umístěna zde (Příspěvky, Stránky a vlastní typy obsahu)."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Typy obsahu"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Zobrazení hierarchie příspěvku"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Hierarchie příspěvku"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "Zobrazení hierarchie %s"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Formáty příspěvku"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Maximální délka titulku:"
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Příspěvky"
83
-
84
- #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
- #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
- msgid "Post Parent"
87
- msgstr "Rodič příspěvku"
88
-
89
- #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
- msgid "The hierarchy which the breadcrumb trail will show."
91
- msgstr "Hierarchie, kterou zobrazí řetězec drobečkové navigace."
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "Hierarchie %s"
96
-
97
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
- msgstr "Nastavení všech taxonomií (včetně Rubrik, Tagů a vlastních taxonomií) jsou umístěna zde."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Taxonomie"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Šablona formátu příspěvku"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "Šablona pro formát příspěvku drobečkové navigace."
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Šablona formátu příspěvku (bez odkazu)"
116
-
117
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
- msgstr "Šablona pro post_format drobečkovou navigaci, použita pouze, když není drobečková navigace s odkazem."
120
-
121
- #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
- msgstr "Nastavení pro autora a archiv data, hledání a stránky 404 jsou umístěna zde."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Archivy autora"
128
-
129
- #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
- msgstr "<a title=\"Zobrazit archivy štítku %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
-
133
- #: class.bcn_breadcrumb_trail.php:124
134
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
- msgstr "Články od: <a title=\"Zobrazit první stránku příspěvků od %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
-
137
- #: class.bcn_breadcrumb_trail.php:131
138
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
- msgstr "<a title=\"Zobrazit archivy rubriky %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
-
141
- #: class.bcn_breadcrumb_trail.php:135
142
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
- msgstr "<a title=\"Zobrazit archivy %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
-
145
- #: includes/class.mtekk_adminkit.php:296
146
- msgid "Your settings are for a newer version."
147
- msgstr "Vaše nastavení je určeno pro novější verzi."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Text k zobrazení před řetězcem:"
152
-
153
- #: class.bcn_widget.php:103
154
- msgid "Schema.org"
155
- msgstr "Schema.org"
156
-
157
- #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
- msgid "Go to the Breadcrumb NavXT translation project."
159
- msgstr "Otevřít projekt překladu pluginu Breadcrumb NavXT."
160
-
161
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
- #: class.bcn_network_admin.php:25
163
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
- msgstr "Vaše verze PHP je příliš zastaralá, proveďte prosím aktualizaci na novější. Používáte verzi %1$s, Breadcrumb NavXT vyžaduje %2$s"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Přidá řetězec drobečkové navigace do sidebaru"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Titulek:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Výstup řetězce jako:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Seznam"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Čistý"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Nalinkovat drobečkovou navigaci"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "Obrátit pořadí řetězce"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Skrýt řetězec z domovské stránky"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Nedostatečná práva k pokračování"
201
-
202
- #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
- msgid "Tips for the settings are located below select options."
204
- msgstr "Typy pro nastavení jsou umístění pod výběrem možnosti."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Zdroje"
209
-
210
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
- msgstr "%sTutoriály a návody%: Na webových stránkách je k dispozici několik tutoriálů a návodů."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Otevřít archiv tagů Breadcrumb NavXT."
217
-
218
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
- msgstr "%sOnline dokumentace%: Navštivte dokumentaci pro více hlubších technických informací."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "Otevřít online dokumentaci Breadcrumb NavXT"
225
-
226
- #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
- 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."
228
- msgstr "%sNahlašte chybu%: Pokud si myslíte, že jste nalezli chybu, přiložte prosím verzi vašeho WordPressu a podrobné informace o výskytu chyby."
229
-
230
- #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
- msgid "Go to the Breadcrumb NavXT support post for your version."
232
- msgstr "Otevřít vlákno podpory pro vaši verzi Breadcrumb NavXT"
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "Dát zpět"
237
-
238
- #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
- msgstr "%Přispějte%: Líbí se vám Breadcrumb NavXT a chtěli byste přispět na jeho vývoj? Zvažte zakoupení piva pro autora."
241
-
242
- #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
- msgstr "Otevřít PayPal pro odeslání příspěvku na Breadcrumb NavXT"
245
-
246
- #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
- msgstr "%Překlad%: Není k dispozici váš jazyk? Kontaktujte Johna Havlik pro přeložení."
249
-
250
- #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
- #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
- #: class.bcn_network_admin.php:390
253
- msgid "General"
254
- msgstr "Obecné"
255
-
256
- #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
- 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."
258
- msgstr "Aby bylo nastavení na této stránce platné, musíte buď použít Breadcrumb NavXT widget nebo vložit kód níže do vaší šablony."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Řetězec drobečkové navigace s oddělovačem"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Řetězec drobečkové navigace jako vysouvací pole formuláře"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Rychlý start"
271
-
272
- #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
- msgstr "Použijte kód ze sekce Rychlý start níže, následující CSS může být použito jako základ pro stylování vaší drobečkové navigace."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Stylování"
279
-
280
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
- msgid "Import/Export/Reset"
282
- msgstr "Import/Export/Reset"
283
-
284
- #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
- #: includes/class.mtekk_adminkit.php:792
286
- msgid "Import"
287
- msgstr "Import"
288
-
289
- #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
- #: includes/class.mtekk_adminkit.php:793
291
- msgid "Export"
292
- msgstr "Export"
293
-
294
- #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
- #: includes/class.mtekk_adminkit.php:794
296
- msgid "Reset"
297
- msgstr "Reset"
298
-
299
- #: class.bcn_admin.php:309
300
- msgid "Breadcrumb NavXT Settings"
301
- msgstr "Nastavení BreadCrumb NavXT"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Oddělovač prvků"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Je vložen mezi každý prvek"
310
-
311
- #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
- #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
- msgid "Home Breadcrumb"
314
- msgstr "Úvodní prvek"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Vložit do řetězce úvodní prvek"
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Šablona úvodního prvku"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "Šablona pro úvodní prvek"
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Úvodní šablona (bez odkazu)"
331
-
332
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
- msgstr "Šablona pro úvodní prvek zobrazena v případě, že není použit odkaz."
335
-
336
- #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
- #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
- msgid "Blog Breadcrumb"
339
- msgstr "Prvek blogu"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Vložit prvek blogu do řetězce."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Šablona blogu"
348
-
349
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
- msgid "The template for the blog breadcrumb, used only in static front page environments."
351
- msgstr "Šablona prvku blogu, je použita pouze v případě prostředí se statickou domovskou stránkou."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Šablona blogu (bez odkazu)"
356
-
357
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
- msgstr "Šablona pro prvek blogu, použita pouze v případě prostředí se statickou domovskou stránkou a bez odkazu."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Prvek hlavní stránky"
364
-
365
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
- msgstr "Vloží prvek hlavní stránky do řetězce v multisite systému."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Šablona úvodu hlavní stránky:"
372
-
373
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
- msgstr "Šablona pro úvodní prvek hlavní stránky, bude použita pouze v multisite systému."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "Šablona úvodu hlavní stránky (bez odkazu)"
380
-
381
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
- msgstr "Šablona pro úvodní prvek hlavní stránky, bude použita pouze v multisite systému a bez odkazu."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Současná položka"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Současná položka jako odkaz"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Ano"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Stránkovaný prvek"
400
-
401
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
- msgid "Include the paged breadcrumb in the breadcrumb trail."
403
- msgstr "Zahrnout stránkovaný prvek v řetězci drobečkové navigace."
404
-
405
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
- msgstr "Indikuje, že je uživatel na jiné, než první stránce stránkovaného výpisu příspěvků / stránek."
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Stránkovaná šablona"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Šablona pro stránkovaný prvek drobečkové navigace."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Šablona příspěvku"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "Šablona příspěvku v drobečkové navigaci."
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Šablona příspěvku (bez odkazu)"
428
-
429
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
- msgstr "Šablona příspěvku v drobečkové navigaci, bude použita pouze bez odkazu."
432
-
433
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
- msgstr "Zobrazit taxonomii vedoucí k příspěvku v řetězci drobečkové navigace."
436
-
437
- #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
- #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
- msgid "Categories"
440
- msgstr "Rubriky"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "Data"
445
-
446
- #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
- #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
- msgid "Tags"
449
- msgstr "Tagy"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Stránky"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Šablona stránky"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "Šablona stránky v drobečkové navigaci."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Šablona stránky (bez odkazu)"
466
-
467
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
- msgstr "Šablona stránky v drobečkové navigaci, bude použita pouze bez odkazu."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Šablona přílohy"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Šablona přílohy v drobečkové navigaci."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Šablona přílohy (bez odkazu)"
482
-
483
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
- msgstr "Šablona přílohy v drobečkové navigaci, bude použita pouze bez odkazu."
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Otevřít %title%\" href=\"%link%\">%htitle%</a>"
490
-
491
- #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
- msgid "%htitle%"
493
- msgstr "%htitle%"
494
-
495
- #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
- #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
- msgid "%s Template"
498
- msgstr "Šablona %"
499
-
500
- #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
- #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
- msgid "The template for %s breadcrumbs."
503
- msgstr "Šablona pro %s drobečkovou navigaci."
504
-
505
- #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
- msgid "%s Template (Unlinked)"
508
- msgstr "Šablona %s (bez odkazu)"
509
-
510
- #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
- msgstr "Šablona pro %s drobečkovou navigaci, bude použita pouze bez odkazu."
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "Kořenová stránka %s"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Vybrat &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "Zobrazení archivu %s"
526
-
527
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
- msgstr "Zobrazit prvky pro archiv typů příspěvku %s v řetězci drobečkové navigace."
530
-
531
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
- msgstr "Zobrazit taxonomii vedoucí k %s v řetězci drobečkové navigace."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Šablona rubriky"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "Šablona rubriky v drobečkové navigaci."
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Šablona rubriky (bez odkazu)"
546
-
547
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
- msgstr "Šablona rubriky v drobečkové navigaci, bude použita pouze bez odkazu."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Šablona tagu"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "Šablona pro tag v drobečkové navigaci."
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Šablona tagu (bez odkazu)"
562
-
563
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
- msgstr "Šablona tagu v drobečkové navigaci, bude použita pouze bez odkazu."
566
-
567
- #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
- #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
- msgid "Miscellaneous"
570
- msgstr "Různé"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Šablona autora"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Šablona autora v drobečkové navigaci."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "Šablona autora (bez odkazu)"
583
-
584
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
- msgstr "Šablona autora v drobečkové navigaci, bude použita pouze bez odkazu."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Formát zobrazení autora"
591
-
592
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
- 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."
594
- msgstr "display_name používá jméno specifikované v \"Zobrazovat jméno veřejně jako\" v uživatelském profilu, další korespondují s hodnotami v uživatelském profilu."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Šablona data"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "Šablona pro datum v drobečkové navigaci."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Formát data (bez odkazu)"
607
-
608
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
- msgstr "Šablona pro formát data v drobečkové navigaci, bude použita pouze bez odkazu."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Šablona hledání"
615
-
616
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
- msgstr "Šablona pro výsledky vyhledávání, bude použita pouze v případě, že výsledky vyhledávání přesahují jednu stránku."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Šablona hledání (bez odkazu)"
623
-
624
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
- msgstr "Šablona pro výsledky vyhledávání, bude použita pouze v případě, že výsledky vyhledávání přesahují jednu stránku a není použit odkaz."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "Titulek 404"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "Šablona 404"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "Šablona pro 404 v drobečkové navigaci."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Uložit změny"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Nastavení"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "Naše nastavení je zastaralé."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Migrovat nastavení nyní."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Migrovat nyní."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "Instalace pluginu není kompletní."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Nahraje výchozí nastavení."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Hotovo."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "Nastavení pluginu není správné."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Pokus o opravu nastavení."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Opravit."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Nastavení úspěšně uloženo."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Vrátit změny nastavení."
691
-
692
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
- #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
- #: includes/class.mtekk_adminkit.php:641
695
- msgid "Undo"
696
- msgstr "Vrátit"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Některá nastavení nebyla uložena."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "Následující nastavení nebyla uložena:"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Přidejte prosím tuto zprávu do vašeho %sbug report%s."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Otevřete si příspěvek podpory %s pro vaši verzi."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Nastavení úspěšně importováno z nahraného souboru."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Vrátit zpět importování nastavení."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Importování nastavení ze souboru selhalo."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Nastavení úspěšně navráceno k výchozím hodnotám."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Vrátit vrácení nastavení."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Nastavení úspěšně vrátilo poslední operaci."
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Vrátit poslední operací vrácení."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Nastavení úspěšně migrováno."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Výchozí nastavení úspěšně nainstalováno."
749
-
750
- #: includes/class.mtekk_adminkit.php:784
751
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
- msgstr "Importoval nastavení z XML souboru, exportovat současné nastavení do XML souboru nebo vrátit výchozí nastavení."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Soubor nastavení"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Vyberte XML soubor nastavení pro nahrání a importování nastavení."
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Stránka %htitle%"
765
-
766
- #: class.bcn_breadcrumb_trail.php:106
767
- msgid "404"
768
- msgstr "404"
769
-
770
- #: class.bcn_breadcrumb_trail.php:111
771
- msgid "Search results for &#39;%htitle%&#39;"
772
- msgstr "Výsledky hledání pro &#39;%htitle%&#39;"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
776
- msgstr "Články od: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-da_DK.mo DELETED
Binary file
languages/breadcrumb-navxt-da_DK.po DELETED
@@ -1,841 +0,0 @@
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: 2014-05-26 21:37:36+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr ""
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr ""
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Vedhæftninger"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til%title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til tag-arkivet for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til kategori-arkivet for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til arkivet for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Advarsel: Indstillinger for individuelle websites vil overskrive enhver indstilling valgt fra denne side. "
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Advarsel: Indstillinger for individuelle websites kan overskrive enhver indstilling valgt fra denne side. "
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Advarsel: Dine netværksindstillinger vil overskrive enhver indstilling valgt fra denne side. "
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Advarsel: Dine netværksindstillinger kan overskrive enhver indstilling valgt fra denne side. "
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Advarsel: BCN_SETTINGS_* er ikke defineret, i stedet bruges standard BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT netværksindstillinger"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Tilføjer en breadcrumb-navigation, der viser den besøgendes sti til den nuværende side. For flere detaljer om dette plugin, besøg da <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Hierarkiet som breadcrumb-stien vil vise. Bemærk at \"Indlægsforælder\"-indstillingen kan kræve et andet plugin for at opføre sig som forventet, da dette er en ikke-hierarkisk indholdstype."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Søgeresultater for &#39;<a title=\"Gå til første side af søgeresultaterne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "En samling af indstillinger, der højst sandsynligt skal ændres, er placeret under denne fane."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Titellængde"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Hovedside-breadcrumb"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Indstillingerne for alle indholdstyper (Indlæg, sider og brugeroprettede indholdstyper) er placeret under denne fane."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Indholdstyper"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Visning af hierarki for indlæg"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Hierarki for indlæg"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "Visning af hierarki for %s"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Formater"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Maks. titellængde"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Indlæg"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Indlægsforælder"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Hierarkiet som breadcrumb-stien vil vise."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "Hierarki for %s"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Indstillingerne for alle taksonomier (inkl. kategorier, tags og brugeroprettede taksonomier) er placeret under denne fane."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Taksonomier"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Skabelon for format"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Skabelonen for format-breadcrumbs."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Skabelon for format (uden link)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Skabelonen for post_format breadcrumbs, kun brugt når breadcrumben ikke er linket."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Indstillingerne for forfatter- og datoarkiver, søgninger og 404-sider er placeret under denne fane."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Forfatterarkiv"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artikler af: <a title=\"Gå til den første side af indlæg af %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Dine indstillinger er for en nyere version."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Tekst foran stien:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Gå til Breadcrumb NavXT oversættelsesprojekt."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Din version af PHP er for gammel, opgrader venligst til en nyere version. Din version er %1$s, Breadcrumb NavXT kræver %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Tilføjer en breadcrumb-sti til din sidebar"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Titel:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Vis sti som:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Liste"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Klar"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Link breadcrumbs"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Vis sti i omvendt rækkefølge"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Skjul stien på forsiden"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Utilstrækkelige privilegier til at fortsætte."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Tips til indstillingerne findes under den enkelte indstilling."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Resurser"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sVejledninger og hjælp%s: Der er flere guides, vejledninger og hjælp på forfatterens hjemmeside."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Gå til tag-arkivet for Breadcrumb NavXT."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sOnline dokumentation%s: Se dokumentationen for mere detaljerede tekniske informationer."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Gå til den online dokumentation for Breadcrumb NavXT"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- 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."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Gå til Breadcrumb NavXT supportindlæg for din version."
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Giv igen"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonate%s: Elsker du Breadcrumb NavXT og ønsker at hjælpe udviklingen? Overvej at købe forfatteren en øl."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Gå til PayPal for at give en donation til Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sOversæt%s: Er dit sprog ikke tilgængeligt? Kontakt John Havlik for at oversætte."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Generelt"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- 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."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Breadcrumb-sti med adskillere"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Breadcrumb-sti som liste"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Quick Start"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Bruges koden fra Quick Start-sektionen herover, kan følgende CSS bruges som base til at style din breadcrumb-sti."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Styling"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Import/Eksport/Nulstil"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Importer"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Eksporter"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Nulstil"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT Indstillinger"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Breadcrumb-adskiller"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Placeret mellem hver breadcrumb."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Forside-breadcrumb"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Placer forside-breadcrumben i stien."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Skabelon for forside"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Skabelonen for forside-breadcrumben"
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Skabelon for forside (uden link)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Skabelonen for forside-breadcrumb, brugt når breadcrumben ikke er linket."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Blog-breadcrumb"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Placer blog-breadcrumben i stien."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Skabelon for blog"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Skabelon for blog (uden link)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat, og når breadcrumben ikke er linket."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Hovedside-breadcrumb"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Placer hovedside-breadcrumben i stien i en multisite-installation."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Skabelon for hovedside"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Skabelon for hovedside (uden link)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer, og når breadcrumben ikke er linket."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Nuværende side"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Link nuværende side"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Ja"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Pagineret breadcrumb"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Inkluder den paginerede breadcrumb i breadcrumb-stien."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Indikerer at brugeren er på en anden side end den første på paginerede indlæg/sider."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Pagineret skabelon"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Skabelonen for paginerede breadcrumbs."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Skabelon for indlæg"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Skabelonen for indlægs-breadcrumbs."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Skabelon for indlæg (uden link)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Skabelonen for indlægs-breadcrumbs, kun brugt når breadcrumben ikke er linket."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Kategorier"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Datoer"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Tags"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Sider"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Skabelon for side"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Skabelonen for side-breadcrumbs"
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Skabelon for side (uden link)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Skabelonen for side-breadcrumbs, kun brugt når breadcrumben ikke er linket."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Skabelon for vedhæftning"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Skabelonen for vedhæftnings-breadcrumbs."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Skabelon for vedhæftning (uden link)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Skabelonen for vedhæftnings-breadcrumbs, kun brugt når breadcrumben ikke er linket."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "Skabelon for %s"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "Skabelonen for %s-breadcrumbs."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "Skabelon for %s (uden link)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Skabelonen for %s-breadcrumbs, kun brugt når breadcrumben ikke er linket."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s rodside"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Vælg &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "Visning af %s-arkiv"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Vis breadcrumben for post type-arkiver til %s i breadcrumb-stien."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Skabelon for kategori"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Skabelonen for kategori-breadcrumbs."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Skabelon for kategori (uden link)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "Skabelonen for kategori-breadcrumbs, kun brugt når breadcrumben ikke er linket."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Skabelon for tag"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Skabelonen for tag-breadcrumbs."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Skabelon for tag (uden link)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Skabelonen for tag-breadcrumbs, kun brugt når breadcrumben ikke er linket."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Diverse"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Skabelon for forfatter"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Skabelonen for forfatter-breadcrumbs."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Skabelon for forfatter (uden link)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Skabelonen for forfatter-breadcrumbs, kun brugt når breadcrumben ikke er linket."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Visning af forfatterformat"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name bruger navnet angivet i \"Vis navn offentligt som\" under brugerprofilen; de øvrige svarer til indstillingerne i brugerprofilen."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Skabelon for dato"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Skabelonen for dato-breadcrumbs."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Skabelon for dato (uden link)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Skabelonen for dato-breadcrumbs, kun brugt når breadcrumben ikke er linket."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Skabelon for søgning"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Skabelon for søgning (uden link)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider, og breadcrumben ikke er linket."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404-titel"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "Skabelon for 404"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "Skabelonen for 404-breadcrumbs."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Gem ændringer"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Indstillinger"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Dine indstillinger er forældede."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Migrer indstillingerne nu."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Migrer nu."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "Din plugin-installation er ikke færdig."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Indlæs standardindstillinger nu."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Færdiggør nu."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Dine plugin-indstillinger er ugyldige."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Forsøg at rette indstillinger nu."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Ret nu."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Indstillinger gemt."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Fortryd gem af indstillinger."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Fortryd"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Nogle indstillinger blev ikke gemt."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Følgende indstillinger blev ikke gemt:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Venligst inkluder denne besked i din %sfejlrapport%s."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Gå til %s supportindlæg for din version."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Indstillinger importeret fra den uploadede fil."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Fortryd import af indstillinger."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Importering af indstillinger fra fil mislykkedes."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Indstillinger nulstillet til standardværdierne."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Fortryd nulstilling af indstillinger."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Indstillinger fortrød seneste handling."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Fortryd seneste fortryd-handling."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Indstillinger migreret."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Standardindstillinger installeret."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Importer indstillinger fra en XML-fil, eksporter de nuværende indstillinger til en XML-fil eller nulstil til standardindstillinger."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Fil med indstillinger"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Vælg en XML-fil med indstillinger at uploade og importere indstillinger fra."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Side %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Søgeresultater for &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artikler af: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-de_DE.mo DELETED
Binary file
languages/breadcrumb-navxt-de_DE.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in German
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-05-25 14:42:30+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr ""
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr ""
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Anhänge"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu den %title% Tag Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu den %title% Kategorie Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu den %title% Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Warnung: Individuelle Seiten-Einstellungen überschreiben alle Einstellungen, die auf dieser Seite vorgenommen werden."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Warnung: Individuelle Seiten-Einstellungen können alle Einstellungen, die auf dieser Seite vorgenommen werden, überschreiben."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Warnung: Deine Netzwerk-Einstellungen werden alle Einstellungen, die Du auf dieser Seite vornimmst, überschreiben."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Warnung: Deine Netzwerk-Einstellungen können unter Umständen alle Einstellungen, die Du auf dieser Seite vornimmst, überschreiben."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Warnung: Kein BCN_SETTINGS_* define Statement gefunden, verwende BCN_SETTINGS_FAVOR_NETWORK Standard-Einstellung."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT Netzwerk Einstellungen"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Fügt eine Breadcrumb Navigation hinzu, die dem Besucher den Pfad zu seiner aktuellen Seite anzeigt. Besuche die <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT Webseite</a> um mehr über die Verwendung des Plugins zu erfahren."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Die Hierarchie, welche der Breadcrumb Trail anzeigen wird. Beachte, dass die \"Post Parent\" Option ein zusätzliches Plugin benötigen kann um wie erwartet zu funktionieren, da dies ein nicht-hierarchischer Post Typ ist."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Suchergebnisse für &#39;<a title=\"Gehe zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Eine Sammlung von Einstellungen, die am häufigsten verändert werden, finden sich unter diesem Tab."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Länge des Titels"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Breadcrumb der Hauptseite"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Die Einstellugen für alle Post Arten (Posts, Seiten und Custom Post Types) finden sich unter diesem Tab."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Post Typen"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Post Hierarchie Anzeige"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Post Hierarchie"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Hierarchie Anzeige"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Post Formate"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Maximale Länge des Titels:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Posts"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Post Parent"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Die Hierarchie, welche vom Breadcrumb Trail angezeigt wird."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Hierarchie"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Die Einstellungen für alle Systematiken (inkl. Kategorien, Tags und Custom Systematiken) finden sich unter diesem Tab."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Systematiken"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Post Format Vorlage"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Die Vorlage für Post Format Breadcrumbs."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Post Format Vorlage (nicht verlinkt)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Die Vorlage für post_format Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Die Einstellungen für Autor und Datum Archive, Suchanfragen und 404 Seiten finden sich unter diesem Tab."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Autor Archive"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artikel von: <a title=\"Gehe zur ersten Seite mit Posts von %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Deine Einstellungen sind für eine aktuellere Version ausgelegt."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Text, der vor dem Trail angezeigt werden soll:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- 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"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Fügt der Sidebar einen Breadcrumb Trail hinzu"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Titel:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Trail ausgeben als:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Liste"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Plain"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Verlinke die Breadcrumbs"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Die Reihenfolge des Trails umkehren"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Verstecke den Trail auf der Startseite"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Nicht genügend Rechte um fortzufahren."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Tips für die Einstellungen findest Du unter den Select-Optionen."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Ressourcen"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Gehe zum Breadcrumb NavXT Archiv."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sOnline Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- 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."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Etwas Zurückgeben"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Grundsätzliches"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- 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."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Breadcrumb Trail mit Abstandshaltern"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Breadcrumb Trail in Listen-Form"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Schnellstart"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- 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."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Styling"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Import/Export/Reset"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Import"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Export"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Reset"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT Einstellungen"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Breadcrumb Trennzeichen"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Wird zwischen jedem Breadcrumb eingefügt."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Home Breadcrumb"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Füge den Home Breadcrumb in den Trail ein."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Home Template"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Das Template für das Home Breadcrumb."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Home Template (nicht verlinkt)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Blog Breadcrumb"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Platziere das Blog Breadcrumb im Trail."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Blog Template"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Blog Template (nicht verlinkt)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Hauptseite Breadcrumb"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Hauptseite Home Template"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Hauptseite Home Template (nicht verlinkt)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Aktueller Eintrag"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Aktuellen Eintrag verlinken"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Ja"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Paged Breadcrumb"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Paged Template"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Das Template für Paged Breadcrumbs."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Post Template"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Das Template für Post Breadcrumbs."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Post Template (nicht verlinkt)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Kategorien"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Daten"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Tags"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Seiten"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Seiten Template"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Das Template für Seiten Breadcrumbs."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Seiten Template (nicht verlinkt)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Anhang Template"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Das Template für Anhang Breadcrumbs."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Anhang Template (nicht verlinkt)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s Template"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "Das Template für %s Breadcrumbs."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s Template (nicht verlinkt)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s Root Seite"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Auswahl &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s Archiv Anzeige"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Kategorie Template"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Das Template für Kategorie Breadcrumbs."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Kategorie Template (nicht verlinkt)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Tag Template"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Das Template für Tag Breadcrumbs."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Tag Vorlage (nicht verlinkt)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Die Vorlage für Tag Breadcrumbs - wird nur verwendet, wenn der Breadcrumb nicht verbunden (linked) ist."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Sonstiges"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Autor Template"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Das Template für Autoren Breadcrumbs."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "(nicht verlinkt)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Autor Anzeige Format"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Datum Template"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Das Template für Datum Breadcrumbs."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Datum Template (nicht verlinkt)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Suche Template"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Suche Template (nicht verlinkt)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404 Titel"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "404 Template"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "Das Template für 404 Breadcrumbs."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Änderungen Speichern"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Einstellungen"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Deine Einstellungen sind veraltet."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Die Einstellungen jetzt migrieren."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Jetzt migrieren."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "Deine Plugin-Installtion ist fertig."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Standard-Einstellungen jetzt laden."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Fertiggestellt."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Deine Plugin-Einstellungen sind fehlerhaft."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Versuche, die Einstellungen jetzt zu fixen."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Jetzt fixen."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Einstellungen erfolgreich gespeichert."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Das Speichern der Optionen rückgängig machen."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Rückgänig machen"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Einige Einstellungen wurden nicht gespeichert."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Die folgenden Einstellungen wurden nicht gespeichert."
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Bitte füge diese Nachricht Deinem %sbug report%s bei."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Gehe zum %s Support Post für Deine Version."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Die Einstellungen wurden erfolgreich von der hochgeladenen Datei importiert."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Den Optionen-Import rückgängig machen."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Einstellungen-Import aus Datei fehlgeschlagen."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Einstellungen erfolgreich auf Standardwerte zurückgesetzt."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Den Optionen-Reset rückgängig machen."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Einstellungen hat die letzte Operation erfolgreich rückgängig gemacht."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Wiederholen."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Einstellungen erfolgreich migriert."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Standardeinstellungen erfolgreich installiert."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Einstellungen aus einer XML Datei importieren, aktuelle Einstellungen in XML Datei exportieren oder Reset auf Standardeinstellungen."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Einstellungen Datei"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Wähle eine XML Datei mit Einstellungen zum Hochladen und Einstellungen-Import."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Seite %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Suchresultate für &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artikel von: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-es_ES.mo CHANGED
Binary file
languages/breadcrumb-navxt-es_ES.po CHANGED
@@ -1,324 +1,30 @@
1
- # Translation of Breadcrumb NavXT in Spanish (Spain)
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2014-12-31 03:26:58+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Advertencia: Estás usando un ajuste descontinuado de \"Longitud de Títulos\" (ver Misceláneos &gt; Descontinuados), por favor %1$suse CSS en su lugar%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Ir a la guía sobre cómo recortar la longitud de los títulos con CSS"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Migaja del Blog"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Mostrar la jerarquía (especificada abajo) que lleva a la entrada en la ruta de navegación."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Mostrar la jerarquía (especificada abajo) que lleva a %s en la ruta de navegación."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Descontinuado"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Limita la longitud de los títulos de la ruta (Descontinuado, %suse CSS en su lugar%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "La global $post no corresponde al tipo de WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Los ajustes no cambiaron, no hay nada que grabar."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Los ajustes no fueron grabados."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Adjuntos"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a los archivos de la etiqueta %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a los archivos de la categoría %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a los archivos de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Advertencia: los ajustes individuales del sitio modificarán cualquier ajuste en esta página."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Advertencia: los ajustes individuales del sitio pueden modificar los ajustes de esta página."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Advertencia: los ajustes de red modificarán cualquier ajuste en esta página."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Advertencia: los ajustes de red pueden modificar los ajustes de esta página."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Advertencia: No se definieron los ajustes BCN_SETTINGS_*, el ajuste predeterminado es BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Ajustes de Red de Breadcrumb NavXT"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Agrega un ruta de navegación mostrando al visitante su posición actual. Para detalles de cómo usar este plugin, visite la documentación oficial de <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik | Traducción: Karin Sequén"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "La jerarquia en la que se muestra la ruta de migas. Tome nota de que la opción de \"Entrada/Página Superior\" puede requerir un plugin adicional para comportarse como se espera, ya que este es un tipo de publicación sin jerarquía."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Resultados de búsqueda para &#39;<a title=\"Ir a la primer página de los resultados de búsqueda para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Un conjunto de ajustes que probablemente serán modificados se encuentra en esta pestaña."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Longitud del título"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Migas (Breadcrumbs) del Sitio Principal"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Los ajustes para todos los tipos de entradas (Entradas, Páginas, Personalizadas) se encuentran en esta pestaña."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Tipos de Entradas"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Jerarquía para desplegar entradas"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Jerarquía de entradas"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Jerarquía de Despliegue"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Formatos de Entradas"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Longitud Máxima del Título:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Entradas"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Entrada o Página superior"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "La jerarquía que mostrará la ruta de migas."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Jerarquía"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Los ajustes para todas las taxonomías (incluyendo Categorías, Etiquetas y Personalizadas) están en esta pestaña."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Taxonomías"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Plantilla para Formato de la Entrada"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "La plantilla para el formato de la ruta de migas en la entrada"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Plantilla para Formato de la Entrada (sin enlace)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "La plantilla para el formato de la ruta de migas en la entrada, utilizado sólo cuando la miga no tiene enlace."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Los ajustes para autor y archivos, búsquedas, y páginas 404 están en esta pestaña."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Archivos de Autor"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artículos por: <a title=\"Ir a la primer página de entradas por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Sus ajustes son para una versión más nueva."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Texto a mostrar antes de las migas:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Ir al proyecto de traducción de Breadcrumb NavXT"
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Su versión de PHP es demasiado antigua, por favor, actualice a la nueva versión. Su versión es %1$s, el plugin Breadcrumb NavXT requiere la versión %2$s "
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Agrega una ruta de navegación en su barra lateral"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Título:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Mostrar ruta como:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Lista"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Texto plano"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Enlace a la Ruta"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Invertir el orden de la ruta"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Ocultar la ruta de la página principal"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "No tiene privilegios para proceder."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Encontrará tips para los ajustes debajo de cada opción."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Recursos"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sReportar Errores%s: Si piensa que ha encontrado un error, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el error."
310
 
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
314
 
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Dar de vuelta"
318
 
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
322
 
323
  #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
@@ -328,9 +34,13 @@ msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
328
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
  msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
330
 
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
 
 
 
 
334
  msgid "General"
335
  msgstr "General"
336
 
@@ -377,335 +87,555 @@ msgstr "Exportar"
377
  msgid "Reset"
378
  msgstr "Reiniciar"
379
 
380
- #: class.bcn_admin.php:379
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  msgid "Breadcrumb NavXT Settings"
382
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
383
 
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Separador de Navegación"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
 
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Colocado en medio de cada opción de navegación."
391
 
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
 
 
 
 
394
  msgid "Home Breadcrumb"
395
  msgstr "Incluir Inicio"
396
 
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
  msgid "Place the home breadcrumb in the trail."
399
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
400
 
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
  msgid "Home Template"
403
  msgstr "Plantilla de la Página de Inicio"
404
 
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
  msgid "The template for the home breadcrumb."
407
  msgstr "La plantilla de la ruta de navegación para la página de inicio."
408
 
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
  msgid "Home Template (Unlinked)"
411
  msgstr "Plantilla de la Página de Inicio (sin vínculo)"
412
 
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
  msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
416
 
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
 
 
 
 
419
  msgid "Blog Breadcrumb"
420
  msgstr "Incluir Inicio (del Blog)"
421
 
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
  msgid "Place the blog breadcrumb in the trail."
424
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
425
 
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
  msgid "Blog Template"
428
  msgstr "Plantilla del Blog"
429
 
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
  msgid "The template for the blog breadcrumb, used only in static front page environments."
432
  msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática."
433
 
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
  msgid "Blog Template (Unlinked)"
436
  msgstr "Plantilla del Blog (sin vínculo)"
437
 
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
  msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática y el elemento de inicio no está enlazado."
441
 
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
 
 
 
 
443
  msgid "Main Site Breadcrumb"
444
  msgstr "Ruta del Sitio Principal"
445
 
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
  msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
449
 
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
  msgid "Main Site Home Template"
452
  msgstr "Plantilla de Inicio del Sitio Principal"
453
 
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
  msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
457
 
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
  msgid "Main Site Home Template (Unlinked)"
460
  msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
461
 
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
  msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs y el elemento de navegación no está enlazado."
465
 
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Item Actual"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Incluir Vínculo a Item Actual"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Sí"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Ruta de Navegación Paginada"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Incluir la navegación paginada en la ruta de navegación"
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
489
 
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Plantilla de Entrada Paginada"
493
 
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
497
 
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
  msgid "Post Template"
500
  msgstr "Plantilla de Entradas"
501
 
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
  msgid "The template for post breadcrumbs."
504
  msgstr "La plantilla de la ruta de navegación para entradas."
505
 
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
  msgid "Post Template (Unlinked)"
508
  msgstr "Plantilla de la Entrada (sin vínculo)"
509
 
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
  msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
513
 
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
 
 
 
 
 
 
 
 
 
 
 
 
516
  msgid "Categories"
517
  msgstr "Categorías"
518
 
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
 
520
  msgid "Dates"
521
  msgstr "Fechas"
522
 
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
  msgid "Tags"
526
  msgstr "Etiquetas"
527
 
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
 
 
 
 
 
 
 
 
 
 
529
  msgid "Pages"
530
  msgstr "Páginas"
531
 
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
  msgid "Page Template"
534
  msgstr "Plantilla de la Página"
535
 
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
  msgid "The template for page breadcrumbs."
538
  msgstr "La plantilla de la ruta de navegación para páginas."
539
 
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
  msgid "Page Template (Unlinked)"
542
  msgstr "Plantilla de la Página (sin vínculo)"
543
 
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
  msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
547
 
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
 
 
 
 
549
  msgid "Attachment Template"
550
  msgstr "Plantilla de Archivo Adjunto"
551
 
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
  msgid "The template for attachment breadcrumbs."
554
  msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
555
 
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
  msgid "Attachment Template (Unlinked)"
558
  msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
559
 
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
  msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
563
 
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
  msgid "%s Template"
567
  msgstr "Plantilla de %s"
568
 
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
  msgid "The template for %s breadcrumbs."
572
  msgstr "La plantilla de la ruta de navegación para %s."
573
 
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
  msgid "%s Template (Unlinked)"
577
  msgstr "Plantilla de %s (sin vínculo)"
578
 
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
  msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
583
 
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
  msgid "%s Root Page"
586
  msgstr "%s Página Raíz"
587
 
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
  msgid "&mdash; Select &mdash;"
590
  msgstr "&mdash; Seleccione &mdash;"
591
 
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
  msgid "%s Archive Display"
594
  msgstr "Despliegue de Archivos de %s"
595
 
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
  msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
599
 
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
601
  msgid "Category Template"
602
  msgstr "Plantilla de Categoría"
603
 
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
  msgid "The template for category breadcrumbs."
606
  msgstr "La plantilla de la ruta de navegación para categorías."
607
 
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
  msgid "Category Template (Unlinked)"
610
  msgstr "Plantilla de la Categoría (sin vínculo)"
611
 
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
  msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
615
 
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
  msgid "Tag Template"
618
  msgstr "Plantilla de la Etiqueta"
619
 
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
  msgid "The template for tag breadcrumbs."
622
  msgstr "La plantilla de la ruta de navegación para etiquetas."
623
 
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
  msgid "Tag Template (Unlinked)"
626
  msgstr "Plantilla de la Etiqueta (sin vínculo)"
627
 
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
  msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
631
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
  msgid "Miscellaneous"
635
  msgstr "Misceláneos"
636
 
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
 
 
 
 
638
  msgid "Author Template"
639
  msgstr "Plantilla de Autor"
640
 
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
  msgid "The template for author breadcrumbs."
643
  msgstr "La plantilla de la ruta de navegación para autores."
644
 
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
  msgid "Author Template (Unlinked)"
647
  msgstr "Plantilla del Autor (sin vínculo)"
648
 
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
  msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
652
 
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
  msgid "Author Display Format"
655
  msgstr "Formato de Despliegue de Autor"
656
 
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
  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."
659
  msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
660
 
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
  msgid "Date Template"
663
  msgstr "Plantilla de la Fecha"
664
 
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
  msgid "The template for date breadcrumbs."
667
  msgstr "La plantilla de la ruta de navegación para fechas."
668
 
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
  msgid "Date Template (Unlinked)"
671
  msgstr "Plantilla de la Fecha (sin vínculo)"
672
 
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
  msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
676
 
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
  msgid "Search Template"
679
  msgstr "Plantilla de la Búsqueda"
680
 
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
  msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
684
 
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
  msgid "Search Template (Unlinked)"
687
  msgstr "Plantilla de la Búsqueda (sin vínculo)"
688
 
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
  msgstr "La plantilla de la ruta de navegación para la primera página de resultados de búsqueda, utilizado sólo cuando éstos ocupan más de una página y el elemento no está enlazado."
692
 
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
  msgid "404 Title"
695
  msgstr "Título Error 404"
696
 
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
  msgid "404 Template"
699
  msgstr "Plantilla de Error 404"
700
 
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
  msgid "The template for 404 breadcrumbs."
703
  msgstr "La plantilla para la ruta de la página de error 404."
704
 
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
  msgid "Save Changes"
707
  msgstr "Grabar Cambios"
708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  #: includes/class.mtekk_adminkit.php:225
710
  msgid "Settings"
711
  msgstr "Configuraciones"
@@ -722,6 +652,10 @@ msgstr "Migrar los ajustes ahora."
722
  msgid "Migrate now."
723
  msgstr "Migrar ahora."
724
 
 
 
 
 
725
  #: includes/class.mtekk_adminkit.php:312
726
  msgid "Your plugin install is incomplete."
727
  msgstr "La instalación del plugin no se ha completado."
@@ -760,6 +694,14 @@ msgstr "Deshacer modificación de opciones."
760
  msgid "Undo"
761
  msgstr "Deshacer"
762
 
 
 
 
 
 
 
 
 
763
  #: includes/class.mtekk_adminkit.php:516
764
  msgid "Some settings were not saved."
765
  msgstr "Algunos ajustes no fueron grabados."
@@ -824,18 +766,71 @@ msgstr "Archivo de Ajustes"
824
  msgid "Select a XML settings file to upload and import settings from."
825
  msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
826
 
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Página %htitle%"
830
 
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "Página no encontrada"
834
 
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Resultados de búsqueda para &#39;%htitle%&#39;"
838
 
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artículos por: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Development (trunk) in Spanish (Spain)
2
+ # This file is distributed under the same license as the Development (trunk) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-09-15 20:24:44+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1100\n"
11
+ "Project-Id-Version: Development (trunk)\n"
12
 
13
+ #: class.bcn_breadcrumb.php:91
14
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
15
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
+ #: class.bcn_breadcrumb_trail.php:110
18
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
19
+ msgstr ""
20
 
21
+ #: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
22
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
23
+ msgstr ""
24
 
25
+ #: class.bcn_breadcrumb_trail.php:127
26
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
27
+ msgstr ""
28
 
29
  #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
30
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
34
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
35
  msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
36
 
37
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
38
+ msgid "Go to the Breadcrumb NavXT translation project."
39
+ msgstr "Ir al proyecto de traducción de Breadcrumb NavXT"
40
+
41
+ #: class.bcn_admin.php:252 class.bcn_admin.php:390 class.bcn_admin.php:391
42
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:462
43
+ #: class.bcn_network_admin.php:463
44
  msgid "General"
45
  msgstr "General"
46
 
87
  msgid "Reset"
88
  msgstr "Reiniciar"
89
 
90
+ #: class.bcn_admin.php:336 class.bcn_network_admin.php:421
91
+ msgid "Warning: Your network settings will override any settings set in this page."
92
+ msgstr "Advertencia: los ajustes de red modificarán cualquier ajuste en esta página."
93
+
94
+ #: class.bcn_admin.php:340 class.bcn_admin.php:344
95
+ msgid "Warning: Your network settings may override any settings set in this page."
96
+ msgstr "Advertencia: los ajustes de red pueden modificar los ajustes de esta página."
97
+
98
+ #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
99
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL."
100
+ msgstr ""
101
+
102
+ #: class.bcn_admin.php:361 class.bcn_network_admin.php:433
103
+ msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
104
+ msgstr "Advertencia: Estás usando un ajuste descontinuado de \"Longitud de Títulos\" (ver Misceláneos &gt; Descontinuados), por favor %1$suse CSS en su lugar%2$s."
105
+
106
+ #: class.bcn_admin.php:361 class.bcn_admin.php:646
107
+ #: class.bcn_network_admin.php:433 class.bcn_network_admin.php:718
108
+ msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
109
+ msgstr "Ir a la guía sobre cómo recortar la longitud de los títulos con CSS"
110
+
111
+ #: class.bcn_admin.php:378
112
  msgid "Breadcrumb NavXT Settings"
113
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
114
 
115
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:462
116
+ msgid "A collection of settings most likely to be modified are located under this tab."
117
+ msgstr "Un conjunto de ajustes que probablemente serán modificados se encuentra en esta pestaña."
118
+
119
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:466
120
+ msgid "Breadcrumb Separator"
121
+ msgstr "Separador de Navegación"
122
+
123
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:466
124
+ msgid "Placed in between each breadcrumb."
125
+ msgstr "Colocado en medio de cada opción de navegación."
126
+
127
+ #: class.bcn_admin.php:398 class.bcn_network_admin.php:470
128
+ msgid "Current Item"
129
+ msgstr "Item Actual"
130
+
131
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:473
132
+ msgid "Link Current Item"
133
+ msgstr "Incluir Vínculo a Item Actual"
134
+
135
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:473
136
+ msgid "Yes"
137
+ msgstr "Sí"
138
+
139
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
140
+ msgid "Paged Breadcrumb"
141
+ msgstr "Ruta de Navegación Paginada"
142
+
143
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
144
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
145
+ msgstr "Incluir la navegación paginada en la ruta de navegación"
146
+
147
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
148
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
149
+ msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
150
 
151
+ #: class.bcn_admin.php:403 class.bcn_network_admin.php:475
152
+ msgid "Paged Template"
153
+ msgstr "Plantilla de Entrada Paginada"
154
 
155
+ #: class.bcn_admin.php:403 class.bcn_network_admin.php:475
156
+ msgid "The template for paged breadcrumbs."
157
+ msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
158
+
159
+ #: class.bcn_admin.php:407 class.bcn_admin.php:410
160
+ #: class.bcn_network_admin.php:479 class.bcn_network_admin.php:482
161
  msgid "Home Breadcrumb"
162
  msgstr "Incluir Inicio"
163
 
164
+ #: class.bcn_admin.php:410 class.bcn_network_admin.php:482
165
  msgid "Place the home breadcrumb in the trail."
166
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
167
 
168
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:483
169
  msgid "Home Template"
170
  msgstr "Plantilla de la Página de Inicio"
171
 
172
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:483
173
  msgid "The template for the home breadcrumb."
174
  msgstr "La plantilla de la ruta de navegación para la página de inicio."
175
 
176
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:484
177
  msgid "Home Template (Unlinked)"
178
  msgstr "Plantilla de la Página de Inicio (sin vínculo)"
179
 
180
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:484
181
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
182
  msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
183
 
184
+ #: class.bcn_admin.php:416
185
+ msgid "Blog Breadcrumb "
186
+ msgstr "Migaja del Blog"
187
+
188
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:488
189
+ #: class.bcn_network_admin.php:491
190
  msgid "Blog Breadcrumb"
191
  msgstr "Incluir Inicio (del Blog)"
192
 
193
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:491
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
196
 
197
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:492
198
  msgid "Blog Template"
199
  msgstr "Plantilla del Blog"
200
 
201
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:492
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática."
204
 
205
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:493
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Plantilla del Blog (sin vínculo)"
208
 
209
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:493
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática y el elemento de inicio no está enlazado."
212
 
213
+ #: class.bcn_admin.php:425 class.bcn_network_admin.php:497
214
+ msgid "Mainsite Breadcrumb"
215
+ msgstr "Migas (Breadcrumbs) del Sitio Principal"
216
+
217
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:500
218
  msgid "Main Site Breadcrumb"
219
  msgstr "Ruta del Sitio Principal"
220
 
221
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:500
222
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
223
  msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
224
 
225
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:501
226
  msgid "Main Site Home Template"
227
  msgstr "Plantilla de Inicio del Sitio Principal"
228
 
229
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:501
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
232
 
233
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:502
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
236
 
237
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:502
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs y el elemento de navegación no está enlazado."
240
 
241
+ #: class.bcn_admin.php:437 class.bcn_network_admin.php:509
242
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
243
+ msgstr "Los ajustes para todos los tipos de entradas (Entradas, Páginas, Personalizadas) se encuentran en esta pestaña."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
 
245
+ #: class.bcn_admin.php:437 class.bcn_network_admin.php:509
246
+ msgid "Post Types"
247
+ msgstr "Tipos de Entradas"
248
 
249
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:510
250
+ msgid "Posts"
251
+ msgstr "Entradas"
252
 
253
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:513
254
  msgid "Post Template"
255
  msgstr "Plantilla de Entradas"
256
 
257
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:513
258
  msgid "The template for post breadcrumbs."
259
  msgstr "La plantilla de la ruta de navegación para entradas."
260
 
261
+ #: class.bcn_admin.php:442 class.bcn_network_admin.php:514
262
  msgid "Post Template (Unlinked)"
263
  msgstr "Plantilla de la Entrada (sin vínculo)"
264
 
265
+ #: class.bcn_admin.php:442 class.bcn_network_admin.php:514
266
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
267
  msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
268
 
269
+ #: class.bcn_admin.php:443 class.bcn_network_admin.php:515
270
+ msgid "Post Hierarchy Display"
271
+ msgstr "Jerarquía para desplegar entradas"
272
+
273
+ #: class.bcn_admin.php:443 class.bcn_network_admin.php:515
274
+ msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
275
+ msgstr "Mostrar la jerarquía (especificada abajo) que lleva a la entrada en la ruta de navegación."
276
+
277
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:519
278
+ msgid "Post Hierarchy"
279
+ msgstr "Jerarquía de entradas"
280
+
281
+ #: class.bcn_admin.php:451 class.bcn_admin.php:569
282
+ #: class.bcn_network_admin.php:523 class.bcn_network_admin.php:641
283
  msgid "Categories"
284
  msgstr "Categorías"
285
 
286
+ #: class.bcn_admin.php:452 class.bcn_admin.php:530
287
+ #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:602
288
  msgid "Dates"
289
  msgstr "Fechas"
290
 
291
+ #: class.bcn_admin.php:453 class.bcn_admin.php:576
292
+ #: class.bcn_network_admin.php:525 class.bcn_network_admin.php:648
293
  msgid "Tags"
294
  msgstr "Etiquetas"
295
 
296
+ #: class.bcn_admin.php:455 class.bcn_admin.php:529
297
+ #: class.bcn_network_admin.php:527 class.bcn_network_admin.php:601
298
+ msgid "Post Parent"
299
+ msgstr "Entrada o Página superior"
300
+
301
+ #: class.bcn_admin.php:471 class.bcn_admin.php:554
302
+ #: class.bcn_network_admin.php:543 class.bcn_network_admin.php:626
303
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
304
+ msgstr "La jerarquia en la que se muestra la ruta de migas. Tome nota de que la opción de \"Entrada/Página Superior\" puede requerir un plugin adicional para comportarse como se espera, ya que este es un tipo de publicación sin jerarquía."
305
+
306
+ #: class.bcn_admin.php:475 class.bcn_network_admin.php:547
307
  msgid "Pages"
308
  msgstr "Páginas"
309
 
310
+ #: class.bcn_admin.php:478 class.bcn_network_admin.php:550
311
  msgid "Page Template"
312
  msgstr "Plantilla de la Página"
313
 
314
+ #: class.bcn_admin.php:478 class.bcn_network_admin.php:550
315
  msgid "The template for page breadcrumbs."
316
  msgstr "La plantilla de la ruta de navegación para páginas."
317
 
318
+ #: class.bcn_admin.php:479 class.bcn_network_admin.php:551
319
  msgid "Page Template (Unlinked)"
320
  msgstr "Plantilla de la Página (sin vínculo)"
321
 
322
+ #: class.bcn_admin.php:479 class.bcn_network_admin.php:551
323
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
324
  msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
325
 
326
+ #: class.bcn_admin.php:482 class.bcn_network_admin.php:554
327
+ msgid "Attachments"
328
+ msgstr "Adjuntos"
329
+
330
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
331
  msgid "Attachment Template"
332
  msgstr "Plantilla de Archivo Adjunto"
333
 
334
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
335
  msgid "The template for attachment breadcrumbs."
336
  msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
337
 
338
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
339
  msgid "Attachment Template (Unlinked)"
340
  msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
341
 
342
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
343
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
344
  msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
345
 
346
+ #: class.bcn_admin.php:506 class.bcn_admin.php:607
347
+ #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
348
  msgid "%s Template"
349
  msgstr "Plantilla de %s"
350
 
351
+ #: class.bcn_admin.php:506 class.bcn_admin.php:607
352
+ #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
353
  msgid "The template for %s breadcrumbs."
354
  msgstr "La plantilla de la ruta de navegación para %s."
355
 
356
+ #: class.bcn_admin.php:507 class.bcn_admin.php:608
357
+ #: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
358
  msgid "%s Template (Unlinked)"
359
  msgstr "Plantilla de %s (sin vínculo)"
360
 
361
+ #: class.bcn_admin.php:507 class.bcn_admin.php:608
362
+ #: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
363
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
364
  msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
365
 
366
+ #: class.bcn_admin.php:512 class.bcn_network_admin.php:584
367
  msgid "%s Root Page"
368
  msgstr "%s Página Raíz"
369
 
370
+ #: class.bcn_admin.php:515 class.bcn_network_admin.php:587
371
  msgid "&mdash; Select &mdash;"
372
  msgstr "&mdash; Seleccione &mdash;"
373
 
374
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:591
375
  msgid "%s Archive Display"
376
  msgstr "Despliegue de Archivos de %s"
377
 
378
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:591
379
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
380
  msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
381
 
382
+ #: class.bcn_admin.php:520 class.bcn_network_admin.php:592
383
+ msgid "%s Hierarchy Display"
384
+ msgstr "%s Jerarquía de Despliegue"
385
+
386
+ #: class.bcn_admin.php:520 class.bcn_network_admin.php:592
387
+ msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
388
+ msgstr "Mostrar la jerarquía (especificada abajo) que lleva a %s en la ruta de navegación."
389
+
390
+ #: class.bcn_admin.php:524 class.bcn_network_admin.php:596
391
+ msgid "%s Hierarchy"
392
+ msgstr "%s Jerarquía"
393
+
394
+ #: class.bcn_admin.php:550 class.bcn_network_admin.php:622
395
+ msgid "The hierarchy which the breadcrumb trail will show."
396
+ msgstr "La jerarquía que mostrará la ruta de migas."
397
+
398
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:640
399
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
400
+ msgstr "Los ajustes para todas las taxonomías (incluyendo Categorías, Etiquetas y Personalizadas) están en esta pestaña."
401
+
402
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:640
403
+ msgid "Taxonomies"
404
+ msgstr "Taxonomías"
405
+
406
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
407
  msgid "Category Template"
408
  msgstr "Plantilla de Categoría"
409
 
410
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
411
  msgid "The template for category breadcrumbs."
412
  msgstr "La plantilla de la ruta de navegación para categorías."
413
 
414
+ #: class.bcn_admin.php:573 class.bcn_network_admin.php:645
415
  msgid "Category Template (Unlinked)"
416
  msgstr "Plantilla de la Categoría (sin vínculo)"
417
 
418
+ #: class.bcn_admin.php:573 class.bcn_network_admin.php:645
419
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
420
  msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
421
 
422
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:651
423
  msgid "Tag Template"
424
  msgstr "Plantilla de la Etiqueta"
425
 
426
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:651
427
  msgid "The template for tag breadcrumbs."
428
  msgstr "La plantilla de la ruta de navegación para etiquetas."
429
 
430
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:652
431
  msgid "Tag Template (Unlinked)"
432
  msgstr "Plantilla de la Etiqueta (sin vínculo)"
433
 
434
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:652
435
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
436
  msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
437
 
438
+ #: class.bcn_admin.php:583 class.bcn_network_admin.php:655
439
+ msgid "Post Formats"
440
+ msgstr "Formatos de Entradas"
441
+
442
+ #: class.bcn_admin.php:586 class.bcn_network_admin.php:658
443
+ msgid "Post Format Template"
444
+ msgstr "Plantilla para Formato de la Entrada"
445
+
446
+ #: class.bcn_admin.php:586 class.bcn_network_admin.php:658
447
+ msgid "The template for post format breadcrumbs."
448
+ msgstr "La plantilla para el formato de la ruta de migas en la entrada"
449
+
450
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:659
451
+ msgid "Post Format Template (Unlinked)"
452
+ msgstr "Plantilla para Formato de la Entrada (sin enlace)"
453
+
454
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:659
455
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
456
+ msgstr "La plantilla para el formato de la ruta de migas en la entrada, utilizado sólo cuando la miga no tiene enlace."
457
+
458
+ #: class.bcn_admin.php:617 class.bcn_network_admin.php:689
459
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
460
+ msgstr "Los ajustes para autor y archivos, búsquedas, y páginas 404 están en esta pestaña."
461
+
462
  #: class.bcn_admin.php:617 class.bcn_admin.php:626
463
+ #: class.bcn_network_admin.php:689 class.bcn_network_admin.php:698
464
  msgid "Miscellaneous"
465
  msgstr "Misceláneos"
466
 
467
+ #: class.bcn_admin.php:618 class.bcn_network_admin.php:690
468
+ msgid "Author Archives"
469
+ msgstr "Archivos de Autor"
470
+
471
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:693
472
  msgid "Author Template"
473
  msgstr "Plantilla de Autor"
474
 
475
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:693
476
  msgid "The template for author breadcrumbs."
477
  msgstr "La plantilla de la ruta de navegación para autores."
478
 
479
+ #: class.bcn_admin.php:622 class.bcn_network_admin.php:694
480
  msgid "Author Template (Unlinked)"
481
  msgstr "Plantilla del Autor (sin vínculo)"
482
 
483
+ #: class.bcn_admin.php:622 class.bcn_network_admin.php:694
484
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
485
  msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
486
 
487
+ #: class.bcn_admin.php:623 class.bcn_network_admin.php:695
488
  msgid "Author Display Format"
489
  msgstr "Formato de Despliegue de Autor"
490
 
491
+ #: class.bcn_admin.php:623 class.bcn_network_admin.php:695
492
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
493
  msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
494
 
495
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:701
496
  msgid "Date Template"
497
  msgstr "Plantilla de la Fecha"
498
 
499
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:701
500
  msgid "The template for date breadcrumbs."
501
  msgstr "La plantilla de la ruta de navegación para fechas."
502
 
503
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
504
  msgid "Date Template (Unlinked)"
505
  msgstr "Plantilla de la Fecha (sin vínculo)"
506
 
507
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
508
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
509
  msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
510
 
511
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
512
  msgid "Search Template"
513
  msgstr "Plantilla de la Búsqueda"
514
 
515
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
516
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
517
  msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
518
 
519
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:704
520
  msgid "Search Template (Unlinked)"
521
  msgstr "Plantilla de la Búsqueda (sin vínculo)"
522
 
523
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:704
524
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
525
  msgstr "La plantilla de la ruta de navegación para la primera página de resultados de búsqueda, utilizado sólo cuando éstos ocupan más de una página y el elemento no está enlazado."
526
 
527
+ #: class.bcn_admin.php:633 class.bcn_network_admin.php:705
528
  msgid "404 Title"
529
  msgstr "Título Error 404"
530
 
531
+ #: class.bcn_admin.php:634 class.bcn_network_admin.php:706
532
  msgid "404 Template"
533
  msgstr "Plantilla de Error 404"
534
 
535
+ #: class.bcn_admin.php:634 class.bcn_network_admin.php:706
536
  msgid "The template for 404 breadcrumbs."
537
  msgstr "La plantilla para la ruta de la página de error 404."
538
 
539
+ #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
540
+ msgid "Deprecated"
541
+ msgstr "Descontinuado"
542
+
543
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:713
544
+ msgid "Title Length"
545
+ msgstr "Longitud del título"
546
+
547
+ #: class.bcn_admin.php:646 class.bcn_network_admin.php:718
548
+ msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
549
+ msgstr "Limita la longitud de los títulos de la ruta (Descontinuado, %suse CSS en su lugar%s)"
550
+
551
+ #: class.bcn_admin.php:651 class.bcn_network_admin.php:723
552
+ msgid "Max Title Length: "
553
+ msgstr "Longitud Máxima del Título:"
554
+
555
+ #: class.bcn_admin.php:663 class.bcn_network_admin.php:735
556
  msgid "Save Changes"
557
  msgstr "Grabar Cambios"
558
 
559
+ #: class.bcn_breadcrumb_trail.php:79
560
+ msgid "Page %htitle%"
561
+ msgstr "Página %htitle%"
562
+
563
+ #: class.bcn_breadcrumb_trail.php:102
564
+ msgid "404"
565
+ msgstr "Página no encontrada"
566
+
567
+ #: class.bcn_breadcrumb_trail.php:105
568
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
569
+ msgstr "Resultados de búsqueda para &#39;<a title=\"Ir a la primer página de los resultados de búsqueda para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
570
+
571
+ #: class.bcn_breadcrumb_trail.php:107
572
+ msgid "Search results for &#39;%htitle%&#39;"
573
+ msgstr "Resultados de búsqueda para &#39;%htitle%&#39;"
574
+
575
+ #: class.bcn_breadcrumb_trail.php:120
576
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
577
+ msgstr "Artículos por: <a title=\"Ir a la primer página de entradas por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
578
+
579
+ #: class.bcn_breadcrumb_trail.php:122
580
+ msgid "Articles by: %htitle%"
581
+ msgstr "Artículos por: %htitle%"
582
+
583
+ #: class.bcn_breadcrumb_trail.php:393
584
+ msgid "$post global is not of type WP_Post"
585
+ msgstr "La global $post no corresponde al tipo de WP_Post"
586
+
587
+ #: class.bcn_network_admin.php:403
588
+ msgid "Warning: Individual site settings will override any settings set in this page."
589
+ msgstr "Advertencia: los ajustes individuales del sitio modificarán cualquier ajuste en esta página."
590
+
591
+ #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
592
+ msgid "Warning: Individual site settings may override any settings set in this page."
593
+ msgstr "Advertencia: los ajustes individuales del sitio pueden modificar los ajustes de esta página."
594
+
595
+ #: class.bcn_network_admin.php:450
596
+ msgid "Breadcrumb NavXT Network Settings"
597
+ msgstr "Ajustes de Red de Breadcrumb NavXT"
598
+
599
+ #: class.bcn_widget.php:32
600
+ msgid "Adds a breadcrumb trail to your sidebar"
601
+ msgstr "Agrega una ruta de navegación en su barra lateral"
602
+
603
+ #: class.bcn_widget.php:99
604
+ msgid "Title:"
605
+ msgstr "Título:"
606
+
607
+ #: class.bcn_widget.php:103
608
+ msgid "Text to show before the trail:"
609
+ msgstr "Texto a mostrar antes de las migas:"
610
+
611
+ #: class.bcn_widget.php:107
612
+ msgid "Output trail as:"
613
+ msgstr "Mostrar ruta como:"
614
+
615
+ #: class.bcn_widget.php:109
616
+ msgid "List"
617
+ msgstr "Lista"
618
+
619
+ #: class.bcn_widget.php:110
620
+ msgid "Google (RDFa) Breadcrumbs"
621
+ msgstr "Google (RDFa) Breadcrumbs"
622
+
623
+ #: class.bcn_widget.php:111
624
+ msgid "Plain"
625
+ msgstr "Texto plano"
626
+
627
+ #: class.bcn_widget.php:117
628
+ msgid "Link the breadcrumbs"
629
+ msgstr "Enlace a la Ruta"
630
+
631
+ #: class.bcn_widget.php:119
632
+ msgid "Reverse the order of the trail"
633
+ msgstr "Invertir el orden de la ruta"
634
+
635
+ #: class.bcn_widget.php:121
636
+ msgid "Hide the trail on the front page"
637
+ msgstr "Ocultar la ruta de la página principal"
638
+
639
  #: includes/class.mtekk_adminkit.php:225
640
  msgid "Settings"
641
  msgstr "Configuraciones"
652
  msgid "Migrate now."
653
  msgstr "Migrar ahora."
654
 
655
+ #: includes/class.mtekk_adminkit.php:304
656
+ msgid "Your settings are for a newer version."
657
+ msgstr "Sus ajustes son para una versión más nueva."
658
+
659
  #: includes/class.mtekk_adminkit.php:312
660
  msgid "Your plugin install is incomplete."
661
  msgstr "La instalación del plugin no se ha completado."
694
  msgid "Undo"
695
  msgstr "Deshacer"
696
 
697
+ #: includes/class.mtekk_adminkit.php:507
698
+ msgid "Settings did not change, nothing to save."
699
+ msgstr "Los ajustes no cambiaron, no hay nada que grabar."
700
+
701
+ #: includes/class.mtekk_adminkit.php:511
702
+ msgid "Settings were not saved."
703
+ msgstr "Los ajustes no fueron grabados."
704
+
705
  #: includes/class.mtekk_adminkit.php:516
706
  msgid "Some settings were not saved."
707
  msgstr "Algunos ajustes no fueron grabados."
766
  msgid "Select a XML settings file to upload and import settings from."
767
  msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
768
 
769
+ #. Plugin Name of the plugin/theme
770
+ msgid "Breadcrumb NavXT"
771
+ msgstr "Breadcrumb NavXT"
772
 
773
+ #. Plugin URI of the plugin/theme
774
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
775
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
776
 
777
+ #. Description of the plugin/theme
778
+ msgid "Adds a breadcrumb navigation showing the visitor&#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>."
779
+ msgstr "Agrega un ruta de navegación mostrando al visitante su posición actual. Para detalles de cómo usar este plugin, visite la documentación oficial de <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
780
 
781
+ #. Author of the plugin/theme
782
+ msgid "John Havlik"
783
+ msgstr "John Havlik | Traducción: Karin Sequén"
784
+
785
+ #. Author URI of the plugin/theme
786
+ msgid "http://mtekk.us/"
787
+ msgstr "http://mtekk.us/"
788
+
789
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
790
+ #: class.bcn_network_admin.php:25
791
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
792
+ msgstr "Su versión de PHP es demasiado antigua, por favor, actualice a la nueva versión. Su versión es %1$s, el plugin Breadcrumb NavXT requiere la versión %2$s "
793
+
794
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
795
+ msgid "Insufficient privileges to proceed."
796
+ msgstr "No tiene privilegios para proceder."
797
+
798
+ #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
799
+ msgid "Tips for the settings are located below select options."
800
+ msgstr "Encontrará tips para los ajustes debajo de cada opción."
801
+
802
+ #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
803
+ msgid "Resources"
804
+ msgstr "Recursos"
805
+
806
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
807
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
808
+ msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
809
+
810
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
811
+ msgid "Go to the Breadcrumb NavXT tag archive."
812
+ msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
813
+
814
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
815
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
816
+ msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
817
+
818
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
819
+ msgid "Go to the Breadcrumb NavXT online documentation"
820
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
821
+
822
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
823
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
824
+ msgstr "%sReportar Errores%s: Si piensa que ha encontrado un error, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el error."
825
+
826
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
827
+ msgid "Go to the Breadcrumb NavXT support post for your version."
828
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
829
+
830
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
831
+ msgid "Giving Back"
832
+ msgstr "Dar de vuelta"
833
+
834
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
835
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
836
+ msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
languages/breadcrumb-navxt-et.mo CHANGED
Binary file
languages/breadcrumb-navxt-et.po CHANGED
@@ -1,324 +1,30 @@
1
- # Translation of Breadcrumb NavXT in Estonian
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-04 10:59:13+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Hoiatus: Kasutad taunitud määrangut \"Pealkirja pikkus\" (vaata Muud &gt; Taunitud), palun %1$suse CSS asemel%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Mine juhendi juurde, mis selgitab teekonna raja pealkirjade kärpimist CSS-i abil"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Blog Breadcrumb"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Kuva hierarhia (selgitatud allpool), mis viib postitusele teekonna raja jäljes."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Kuva hierarhia (selgitatud allpool), mis viib %s juurde teekonna raja jäljes."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Taunitud"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Piira teekonna raja pealkirja pikkust. (Taunitud, %suse CSS-i asemel%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "$post global ei ole WP_Post tüüp"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Seadistusi ei salvestatud, polnud midagi salvestada."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Seadistusi ei salvestatud."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Manused"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine artiklile %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine sildiarhiivile %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine rubriigiarhiivile %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine arhiivile %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Hoiatus: Eraldiseisvad saidi seaded kirjutavad üle kõik sellel lehel tehtud seadistused."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Hoiatus: Eraldiseisvad saidi seaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) teekonnarada"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine artiklile %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Hoiatus: Sinu võrguseaded kirjutavad üle kõik sellel lehel tehtud seadistused."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Hoiatus: Sinu võrguseaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Hoiatus: Ei leitud BCN_SETTINGS_* defineeritud avaldusi, taastan BCN_SETTINGS_FAVOR_NETWORK vaikeseaded."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT võrgu seaded"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Lisab teekonna raja navigatsiooni, mis kuvab lehe külastajatele asukoha, kus nad hetkel viibivad. Plugina kasutamise kohta saate lähemat infot <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> veebilehelt."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Hierarhia, mida teekonna rada kuvab. Pane tähele, et valik \"Postituse vanem\" võib vajada täiendavat pluginat, et käituda ootuspäraselt, sest see on mitte-hierarhiline postiruse tüüp."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Pealkirja pikkus"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Pealehe teekonna rada"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Postituse tüübid"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Postituse hierarhia kuvamine"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Postituse hierarhia"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s hierarhia kuvamine"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Postituse formaadid"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Lubatud pealkirja pikkus"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Postitused"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Postituse vanem"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Hierarhia, mida teekonna rada kuvab"
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s hierarhia"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Süstemaatikad"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Postituse formaadi templiit"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Teekonna raja postituse formaadi templiit."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Postituse formaadi templiit (linkimata)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Autori arhiiv"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Sinu seaded on uuema versiooni jaoks."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Tekst, mida kuvada enne teekonna rada"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Breadcrumb NavXT tõlke projekt."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Lisa teekonna rada äärepaanile"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Nimetus"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Väljasta rada kui:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Nimekiri"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Lihtne"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Lisa teekonna rajale lingid"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Pööra teekonna rada vastupidi"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Peida rada avalehel"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Puuduvad õigused, et jätkata."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Seadete näpunäited paiknevad valikute all."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Vahendid"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Mine Breadcrumb NavXT sildi arhiivi."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
310
 
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
314
 
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Tagasiandmine"
318
 
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
322
 
323
  #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
@@ -328,9 +34,13 @@ msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
328
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
  msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
330
 
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
 
 
 
 
334
  msgid "General"
335
  msgstr "Peamine"
336
 
@@ -377,335 +87,555 @@ msgstr "Eksport"
377
  msgid "Reset"
378
  msgstr "Lähtestamine"
379
 
380
- #: class.bcn_admin.php:379
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  msgid "Breadcrumb NavXT Settings"
382
  msgstr "Breadcrumb NavXT seaded"
383
 
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Teekonna raja eraldaja"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
 
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Paigutatakse iga teekonna elemendi vahele"
391
 
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
 
 
 
 
394
  msgid "Home Breadcrumb"
395
  msgstr "Avalehe rada"
396
 
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
  msgid "Place the home breadcrumb in the trail."
399
  msgstr "Lisa avaleht teekonna rajale"
400
 
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
  msgid "Home Template"
403
  msgstr "Avalehe mall"
404
 
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
  msgid "The template for the home breadcrumb."
407
  msgstr "Avalehe teekonna raja mall."
408
 
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
  msgid "Home Template (Unlinked)"
411
  msgstr "Avalehe mall (ei ole lingitud)"
412
 
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
  msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
416
 
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
 
 
 
 
419
  msgid "Blog Breadcrumb"
420
  msgstr "Blogi teekonna rada"
421
 
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
  msgid "Place the blog breadcrumb in the trail."
424
  msgstr "Aseta blogi teekond rajale."
425
 
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
  msgid "Blog Template"
428
  msgstr "Blogi teekonna rada"
429
 
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
  msgid "The template for the blog breadcrumb, used only in static front page environments."
432
  msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
433
 
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
  msgid "Blog Template (Unlinked)"
436
  msgstr "Blogi mall (linkimata)"
437
 
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
  msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
441
 
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
 
 
 
 
443
  msgid "Main Site Breadcrumb"
444
  msgstr "Peamise saidi teekonna rada"
445
 
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
  msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
449
 
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
  msgid "Main Site Home Template"
452
  msgstr "Peamise saidi avalehe mall"
453
 
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
457
 
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
  msgid "Main Site Home Template (Unlinked)"
460
  msgstr "Peamise saidi avalehe mall (linkimata)"
461
 
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
465
 
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Avatud element"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Lingi avatud element"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Jah"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Lehekülgedele jaotatud teekonna rada"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
489
 
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Jaotatud mall"
493
 
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Lehekülgedele jaotatud teekonna raja mall."
497
 
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
  msgid "Post Template"
500
  msgstr "Postituste mall"
501
 
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
  msgid "The template for post breadcrumbs."
504
  msgstr "Postituste teekonna raja mall"
505
 
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
  msgid "Post Template (Unlinked)"
508
  msgstr "Postituste mall (linkimata)"
509
 
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
  msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
513
 
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
 
 
 
 
 
 
 
 
 
 
 
 
516
  msgid "Categories"
517
  msgstr "Kategooriad"
518
 
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
 
520
  msgid "Dates"
521
  msgstr "Kuupäevad"
522
 
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
  msgid "Tags"
526
  msgstr "Sildid"
527
 
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
 
 
 
 
 
 
 
 
 
 
529
  msgid "Pages"
530
  msgstr "Lehed"
531
 
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
  msgid "Page Template"
534
  msgstr "Lehe mall"
535
 
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
  msgid "The template for page breadcrumbs."
538
  msgstr "Mall lehe teekonna raja jaoks."
539
 
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
  msgid "Page Template (Unlinked)"
542
  msgstr "Lehe mall (linkimata)"
543
 
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
  msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
547
 
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
 
 
 
 
549
  msgid "Attachment Template"
550
  msgstr "Manuse mall"
551
 
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
  msgid "The template for attachment breadcrumbs."
554
  msgstr "Manuse teekonna raja mall."
555
 
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
  msgid "Attachment Template (Unlinked)"
558
  msgstr "Manuse mall (linkimata)"
559
 
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
  msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
563
 
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
  msgid "%s Template"
567
  msgstr "%s Mall"
568
 
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
  msgid "The template for %s breadcrumbs."
572
  msgstr "%s teekonna raja mall"
573
 
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
  msgid "%s Template (Unlinked)"
577
  msgstr "%s Mall (linkimata)"
578
 
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
  msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
583
 
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
  msgid "%s Root Page"
586
  msgstr "%s juur lehekülg"
587
 
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
  msgid "&mdash; Select &mdash;"
590
  msgstr "&mdash; Vali &mdash;"
591
 
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
  msgid "%s Archive Display"
594
  msgstr "%s arhiivi kuvamine"
595
 
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
  msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
599
 
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
601
  msgid "Category Template"
602
  msgstr "Kategooria mall"
603
 
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
  msgid "The template for category breadcrumbs."
606
  msgstr "Kategooria teekonna rea mall"
607
 
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
  msgid "Category Template (Unlinked)"
610
  msgstr "Kategooria mall (linkimata)"
611
 
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
  msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
615
 
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
  msgid "Tag Template"
618
  msgstr "Sildi mall"
619
 
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
  msgid "The template for tag breadcrumbs."
622
  msgstr "Siltide teekonna riba mall"
623
 
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
  msgid "Tag Template (Unlinked)"
626
  msgstr "Sildi mall (linkimata)"
627
 
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
  msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
631
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
  msgid "Miscellaneous"
635
  msgstr "Varia"
636
 
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
 
 
 
 
638
  msgid "Author Template"
639
  msgstr "Autori mall"
640
 
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
  msgid "The template for author breadcrumbs."
643
  msgstr "Autori teekonna riba mall."
644
 
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
  msgid "Author Template (Unlinked)"
647
  msgstr "Autori mall (linkimata)"
648
 
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
  msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
652
 
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
  msgid "Author Display Format"
655
  msgstr "Autori kuvamise formaat"
656
 
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
  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."
659
  msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
660
 
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
  msgid "Date Template"
663
  msgstr "Kuupäeva mall"
664
 
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
  msgid "The template for date breadcrumbs."
667
  msgstr "Kuupäeva teekonna riba mall."
668
 
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
  msgid "Date Template (Unlinked)"
671
  msgstr "Kuupäeva mall (linkimata)"
672
 
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
  msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
676
 
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
  msgid "Search Template"
679
  msgstr "Otsingu mall"
680
 
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
684
 
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
  msgid "Search Template (Unlinked)"
687
  msgstr "Otsingu mall (linkimata)"
688
 
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
692
 
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
  msgid "404 Title"
695
  msgstr "404 pealkiri"
696
 
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
  msgid "404 Template"
699
  msgstr "404 mall"
700
 
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
  msgid "The template for 404 breadcrumbs."
703
  msgstr "404 teekonna riba mall."
704
 
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
  msgid "Save Changes"
707
  msgstr "Salvesta muudatused"
708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  #: includes/class.mtekk_adminkit.php:225
710
  msgid "Settings"
711
  msgstr "Seaded"
@@ -722,6 +652,10 @@ msgstr "Suuna seaded ümber."
722
  msgid "Migrate now."
723
  msgstr "Suuna nüüd."
724
 
 
 
 
 
725
  #: includes/class.mtekk_adminkit.php:312
726
  msgid "Your plugin install is incomplete."
727
  msgstr "Sinu plugina install on lõpetamata."
@@ -760,6 +694,14 @@ msgstr "Pööra seadete salvestamine tagasi."
760
  msgid "Undo"
761
  msgstr "Pööra tagasi"
762
 
 
 
 
 
 
 
 
 
763
  #: includes/class.mtekk_adminkit.php:516
764
  msgid "Some settings were not saved."
765
  msgstr "Mõned seadetest ei salvestunud."
@@ -824,18 +766,71 @@ msgstr "Seadete fail"
824
  msgid "Select a XML settings file to upload and import settings from."
825
  msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
826
 
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Leht %htitle%"
830
 
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
 
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Otsitulemused &#39;%htitle%&#39;"
838
 
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artiklid: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Development (trunk) in Estonian
2
+ # This file is distributed under the same license as the Development (trunk) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-09-15 20:24:51+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1100\n"
11
+ "Project-Id-Version: Development (trunk)\n"
12
 
13
+ #: class.bcn_breadcrumb.php:91
14
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
15
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
+ #: class.bcn_breadcrumb_trail.php:110
18
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
19
+ msgstr ""
20
 
21
+ #: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
22
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
23
+ msgstr ""
24
 
25
+ #: class.bcn_breadcrumb_trail.php:127
26
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
27
+ msgstr ""
28
 
29
  #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
30
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
34
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
35
  msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
36
 
37
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
38
+ msgid "Go to the Breadcrumb NavXT translation project."
39
+ msgstr "Breadcrumb NavXT tõlke projekt."
40
+
41
+ #: class.bcn_admin.php:252 class.bcn_admin.php:390 class.bcn_admin.php:391
42
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:462
43
+ #: class.bcn_network_admin.php:463
44
  msgid "General"
45
  msgstr "Peamine"
46
 
87
  msgid "Reset"
88
  msgstr "Lähtestamine"
89
 
90
+ #: class.bcn_admin.php:336 class.bcn_network_admin.php:421
91
+ msgid "Warning: Your network settings will override any settings set in this page."
92
+ msgstr "Hoiatus: Sinu võrguseaded kirjutavad üle kõik sellel lehel tehtud seadistused."
93
+
94
+ #: class.bcn_admin.php:340 class.bcn_admin.php:344
95
+ msgid "Warning: Your network settings may override any settings set in this page."
96
+ msgstr "Hoiatus: Sinu võrguseaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
97
+
98
+ #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
99
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL."
100
+ msgstr ""
101
+
102
+ #: class.bcn_admin.php:361 class.bcn_network_admin.php:433
103
+ msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
104
+ msgstr "Hoiatus: Kasutad taunitud määrangut \"Pealkirja pikkus\" (vaata Muud &gt; Taunitud), palun %1$suse CSS asemel%2$s."
105
+
106
+ #: class.bcn_admin.php:361 class.bcn_admin.php:646
107
+ #: class.bcn_network_admin.php:433 class.bcn_network_admin.php:718
108
+ msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
109
+ msgstr "Mine juhendi juurde, mis selgitab teekonna raja pealkirjade kärpimist CSS-i abil"
110
+
111
+ #: class.bcn_admin.php:378
112
  msgid "Breadcrumb NavXT Settings"
113
  msgstr "Breadcrumb NavXT seaded"
114
 
115
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:462
116
+ msgid "A collection of settings most likely to be modified are located under this tab."
117
+ msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
118
+
119
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:466
120
+ msgid "Breadcrumb Separator"
121
+ msgstr "Teekonna raja eraldaja"
122
+
123
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:466
124
+ msgid "Placed in between each breadcrumb."
125
+ msgstr "Paigutatakse iga teekonna elemendi vahele"
126
+
127
+ #: class.bcn_admin.php:398 class.bcn_network_admin.php:470
128
+ msgid "Current Item"
129
+ msgstr "Avatud element"
130
+
131
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:473
132
+ msgid "Link Current Item"
133
+ msgstr "Lingi avatud element"
134
+
135
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:473
136
+ msgid "Yes"
137
+ msgstr "Jah"
138
+
139
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
140
+ msgid "Paged Breadcrumb"
141
+ msgstr "Lehekülgedele jaotatud teekonna rada"
142
+
143
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
144
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
145
+ msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
146
+
147
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
148
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
149
+ msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
150
 
151
+ #: class.bcn_admin.php:403 class.bcn_network_admin.php:475
152
+ msgid "Paged Template"
153
+ msgstr "Jaotatud mall"
154
 
155
+ #: class.bcn_admin.php:403 class.bcn_network_admin.php:475
156
+ msgid "The template for paged breadcrumbs."
157
+ msgstr "Lehekülgedele jaotatud teekonna raja mall."
158
+
159
+ #: class.bcn_admin.php:407 class.bcn_admin.php:410
160
+ #: class.bcn_network_admin.php:479 class.bcn_network_admin.php:482
161
  msgid "Home Breadcrumb"
162
  msgstr "Avalehe rada"
163
 
164
+ #: class.bcn_admin.php:410 class.bcn_network_admin.php:482
165
  msgid "Place the home breadcrumb in the trail."
166
  msgstr "Lisa avaleht teekonna rajale"
167
 
168
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:483
169
  msgid "Home Template"
170
  msgstr "Avalehe mall"
171
 
172
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:483
173
  msgid "The template for the home breadcrumb."
174
  msgstr "Avalehe teekonna raja mall."
175
 
176
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:484
177
  msgid "Home Template (Unlinked)"
178
  msgstr "Avalehe mall (ei ole lingitud)"
179
 
180
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:484
181
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
182
  msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
183
 
184
+ #: class.bcn_admin.php:416
185
+ msgid "Blog Breadcrumb "
186
+ msgstr "Blog Breadcrumb"
187
+
188
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:488
189
+ #: class.bcn_network_admin.php:491
190
  msgid "Blog Breadcrumb"
191
  msgstr "Blogi teekonna rada"
192
 
193
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:491
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Aseta blogi teekond rajale."
196
 
197
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:492
198
  msgid "Blog Template"
199
  msgstr "Blogi teekonna rada"
200
 
201
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:492
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
204
 
205
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:493
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Blogi mall (linkimata)"
208
 
209
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:493
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
212
 
213
+ #: class.bcn_admin.php:425 class.bcn_network_admin.php:497
214
+ msgid "Mainsite Breadcrumb"
215
+ msgstr "Pealehe teekonna rada"
216
+
217
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:500
218
  msgid "Main Site Breadcrumb"
219
  msgstr "Peamise saidi teekonna rada"
220
 
221
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:500
222
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
223
  msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
224
 
225
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:501
226
  msgid "Main Site Home Template"
227
  msgstr "Peamise saidi avalehe mall"
228
 
229
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:501
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
232
 
233
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:502
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Peamise saidi avalehe mall (linkimata)"
236
 
237
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:502
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
240
 
241
+ #: class.bcn_admin.php:437 class.bcn_network_admin.php:509
242
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
243
+ msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
 
245
+ #: class.bcn_admin.php:437 class.bcn_network_admin.php:509
246
+ msgid "Post Types"
247
+ msgstr "Postituse tüübid"
248
 
249
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:510
250
+ msgid "Posts"
251
+ msgstr "Postitused"
252
 
253
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:513
254
  msgid "Post Template"
255
  msgstr "Postituste mall"
256
 
257
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:513
258
  msgid "The template for post breadcrumbs."
259
  msgstr "Postituste teekonna raja mall"
260
 
261
+ #: class.bcn_admin.php:442 class.bcn_network_admin.php:514
262
  msgid "Post Template (Unlinked)"
263
  msgstr "Postituste mall (linkimata)"
264
 
265
+ #: class.bcn_admin.php:442 class.bcn_network_admin.php:514
266
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
267
  msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
268
 
269
+ #: class.bcn_admin.php:443 class.bcn_network_admin.php:515
270
+ msgid "Post Hierarchy Display"
271
+ msgstr "Postituse hierarhia kuvamine"
272
+
273
+ #: class.bcn_admin.php:443 class.bcn_network_admin.php:515
274
+ msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
275
+ msgstr "Kuva hierarhia (selgitatud allpool), mis viib postitusele teekonna raja jäljes."
276
+
277
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:519
278
+ msgid "Post Hierarchy"
279
+ msgstr "Postituse hierarhia"
280
+
281
+ #: class.bcn_admin.php:451 class.bcn_admin.php:569
282
+ #: class.bcn_network_admin.php:523 class.bcn_network_admin.php:641
283
  msgid "Categories"
284
  msgstr "Kategooriad"
285
 
286
+ #: class.bcn_admin.php:452 class.bcn_admin.php:530
287
+ #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:602
288
  msgid "Dates"
289
  msgstr "Kuupäevad"
290
 
291
+ #: class.bcn_admin.php:453 class.bcn_admin.php:576
292
+ #: class.bcn_network_admin.php:525 class.bcn_network_admin.php:648
293
  msgid "Tags"
294
  msgstr "Sildid"
295
 
296
+ #: class.bcn_admin.php:455 class.bcn_admin.php:529
297
+ #: class.bcn_network_admin.php:527 class.bcn_network_admin.php:601
298
+ msgid "Post Parent"
299
+ msgstr "Postituse vanem"
300
+
301
+ #: class.bcn_admin.php:471 class.bcn_admin.php:554
302
+ #: class.bcn_network_admin.php:543 class.bcn_network_admin.php:626
303
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
304
+ msgstr "Hierarhia, mida teekonna rada kuvab. Pane tähele, et valik \"Postituse vanem\" võib vajada täiendavat pluginat, et käituda ootuspäraselt, sest see on mitte-hierarhiline postiruse tüüp."
305
+
306
+ #: class.bcn_admin.php:475 class.bcn_network_admin.php:547
307
  msgid "Pages"
308
  msgstr "Lehed"
309
 
310
+ #: class.bcn_admin.php:478 class.bcn_network_admin.php:550
311
  msgid "Page Template"
312
  msgstr "Lehe mall"
313
 
314
+ #: class.bcn_admin.php:478 class.bcn_network_admin.php:550
315
  msgid "The template for page breadcrumbs."
316
  msgstr "Mall lehe teekonna raja jaoks."
317
 
318
+ #: class.bcn_admin.php:479 class.bcn_network_admin.php:551
319
  msgid "Page Template (Unlinked)"
320
  msgstr "Lehe mall (linkimata)"
321
 
322
+ #: class.bcn_admin.php:479 class.bcn_network_admin.php:551
323
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
324
  msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
325
 
326
+ #: class.bcn_admin.php:482 class.bcn_network_admin.php:554
327
+ msgid "Attachments"
328
+ msgstr "Manused"
329
+
330
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
331
  msgid "Attachment Template"
332
  msgstr "Manuse mall"
333
 
334
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
335
  msgid "The template for attachment breadcrumbs."
336
  msgstr "Manuse teekonna raja mall."
337
 
338
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
339
  msgid "Attachment Template (Unlinked)"
340
  msgstr "Manuse mall (linkimata)"
341
 
342
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
343
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
344
  msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
345
 
346
+ #: class.bcn_admin.php:506 class.bcn_admin.php:607
347
+ #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
348
  msgid "%s Template"
349
  msgstr "%s Mall"
350
 
351
+ #: class.bcn_admin.php:506 class.bcn_admin.php:607
352
+ #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
353
  msgid "The template for %s breadcrumbs."
354
  msgstr "%s teekonna raja mall"
355
 
356
+ #: class.bcn_admin.php:507 class.bcn_admin.php:608
357
+ #: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
358
  msgid "%s Template (Unlinked)"
359
  msgstr "%s Mall (linkimata)"
360
 
361
+ #: class.bcn_admin.php:507 class.bcn_admin.php:608
362
+ #: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
363
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
364
  msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
365
 
366
+ #: class.bcn_admin.php:512 class.bcn_network_admin.php:584
367
  msgid "%s Root Page"
368
  msgstr "%s juur lehekülg"
369
 
370
+ #: class.bcn_admin.php:515 class.bcn_network_admin.php:587
371
  msgid "&mdash; Select &mdash;"
372
  msgstr "&mdash; Vali &mdash;"
373
 
374
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:591
375
  msgid "%s Archive Display"
376
  msgstr "%s arhiivi kuvamine"
377
 
378
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:591
379
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
380
  msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
381
 
382
+ #: class.bcn_admin.php:520 class.bcn_network_admin.php:592
383
+ msgid "%s Hierarchy Display"
384
+ msgstr "%s hierarhia kuvamine"
385
+
386
+ #: class.bcn_admin.php:520 class.bcn_network_admin.php:592
387
+ msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
388
+ msgstr "Kuva hierarhia (selgitatud allpool), mis viib %s juurde teekonna raja jäljes."
389
+
390
+ #: class.bcn_admin.php:524 class.bcn_network_admin.php:596
391
+ msgid "%s Hierarchy"
392
+ msgstr "%s hierarhia"
393
+
394
+ #: class.bcn_admin.php:550 class.bcn_network_admin.php:622
395
+ msgid "The hierarchy which the breadcrumb trail will show."
396
+ msgstr "Hierarhia, mida teekonna rada kuvab"
397
+
398
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:640
399
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
400
+ msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
401
+
402
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:640
403
+ msgid "Taxonomies"
404
+ msgstr "Süstemaatikad"
405
+
406
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
407
  msgid "Category Template"
408
  msgstr "Kategooria mall"
409
 
410
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
411
  msgid "The template for category breadcrumbs."
412
  msgstr "Kategooria teekonna rea mall"
413
 
414
+ #: class.bcn_admin.php:573 class.bcn_network_admin.php:645
415
  msgid "Category Template (Unlinked)"
416
  msgstr "Kategooria mall (linkimata)"
417
 
418
+ #: class.bcn_admin.php:573 class.bcn_network_admin.php:645
419
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
420
  msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
421
 
422
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:651
423
  msgid "Tag Template"
424
  msgstr "Sildi mall"
425
 
426
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:651
427
  msgid "The template for tag breadcrumbs."
428
  msgstr "Siltide teekonna riba mall"
429
 
430
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:652
431
  msgid "Tag Template (Unlinked)"
432
  msgstr "Sildi mall (linkimata)"
433
 
434
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:652
435
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
436
  msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
437
 
438
+ #: class.bcn_admin.php:583 class.bcn_network_admin.php:655
439
+ msgid "Post Formats"
440
+ msgstr "Postituse formaadid"
441
+
442
+ #: class.bcn_admin.php:586 class.bcn_network_admin.php:658
443
+ msgid "Post Format Template"
444
+ msgstr "Postituse formaadi templiit"
445
+
446
+ #: class.bcn_admin.php:586 class.bcn_network_admin.php:658
447
+ msgid "The template for post format breadcrumbs."
448
+ msgstr "Teekonna raja postituse formaadi templiit."
449
+
450
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:659
451
+ msgid "Post Format Template (Unlinked)"
452
+ msgstr "Postituse formaadi templiit (linkimata)"
453
+
454
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:659
455
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
456
+ msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
457
+
458
+ #: class.bcn_admin.php:617 class.bcn_network_admin.php:689
459
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
460
+ msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
461
+
462
  #: class.bcn_admin.php:617 class.bcn_admin.php:626
463
+ #: class.bcn_network_admin.php:689 class.bcn_network_admin.php:698
464
  msgid "Miscellaneous"
465
  msgstr "Varia"
466
 
467
+ #: class.bcn_admin.php:618 class.bcn_network_admin.php:690
468
+ msgid "Author Archives"
469
+ msgstr "Autori arhiiv"
470
+
471
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:693
472
  msgid "Author Template"
473
  msgstr "Autori mall"
474
 
475
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:693
476
  msgid "The template for author breadcrumbs."
477
  msgstr "Autori teekonna riba mall."
478
 
479
+ #: class.bcn_admin.php:622 class.bcn_network_admin.php:694
480
  msgid "Author Template (Unlinked)"
481
  msgstr "Autori mall (linkimata)"
482
 
483
+ #: class.bcn_admin.php:622 class.bcn_network_admin.php:694
484
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
485
  msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
486
 
487
+ #: class.bcn_admin.php:623 class.bcn_network_admin.php:695
488
  msgid "Author Display Format"
489
  msgstr "Autori kuvamise formaat"
490
 
491
+ #: class.bcn_admin.php:623 class.bcn_network_admin.php:695
492
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
493
  msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
494
 
495
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:701
496
  msgid "Date Template"
497
  msgstr "Kuupäeva mall"
498
 
499
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:701
500
  msgid "The template for date breadcrumbs."
501
  msgstr "Kuupäeva teekonna riba mall."
502
 
503
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
504
  msgid "Date Template (Unlinked)"
505
  msgstr "Kuupäeva mall (linkimata)"
506
 
507
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
508
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
509
  msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
510
 
511
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
512
  msgid "Search Template"
513
  msgstr "Otsingu mall"
514
 
515
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
516
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
517
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
518
 
519
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:704
520
  msgid "Search Template (Unlinked)"
521
  msgstr "Otsingu mall (linkimata)"
522
 
523
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:704
524
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
525
  msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
526
 
527
+ #: class.bcn_admin.php:633 class.bcn_network_admin.php:705
528
  msgid "404 Title"
529
  msgstr "404 pealkiri"
530
 
531
+ #: class.bcn_admin.php:634 class.bcn_network_admin.php:706
532
  msgid "404 Template"
533
  msgstr "404 mall"
534
 
535
+ #: class.bcn_admin.php:634 class.bcn_network_admin.php:706
536
  msgid "The template for 404 breadcrumbs."
537
  msgstr "404 teekonna riba mall."
538
 
539
+ #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
540
+ msgid "Deprecated"
541
+ msgstr "Taunitud"
542
+
543
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:713
544
+ msgid "Title Length"
545
+ msgstr "Pealkirja pikkus"
546
+
547
+ #: class.bcn_admin.php:646 class.bcn_network_admin.php:718
548
+ msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
549
+ msgstr "Piira teekonna raja pealkirja pikkust. (Taunitud, %suse CSS-i asemel%s)"
550
+
551
+ #: class.bcn_admin.php:651 class.bcn_network_admin.php:723
552
+ msgid "Max Title Length: "
553
+ msgstr "Lubatud pealkirja pikkus"
554
+
555
+ #: class.bcn_admin.php:663 class.bcn_network_admin.php:735
556
  msgid "Save Changes"
557
  msgstr "Salvesta muudatused"
558
 
559
+ #: class.bcn_breadcrumb_trail.php:79
560
+ msgid "Page %htitle%"
561
+ msgstr "Leht %htitle%"
562
+
563
+ #: class.bcn_breadcrumb_trail.php:102
564
+ msgid "404"
565
+ msgstr "404"
566
+
567
+ #: class.bcn_breadcrumb_trail.php:105
568
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
569
+ msgstr "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
570
+
571
+ #: class.bcn_breadcrumb_trail.php:107
572
+ msgid "Search results for &#39;%htitle%&#39;"
573
+ msgstr "Otsitulemused &#39;%htitle%&#39;"
574
+
575
+ #: class.bcn_breadcrumb_trail.php:120
576
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
577
+ msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
578
+
579
+ #: class.bcn_breadcrumb_trail.php:122
580
+ msgid "Articles by: %htitle%"
581
+ msgstr "Artiklid: %htitle%"
582
+
583
+ #: class.bcn_breadcrumb_trail.php:393
584
+ msgid "$post global is not of type WP_Post"
585
+ msgstr "$post global ei ole WP_Post tüüp"
586
+
587
+ #: class.bcn_network_admin.php:403
588
+ msgid "Warning: Individual site settings will override any settings set in this page."
589
+ msgstr "Hoiatus: Eraldiseisvad saidi seaded kirjutavad üle kõik sellel lehel tehtud seadistused."
590
+
591
+ #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
592
+ msgid "Warning: Individual site settings may override any settings set in this page."
593
+ msgstr "Hoiatus: Eraldiseisvad saidi seaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
594
+
595
+ #: class.bcn_network_admin.php:450
596
+ msgid "Breadcrumb NavXT Network Settings"
597
+ msgstr "Breadcrumb NavXT võrgu seaded"
598
+
599
+ #: class.bcn_widget.php:32
600
+ msgid "Adds a breadcrumb trail to your sidebar"
601
+ msgstr "Lisa teekonna rada äärepaanile"
602
+
603
+ #: class.bcn_widget.php:99
604
+ msgid "Title:"
605
+ msgstr "Nimetus"
606
+
607
+ #: class.bcn_widget.php:103
608
+ msgid "Text to show before the trail:"
609
+ msgstr "Tekst, mida kuvada enne teekonna rada"
610
+
611
+ #: class.bcn_widget.php:107
612
+ msgid "Output trail as:"
613
+ msgstr "Väljasta rada kui:"
614
+
615
+ #: class.bcn_widget.php:109
616
+ msgid "List"
617
+ msgstr "Nimekiri"
618
+
619
+ #: class.bcn_widget.php:110
620
+ msgid "Google (RDFa) Breadcrumbs"
621
+ msgstr "Google (RDFa) teekonnarada"
622
+
623
+ #: class.bcn_widget.php:111
624
+ msgid "Plain"
625
+ msgstr "Lihtne"
626
+
627
+ #: class.bcn_widget.php:117
628
+ msgid "Link the breadcrumbs"
629
+ msgstr "Lisa teekonna rajale lingid"
630
+
631
+ #: class.bcn_widget.php:119
632
+ msgid "Reverse the order of the trail"
633
+ msgstr "Pööra teekonna rada vastupidi"
634
+
635
+ #: class.bcn_widget.php:121
636
+ msgid "Hide the trail on the front page"
637
+ msgstr "Peida rada avalehel"
638
+
639
  #: includes/class.mtekk_adminkit.php:225
640
  msgid "Settings"
641
  msgstr "Seaded"
652
  msgid "Migrate now."
653
  msgstr "Suuna nüüd."
654
 
655
+ #: includes/class.mtekk_adminkit.php:304
656
+ msgid "Your settings are for a newer version."
657
+ msgstr "Sinu seaded on uuema versiooni jaoks."
658
+
659
  #: includes/class.mtekk_adminkit.php:312
660
  msgid "Your plugin install is incomplete."
661
  msgstr "Sinu plugina install on lõpetamata."
694
  msgid "Undo"
695
  msgstr "Pööra tagasi"
696
 
697
+ #: includes/class.mtekk_adminkit.php:507
698
+ msgid "Settings did not change, nothing to save."
699
+ msgstr "Seadistusi ei salvestatud, polnud midagi salvestada."
700
+
701
+ #: includes/class.mtekk_adminkit.php:511
702
+ msgid "Settings were not saved."
703
+ msgstr "Seadistusi ei salvestatud."
704
+
705
  #: includes/class.mtekk_adminkit.php:516
706
  msgid "Some settings were not saved."
707
  msgstr "Mõned seadetest ei salvestunud."
766
  msgid "Select a XML settings file to upload and import settings from."
767
  msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
768
 
769
+ #. Plugin Name of the plugin/theme
770
+ msgid "Breadcrumb NavXT"
771
+ msgstr "Breadcrumb NavXT"
772
 
773
+ #. Plugin URI of the plugin/theme
774
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
775
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
776
 
777
+ #. Description of the plugin/theme
778
+ msgid "Adds a breadcrumb navigation showing the visitor&#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>."
779
+ msgstr "Lisab teekonna raja navigatsiooni, mis kuvab lehe külastajatele asukoha, kus nad hetkel viibivad. Plugina kasutamise kohta saate lähemat infot <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> veebilehelt."
780
 
781
+ #. Author of the plugin/theme
782
+ msgid "John Havlik"
783
+ msgstr "John Havlik"
784
+
785
+ #. Author URI of the plugin/theme
786
+ msgid "http://mtekk.us/"
787
+ msgstr "http://mtekk.us/"
788
+
789
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
790
+ #: class.bcn_network_admin.php:25
791
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
792
+ msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
793
+
794
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
795
+ msgid "Insufficient privileges to proceed."
796
+ msgstr "Puuduvad õigused, et jätkata."
797
+
798
+ #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
799
+ msgid "Tips for the settings are located below select options."
800
+ msgstr "Seadete näpunäited paiknevad valikute all."
801
+
802
+ #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
803
+ msgid "Resources"
804
+ msgstr "Vahendid"
805
+
806
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
807
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
808
+ msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
809
+
810
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
811
+ msgid "Go to the Breadcrumb NavXT tag archive."
812
+ msgstr "Mine Breadcrumb NavXT sildi arhiivi."
813
+
814
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
815
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
816
+ msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
817
+
818
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
819
+ msgid "Go to the Breadcrumb NavXT online documentation"
820
+ msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
821
+
822
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
823
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
824
+ msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
825
+
826
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
827
+ msgid "Go to the Breadcrumb NavXT support post for your version."
828
+ msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
829
+
830
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
831
+ msgid "Giving Back"
832
+ msgstr "Tagasiandmine"
833
+
834
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
835
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
836
+ msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
languages/breadcrumb-navxt-fa_IR.mo DELETED
Binary file
languages/breadcrumb-navxt-fa_IR.po DELETED
@@ -1,843 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Persian
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-08-11 17:24:59+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=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr ""
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr ""
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "ضمیمه ها"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"برو به %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"برو به %title% آرشیو برچسب.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"برو به %title% آرشیو دسته بندی\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"برو به %title% آرشیو.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "اخطار: تنظیمات شخصی سایت بر روی تمام تنظیمات این صفحه بارگذاری خواهد شد ."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "اخطار: شاید تنظیمات شخصی سایت بر روی تمام تنظیمات این صفحه بارگذاری شود . "
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "گوگل (RDFa) "
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"برو به %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "اخطار : تنظیمات شبکه شما بر تنظیمات این صفحه اعمال خواهد شد . "
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "اخطار :شاید تنظیمات شبکه شما بر تنظیمات این صفحه اعمال شود . "
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "تنظیمات شبکه Breadcrumb NavXT"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "با اضافه کردن این افزونه به بازدید کنندگان مسیری که در آن قرار دارند را نمایش می دهید. برای مشاهده نحوه کار افرونه اینجا کلیک کنید <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "سلسله مراتب که دنباله breadcrumb نشان می دهد. توجه داشته باشید که \"مرجع ارسال\" گزینه ممکن است نیاز به پلاگین های اضافی را به رفتار به عنوان انتظار می رود از آنجایی که این نوع پست غیر سلسله مراتبی است."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "مجموعه ای از تنظیمات كه به احتمال زیاد به اصلاح نياز دارد زير این قسمت واقع شده است."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "طول عنوان "
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "breadcrumb سايت اصلي "
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "تنظيمات براي تمامي پست ها و صفحات زير اين قسمت واقع شده است "
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "انواع پست"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "نمایش سلسله مراتب پست "
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "سلسله مراتب پست"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s نمایش سلسله مراتبی"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "فرمت پست ها"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "حداکثر طول عنوان"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "پست ها"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "پست اصلی"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "سلسله مراتبی که افزونه نمایش خواهد داد "
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s سلسله مراتب"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "تنظيمات براي تمامي طبقه بندی ها در زير اين قسمت قرار داده شده است"
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "طبقه بندی"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "قالب فرمت پست ها"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "قالب براي فرمت پست breadcrumb"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "قالب فرمت پست (بدون لينك)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "قالب براي پست فرمت زماني كه breadcrumb لينك نشده است"
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "تنظيمات براي نويسنده و تاريخ و آرشيو و جستجو و صفحه 404 در زير اين قسمت قرار دارد"
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "آرشیو نویسندگان"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "مقاله توسط: <a title=\"برو به اولین صفحه مطالب %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "تنظیمات شما برای ورژن جدید تر می باشد ."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "متن قبل از نمایش دنباله :"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "برو به صفحه ترجمه پلاگین Breadcrumb NavXT"
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "ورژن php هاست شما قدیمی می باشد . لطفا به نسخه جدید بروز رسانی کنید .ورژن فعلی شما %1$s است و ورژن مورد نیاز پلاگین %2$s می باشد."
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "افزودن دنباله breadcrumbs به ساید بار"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "عنوان :"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "خروجی دنباله :"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "لیست"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "ساده"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "لینک دار کردن breadcrumbs"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "معکوس کردن نمایش دنباله "
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "مخفی کردن دنباله در صفحه اصلی"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "مجوز لازم برای ادامه"
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "نکاتی برای تنظیمات در زیر گزینه انتخاب قرار داده شده است"
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "منابع"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutorials and How Tos%s: منابع آموزشی زیادی در وبلاگ نویسنده افزونه موجود می باشد."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "برو به آرشیو تگ های Breadcrumb NavXT"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr ""
302
- "%sOnline Documentation%s: \n"
303
- " براي اطلاعات بيشتر راهنما را مشاهده كنيد "
304
-
305
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
306
- msgid "Go to the Breadcrumb NavXT online documentation"
307
- msgstr "بريد به راهنماي آنلاين breadcrumb"
308
-
309
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
310
- 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."
311
- msgstr "%sReport a Bug%s: اگر فکر می کنید ایرادی پیدا کردید لطفا ورژن وردپرس و باگ مربوطه را ارسال کنید "
312
-
313
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
314
- msgid "Go to the Breadcrumb NavXT support post for your version."
315
- msgstr "براي پشتيباني به صفحه breadcrumb ورژن خود برويد"
316
-
317
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
318
- msgid "Giving Back"
319
- msgstr "بازگشت دادن"
320
-
321
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
322
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
323
- msgstr "%sDonate%s: قصد دارید در توسعه افزونه سهیم باشید ؟ فکر کنید نویسنده فزونه را به یک نوشیدنی دعوت کردید "
324
-
325
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
326
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
327
- msgstr "براي كمك به اين پروژه كليك كنيد"
328
-
329
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
330
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
331
- msgstr "%sTranslate%s ترجمه زبان شما موجود نیست ؟ با نویسنده افزونه تماس بگیرید "
332
-
333
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
334
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
335
- #: class.bcn_network_admin.php:462
336
- msgid "General"
337
- msgstr "عمومی"
338
-
339
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
340
- 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."
341
- msgstr "برای مشاهده تغییرات ناشی از تنظیمات این صفحه باید ابزارک یا کد را در پوسته خود قرار دهید "
342
-
343
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
344
- msgid "Breadcrumb trail with separators"
345
- msgstr "دنباله breadcrumb با جداكننده "
346
-
347
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
348
- msgid "Breadcrumb trail in list form"
349
- msgstr "دنباله breadcrumb در فرم ليست"
350
-
351
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
352
- msgid "Quick Start"
353
- msgstr "راه اندازی سریع"
354
-
355
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
356
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
357
- msgstr "از کد قسمت راه اندازی سریع استفاده کنید . از استایل زیر برای نمایش دنباله استفده می شود "
358
-
359
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
360
- msgid "Styling"
361
- msgstr "استایل"
362
-
363
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
364
- msgid "Import/Export/Reset"
365
- msgstr "درون ریزی - برون ریزی - ریست"
366
-
367
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
368
- #: includes/class.mtekk_adminkit.php:808
369
- msgid "Import"
370
- msgstr "درون ریزی"
371
-
372
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
373
- #: includes/class.mtekk_adminkit.php:809
374
- msgid "Export"
375
- msgstr "برون ریزی"
376
-
377
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
378
- #: includes/class.mtekk_adminkit.php:810
379
- msgid "Reset"
380
- msgstr "ریست"
381
-
382
- #: class.bcn_admin.php:379
383
- msgid "Breadcrumb NavXT Settings"
384
- msgstr " تنظیمات Breadcrumb NavXT"
385
-
386
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
387
- msgid "Breadcrumb Separator"
388
- msgstr " تفکیک کننده های Breadcrumb"
389
-
390
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
391
- msgid "Placed in between each breadcrumb."
392
- msgstr "قرار داده شده در بین هر breadcrumb"
393
-
394
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
395
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
396
- msgid "Home Breadcrumb"
397
- msgstr "خانه Breadcrumb"
398
-
399
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
400
- msgid "Place the home breadcrumb in the trail."
401
- msgstr "قرار دادن خانه در دنباله "
402
-
403
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
404
- msgid "Home Template"
405
- msgstr "قالب خانه "
406
-
407
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
408
- msgid "The template for the home breadcrumb."
409
- msgstr "قالب برای خانه "
410
-
411
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
412
- msgid "Home Template (Unlinked)"
413
- msgstr "قالب خانه (بدون لینک)"
414
-
415
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
416
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
417
- msgstr "قالب براي صفحه اول breadcrumb زماني كه لينك نشده است "
418
-
419
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
420
- #: class.bcn_network_admin.php:490
421
- msgid "Blog Breadcrumb"
422
- msgstr "بلاگ breadcrumb"
423
-
424
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
425
- msgid "Place the blog breadcrumb in the trail."
426
- msgstr "قرار دادن بلاگ در دنباله breadcrumb"
427
-
428
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
429
- msgid "Blog Template"
430
- msgstr "قالب بلاگ"
431
-
432
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
433
- msgid "The template for the blog breadcrumb, used only in static front page environments."
434
- msgstr "قالب براي بلاگ زماني كه breadcrumb لينك نشده است"
435
-
436
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
437
- msgid "Blog Template (Unlinked)"
438
- msgstr "قالب بلاگ (بدون لينك)"
439
-
440
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
441
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
442
- msgstr "قالب براي بلاگ , تنها در صفحه استاتيك نمايش داده مي شود وقتي كه breadcrumb لينك نشده باشد."
443
-
444
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
445
- msgid "Main Site Breadcrumb"
446
- msgstr "breadcrumb سايت اصلي"
447
-
448
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
449
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
450
- msgstr "قرار دادن دنباله breadcrumb در صفحه اول براي تنظيمات سايت هاي مولتي سايت"
451
-
452
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
453
- msgid "Main Site Home Template"
454
- msgstr "قالب صفحه اول سايت اصلي"
455
-
456
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
457
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
458
- msgstr "قالب برای دنباله صفحه اول سایت اصلی , استفاده تنها درمحیط مولتی سایت "
459
-
460
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
461
- msgid "Main Site Home Template (Unlinked)"
462
- msgstr "قالب صفحه اول سايت اصلي (بدون لينك)"
463
-
464
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
465
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
466
- msgstr "قالب برای دنباله صفحه اول سایت اصلی , استفاده تنها درمحیط مولتی سایت (زمانی که دنباله بدون لینک باشد)"
467
-
468
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
469
- msgid "Current Item"
470
- msgstr "آیتم کنونی"
471
-
472
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
473
- msgid "Link Current Item"
474
- msgstr "لینک آیتم کنونی"
475
-
476
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
477
- msgid "Yes"
478
- msgstr "بله"
479
-
480
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
481
- msgid "Paged Breadcrumb"
482
- msgstr "صفحه به صفحه"
483
-
484
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
485
- msgid "Include the paged breadcrumb in the breadcrumb trail."
486
- msgstr "صفحه به صفحه در دنباله شامل شود "
487
-
488
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
489
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
490
- msgstr "نشان می دهد که کاربر در یک صفحه دیگر از اولین در پست paginated / صفحات."
491
-
492
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
493
- msgid "Paged Template"
494
- msgstr "قالب صفحه به صفحه"
495
-
496
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
497
- msgid "The template for paged breadcrumbs."
498
- msgstr "قالب براي صفحه به صفحه"
499
-
500
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
501
- msgid "Post Template"
502
- msgstr "قالب پست"
503
-
504
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
505
- msgid "The template for post breadcrumbs."
506
- msgstr "قالب براي پست ها"
507
-
508
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
509
- msgid "Post Template (Unlinked)"
510
- msgstr "قالب پست (بدون لينك)"
511
-
512
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
513
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
514
- msgstr "قالب براي پست زماني كه breadcrumb لينك نشده است "
515
-
516
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
517
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
518
- msgid "Categories"
519
- msgstr "دسته بندی ها"
520
-
521
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
522
- msgid "Dates"
523
- msgstr "تاریخ"
524
-
525
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
526
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
527
- msgid "Tags"
528
- msgstr "برچسب ها"
529
-
530
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
531
- msgid "Pages"
532
- msgstr "صفحات"
533
-
534
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
535
- msgid "Page Template"
536
- msgstr "صفحه الگو"
537
-
538
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
539
- msgid "The template for page breadcrumbs."
540
- msgstr "قالب براي صفحات "
541
-
542
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
543
- msgid "Page Template (Unlinked)"
544
- msgstr "قالب صفحات (بدون لينك)"
545
-
546
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
547
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
548
- msgstr "قالب براي صفحات زماني كه breadcrumb لينك نشده است"
549
-
550
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
551
- msgid "Attachment Template"
552
- msgstr "قالب ضميمه ها "
553
-
554
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
555
- msgid "The template for attachment breadcrumbs."
556
- msgstr "قالب براي ضميمه ها"
557
-
558
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
559
- msgid "Attachment Template (Unlinked)"
560
- msgstr "قالب ضميمه ها (بدون لينك)"
561
-
562
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
563
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
564
- msgstr "قالب براي ضميمه ها زماني كه breadcrumb لينك نشده است"
565
-
566
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
567
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
568
- msgid "%s Template"
569
- msgstr "%s قالب"
570
-
571
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
572
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
573
- msgid "The template for %s breadcrumbs."
574
- msgstr "قالب براي %s"
575
-
576
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
577
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
578
- msgid "%s Template (Unlinked)"
579
- msgstr "%s قالب (بدون لينك)"
580
-
581
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
582
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
583
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
584
- msgstr "قالب براي %s زماني استفاده مي شود كه breadcrumb لينك نشده باشد "
585
-
586
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
587
- msgid "%s Root Page"
588
- msgstr "%s صفحه روت"
589
-
590
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
591
- msgid "&mdash; Select &mdash;"
592
- msgstr "&mdash; انتخاب &mdash;"
593
-
594
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
595
- msgid "%s Archive Display"
596
- msgstr "%s نمايش آرشيو"
597
-
598
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
599
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
600
- msgstr "نمایش آرشیو پست های نوع %s در دنباله "
601
-
602
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
603
- msgid "Category Template"
604
- msgstr "قالب دسته بندي"
605
-
606
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
607
- msgid "The template for category breadcrumbs."
608
- msgstr "قالب براي دسته بندي"
609
-
610
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
611
- msgid "Category Template (Unlinked)"
612
- msgstr "قالب دسته بندي (بدون لينك)"
613
-
614
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
615
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
616
- msgstr "قالب براي دسته بندي زماني كه breadcrumb لينك نشده باشد"
617
-
618
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
619
- msgid "Tag Template"
620
- msgstr "قالب برچسب ها"
621
-
622
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
623
- msgid "The template for tag breadcrumbs."
624
- msgstr "قالب براي برچسب ها"
625
-
626
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
627
- msgid "Tag Template (Unlinked)"
628
- msgstr "قالب برچسب ها (بدون لينك)"
629
-
630
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
631
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
632
- msgstr "قالب براي برچسب زماني كه breadcrumb لينك نشده باشد."
633
-
634
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
635
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
636
- msgid "Miscellaneous"
637
- msgstr "گوناگون"
638
-
639
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
640
- msgid "Author Template"
641
- msgstr "قالب نويسنده"
642
-
643
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
644
- msgid "The template for author breadcrumbs."
645
- msgstr "قالب براي نويسنده "
646
-
647
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
648
- msgid "Author Template (Unlinked)"
649
- msgstr "قالب نويسنده (بدون لينك)"
650
-
651
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
652
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
653
- msgstr "قالب براي نويسنده زماني كه breadcrumb لينك نشده باشد."
654
-
655
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
656
- msgid "Author Display Format"
657
- msgstr "فرمت نمايش نويسنده "
658
-
659
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
660
- 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."
661
- msgstr "display_name از مقدار نام \"نمایش نام نمایشی\" در زیر پروفایل کاربری استفاده میکند."
662
-
663
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
664
- msgid "Date Template"
665
- msgstr "تاریخ الگو"
666
-
667
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
668
- msgid "The template for date breadcrumbs."
669
- msgstr "قالب براي نمايش تاريخ "
670
-
671
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
672
- msgid "Date Template (Unlinked)"
673
- msgstr "قالب تاريخ (بدون لينك)"
674
-
675
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
676
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
677
- msgstr "قالب براي تاريخ زماني كه breadcrumb لينك نشده باشد"
678
-
679
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
680
- msgid "Search Template"
681
- msgstr "قالب تنظیمات"
682
-
683
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
684
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
685
- msgstr "قالب براي صفحات جستجو - زماني كه نتايج جستجو چند صفحه ميباشد "
686
-
687
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
688
- msgid "Search Template (Unlinked)"
689
- msgstr "قالب تنظیمات (بدون لینک)"
690
-
691
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
692
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
693
- msgstr "قالب براي صفحات جستجو - زماني كه نتايج جستجو چند صفحه ميباشد (breadcrumb لينك نشده است)"
694
-
695
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
696
- msgid "404 Title"
697
- msgstr "عنوان 404"
698
-
699
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
700
- msgid "404 Template"
701
- msgstr "قالب 404"
702
-
703
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
704
- msgid "The template for 404 breadcrumbs."
705
- msgstr "قالب براي 404 "
706
-
707
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
708
- msgid "Save Changes"
709
- msgstr "ذخيره تغييرات"
710
-
711
- #: includes/class.mtekk_adminkit.php:225
712
- msgid "Settings"
713
- msgstr "تنظيمات"
714
-
715
- #: includes/class.mtekk_adminkit.php:295
716
- msgid "Your settings are out of date."
717
- msgstr "تنظیمات شما بروز نیست "
718
-
719
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
720
- msgid "Migrate the settings now."
721
- msgstr "تنظيمات را انجام بده "
722
-
723
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
724
- msgid "Migrate now."
725
- msgstr "اكنون"
726
-
727
- #: includes/class.mtekk_adminkit.php:312
728
- msgid "Your plugin install is incomplete."
729
- msgstr "نصب پلاگین شما کامل نشد "
730
-
731
- #: includes/class.mtekk_adminkit.php:312
732
- msgid "Load default settings now."
733
- msgstr "لود کردن تنظیمات پیش فرض"
734
-
735
- #: includes/class.mtekk_adminkit.php:312
736
- msgid "Complete now."
737
- msgstr "کامل کن"
738
-
739
- #: includes/class.mtekk_adminkit.php:320
740
- msgid "Your plugin settings are invalid."
741
- msgstr "تنظیمات پلاگین شما اشتباه است"
742
-
743
- #: includes/class.mtekk_adminkit.php:320
744
- msgid "Attempt to fix settings now."
745
- msgstr "اقدام برای حل مشکل تنظیمات "
746
-
747
- #: includes/class.mtekk_adminkit.php:320
748
- msgid "Fix now."
749
- msgstr "حل کن ."
750
-
751
- #: includes/class.mtekk_adminkit.php:503
752
- msgid "Settings successfully saved."
753
- msgstr "تنظیمات با موفقیت ذخیره شد."
754
-
755
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
756
- msgid "Undo the options save."
757
- msgstr "باز گرداندن گزینه های ذخیره شده "
758
-
759
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
760
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
761
- #: includes/class.mtekk_adminkit.php:662
762
- msgid "Undo"
763
- msgstr "بازگرداندن"
764
-
765
- #: includes/class.mtekk_adminkit.php:516
766
- msgid "Some settings were not saved."
767
- msgstr "برخی از تنظیمات ذخیره نشده اند "
768
-
769
- #: includes/class.mtekk_adminkit.php:517
770
- msgid "The following settings were not saved:"
771
- msgstr "تنظیمات زیر ذخیره نشده اند : "
772
-
773
- #: includes/class.mtekk_adminkit.php:522
774
- msgid "Please include this message in your %sbug report%s."
775
- msgstr "لطفا اين پيام را در هنگام ريپورت مشكل ارسال كنيد %sbug report%s"
776
-
777
- #: includes/class.mtekk_adminkit.php:522
778
- msgid "Go to the %s support post for your version."
779
- msgstr "برای مشاهده صفحه پشیتبانی ورژن خود به %s بروید"
780
-
781
- #: includes/class.mtekk_adminkit.php:621
782
- msgid "Settings successfully imported from the uploaded file."
783
- msgstr "تنظیمات بدرستی از فایل آپلود شده دریافت شد . "
784
-
785
- #: includes/class.mtekk_adminkit.php:621
786
- msgid "Undo the options import."
787
- msgstr "برگرداندن تنظیمات درون ریزی شده "
788
-
789
- #: includes/class.mtekk_adminkit.php:626
790
- msgid "Importing settings from file failed."
791
- msgstr "درون ریزی با شکست مواجه شد ."
792
-
793
- #: includes/class.mtekk_adminkit.php:645
794
- msgid "Settings successfully reset to the default values."
795
- msgstr "تنظیمات با موفقیت به حالت اولیه بازگردانده شد ."
796
-
797
- #: includes/class.mtekk_adminkit.php:645
798
- msgid "Undo the options reset."
799
- msgstr "برگرداندن تنظیمات ریست شده"
800
-
801
- #: includes/class.mtekk_adminkit.php:662
802
- msgid "Settings successfully undid the last operation."
803
- msgstr "تنظيمات با موفقيت به آخرين تغييرات بازگردانده شد ."
804
-
805
- #: includes/class.mtekk_adminkit.php:662
806
- msgid "Undo the last undo operation."
807
- msgstr "بازگرداندن آخرین عملیات بازگردانی"
808
-
809
- #: includes/class.mtekk_adminkit.php:697
810
- msgid "Settings successfully migrated."
811
- msgstr "تنظيمات با موفقيت انجام شد"
812
-
813
- #: includes/class.mtekk_adminkit.php:704
814
- msgid "Default settings successfully installed."
815
- msgstr "تنظیمات پیش فرض با موفقیت انجام شد ."
816
-
817
- #: includes/class.mtekk_adminkit.php:800
818
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
819
- msgstr "تنظيمات را از يك فايل XML درون ريزي كنيد يا از تنظيمات خروجي بگيريد يا تنظيمات را ريست كنيد ."
820
-
821
- #: includes/class.mtekk_adminkit.php:803
822
- msgid "Settings File"
823
- msgstr "فایل تنظیمات"
824
-
825
- #: includes/class.mtekk_adminkit.php:806
826
- msgid "Select a XML settings file to upload and import settings from."
827
- msgstr "انتخاب یک فایل XML برای آپلود و درون ریزی تنظیمات "
828
-
829
- #: class.bcn_breadcrumb_trail.php:79
830
- msgid "Page %htitle%"
831
- msgstr "صفحه %htitle%"
832
-
833
- #: class.bcn_breadcrumb_trail.php:103
834
- msgid "404"
835
- msgstr "404"
836
-
837
- #: class.bcn_breadcrumb_trail.php:108
838
- msgid "Search results for &#39;%htitle%&#39;"
839
- msgstr "نتایج جستجو برای &#39;%htitle%&#39"
840
-
841
- #: class.bcn_breadcrumb_trail.php:123
842
- msgid "Articles by: %htitle%"
843
- msgstr "مقالات توسط : %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-fi.mo CHANGED
Binary file
languages/breadcrumb-navxt-fi.po CHANGED
@@ -1,324 +1,30 @@
1
- # Translation of Breadcrumb NavXT in Finnish
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2015-01-04 17:38:14+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Varoitus: Käytät vanhentunutta asetusta \"Title Length\" (katso Muut &gt; Vanhentuneet), ole hyvä ja %1$suse käytä CSS:ää sen tilalle%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Siirry ohjeistukseen miten lyhennät breadcrumb otsikoiden pituutta CSS:llä"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Blogin Breadcrumb"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Näytä hierarkia (tarkennettu alla) joka johtaa blogin breadcrumb-polkuun."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Näytä hierarkia (tarkennettu alla) joka johtaa %s:han breadcrumb-polussa."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Vanhentunut"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Rajoita breadcrumb otsikon pituutta. (Vanhentunut, %suse käytä CSS sen tilalla%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "$post global ei ole typpiä WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Asetukset eivät ole muuttuneet, ei mitään tallennettavaa."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Asetukset eivät tallentuneet."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Liitetiedostot"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title% tagi arkistoon.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title% kategoria arkistoon.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title% arkistoon.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Varoitus: Verkkosivukohtaiset asetukset kumoavat tämä sivun määritykset."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Varoitus: Verkkosivukohtaiset asetukset saattavat kumota tämä sivun määritykset."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Murupolut"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Varoitus: Verkkoasetuksesi tulevat kumomaan tämän sivun määritykset. "
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Varoitus: Verkkoasetuksesi voivat kumota tämän sivun määritykset."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Varoitus: BCN_SETTINGS_* määritystä ei löydy, oletusasetuksena BCN_SETTINGS_FAVOR_NETWORK määritelty."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT verkkoasetukset"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT murupolut"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Lisää vierailijan toistaiseksi kulkema polku . Lisätietoja tämän apuohjelman käytöstä löytyy täältä: <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Hierarkia jonka murupolku näyttää. Huomioi että vaihtoehto \"Artikkelin yläpuolella oleva taso\" saattaa vaatia toisen lisäpalikan asennuksen."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Hakutulokset &#39;<a title=\"Siirry hakutulosten ensimmäiselle sivulle %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Yleisemmin muokatut asetukset löytyvät tältä välilehdeltä."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Otsikon pituus"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Pääsivuston murupolku"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Tämän välilehden alla löytyy kaikkien sivujen, artikkeleiden ja kustomoitujen artikkelityypien asetukset."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Julkaisun tyyppi"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Näytä Julkaisun hierarkia"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Julkaisun hierarkia"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Hieraria näkymä"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Julkaisuformaatit"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Suurin sallittu otsikon pituus:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Julkaisut"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Julkaisun ylempi taso"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Hierarkia jota murupolku näyttää."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Hierarkia"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Asetukset kaikille tietoluokille (mukaan lukien Kategoriat, Tunnisteet, ja räätälöidyt tietoluokat) sijaitsevat tässä välilehdessä."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Tietoluokat"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Artikkelin/sivun mallipohja"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Murupolkujen mallipohja (artikkelit/sivut)"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Artikkelin/sivun mallipohja (ilman linkkiä)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Murupolkujen mallipohja (artikkelit/sivut) jota käytetään kun niissä ei ole linkkejä"
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Asetukset kirjoittaja ja päivämäärä kokoelmille, hauille ja 404-sivuille löytyvät tästä välilehdestä."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Kirjoittajan kokoelmat"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Kirjoittajan artikkelit: <a title=\"Siirry ensimmäiselle sivulle tuloksia jossa kirjoittaja on %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Asetuksesi ovat uudemmalle versiolle."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Näytä tämä teksti ennen murupolkua:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Siirry Breadcrumb NavXT käännösprojektiin."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "PHP versio on liian vanha, päivitä se uudempaan versioon. Nykyversio on %1$s, Breadcrumb NavXT vaatii version %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Lisää murupolun sivupalkkiin"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Otsikko:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Näitä murupolku näin:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Lista"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Riisuttu"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Lisää murupolkuun linkit"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Näytä polku kääneisessä järjestyksessä"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Piilota etusivulta murupolku"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Oikeudet eivät riitä jatkamaan."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Jokaisen vaihtoehdon alla näkyy vihjeita sen käytöstä."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Resurssit"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sOhjeita ja esimerkkejä%s: Ohjelman tekijän kotisivuilta löydät runsaasti oppaita, opetusohjeita sekä miten tehdään kirjoituksia."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Siirry Breadcrumb NavXT tägi-arkistoon."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sDokumentaatio verkossa%s:Tarkista verkkosivuilta tarkemmat dokumentaatiot."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Siirry Breadcrumb NavXT dokumentaatioon verkossa"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sVirheraportit%s: Jos uskot löytäneen ohjemasta virheen muista mainita käytössä-olevan WordPress versiosi sekä kuvauksen miten löysit virheen."
310
 
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Siirry Breadcrumb NavXT tuki-raportointiin käyttämälle versiollesi."
314
 
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Vasta-lahjoitus"
318
 
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sLahjoita%s: Jos nautit Breadcrumb NavXT:sta ja haluat tukea sen kehitystä, harkitse tarjota kehittelijälle oluen."
322
 
323
  #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
@@ -328,9 +34,13 @@ msgstr "Siirry PayPal:iin lahjoittamaan Breadcrumb NavXT:n kehitystyölle."
328
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
  msgstr "%sOhjelman kääntäminen%s: Jos käyttämäsi kieli ei vielä ole tuettu, ota yhteyttä John Havlik:iin ja tarjoudu kääntämään se."
330
 
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
 
 
 
 
334
  msgid "General"
335
  msgstr "Yleistä"
336
 
@@ -377,335 +87,555 @@ msgstr "Vienti"
377
  msgid "Reset"
378
  msgstr "Resetointi"
379
 
380
- #: class.bcn_admin.php:379
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
381
  msgid "Breadcrumb NavXT Settings"
382
  msgstr "Breadcrumb NavXT asetukset"
383
 
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Murupolun välimerkki"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
 
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Sijoitetaan jokaisen murun väliin"
391
 
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
 
 
 
 
394
  msgid "Home Breadcrumb"
395
  msgstr "Koti-murunen"
396
 
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
  msgid "Place the home breadcrumb in the trail."
399
  msgstr "Näytä koti-murunen murupolussa."
400
 
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
  msgid "Home Template"
403
  msgstr "Koti-lomakepohja"
404
 
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
  msgid "The template for the home breadcrumb."
407
  msgstr "Lomakepohja koti-muruselle."
408
 
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
  msgid "Home Template (Unlinked)"
411
  msgstr "Lomakepohja koti-muruselle (ilman linkkiä)"
412
 
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
  msgstr "Lomakepohja koti-muruselle (murut ilman linkkiä) "
416
 
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
 
 
 
 
419
  msgid "Blog Breadcrumb"
420
  msgstr "Blogin murupolku"
421
 
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
  msgid "Place the blog breadcrumb in the trail."
424
  msgstr "Lisää blogin murupolku loppuun."
425
 
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
  msgid "Blog Template"
428
  msgstr "Blogin lomakepohja"
429
 
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
  msgid "The template for the blog breadcrumb, used only in static front page environments."
432
  msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteessa)."
433
 
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
  msgid "Blog Template (Unlinked)"
436
  msgstr "Blogin lomakepohja (ilman linkkejä)"
437
 
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
  msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteissa jossa murupolku ei ole linkattu)."
441
 
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
 
 
 
 
443
  msgid "Main Site Breadcrumb"
444
  msgstr "Pääsivuston murupolku"
445
 
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
  msgstr "Lisää pääsivuston muru polkuun moni-sivusto ympäristössä."
449
 
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
  msgid "Main Site Home Template"
452
  msgstr "Pääsivuston etusivu-lomakepohja"
453
 
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
  msgstr "Pääsivuston etusivu-murupolkun lomakepohja (käytettän moni-sivusto ympäristössä)."
457
 
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
  msgid "Main Site Home Template (Unlinked)"
460
  msgstr "Pääsivuston etusivu-lomakepohja (ilman linkkejä)"
461
 
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
  msgstr "Pääsivuston etusivu-lomakepohja (käytetään moni-sivusto ympäristössä jossa murupolut eivät ole linkattu)."
465
 
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Nykyinen kohde"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Nykyinen kohde (linkattu)"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Kyllä"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Sivutettu murupolku"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Näytä myös sivutettu murupolku murupolussa."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Merkkinä siitä että käyttäjä ei ole ensimmäisellä tai sivutetulla artikkelissa/sivussa."
489
 
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Sivutettu asiakirjamalli"
493
 
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Sivutettujen julkaisujen murupolku-asiakirjamalli."
497
 
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
  msgid "Post Template"
500
  msgstr "Artikkelin asiakirjamalli"
501
 
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
  msgid "The template for post breadcrumbs."
504
  msgstr "Artikkelien murupolkujen asiakirjamalli."
505
 
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
  msgid "Post Template (Unlinked)"
508
  msgstr "Artikkelin asiakirjamalli (ilman linkkejä)"
509
 
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
  msgstr "Asiakirjamalli artikkelien murupolulle (käytetään vain silloin kun murupolku ei ole linkattu)."
513
 
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
 
 
 
 
 
 
 
 
 
 
 
 
516
  msgid "Categories"
517
  msgstr "Kategoriat"
518
 
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
 
520
  msgid "Dates"
521
  msgstr "Päivämäärät"
522
 
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
  msgid "Tags"
526
  msgstr "Tägit"
527
 
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
 
 
 
 
 
 
 
 
 
 
529
  msgid "Pages"
530
  msgstr "Sivut"
531
 
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
  msgid "Page Template"
534
  msgstr "Sivun asiakirjamalli"
535
 
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
  msgid "The template for page breadcrumbs."
538
  msgstr "Sivun murupolun asiakirjamalli."
539
 
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
  msgid "Page Template (Unlinked)"
542
  msgstr "Sivun asiakirjamalli (ilman linkkiä)"
543
 
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
  msgstr "Murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä."
547
 
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
 
 
 
 
549
  msgid "Attachment Template"
550
  msgstr "Liitteen lomakepohja"
551
 
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
  msgid "The template for attachment breadcrumbs."
554
  msgstr "Lomakepohja liitteen murupolulle."
555
 
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
  msgid "Attachment Template (Unlinked)"
558
  msgstr "Liitteen lomakepohja (linkkaamaton)"
559
 
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
  msgstr "Liitteen murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä. "
563
 
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
  msgid "%s Template"
567
  msgstr "%s Lomakepohja"
568
 
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
  msgid "The template for %s breadcrumbs."
572
  msgstr "Lomakepohja %s murupolulle."
573
 
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
  msgid "%s Template (Unlinked)"
577
  msgstr "%s Lomakepohja (linkkaamaton)"
578
 
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
  msgstr "Lomakepohja %s murupolulle, jota käytetään vain silloin kun murupolku ei käytä linkkejä. "
583
 
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
  msgid "%s Root Page"
586
  msgstr "%s Aloitussivu"
587
 
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
  msgid "&mdash; Select &mdash;"
590
  msgstr "&mdash; Valitse &mdash;"
591
 
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
  msgid "%s Archive Display"
594
  msgstr "%s Arkistonäkymä"
595
 
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
  msgstr "Näytä murupolku %s artikkelityypin arkistolle murupolussa."
599
 
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
601
  msgid "Category Template"
602
  msgstr "Kategorialomakepohja"
603
 
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
  msgid "The template for category breadcrumbs."
606
  msgstr "Kategoria murupolun lomakepohja."
607
 
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
  msgid "Category Template (Unlinked)"
610
  msgstr "Kategorialomakepohja (linkkamaton)"
611
 
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
  msgstr "Kategoria murupolun lomakepohja, jota käytetään vain silloin kun murupolku on linkkamaton."
615
 
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
  msgid "Tag Template"
618
  msgstr "Tägi lomakepohja"
619
 
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
  msgid "The template for tag breadcrumbs."
622
  msgstr "Lomakepohja tägi murupoluille."
623
 
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
  msgid "Tag Template (Unlinked)"
626
  msgstr "Tägi lomakepohja (linkkamaton)"
627
 
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
  msgstr "Lomakepohja tägi murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
631
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
  msgid "Miscellaneous"
635
  msgstr "Muut"
636
 
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
 
 
 
 
638
  msgid "Author Template"
639
  msgstr "Kirjoittaja lomakepohja"
640
 
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
  msgid "The template for author breadcrumbs."
643
  msgstr "Lomakepohja kirjoittajan murupoluille."
644
 
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
  msgid "Author Template (Unlinked)"
647
  msgstr "Kirjoittaja lomakepohja (linkkamaton)"
648
 
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
  msgstr "Lomakepohja kirjoittaja lomakepohjalle, jota käytetään vain silloin kun murupolku on linkkaamaton."
652
 
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
  msgid "Author Display Format"
655
  msgstr "Kirjoittaja näkymä"
656
 
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
  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."
659
  msgstr "display_name käyttää nimeä määritelty kohdassa \"Display name publicly as\" kohdassa käyttäjäprofiili jota käytetään muussa viestinnässä kohdassa käyttäjäprofiili."
660
 
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
  msgid "Date Template"
663
  msgstr "Päiväys lomakepohja"
664
 
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
  msgid "The template for date breadcrumbs."
667
  msgstr "Päiväys murupolun lomakepohja."
668
 
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
  msgid "Date Template (Unlinked)"
671
  msgstr "Päiväys lomakepohja (linkkamaton)"
672
 
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
  msgstr "Lomakepohja päiväys murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
676
 
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
  msgid "Search Template"
679
  msgstr "Haku lomakepohja"
680
 
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
  msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun."
684
 
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
  msgid "Search Template (Unlinked)"
687
  msgstr "Haku lomakepohja (linkkamaton)"
688
 
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
  msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun ja murupolku on linkkamaton."
692
 
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
  msgid "404 Title"
695
  msgstr "404 Otsikko"
696
 
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
  msgid "404 Template"
699
  msgstr "404 lomakepohja"
700
 
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
  msgid "The template for 404 breadcrumbs."
703
  msgstr "Lomakepohja 404 murupoluille."
704
 
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
  msgid "Save Changes"
707
  msgstr "Tallenna muutokset"
708
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  #: includes/class.mtekk_adminkit.php:225
710
  msgid "Settings"
711
  msgstr "Asetukset"
@@ -722,6 +652,10 @@ msgstr "Päivitä asetuksesi nyt."
722
  msgid "Migrate now."
723
  msgstr "Päivitä nyt."
724
 
 
 
 
 
725
  #: includes/class.mtekk_adminkit.php:312
726
  msgid "Your plugin install is incomplete."
727
  msgstr "Apuohjelman asennus on kesken."
@@ -760,6 +694,14 @@ msgstr "Peruuta asetusten tallennus."
760
  msgid "Undo"
761
  msgstr "Peruuta"
762
 
 
 
 
 
 
 
 
 
763
  #: includes/class.mtekk_adminkit.php:516
764
  msgid "Some settings were not saved."
765
  msgstr "Joitain asetuksia ei voitu tallentaa."
@@ -824,18 +766,71 @@ msgstr "Asetus-tiedosto"
824
  msgid "Select a XML settings file to upload and import settings from."
825
  msgstr "Valitse XML asetustiedosto ladattavaksi."
826
 
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Sivu %htitle%"
830
 
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
 
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "&#39;%htitle%&#39; hakutulokset"
838
 
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artikkelit kirjoittajalta: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Development (trunk) in Finnish
2
+ # This file is distributed under the same license as the Development (trunk) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2015-09-15 20:25:04+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/1.0-alpha-1100\n"
11
+ "Project-Id-Version: Development (trunk)\n"
12
 
13
+ #: class.bcn_breadcrumb.php:91
14
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
15
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
+ #: class.bcn_breadcrumb_trail.php:110
18
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
19
+ msgstr ""
20
 
21
+ #: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
22
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
23
+ msgstr ""
24
 
25
+ #: class.bcn_breadcrumb_trail.php:127
26
+ msgid "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" content=\"%position%\"></span>"
27
+ msgstr ""
28
 
29
  #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
30
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
34
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
35
  msgstr "%sOhjelman kääntäminen%s: Jos käyttämäsi kieli ei vielä ole tuettu, ota yhteyttä John Havlik:iin ja tarjoudu kääntämään se."
36
 
37
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
38
+ msgid "Go to the Breadcrumb NavXT translation project."
39
+ msgstr "Siirry Breadcrumb NavXT käännösprojektiin."
40
+
41
+ #: class.bcn_admin.php:252 class.bcn_admin.php:390 class.bcn_admin.php:391
42
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:462
43
+ #: class.bcn_network_admin.php:463
44
  msgid "General"
45
  msgstr "Yleistä"
46
 
87
  msgid "Reset"
88
  msgstr "Resetointi"
89
 
90
+ #: class.bcn_admin.php:336 class.bcn_network_admin.php:421
91
+ msgid "Warning: Your network settings will override any settings set in this page."
92
+ msgstr "Varoitus: Verkkoasetuksesi tulevat kumomaan tämän sivun määritykset. "
93
+
94
+ #: class.bcn_admin.php:340 class.bcn_admin.php:344
95
+ msgid "Warning: Your network settings may override any settings set in this page."
96
+ msgstr "Varoitus: Verkkoasetuksesi voivat kumota tämän sivun määritykset."
97
+
98
+ #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
99
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_USE_LOCAL."
100
+ msgstr ""
101
+
102
+ #: class.bcn_admin.php:361 class.bcn_network_admin.php:433
103
+ msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
104
+ msgstr "Varoitus: Käytät vanhentunutta asetusta \"Title Length\" (katso Muut &gt; Vanhentuneet), ole hyvä ja %1$suse käytä CSS:ää sen tilalle%2$s."
105
+
106
+ #: class.bcn_admin.php:361 class.bcn_admin.php:646
107
+ #: class.bcn_network_admin.php:433 class.bcn_network_admin.php:718
108
+ msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
109
+ msgstr "Siirry ohjeistukseen miten lyhennät breadcrumb otsikoiden pituutta CSS:llä"
110
+
111
+ #: class.bcn_admin.php:378
112
  msgid "Breadcrumb NavXT Settings"
113
  msgstr "Breadcrumb NavXT asetukset"
114
 
115
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:462
116
+ msgid "A collection of settings most likely to be modified are located under this tab."
117
+ msgstr "Yleisemmin muokatut asetukset löytyvät tältä välilehdeltä."
118
+
119
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:466
120
+ msgid "Breadcrumb Separator"
121
+ msgstr "Murupolun välimerkki"
122
+
123
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:466
124
+ msgid "Placed in between each breadcrumb."
125
+ msgstr "Sijoitetaan jokaisen murun väliin"
126
+
127
+ #: class.bcn_admin.php:398 class.bcn_network_admin.php:470
128
+ msgid "Current Item"
129
+ msgstr "Nykyinen kohde"
130
+
131
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:473
132
+ msgid "Link Current Item"
133
+ msgstr "Nykyinen kohde (linkattu)"
134
+
135
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:473
136
+ msgid "Yes"
137
+ msgstr "Kyllä"
138
+
139
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
140
+ msgid "Paged Breadcrumb"
141
+ msgstr "Sivutettu murupolku"
142
+
143
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
144
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
145
+ msgstr "Näytä myös sivutettu murupolku murupolussa."
146
+
147
+ #: class.bcn_admin.php:402 class.bcn_network_admin.php:474
148
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
149
+ msgstr "Merkkinä siitä että käyttäjä ei ole ensimmäisellä tai sivutetulla artikkelissa/sivussa."
150
 
151
+ #: class.bcn_admin.php:403 class.bcn_network_admin.php:475
152
+ msgid "Paged Template"
153
+ msgstr "Sivutettu asiakirjamalli"
154
 
155
+ #: class.bcn_admin.php:403 class.bcn_network_admin.php:475
156
+ msgid "The template for paged breadcrumbs."
157
+ msgstr "Sivutettujen julkaisujen murupolku-asiakirjamalli."
158
+
159
+ #: class.bcn_admin.php:407 class.bcn_admin.php:410
160
+ #: class.bcn_network_admin.php:479 class.bcn_network_admin.php:482
161
  msgid "Home Breadcrumb"
162
  msgstr "Koti-murunen"
163
 
164
+ #: class.bcn_admin.php:410 class.bcn_network_admin.php:482
165
  msgid "Place the home breadcrumb in the trail."
166
  msgstr "Näytä koti-murunen murupolussa."
167
 
168
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:483
169
  msgid "Home Template"
170
  msgstr "Koti-lomakepohja"
171
 
172
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:483
173
  msgid "The template for the home breadcrumb."
174
  msgstr "Lomakepohja koti-muruselle."
175
 
176
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:484
177
  msgid "Home Template (Unlinked)"
178
  msgstr "Lomakepohja koti-muruselle (ilman linkkiä)"
179
 
180
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:484
181
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
182
  msgstr "Lomakepohja koti-muruselle (murut ilman linkkiä) "
183
 
184
+ #: class.bcn_admin.php:416
185
+ msgid "Blog Breadcrumb "
186
+ msgstr "Blogin Breadcrumb"
187
+
188
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:488
189
+ #: class.bcn_network_admin.php:491
190
  msgid "Blog Breadcrumb"
191
  msgstr "Blogin murupolku"
192
 
193
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:491
194
  msgid "Place the blog breadcrumb in the trail."
195
  msgstr "Lisää blogin murupolku loppuun."
196
 
197
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:492
198
  msgid "Blog Template"
199
  msgstr "Blogin lomakepohja"
200
 
201
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:492
202
  msgid "The template for the blog breadcrumb, used only in static front page environments."
203
  msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteessa)."
204
 
205
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:493
206
  msgid "Blog Template (Unlinked)"
207
  msgstr "Blogin lomakepohja (ilman linkkejä)"
208
 
209
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:493
210
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
  msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteissa jossa murupolku ei ole linkattu)."
212
 
213
+ #: class.bcn_admin.php:425 class.bcn_network_admin.php:497
214
+ msgid "Mainsite Breadcrumb"
215
+ msgstr "Pääsivuston murupolku"
216
+
217
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:500
218
  msgid "Main Site Breadcrumb"
219
  msgstr "Pääsivuston murupolku"
220
 
221
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:500
222
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
223
  msgstr "Lisää pääsivuston muru polkuun moni-sivusto ympäristössä."
224
 
225
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:501
226
  msgid "Main Site Home Template"
227
  msgstr "Pääsivuston etusivu-lomakepohja"
228
 
229
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:501
230
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
  msgstr "Pääsivuston etusivu-murupolkun lomakepohja (käytettän moni-sivusto ympäristössä)."
232
 
233
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:502
234
  msgid "Main Site Home Template (Unlinked)"
235
  msgstr "Pääsivuston etusivu-lomakepohja (ilman linkkejä)"
236
 
237
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:502
238
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
  msgstr "Pääsivuston etusivu-lomakepohja (käytetään moni-sivusto ympäristössä jossa murupolut eivät ole linkattu)."
240
 
241
+ #: class.bcn_admin.php:437 class.bcn_network_admin.php:509
242
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
243
+ msgstr "Tämän välilehden alla löytyy kaikkien sivujen, artikkeleiden ja kustomoitujen artikkelityypien asetukset."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
 
245
+ #: class.bcn_admin.php:437 class.bcn_network_admin.php:509
246
+ msgid "Post Types"
247
+ msgstr "Julkaisun tyyppi"
248
 
249
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:510
250
+ msgid "Posts"
251
+ msgstr "Julkaisut"
252
 
253
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:513
254
  msgid "Post Template"
255
  msgstr "Artikkelin asiakirjamalli"
256
 
257
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:513
258
  msgid "The template for post breadcrumbs."
259
  msgstr "Artikkelien murupolkujen asiakirjamalli."
260
 
261
+ #: class.bcn_admin.php:442 class.bcn_network_admin.php:514
262
  msgid "Post Template (Unlinked)"
263
  msgstr "Artikkelin asiakirjamalli (ilman linkkejä)"
264
 
265
+ #: class.bcn_admin.php:442 class.bcn_network_admin.php:514
266
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
267
  msgstr "Asiakirjamalli artikkelien murupolulle (käytetään vain silloin kun murupolku ei ole linkattu)."
268
 
269
+ #: class.bcn_admin.php:443 class.bcn_network_admin.php:515
270
+ msgid "Post Hierarchy Display"
271
+ msgstr "Näytä Julkaisun hierarkia"
272
+
273
+ #: class.bcn_admin.php:443 class.bcn_network_admin.php:515
274
+ msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
275
+ msgstr "Näytä hierarkia (tarkennettu alla) joka johtaa blogin breadcrumb-polkuun."
276
+
277
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:519
278
+ msgid "Post Hierarchy"
279
+ msgstr "Julkaisun hierarkia"
280
+
281
+ #: class.bcn_admin.php:451 class.bcn_admin.php:569
282
+ #: class.bcn_network_admin.php:523 class.bcn_network_admin.php:641
283
  msgid "Categories"
284
  msgstr "Kategoriat"
285
 
286
+ #: class.bcn_admin.php:452 class.bcn_admin.php:530
287
+ #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:602
288
  msgid "Dates"
289
  msgstr "Päivämäärät"
290
 
291
+ #: class.bcn_admin.php:453 class.bcn_admin.php:576
292
+ #: class.bcn_network_admin.php:525 class.bcn_network_admin.php:648
293
  msgid "Tags"
294
  msgstr "Tägit"
295
 
296
+ #: class.bcn_admin.php:455 class.bcn_admin.php:529
297
+ #: class.bcn_network_admin.php:527 class.bcn_network_admin.php:601
298
+ msgid "Post Parent"
299
+ msgstr "Julkaisun ylempi taso"
300
+
301
+ #: class.bcn_admin.php:471 class.bcn_admin.php:554
302
+ #: class.bcn_network_admin.php:543 class.bcn_network_admin.php:626
303
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
304
+ msgstr "Hierarkia jonka murupolku näyttää. Huomioi että vaihtoehto \"Artikkelin yläpuolella oleva taso\" saattaa vaatia toisen lisäpalikan asennuksen."
305
+
306
+ #: class.bcn_admin.php:475 class.bcn_network_admin.php:547
307
  msgid "Pages"
308
  msgstr "Sivut"
309
 
310
+ #: class.bcn_admin.php:478 class.bcn_network_admin.php:550
311
  msgid "Page Template"
312
  msgstr "Sivun asiakirjamalli"
313
 
314
+ #: class.bcn_admin.php:478 class.bcn_network_admin.php:550
315
  msgid "The template for page breadcrumbs."
316
  msgstr "Sivun murupolun asiakirjamalli."
317
 
318
+ #: class.bcn_admin.php:479 class.bcn_network_admin.php:551
319
  msgid "Page Template (Unlinked)"
320
  msgstr "Sivun asiakirjamalli (ilman linkkiä)"
321
 
322
+ #: class.bcn_admin.php:479 class.bcn_network_admin.php:551
323
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
324
  msgstr "Murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä."
325
 
326
+ #: class.bcn_admin.php:482 class.bcn_network_admin.php:554
327
+ msgid "Attachments"
328
+ msgstr "Liitetiedostot"
329
+
330
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
331
  msgid "Attachment Template"
332
  msgstr "Liitteen lomakepohja"
333
 
334
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:557
335
  msgid "The template for attachment breadcrumbs."
336
  msgstr "Lomakepohja liitteen murupolulle."
337
 
338
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
339
  msgid "Attachment Template (Unlinked)"
340
  msgstr "Liitteen lomakepohja (linkkaamaton)"
341
 
342
+ #: class.bcn_admin.php:486 class.bcn_network_admin.php:558
343
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
344
  msgstr "Liitteen murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä. "
345
 
346
+ #: class.bcn_admin.php:506 class.bcn_admin.php:607
347
+ #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
348
  msgid "%s Template"
349
  msgstr "%s Lomakepohja"
350
 
351
+ #: class.bcn_admin.php:506 class.bcn_admin.php:607
352
+ #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:679
353
  msgid "The template for %s breadcrumbs."
354
  msgstr "Lomakepohja %s murupolulle."
355
 
356
+ #: class.bcn_admin.php:507 class.bcn_admin.php:608
357
+ #: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
358
  msgid "%s Template (Unlinked)"
359
  msgstr "%s Lomakepohja (linkkaamaton)"
360
 
361
+ #: class.bcn_admin.php:507 class.bcn_admin.php:608
362
+ #: class.bcn_network_admin.php:579 class.bcn_network_admin.php:680
363
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
364
  msgstr "Lomakepohja %s murupolulle, jota käytetään vain silloin kun murupolku ei käytä linkkejä. "
365
 
366
+ #: class.bcn_admin.php:512 class.bcn_network_admin.php:584
367
  msgid "%s Root Page"
368
  msgstr "%s Aloitussivu"
369
 
370
+ #: class.bcn_admin.php:515 class.bcn_network_admin.php:587
371
  msgid "&mdash; Select &mdash;"
372
  msgstr "&mdash; Valitse &mdash;"
373
 
374
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:591
375
  msgid "%s Archive Display"
376
  msgstr "%s Arkistonäkymä"
377
 
378
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:591
379
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
380
  msgstr "Näytä murupolku %s artikkelityypin arkistolle murupolussa."
381
 
382
+ #: class.bcn_admin.php:520 class.bcn_network_admin.php:592
383
+ msgid "%s Hierarchy Display"
384
+ msgstr "%s Hieraria näkymä"
385
+
386
+ #: class.bcn_admin.php:520 class.bcn_network_admin.php:592
387
+ msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
388
+ msgstr "Näytä hierarkia (tarkennettu alla) joka johtaa %s:han breadcrumb-polussa."
389
+
390
+ #: class.bcn_admin.php:524 class.bcn_network_admin.php:596
391
+ msgid "%s Hierarchy"
392
+ msgstr "%s Hierarkia"
393
+
394
+ #: class.bcn_admin.php:550 class.bcn_network_admin.php:622
395
+ msgid "The hierarchy which the breadcrumb trail will show."
396
+ msgstr "Hierarkia jota murupolku näyttää."
397
+
398
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:640
399
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
400
+ msgstr "Asetukset kaikille tietoluokille (mukaan lukien Kategoriat, Tunnisteet, ja räätälöidyt tietoluokat) sijaitsevat tässä välilehdessä."
401
+
402
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:640
403
+ msgid "Taxonomies"
404
+ msgstr "Tietoluokat"
405
+
406
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
407
  msgid "Category Template"
408
  msgstr "Kategorialomakepohja"
409
 
410
+ #: class.bcn_admin.php:572 class.bcn_network_admin.php:644
411
  msgid "The template for category breadcrumbs."
412
  msgstr "Kategoria murupolun lomakepohja."
413
 
414
+ #: class.bcn_admin.php:573 class.bcn_network_admin.php:645
415
  msgid "Category Template (Unlinked)"
416
  msgstr "Kategorialomakepohja (linkkamaton)"
417
 
418
+ #: class.bcn_admin.php:573 class.bcn_network_admin.php:645
419
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
420
  msgstr "Kategoria murupolun lomakepohja, jota käytetään vain silloin kun murupolku on linkkamaton."
421
 
422
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:651
423
  msgid "Tag Template"
424
  msgstr "Tägi lomakepohja"
425
 
426
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:651
427
  msgid "The template for tag breadcrumbs."
428
  msgstr "Lomakepohja tägi murupoluille."
429
 
430
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:652
431
  msgid "Tag Template (Unlinked)"
432
  msgstr "Tägi lomakepohja (linkkamaton)"
433
 
434
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:652
435
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
436
  msgstr "Lomakepohja tägi murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
437
 
438
+ #: class.bcn_admin.php:583 class.bcn_network_admin.php:655
439
+ msgid "Post Formats"
440
+ msgstr "Julkaisuformaatit"
441
+
442
+ #: class.bcn_admin.php:586 class.bcn_network_admin.php:658
443
+ msgid "Post Format Template"
444
+ msgstr "Artikkelin/sivun mallipohja"
445
+
446
+ #: class.bcn_admin.php:586 class.bcn_network_admin.php:658
447
+ msgid "The template for post format breadcrumbs."
448
+ msgstr "Murupolkujen mallipohja (artikkelit/sivut)"
449
+
450
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:659
451
+ msgid "Post Format Template (Unlinked)"
452
+ msgstr "Artikkelin/sivun mallipohja (ilman linkkiä)"
453
+
454
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:659
455
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
456
+ msgstr "Murupolkujen mallipohja (artikkelit/sivut) jota käytetään kun niissä ei ole linkkejä"
457
+
458
+ #: class.bcn_admin.php:617 class.bcn_network_admin.php:689
459
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
460
+ msgstr "Asetukset kirjoittaja ja päivämäärä kokoelmille, hauille ja 404-sivuille löytyvät tästä välilehdestä."
461
+
462
  #: class.bcn_admin.php:617 class.bcn_admin.php:626
463
+ #: class.bcn_network_admin.php:689 class.bcn_network_admin.php:698
464
  msgid "Miscellaneous"
465
  msgstr "Muut"
466
 
467
+ #: class.bcn_admin.php:618 class.bcn_network_admin.php:690
468
+ msgid "Author Archives"
469
+ msgstr "Kirjoittajan kokoelmat"
470
+
471
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:693
472
  msgid "Author Template"
473
  msgstr "Kirjoittaja lomakepohja"
474
 
475
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:693
476
  msgid "The template for author breadcrumbs."
477
  msgstr "Lomakepohja kirjoittajan murupoluille."
478
 
479
+ #: class.bcn_admin.php:622 class.bcn_network_admin.php:694
480
  msgid "Author Template (Unlinked)"
481
  msgstr "Kirjoittaja lomakepohja (linkkamaton)"
482
 
483
+ #: class.bcn_admin.php:622 class.bcn_network_admin.php:694
484
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
485
  msgstr "Lomakepohja kirjoittaja lomakepohjalle, jota käytetään vain silloin kun murupolku on linkkaamaton."
486
 
487
+ #: class.bcn_admin.php:623 class.bcn_network_admin.php:695
488
  msgid "Author Display Format"
489
  msgstr "Kirjoittaja näkymä"
490
 
491
+ #: class.bcn_admin.php:623 class.bcn_network_admin.php:695
492
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
493
  msgstr "display_name käyttää nimeä määritelty kohdassa \"Display name publicly as\" kohdassa käyttäjäprofiili jota käytetään muussa viestinnässä kohdassa käyttäjäprofiili."
494
 
495
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:701
496
  msgid "Date Template"
497
  msgstr "Päiväys lomakepohja"
498
 
499
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:701
500
  msgid "The template for date breadcrumbs."
501
  msgstr "Päiväys murupolun lomakepohja."
502
 
503
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
504
  msgid "Date Template (Unlinked)"
505
  msgstr "Päiväys lomakepohja (linkkamaton)"
506
 
507
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:702
508
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
509
  msgstr "Lomakepohja päiväys murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
510
 
511
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
512
  msgid "Search Template"
513
  msgstr "Haku lomakepohja"
514
 
515
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:703
516
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
517
  msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun."
518
 
519
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:704
520
  msgid "Search Template (Unlinked)"
521
  msgstr "Haku lomakepohja (linkkamaton)"
522
 
523
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:704
524
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
525
  msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun ja murupolku on linkkamaton."
526
 
527
+ #: class.bcn_admin.php:633 class.bcn_network_admin.php:705
528
  msgid "404 Title"
529
  msgstr "404 Otsikko"
530
 
531
+ #: class.bcn_admin.php:634 class.bcn_network_admin.php:706
532
  msgid "404 Template"
533
  msgstr "404 lomakepohja"
534
 
535
+ #: class.bcn_admin.php:634 class.bcn_network_admin.php:706
536
  msgid "The template for 404 breadcrumbs."
537
  msgstr "Lomakepohja 404 murupoluille."
538
 
539
+ #: class.bcn_admin.php:637 class.bcn_network_admin.php:709
540
+ msgid "Deprecated"
541
+ msgstr "Vanhentunut"
542
+
543
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:713
544
+ msgid "Title Length"
545
+ msgstr "Otsikon pituus"
546
+
547
+ #: class.bcn_admin.php:646 class.bcn_network_admin.php:718
548
+ msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
549
+ msgstr "Rajoita breadcrumb otsikon pituutta. (Vanhentunut, %suse käytä CSS sen tilalla%s)"
550
+
551
+ #: class.bcn_admin.php:651 class.bcn_network_admin.php:723
552
+ msgid "Max Title Length: "
553
+ msgstr "Suurin sallittu otsikon pituus:"
554
+
555
+ #: class.bcn_admin.php:663 class.bcn_network_admin.php:735
556
  msgid "Save Changes"
557
  msgstr "Tallenna muutokset"
558
 
559
+ #: class.bcn_breadcrumb_trail.php:79
560
+ msgid "Page %htitle%"
561
+ msgstr "Sivu %htitle%"
562
+
563
+ #: class.bcn_breadcrumb_trail.php:102
564
+ msgid "404"
565
+ msgstr "404"
566
+
567
+ #: class.bcn_breadcrumb_trail.php:105
568
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
569
+ msgstr "Hakutulokset &#39;<a title=\"Siirry hakutulosten ensimmäiselle sivulle %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
570
+
571
+ #: class.bcn_breadcrumb_trail.php:107
572
+ msgid "Search results for &#39;%htitle%&#39;"
573
+ msgstr "&#39;%htitle%&#39; hakutulokset"
574
+
575
+ #: class.bcn_breadcrumb_trail.php:120
576
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
577
+ msgstr "Kirjoittajan artikkelit: <a title=\"Siirry ensimmäiselle sivulle tuloksia jossa kirjoittaja on %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
578
+
579
+ #: class.bcn_breadcrumb_trail.php:122
580
+ msgid "Articles by: %htitle%"
581
+ msgstr "Artikkelit kirjoittajalta: %htitle%"
582
+
583
+ #: class.bcn_breadcrumb_trail.php:393
584
+ msgid "$post global is not of type WP_Post"
585
+ msgstr "$post global ei ole typpiä WP_Post"
586
+
587
+ #: class.bcn_network_admin.php:403
588
+ msgid "Warning: Individual site settings will override any settings set in this page."
589
+ msgstr "Varoitus: Verkkosivukohtaiset asetukset kumoavat tämä sivun määritykset."
590
+
591
+ #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
592
+ msgid "Warning: Individual site settings may override any settings set in this page."
593
+ msgstr "Varoitus: Verkkosivukohtaiset asetukset saattavat kumota tämä sivun määritykset."
594
+
595
+ #: class.bcn_network_admin.php:450
596
+ msgid "Breadcrumb NavXT Network Settings"
597
+ msgstr "Breadcrumb NavXT verkkoasetukset"
598
+
599
+ #: class.bcn_widget.php:32
600
+ msgid "Adds a breadcrumb trail to your sidebar"
601
+ msgstr "Lisää murupolun sivupalkkiin"
602
+
603
+ #: class.bcn_widget.php:99
604
+ msgid "Title:"
605
+ msgstr "Otsikko:"
606
+
607
+ #: class.bcn_widget.php:103
608
+ msgid "Text to show before the trail:"
609
+ msgstr "Näytä tämä teksti ennen murupolkua:"
610
+
611
+ #: class.bcn_widget.php:107
612
+ msgid "Output trail as:"
613
+ msgstr "Näitä murupolku näin:"
614
+
615
+ #: class.bcn_widget.php:109
616
+ msgid "List"
617
+ msgstr "Lista"
618
+
619
+ #: class.bcn_widget.php:110
620
+ msgid "Google (RDFa) Breadcrumbs"
621
+ msgstr "Google (RDFa) Murupolut"
622
+
623
+ #: class.bcn_widget.php:111
624
+ msgid "Plain"
625
+ msgstr "Riisuttu"
626
+
627
+ #: class.bcn_widget.php:117
628
+ msgid "Link the breadcrumbs"
629
+ msgstr "Lisää murupolkuun linkit"
630
+
631
+ #: class.bcn_widget.php:119
632
+ msgid "Reverse the order of the trail"
633
+ msgstr "Näytä polku kääneisessä järjestyksessä"
634
+
635
+ #: class.bcn_widget.php:121
636
+ msgid "Hide the trail on the front page"
637
+ msgstr "Piilota etusivulta murupolku"
638
+
639
  #: includes/class.mtekk_adminkit.php:225
640
  msgid "Settings"
641
  msgstr "Asetukset"
652
  msgid "Migrate now."
653
  msgstr "Päivitä nyt."
654
 
655
+ #: includes/class.mtekk_adminkit.php:304
656
+ msgid "Your settings are for a newer version."
657
+ msgstr "Asetuksesi ovat uudemmalle versiolle."
658
+
659
  #: includes/class.mtekk_adminkit.php:312
660
  msgid "Your plugin install is incomplete."
661
  msgstr "Apuohjelman asennus on kesken."
694
  msgid "Undo"
695
  msgstr "Peruuta"
696
 
697
+ #: includes/class.mtekk_adminkit.php:507
698
+ msgid "Settings did not change, nothing to save."
699
+ msgstr "Asetukset eivät ole muuttuneet, ei mitään tallennettavaa."
700
+
701
+ #: includes/class.mtekk_adminkit.php:511
702
+ msgid "Settings were not saved."
703
+ msgstr "Asetukset eivät tallentuneet."
704
+
705
  #: includes/class.mtekk_adminkit.php:516
706
  msgid "Some settings were not saved."
707
  msgstr "Joitain asetuksia ei voitu tallentaa."
766
  msgid "Select a XML settings file to upload and import settings from."
767
  msgstr "Valitse XML asetustiedosto ladattavaksi."
768
 
769
+ #. Plugin Name of the plugin/theme
770
+ msgid "Breadcrumb NavXT"
771
+ msgstr "Breadcrumb NavXT murupolut"
772
 
773
+ #. Plugin URI of the plugin/theme
774
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
775
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
776
 
777
+ #. Description of the plugin/theme
778
+ msgid "Adds a breadcrumb navigation showing the visitor&#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>."
779
+ msgstr "Lisää vierailijan toistaiseksi kulkema polku . Lisätietoja tämän apuohjelman käytöstä löytyy täältä: <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
780
 
781
+ #. Author of the plugin/theme
782
+ msgid "John Havlik"
783
+ msgstr "John Havlik"
784
+
785
+ #. Author URI of the plugin/theme
786
+ msgid "http://mtekk.us/"
787
+ msgstr "http://mtekk.us/"
788
+
789
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
790
+ #: class.bcn_network_admin.php:25
791
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
792
+ msgstr "PHP versio on liian vanha, päivitä se uudempaan versioon. Nykyversio on %1$s, Breadcrumb NavXT vaatii version %2$s"
793
+
794
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
795
+ msgid "Insufficient privileges to proceed."
796
+ msgstr "Oikeudet eivät riitä jatkamaan."
797
+
798
+ #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
799
+ msgid "Tips for the settings are located below select options."
800
+ msgstr "Jokaisen vaihtoehdon alla näkyy vihjeita sen käytöstä."
801
+
802
+ #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
803
+ msgid "Resources"
804
+ msgstr "Resurssit"
805
+
806
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
807
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
808
+ msgstr "%sOhjeita ja esimerkkejä%s: Ohjelman tekijän kotisivuilta löydät runsaasti oppaita, opetusohjeita sekä miten tehdään kirjoituksia."
809
+
810
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
811
+ msgid "Go to the Breadcrumb NavXT tag archive."
812
+ msgstr "Siirry Breadcrumb NavXT tägi-arkistoon."
813
+
814
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
815
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
816
+ msgstr "%sDokumentaatio verkossa%s:Tarkista verkkosivuilta tarkemmat dokumentaatiot."
817
+
818
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
819
+ msgid "Go to the Breadcrumb NavXT online documentation"
820
+ msgstr "Siirry Breadcrumb NavXT dokumentaatioon verkossa"
821
+
822
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
823
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
824
+ msgstr "%sVirheraportit%s: Jos uskot löytäneen ohjemasta virheen muista mainita käytössä-olevan WordPress versiosi sekä kuvauksen miten löysit virheen."
825
+
826
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
827
+ msgid "Go to the Breadcrumb NavXT support post for your version."
828
+ msgstr "Siirry Breadcrumb NavXT tuki-raportointiin käyttämälle versiollesi."
829
+
830
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
831
+ msgid "Giving Back"
832
+ msgstr "Vasta-lahjoitus"
833
+
834
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
835
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
836
+ msgstr "%sLahjoita%s: Jos nautit Breadcrumb NavXT:sta ja haluat tukea sen kehitystä, harkitse tarjota kehittelijälle oluen."
languages/breadcrumb-navxt-it_IT.mo DELETED
Binary file
languages/breadcrumb-navxt-it_IT.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Italian
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-03-25 15:35:38+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Attenzione: Stai usando un settaggio \"Lunghezza titolo\" obsoleto (vedi Varie e Deprecati), per favore %1$suse utilizza i CSS %2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Vai alla Guida per vedere come abbreviare i titoli con i CSS"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Breadcrumb del blog"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Mostra la gerarchia (specificata sotto) che porta ad un post nel percorso delle Breadcrumb."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Mostra la gerarchia (specificata sotto) che porta a %s nel percorso delle Breadcrumb."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Deprecato"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Limita la lunghezza del titolo delle breadcrumb. (Deprecato, %suse usa i CSS invece%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "$post global non è del tipo WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Le impostazioni non sono state modificate, non c'è niente da salvare."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Le impostazioni non sono state salvate"
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Allegati"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Vai a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Vai all'archivio del tag %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Vai agli archivi per %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Vai agli archivi per %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Attenzione: Le impostazioni del sito sovrascriveranno quelle di questa pagina."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Attenzione: Le impostazioni del sito potrebbero sovrascrivere quelle di questa pagina."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr " Breadcrumbs Google (RDFa)"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Vai a %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Attenzione: Le impostazioni del network sovrascriveranno le impostazioni di questa pagina."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Attenzione: Le impostazioni del network potrebbero sovrascrivere le impostazioni di questa pagina."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Attenzione: Nessun BCN_SETTINGS_* definito trovato, verrà utilizzato il default BCN_SETTINGS_FAVOR_NETWORK"
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Impostazioni di rete di Breadcrumb NavXT"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Aggiunge una navigazione a Breadcrumb, mostrando al visitatore il percorso fino alla posizione corrente. Per maggiori dettagli su come usare questo plugin visita la pagina <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "La gerarchia che verrà mostrata dal percorso delle Breadcrumb. Nota: l'opzione \"Genitore\" può richiedere un plugin ulteriore per ottenere il comportamento previsto, poiché questo è un tipo di articolo non gerarchico."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Risultati della ricerca di &#39;<a title=\"Vai alla prima pagina dei risultati della ricerca di %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Un insieme di settaggi che probabilmente saranno da modificare è posizionata sotto questa linguetta"
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Lunghezza del titolo"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Breadcrumb del sito principale"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Le impostazioni per tutti i tipi di contenuti (Articoli, pagine e Custom Post) sono sotto questa linguetta"
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Tipi di post"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Visualizzazione gerarchia post"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Gerarchia post"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "Visualizzazione gerarchia %s "
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Formati post"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Lunghezza max titolo"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Posts"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Genitore del Post"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "La gerarchia che verrà mostrata nel percorso."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "Gerarchia %s "
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Le impostazioni per tutte le tassonomie (incluse Categorie, Tags, tassonomie personalizzate) si trovano sotto questa tab"
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Tassonomie"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Modello per il formato Articolo"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Il modello per le breadcrumbs per il formato articolo"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Modello per il formato Articolo (non linkato)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Il modello di breadcrumbs per il formato post_format, usato solo quando la breadcrumb non è linkata."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Le mpostazioni per archivi data, autore e pagine 404 sono sotto questa tab."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Archivi Autori"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Articoli di: <a title=\"Vai alla prima pagina di articoli di %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Le tue impostazioni sono per una versione più recente."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Testo da mostrare prima del percorso di breadcrumbs:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Vai al progetto di traduzione di Breadcrumb NavXT"
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "La tua versione di PHP è troppo vecchia. La tua versione è %1$s, Breadcrumb NavXT richiede la %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Aggiunge una breadcrumb alla tua barra laterale"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Titolo:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Mostra il percorso come:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Elenco"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Semplice"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Collega le breadcrumb"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Inverti l'ordine del percorso"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Non mostrare il percorso nella home page"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Permessi insufficienti per procedere"
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "I consigli per le impostazioni si trovano sotto le opzioni selezionate"
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Risorse"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutorials e How-To%s: sul sito dell'autore sono disponibili diverse guide ed esempi."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Vai all'archivio tag di Breadcrumb NavXT"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sDocumentazione Online%s: Consulta la documentazione per informazioni tecniche più approfondite."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sSegnala un problema%s: se pensi di avere individuato un bug, per favore segnalacelo includendo il numero di versione di WordPress e indicazioni su come riprodurre il bug."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Vai al post di supporto per la tua versione di Breadcrumbs NavXT"
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Ricambiare"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonazione%s: Ti piace Breadcrumbs NavXT e vuoi aiutare a svilupparlo? Offri una birra all'autore."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Vai su Paypal per fare una donazione a Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTraduzioni%s: La tua lingua non c'è? Contatta John Havlik per iniziare a tradurla."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Generale"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "Affinchè le impostazioni in questa pagina abbiano effetto, devi usare il widget incluso Breadcrumb NavXT, oppure inserire nel tuo tema uno degli spezzoni di codice qui sotto."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Percorso delle breadcrumb con separatori"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Percorso delle breadcrumb in formato lista"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Quick Start"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Usando il codice della sezione Quick Start, il seguente CSS può essere usato come base per lo stile delle tue breadcrumbs."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Stile"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Importa/Esporta/Resetta"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Importa"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Esporta"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Reimposta"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Impostazioni di Breadcrumb NavXT"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Separatore delle breadcrumb"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Inserito tra ogni breadcrumb."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Breadcrumb della Home Page"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Inserisci la Breadcrumb per la Home Page nel percorso."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Modello per la Home"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Il modello per la breadcrumb in Home."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Modello per la Home (senza link)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Il modello per la breadcrumb in home, usato quando la breadcrumb non è collegata."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Breadcrumb del Blog"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Inserisci la Breadcrumb del Blog nel percorso."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Modello per il Blog"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Il modello per la breadcrumb del blog, usato solo su pagine principali statiche."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Modello per il Blog (non linkato)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Il modello per la breadcrumb del blog, usato solo su pagine principali statiche e quando la breadcrumb non è linkata."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Breadcrumb del Sito Principale"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "In una configurazione multisito, inserisce la home page del sito principale nel percorso delle breadcrumb."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Modello per la Home del sito principale"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Il modello per la breadcrumb del sito principale, usato solo in ambienti multisito."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Modello per la Home del sito principale (senza link)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Il modello per la breadcrumbs del sito principale, usato solo per ambienti multisito e quando la breadcrumbs non ha link."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Voce corrente"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Collegamento alla voce corrente"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "S&igrave;"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Breadcrumb per la paginazione"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Includi la breadcrumb di paginazione nel percorso."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Indica che l'utente si trova su una pagina diversa dalla prima quando un articolo/pagina è lungo più di una."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Modello per le breadcrumb di paginazione"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Il modello per le breadcrumb di paginazione"
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Modello per gli articoli"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Il modello per le breadcrumb degli articoli"
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Modello per gli articoli (senza link)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Il modello per le breadcrumb degli articoli, usato solo quando la breadcrumb non è linkata."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Categorie"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Date"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Tags"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Pagine"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Modello per le pagine"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Il modello per le breadcrumb di pagina"
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Modello per le pagine (senza link)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Il modello per le breadcrumb di pagina, usato solo quando le breadcrumb non hanno link."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Modello per gli allegati"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Il modello per le breadcrumb degli allegati"
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Modello per gli allegati (senza link)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Il modello per le breadcrumb degli allegati, usato solo quando la breadcrumb non ha link."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s Modello"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "Il modello per le breadcrumbs %s."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "Modello %s (senza link)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Modello per le breadcrumb %s, usato solo quando la breadcrumb è senza link."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "Pagina Radice %s"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Seleziona &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "Mostra archivio %s"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Mostra la breadcrumb per gli archivi degli articoli %s nel percorso."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Modello per la categoria"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Modello per le breadcrumb di categoria"
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Modello di categoria (senza link)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "Modello per le breadcrumb di categoria, usato solo quando la breadcrumb è senza link."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Modello per i Tag"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Modello per le breadcrumb di tag"
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Modello di tag (senza link)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Modello per le breadcrumb di tag, usato solo quando la breadcrumb è senza link."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Varie"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Modello per gli Autori"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Modello per le breadcrumb per gli Autori"
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Modello per gli Autori (senza link)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Modello per le breadcrumb degli autori, usato solo quando la breadcrumb è senza link."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Formato per la visualizzazione Autori"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Modello per la Data"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Modello per le breadcrumb delle date."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Modello per le date (senza link)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Modello per le breadcrumb di data, usato solo quando la breadcrumb è senza link."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Modello per la ricerca"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Modello di collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce pi&ugrave; pagine di risultati."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Modello per la ricerca (senza link)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Modello per il collegamento delle breadcrumb di ricerca, usato solo quando i risultati della ricerca sono su più pagine e la breadcrumb è senza link."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "Titolo per errore 404"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "Modello per errore 404"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "Modello per le breadcrumb di errore 404"
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Salva modifiche"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Impostazioni"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Le tue impostazioni sono obsolete."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Migra le impostazioni adesso."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Migra adesso."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "L'installazione del plugin non è completa."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Carica le impostazioni di default."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Completa ora."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Le impostazioni non sono corrette."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Tenta di correggere i settaggi ora."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Correggi adesso."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Opzioni salvate correttamente."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Annulla il salvataggio delle opzioni."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Annulla"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Alcune impostazioni non sono state salvate."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Le seguenti impostazioni non sono state salvate:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Per favore includi questo messaggio nella segnalazione %sbug report%s"
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Vai al post di %s supporto per la tua versione."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Opzioni importate correttamente dal file caricato."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Annulla l'importazione delle opzioni."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Importazione delle opzioni dal file fallita."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "opzioni correttamente riportate ai valori predefiniti."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Annulla la reimpostazione delle opzioni."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "L'ultima operazione è stata annullata correttamente."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Annulla l'ultimo annullamento."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Impostazioni migrate correttamente."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Impostazioni di default correttamente installate."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Importa le opzioni da un file XML, esporta le opzioni attuali su un file XML, o reimposta le opzioni predefinite."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "File delle opzioni"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Seleziona un file XML da caricare per importare le opzioni."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Pagina %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Risultati della ricerca per &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Articoli di: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-ko_KR.mo DELETED
Binary file
languages/breadcrumb-navxt-ko_KR.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Korean
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-10-13 04:13:56+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=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr ""
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr ""
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "첨부파일"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "주의사항: 각종 사이트 설정과 현재 페이지의 설정이 충돌하면 사이트 설정을 사용합니다."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "주의사항: 각종 사이트 설정과 현재 페이지의 설정이 충돌하면 사이트 설정이 우선시 될수 있습니다."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "구글 (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "주의사항: 현재 네트워크 설정과 현재 페이지의 설정이 충돌하면 네트워크 설정을 사용합니다."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "주의사항: 현재 네트워크 설정과 현재 페이지의 설정이 충돌하면 네트워크 설정이 우선시 될수 있습니다."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "주의사항: BCN_SETTINGS_* 설정을 찾을 수 없습니다. 기본값인 BCN_SETTINGS_FAVOR_NETWORK 을 사용합니다."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT 네트워크 설정"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "방문자의 경로를 현재 위치에 표시하는 breadcrumb 을 추가합니다. 이 플러그인의 자세한 사용법은 <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> 를 클릭하세요."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Breadcrumb 트레일이 보여줄 구조입니다. 참고로, 현재 설정은 구조가 없는 포스트 타입이므로, 상위 포스트(Post Parent) 옵션을 사용하려면 다른 플러그인을 추가해야 합니다."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr " &#39; 검색 결과 <a title=\"%title% 검색 결과의 첫 번째 페이지로 이동합니다.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "자주 변경되는 설정들은 보통 이 탭에 있습니다."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "타이틀 길이"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "메인사이트 Breadcrumb"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "모든 포스타 타입 (Posts, Pages Custom Post Types)의 설정은 이 탭에 있습니다."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "포스트 타입"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "포스트 구조 표시"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "포스트 구조"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s 구조 표시"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "포스트 포맷"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "최대 제목 길이"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "포스트"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "상위 포스트"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Breadcrumb trail 이 보여줄 구조"
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s 구조"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "분류체계 (Categories, Tags and Custom Taxonomies)는 이 탭에 있습니다."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "분류체계"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "포스트 포맷 템플릿"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "post_format breadcrumbs 템플릿입니다."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "포스트 포맷 템플릿 (Unlinked)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "post_format breadcrumbs 템플릿입니다. (Unlinked)"
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "작성자, Date Archives, 검색, 404 페이지 등은 이 탭에 있습니다."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "작성자 백업"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "새 버전을 위한 설정입니다."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Breadcrumb 트레일 전에 보여줄 글자"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Breadcrumb NavXT 번역 프로젝트 페이지로 이동합니다."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "지원되지 않는 PHP 버전을 사용하고 있고 (%1$s). Breadcrumb NavXT 는 %2$s 이 필요합니다. PHP를 업그레이드 한 후 다시 시도 하세요."
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Breadcrumb trail 을 사이트바에 추가합니다."
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "제목:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Output 트레일:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "리스트"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "기본"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Breadcrumbs 링크"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "트레일 순서 뒤집기"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "처음페이지에 트레일 숨기기"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "권한이 충분하지 않습니다."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "설정 팁과 도움말은 \"Select Options\" 아래에 있습니다."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "리소스"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutorials and How Tos%s: 저자의 웹사이트에 가면 자세한 사용설명서, 힌트/팁이 있습니다."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Breadcrumb NavXT 태그 백업으로 가기"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sOnline Documentation%s: 더 구체적인 기술적인 정보는 Documentation을 참고하세요."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Breadcrumb NavXT 온라인 설명서"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sReport a Bug%s: 버그가 발견되었다면, WordPress 버전과 함께, 구체적인 스텝을 설명해 주세요 (이왕이면 English로)"
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "현재 버전 Breadcrumb NavXT 기술 지원 페이지"
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "도네이션"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonate%s: Breadcrumb NavXT 개발자에게 도네이션 하고 싶으시면 맥주 한잔이라도 사주세요!"
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Paypal을 사용해서 Breadcrumb NavXT 개발자에게 도네이션하기"
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "일반"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "현재 페이지에 있는 설정을 적용하기 위해서는, Breadcrumb NavXT 위젯을 사용하거나, 아래에 있는 코드중 하나를 Theme에 추가해야 합니다."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Breadcrumb 트레일 구분자"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Breadcrumb 트레일 (리스트)"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "퀵스타트"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "위에 있는 퀵스타트 섹션의 코드를 사용하면, 다음의 CSS 코드를 Breadcrumb의 스타일링에 사용할수 있습니다."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "스타일링"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "가져오기/내보내기/초기화"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "가져오기"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "내보내기"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "초기화"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT 설정"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Breadcrumb 구분자"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "breadcrumb 사이에 표시합니다."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "홈 Breadcrumb"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "트레일에 홈 breadcrumb 을 표시합니다."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "홈 템플릿"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "홈 Breadcrumb 템플릿입니다."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "홈 템플릿 (Unlinked)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "링크가 없을때 사용되는 홈 breadcrumb 템플릿입니다."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "블로그 Breadcrumb"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "트레일에 블로그 breadcrumb을 표시합니다."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "블로그 템플릿"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "블로그 breadcrumb 템플릿입니다. (Static 홈페이지 환경에서만 사용)"
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "블로그 템플릿 (Unlinked)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "링크가 없을때 사용되는 블로그 breadcrumb 템플릿입니다. (Static 홈페이지 환경에서만 사용)"
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "메인 사이트 Breadcrumb"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "멀티사이트 환경에서 메인 사이트 홈 Breadcrumb을 표시합니다."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "메인 사이트 홈 템플릿"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "멀티사이트 환경에서 사용되는 메인 사이트 홈 Breadcrumb 템플릿입니다."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "메인 사이트 홈 템플릿 (Unlinked)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "멀티사이트 환경에서 사용되는 메인 사이트 홈 Breadcrumb 템플릿입니다. (Unlinked)"
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "현재아이템"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "현재아이템 링크"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "예"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Breadcrumb 페이지화"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "페이지화 된 Breadcrumb을 Breadcrumb 트레일에 추가합니다."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "사용자가 현재 페이지화 된 포스트나 페이지 밖의 페이지에 있음을 표시합니다."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "페이지화 템플릿"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "페이지화 breadcrumb 템플릿"
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "포스트 템플릿"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "breadcrumb포스트 템플릿"
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "템플릿 포스트 (Unlinked)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "breadcrumb포스트 템플릿입니다. (Unlinked)"
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "카테고리"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "날짜"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "태그"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "페이지"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "페이지 템플릿"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "페이지 breadcrumb 템플릿입니다."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "페이지 템플릿 (Unlinked)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "페이지 breadcrumb 템플릿입니다. (Unlinked)"
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "첨부파일 템플릿"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "breadcrumbs 첨부파일 템플릿입니다."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "첨부파일 템플릿 (Unlinked)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "breadcrumbs 첨부파일 템플릿입니다. (Unlinked)"
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s 템플릿"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "%s breadcrumb 템플릿입니다."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s 템플릿 (Unlinked)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "%s breadcrumb 템플릿입니다. (Unlinked)"
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s 루트 페이지"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; &mdash; 선택하세요."
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s 백업 표시"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "%s 포스트 타입 백업을 표시합니다."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "카테고리 템플릿"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "카테고리 breadcrumbs 템플릿 입니다."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "카테고리 템플릿 (Unlinked)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "카테고리 breadcrumbs 템플릿 입니다. (Unlinked)"
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "태그 템플릿"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "태그 Breadcrumb 템플릿입니다."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "태그 템플릿 (Unlinked)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "태그 Breadcrumb 템플릿입니다. (Unlinked)"
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "기타설정"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "작성자 템플릿"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "작성자 breadcrumb 템플릿 입니다."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "작성자 템플릿 (Unlinked)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "작성자 breadcrumb 템플릿 입니다. (Unlinked)"
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "작성자 표시 포맷"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name 은 사용자 프로파일에 있는 \"Display name publicly as\" 필드 정보를 사용합니다."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "날짜 템플릿"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "날짜 breadcrumb 템플릿입니다."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "날짜 템플릿 (Unlinked)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "날짜 breadcrumb 템플릿입니다. (Unlinked)"
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "검색 템플릿"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "검색 Breadcrumb을 위한 표시이고, 검색 결과가 여러 페이지에 걸쳐 나올때만 사용됩니다."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "검색 템플릿 (Unlinked)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "검색 Breadcrumb을 위한 표시이고, 검색 결과가 여러 페이지에 걸쳐 나올때만 사용됩니다. (Unlinked)"
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404 제목"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "404 템플릿"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "404 Breadcrumbs 템플릿입니다."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "변경 저장"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "설정"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "기존설정이 최신 설정과 호환되지 않습니다."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "설정을 최신버전으로 업그레이드 하세요."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "지금 업그레이드"
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "플러그인이 제대로 설치되지 않았습니다."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "기본값을 설정합니다."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "설치 종료"
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "현재 플러그인 설정에 문제가 있습니다."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "설정문제를 자동으로 해결합니다."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "지금 해결"
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "설정이 성공적으로 저장되었습니다."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "이전설정으로 되돌아갑니다."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "되돌리기"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "모든 설정이 저장되진 않았습니다."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "저장되지 않은 설정:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "이 메시지를 %sbug report%s 에 포함해 주세요: "
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "현재버전의 %s 지원 포스트로 바로 가기"
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "업로드된 파일을 통해 설정 불러오기에 성공했습니다."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "불러오기한 옵션을 이전값으로 되돌립니다."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "파일을 통한 설정 불러오기를 실패했습니다."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "설정이 기본값으로 초기화되었습니다."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "설정 초기화를 이전값으로 되돌립니다."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "최근 변경된 설정을 성공적으로 이전으로 되돌렸습니다."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "최근 되돌리기한 것을 다시 되돌립니다."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "설정이 성공적으로 업그레이드 되었습니다."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "기본설정이 성공적으로 설치되었습니다."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "XML파일을 통해 설정을 불러오거나, 내보내거나, 기본값으로 초기화 합니다."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "설정파일"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "업로드하고 불러올 XML 설정 파일 선택"
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "%htitle% 페이지"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "&#39;%htitle%&#39; 검색 결과"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-lt_LT.mo DELETED
Binary file
languages/breadcrumb-navxt-lt_LT.po DELETED
@@ -1,845 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Lithuanian
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-01-20 15:05:46+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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Įspėjimas: Jūsų naudojate pasenusios nustatymo \"title Ilgis\" (pamatyti Miscellaneous &gt; Nepatvirtintas ), įtikti %1$suse CSS užuot%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Eiti į vadove apdailos naršymo breadcrumb pavadinimas ilgis su CSS"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Blog Breadcrumb "
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Rodyti hierarchiją (toliau nurodytą), dėl kurių į Breadcrumb takas paštu."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Rodyti hierarchiją (toliau nurodytą), dėl kurių \"%s\" į Breadcrumb takas."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Nepatvirtintas"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Apriboti ilgis breadcrumb titulas (Nepatvirtintas, %suse CSS instead%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "$post global is not of type WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Nustatymai nepasikeitė, nieko sutaupyti."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Nustatymai nebuvo išsaugotas."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Priedas"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Įspėjimas: Individualūs vietos nustatymai bus panaikinti visus nustatytus šiame puslapyje nustatymus."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Įspėjimas: Individualūs svetainės parametrus gali panaikinti visus nustatytus šiame puslapyje nustatymus."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Įspėjimas: Jūsų tinklo nustatymai bus panaikinti visus nustatytus šiame puslapyje nustatymus."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Įspėjimas: Jūsų tinklo nustatymai gali panaikinti visus nustatytus šiame puslapyje nustatymus."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Įspėjimas: Ne BCN_NUSTATYMAI_* apibrėžti pareiškimą rasti, įsipareigojimų nevykdymą BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT Tinklas Nustatymai"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT "
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Prideda breadcrumb navigaciją rodyti lankytojas&#39;s kelias į savo dabartinę vietą. Daugiau informacijos apie tai, kaip naudoti šią įskiepiai vizito <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Hierarchija, kuris yra tinklalapio takas būtų galima parodyti. Atkreipkite dėmesį, kad \"Rašyti tėvų\" variantas, gali prireikti papildomo įskiepio dirbti taip, kaip tikėtasi, nes tai ne hierarchinė pranešimas tipas."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Paieškos rezultatai &#39;<a title=\"Eiti į pirmąjį puslapį paieškos rezultatų %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Nustatymų greičiausiai rinkinys turi būti pakeista yra pagal šį skirtuką."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "pavadinimas ilgis"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Nuoroda į pagrindinį puslapį"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Už visas po tipų (Pranešimai, puslapius, ir Custom Standartinė tipai) yra nustatymai pagal šį skirtuką."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Standartinė tipai"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Pradėti hierarchija Rodyti"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Pradėti hierarchija"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s hierarchija Rodyti"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Standartinė formatai"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Maksimalus Pavadinimas Ilgis:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Pranešimai"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Standartinė tėvų"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Hierarchija, kuri tinklalapio takas bus rodomas."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s hierarchija"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Už visų taksonomijos (įskaitant Kategorijos, žodžius ir nestandartinių taksonomijos) yra nustatymai pagal šį skirtuką."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "taksonomijos"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Standartinė Formatas šabloną"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Už pašto formato breadcrumbs šablonas."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Pranešimo formatas šablonas (atspari)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Už post_format džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Už autorius ir data archyvuose, kratas ir 404 puslapių parametrai yra pagal šį skirtuką."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Autorius Archyvas"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "straipsniai: <a title=\"Eiti į pirmąjį puslapį pranešimų per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Jūsų nustatymai yra skirtos naujesnės versijos."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Tekstas, kuris bus rodomas prieš Trail:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Eiti į Breadcrumb NavXT vertimo projektą."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Jūsų PHP versija yra per sena, prašome atnaujinti į naujesnę versiją. Jūsų versija yra%1$s Breadcrumb NavXT reikia %2$S"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Prideda parankinės Breadcrumb takas"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Titel:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Išėjimo takas kaip:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "sąrašas"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "paprastas"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "nuoroda Breadcrumbs"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Sukeisti takai tvarka"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Slėpti takas pagrindiniame puslapyje"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Nepakankami įgaliojimai tęsti."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Patarimai nustatymų yra žemiau pasirinkite Funkcijos."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "ištekliai"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sPamokos ir How Tos%s: Yra keletas vadovai, vadovėliai, ir kaip tos galima rasti autoriaus svetainėje."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Eiti į Breadcrumb NavXT tag archive."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sDokumentacijos online%s: Patikrinkite daugiau indepth techninės informacijos dokumentacijoje."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Eiti į Breadcrumb NavXT online dokumentacijoje"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sPranešk apie klaidą%s: Jei manote, kad suradote klaidą, nurodykite savo WordPress versiją ir informaciją apie tai, kaip atkurti klaidą."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Eiti į Breadcrumb NavXT remti postą savo versiją"
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Suteikus Atgal"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sPaaukoti%s: Meilė Breadcrumb NavXT ir norite padėti plėtrą? Apsvarstykite pirkti autoriui alus."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Eiti į PayPal duoti auką Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sIšversti%s: Ar jūsų kalba nėra? Susisiekite John Havlík gauti versti."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Bendras"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "Dėl šio puslapio nustatymai įsigaliotų, turite naudoti pridedamą Breadcrumb NavXT valdikliui, ar vietos arba Kodekso skirsniuose į savo temą."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Breadcrumb takas su separatorių"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Breadcrumb takas sąrašo forma"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Quick Start"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Naudojant kodą iš Quick Start ankstesniame skyriuje, taip CSS gali būti naudojami kaip bazė stiliaus jūsų tinklalapio puslapių seką."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Styling"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Importas/Eksportas/Atkurti"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Importas"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Eksportas"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Atstatyti"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT Nustatymai"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Breadcrumb separatorius"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Dedami tarpusavyje breadcrumb."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Home Breadcrumb"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr ""
400
- "Patalpinti namo breadcrumb į seką.\n"
401
- "\t\n"
402
-
403
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
404
- msgid "Home Template"
405
- msgstr "Pagrindinis Šablonas"
406
-
407
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
408
- msgid "The template for the home breadcrumb."
409
- msgstr "Namams šablonas už breadcrumb."
410
-
411
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
412
- msgid "Home Template (Unlinked)"
413
- msgstr "Pagrindinis šablonas (atspari)"
414
-
415
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
416
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
417
- msgstr "Namams už tinklalapio šablonas, naudojamas, kai tinklalapio nėra susiję."
418
-
419
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
420
- #: class.bcn_network_admin.php:490
421
- msgid "Blog Breadcrumb"
422
- msgstr "Blog Breadcrumb"
423
-
424
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
425
- msgid "Place the blog breadcrumb in the trail."
426
- msgstr ""
427
- "Patalpinti blog breadcrumb į seką.\n"
428
- "\t\n"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "Blog Template"
432
- msgstr "Blog šablonas"
433
-
434
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
435
- msgid "The template for the blog breadcrumb, used only in static front page environments."
436
- msgstr "šablonas už blog breadcrumb, used only in static front page environments."
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "Blog Template (Unlinked)"
440
- msgstr "Blog šablonas (Atspari)"
441
-
442
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
443
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
444
- msgstr "Už dienoraštį tinklalapio šablonas, naudojamas tik statinio tituliniame puslapyje aplinkoje, kai tinklalapio nėra susiję."
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Main Site Breadcrumb"
448
- msgstr "Titulinis Breadcrumb"
449
-
450
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
451
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
452
- msgstr "Padėkite Pagrindinė svetainė namo tinklalapio puslapių tvarką sudarydamas keliose setup takas."
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "Main Site Home Template"
456
- msgstr "Titulinis Pagrindinis Šablonas"
457
-
458
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
459
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
460
- msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "Main Site Home Template (Unlinked)"
464
- msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
465
-
466
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
467
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
468
- msgstr "Svetainės pagrindinį namuose tinklalapio, naudojamas tik keliose aplinkose ir kai tinklalapio šablonas nėra susiję."
469
-
470
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
471
- msgid "Current Item"
472
- msgstr "Aktualus Prekės"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Link Current Item"
476
- msgstr "Nuoroda Aktualus Prekės"
477
-
478
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
479
- msgid "Yes"
480
- msgstr "Taip"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Paged Breadcrumb"
484
- msgstr "Puslapi Breadcrumb"
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Include the paged breadcrumb in the breadcrumb trail."
488
- msgstr "Įtraukti puslapi breadcrumb į breadcrumb juostą."
489
-
490
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
491
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
492
- msgstr "Nurodo, kad vartotojas yra puslapyje išskyrus ant sunumeruoti pranešimų / puslapius pirmas."
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "Paged Template"
496
- msgstr "Puslapi Šablonas"
497
-
498
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
499
- msgid "The template for paged breadcrumbs."
500
- msgstr "Už puslapio breadcrumbs šablonas."
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "Post Template"
504
- msgstr "Standartinė šabloną"
505
-
506
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
507
- msgid "The template for post breadcrumbs."
508
- msgstr "Už pašto breadcrumbs šablonas."
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "Post Template (Unlinked)"
512
- msgstr "Rašyti šablonas (atspari)"
513
-
514
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
515
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
516
- msgstr "Už pašto breadcrumbs, naudojamas tik tada, kai breadcrumb nėra susijęs šablonas."
517
-
518
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
519
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
520
- msgid "Categories"
521
- msgstr "Kategorijos"
522
-
523
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
524
- msgid "Dates"
525
- msgstr "datos"
526
-
527
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
528
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
529
- msgid "Tags"
530
- msgstr "Tags"
531
-
532
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
533
- msgid "Pages"
534
- msgstr "Puslapiai"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "Page Template"
538
- msgstr "Page Web Šablono"
539
-
540
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
541
- msgid "The template for page breadcrumbs."
542
- msgstr "Už puslapio šablonas breadcrumbs."
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "Page Template (Unlinked)"
546
- msgstr "Page Web Šablono (atspari)"
547
-
548
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
549
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
550
- msgstr "Už puslapio breadcrumbs šablonas,naudojamas tik tada kai breadcrumb nėra susiję."
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "Attachment Template"
554
- msgstr "Priedas Šablonas"
555
-
556
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
557
- msgid "The template for attachment breadcrumbs."
558
- msgstr "Kabinami ant breadcrumbs šablonas."
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "Attachment Template (Unlinked)"
562
- msgstr "Priedas šablonas (atspari)"
563
-
564
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
565
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
566
- msgstr "Kabinami ant breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
567
-
568
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
569
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
570
- msgid "%s Template"
571
- msgstr "%s šablonas"
572
-
573
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
574
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
575
- msgid "The template for %s breadcrumbs."
576
- msgstr "šablonas %s breadcrumbs."
577
-
578
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
579
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
580
- msgid "%s Template (Unlinked)"
581
- msgstr "%s šablonas (atspari)"
582
-
583
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
584
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
585
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
586
- msgstr "%s breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
587
-
588
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
589
- msgid "%s Root Page"
590
- msgstr "%s Root Page"
591
-
592
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
593
- msgid "&mdash; Select &mdash;"
594
- msgstr "&mdash; Pasirinkti &mdash;"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "%s Archive Display"
598
- msgstr "%s Archyvas Rodyti"
599
-
600
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
601
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
602
- msgstr "Rodyti breadcrumb už %s arba tipo pareigoms archyvų tinklalapio takas."
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "Category Template"
606
- msgstr "Kategorija Šablonas"
607
-
608
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
609
- msgid "The template for category breadcrumbs."
610
- msgstr "Kategorijos už breadcrumbs šablonas."
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "Category Template (Unlinked)"
614
- msgstr "Kategorija šablonas (atspari)"
615
-
616
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
617
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
618
- msgstr "Kategorijos breadcrumb šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "Tag Template"
622
- msgstr "Tag Šablonas"
623
-
624
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
625
- msgid "The template for tag breadcrumbs."
626
- msgstr "Tag breadcrumbs šablonas."
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "Tag Template (Unlinked)"
630
- msgstr "Tag šablonas (atspari)"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
633
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
634
- msgstr "šablonas už Tag breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susiję."
635
-
636
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
637
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
638
- msgid "Miscellaneous"
639
- msgstr "įvairialypis"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "Author Template"
643
- msgstr "Autorius Šablonas"
644
-
645
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
646
- msgid "The template for author breadcrumbs."
647
- msgstr "šablonas už autoriaus breadcrumbs"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "Author Template (Unlinked)"
651
- msgstr "Autorius šablonas (atspari)"
652
-
653
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
654
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
655
- msgstr "Autoriaus džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- msgid "Author Display Format"
659
- msgstr "Autorius Ekranas Formatas"
660
-
661
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
662
- 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."
663
- msgstr "display_namenaudoja pavadinimą, nurodytą \"Display name viešai kaip\" pagal vartotojo aprašymą kiti atitinka variantų vartotojo profilį."
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "Date Template"
667
- msgstr "data Šablonas"
668
-
669
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
670
- msgid "The template for date breadcrumbs."
671
- msgstr "Datos ir breadcrumbs šablonas."
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "Date Template (Unlinked)"
675
- msgstr "Data šablonas (atspari)"
676
-
677
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
678
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
679
- msgstr "Datos ir breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susijęs šablonas."
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "Search Template"
683
- msgstr "Paieška Šablonas"
684
-
685
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
686
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
687
- msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius."
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "Search Template (Unlinked)"
691
- msgstr "Paieška šablonas (atspari)"
692
-
693
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
694
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
695
- msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius ir naršymo nėra susiję."
696
-
697
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
698
- msgid "404 Title"
699
- msgstr "404 Titras"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "404 Template"
703
- msgstr "404 Šablonas"
704
-
705
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
706
- msgid "The template for 404 breadcrumbs."
707
- msgstr "Šablonas už 404 breadcrumbs."
708
-
709
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
710
- msgid "Save Changes"
711
- msgstr "Išsaugoti pakeitimus"
712
-
713
- #: includes/class.mtekk_adminkit.php:225
714
- msgid "Settings"
715
- msgstr "Nustatymai"
716
-
717
- #: includes/class.mtekk_adminkit.php:295
718
- msgid "Your settings are out of date."
719
- msgstr "Jūsų nustatymai paseno."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate the settings now."
723
- msgstr "Nustatymai migruoti dabar."
724
-
725
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
726
- msgid "Migrate now."
727
- msgstr "Migracija dabar."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Your plugin install is incomplete."
731
- msgstr "Jūsų įskiepiai installtion yra baigtas."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Load default settings now."
735
- msgstr "Įdėkite numatytuosius nustatymus dabar."
736
-
737
- #: includes/class.mtekk_adminkit.php:312
738
- msgid "Complete now."
739
- msgstr "Baigtas."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Your plugin settings are invalid."
743
- msgstr "Jūsų plugin parametrai yra negerai."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Attempt to fix settings now."
747
- msgstr "Bandymai, kaip nustatyti nustatymus dabar."
748
-
749
- #: includes/class.mtekk_adminkit.php:320
750
- msgid "Fix now."
751
- msgstr "Fiksuotas dabar."
752
-
753
- #: includes/class.mtekk_adminkit.php:503
754
- msgid "Settings successfully saved."
755
- msgstr "Nustatymai išsaugoti sėkmingai."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- msgid "Undo the options save."
759
- msgstr "Padaryti taupymo atšaukti galimybes."
760
-
761
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
762
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
763
- #: includes/class.mtekk_adminkit.php:662
764
- msgid "Undo"
765
- msgstr "Padaryti atgal"
766
-
767
- #: includes/class.mtekk_adminkit.php:516
768
- msgid "Some settings were not saved."
769
- msgstr "Kai kurie parametrai nebuvo išsaugotas."
770
-
771
- #: includes/class.mtekk_adminkit.php:517
772
- msgid "The following settings were not saved:"
773
- msgstr "Kai kurie parametrai nebuvo išsaugotas."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Please include this message in your %sbug report%s."
777
- msgstr "Pridėkite šią naujieną prie jūsų %sbug report%s ."
778
-
779
- #: includes/class.mtekk_adminkit.php:522
780
- msgid "Go to the %s support post for your version."
781
- msgstr "Eiti į %s nuotolinio paramos savo versiją."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Settings successfully imported from the uploaded file."
785
- msgstr "Nustatymai buvo sėkmingai importuoti iš įkelto failo."
786
-
787
- #: includes/class.mtekk_adminkit.php:621
788
- msgid "Undo the options import."
789
- msgstr "Padaryti Anuliuoti Importas galimybes."
790
-
791
- #: includes/class.mtekk_adminkit.php:626
792
- msgid "Importing settings from file failed."
793
- msgstr "Importuoti nustatymus iš failo nepavyko."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Settings successfully reset to the default values."
797
- msgstr "Sėkmingai pakeisti gamyklinius nustatymus."
798
-
799
- #: includes/class.mtekk_adminkit.php:645
800
- msgid "Undo the options reset."
801
- msgstr "Padaryti iš naujo atšaukti galimybes."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Settings successfully undid the last operation."
805
- msgstr "Nustatymai, paskutinės operacijos sėkmingai pakeistas."
806
-
807
- #: includes/class.mtekk_adminkit.php:662
808
- msgid "Undo the last undo operation."
809
- msgstr "Kartokite."
810
-
811
- #: includes/class.mtekk_adminkit.php:697
812
- msgid "Settings successfully migrated."
813
- msgstr "Nustatymai sėkmingai perkelti."
814
-
815
- #: includes/class.mtekk_adminkit.php:704
816
- msgid "Default settings successfully installed."
817
- msgstr "Gamykliniai nustatymai sėkmingai įdiegta."
818
-
819
- #: includes/class.mtekk_adminkit.php:800
820
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
821
- msgstr "Importuoti nustatymus iš XML failą, eksporto dabartinius nustatymus XML failo arba iš naujo į numatytuosius nustatymus."
822
-
823
- #: includes/class.mtekk_adminkit.php:803
824
- msgid "Settings File"
825
- msgstr "Nustatymai failą"
826
-
827
- #: includes/class.mtekk_adminkit.php:806
828
- msgid "Select a XML settings file to upload and import settings from."
829
- msgstr "Pasirinkite XML failą su nustatymais įkelti ir importuoti nustatymus."
830
-
831
- #: class.bcn_breadcrumb_trail.php:79
832
- msgid "Page %htitle%"
833
- msgstr "Puslapis %htitle%"
834
-
835
- #: class.bcn_breadcrumb_trail.php:103
836
- msgid "404"
837
- msgstr "404"
838
-
839
- #: class.bcn_breadcrumb_trail.php:108
840
- msgid "Search results for &#39;%htitle%&#39;"
841
- msgstr "Paieškos rezultatai &#39;%htitle%&#39;"
842
-
843
- #: class.bcn_breadcrumb_trail.php:123
844
- msgid "Articles by: %htitle%"
845
- msgstr "Straipsniai: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-nl_NL.mo DELETED
Binary file
languages/breadcrumb-navxt-nl_NL.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Dutch
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-06-02 18:08:18+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr ""
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr ""
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr ""
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "bijlagen"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar de %title% tag archieven.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar de %title% categorie archieven.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar de %title% archieven.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Waarschuwing: individuele site instellingen overschrijven elke instelling ingesteld op deze pagina"
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Waarschuwing: individuele site instellingen kunnen instellingen ingesteld op deze pagina overschrijven."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Waarschuwing: Je netwerk instellingen overschrijven elke instelling ingesteld op deze pagina."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Waarschuwing: Je netwerk instellingen kunnen instellingen ingesteld op deze pagina overschrijven. "
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Waarschuwing: Geen BCN_SETTINGS_* definitie statement gevonden, standaard ingesteld op BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT Netwerk Instellingen"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Voegt kruimelpad navigatie toe welke aan de bezoeker het pad toont van hun huidige locatie. Voor meer informatie over gebruik van deze plugin bezoek <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "De hiërarchie die het kruimelpad zal tonen. De \"Hoofdbericht\" optie kan een extra plugin vereisen om correct te kunnen functioneren aangezien dit een niet-hiërarchisch bericht type is."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Zoekresultaten boor &#39;<a title=\"Ga naar de eerste pagina van de zoekresultaten voor %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Een verzameling instellingen die het meest waarschijnlijk worden aangepast bevinden zich onder dit tabblad."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Titel Lengte"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Kruimelpad Hoofdsite"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "De instellingen voor alle typen (Berichten, Pagina's, en Custom Post Types) bevinden zich onder dit tabblad."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Bericht Typen"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Weergave Bericht Hiërarchie"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Bericht Hiërarchie"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Hiërarchie Weergave"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Bericht Opmaak"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Max Titel Lengte: "
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Berichten"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Hoofdbericht"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "De hiërarchie die het kruimelpad zal laten zien."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Hiërarchie"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "De instellingen voor alle taxonomieën (waaronder Categorieën, Tags, en aangepaste taxonomieën) bevinden zich onder dit tabblad."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Taxonomies"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Bericht Opmaak Sjabloon"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Het sjabloon voor bericht opmaak kruimelpaden."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Bericht Opmaak Sjabloon (Niet Gelinkt)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Het sjabloon voor post_format kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet wordt gekoppeld."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "De instellingen voor de auteur en datum archieven, zoekopdrachten, en 404 pagina's bevinden zich onder dit tabblad."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Author Archief"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artikelen van: <a title=\"Ga naar de eerste pagina van de berichten van %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Uw instellingen zijn voor een nieuwere versie."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Tekst om weer te geven voor het pad:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Ga naar het Breadcrumb NavXT vertaalproject."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Uw PHP versie is te oud, upgrade naar een nieuwere versie. Uw versie is %1$s, Breadcrumb NavXT vereist %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Voegt een kruimelpad toe aan uw sidebar"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Titel:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Output pad als:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Lijst"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Standaard"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Link het kruimelpad"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "De volgorde van het pad omdraaien"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Verberg het pad op de voorpagina"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Onvoldoende rechten om verder te gaan."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Tips voor de instellingen bevinden zich onder geselecteerde opties."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Middelen"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sHandleidingen en Instructies%s: Er zijn verschillende Engelstalige gidsen, handleidingen, en instructies beschikbaar op de website van de auteur."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Ga naar het Breadcrumb NavXT tag archief."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sOnline Documentatie%s: Raadpleeg de documentatie (Engels) voor meer diepgaande technische informatie."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Ga naar online Breadcrumb NavXT documentatie"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sMeld een bug%s: Als u denkt dat u een bug hebt gevonden meld dan ook uw WordPress versie en details over hoe de bug te reproduceren."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Ga naar het Breadcrumb NavXT ondersteuningsbericht voor uw versie."
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Geef Terug"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDoneer%s: Heeft u plezier van Breadcrumb NavXT en wilt u de ontwikkeling verder helpen? Overweeg de aanschaf van een biertje voor de auteur."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Ga naar PayPal om te doneren aan Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTranslate%s: Is uw tail niet beschikbaar? Contacteer John Havlik om de vertaling te verkrijgen."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Algemeen"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "Om de instellingen op deze pagina door te voeren moet u gebruik maken van het meegeleverde Breadcrumb NavXT widget, of plaats een van de onderstaande code secties in uw thema."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Kruimelpad met afscheidingstekens"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Kruimelpad in lijst vorm"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Snelle Start"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Met behulp van de code van de bovenstaande Snelle Start sectie kan de volgende CSS worden gebruikt als basis voor het stylen van uw kruimelpad."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Styling"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Import/Export/Reset"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Import"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Export"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Reset"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT Instellingen"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Kruimelpad Afscheidingsteken"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Geplaatst tussen elk kruimelpad."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Home Kruimelpad"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Plaatst het home kruimelpad in het spoor."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Home Template"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Het sjabloon voor het home kruimelpad."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Home Template (Niet Gelinkt)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Het sjabloon voor het home kruimelpad, gebruikt wanneer het kruimelpad niet gelinkt is."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Blog Kruimelpad"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Plaatst het blog kruimelpad in het spoor."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Blog Template"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Blog Template (Niet Gelinkt)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen en wanneer het kruimelpad niet gelinkt is."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Hoofdsite Kruimelpad"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Plaatst het home kruimelpad van de hoofdsite in het spoor in een multisite installatie."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Hoofdsite Home Sjabloon"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr " Hoofdsite Home Template (Niet Gelinkt)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen en wanneer het kruimelpad niet gelinkt is."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Huidig Item"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Link Huidig Item"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Ja"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Gepagineerd Kruimelpad"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Voeg het gepagineerde kruimelpad toe aan het kruimelpad spoor."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Geeft aan dat de gebruiker op een andere pagina is dan de eerste op gepagineerde berichten/pagina's."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Gepagineerd Sjabloon"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Het sjabloon voor gepagineerde kruimelpaden."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Bericht Template"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Het sjabloon voor bericht kruimelpaden."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Bericht Template (Niet Gelinkt)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Het sjabloon voor bericht kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Categorieën"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Data"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Tags"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Pagina's"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Pagina Template"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Het sjabloon voor pagina kruimelpaden."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Pagina Template (Niet Gelinkt)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Het sjabloon voor pagina kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Bijlage Sjabloon"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Het sjabloon voor bijlage kruimelpaden."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Bijlage Sjabloon (Niet Gelinkt)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Het sjabloon voor bijlage kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s Template"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "Het sjabloon voor %s kruimelpaden."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s Sjabloon (Niet Gelinkt)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Het sjabloon voor %s kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s Hoofd Pagina"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Selecteer &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s Archief Weergave"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Toon het kruimelpad voor %s bericht type archieven in het kruimelpad."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Categorie Template"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Het sjabloon voor categorie kruimelpaden."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Categorie Template (Niet Gelinkt)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "The template for category breadcrumbs, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Tag Template"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Het sjabloon voor tag kruimelpaden."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Tag Template (Niet Gelinkt)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Het sjabloon voor tag kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Diversen"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Auteur Template"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Het sjabloon voor auteur kruimelpaden."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Auteur Sjabloon (Niet Gelinkt)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Het sjabloon voor auteur kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Auteur Weergave Opmaak"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name gebruikt de naam opgegeven in \"Toon naam publiekelijk als\" onder het gebruikersprofiel, de anderen komen overeen met opties in het gebruikersprofiel."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Datum Template"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Het sjabloon voor datum kruimelpaden."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Datum Template (Niet Gelinkt)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Het sjabloon voor datum kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Zoek Template"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Zoek Template (Niet Gelinkt)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat en wanneer het kruimelpad niet gelinkt is."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404 Titel"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "404 Template"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "Het sjabloon voor 404 kruimelpaden."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Opslaan Wijzigingen"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Instellingen"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Uw instellingen zijn verouderd."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Migreer nu de instellingen."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Migreer nu."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "Uw plugin installatie is onvolledig."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Laad nu de standaardinstellingen."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Voltooi nu."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Uw plugin instellingen zijn ongeldig."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Poging om nu de instellingen te herstellen."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Herstel nu."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Instellingen succesvol opgeslagen."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Maak de opslaging van de opties ongedaan."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Ongedaan maken"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Sommige instellingen zijn niet opgeslagen."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "De volgende instellingen zijn niet opgeslagen:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Gelieve dit bericht bij te voegen in uw %sbug report%s."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Ga naar het %s ondersteuningsbericht voor uw versie."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Instellingen met succes geïmporteerd uit het geüploade bestand."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Ongedaan maken van de opties import."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Instellingen importeren uit bestand is mislukt."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Instellingen met succes teruggezet naar de standaardwaarden."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Maak terugzetten van de opties naar standaardwaarden ongedaan."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Instellingen heeft de laatste handeling met succes ongedaan gemaakt."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Maak de laatste handeling ongedaan."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Instellingen succesvol gemigreerd."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Standaardinstellingen succesvol geïnstalleerd."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Instellingen importeren van een XML-bestand, exporteer de huidige instellingen naar een XML-bestand, of resetten naar de standaardinstellingen."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Instellingen Bestand"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Selecteer een XML-bestand om instellingen te uploaden en importeren."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Pagina %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Zoekresultaten voor &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artikelen van: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-pt_PT.mo DELETED
Binary file
languages/breadcrumb-navxt-pt_PT.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Portuguese (Portugal)
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2015-01-02 17:07:49+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Aviso: A definição \"Tamanho do título\" que está a usar foi descontinuada (veja Vários &gt; Descontinuado), por favor %1$suse antes CSS%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Consultar o guia sobre truncagem de títulos da estrutura de navegação com CSS."
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Navegação do blog"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Mostrar a hierarquia (especificada abaixo) que leva a um artigo no rasto de navegação."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Mostrar a hierarquia (especificada abaixo) que leva a %s no rasto de navegação."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Descontinuado"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Limitar o tamanho dos títulos na navegação. (Descontinuado, %suse antes CSS%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "A variável global $post não é do tipo WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Definições inalteradas, nada a guardar."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "As definições não foram guardadas."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Anexos"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para os arquivos da etiqueta %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para os arquivos da categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para os arquivos de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Aviso: As definições de cada site irão sobrepor-se às definições nesta página."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Aviso: As definições de cada site poderão sobrepor-se às definições nesta página."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Estrutura de navegação do Google (RDFa)"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Aviso: As suas definições de rede irão sobrepor-se às definições desta página."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Aviso: As suas definições de rede poderão sobrepor-se às definições desta página."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Aviso: A instrução para definir BCN_SETTINGS_* não foi encontrada, será usada BCN_SETTINGS_FAVOR_NETWORK por omissão."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Definições de rede do Breadcrumb NavXT"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Adiciona navegação mostrando o caminho do visitante até à localização atual. Para descobrir como usar este plugin, visite <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "A hierarquia mostrada pela navegação. Note que a opção \"Post Parent\" pode obrigar a um plugin adicional para se comportar como esperado uma vez que se trata de um tipo de artigo não-hierárquico."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- 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;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Conjunto de configurações mais frequentes encontra-se neste separador."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Tamanho do título"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Navegação estruturada do site principal"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "As configurações para todos os tipos de artigo (Artigos, Páginas e Tipos de Artigo Personalizado) encontram-se neste separador."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Tipos de artigo"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Exibir hierarquia de artigos"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Hierarquia de artigos"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "Exibir hierarquia de %s"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Formatos de artigo"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Tamanho máximo do título:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Artigos"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Pai do artigo"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "A hierarquia exibida no caminho de navegação."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "Hierarquia de %s"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "As configurações de todas as taxonomias (incluindo categorias, tags e taxonomias personalizadas) encontram-se neste separador."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Taxonomias"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Modelo do formato de artigo"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "O modelo para navegação dos formatos de artigo."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Modelo de formato de artigo (sem link)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "O modelo para navegação dos formatos de artigo, quando a navegação não tem link."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "As configurações dos arquivos por autor e data, pesquisas e páginas de erro 404 encontram-se neste separador."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Arquivos por autor"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artigos por: <a title=\"Ir para a primeira página de artigos por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "As suas configurações dizem respeito a uma versão mais recente."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Texto a exibir antes do caminho:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- 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."
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Adiciona um caminho à barra lateral"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Título:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Produzir rasto como:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Lista"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Por extenso"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Ligue a navegação estruturada"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Inverter a ordem do caminho"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Esconder o caminho na página principal"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Permissões insuficientes para prosseguir."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Recursos"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutoriais e Guias%s: Existem vários guias e tutoriais disponíveis na página do autor."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Vá para o tópico Breadcrumb NavXT"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Vá para a documentação online do Breadcrumb NavXT."
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- 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."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Retribuir"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Genérica"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- 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."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Rastos de navegação estruturada com separadores"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Rasto da navegação estruturada em forma de lista"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Início rápido"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- 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."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Estilos"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Importar/Exportar/Anular"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Importar"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Exportar"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Anular"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Preferências da navegação estruturada NavXT "
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Separador da navegação estruturada"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Colocado entre cada link de navegação."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Navegação para a página principal"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Coloca a navegação da página principal no rasto"
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Modelo da página inicial:"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "O modelo para a navegação da página inicial."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Modelo da página inicial (sem link)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Navegação estruturada do blog"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Coloque a navegação estruturada do blog no rasto."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Modelo de blog"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Modelo de blog (sem link)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Navegação do site principal"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Modelo para o sítio principal"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Modelo da página inicial do site principal (sem link)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- 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."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Item actual"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Link no item actual"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Sim"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Navegação estruturada e paginada."
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Inclui a navegação paginada e estruturada no rasto."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Modelo paginado"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Modelo para a navegação estruturada."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Modelo de artigo"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "O modelo para a navegação de artigos."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Modelo de Artigo (sem link)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Categorias"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Datas"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Tópicos"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Páginas"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Modelo de página"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "O modelo para página de navegação estruturada."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Modelo de página (sem link)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Modelo de anexo"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Modelo para anexos de navegação estruturada."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Modelo de anexo (sem link)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "Modelo de %s"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "O modelo para navegação de %s."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "Modelo de %s (sem link)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "Página raíz de %s"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Escolha &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "Exibir arquivo de %s"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Modelo de categoria"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "O template para categoria de navegação estruturada."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Modelo de categoria (sem link)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Modelo de tópico"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "O modelo para a navegação dos tópicos."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Modelo de tópico (sem link)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Diversos"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Modelo de autor"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Modelo para o autor da navegação estruturada."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Modelo de autor (sem link)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Formato de visualização do Autor "
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- 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."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Modelo de data"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "O modelo para as datas da navegação estruturada."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Modelo de data (sem link)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Modelo de pesquisa"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Modelo de pesquisa (sem link)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- 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."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404 Título"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "Modelo 404"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "O modelo para 404 navegação estruturada."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Gravar alterações"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Configurações"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "As suas configurações estão desactualizadas."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Migre as configurações agora."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Migre agora."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "A instalação do seu plugin está completa."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Carregue as configurações por omissão agora."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Complete agora."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "As suas configurações são inválidas."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Tente corrigir agora as configurações."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Corrigir agora."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Configurações gravadas com sucesso."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Desfazer as opções salvar."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Desfazer"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Algumas configurações não forma salvas."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "As seguintes configurações não foram salvas:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Por favor inclua esta mensagem no seu %sbug report%s."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Seguir para o %s artigo de suporte da sua versão."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Configurações importadas com sucesso do ficheiro carregado."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Desfazer as opções de importação."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Importando as configurações do ficheiro falhado."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Configurações anuladas com sucesso para os valores por omissão."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Desfazer a anulação de opções."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Configurações da última operação desfeitas com sucesso"
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Desfazer a última operação."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Configurações migradas com sucesso."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Configurações por omissão instaladas com sucesso."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- 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."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Ficheiro de configurações"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Seleccionne um ficheiro de configuração XML para carregar"
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Página %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Resultados da pesquisa por &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Artigos por: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-ru_RU.mo DELETED
Binary file
languages/breadcrumb-navxt-ru_RU.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Russian
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-12-31 02:03:21+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=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Внимание: вы используете устаревшую настройку \"Длина заголовка\" (смотрите раздел Разное - &gt; Устаревшее), пожалуйста %1$suse используйте CSS вместо этого%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "Перейти в руководство по обрезке длины хлебных крошек через CSS"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Хлебные крошки блога"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Показать иерархию (определенную ниже), указывающую на запись в хлебных крошках. "
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Показать иерархию (определенную ниже), указывающую на %s в хлебных крошках."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Устарело"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Ограничение длины заголовка хлебных крошек (устарело, %suse используйте CSS вместо этого%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "$post не тип WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Настройки не изменились, нечего сохранять."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Настройки не были сохранены."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Вложения"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к метке %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к рубрике %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к архиву %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Внимание: настройки индивидуального сайта перезапишут любую настройку, указанную на этой странице."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Внимание: настройки индивидуального сайта могут переопределить любую настройку на этой странице."
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Хлебные крошки для Гугла (RDFa)"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Внимание: ваши сетевые настройки перезапишут любую настройку, указанную на этой странице."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Внимание: ваши сетевые настройки могут переопределить любые настройки, указанные на этой странице."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Внимание: не найден аргумент BCN_SETTINGS_*, будут установлены значения по умолчанию BCN_SETTINGS_FAVOR_NETWORK."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Сетевые настройки"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Добавить \"хлебные крошки\", показывающие посетителям путь до их текущего положения на сайте. Подробнее об установке и настройке плагина вы можете узнать на сайте <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Иерархия, согласно которой будут выведены \"хлебные крошки\". Помните, что при выборе \"Post Parent\" может потребоваться дополнительный плагин, так это не иерархический тип записей."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Результаты поиска для запроса: &#39;<a title=\"Перейти на первую страницу с результатами поиска %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Основные настройки."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Длина заголовка"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Ссылка на главный сайт"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Настройки для всех типов записей (записи, страницы, записи произвольного типа)."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Записи и страницы"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Вывод иерархии"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Иерархия записи"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s вывод иерархии"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Форматы записей"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Максимальная длина:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Записи"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Под-страницы"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Путь будет строиться по выбранной иерархии."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s иерархия"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Настройки таксономий (рубрики, метки и произвольные таксономии)."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Таксономии"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Форматы записей"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Шаблон ссылки на свой формат записей"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Шаблон ссылки на свой формат записей (некликабельная)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Шаблон ссылки на свой формат записей (когда ссылка на свой формат записей некликабельна)."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Настройки архивов по автору, дате, поиску и 404 ошибки."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Архивы по автору"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Статьи от: <a title=\"Перейти на первую страницу с записями %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Ваши настройки для новой версии."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Текст, выводимый перед путем:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Перейти на сайт перевода Breadcrumb NavXT"
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Ваша версия PHP устарела, пожалуйста обновите ее. У вас версия %1$s, Breadcrumb NavXT требует %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "\"Хлебные крошки\" в вашем сайдбаре."
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Заголовок:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Выводить путь как:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Список"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Текст"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Путь в виде ссылок"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Обратная сортировка пути"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Не показывать виджет на главной"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Недостаточно прав для продолжения."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Различные подсказки по работе с плагином."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Ресурсы"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sРуководства и FAQ'и%s: Тут вы найдете несколько руководств, туториалов и FAQ'ов по использованию плагина."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Все записи с тегом 'Breadcrumb NavXT'."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sДокументация онлайн%s: Здесь вы найдете документацию с более подробной технической информацией."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Перейти на сайт с онлайн документацией по плагину Breadcrumb NavXT."
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sСообщить об ошибке%s: Если вы нашли ошибку в работе плагина, то сообщите о ней автору. Не забудьте указать версию WordPress и ситуацию, при которой можно воспроизвести ошибку."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Сообщить об ошибке плагина Breadcrumb NavXT вашей версии."
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Внести свой вклад"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sПожертвования%s: Любите плагин Breadcrumb NavXT и хотите помочь его разработке? Купите автору пиво :)"
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Перейти к сайту PayPal, чтобы сделать пожертвование автору плагина Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sПеревод%s: Ваш язык недоступен? Свяжитесь с John Havlik, если хотите перевести плагин на свой язык."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Основные"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "Для использования плагина вы должны или использовать соответствующий виджет или поместить указанные примеры кода в нужный файл вашего шаблона."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Путь с разделителями"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Путь в формате list"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Быстрый старт"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Следующий CSS-код может быть использован для оформления стиля пути."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Стиль"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Импорт/Экспорт/Сброс"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Импорт"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Экспорт"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Сброс"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Настройки Breadcrumb NavXT"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Разделитель"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Устанавливается между ссылками."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Ссылка на главную"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Поместить ссылку на главную страницу блога в путь."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Шаблон ссылки на главную"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Шаблон ссылки для главной страницы блога."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Шаблон ссылки на главную (некликабельная)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Шаблон ссылки для главной страницы блога (когда ссылка на главную некликабельна)."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Ссылка на блог"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Поместить ссылку на блог в путь."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Шаблон ссылки на блог"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Шаблон ссылки на блог (используется только при статической главной странице)."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Шаблон ссылки на блог (некликабельная)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Шаблон ссылки на блог (используется только при статической главной странице и только, когда ссылка на блог некликабельна)."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Ссылка на главный сайт"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Поместить ссылку на главный сайт в путь (при включенном режиме мультисайта)."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Шаблон ссылки на главный сайт"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта)."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Шаблон ссылки на главный сайт (некликабельная)."
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта и только, когда ссылка на главный сайт некликабельна)."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Текущая позиция"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Показывать текущую позицию в виде ссылки"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Да"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Постраничная навигация"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Включить поддержку постраничной навигации."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "В текущей позиции будет указан номер страницы, если посетитель находится на странице, образованной постраничной навигацией."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Шаблон"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Шаблон для страниц с постраничной навигацией."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Шаблон ссылки на запись"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Шаблон ссылки на запись."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Шаблон ссылки на запись (некликабельная)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Шаблон ссылки на запись (когда ссылка на запись некликабельна)."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Рубрики"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Даты"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Метки"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Страницы"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Шаблон ссылки на страницу"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Шаблон ссылки на страницу."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Шаблон ссылки на страницу (некликабельная)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Шаблон ссылки на страницу (когда ссылка на страницу некликабельна)."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Шаблон ссылки на вложение"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Шаблон ссылки на вложение."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Шаблон ссылки на вложение (некликабельная)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Шаблон ссылки на вложение (когда ссылка на вложение некликабельна)."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s Шаблон"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "Шаблон для %s пути."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s Шаблон (некликабельная)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Шаблон для %s пути (когда %1$s путь некликабелен)."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s Главная страница"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Выбор &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s Архив"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Показывать путь для %s архивов типов записей."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Шаблон ссылки на рубрику"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Шаблон ссылки на рубрику."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Шаблон ссылки на рубрику (некликабельная)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "Шаблон ссылки на рубрику (когда ссылка на рубрику некликабельна)."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Шаблон ссылки на метку"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Шаблон ссылки на метку."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Шаблон ссылки на метку (некликабельная)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Шаблон ссылки на метку (когда ссылка на метку некликабельна)."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Другое"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Шаблон ссылки на автора"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Шаблон ссылки на автора."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Шаблон ссылки на автора (некликабельная)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Шаблон ссылки на автора (когда ссылка на автора некликабельна)."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Формат имени автора"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name отображает имя автора так, как указано у него в профиле в опции \"Отображать как\"."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Шаблон ссылки на архив по дате"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Шаблон ссылки на архив по дате."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Шаблон ссылки на архив по дате (некликабельная)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Шаблон ссылки на архив по дате (когда ссылка на архив по дате некликабельна)."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Шаблон ссылки на страницу с результатами поиска"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Шаблон ссылки на страницу с результатами поиска (используется только, когда страница с результатами поиска разделена постраничной навигацией)."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Шаблон ссылки на страницу с результатами поиска (некликабельная)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Шаблон ссылки на страницу с результатами поиска (когда страница с результатами поиска разделена постраничной навигацией и когда ссылка на страницу с результатами поиска некликабельна)."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "Страница 404 (не найдено)"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "Шаблон текста для 404 страницы"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "Шаблон текста в пути для 404 страницы."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Сохранить изменения"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Настройки"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Ваши настройки устарели."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Обновить настройки сейчас."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Обновить сейчас."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "Установка плагина некорректна."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Загрузить дефолтные настройки."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Сделать сейчас."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Настройки плагина испорчены."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Попытаться исправить настройки сейчас."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Исправить сейчас."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Настройки удачно сохранены."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Отменить сохранение настроек."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Отменить"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Некоторые настройки не были сохранены."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Следующие настройки не были сохранены:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Пожалуйста, добавьте текст в ваше %sсообщение об ошибке%s."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Перейти на %s страницу поддержки для вашей версии плагина."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Настройки удачно импортированы из загруженного файла."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Отменить импорт настроек."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Импортируемые настройки испорчены."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Настройки удачно сброшены на дефолтные значения."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Отменить сброс настроек."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Последняя операция была удачно отменена."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Отменить отмену последней операции."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Настройки удачно обновлены."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Дефолтные настройки были удачно установлены."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Импорт настроек из XML-файла, экспорт настроек в XML-файл, или сброс настроек на дефолтные значения."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Файл настроек"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Выберите XML-файл настроек для загрузки и импорта."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Страница %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404. Страница не найдена"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Результаты поиска для запроса: &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Записи от: '%htitle%'"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-sv_SE.mo DELETED
Binary file
languages/breadcrumb-navxt-sv_SE.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Swedish
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-12-31 07:58:59+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr ""
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr ""
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr ""
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr ""
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr ""
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Borttagen"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr ""
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr ""
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Inställningarna ändrades inte, inget att spara."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Inställningarna sparades inte."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Bilagor"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr ""
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr ""
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr ""
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr ""
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr ""
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr ""
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr ""
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå till %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Varning: Din nätvärks inställning över skriver inställningar på denna sida."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Varning: Din nätvärks inställning kan skiva över inställningar på denna sida."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr ""
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT Nätverksinställningar"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Lägger till en sökväg navigering visar besökarens väg till sin nuvarande plats. För information om hur du använder detta plugin besök <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Hierarkin som länkstigen visar. Observera att \"Post Parent\" alternativet kan kräva ytterligare plugin för att bete sig som förväntat eftersom detta är en icke-hierarkisk posttyp."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Sök resultat för &#39;<a title=\"Gå till första sidan för sökresultat av %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "En samling inställningar som mest sannolikt ändras finns under denna flik."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Titel längd"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Huvudsidans brödspår"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Inställningarna för alla post typer (Inlägg, Sidor och egna post typer) finns under denna tabb."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Post Typer"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Post hierarki visning"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Post hierarki"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Hierarki visning"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Post Format"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Max Titel längd"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Inlägg"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Inläggs förälder"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Hierarkin som länkstigen visar."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Hierarki"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Inställningarna för alla taxonomier (inklusive Kategorier, taggar och anpassade taxonomier) är placerade under den här fliken."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Taxonomier"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Inläggs formats mall"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Mallen för post format länkstig."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Post formats mall (olänkad)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Mallen för post_format länkstigen som används endast när länkstigen inte är länkad."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Inställningarna för författare och datum arkiv, sökningar och 404 sidor finns under denna flik."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Författar arkiv"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Artiklar av: <a title=\"Gå till första sidan för %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Dina inställningar är för en nyare version."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Text som ska visas innan spåret:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Gå till \"Breadcrumb NavXT\" översättnings projekt."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "Din PHP version är för gammal, vänligen uppdatera till en nyare version. Din version är %1$s, Breadcrumb NavXT kräver %2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Lägger till breadcrumb till din sidebar"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Titel:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Skriv ut breadcrumb som:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Lista"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Simpel"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Länka Breadcrumb"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Omvänd ordning i breadcrumb"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Göm spåret på förstasidan"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Otillräcklig privilegier för att fortsätta."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Tips för inställningarna finns under varje val."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Resurser"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sTutorials och guider%s: Det finns flera guider och tutorials tillgängliga på skaparens hemsida."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Gå till Breadcrumb NavXT tagg arkiv"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sOnline dokumentation%s: Kolla dokumentationen för mer teknisk information."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Gå till Breadcrumb NavXT online dokumentation"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%SRapportera en bug%s: Om du tror att du hittat en bug, var vänlig och inkludera WordPress version och detaljer hur man återskapar buggen"
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Gå till Breadcrumb NavXT support och skicka din version."
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "Ge tillbaka"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonera%s: Gillar du Breadcrumb NavXT och vill hjälpa utvecklingen? Överväg att köpa skaparen en öl. "
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Gå till PayPal för att donera till Breadcrumb NavXT."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sÖversätt%s: Finns inte ditt språk? Kontakta John Havlik om översättning."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Allmänt"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "För inställningarna på den här sidan att börja gälla måste du antingen använda den medföljande Breadcrumb NavXT widget, eller placera koden snutten nedan i ditt tema."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Breadcrumb spår med separator"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Breadcrumb spår i list form"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Snabbstart"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Vid användning av koden från \"Snabb start\" sektionen ovan, följande CSS kan användas som bas för att styla ditt breadcrumb spår."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Styling"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "Importera/Exportera/Återställ"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "Importera"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Exportera"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Återställ"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT Inställningar"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Breadcrumb separator"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Placeras i mellan varje breadcrumb."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Hem Breadcrumb"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Placera hem breadcrumb i spåret."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Hem mall"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Mallen för hem breadcrumb."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Hem mall (olänkad)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Mallen för hem breadcrumb, används när breadcrumb inte är länkat."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Blogg breadcrumb"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Placera blogg breadcrumb i spåret."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Blogg mall"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Blogg mall (olänkad)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida och när den inte är länkad."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Huvudsidans Breadcrumb"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Huvudsidans hem mall"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Huvudsidans hem mall (olänkad) "
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite och inte länkad."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Nuvarande punkt"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Länk Nuvarande punkt"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Ja"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Flersidig breadcrumb"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Flersidig mall"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Mallen för fler sido breadcrumbs."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Inläggs mall"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Mallen för inlägg breadcrumb."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Inläggs mall (olänkad)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Mallen för inläggs breadcrumbs, använd endast då den inte är länkad."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Kategorier"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Datum"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Taggar"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Sidor"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Sidmall"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Mallen för sido breadcrumbs."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Sidmall (olänkad)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Mallen för sido breadcrumbs, endast då den inte är länkad."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "bilags mall"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Mallen för attachments breadcrumbs."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Bilags mall (olänkad)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Mallen för attachments breadcrumbs, endast då den inte är länkad."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s mall"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "Mallen för %s breadcrumbs."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s mall (olänkad)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Mallen för %s breadcrumb, används endast när den inte är länkad."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s rotsida"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Välj &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s arkiv visning"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Visa breadcrumb för %s post typs arkiv i breadcrumb spåret."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Kategori mall"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Mallen för kategori breadcrumbs"
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Kategori mall (olänkad)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "Mallen för kategori breadcrumb, används endast då den inte är länkad."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Tagg mall"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Mallen för tagg breadcrumbs."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Tagg mall (olänkad)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Mallen för tagg breadcrumb, används endast när den inte är länkad."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Diverse"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Författar mall"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Mallen för kategori breadcrumbs"
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Författar mall (olänkad)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Mallen för författar breadcrumb, används endast när den inte är länkad."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Författar visnings format"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Datum mall"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Mallen för datum breadcrumbs."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Datum mall (olänkad)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Mallen för datum breadcrumb, används endast när den inte är länkad."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Sök mall"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Sök mall (olänkad)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Mallen för sök breadcrumb, används endast när sökresultaten täcker flera sidor och den inte är länkad."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404 Titel"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "404 Mall"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "Mallen för 404 breadcrumbs."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Spara ändringar"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Inställningar"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Dina inställningar är föråldrade."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Migrera inställningarna nu."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Migrera nu."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "Installationen är inte klar."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Ladda default inställningarna nu."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Färdigställ nu."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Dina inställningar är ogiltiga."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Försök fixa inställningarna nu."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Fixa nu."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Inställningarna sparade."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Ångra sparade inställningar."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Ångra"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Vissa inställningar sparades inte."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Följande inställningar sparades inte:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Var vänlig och inkludera detta meddelande i din %sbug rapport%s."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Gå till %s support och skicka din version."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Inställningarna importerades framgångsrikt från filen."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Ångra inställnings importeringen."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Importering av inställningar från fil misslyckades."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Inställningarna återställdes till standardvärdena."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Ångra inställnings återställningen."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Ångra senaste operationen."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Inställningarna har migrerats."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Default inställningarna sparade."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Inställnings fil"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Sid %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Sök resultat för &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Inlägg av: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-tr_TR.mo DELETED
Binary file
languages/breadcrumb-navxt-tr_TR.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Turkish
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-12-31 04:06:16+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
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "Uyarı: Kullanımı önerilmeyen bir ayar \"Başlık Uzunluğu\" kullanıyorsunuz (Çeşitli &gt; Kullanım dışı sayfasına bakın), lütfen %1$syerine CSS kullanın%2$s."
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "CSS ile breadcrumb başlık uzunluklarını kırpma üzerindeki kılavuza gidin."
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "Breadcrumb Blog"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "Breadcrumb kuyruğunda bir yazıya öncülük eden hiyerarşiyi göster (altta belirtilen)."
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "Breadcrumb kuyruğunda bir %s öncülük eden hiyerarşiyi göster (altta belirtilen)."
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "Kullanım dışı"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "Breadcrumb başlık uzunluğunu sınırla. (Kullanım dışı, %syerine CSS kullan%s)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "$post global, WP_Post türü değil"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "Ayarlar değişmedi, kaydedilecek bir şey yok."
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "Ayarlar kaydedilemedi."
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "Ekler"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Buraya git: %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"%title% etiket arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"%title% kategori arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"%title% arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "Uyarı: Kişisel site ayarları, bu sayfada uygulanmış olan ayarları geçersiz kılar."
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "Uyarı: Kişisel site ayarları, bu sayfada uygulanmış olan ayarları geçersiz kılabilir. "
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) Breadcrumbs"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Buraya git: %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "Uyarı: Ağ ayarlarınız, bu sayfada uygulanmış olan ayarları geçersiz kılar."
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "Uyarı: Ağ ayarlarınız, bu sayfada uygulanmış olan ayarları geçersiz kılabilir."
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "Uyarı: Herhangi bir BCN_SETTINGS_* define ifadesi bulunamadı. Varsayılan olarak BCN_SETTINGS_FAVOR_NETWORK ayarlanıyor."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "Breadcrumb NavXT Ağ Ayarları"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "Breadcrumb NavXT"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "Ziyaretçinin mevcut konumundaki yolunu gösteren bir breadcrumb navigasyonu ekler. Bu eklentinin nasıl kullanılacağı hakkında ayrıntılı bilgi için <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> sayfasını ziyaret edin."
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi. Bu hiyerarşik olmayan bir yazı tipi olduğundan dolayı beklenileni sağlaması için \"Post Parent\" seçeneğinin ilave bir eklenti gerektirebileceğini unutmayın."
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "Arama sonuçları: &#39;<a title=\"Arama sonuçlarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "Değiştirilmesi muhtemel ayarların bir bölümü bu sekme altında yer almaktadır."
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "Başlık Uzunluğu"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "Anasite Breadcrumb"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "Tüm yazı tipleri (Yazılar, Sayfalar ve Özel Yazı Türleri) için ayarlar bu sekme altında yer almaktadır."
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "Yazı Tipleri"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "Yazı Hiyerarşi Görünümü"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "Yazı Hiyerarşisi"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s Hiyerarşisi Görünümü"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "Yazı Biçimleri"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "Maksimum Başlık Uzunluğu: "
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "Yazılar"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "Yazı Ebeveyni"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi."
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s Hiyerarşisi"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "Tüm sınıflandırmalar için (Kategoriler, Etiketler, ve özel sınıflandırmalar dahil) ayarlar bu sekme altında yer almaktadır."
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "Sınıflandırmalar"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "Yazı Biçim Şablonu"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "Yazı biçimi breadcrumbs için şablon."
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "Yazı Biçim Şablonu (Bağlantısız)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan post_format breadcrumbs şablonu."
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "Yazar ve tarih arşivleri, arama ve 404 sayfaları için ayarlar bu sekme altında yer almaktadır."
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "Yazar Arşivleri"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "Yazar: <a title=\"Yazılarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "Ayarlarınız daha yeni bir sürümü için."
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "Kuyruktan önce gösterilecek metin"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "Breadcrumb NavXT çeviri projesine gidin."
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "PHP sürümünüz çok eski, lütfen yeni bir sürüme güncelleyin. Sürümünüz %1$s, Breadcrumb NavXT için %2$s sürümü gerekir"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "Kenar çubuğunuza bir breadcrumb kuyruğu ekler"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "Başlık:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "Kuyruk çıktısı olarak:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "Liste"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "Düz"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "Breadcrumbs bağlantısı"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "Kuyruk sırasını tersine çevir"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "Ön sayfada kuyruğu gizle"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "Devam etmek için yetersiz yetki."
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "Ayarlar için ipuçları seçeneklerin altında yer almaktadır."
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "Kaynaklar"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%sEğitim ve İpuçları%s: Yazarın web sitesinde çeşitli kılavuzlar, eğitim ve ipuçlarını bulabilirsiniz."
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "Breadcrumb NavXT etiket arşivine gidin."
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%sÇevrimiçi Belgeler%s: Daha detaylı teknik bilgiler için belgelere göz atın."
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "Breadcrumb NavXT çevrimiçi belgelere gidin"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%sBir Hata Bildir%s: Eğer bir hata bulduğunuzu düşünüyorsanız, WordPress sürümünüz ve hatanın yeniden nasıl oluşturulacağına ilişkin ayrıntıları ekleyin."
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "Sürümünüz için Breadcrumb NavXT destek yazısına gidin."
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "İade"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sBağış%s: Breadcrumb NavXT sevdiniz ve geliştirilmesine yardımcı mı olmak istiyor sunuz? Yazara bir bira satın almayı düşünün."
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "Breadcrumb NavXT'ye bir bağış yapmak için PayPal'a gidin."
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTercüme et%s: Dilinizi mevcut değil mi? Çevirisi için John Havlik ile iletişime geçin."
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "Genel"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "Bu sayfadaki ayarların etkili olabilmesi için, Breadcrumb NavXT bileşenini kullanmanız veya temanıza aşağıdaki kod bölümlerinden yerleştirmeniz gerekir."
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "Ayırıcılar ile Breadcrumb kuyruğu"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "Liste biçiminde Breadcrumb kuyruğu"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "Hızlı Başlangıç"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "Yukarıda Hızlı Başlat bölümündeki kodu kullanarak, alttaki CSS breadcumb kuyruğunu şekillendirmeye temel olarak kullanılabilirsiniz."
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "Şekillendirme"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "İçe aktar/Dışa aktar/Sıfırla"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "İçe aktar"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "Dışa aktar"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "Sıfırla"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "Breadcrumb NavXT Ayarları"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "Breadcrumb Ayırıcı"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "Her breadcrumb arasına yerleştirilir."
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "Anasayfa Breadcrumb"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "Breadcrumb kuyruğuna anasayfa yerleştirin."
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "Anasayfa Şablonu"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "Anasayfa breadcrumb için şablon."
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "Anasayfa Şablonu (Bağlantısız)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "Breadcrumb için bağlantı olmadığında kullanılan breadcrumb anasayfa şablonu."
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "Blog Breadcrumb"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "Breadcrumb kuyruğuna blog yerleştirin."
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "Blog Şablonu"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "Sadece, statik ön sayfa ortamında kullanılan blog breadcrumb şablonu."
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "Blog Şablonu (Bağlantısız)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "Statik ön sayfa ortamında ve breadcrumb için bağlantı olmadığında kullanılan blog breadcrumb şablonu."
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "Ana Site Breadcrumb"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "Çoklu site kurulumlarında ana site anasayfa breadcrumb bağlantısını kuyruğa yerleştirir."
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "Ana Site Anasayfa Şablonu"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "Çoklu site ortamında kullanılan breadcrumb ana site anasayfa şablonu."
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "Ana Site Anasayfa Şablonu (Bağlantısız)"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "Sadece, çoklu site ortamlarında ve breadcrumb için bağlantı olmadığında kullanılan ana site anasayfa breadcrumb şablonu."
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "Mevcut Öğe"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "Mevcut Öğeye Bağlantı"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "Evet"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "Sayfalanmış Breadcrumb"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "Breadcrumb kuyruğuna sayfalı breadcrumb ekleyin."
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "Kullanıcının ilk önce sayfalanmış yazı/sayfa yerine bir sayfada olduğunu belirtir."
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "Sayfalanmış Şablon"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "Sayfalanmış breadcrumbs için şablon."
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "Yazı Şablonu"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "Yazı breadcrumbs için şablon."
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "Yazı Şablonu (Bağlantısız)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazı breadcrumbs şablonu."
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "Kategoriler"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "Tarihler"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "Etiketler"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "Sayfalar"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "Sayfa Şablonu"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "Sayfa breadcrumbs için şablon."
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "Sayfa Şablonu (Bağlantısız)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan sayfa breadcrumbs şablonu."
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "Ek Şablonu"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "Ek breadcrumbs için şablon."
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "Ek Şablonu (Bağlantısız)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan ek breadcrumbs şablonu."
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s Şablonu"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "%s breadcrumbs için şablon."
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s Şablonu (Bağlantısız)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan %s breadcrumbs şablonu."
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s Kök Sayfası"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash; Seç &mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s Arşiv Görünümü"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "Breadcrumb kuyruğunda %s yazı tipi arşivleri için breadcrumb göster."
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "Kategori Şablonu"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "Kategori breadcrumbs için şablon."
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "Kategori Şablonu (Bağlantısız)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan kategori breadcrumbs şablonu."
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "Etiket Şablonu"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "Etiket breadcrumbs için şablon."
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "Etiket Şablonu (Bağlantısız)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan etiket breadcrumbs şablonu."
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "Çeşitli"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "Yazar Şablonu"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "Yazar breadcrumbs için şablon."
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "Yazar Şablonu (Bağlantısız)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazar breadcrumbs şablonu."
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "Yazar Gösterim Formatı"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "display_name kullanıcı profili altında diğer kullanıcıların profilindeki seçeneklere karşılık gelen \"Herkes tarafından görülecek ad\" içinde belirtilen adı kullanır."
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "Tarih Şablonu"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "Tarih breadcrumbs için şablon."
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "Tarih Şablonu (Bağlantısız)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan tarih breadcrumbs şablonu."
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "Arama Şablonu"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında kullanılan arama breadcrumbs için bağlantı şablonu."
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "Arama Şablonu (Bağlantısız)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında ve breadcrumb için bağlantı olmadığında kullanılan arama breadcrumbs için bağlantı şablonu."
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404 Başlığı"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "404 Şablonu"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "404 breadcrumbs için şablon."
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "Değişiklikleri Kaydet"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "Ayarlar"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "Ayarlarınız güncel değil."
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "Şimdi ayarları taşıyın."
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "Şimdi taşıyın."
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "Eklenti kurulumunuz tamamlanmadı."
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "Şimdi varsayılan ayarları yükle."
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "Şimdi tamamla."
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "Eklenti ayarlarınız geçersiz."
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "Şimdi ayarları düzeltmeyi deneyin."
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "Şimdi düzelt."
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "Ayarlar başarıyla kaydedildi."
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "Seçenekleri kaydetmeyi geri al."
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "Geri al"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "Bazı ayarlar kaydedilmedi."
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "Aşağıdaki ayarları kaydedilmedi:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "Lütfen bu mesajı %sbug report%s içine dahil edin."
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "Sürümünüz için %s destek yazısına gidin."
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "Ayarlar yüklenen dosyadan başarıyla içe aktarıldı."
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "Seçenekleri içe aktarmayı geri al."
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "Ayarları dosyadan içe aktarma başarısız oldu."
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "Ayarlar varsayılan değerlere başarıyla sıfırlandı."
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "Seçenekleri sıfırlamayı geri al."
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "Ayarlar son işleme başarıyla getirildi."
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "Son geri alma işlemini geri al."
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "Ayarlar başarıyla taşındı."
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "Varsayılan ayarlar başarıyla yüklendi."
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "Ayarları bir XML dosyasından içe aktar, mevcut ayarları bir XML dosyasına aktar veya varsayılan ayarlara sıfırla."
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "Ayarlar Dosyası"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "Ayarları yüklemek ve içe aktarmak için bir XML ayarlar dosyası seçin."
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "Sayfa %htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "Arama sonuçları: &#39;%htitle%&#39;"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "Yazar: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-zh_CN.mo DELETED
Binary file
languages/breadcrumb-navxt-zh_CN.po DELETED
@@ -1,841 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Chinese (China)
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2014-12-31 07:05:40+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=1; plural=0;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
14
- msgid "Warning: Your are using a deprecated setting \"Title Length\" (see Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
15
- msgstr "警告:你正在使用一个已启用的设置\"标题长度\"(参见其他&gt;已启用),%1$suse,CSS instead%2$s 实现。"
16
-
17
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
18
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
19
- msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
20
- msgstr "进入用CSS修正标题长度的指南"
21
-
22
- #: class.bcn_admin.php:417
23
- msgid "Blog Breadcrumb "
24
- msgstr "博客导航"
25
-
26
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
27
- msgid "Show the hierarchy (specified below) leading to a post in the breadcrumb trail."
28
- msgstr "显示文章的层次结构(在下面定义)"
29
-
30
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
31
- msgid "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
32
- msgstr "显示 %s的层次结构(在下面定义)"
33
-
34
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
35
- msgid "Deprecated"
36
- msgstr "已启用"
37
-
38
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
39
- msgid "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
40
- msgstr "限制面包屑导航的标题长度 (已启用,%suse,CSS instead%s 实现)"
41
-
42
- #: class.bcn_breadcrumb_trail.php:379
43
- msgid "$post global is not of type WP_Post"
44
- msgstr "全局 $post 变量不是WP_Post"
45
-
46
- #: includes/class.mtekk_adminkit.php:507
47
- msgid "Settings did not change, nothing to save."
48
- msgstr "设置没有改变,不需要保存。"
49
-
50
- #: includes/class.mtekk_adminkit.php:511
51
- msgid "Settings were not saved."
52
- msgstr "设置未保存"
53
-
54
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
55
- msgid "Attachments"
56
- msgstr "附件"
57
-
58
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
59
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
60
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
61
- #: class.bcn_breadcrumb_trail.php:96
62
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
63
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
64
-
65
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
66
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
67
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title% 标签存档.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
68
-
69
- #: class.bcn_breadcrumb_trail.php:128
70
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
71
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title% 分类存档\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
72
-
73
- #: class.bcn_breadcrumb_trail.php:132
74
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
75
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title% 存档\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
76
-
77
- #: class.bcn_network_admin.php:403
78
- msgid "Warning: Individual site settings will override any settings set in this page."
79
- msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
80
-
81
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
82
- msgid "Warning: Individual site settings may override any settings set in this page."
83
- msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
84
-
85
- #: class.bcn_widget.php:105
86
- msgid "Google (RDFa) Breadcrumbs"
87
- msgstr "Google (RDFa) 面包屑"
88
-
89
- #: breadcrumb-navxt.php:256
90
- msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
91
- msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title%.\" href=\"%link%\">%htitle%</a></span>"
92
-
93
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
94
- msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
95
- msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
96
-
97
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
98
- msgid "Warning: Your network settings will override any settings set in this page."
99
- msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
100
-
101
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
102
- msgid "Warning: Your network settings may override any settings set in this page."
103
- msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
104
-
105
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
106
- msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
107
- msgstr "警告:没有找到 BCN_SETTINGS_* 声明, 使用BCN_SETTINGS_FAVOR_NETWORK的默认值."
108
-
109
- #: class.bcn_network_admin.php:449
110
- msgid "Breadcrumb NavXT Network Settings"
111
- msgstr "面包屑网络设置"
112
-
113
- msgid "Breadcrumb NavXT"
114
- msgstr "面包屑导航"
115
-
116
- msgid "http://mtekk.us/code/breadcrumb-navxt/"
117
- msgstr "http://mtekk.us/code/breadcrumb-navxt/"
118
-
119
- msgid "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>."
120
- msgstr "添加一个面包屑导航以显示用户当前访问路径,关于插件的详情信息,请访问<a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>。"
121
-
122
- msgid "John Havlik"
123
- msgstr "John Havlik"
124
-
125
- msgid "http://mtekk.us/"
126
- msgstr "http://mtekk.us/"
127
-
128
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
129
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
130
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
131
- msgstr "面包屑导航显示的层次。需要注意的是\"父级文章\" 选项,可能需要额外的插件才能像预期的那样显示,因为文章是一个没有分层的文章类型。"
132
-
133
- #: class.bcn_breadcrumb_trail.php:106
134
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
135
- msgstr "搜索&#39;%htitle%&#39;的结果<a title=\"转到%title%结果的首页\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
136
-
137
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
138
- msgid "A collection of settings most likely to be modified are located under this tab."
139
- msgstr "最有可能设置的选项都集合这个选项卡下面。"
140
-
141
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
142
- msgid "Title Length"
143
- msgstr "标题长度"
144
-
145
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
146
- msgid "Mainsite Breadcrumb"
147
- msgstr "主站面包屑"
148
-
149
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
150
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
151
- msgstr "所有文章类型的设置(文章,页面和自定义文章类型)都在这里设置。"
152
-
153
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
154
- msgid "Post Types"
155
- msgstr "文章类型"
156
-
157
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
158
- msgid "Post Hierarchy Display"
159
- msgstr "显示文章层次"
160
-
161
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
162
- msgid "Post Hierarchy"
163
- msgstr "文章层次"
164
-
165
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
166
- msgid "%s Hierarchy Display"
167
- msgstr "%s分层显示"
168
-
169
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
170
- msgid "Post Formats"
171
- msgstr "文章格式"
172
-
173
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
174
- msgid "Max Title Length: "
175
- msgstr "最大标题长度:"
176
-
177
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
178
- msgid "Posts"
179
- msgstr "文章"
180
-
181
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
182
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
183
- msgid "Post Parent"
184
- msgstr "文章所属分类"
185
-
186
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
187
- msgid "The hierarchy which the breadcrumb trail will show."
188
- msgstr "面包屑显示的层次"
189
-
190
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
191
- msgid "%s Hierarchy"
192
- msgstr "%s分级"
193
-
194
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
195
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
196
- msgstr "所有分类法(包括分类,标签,和自定义分类法)的设置都在这个选项卡下面。"
197
-
198
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
199
- msgid "Taxonomies"
200
- msgstr "分类法"
201
-
202
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
203
- msgid "Post Format Template"
204
- msgstr "文章格式模版"
205
-
206
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
207
- msgid "The template for post format breadcrumbs."
208
- msgstr "文章格式面包屑模版"
209
-
210
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
211
- msgid "Post Format Template (Unlinked)"
212
- msgstr "文章格式模版(没有链接)"
213
-
214
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
215
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
216
- msgstr "文章格式面包屑模版,只在面包屑没有链接时使用。"
217
-
218
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
219
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
220
- msgstr "作者和日期存档,搜索结果,404页面的设置在这个选项卡下面。"
221
-
222
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
223
- msgid "Author Archives"
224
- msgstr "作者存档"
225
-
226
- #: class.bcn_breadcrumb_trail.php:121
227
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
228
- msgstr "存档类型:<a title=\"转到%title%文章存档首页\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
229
-
230
- #: includes/class.mtekk_adminkit.php:304
231
- msgid "Your settings are for a newer version."
232
- msgstr "你的设置是新版本的"
233
-
234
- #: class.bcn_widget.php:98
235
- msgid "Text to show before the trail:"
236
- msgstr "导航前面的文本:"
237
-
238
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
239
- msgid "Go to the Breadcrumb NavXT translation project."
240
- msgstr "转到面包屑NavXT翻译项目。"
241
-
242
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
243
- #: class.bcn_network_admin.php:25
244
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
245
- msgstr "你的PHP版本太旧了,请升级,您的版本为:%1$s,面包屑导航需要的版本为%2$s"
246
-
247
- #: class.bcn_widget.php:32
248
- msgid "Adds a breadcrumb trail to your sidebar"
249
- msgstr "添加一个面包屑导航到侧边栏"
250
-
251
- #: class.bcn_widget.php:94
252
- msgid "Title:"
253
- msgstr "标题:"
254
-
255
- #: class.bcn_widget.php:102
256
- msgid "Output trail as:"
257
- msgstr "像这样输出面包屑:"
258
-
259
- #: class.bcn_widget.php:104
260
- msgid "List"
261
- msgstr "列表"
262
-
263
- #: class.bcn_widget.php:106
264
- msgid "Plain"
265
- msgstr "纯文本"
266
-
267
- #: class.bcn_widget.php:111
268
- msgid "Link the breadcrumbs"
269
- msgstr "链接到面包屑"
270
-
271
- #: class.bcn_widget.php:113
272
- msgid "Reverse the order of the trail"
273
- msgstr "反转面包屑导航的顺序"
274
-
275
- #: class.bcn_widget.php:115
276
- msgid "Hide the trail on the front page"
277
- msgstr "在首页隐藏面包屑"
278
-
279
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
280
- msgid "Insufficient privileges to proceed."
281
- msgstr "足够的权限来执行"
282
-
283
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
284
- msgid "Tips for the settings are located below select options."
285
- msgstr "设置小提示在选项下面"
286
-
287
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
288
- msgid "Resources"
289
- msgstr "资源"
290
-
291
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
292
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
293
- msgstr "%s向导和指南%s:你可以在作者网站上找到几个指南,向导,和使用方法。"
294
-
295
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
296
- msgid "Go to the Breadcrumb NavXT tag archive."
297
- msgstr "转到面包屑导航标签存档"
298
-
299
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
300
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
301
- msgstr "%s在线手册%s:查看文章以获取更深入的技术信息。"
302
-
303
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
304
- msgid "Go to the Breadcrumb NavXT online documentation"
305
- msgstr "转到Breadcrumb NavXT在线文档"
306
-
307
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
308
- 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."
309
- msgstr "%s报告bugs%s:如果你认为你发现了一个bug,请在报告bug时包括你使用的WordPress版本和如何重现的bug的详细描述。"
310
-
311
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
312
- msgid "Go to the Breadcrumb NavXT support post for your version."
313
- msgstr "转到你所用版本的Breadcrumb NavXT支持文章。"
314
-
315
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
316
- msgid "Giving Back"
317
- msgstr "回馈"
318
-
319
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
320
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
321
- msgstr "%sDonate%s:喜欢Breadcrumb NavXT,并且想帮助开发?考虑请作者喝杯啤酒吧。"
322
-
323
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
324
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
325
- msgstr "转到PayPal捐助Breadcrumb NavXT。"
326
-
327
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
328
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
329
- msgstr "%sTranslate%s:没有你使用的语言?联系John Havlik获取翻译。"
330
-
331
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
332
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
333
- #: class.bcn_network_admin.php:462
334
- msgid "General"
335
- msgstr "通用"
336
-
337
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
338
- 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."
339
- msgstr "要使此页面上的设置生效,你必须包含下面的代码到你的主题中,或使用Breadcrumb NavXT小工具。"
340
-
341
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
342
- msgid "Breadcrumb trail with separators"
343
- msgstr "带分隔符的面包屑导航"
344
-
345
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
346
- msgid "Breadcrumb trail in list form"
347
- msgstr "列表形式的面包屑导航"
348
-
349
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
350
- msgid "Quick Start"
351
- msgstr "快速开始"
352
-
353
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
354
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
355
- msgstr "使用上述快速启动部分的代码,下面的CSS可以作为面包屑导航样式的基础代码。"
356
-
357
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
358
- msgid "Styling"
359
- msgstr "样式"
360
-
361
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
362
- msgid "Import/Export/Reset"
363
- msgstr "导入/导出/重置"
364
-
365
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
366
- #: includes/class.mtekk_adminkit.php:808
367
- msgid "Import"
368
- msgstr "导入"
369
-
370
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
371
- #: includes/class.mtekk_adminkit.php:809
372
- msgid "Export"
373
- msgstr "导出"
374
-
375
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
376
- #: includes/class.mtekk_adminkit.php:810
377
- msgid "Reset"
378
- msgstr "重置"
379
-
380
- #: class.bcn_admin.php:379
381
- msgid "Breadcrumb NavXT Settings"
382
- msgstr "面包屑导航设置"
383
-
384
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
385
- msgid "Breadcrumb Separator"
386
- msgstr "面包屑分隔符"
387
-
388
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
389
- msgid "Placed in between each breadcrumb."
390
- msgstr "两个面包屑之间的分隔符"
391
-
392
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
393
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
394
- msgid "Home Breadcrumb"
395
- msgstr "首页面包屑"
396
-
397
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
398
- msgid "Place the home breadcrumb in the trail."
399
- msgstr "把首页放到导航里"
400
-
401
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
402
- msgid "Home Template"
403
- msgstr "首页模版"
404
-
405
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
406
- msgid "The template for the home breadcrumb."
407
- msgstr "首页面包屑的模版"
408
-
409
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
410
- msgid "Home Template (Unlinked)"
411
- msgstr "首页模版(没有链接)"
412
-
413
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
414
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
415
- msgstr "首页面包屑模版,当面包屑没有链接时使用。"
416
-
417
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
418
- #: class.bcn_network_admin.php:490
419
- msgid "Blog Breadcrumb"
420
- msgstr "博客面包屑"
421
-
422
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
423
- msgid "Place the blog breadcrumb in the trail."
424
- msgstr "把博客面包屑放到导航里。"
425
-
426
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
427
- msgid "Blog Template"
428
- msgstr "博客模版"
429
-
430
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
431
- msgid "The template for the blog breadcrumb, used only in static front page environments."
432
- msgstr "博客面包屑模版,只在网站设置静态页面为首页时使用。"
433
-
434
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
435
- msgid "Blog Template (Unlinked)"
436
- msgstr "博客模版(没有链接)"
437
-
438
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
439
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
440
- msgstr "博客面包屑模版,只在网站设置静态页面为首页,且面包屑没有链接时使用。"
441
-
442
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
443
- msgid "Main Site Breadcrumb"
444
- msgstr "主站面包屑"
445
-
446
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
447
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
448
- msgstr "在多站点环境下,把主站首页面包屑放到导航里。"
449
-
450
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
451
- msgid "Main Site Home Template"
452
- msgstr "主站首页模版"
453
-
454
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
455
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
456
- msgstr "主站首页面包屑导航,只在多站点环境下使用。"
457
-
458
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
459
- msgid "Main Site Home Template (Unlinked)"
460
- msgstr "主站首页模版"
461
-
462
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
463
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
464
- msgstr "主站首页面包屑,只在多站点环境,且面包屑没有链接时使用。"
465
-
466
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
467
- msgid "Current Item"
468
- msgstr "当前页"
469
-
470
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
471
- msgid "Link Current Item"
472
- msgstr "显示当前页面的链接"
473
-
474
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
475
- msgid "Yes"
476
- msgstr "是"
477
-
478
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
479
- msgid "Paged Breadcrumb"
480
- msgstr "分页面包屑"
481
-
482
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
483
- msgid "Include the paged breadcrumb in the breadcrumb trail."
484
- msgstr "包含分页面包屑在导航中"
485
-
486
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
487
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
488
- msgstr "指明用户在在分页文章或页面的某个分页而不是首页上"
489
-
490
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
491
- msgid "Paged Template"
492
- msgstr "分页模版"
493
-
494
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
495
- msgid "The template for paged breadcrumbs."
496
- msgstr "分页面包屑的模版"
497
-
498
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
499
- msgid "Post Template"
500
- msgstr "文章模版"
501
-
502
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
503
- msgid "The template for post breadcrumbs."
504
- msgstr "文章面包屑模版"
505
-
506
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
507
- msgid "Post Template (Unlinked)"
508
- msgstr "文章模版(没有链接)"
509
-
510
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
511
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
512
- msgstr "文章面包屑模版,只在面包屑没有链接时使用。"
513
-
514
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
515
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
516
- msgid "Categories"
517
- msgstr "分类"
518
-
519
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
520
- msgid "Dates"
521
- msgstr "日期"
522
-
523
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
524
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
525
- msgid "Tags"
526
- msgstr "标签"
527
-
528
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
529
- msgid "Pages"
530
- msgstr "页面"
531
-
532
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
533
- msgid "Page Template"
534
- msgstr "页面模版"
535
-
536
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
537
- msgid "The template for page breadcrumbs."
538
- msgstr "页面面包屑模版"
539
-
540
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
541
- msgid "Page Template (Unlinked)"
542
- msgstr "页面模版(没有链接)"
543
-
544
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
545
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
546
- msgstr "页面面包屑模版,只在面包屑没有链接时使用。"
547
-
548
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
549
- msgid "Attachment Template"
550
- msgstr "附件模版"
551
-
552
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
553
- msgid "The template for attachment breadcrumbs."
554
- msgstr "附件面包屑模版"
555
-
556
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
557
- msgid "Attachment Template (Unlinked)"
558
- msgstr "附件模版(没有链接)"
559
-
560
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
561
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
562
- msgstr "附件面包屑模版,只在面包屑没有链接时使用。"
563
-
564
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
565
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
566
- msgid "%s Template"
567
- msgstr "%s模版"
568
-
569
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
570
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
571
- msgid "The template for %s breadcrumbs."
572
- msgstr "%s面包屑模版"
573
-
574
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
575
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
576
- msgid "%s Template (Unlinked)"
577
- msgstr "%s模版(未连接)"
578
-
579
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
580
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
581
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
582
- msgstr "%s面包屑模版,只在面包屑没有链接时使用。"
583
-
584
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
585
- msgid "%s Root Page"
586
- msgstr "%s根页面"
587
-
588
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
589
- msgid "&mdash; Select &mdash;"
590
- msgstr "&mdash;选择&mdash;"
591
-
592
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
593
- msgid "%s Archive Display"
594
- msgstr "%s存档显示"
595
-
596
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
597
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
598
- msgstr "在面包屑导航中显示%s文章类型存档的面包屑"
599
-
600
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
601
- msgid "Category Template"
602
- msgstr "分类模版"
603
-
604
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
605
- msgid "The template for category breadcrumbs."
606
- msgstr "分类面包屑模版"
607
-
608
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
609
- msgid "Category Template (Unlinked)"
610
- msgstr "分类模版(没有链接)"
611
-
612
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
613
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
614
- msgstr "分类面包屑模版,只在面包屑没有链接时使用。"
615
-
616
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
617
- msgid "Tag Template"
618
- msgstr "标签模版"
619
-
620
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
621
- msgid "The template for tag breadcrumbs."
622
- msgstr "标签面包屑模版"
623
-
624
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
625
- msgid "Tag Template (Unlinked)"
626
- msgstr "标签模版(没有链接)"
627
-
628
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
629
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
630
- msgstr "标签面包屑模版,只在面包屑没有链接时使用。"
631
-
632
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
633
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
634
- msgid "Miscellaneous"
635
- msgstr "杂项"
636
-
637
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
638
- msgid "Author Template"
639
- msgstr "作者模版"
640
-
641
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
642
- msgid "The template for author breadcrumbs."
643
- msgstr "作者面包屑模版"
644
-
645
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
646
- msgid "Author Template (Unlinked)"
647
- msgstr "作者模版(没有链接)"
648
-
649
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
650
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
651
- msgstr "作者面包屑模版,只在面包屑没有链接时使用。"
652
-
653
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
654
- msgid "Author Display Format"
655
- msgstr "作者显示格式"
656
-
657
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
658
- 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."
659
- msgstr "显示名使用用户资料下\"公开显示为\"选项下对应的名称。"
660
-
661
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
662
- msgid "Date Template"
663
- msgstr "日期模版"
664
-
665
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
666
- msgid "The template for date breadcrumbs."
667
- msgstr "日期面包屑模版"
668
-
669
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
670
- msgid "Date Template (Unlinked)"
671
- msgstr "日期面包屑(没有链接)"
672
-
673
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
674
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
675
- msgstr "日期面包屑模版,只在面包屑没有链接时使用"
676
-
677
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
678
- msgid "Search Template"
679
- msgstr "搜索模版"
680
-
681
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "搜索结果首页模版,只在搜索结果分为多页时使用。"
684
-
685
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
686
- msgid "Search Template (Unlinked)"
687
- msgstr "搜索模版(没有链接)"
688
-
689
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
690
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
691
- msgstr "搜索结果首页模版,只在搜索结果分为多页,且面包屑没有连接时使用。"
692
-
693
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
694
- msgid "404 Title"
695
- msgstr "404标题"
696
-
697
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
698
- msgid "404 Template"
699
- msgstr "404模版"
700
-
701
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
702
- msgid "The template for 404 breadcrumbs."
703
- msgstr "404页面的面包屑。"
704
-
705
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
706
- msgid "Save Changes"
707
- msgstr "保存修改"
708
-
709
- #: includes/class.mtekk_adminkit.php:225
710
- msgid "Settings"
711
- msgstr "设置"
712
-
713
- #: includes/class.mtekk_adminkit.php:295
714
- msgid "Your settings are out of date."
715
- msgstr "你的设置已过期。"
716
-
717
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
718
- msgid "Migrate the settings now."
719
- msgstr "现在迁移设置。"
720
-
721
- #: includes/class.mtekk_adminkit.php:295 includes/class.mtekk_adminkit.php:304
722
- msgid "Migrate now."
723
- msgstr "现在迁移。"
724
-
725
- #: includes/class.mtekk_adminkit.php:312
726
- msgid "Your plugin install is incomplete."
727
- msgstr "插件安装未完成"
728
-
729
- #: includes/class.mtekk_adminkit.php:312
730
- msgid "Load default settings now."
731
- msgstr "现在加载默认设置。"
732
-
733
- #: includes/class.mtekk_adminkit.php:312
734
- msgid "Complete now."
735
- msgstr "现在完成"
736
-
737
- #: includes/class.mtekk_adminkit.php:320
738
- msgid "Your plugin settings are invalid."
739
- msgstr "你的设置有错误"
740
-
741
- #: includes/class.mtekk_adminkit.php:320
742
- msgid "Attempt to fix settings now."
743
- msgstr "尝试修复设置。"
744
-
745
- #: includes/class.mtekk_adminkit.php:320
746
- msgid "Fix now."
747
- msgstr "现在修复。"
748
-
749
- #: includes/class.mtekk_adminkit.php:503
750
- msgid "Settings successfully saved."
751
- msgstr "设置保存成功"
752
-
753
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
754
- msgid "Undo the options save."
755
- msgstr "撤销保存操作"
756
-
757
- #: includes/class.mtekk_adminkit.php:503 includes/class.mtekk_adminkit.php:516
758
- #: includes/class.mtekk_adminkit.php:621 includes/class.mtekk_adminkit.php:645
759
- #: includes/class.mtekk_adminkit.php:662
760
- msgid "Undo"
761
- msgstr "撤销"
762
-
763
- #: includes/class.mtekk_adminkit.php:516
764
- msgid "Some settings were not saved."
765
- msgstr "一些设置没有保存"
766
-
767
- #: includes/class.mtekk_adminkit.php:517
768
- msgid "The following settings were not saved:"
769
- msgstr "下面的设置没有保存:"
770
-
771
- #: includes/class.mtekk_adminkit.php:522
772
- msgid "Please include this message in your %sbug report%s."
773
- msgstr "请包含这个消息到你的%sbug report%s。"
774
-
775
- #: includes/class.mtekk_adminkit.php:522
776
- msgid "Go to the %s support post for your version."
777
- msgstr "转到你所用版本%s的支持文章"
778
-
779
- #: includes/class.mtekk_adminkit.php:621
780
- msgid "Settings successfully imported from the uploaded file."
781
- msgstr "设置成功从上传的文件中导入"
782
-
783
- #: includes/class.mtekk_adminkit.php:621
784
- msgid "Undo the options import."
785
- msgstr "撤销导入操作"
786
-
787
- #: includes/class.mtekk_adminkit.php:626
788
- msgid "Importing settings from file failed."
789
- msgstr "从文件中导入设置失败。"
790
-
791
- #: includes/class.mtekk_adminkit.php:645
792
- msgid "Settings successfully reset to the default values."
793
- msgstr "设置成功恢复到默认值。"
794
-
795
- #: includes/class.mtekk_adminkit.php:645
796
- msgid "Undo the options reset."
797
- msgstr "撤销选项重置操作"
798
-
799
- #: includes/class.mtekk_adminkit.php:662
800
- msgid "Settings successfully undid the last operation."
801
- msgstr "设置成功从上一个操作中恢复。"
802
-
803
- #: includes/class.mtekk_adminkit.php:662
804
- msgid "Undo the last undo operation."
805
- msgstr "撤销最后一个撤销操作"
806
-
807
- #: includes/class.mtekk_adminkit.php:697
808
- msgid "Settings successfully migrated."
809
- msgstr "设置迁移成功"
810
-
811
- #: includes/class.mtekk_adminkit.php:704
812
- msgid "Default settings successfully installed."
813
- msgstr "默认设置已安装"
814
-
815
- #: includes/class.mtekk_adminkit.php:800
816
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
817
- msgstr "从XML文件中导入设置,导出当前设置到XML文件,或者重置到默认设置。"
818
-
819
- #: includes/class.mtekk_adminkit.php:803
820
- msgid "Settings File"
821
- msgstr "设置文件"
822
-
823
- #: includes/class.mtekk_adminkit.php:806
824
- msgid "Select a XML settings file to upload and import settings from."
825
- msgstr "选择需要上传和导入的XML文件"
826
-
827
- #: class.bcn_breadcrumb_trail.php:79
828
- msgid "Page %htitle%"
829
- msgstr "页面%htitle%"
830
-
831
- #: class.bcn_breadcrumb_trail.php:103
832
- msgid "404"
833
- msgstr "404"
834
-
835
- #: class.bcn_breadcrumb_trail.php:108
836
- msgid "Search results for &#39;%htitle%&#39;"
837
- msgstr "搜索&#39;%htitle%&#39;的结果"
838
-
839
- #: class.bcn_breadcrumb_trail.php:123
840
- msgid "Articles by: %htitle%"
841
- msgstr "存档类型:%htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt.mo DELETED
Binary file
languages/breadcrumb-navxt.po DELETED
@@ -1,861 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Breadcrumb NavXT\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2013-09-27 18:23:16+00:00\n"
6
- "PO-Revision-Date: 2014-06-09 21:34-0600\n"
7
- "Last-Translator: John Havlik <john.havlik@mtekk.us>\n"
8
- "Language-Team: John Havlik <john.havlik@mtekk.us>\n"
9
- "Language: en\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Generator: Poedit 1.6.5\n"
16
- "X-Poedit-SearchPath-0: D:\\Docs\\Breadcrumb NavXT\\trunk\n"
17
-
18
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
19
- #: class.bcn_network_admin.php:25
20
- msgid ""
21
- "Your PHP version is too old, please upgrade to a newer version. Your version "
22
- "is %1$s, Breadcrumb NavXT requires %2$s"
23
- msgstr ""
24
-
25
- #: breadcrumb-navxt.php:247
26
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
27
- msgstr ""
28
-
29
- #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
30
- msgid "%htitle%"
31
- msgstr ""
32
-
33
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
34
- msgid "Insufficient privileges to proceed."
35
- msgstr ""
36
-
37
- #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
38
- msgid "Tips for the settings are located below select options."
39
- msgstr ""
40
-
41
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
42
- msgid "Resources"
43
- msgstr ""
44
-
45
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
46
- msgid ""
47
- "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
48
- "available on the author's website."
49
- msgstr ""
50
-
51
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
52
- msgid "Go to the Breadcrumb NavXT tag archive."
53
- msgstr ""
54
-
55
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
56
- msgid ""
57
- "%sOnline Documentation%s: Check out the documentation for more indepth "
58
- "technical information."
59
- msgstr ""
60
-
61
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
62
- msgid "Go to the Breadcrumb NavXT online documentation"
63
- msgstr ""
64
-
65
- #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
66
- msgid ""
67
- "%sReport a Bug%s: If you think you have found a bug, please include your "
68
- "WordPress version and details on how to reproduce the bug."
69
- msgstr ""
70
-
71
- #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
72
- msgid "Go to the Breadcrumb NavXT support post for your version."
73
- msgstr ""
74
-
75
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
76
- msgid "Giving Back"
77
- msgstr ""
78
-
79
- #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
80
- msgid ""
81
- "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
82
- "buying the author a beer."
83
- msgstr ""
84
-
85
- #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
86
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
87
- msgstr ""
88
-
89
- #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
90
- msgid ""
91
- "%sTranslate%s: Is your language not available? Contact John Havlik to get "
92
- "translating."
93
- msgstr ""
94
-
95
- #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
96
- msgid "Go to the Breadcrumb NavXT translation project."
97
- msgstr ""
98
-
99
- #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
100
- #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
101
- #: class.bcn_network_admin.php:390
102
- msgid "General"
103
- msgstr ""
104
-
105
- #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
106
- msgid ""
107
- "For the settings on this page to take effect, you must either use the "
108
- "included Breadcrumb NavXT widget, or place either of the code sections below "
109
- "into your theme."
110
- msgstr ""
111
-
112
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
113
- msgid "Breadcrumb trail with separators"
114
- msgstr ""
115
-
116
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
117
- msgid "Breadcrumb trail in list form"
118
- msgstr ""
119
-
120
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
121
- msgid "Quick Start"
122
- msgstr ""
123
-
124
- #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
125
- msgid ""
126
- "Using the code from the Quick Start section above, the following CSS can be "
127
- "used as base for styling your breadcrumb trail."
128
- msgstr ""
129
-
130
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
131
- msgid "Styling"
132
- msgstr ""
133
-
134
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
135
- msgid "Import/Export/Reset"
136
- msgstr ""
137
-
138
- #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
139
- #: includes/class.mtekk_adminkit.php:792
140
- msgid "Import"
141
- msgstr ""
142
-
143
- #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
144
- #: includes/class.mtekk_adminkit.php:793
145
- msgid "Export"
146
- msgstr ""
147
-
148
- #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
149
- #: includes/class.mtekk_adminkit.php:794
150
- msgid "Reset"
151
- msgstr ""
152
-
153
- #: class.bcn_admin.php:309
154
- msgid "Breadcrumb NavXT Settings"
155
- msgstr ""
156
-
157
- #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
158
- msgid ""
159
- "A collection of settings most likely to be modified are located under this "
160
- "tab."
161
- msgstr ""
162
-
163
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
164
- msgid "Breadcrumb Separator"
165
- msgstr ""
166
-
167
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
168
- msgid "Placed in between each breadcrumb."
169
- msgstr ""
170
-
171
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
172
- msgid "Title Length"
173
- msgstr ""
174
-
175
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
176
- msgid "Limit the length of the breadcrumb title."
177
- msgstr ""
178
-
179
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
180
- msgid "Max Title Length: "
181
- msgstr ""
182
-
183
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
184
- msgid "Current Item"
185
- msgstr ""
186
-
187
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
188
- msgid "Link Current Item"
189
- msgstr ""
190
-
191
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
192
- msgid "Yes"
193
- msgstr ""
194
-
195
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
196
- msgid "Paged Breadcrumb"
197
- msgstr ""
198
-
199
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
200
- msgid "Include the paged breadcrumb in the breadcrumb trail."
201
- msgstr ""
202
-
203
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
204
- msgid ""
205
- "Indicates that the user is on a page other than the first on paginated posts/"
206
- "pages."
207
- msgstr ""
208
-
209
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
210
- msgid "Paged Template"
211
- msgstr ""
212
-
213
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
214
- msgid "The template for paged breadcrumbs."
215
- msgstr ""
216
-
217
- #: class.bcn_admin.php:359 class.bcn_admin.php:362
218
- #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
219
- msgid "Home Breadcrumb"
220
- msgstr ""
221
-
222
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
223
- msgid "Place the home breadcrumb in the trail."
224
- msgstr ""
225
-
226
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
227
- msgid "Home Template"
228
- msgstr ""
229
-
230
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
231
- msgid "The template for the home breadcrumb."
232
- msgstr ""
233
-
234
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
235
- msgid "Home Template (Unlinked)"
236
- msgstr ""
237
-
238
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
239
- msgid ""
240
- "The template for the home breadcrumb, used when the breadcrumb is not linked."
241
- msgstr ""
242
-
243
- #: class.bcn_admin.php:368 class.bcn_admin.php:371
244
- #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
245
- msgid "Blog Breadcrumb"
246
- msgstr ""
247
-
248
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
249
- msgid "Place the blog breadcrumb in the trail."
250
- msgstr ""
251
-
252
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
253
- msgid "Blog Template"
254
- msgstr ""
255
-
256
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
257
- msgid ""
258
- "The template for the blog breadcrumb, used only in static front page "
259
- "environments."
260
- msgstr ""
261
-
262
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
263
- msgid "Blog Template (Unlinked)"
264
- msgstr ""
265
-
266
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
267
- msgid ""
268
- "The template for the blog breadcrumb, used only in static front page "
269
- "environments and when the breadcrumb is not linked."
270
- msgstr ""
271
-
272
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
273
- msgid "Mainsite Breadcrumb"
274
- msgstr ""
275
-
276
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
277
- msgid "Main Site Breadcrumb"
278
- msgstr ""
279
-
280
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
281
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
282
- msgstr ""
283
-
284
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
285
- msgid "Main Site Home Template"
286
- msgstr ""
287
-
288
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
289
- msgid ""
290
- "The template for the main site home breadcrumb, used only in multisite "
291
- "environments."
292
- msgstr ""
293
-
294
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
295
- msgid "Main Site Home Template (Unlinked)"
296
- msgstr ""
297
-
298
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
299
- msgid ""
300
- "The template for the main site home breadcrumb, used only in multisite "
301
- "environments and when the breadcrumb is not linked."
302
- msgstr ""
303
-
304
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
305
- msgid ""
306
- "The settings for all post types (Posts, Pages, and Custom Post Types) are "
307
- "located under this tab."
308
- msgstr ""
309
-
310
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
311
- msgid "Post Types"
312
- msgstr ""
313
-
314
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
315
- msgid "Posts"
316
- msgstr ""
317
-
318
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
319
- msgid "Post Template"
320
- msgstr ""
321
-
322
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
323
- msgid "The template for post breadcrumbs."
324
- msgstr ""
325
-
326
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
327
- msgid "Post Template (Unlinked)"
328
- msgstr ""
329
-
330
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
331
- msgid ""
332
- "The template for post breadcrumbs, used only when the breadcrumb is not "
333
- "linked."
334
- msgstr ""
335
-
336
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
337
- msgid "Post Hierarchy Display"
338
- msgstr ""
339
-
340
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
341
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
342
- msgstr ""
343
-
344
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
345
- msgid "Post Hierarchy"
346
- msgstr ""
347
-
348
- #: class.bcn_admin.php:403 class.bcn_admin.php:515
349
- #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
350
- msgid "Categories"
351
- msgstr ""
352
-
353
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
354
- msgid "Dates"
355
- msgstr ""
356
-
357
- #: class.bcn_admin.php:405 class.bcn_admin.php:522
358
- #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
359
- msgid "Tags"
360
- msgstr ""
361
-
362
- #: class.bcn_admin.php:407 class.bcn_admin.php:476
363
- #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
364
- msgid "Post Parent"
365
- msgstr ""
366
-
367
- #: class.bcn_admin.php:423 class.bcn_admin.php:500
368
- #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
369
- msgid ""
370
- "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
371
- "Parent\" option may require an additional plugin to behave as expected since "
372
- "this is a non-hierarchical post type."
373
- msgstr ""
374
-
375
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
376
- msgid "Pages"
377
- msgstr ""
378
-
379
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
380
- msgid "Page Template"
381
- msgstr ""
382
-
383
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
384
- msgid "The template for page breadcrumbs."
385
- msgstr ""
386
-
387
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
388
- msgid "Page Template (Unlinked)"
389
- msgstr ""
390
-
391
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
392
- msgid ""
393
- "The template for page breadcrumbs, used only when the breadcrumb is not "
394
- "linked."
395
- msgstr ""
396
-
397
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
398
- msgid "Attachment Template"
399
- msgstr ""
400
-
401
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
402
- msgid "The template for attachment breadcrumbs."
403
- msgstr ""
404
-
405
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
406
- msgid "Attachment Template (Unlinked)"
407
- msgstr ""
408
-
409
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
410
- msgid ""
411
- "The template for attachment breadcrumbs, used only when the breadcrumb is "
412
- "not linked."
413
- msgstr ""
414
-
415
- #: class.bcn_admin.php:453 class.bcn_admin.php:553
416
- #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
417
- msgid "%s Template"
418
- msgstr ""
419
-
420
- #: class.bcn_admin.php:453 class.bcn_admin.php:553
421
- #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
422
- msgid "The template for %s breadcrumbs."
423
- msgstr ""
424
-
425
- #: class.bcn_admin.php:454 class.bcn_admin.php:554
426
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
427
- msgid "%s Template (Unlinked)"
428
- msgstr ""
429
-
430
- #: class.bcn_admin.php:454 class.bcn_admin.php:554
431
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
432
- msgid ""
433
- "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
434
- msgstr ""
435
-
436
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
437
- msgid "%s Root Page"
438
- msgstr ""
439
-
440
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
441
- msgid "&mdash; Select &mdash;"
442
- msgstr ""
443
-
444
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
445
- msgid "%s Archive Display"
446
- msgstr ""
447
-
448
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
449
- msgid ""
450
- "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
451
- msgstr ""
452
-
453
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
454
- msgid "%s Hierarchy Display"
455
- msgstr ""
456
-
457
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
458
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
459
- msgstr ""
460
-
461
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
462
- msgid "%s Hierarchy"
463
- msgstr ""
464
-
465
- #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
466
- msgid "The hierarchy which the breadcrumb trail will show."
467
- msgstr ""
468
-
469
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
470
- msgid ""
471
- "The settings for all taxonomies (including Categories, Tags, and custom "
472
- "taxonomies) are located under this tab."
473
- msgstr ""
474
-
475
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
476
- msgid "Taxonomies"
477
- msgstr ""
478
-
479
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
480
- msgid "Category Template"
481
- msgstr ""
482
-
483
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
484
- msgid "The template for category breadcrumbs."
485
- msgstr ""
486
-
487
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
488
- msgid "Category Template (Unlinked)"
489
- msgstr ""
490
-
491
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
492
- msgid ""
493
- "The template for category breadcrumbs, used only when the breadcrumb is not "
494
- "linked."
495
- msgstr ""
496
-
497
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
498
- msgid "Tag Template"
499
- msgstr ""
500
-
501
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
502
- msgid "The template for tag breadcrumbs."
503
- msgstr ""
504
-
505
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
506
- msgid "Tag Template (Unlinked)"
507
- msgstr ""
508
-
509
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
510
- msgid ""
511
- "The template for tag breadcrumbs, used only when the breadcrumb is not "
512
- "linked."
513
- msgstr ""
514
-
515
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
516
- msgid "Post Formats"
517
- msgstr ""
518
-
519
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
520
- msgid "Post Format Template"
521
- msgstr ""
522
-
523
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
524
- msgid "The template for post format breadcrumbs."
525
- msgstr ""
526
-
527
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
528
- msgid "Post Format Template (Unlinked)"
529
- msgstr ""
530
-
531
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
532
- msgid ""
533
- "The template for post_format breadcrumbs, used only when the breadcrumb is "
534
- "not linked."
535
- msgstr ""
536
-
537
- #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
538
- msgid ""
539
- "The settings for author and date archives, searches, and 404 pages are "
540
- "located under this tab."
541
- msgstr ""
542
-
543
- #: class.bcn_admin.php:563 class.bcn_admin.php:572
544
- #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
545
- msgid "Miscellaneous"
546
- msgstr ""
547
-
548
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
549
- msgid "Author Archives"
550
- msgstr ""
551
-
552
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
553
- msgid "Author Template"
554
- msgstr ""
555
-
556
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
557
- msgid "The template for author breadcrumbs."
558
- msgstr ""
559
-
560
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
561
- msgid "Author Template (Unlinked)"
562
- msgstr ""
563
-
564
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
565
- msgid ""
566
- "The template for author breadcrumbs, used only when the breadcrumb is not "
567
- "linked."
568
- msgstr ""
569
-
570
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
571
- msgid "Author Display Format"
572
- msgstr ""
573
-
574
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
575
- msgid ""
576
- "display_name uses the name specified in \"Display name publicly as\" under "
577
- "the user profile the others correspond to options in the user profile."
578
- msgstr ""
579
-
580
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
581
- msgid "Date Template"
582
- msgstr ""
583
-
584
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
585
- msgid "The template for date breadcrumbs."
586
- msgstr ""
587
-
588
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
589
- msgid "Date Template (Unlinked)"
590
- msgstr ""
591
-
592
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
593
- msgid ""
594
- "The template for date breadcrumbs, used only when the breadcrumb is not "
595
- "linked."
596
- msgstr ""
597
-
598
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
599
- msgid "Search Template"
600
- msgstr ""
601
-
602
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
603
- msgid ""
604
- "The anchor template for search breadcrumbs, used only when the search "
605
- "results span several pages."
606
- msgstr ""
607
-
608
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
609
- msgid "Search Template (Unlinked)"
610
- msgstr ""
611
-
612
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
613
- msgid ""
614
- "The anchor template for search breadcrumbs, used only when the search "
615
- "results span several pages and the breadcrumb is not linked."
616
- msgstr ""
617
-
618
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
619
- msgid "404 Title"
620
- msgstr ""
621
-
622
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
623
- msgid "404 Template"
624
- msgstr ""
625
-
626
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
627
- msgid "The template for 404 breadcrumbs."
628
- msgstr ""
629
-
630
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
631
- msgid "Save Changes"
632
- msgstr ""
633
-
634
- #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
635
- #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
636
- #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
637
- #: class.bcn_breadcrumb_trail.php:99
638
- msgid ""
639
- "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
640
- msgstr ""
641
-
642
- #: class.bcn_breadcrumb_trail.php:82
643
- msgid "Page %htitle%"
644
- msgstr ""
645
-
646
- #: class.bcn_breadcrumb_trail.php:106
647
- msgid "404"
648
- msgstr ""
649
-
650
- #: class.bcn_breadcrumb_trail.php:109
651
- msgid ""
652
- "Search results for &#39;<a title=\"Go to the first page of search results "
653
- "for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
654
- msgstr ""
655
-
656
- #: class.bcn_breadcrumb_trail.php:111
657
- msgid "Search results for &#39;%htitle%&#39;"
658
- msgstr ""
659
-
660
- #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
661
- msgid ""
662
- "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%"
663
- "\">%htitle%</a>"
664
- msgstr ""
665
-
666
- #: class.bcn_breadcrumb_trail.php:124
667
- msgid ""
668
- "Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
669
- "\"%link%\" class=\"%type%\">%htitle%</a>"
670
- msgstr ""
671
-
672
- #: class.bcn_breadcrumb_trail.php:126
673
- msgid "Articles by: %htitle%"
674
- msgstr ""
675
-
676
- #: class.bcn_breadcrumb_trail.php:131
677
- msgid ""
678
- "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class="
679
- "\"%type%\">%htitle%</a>"
680
- msgstr ""
681
-
682
- #: class.bcn_breadcrumb_trail.php:135
683
- msgid ""
684
- "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">"
685
- "%htitle%</a>"
686
- msgstr ""
687
-
688
- #: class.bcn_network_admin.php:377
689
- msgid "Breadcrumb NavXT Network Settings"
690
- msgstr ""
691
-
692
- #: class.bcn_widget.php:33
693
- msgid "Adds a breadcrumb trail to your sidebar"
694
- msgstr ""
695
-
696
- #: class.bcn_widget.php:92
697
- msgid "Title:"
698
- msgstr ""
699
-
700
- #: class.bcn_widget.php:96
701
- msgid "Text to show before the trail:"
702
- msgstr ""
703
-
704
- #: class.bcn_widget.php:100
705
- msgid "Output trail as:"
706
- msgstr ""
707
-
708
- #: class.bcn_widget.php:102
709
- msgid "List"
710
- msgstr ""
711
-
712
- #: class.bcn_widget.php:103
713
- msgid "Schema.org"
714
- msgstr ""
715
-
716
- #: class.bcn_widget.php:104
717
- msgid "Plain"
718
- msgstr ""
719
-
720
- #: class.bcn_widget.php:109
721
- msgid "Link the breadcrumbs"
722
- msgstr ""
723
-
724
- #: class.bcn_widget.php:111
725
- msgid "Reverse the order of the trail"
726
- msgstr ""
727
-
728
- #: class.bcn_widget.php:113
729
- msgid "Hide the trail on the front page"
730
- msgstr ""
731
-
732
- #: includes/class.mtekk_adminkit.php:217
733
- msgid "Settings"
734
- msgstr ""
735
-
736
- #: includes/class.mtekk_adminkit.php:287
737
- msgid "Your settings are out of date."
738
- msgstr ""
739
-
740
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
741
- msgid "Migrate the settings now."
742
- msgstr ""
743
-
744
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
745
- msgid "Migrate now."
746
- msgstr ""
747
-
748
- #: includes/class.mtekk_adminkit.php:296
749
- msgid "Your settings are for a newer version."
750
- msgstr ""
751
-
752
- #: includes/class.mtekk_adminkit.php:304
753
- msgid "Your plugin install is incomplete."
754
- msgstr ""
755
-
756
- #: includes/class.mtekk_adminkit.php:304
757
- msgid "Load default settings now."
758
- msgstr ""
759
-
760
- #: includes/class.mtekk_adminkit.php:304
761
- msgid "Complete now."
762
- msgstr ""
763
-
764
- #: includes/class.mtekk_adminkit.php:312
765
- msgid "Your plugin settings are invalid."
766
- msgstr ""
767
-
768
- #: includes/class.mtekk_adminkit.php:312
769
- msgid "Attempt to fix settings now."
770
- msgstr ""
771
-
772
- #: includes/class.mtekk_adminkit.php:312
773
- msgid "Fix now."
774
- msgstr ""
775
-
776
- #: includes/class.mtekk_adminkit.php:490
777
- msgid "Settings successfully saved."
778
- msgstr ""
779
-
780
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
781
- msgid "Undo the options save."
782
- msgstr ""
783
-
784
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
785
- #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
786
- #: includes/class.mtekk_adminkit.php:641
787
- msgid "Undo"
788
- msgstr ""
789
-
790
- #: includes/class.mtekk_adminkit.php:495
791
- msgid "Some settings were not saved."
792
- msgstr ""
793
-
794
- #: includes/class.mtekk_adminkit.php:496
795
- msgid "The following settings were not saved:"
796
- msgstr ""
797
-
798
- #: includes/class.mtekk_adminkit.php:501
799
- msgid "Please include this message in your %sbug report%s."
800
- msgstr ""
801
-
802
- #: includes/class.mtekk_adminkit.php:501
803
- msgid "Go to the %s support post for your version."
804
- msgstr ""
805
-
806
- #: includes/class.mtekk_adminkit.php:600
807
- msgid "Settings successfully imported from the uploaded file."
808
- msgstr ""
809
-
810
- #: includes/class.mtekk_adminkit.php:600
811
- msgid "Undo the options import."
812
- msgstr ""
813
-
814
- #: includes/class.mtekk_adminkit.php:605
815
- msgid "Importing settings from file failed."
816
- msgstr ""
817
-
818
- #: includes/class.mtekk_adminkit.php:624
819
- msgid "Settings successfully reset to the default values."
820
- msgstr ""
821
-
822
- #: includes/class.mtekk_adminkit.php:624
823
- msgid "Undo the options reset."
824
- msgstr ""
825
-
826
- #: includes/class.mtekk_adminkit.php:641
827
- msgid "Settings successfully undid the last operation."
828
- msgstr ""
829
-
830
- #: includes/class.mtekk_adminkit.php:641
831
- msgid "Undo the last undo operation."
832
- msgstr ""
833
-
834
- #: includes/class.mtekk_adminkit.php:676
835
- msgid "Settings successfully migrated."
836
- msgstr ""
837
-
838
- #: includes/class.mtekk_adminkit.php:683
839
- msgid "Default settings successfully installed."
840
- msgstr ""
841
-
842
- #: includes/class.mtekk_adminkit.php:784
843
- msgid ""
844
- "Import settings from a XML file, export the current settings to a XML file, "
845
- "or reset to the default settings."
846
- msgstr ""
847
-
848
- #: includes/class.mtekk_adminkit.php:787
849
- msgid "Settings File"
850
- msgstr ""
851
-
852
- #: includes/class.mtekk_adminkit.php:790
853
- msgid "Select a XML settings file to upload and import settings from."
854
- msgstr ""
855
-
856
- #. Description of the plugin/theme
857
- msgid ""
858
- "Adds a breadcrumb navigation showing the visitor&#39;s path to their current "
859
- "location. For details on how to use this plugin visit <a href=\"http://mtekk."
860
- "us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
861
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt.pot CHANGED
@@ -1,14 +1,14 @@
1
- # Copyright (C) 2014 Breadcrumb NavXT
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Breadcrumb NavXT 5.1.60\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
- "POT-Creation-Date: 2014-12-29 01:33:17+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: 2014-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
@@ -19,736 +19,727 @@ msgid ""
19
  "is %1$s, Breadcrumb NavXT requires %2$s"
20
  msgstr ""
21
 
22
- #: breadcrumb-navxt.php:256
23
- msgid ""
24
- "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title="
25
- "\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
26
- msgstr ""
27
-
28
- #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:64
29
- msgid ""
30
- "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></"
31
- "span>"
32
- msgstr ""
33
-
34
  #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
35
  msgid "Insufficient privileges to proceed."
36
  msgstr ""
37
 
38
- #: class.bcn_admin.php:240 class.bcn_network_admin.php:311
39
  msgid "Tips for the settings are located below select options."
40
  msgstr ""
41
 
42
- #: class.bcn_admin.php:241 class.bcn_network_admin.php:312
43
  msgid "Resources"
44
  msgstr ""
45
 
46
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
47
  msgid ""
48
  "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
49
  "available on the author's website."
50
  msgstr ""
51
 
52
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:313
53
  msgid "Go to the Breadcrumb NavXT tag archive."
54
  msgstr ""
55
 
56
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
57
  msgid ""
58
  "%sOnline Documentation%s: Check out the documentation for more indepth "
59
  "technical information."
60
  msgstr ""
61
 
62
- #: class.bcn_admin.php:243 class.bcn_network_admin.php:314
63
  msgid "Go to the Breadcrumb NavXT online documentation"
64
  msgstr ""
65
 
66
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
67
  msgid ""
68
  "%sReport a Bug%s: If you think you have found a bug, please include your "
69
  "WordPress version and details on how to reproduce the bug."
70
  msgstr ""
71
 
72
- #: class.bcn_admin.php:244 class.bcn_network_admin.php:315
73
  msgid "Go to the Breadcrumb NavXT support post for your version."
74
  msgstr ""
75
 
76
- #: class.bcn_admin.php:245 class.bcn_network_admin.php:316
77
  msgid "Giving Back"
78
  msgstr ""
79
 
80
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
81
  msgid ""
82
  "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
83
  "buying the author a beer."
84
  msgstr ""
85
 
86
- #: class.bcn_admin.php:246 class.bcn_network_admin.php:317
87
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
88
  msgstr ""
89
 
90
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
91
  msgid ""
92
  "%sTranslate%s: Is your language not available? Contact John Havlik to get "
93
  "translating."
94
  msgstr ""
95
 
96
- #: class.bcn_admin.php:247 class.bcn_network_admin.php:318
97
  msgid "Go to the Breadcrumb NavXT translation project."
98
  msgstr ""
99
 
100
- #: class.bcn_admin.php:252 class.bcn_admin.php:391 class.bcn_admin.php:392
101
- #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:461
102
- #: class.bcn_network_admin.php:462
103
  msgid "General"
104
  msgstr ""
105
 
106
- #: class.bcn_admin.php:255 class.bcn_network_admin.php:326
107
  msgid ""
108
  "For the settings on this page to take effect, you must either use the "
109
  "included Breadcrumb NavXT widget, or place either of the code sections below "
110
  "into your theme."
111
  msgstr ""
112
 
113
- #: class.bcn_admin.php:256 class.bcn_network_admin.php:327
114
  msgid "Breadcrumb trail with separators"
115
  msgstr ""
116
 
117
- #: class.bcn_admin.php:262 class.bcn_network_admin.php:333
118
  msgid "Breadcrumb trail in list form"
119
  msgstr ""
120
 
121
- #: class.bcn_admin.php:271 class.bcn_network_admin.php:342
122
  msgid "Quick Start"
123
  msgstr ""
124
 
125
- #: class.bcn_admin.php:274 class.bcn_network_admin.php:345
126
  msgid ""
127
  "Using the code from the Quick Start section above, the following CSS can be "
128
  "used as base for styling your breadcrumb trail."
129
  msgstr ""
130
 
131
- #: class.bcn_admin.php:286 class.bcn_network_admin.php:357
132
  msgid "Styling"
133
  msgstr ""
134
 
135
- #: class.bcn_admin.php:292 class.bcn_network_admin.php:363
136
  msgid "Import/Export/Reset"
137
  msgstr ""
138
 
139
- #: class.bcn_admin.php:316 class.bcn_network_admin.php:387
140
  #: includes/class.mtekk_adminkit.php:808
141
  msgid "Import"
142
  msgstr ""
143
 
144
- #: class.bcn_admin.php:317 class.bcn_network_admin.php:388
145
  #: includes/class.mtekk_adminkit.php:809
146
  msgid "Export"
147
  msgstr ""
148
 
149
- #: class.bcn_admin.php:318 class.bcn_network_admin.php:389
150
  #: includes/class.mtekk_adminkit.php:810
151
  msgid "Reset"
152
  msgstr ""
153
 
154
- #: class.bcn_admin.php:336 class.bcn_admin.php:350
155
  msgid ""
156
  "Warning: Your network settings will override any settings set in this page."
157
  msgstr ""
158
 
159
- #: class.bcn_admin.php:340 class.bcn_admin.php:344
160
  msgid ""
161
  "Warning: Your network settings may override any settings set in this page."
162
  msgstr ""
163
 
164
- #: class.bcn_admin.php:349 class.bcn_network_admin.php:420
165
  msgid ""
166
  "Warning: No BCN_SETTINGS_* define statement found, defaulting to "
167
- "BCN_SETTINGS_FAVOR_NETWORK."
168
  msgstr ""
169
 
170
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:432
171
  msgid ""
172
  "Warning: Your are using a deprecated setting \"Title Length\" (see "
173
  "Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
174
  msgstr ""
175
 
176
- #: class.bcn_admin.php:362 class.bcn_admin.php:646
177
- #: class.bcn_network_admin.php:432 class.bcn_network_admin.php:716
178
  msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
179
  msgstr ""
180
 
181
- #: class.bcn_admin.php:379
182
  msgid "Breadcrumb NavXT Settings"
183
  msgstr ""
184
 
185
- #: class.bcn_admin.php:391 class.bcn_network_admin.php:461
186
  msgid ""
187
  "A collection of settings most likely to be modified are located under this "
188
  "tab."
189
  msgstr ""
190
 
191
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
192
  msgid "Breadcrumb Separator"
193
  msgstr ""
194
 
195
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:465
196
  msgid "Placed in between each breadcrumb."
197
  msgstr ""
198
 
199
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:469
200
  msgid "Current Item"
201
  msgstr ""
202
 
203
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
204
  msgid "Link Current Item"
205
  msgstr ""
206
 
207
- #: class.bcn_admin.php:402 class.bcn_network_admin.php:472
208
  msgid "Yes"
209
  msgstr ""
210
 
211
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
212
  msgid "Paged Breadcrumb"
213
  msgstr ""
214
 
215
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
216
  msgid "Include the paged breadcrumb in the breadcrumb trail."
217
  msgstr ""
218
 
219
- #: class.bcn_admin.php:403 class.bcn_network_admin.php:473
220
  msgid ""
221
  "Indicates that the user is on a page other than the first on paginated posts/"
222
  "pages."
223
  msgstr ""
224
 
225
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
226
  msgid "Paged Template"
227
  msgstr ""
228
 
229
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:474
230
  msgid "The template for paged breadcrumbs."
231
  msgstr ""
232
 
233
- #: class.bcn_admin.php:408 class.bcn_admin.php:411
234
- #: class.bcn_network_admin.php:478 class.bcn_network_admin.php:481
235
  msgid "Home Breadcrumb"
236
  msgstr ""
237
 
238
- #: class.bcn_admin.php:411 class.bcn_network_admin.php:481
239
  msgid "Place the home breadcrumb in the trail."
240
  msgstr ""
241
 
242
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
243
  msgid "Home Template"
244
  msgstr ""
245
 
246
- #: class.bcn_admin.php:412 class.bcn_network_admin.php:482
247
  msgid "The template for the home breadcrumb."
248
  msgstr ""
249
 
250
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
251
  msgid "Home Template (Unlinked)"
252
  msgstr ""
253
 
254
- #: class.bcn_admin.php:413 class.bcn_network_admin.php:483
255
  msgid ""
256
  "The template for the home breadcrumb, used when the breadcrumb is not linked."
257
  msgstr ""
258
 
259
- #: class.bcn_admin.php:417
260
  msgid "Blog Breadcrumb "
261
  msgstr ""
262
 
263
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
264
- #: class.bcn_network_admin.php:490
265
  msgid "Blog Breadcrumb"
266
  msgstr ""
267
 
268
- #: class.bcn_admin.php:420 class.bcn_network_admin.php:490
269
  msgid "Place the blog breadcrumb in the trail."
270
  msgstr ""
271
 
272
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
273
  msgid "Blog Template"
274
  msgstr ""
275
 
276
- #: class.bcn_admin.php:421 class.bcn_network_admin.php:491
277
  msgid ""
278
  "The template for the blog breadcrumb, used only in static front page "
279
  "environments."
280
  msgstr ""
281
 
282
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
283
  msgid "Blog Template (Unlinked)"
284
  msgstr ""
285
 
286
- #: class.bcn_admin.php:422 class.bcn_network_admin.php:492
287
  msgid ""
288
  "The template for the blog breadcrumb, used only in static front page "
289
  "environments and when the breadcrumb is not linked."
290
  msgstr ""
291
 
292
- #: class.bcn_admin.php:426 class.bcn_network_admin.php:496
293
  msgid "Mainsite Breadcrumb"
294
  msgstr ""
295
 
296
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
297
  msgid "Main Site Breadcrumb"
298
  msgstr ""
299
 
300
- #: class.bcn_admin.php:429 class.bcn_network_admin.php:499
301
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
302
  msgstr ""
303
 
304
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
305
  msgid "Main Site Home Template"
306
  msgstr ""
307
 
308
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:500
309
  msgid ""
310
  "The template for the main site home breadcrumb, used only in multisite "
311
  "environments."
312
  msgstr ""
313
 
314
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
315
  msgid "Main Site Home Template (Unlinked)"
316
  msgstr ""
317
 
318
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:501
319
  msgid ""
320
  "The template for the main site home breadcrumb, used only in multisite "
321
  "environments and when the breadcrumb is not linked."
322
  msgstr ""
323
 
324
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
325
  msgid ""
326
  "The settings for all post types (Posts, Pages, and Custom Post Types) are "
327
  "located under this tab."
328
  msgstr ""
329
 
330
- #: class.bcn_admin.php:438 class.bcn_network_admin.php:508
331
  msgid "Post Types"
332
  msgstr ""
333
 
334
- #: class.bcn_admin.php:439 class.bcn_network_admin.php:509
335
  msgid "Posts"
336
  msgstr ""
337
 
338
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
339
  msgid "Post Template"
340
  msgstr ""
341
 
342
- #: class.bcn_admin.php:442 class.bcn_network_admin.php:512
343
  msgid "The template for post breadcrumbs."
344
  msgstr ""
345
 
346
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
347
  msgid "Post Template (Unlinked)"
348
  msgstr ""
349
 
350
- #: class.bcn_admin.php:443 class.bcn_network_admin.php:513
351
  msgid ""
352
  "The template for post breadcrumbs, used only when the breadcrumb is not "
353
  "linked."
354
  msgstr ""
355
 
356
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
357
  msgid "Post Hierarchy Display"
358
  msgstr ""
359
 
360
- #: class.bcn_admin.php:444 class.bcn_network_admin.php:514
361
  msgid ""
362
  "Show the hierarchy (specified below) leading to a post in the breadcrumb "
363
  "trail."
364
  msgstr ""
365
 
366
- #: class.bcn_admin.php:448 class.bcn_network_admin.php:518
367
  msgid "Post Hierarchy"
368
  msgstr ""
369
 
370
- #: class.bcn_admin.php:452 class.bcn_admin.php:569
371
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:639
372
  msgid "Categories"
373
  msgstr ""
374
 
375
- #: class.bcn_admin.php:453 class.bcn_network_admin.php:523
 
376
  msgid "Dates"
377
  msgstr ""
378
 
379
- #: class.bcn_admin.php:454 class.bcn_admin.php:576
380
- #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:646
381
  msgid "Tags"
382
  msgstr ""
383
 
384
- #: class.bcn_admin.php:456 class.bcn_admin.php:530
385
- #: class.bcn_network_admin.php:526 class.bcn_network_admin.php:600
386
  msgid "Post Parent"
387
  msgstr ""
388
 
389
- #: class.bcn_admin.php:472 class.bcn_admin.php:554
390
- #: class.bcn_network_admin.php:542 class.bcn_network_admin.php:624
391
  msgid ""
392
  "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
393
  "Parent\" option may require an additional plugin to behave as expected since "
394
  "this is a non-hierarchical post type."
395
  msgstr ""
396
 
397
- #: class.bcn_admin.php:476 class.bcn_network_admin.php:546
398
  msgid "Pages"
399
  msgstr ""
400
 
401
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
402
  msgid "Page Template"
403
  msgstr ""
404
 
405
- #: class.bcn_admin.php:479 class.bcn_network_admin.php:549
406
  msgid "The template for page breadcrumbs."
407
  msgstr ""
408
 
409
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
410
  msgid "Page Template (Unlinked)"
411
  msgstr ""
412
 
413
- #: class.bcn_admin.php:480 class.bcn_network_admin.php:550
414
  msgid ""
415
  "The template for page breadcrumbs, used only when the breadcrumb is not "
416
  "linked."
417
  msgstr ""
418
 
419
- #: class.bcn_admin.php:483 class.bcn_network_admin.php:553
420
  msgid "Attachments"
421
  msgstr ""
422
 
423
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
424
  msgid "Attachment Template"
425
  msgstr ""
426
 
427
- #: class.bcn_admin.php:486 class.bcn_network_admin.php:556
428
  msgid "The template for attachment breadcrumbs."
429
  msgstr ""
430
 
431
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
432
  msgid "Attachment Template (Unlinked)"
433
  msgstr ""
434
 
435
- #: class.bcn_admin.php:487 class.bcn_network_admin.php:557
436
  msgid ""
437
  "The template for attachment breadcrumbs, used only when the breadcrumb is "
438
  "not linked."
439
  msgstr ""
440
 
441
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
442
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
443
  msgid "%s Template"
444
  msgstr ""
445
 
446
- #: class.bcn_admin.php:507 class.bcn_admin.php:607
447
- #: class.bcn_network_admin.php:577 class.bcn_network_admin.php:677
448
  msgid "The template for %s breadcrumbs."
449
  msgstr ""
450
 
451
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
452
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
453
  msgid "%s Template (Unlinked)"
454
  msgstr ""
455
 
456
- #: class.bcn_admin.php:508 class.bcn_admin.php:608
457
- #: class.bcn_network_admin.php:578 class.bcn_network_admin.php:678
458
  msgid ""
459
  "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
460
  msgstr ""
461
 
462
- #: class.bcn_admin.php:513 class.bcn_network_admin.php:583
463
  msgid "%s Root Page"
464
  msgstr ""
465
 
466
- #: class.bcn_admin.php:516 class.bcn_network_admin.php:586
467
  msgid "&mdash; Select &mdash;"
468
  msgstr ""
469
 
470
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
471
  msgid "%s Archive Display"
472
  msgstr ""
473
 
474
- #: class.bcn_admin.php:520 class.bcn_network_admin.php:590
475
  msgid ""
476
  "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
477
  msgstr ""
478
 
479
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
480
  msgid "%s Hierarchy Display"
481
  msgstr ""
482
 
483
- #: class.bcn_admin.php:521 class.bcn_network_admin.php:591
484
  msgid ""
485
  "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
486
  msgstr ""
487
 
488
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:595
489
  msgid "%s Hierarchy"
490
  msgstr ""
491
 
492
- #: class.bcn_admin.php:550 class.bcn_network_admin.php:620
493
  msgid "The hierarchy which the breadcrumb trail will show."
494
  msgstr ""
495
 
496
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
497
  msgid ""
498
  "The settings for all taxonomies (including Categories, Tags, and custom "
499
  "taxonomies) are located under this tab."
500
  msgstr ""
501
 
502
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:638
503
  msgid "Taxonomies"
504
  msgstr ""
505
 
506
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
507
  msgid "Category Template"
508
  msgstr ""
509
 
510
- #: class.bcn_admin.php:572 class.bcn_network_admin.php:642
511
  msgid "The template for category breadcrumbs."
512
  msgstr ""
513
 
514
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
515
  msgid "Category Template (Unlinked)"
516
  msgstr ""
517
 
518
- #: class.bcn_admin.php:573 class.bcn_network_admin.php:643
519
  msgid ""
520
  "The template for category breadcrumbs, used only when the breadcrumb is not "
521
  "linked."
522
  msgstr ""
523
 
524
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
525
  msgid "Tag Template"
526
  msgstr ""
527
 
528
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:649
529
  msgid "The template for tag breadcrumbs."
530
  msgstr ""
531
 
532
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
533
  msgid "Tag Template (Unlinked)"
534
  msgstr ""
535
 
536
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:650
537
  msgid ""
538
  "The template for tag breadcrumbs, used only when the breadcrumb is not "
539
  "linked."
540
  msgstr ""
541
 
542
- #: class.bcn_admin.php:583 class.bcn_network_admin.php:653
543
  msgid "Post Formats"
544
  msgstr ""
545
 
546
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
547
  msgid "Post Format Template"
548
  msgstr ""
549
 
550
- #: class.bcn_admin.php:586 class.bcn_network_admin.php:656
551
  msgid "The template for post format breadcrumbs."
552
  msgstr ""
553
 
554
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
555
  msgid "Post Format Template (Unlinked)"
556
  msgstr ""
557
 
558
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:657
559
  msgid ""
560
  "The template for post_format breadcrumbs, used only when the breadcrumb is "
561
  "not linked."
562
  msgstr ""
563
 
564
- #: class.bcn_admin.php:617 class.bcn_network_admin.php:687
565
  msgid ""
566
  "The settings for author and date archives, searches, and 404 pages are "
567
  "located under this tab."
568
  msgstr ""
569
 
570
- #: class.bcn_admin.php:617 class.bcn_admin.php:626
571
- #: class.bcn_network_admin.php:687 class.bcn_network_admin.php:696
572
  msgid "Miscellaneous"
573
  msgstr ""
574
 
575
- #: class.bcn_admin.php:618 class.bcn_network_admin.php:688
576
  msgid "Author Archives"
577
  msgstr ""
578
 
579
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
580
  msgid "Author Template"
581
  msgstr ""
582
 
583
- #: class.bcn_admin.php:621 class.bcn_network_admin.php:691
584
  msgid "The template for author breadcrumbs."
585
  msgstr ""
586
 
587
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
588
  msgid "Author Template (Unlinked)"
589
  msgstr ""
590
 
591
- #: class.bcn_admin.php:622 class.bcn_network_admin.php:692
592
  msgid ""
593
  "The template for author breadcrumbs, used only when the breadcrumb is not "
594
  "linked."
595
  msgstr ""
596
 
597
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
598
  msgid "Author Display Format"
599
  msgstr ""
600
 
601
- #: class.bcn_admin.php:623 class.bcn_network_admin.php:693
602
  msgid ""
603
  "display_name uses the name specified in \"Display name publicly as\" under "
604
  "the user profile the others correspond to options in the user profile."
605
  msgstr ""
606
 
607
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
608
  msgid "Date Template"
609
  msgstr ""
610
 
611
- #: class.bcn_admin.php:629 class.bcn_network_admin.php:699
612
  msgid "The template for date breadcrumbs."
613
  msgstr ""
614
 
615
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
616
  msgid "Date Template (Unlinked)"
617
  msgstr ""
618
 
619
- #: class.bcn_admin.php:630 class.bcn_network_admin.php:700
620
  msgid ""
621
  "The template for date breadcrumbs, used only when the breadcrumb is not "
622
  "linked."
623
  msgstr ""
624
 
625
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
626
  msgid "Search Template"
627
  msgstr ""
628
 
629
- #: class.bcn_admin.php:631 class.bcn_network_admin.php:701
630
  msgid ""
631
  "The anchor template for search breadcrumbs, used only when the search "
632
  "results span several pages."
633
  msgstr ""
634
 
635
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
636
  msgid "Search Template (Unlinked)"
637
  msgstr ""
638
 
639
- #: class.bcn_admin.php:632 class.bcn_network_admin.php:702
640
  msgid ""
641
  "The anchor template for search breadcrumbs, used only when the search "
642
  "results span several pages and the breadcrumb is not linked."
643
  msgstr ""
644
 
645
- #: class.bcn_admin.php:633 class.bcn_network_admin.php:703
646
  msgid "404 Title"
647
  msgstr ""
648
 
649
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
650
  msgid "404 Template"
651
  msgstr ""
652
 
653
- #: class.bcn_admin.php:634 class.bcn_network_admin.php:704
654
  msgid "The template for 404 breadcrumbs."
655
  msgstr ""
656
 
657
- #: class.bcn_admin.php:637 class.bcn_network_admin.php:707
658
  msgid "Deprecated"
659
  msgstr ""
660
 
661
- #: class.bcn_admin.php:641 class.bcn_network_admin.php:711
662
  msgid "Title Length"
663
  msgstr ""
664
 
665
- #: class.bcn_admin.php:646 class.bcn_network_admin.php:716
666
  msgid ""
667
  "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
668
  msgstr ""
669
 
670
- #: class.bcn_admin.php:651 class.bcn_network_admin.php:721
671
  msgid "Max Title Length: "
672
  msgstr ""
673
 
674
- #: class.bcn_admin.php:663 class.bcn_network_admin.php:733
675
  msgid "Save Changes"
676
  msgstr ""
677
 
678
- #: class.bcn_breadcrumb.php:68 class.bcn_breadcrumb_trail.php:46
679
- #: class.bcn_breadcrumb_trail.php:52 class.bcn_breadcrumb_trail.php:58
680
- #: class.bcn_breadcrumb_trail.php:72 class.bcn_breadcrumb_trail.php:84
681
- #: class.bcn_breadcrumb_trail.php:96
682
  msgid ""
683
- "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title="
684
- "\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
 
 
685
  msgstr ""
686
 
687
  #: class.bcn_breadcrumb_trail.php:79
688
  msgid "Page %htitle%"
689
  msgstr ""
690
 
691
- #: class.bcn_breadcrumb_trail.php:103
692
  msgid "404"
693
  msgstr ""
694
 
695
- #: class.bcn_breadcrumb_trail.php:106
696
  msgid ""
697
  "Search results for &#39;<a title=\"Go to the first page of search results "
698
  "for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
699
  msgstr ""
700
 
701
- #: class.bcn_breadcrumb_trail.php:108
702
  msgid "Search results for &#39;%htitle%&#39;"
703
  msgstr ""
704
 
705
- #: class.bcn_breadcrumb_trail.php:111 class.bcn_breadcrumb_trail.php:116
 
 
 
 
 
 
 
 
706
  msgid ""
707
- "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title="
708
- "\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle"
709
- "%</a></span>"
 
710
  msgstr ""
711
 
712
- #: class.bcn_breadcrumb_trail.php:121
713
  msgid ""
714
  "Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
715
  "\"%link%\" class=\"%type%\">%htitle%</a>"
716
  msgstr ""
717
 
718
- #: class.bcn_breadcrumb_trail.php:123
719
  msgid "Articles by: %htitle%"
720
  msgstr ""
721
 
722
- #: class.bcn_breadcrumb_trail.php:128
723
  msgid ""
724
- "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title="
725
- "\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">"
726
- "%htitle%</a></span>"
 
727
  msgstr ""
728
 
729
- #: class.bcn_breadcrumb_trail.php:132
730
- msgid ""
731
- "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title="
732
- "\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</"
733
- "a></span>"
734
- msgstr ""
735
-
736
- #: class.bcn_breadcrumb_trail.php:379
737
  msgid "$post global is not of type WP_Post"
738
  msgstr ""
739
 
740
- #: class.bcn_network_admin.php:403
741
  msgid ""
742
  "Warning: Individual site settings will override any settings set in this "
743
  "page."
744
  msgstr ""
745
 
746
- #: class.bcn_network_admin.php:411 class.bcn_network_admin.php:415
747
  msgid ""
748
  "Warning: Individual site settings may override any settings set in this page."
749
  msgstr ""
750
 
751
- #: class.bcn_network_admin.php:449
752
  msgid "Breadcrumb NavXT Network Settings"
753
  msgstr ""
754
 
@@ -756,39 +747,39 @@ msgstr ""
756
  msgid "Adds a breadcrumb trail to your sidebar"
757
  msgstr ""
758
 
759
- #: class.bcn_widget.php:94
760
  msgid "Title:"
761
  msgstr ""
762
 
763
- #: class.bcn_widget.php:98
764
  msgid "Text to show before the trail:"
765
  msgstr ""
766
 
767
- #: class.bcn_widget.php:102
768
  msgid "Output trail as:"
769
  msgstr ""
770
 
771
- #: class.bcn_widget.php:104
772
  msgid "List"
773
  msgstr ""
774
 
775
- #: class.bcn_widget.php:105
776
  msgid "Google (RDFa) Breadcrumbs"
777
  msgstr ""
778
 
779
- #: class.bcn_widget.php:106
780
  msgid "Plain"
781
  msgstr ""
782
 
783
- #: class.bcn_widget.php:111
784
  msgid "Link the breadcrumbs"
785
  msgstr ""
786
 
787
- #: class.bcn_widget.php:113
788
  msgid "Reverse the order of the trail"
789
  msgstr ""
790
 
791
- #: class.bcn_widget.php:115
792
  msgid "Hide the trail on the front page"
793
  msgstr ""
794
 
1
+ # Copyright (C) 2015 Breadcrumb NavXT
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Breadcrumb NavXT 5.3.0\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/breadcrumb-navxt\n"
7
+ "POT-Creation-Date: 2015-12-09 01:15:51+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: 2015-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
19
  "is %1$s, Breadcrumb NavXT requires %2$s"
20
  msgstr ""
21
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
23
  msgid "Insufficient privileges to proceed."
24
  msgstr ""
25
 
26
+ #: class.bcn_admin.php:238 class.bcn_network_admin.php:308
27
  msgid "Tips for the settings are located below select options."
28
  msgstr ""
29
 
30
+ #: class.bcn_admin.php:239 class.bcn_network_admin.php:309
31
  msgid "Resources"
32
  msgstr ""
33
 
34
+ #: class.bcn_admin.php:240 class.bcn_network_admin.php:310
35
  msgid ""
36
  "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
37
  "available on the author's website."
38
  msgstr ""
39
 
40
+ #: class.bcn_admin.php:240 class.bcn_network_admin.php:310
41
  msgid "Go to the Breadcrumb NavXT tag archive."
42
  msgstr ""
43
 
44
+ #: class.bcn_admin.php:241 class.bcn_network_admin.php:311
45
  msgid ""
46
  "%sOnline Documentation%s: Check out the documentation for more indepth "
47
  "technical information."
48
  msgstr ""
49
 
50
+ #: class.bcn_admin.php:241 class.bcn_network_admin.php:311
51
  msgid "Go to the Breadcrumb NavXT online documentation"
52
  msgstr ""
53
 
54
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:312
55
  msgid ""
56
  "%sReport a Bug%s: If you think you have found a bug, please include your "
57
  "WordPress version and details on how to reproduce the bug."
58
  msgstr ""
59
 
60
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:312
61
  msgid "Go to the Breadcrumb NavXT support post for your version."
62
  msgstr ""
63
 
64
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:313
65
  msgid "Giving Back"
66
  msgstr ""
67
 
68
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:314
69
  msgid ""
70
  "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
71
  "buying the author a beer."
72
  msgstr ""
73
 
74
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:314
75
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
76
  msgstr ""
77
 
78
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:315
79
  msgid ""
80
  "%sTranslate%s: Is your language not available? Contact John Havlik to get "
81
  "translating."
82
  msgstr ""
83
 
84
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:315
85
  msgid "Go to the Breadcrumb NavXT translation project."
86
  msgstr ""
87
 
88
+ #: class.bcn_admin.php:250 class.bcn_admin.php:388 class.bcn_admin.php:389
89
+ #: class.bcn_network_admin.php:320 class.bcn_network_admin.php:459
90
+ #: class.bcn_network_admin.php:460
91
  msgid "General"
92
  msgstr ""
93
 
94
+ #: class.bcn_admin.php:253 class.bcn_network_admin.php:323
95
  msgid ""
96
  "For the settings on this page to take effect, you must either use the "
97
  "included Breadcrumb NavXT widget, or place either of the code sections below "
98
  "into your theme."
99
  msgstr ""
100
 
101
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:324
102
  msgid "Breadcrumb trail with separators"
103
  msgstr ""
104
 
105
+ #: class.bcn_admin.php:260 class.bcn_network_admin.php:330
106
  msgid "Breadcrumb trail in list form"
107
  msgstr ""
108
 
109
+ #: class.bcn_admin.php:269 class.bcn_network_admin.php:339
110
  msgid "Quick Start"
111
  msgstr ""
112
 
113
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:342
114
  msgid ""
115
  "Using the code from the Quick Start section above, the following CSS can be "
116
  "used as base for styling your breadcrumb trail."
117
  msgstr ""
118
 
119
+ #: class.bcn_admin.php:284 class.bcn_network_admin.php:354
120
  msgid "Styling"
121
  msgstr ""
122
 
123
+ #: class.bcn_admin.php:290 class.bcn_network_admin.php:360
124
  msgid "Import/Export/Reset"
125
  msgstr ""
126
 
127
+ #: class.bcn_admin.php:314 class.bcn_network_admin.php:384
128
  #: includes/class.mtekk_adminkit.php:808
129
  msgid "Import"
130
  msgstr ""
131
 
132
+ #: class.bcn_admin.php:315 class.bcn_network_admin.php:385
133
  #: includes/class.mtekk_adminkit.php:809
134
  msgid "Export"
135
  msgstr ""
136
 
137
+ #: class.bcn_admin.php:316 class.bcn_network_admin.php:386
138
  #: includes/class.mtekk_adminkit.php:810
139
  msgid "Reset"
140
  msgstr ""
141
 
142
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:418
143
  msgid ""
144
  "Warning: Your network settings will override any settings set in this page."
145
  msgstr ""
146
 
147
+ #: class.bcn_admin.php:338 class.bcn_admin.php:342
148
  msgid ""
149
  "Warning: Your network settings may override any settings set in this page."
150
  msgstr ""
151
 
152
+ #: class.bcn_admin.php:347 class.bcn_network_admin.php:417
153
  msgid ""
154
  "Warning: No BCN_SETTINGS_* define statement found, defaulting to "
155
+ "BCN_SETTINGS_USE_LOCAL."
156
  msgstr ""
157
 
158
+ #: class.bcn_admin.php:359 class.bcn_network_admin.php:430
159
  msgid ""
160
  "Warning: Your are using a deprecated setting \"Title Length\" (see "
161
  "Miscellaneous &gt; Deprecated), please %1$suse CSS instead%2$s."
162
  msgstr ""
163
 
164
+ #: class.bcn_admin.php:359 class.bcn_admin.php:644
165
+ #: class.bcn_network_admin.php:430 class.bcn_network_admin.php:715
166
  msgid "Go to the guide on trimming breadcrumb title lengths with CSS"
167
  msgstr ""
168
 
169
+ #: class.bcn_admin.php:376
170
  msgid "Breadcrumb NavXT Settings"
171
  msgstr ""
172
 
173
+ #: class.bcn_admin.php:388 class.bcn_network_admin.php:459
174
  msgid ""
175
  "A collection of settings most likely to be modified are located under this "
176
  "tab."
177
  msgstr ""
178
 
179
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:463
180
  msgid "Breadcrumb Separator"
181
  msgstr ""
182
 
183
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:463
184
  msgid "Placed in between each breadcrumb."
185
  msgstr ""
186
 
187
+ #: class.bcn_admin.php:396 class.bcn_network_admin.php:467
188
  msgid "Current Item"
189
  msgstr ""
190
 
191
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:470
192
  msgid "Link Current Item"
193
  msgstr ""
194
 
195
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:470
196
  msgid "Yes"
197
  msgstr ""
198
 
199
+ #: class.bcn_admin.php:400 class.bcn_network_admin.php:471
200
  msgid "Paged Breadcrumb"
201
  msgstr ""
202
 
203
+ #: class.bcn_admin.php:400 class.bcn_network_admin.php:471
204
  msgid "Include the paged breadcrumb in the breadcrumb trail."
205
  msgstr ""
206
 
207
+ #: class.bcn_admin.php:400 class.bcn_network_admin.php:471
208
  msgid ""
209
  "Indicates that the user is on a page other than the first on paginated posts/"
210
  "pages."
211
  msgstr ""
212
 
213
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:472
214
  msgid "Paged Template"
215
  msgstr ""
216
 
217
+ #: class.bcn_admin.php:401 class.bcn_network_admin.php:472
218
  msgid "The template for paged breadcrumbs."
219
  msgstr ""
220
 
221
+ #: class.bcn_admin.php:405 class.bcn_admin.php:408
222
+ #: class.bcn_network_admin.php:476 class.bcn_network_admin.php:479
223
  msgid "Home Breadcrumb"
224
  msgstr ""
225
 
226
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:479
227
  msgid "Place the home breadcrumb in the trail."
228
  msgstr ""
229
 
230
+ #: class.bcn_admin.php:409 class.bcn_network_admin.php:480
231
  msgid "Home Template"
232
  msgstr ""
233
 
234
+ #: class.bcn_admin.php:409 class.bcn_network_admin.php:480
235
  msgid "The template for the home breadcrumb."
236
  msgstr ""
237
 
238
+ #: class.bcn_admin.php:410 class.bcn_network_admin.php:481
239
  msgid "Home Template (Unlinked)"
240
  msgstr ""
241
 
242
+ #: class.bcn_admin.php:410 class.bcn_network_admin.php:481
243
  msgid ""
244
  "The template for the home breadcrumb, used when the breadcrumb is not linked."
245
  msgstr ""
246
 
247
+ #: class.bcn_admin.php:414
248
  msgid "Blog Breadcrumb "
249
  msgstr ""
250
 
251
+ #: class.bcn_admin.php:417 class.bcn_network_admin.php:485
252
+ #: class.bcn_network_admin.php:488
253
  msgid "Blog Breadcrumb"
254
  msgstr ""
255
 
256
+ #: class.bcn_admin.php:417 class.bcn_network_admin.php:488
257
  msgid "Place the blog breadcrumb in the trail."
258
  msgstr ""
259
 
260
+ #: class.bcn_admin.php:418 class.bcn_network_admin.php:489
261
  msgid "Blog Template"
262
  msgstr ""
263
 
264
+ #: class.bcn_admin.php:418 class.bcn_network_admin.php:489
265
  msgid ""
266
  "The template for the blog breadcrumb, used only in static front page "
267
  "environments."
268
  msgstr ""
269
 
270
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:490
271
  msgid "Blog Template (Unlinked)"
272
  msgstr ""
273
 
274
+ #: class.bcn_admin.php:419 class.bcn_network_admin.php:490
275
  msgid ""
276
  "The template for the blog breadcrumb, used only in static front page "
277
  "environments and when the breadcrumb is not linked."
278
  msgstr ""
279
 
280
+ #: class.bcn_admin.php:423 class.bcn_network_admin.php:494
281
  msgid "Mainsite Breadcrumb"
282
  msgstr ""
283
 
284
+ #: class.bcn_admin.php:426 class.bcn_network_admin.php:497
285
  msgid "Main Site Breadcrumb"
286
  msgstr ""
287
 
288
+ #: class.bcn_admin.php:426 class.bcn_network_admin.php:497
289
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
290
  msgstr ""
291
 
292
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:498
293
  msgid "Main Site Home Template"
294
  msgstr ""
295
 
296
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:498
297
  msgid ""
298
  "The template for the main site home breadcrumb, used only in multisite "
299
  "environments."
300
  msgstr ""
301
 
302
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:499
303
  msgid "Main Site Home Template (Unlinked)"
304
  msgstr ""
305
 
306
+ #: class.bcn_admin.php:428 class.bcn_network_admin.php:499
307
  msgid ""
308
  "The template for the main site home breadcrumb, used only in multisite "
309
  "environments and when the breadcrumb is not linked."
310
  msgstr ""
311
 
312
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:506
313
  msgid ""
314
  "The settings for all post types (Posts, Pages, and Custom Post Types) are "
315
  "located under this tab."
316
  msgstr ""
317
 
318
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:506
319
  msgid "Post Types"
320
  msgstr ""
321
 
322
+ #: class.bcn_admin.php:436 class.bcn_network_admin.php:507
323
  msgid "Posts"
324
  msgstr ""
325
 
326
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:510
327
  msgid "Post Template"
328
  msgstr ""
329
 
330
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:510
331
  msgid "The template for post breadcrumbs."
332
  msgstr ""
333
 
334
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:511
335
  msgid "Post Template (Unlinked)"
336
  msgstr ""
337
 
338
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:511
339
  msgid ""
340
  "The template for post breadcrumbs, used only when the breadcrumb is not "
341
  "linked."
342
  msgstr ""
343
 
344
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:512
345
  msgid "Post Hierarchy Display"
346
  msgstr ""
347
 
348
+ #: class.bcn_admin.php:441 class.bcn_network_admin.php:512
349
  msgid ""
350
  "Show the hierarchy (specified below) leading to a post in the breadcrumb "
351
  "trail."
352
  msgstr ""
353
 
354
+ #: class.bcn_admin.php:445 class.bcn_network_admin.php:516
355
  msgid "Post Hierarchy"
356
  msgstr ""
357
 
358
+ #: class.bcn_admin.php:449 class.bcn_admin.php:567
359
+ #: class.bcn_network_admin.php:520 class.bcn_network_admin.php:638
360
  msgid "Categories"
361
  msgstr ""
362
 
363
+ #: class.bcn_admin.php:450 class.bcn_admin.php:528
364
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:599
365
  msgid "Dates"
366
  msgstr ""
367
 
368
+ #: class.bcn_admin.php:451 class.bcn_admin.php:574
369
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:645
370
  msgid "Tags"
371
  msgstr ""
372
 
373
+ #: class.bcn_admin.php:453 class.bcn_admin.php:527
374
+ #: class.bcn_network_admin.php:524 class.bcn_network_admin.php:598
375
  msgid "Post Parent"
376
  msgstr ""
377
 
378
+ #: class.bcn_admin.php:469 class.bcn_admin.php:552
379
+ #: class.bcn_network_admin.php:540 class.bcn_network_admin.php:623
380
  msgid ""
381
  "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
382
  "Parent\" option may require an additional plugin to behave as expected since "
383
  "this is a non-hierarchical post type."
384
  msgstr ""
385
 
386
+ #: class.bcn_admin.php:473 class.bcn_network_admin.php:544
387
  msgid "Pages"
388
  msgstr ""
389
 
390
+ #: class.bcn_admin.php:476 class.bcn_network_admin.php:547
391
  msgid "Page Template"
392
  msgstr ""
393
 
394
+ #: class.bcn_admin.php:476 class.bcn_network_admin.php:547
395
  msgid "The template for page breadcrumbs."
396
  msgstr ""
397
 
398
+ #: class.bcn_admin.php:477 class.bcn_network_admin.php:548
399
  msgid "Page Template (Unlinked)"
400
  msgstr ""
401
 
402
+ #: class.bcn_admin.php:477 class.bcn_network_admin.php:548
403
  msgid ""
404
  "The template for page breadcrumbs, used only when the breadcrumb is not "
405
  "linked."
406
  msgstr ""
407
 
408
+ #: class.bcn_admin.php:480 class.bcn_network_admin.php:551
409
  msgid "Attachments"
410
  msgstr ""
411
 
412
+ #: class.bcn_admin.php:483 class.bcn_network_admin.php:554
413
  msgid "Attachment Template"
414
  msgstr ""
415
 
416
+ #: class.bcn_admin.php:483 class.bcn_network_admin.php:554
417
  msgid "The template for attachment breadcrumbs."
418
  msgstr ""
419
 
420
+ #: class.bcn_admin.php:484 class.bcn_network_admin.php:555
421
  msgid "Attachment Template (Unlinked)"
422
  msgstr ""
423
 
424
+ #: class.bcn_admin.php:484 class.bcn_network_admin.php:555
425
  msgid ""
426
  "The template for attachment breadcrumbs, used only when the breadcrumb is "
427
  "not linked."
428
  msgstr ""
429
 
430
+ #: class.bcn_admin.php:504 class.bcn_admin.php:605
431
+ #: class.bcn_network_admin.php:575 class.bcn_network_admin.php:676
432
  msgid "%s Template"
433
  msgstr ""
434
 
435
+ #: class.bcn_admin.php:504 class.bcn_admin.php:605
436
+ #: class.bcn_network_admin.php:575 class.bcn_network_admin.php:676
437
  msgid "The template for %s breadcrumbs."
438
  msgstr ""
439
 
440
+ #: class.bcn_admin.php:505 class.bcn_admin.php:606
441
+ #: class.bcn_network_admin.php:576 class.bcn_network_admin.php:677
442
  msgid "%s Template (Unlinked)"
443
  msgstr ""
444
 
445
+ #: class.bcn_admin.php:505 class.bcn_admin.php:606
446
+ #: class.bcn_network_admin.php:576 class.bcn_network_admin.php:677
447
  msgid ""
448
  "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
449
  msgstr ""
450
 
451
+ #: class.bcn_admin.php:510 class.bcn_network_admin.php:581
452
  msgid "%s Root Page"
453
  msgstr ""
454
 
455
+ #: class.bcn_admin.php:513 class.bcn_network_admin.php:584
456
  msgid "&mdash; Select &mdash;"
457
  msgstr ""
458
 
459
+ #: class.bcn_admin.php:517 class.bcn_network_admin.php:588
460
  msgid "%s Archive Display"
461
  msgstr ""
462
 
463
+ #: class.bcn_admin.php:517 class.bcn_network_admin.php:588
464
  msgid ""
465
  "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
466
  msgstr ""
467
 
468
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:589
469
  msgid "%s Hierarchy Display"
470
  msgstr ""
471
 
472
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:589
473
  msgid ""
474
  "Show the hierarchy (specified below) leading to a %s in the breadcrumb trail."
475
  msgstr ""
476
 
477
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:593
478
  msgid "%s Hierarchy"
479
  msgstr ""
480
 
481
+ #: class.bcn_admin.php:548 class.bcn_network_admin.php:619
482
  msgid "The hierarchy which the breadcrumb trail will show."
483
  msgstr ""
484
 
485
+ #: class.bcn_admin.php:566 class.bcn_network_admin.php:637
486
  msgid ""
487
  "The settings for all taxonomies (including Categories, Tags, and custom "
488
  "taxonomies) are located under this tab."
489
  msgstr ""
490
 
491
+ #: class.bcn_admin.php:566 class.bcn_network_admin.php:637
492
  msgid "Taxonomies"
493
  msgstr ""
494
 
495
+ #: class.bcn_admin.php:570 class.bcn_network_admin.php:641
496
  msgid "Category Template"
497
  msgstr ""
498
 
499
+ #: class.bcn_admin.php:570 class.bcn_network_admin.php:641
500
  msgid "The template for category breadcrumbs."
501
  msgstr ""
502
 
503
+ #: class.bcn_admin.php:571 class.bcn_network_admin.php:642
504
  msgid "Category Template (Unlinked)"
505
  msgstr ""
506
 
507
+ #: class.bcn_admin.php:571 class.bcn_network_admin.php:642
508
  msgid ""
509
  "The template for category breadcrumbs, used only when the breadcrumb is not "
510
  "linked."
511
  msgstr ""
512
 
513
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:648
514
  msgid "Tag Template"
515
  msgstr ""
516
 
517
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:648
518
  msgid "The template for tag breadcrumbs."
519
  msgstr ""
520
 
521
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:649
522
  msgid "Tag Template (Unlinked)"
523
  msgstr ""
524
 
525
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:649
526
  msgid ""
527
  "The template for tag breadcrumbs, used only when the breadcrumb is not "
528
  "linked."
529
  msgstr ""
530
 
531
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:652
532
  msgid "Post Formats"
533
  msgstr ""
534
 
535
+ #: class.bcn_admin.php:584 class.bcn_network_admin.php:655
536
  msgid "Post Format Template"
537
  msgstr ""
538
 
539
+ #: class.bcn_admin.php:584 class.bcn_network_admin.php:655
540
  msgid "The template for post format breadcrumbs."
541
  msgstr ""
542
 
543
+ #: class.bcn_admin.php:585 class.bcn_network_admin.php:656
544
  msgid "Post Format Template (Unlinked)"
545
  msgstr ""
546
 
547
+ #: class.bcn_admin.php:585 class.bcn_network_admin.php:656
548
  msgid ""
549
  "The template for post_format breadcrumbs, used only when the breadcrumb is "
550
  "not linked."
551
  msgstr ""
552
 
553
+ #: class.bcn_admin.php:615 class.bcn_network_admin.php:686
554
  msgid ""
555
  "The settings for author and date archives, searches, and 404 pages are "
556
  "located under this tab."
557
  msgstr ""
558
 
559
+ #: class.bcn_admin.php:615 class.bcn_admin.php:624
560
+ #: class.bcn_network_admin.php:686 class.bcn_network_admin.php:695
561
  msgid "Miscellaneous"
562
  msgstr ""
563
 
564
+ #: class.bcn_admin.php:616 class.bcn_network_admin.php:687
565
  msgid "Author Archives"
566
  msgstr ""
567
 
568
+ #: class.bcn_admin.php:619 class.bcn_network_admin.php:690
569
  msgid "Author Template"
570
  msgstr ""
571
 
572
+ #: class.bcn_admin.php:619 class.bcn_network_admin.php:690
573
  msgid "The template for author breadcrumbs."
574
  msgstr ""
575
 
576
+ #: class.bcn_admin.php:620 class.bcn_network_admin.php:691
577
  msgid "Author Template (Unlinked)"
578
  msgstr ""
579
 
580
+ #: class.bcn_admin.php:620 class.bcn_network_admin.php:691
581
  msgid ""
582
  "The template for author breadcrumbs, used only when the breadcrumb is not "
583
  "linked."
584
  msgstr ""
585
 
586
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:692
587
  msgid "Author Display Format"
588
  msgstr ""
589
 
590
+ #: class.bcn_admin.php:621 class.bcn_network_admin.php:692
591
  msgid ""
592
  "display_name uses the name specified in \"Display name publicly as\" under "
593
  "the user profile the others correspond to options in the user profile."
594
  msgstr ""
595
 
596
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:698
597
  msgid "Date Template"
598
  msgstr ""
599
 
600
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:698
601
  msgid "The template for date breadcrumbs."
602
  msgstr ""
603
 
604
+ #: class.bcn_admin.php:628 class.bcn_network_admin.php:699
605
  msgid "Date Template (Unlinked)"
606
  msgstr ""
607
 
608
+ #: class.bcn_admin.php:628 class.bcn_network_admin.php:699
609
  msgid ""
610
  "The template for date breadcrumbs, used only when the breadcrumb is not "
611
  "linked."
612
  msgstr ""
613
 
614
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:700
615
  msgid "Search Template"
616
  msgstr ""
617
 
618
+ #: class.bcn_admin.php:629 class.bcn_network_admin.php:700
619
  msgid ""
620
  "The anchor template for search breadcrumbs, used only when the search "
621
  "results span several pages."
622
  msgstr ""
623
 
624
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:701
625
  msgid "Search Template (Unlinked)"
626
  msgstr ""
627
 
628
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:701
629
  msgid ""
630
  "The anchor template for search breadcrumbs, used only when the search "
631
  "results span several pages and the breadcrumb is not linked."
632
  msgstr ""
633
 
634
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:702
635
  msgid "404 Title"
636
  msgstr ""
637
 
638
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:703
639
  msgid "404 Template"
640
  msgstr ""
641
 
642
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:703
643
  msgid "The template for 404 breadcrumbs."
644
  msgstr ""
645
 
646
+ #: class.bcn_admin.php:635 class.bcn_network_admin.php:706
647
  msgid "Deprecated"
648
  msgstr ""
649
 
650
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:710
651
  msgid "Title Length"
652
  msgstr ""
653
 
654
+ #: class.bcn_admin.php:644 class.bcn_network_admin.php:715
655
  msgid ""
656
  "Limit the length of the breadcrumb title. (Deprecated, %suse CSS instead%s)"
657
  msgstr ""
658
 
659
+ #: class.bcn_admin.php:649 class.bcn_network_admin.php:720
660
  msgid "Max Title Length: "
661
  msgstr ""
662
 
663
+ #: class.bcn_admin.php:661 class.bcn_network_admin.php:732
664
  msgid "Save Changes"
665
  msgstr ""
666
 
667
+ #: class.bcn_breadcrumb.php:91
 
 
 
668
  msgid ""
669
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
670
+ "typeof=\"WebPage\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%"
671
+ "\"><span property=\"name\">%htitle%</span></a><meta property=\"position\" "
672
+ "content=\"%position%\"></span>"
673
  msgstr ""
674
 
675
  #: class.bcn_breadcrumb_trail.php:79
676
  msgid "Page %htitle%"
677
  msgstr ""
678
 
679
+ #: class.bcn_breadcrumb_trail.php:102
680
  msgid "404"
681
  msgstr ""
682
 
683
+ #: class.bcn_breadcrumb_trail.php:105
684
  msgid ""
685
  "Search results for &#39;<a title=\"Go to the first page of search results "
686
  "for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
687
  msgstr ""
688
 
689
+ #: class.bcn_breadcrumb_trail.php:107
690
  msgid "Search results for &#39;%htitle%&#39;"
691
  msgstr ""
692
 
693
+ #: class.bcn_breadcrumb_trail.php:110
694
+ msgid ""
695
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
696
+ "typeof=\"WebPage\" title=\"Go to the %title% tag archives.\" href=\"%link%\" "
697
+ "class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property="
698
+ "\"position\" content=\"%position%\"></span>"
699
+ msgstr ""
700
+
701
+ #: class.bcn_breadcrumb_trail.php:115 class.bcn_breadcrumb_trail.php:131
702
  msgid ""
703
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
704
+ "typeof=\"WebPage\" title=\"Go to the %title% archives.\" href=\"%link%\" "
705
+ "class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta property="
706
+ "\"position\" content=\"%position%\"></span>"
707
  msgstr ""
708
 
709
+ #: class.bcn_breadcrumb_trail.php:120
710
  msgid ""
711
  "Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
712
  "\"%link%\" class=\"%type%\">%htitle%</a>"
713
  msgstr ""
714
 
715
+ #: class.bcn_breadcrumb_trail.php:122
716
  msgid "Articles by: %htitle%"
717
  msgstr ""
718
 
719
+ #: class.bcn_breadcrumb_trail.php:127
720
  msgid ""
721
+ "<span property=\"itemListElement\" typeof=\"ListItem\"><a property=\"item\" "
722
+ "typeof=\"WebPage\" title=\"Go to the %title% category archives.\" href="
723
+ "\"%link%\" class=\"%type%\"><span property=\"name\">%htitle%</span></a><meta "
724
+ "property=\"position\" content=\"%position%\"></span>"
725
  msgstr ""
726
 
727
+ #: class.bcn_breadcrumb_trail.php:393
 
 
 
 
 
 
 
728
  msgid "$post global is not of type WP_Post"
729
  msgstr ""
730
 
731
+ #: class.bcn_network_admin.php:400
732
  msgid ""
733
  "Warning: Individual site settings will override any settings set in this "
734
  "page."
735
  msgstr ""
736
 
737
+ #: class.bcn_network_admin.php:408 class.bcn_network_admin.php:412
738
  msgid ""
739
  "Warning: Individual site settings may override any settings set in this page."
740
  msgstr ""
741
 
742
+ #: class.bcn_network_admin.php:447
743
  msgid "Breadcrumb NavXT Network Settings"
744
  msgstr ""
745
 
747
  msgid "Adds a breadcrumb trail to your sidebar"
748
  msgstr ""
749
 
750
+ #: class.bcn_widget.php:99
751
  msgid "Title:"
752
  msgstr ""
753
 
754
+ #: class.bcn_widget.php:103
755
  msgid "Text to show before the trail:"
756
  msgstr ""
757
 
758
+ #: class.bcn_widget.php:107
759
  msgid "Output trail as:"
760
  msgstr ""
761
 
762
+ #: class.bcn_widget.php:109
763
  msgid "List"
764
  msgstr ""
765
 
766
+ #: class.bcn_widget.php:110
767
  msgid "Google (RDFa) Breadcrumbs"
768
  msgstr ""
769
 
770
+ #: class.bcn_widget.php:111
771
  msgid "Plain"
772
  msgstr ""
773
 
774
+ #: class.bcn_widget.php:117
775
  msgid "Link the breadcrumbs"
776
  msgstr ""
777
 
778
+ #: class.bcn_widget.php:119
779
  msgid "Reverse the order of the trail"
780
  msgstr ""
781
 
782
+ #: class.bcn_widget.php:121
783
  msgid "Hide the trail on the front page"
784
  msgstr ""
785
 
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: mtekk, hakre
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
- Requires at least: 3.9
6
- Tested up to: 4.3
7
- Stable tag: 5.2.2
8
  License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
@@ -17,7 +17,7 @@ Breadcrumb NavXT 5.2 and newer require PHP5.3
17
  Breadcrumb NavXT 5.1.1 and older require PHP5.2
18
 
19
  = Features (non-exhaustive) =
20
- * RDFa compatible breadcrumb generation.
21
  * Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
22
  * Network admin settings page for managing breadcrumb settings for all subsites with [configurable global priority](http://mtekk.us/archives/guides/controlling-breadcrumb-navxt-settings-from-the-network-settings-page/ "Go to the article on configuring the network settings priority.").
23
  * Built in WordPress Widget.
@@ -27,31 +27,11 @@ Breadcrumb NavXT 5.1.1 and older require PHP5.2
27
 
28
  = Translations =
29
 
30
- Breadcrumb NavXT distributes with translations for the following languages:
31
-
32
- * English - default -
33
- * Russian by Alexander Samsonov
34
- * Chinese (China) by Amos Lee
35
- * Swedish by Anders Täpp, and Patrik Spathon
36
- * Catalan by Christian Eduardo
37
- * German by Daniel Lang
38
- * Persian by Farjad Mahmoodi
39
- * Turkish by Hakan Er
40
- * Danish by Joachim Jensen of Intox Studio
41
- * Lithuanian by Johannes Rau
42
- * Spanish (Spain) by Karin Sequen
43
- * Portuguese (Portugal) by Luís Rodrigues
44
- * Estonian by Martin Orn
45
- * Dutch by Renée Klein
46
- * Italian by Tamara Balestri
47
- * Finnish by Ville Pilvio
48
- * Korean by Young Pae
49
-
50
- 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").
51
 
52
  == Installation ==
53
  Open the appropriate file for your theme (typically header.php). This can be done within WordPress’ administration panel through Presentation > Theme Editor or through your favorite text editor. Place the following code where you want the breadcrumb trail to appear.
54
- `<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">
55
  <?php if(function_exists('bcn_display'))
56
  {
57
  bcn_display();
@@ -70,11 +50,35 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
70
  6. A screenshot of the Settings Import/Export/Reset form under the Help menu
71
 
72
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  = 5.2.2 =
 
 
74
  * Bug fix: Fixed issue where the current item would use a built in default template rather than the breadcrumb template in the settings.
75
  * Bug fix: Updated currently distributed translations set and list to match the current set of translations that achieve the 90% completeness threshold for inclusion.
76
  * Bug fix: Fixed issue where a PHP warning would be displayed when BCN_SETTINGS_USE_NETWORK is defined.
 
77
  = 5.2.1 =
 
 
78
  * Bug fix: Added additional checks for empty URLs and templates within `bcn_breadcrumb` to prevent various bugs when empty URLs and/or templates are passed in.
79
  * Bug fix: Move away from building URLs for search breadcrumbs and instead using `get_search_link()` to fix support for pretty permalinks.
80
  * Bug fix: Fixed issue where media items (attachments) that have not been attached to a post yet would cause an incorrect breadcrumb trail to be generated.
@@ -82,7 +86,10 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
82
  * Bug fix: Fixed issue where attachments of the front page would have duplicate breadcrumbs for the home page.
83
  * Bug fix: Fixed issue where attachments of pages would have an extraneous breadcrumb relating to the page for posts.
84
  * Bug fix: Fixed issue with the text domain/domain path in the plugin header.
 
85
  = 5.2.0 =
 
 
86
  * Deprecated: The Max Breadcrumb Length setting has been deprecated in favor of [using CSS styling to perform the length limiting](http://mtekk.us/archives/guides/trimming-breadcrumb-title-lengths-with-css/ "Go to the article presenting how to shorten the breadcrumb title length using CSS").
87
  * Behavior change: The archive page for a post type is now generated for the top ancestor post rather than for the current page when "post parent" is used as the post's hierarchy.
88
  * Behavior change: Now requires PHP5.3 or newer.
@@ -92,12 +99,18 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
92
  * Bug fix: Fixed awkward wording in the settings page for post hierarchy settings.
93
  * Bug fix: Fixed missed default templates for post formats when all taxonomy settings had the tax_ prefix added in 5.1.
94
  * Bug fix: Fixed bulk of compatibility issues with bbPress.
 
95
  = 5.1.1 =
 
 
96
  * Bug fix: Fixed issue where attachments and their parents have the same link when 'link current item' is enabled.
97
  * Bug fix: Pass the same parameters into the widget title and (pre) text filters as the default WordPress widgets.
98
  * Bug fix: Fixed issue where PHP warnings would be thrown on author pages for authors that do not have any posts.
99
  * Bug fix: Reduced severity of `$post` global not being of type `WP_Post`, will silently exit on non-WP_DEBUG enabled sites.
 
100
  = 5.1.0 =
 
 
101
  * Behavior change: `bcn_breadcrumb_trail::do_post()` now expects to be passed in a valid WP_Post object.
102
  * Behavior change: `breadcrumb_navxt::version` changed to a constant to allow uninstantiated access of the plugin version.
103
  * New feature: Support Google's RDFa Breadcrumbs microformat by default.
@@ -115,12 +128,18 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
115
  * Bug fix: Fixed issue where the default taxonomy selected for a CPT could be a non-public taxonomy.
116
  * Bug fix: Attachments get their own title within the settings page now.
117
  * Bug fix: Filter the title and pre text in the widget.
 
118
  = 5.0.1 =
 
 
119
  * Behavior Change: Notify multisite users when settings may be overridden by the network settings and vice versa.
120
  * Bug fix: Updated tab style to match WordPress 3.8 look and feel.
121
  * Bug fix: Fixed issue where `bcn_breadcrumb_trail::display_list()` would produce multiple instances of the class attribute.
122
  * Bug fix: Fixed several issues with the uninstaller.
 
123
  = 5.0.0 =
 
 
124
  * Behavior Change: Moved `bcn_breadcrumb_trail::trail` to `bcn_breadcrumb_trail::breadcrumbs`
125
  * Behavior Change: When WordPress is in multisite/network mode, the settings set in the network settings page take priority over subsite settings.
126
  * New feature: Added `bcn_breadcrumb_trail_object` filter.
@@ -129,7 +148,10 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
129
  * New feature: Added Network Admin Settings page.
130
  * New feature: Added `xmlns:v` and `property` to the valid tag attributes.
131
  * Bug fix: The current_item breadcrumb for search results should result in a valid HTTPS link when appropriate.
 
132
  = 4.4.0 =
 
 
133
  * New feature: Added `bcn_breadcrumb_url` filter.
134
  * New feature: Add resource ID to the `bcn_breadcrumb_title` filter.
135
  * New feature: Added `bcn_breadcrumb_template` filter.
@@ -137,7 +159,10 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
137
  * New feature: Added `bcn_template_tags` filter.
138
  * Bug fix: Fixed issue where invalid characters could end up in URLs due to other plugins.
139
  * Bug fix: Revise the allowed HTML for breadcrumbs in the trail.
 
140
  = 4.3.0 =
 
 
141
  * Behaviour change: Home and Mainsite titles were removed.
142
  * Behaviour change: All HTML capable strings are now passed through wp_kses.
143
  * New feature: Added bcn_breadcrumb_url filter.
@@ -147,7 +172,10 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
147
  * Bug fix: Minor tweaks to the tabs in the admin page to better support the new version of jQuery UI tabs (in WordPress 3.5+).
148
  * Bug fix: Fixed issue where initial settings were not being translated due to the text domain not loading.
149
  * Bug fix: Added verbiage to clarify what the "Post Parent" selection for "Post Hierarchy" does.
150
- = 4.2.0 =
 
 
 
151
  * Behaviour change: Date archives are only available for the 'post' post type.
152
  * New feature: All Custom Post Types can now either use a post parent, or taxonomy based hierarchy.
153
  * New feature: Post Format archives are now supported.
@@ -157,7 +185,10 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
157
  * Bug fix: Mainsite link now works on posts and pages in multisite environments.
158
  * Bug fix: `bcn_breadcrumb::title_trim()` no longer cuts HTML encoded characters.
159
  * Bug fix: `bcn_breadcrumb::title_trim()` no longer trims the title when the title length is equal to the max length.
 
160
  = 4.1.0 =
 
 
161
  * 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.
162
  * New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they don't have a parent.
163
  * New feature: Pretext option for the included Widget, allows 'You are here:' type messages in the widget.
@@ -166,18 +197,27 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
166
  * Bug fix: Fixed cause of PHP warnings on empty term archive pages.
167
  * Bug fix: Fixed cause of PHP warnings on term archives restricted to a specified post type.
168
  * Bug fix: Fixed cause of PHP warnings and improper behavior on author archives if showing the page number in the breadcrumb trail.
169
- = 4.0.2 =
 
 
 
170
  * New feature: Estonian translation added props to Martin Orn.
171
  * New feature: Azerbaijani translation added props to Zaur Bayramov.
172
  * Bug fix: Replaced deprecated RDFa and Microformat breadcrumbs with Schema.org breadcrumbs support in the included sidebar widget.
173
  * Bug fix: Mainsite breadcrumbs are linked once again.
174
  * Bug fix: Safe default settings for CPTs and taxonomies should work now.
175
  * Bug fix: Updated translations should work, previously the old ones loaded.
 
176
  = 4.0.1 =
 
 
177
  * New feature: Norwegian translations added props to Jan Rosvoldsve.
178
  * Bug fix: Fixed line 591 and line 646 errors in multisite installs.
179
  * Bug fix: Attachments will now obey the root page setting for their parent, regardless of the parent's post type.
 
180
  = 4.0.0 =
 
 
181
  * Behavior change: Prefix, suffix, and anchor settings have been replaced with templates for all breadcrumb types.
182
  * Behavior change: `bcn_display_nested` function was removed from the main plugin. Will appear in a supplementary plugin.
183
  * Behavior change: Import/Export/Reset tab moved under the admin bar Help menu.
@@ -191,136 +231,11 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
191
  * Bug fix: Tabs on the settings page are now rounded for all "modern" browsers, including Firefox, Chrome, and IE9.
192
  * Bug fix: Tabs on the settings page are now remembered between setting saves (including multiple saves from within the same tab).
193
  * Bug fix: Fixed another cause of the "The following settings were not saved" error message.
194
- = 3.9.0 =
195
- * Behavior change: Settings can not be saved, imported, or exported until any necessary settings updates and/or installs are completed.
196
- * New feature: Support for WordPress 3.1 custom post type archives.
197
- * Bug fix: Displays a warning message in the WordPress dashboard if PHP version is too old rather than trying to deactivate and dieing on all pages.
198
- * Bug fix: Fixed a potential cause for the "options not saved" error.
199
- * Bug fix: Fixed bug where the "Blog Breadcrumb" was not obeyed on archives.
200
- = 3.8.1 =
201
- * Bug fix: Root pages for custom post types should work again.
202
- * Bug fix: The post_post_root and post_page_root not being saved warning when saving settings should be fixed.
203
- = 3.8.0 =
204
- * New feature: Error reporting added for some errors that may occur during a settings save.
205
- * New feature: Custom post types may use dates as their taxonomy type.
206
- * New feature: New display_nested function to facilitate support for Google's Breadcrumbs RDFa and Microformat.
207
- * New feature: Paged display works for all post types now (was previously restricted to archives).
208
- * Bug fix: Fixed a few cases where Breadcrumb NavXT may cause PHP warnings.
209
- * Bug fix: Automatically deactivates if PHP version is tool old rather than just displaying warning message.
210
- * Bug fix: Custom post types that are not associated with any taxonomies no longer cause PHP Notices.
211
- * Bug fix: Various PHP Notices introduced in 3.7.0 were fixed.
212
- * Bug fix: Fixed issue where multiple runs caused the current_item_prefix and current_item_suffix to be applied multiple times.
213
- * Bug fix: The included display functions will behave more appropriately when database settings don't exist.
214
- * Bug fix: Fixed multibyte UTF-8 character support for custom taxonomies.
215
- * Bug fix: Fixed issue where the widget (Appearance > Widgets) would not load the appropriate translations.
216
- = 3.7.0 =
217
- * New feature: Support for "global"/network wide breadcrumb trails in networked setups of WordPress 3.0.
218
- * New feature: Can use any hierarchical post type as a hierarchy for flat post types.
219
- * New feature: Users are now warned if settings are out of date, allowed to do a one click settings migration.
220
- * New feature: Users can now control if a post type uses the "posts page" in it's hierarchy or not.
221
- * Bug fix: Breadcrumb trails for attachments work properly now for custom post types.
222
- * Bug fix: Users can now set custom post types to have a page hierarchy through the settings page.
223
- * Bug fix: Fixed issues where the PHP version check did not work correctly.
224
- * Bug fix: Fixed issue where all settings would get reset on "clean" 3.6.0 installs on plugin activation.
225
- * Bug fix: Fixed issue when a static front page is specified but the post page is not.
226
- = 3.6.0 =
227
- * New feature: Vastly improved support for WordPress custom post types.
228
- * New feature: Can now restrict breadcrumb trail output for the front page in the included Widget.
229
- * New feature: Can now undo setting saves, resets, and imports.
230
- * New feature: Translations for Japanese now included thanks to Kazuhiro Terada.
231
- * Bug fix: Fixed issue where the class element were not closed in a li opening tag.
232
- * Bug fix: Safer handling of blank anchor templates.
233
- * Bug fix: Fixed issue where the %title% tag in the current item anchor template would be trimmed.
234
- = 3.5.1 =
235
- * Bug fix: Fixed issue where a deactivation/activation cycle would reset all of the user specified settings.
236
- * Bug fix: Fixed issue where the archive by date suffix field did not save.
237
- * Bug fix: Fixed issue where custom taxonomy settings did not save.
238
- * Bug fix: Fixed issue where xml settings files would not import.
239
- * Bug fix: French and German translations updated for 3.5.x.
240
- = 3.5.0 =
241
- * New feature: Added actions `bcn_before_fill` and `bcn_after_fill`, see documentation for more information.
242
- * New feature: Widget rewritten to use the WordPress 2.8 Widget API, now multi-widget capable.
243
- * New feature: Widget output can be in list form, can be in reversed order, and can be unlinked.
244
- * Bug fix: Fixed issue where the current tab was forgotten after a save in the settings page.
245
- * Bug fix: Fixed various WP API issues with WordPress 3.0.
246
- * Bug fix: Fixed title trimming so that it works properly with multi-byte characters.
247
- = 3.4.1 =
248
- * Bug fix: Fixed issue with PHP unexpected $end on line 1567 in breadcrumb_navxt_admin.php.
249
- * Bug fix: Fixed issue where the %link% anchor tag would not be replaced with a URI for flat taxonomies (e.g. tags).
250
- * Bug fix: Fixed issue where paged breadcrumbs would cause WP_Error objects to be thrown.
251
- = 3.4.0 =
252
- * New feature: Proper support of custom taxonomies. category_parents and post_tags replaced with term_parents and post_terms.
253
- * New feature: Ability to use date as post "taxonomy".
254
- * New feature: Translations for Italian now included thanks to Luca Camellini.
255
- * Bug fix: Fixed permalink for day breadcrumbs.
256
- * Bug fix: Flat taxonomy archive breadcrumbs now are surrounded by both the standard and archive prefix/suffix combination.
257
- = 3.3.0 =
258
- * Behavior change: The core plugin was removed, and administrative plugin renamed, direct class access still possible.
259
- * New feature: Ability to trim the title length for all breadcrumbs in the trail.
260
- * New feature: Ability to selectively include the "Blog" in addition to the "Home" breadcrumb in the trail (for static frontpage setups).
261
- * New feature: Translations for Russian now included thanks to Yuri Gribov.
262
- * New feature: Translations for Swedish now included thanks to Patrik Spathon.
263
- * Bug fix: Minor tweaks to the settings link in the plugins listing page so that it fits better in WordPress 2.8.
264
- * Bug fix: Now selects the first category hierarchy of a post instead of the last.
265
- = 3.2.1 =
266
- * New feature: Translations for Belorussian now included thanks to "Fat Cow".
267
- * Bug fix: The `bcn_display()` and `bcn_display_list()` wrapper functions obey the `$return parameter`.
268
- * Bug fix: Anchors now will be valid HTML even when a page/category/post title has HTML tags in it.
269
- * Bug fix: Revised `bcn_breadcrumb_trail::category_parents` to work around a bug in `get_category` that causes a WP_Error to be thrown.
270
- * Bug fix: Importing settings XML files should no longer corrupt HTML entities.
271
- * Bug fix: Can no longer import and reset options at the same time.
272
- * Bug fix: WordPress 2.6 should be supported again.
273
- = 3.2.0 =
274
- * New feature: Now can output breadcrumbs in trail as list elements.
275
- * New feature: Translations for Dutch now included thanks to Stan Lenssen.
276
- * New feature: Now breadcrumb trails can be output in reverse order.
277
- * New feature: Ability to reset to default option values in administrative interface.
278
- * New feature: Ability to export settings to a XML file.
279
- * New feature: Ability to import settings from a XML file.
280
- * Bug fix: Anchor templates now protected against complete clearing.
281
- * Bug fix: Administrative interface related styling and JavaScript no longer leaks to other admin pages.
282
- * Bug fix: Calling `bcn_display()` works with the same inputs as `bcn_breadcrumb_trail::display()`.
283
- * Bug fix: Calling `bcn_display()` multiple times will not place duplicate breadcrumbs into the trail.
284
- = 3.1.0 =
285
- * New feature: Tabular plugin integrated into the administrative interface/settings page plugin.
286
- * New feature: Default options now are localized.
287
- * New feature: Plugin uninstaller following the WordPress plugin uninstaller API.
288
- * Bug fix: Administrative interface tweaked, hopefully more usable.
289
- * Bug fix: Tabs work with WordPress 2.8-bleeding-edge.
290
- * Bug fix: Translations for German, French, and Spanish are all updated.
291
- * Bug fix: Paged archives, searches, and frontpage fixed.
292
- = 3.0.2 =
293
- * Bug fix: Default options are installed correctly now for most users.
294
- * Bug fix: Now `bcn_breadcrumb_trail::fill()` is safe to call within the loop.
295
- * Bug fix: In WPMU options now are properly separate/independent for each blog.
296
- * Bug fix: WPMU settings page loads correctly after saving settings.
297
- * Bug fix: Blog_anchor setting not lost on non-static frontpage blogs.
298
- * Bug fix: Tabular add on no longer causes issues with WordPress 2.7.
299
- * New feature: Spanish and French localization files are now included thanks to Karin Sequen and Laurent Grabielle.
300
- = 3.0.1 =
301
- * Bug fix: UTF-8 characters in the administrative interface now save/display correctly.
302
- * Bug fix: Breadcrumb trails for attachments of pages no longer generate PHP errors.
303
- * Bug fix: Administrative interface tweaks for installing default options.
304
- * Bug fix: Changed handling of situation when Posts Page is not set and Front Page is set.
305
- = 3.0.0 =
306
- * New feature: Completely rewritten core and administrative interface.
307
- * New feature: WordPress sidebar widget built in.
308
- * New feature: Breadcrumb trail can output without links.
309
- * New feature: Customizable anchor templates, allows things such as rel="nofollow".
310
- * New feature: The home breadcrumb may now be excluded from the breadcrumb trail.
311
- * Bug fix: 404 page breadcrumbs show up in static frontpage situations where the posts page is a child of the home page.
312
- * Bug fix: Static frontpage situations involving the posts page being more than one level off of the home behave as expected.
313
- * Bug fix: Compatible with all polyglot like plugins.
314
- * Bug fix: Compatible with Viper007bond's Breadcrumb Titles for Pages plugin (but 3.0.0 can replace it as well)
315
- * Bug fix: Author page support should be fixed on some setups where it did not work before.
316
 
317
  == Upgrade Notice ==
318
 
319
- = 5.2.1 =
320
- This version requires PHP5.3 or newer. This is a bug fix release with four bug fixes relating to attachments and a few other bug fixes.
321
-
322
- = 5.2.0 =
323
- This version requires PHP5.3 or newer. Some improvements to the settings page were made. Additionally, note that the Max Breadcrumb Length setting has been deprecated in favor of [using CSS styling to perform the length limiting](http://mtekk.us/archives/guides/trimming-breadcrumb-title-lengths-with-css/ "Go to the article presenting how to shorten the breadcrumb title length using CSS").ion enhances compatibility with bbPress.
324
 
325
- = 5.1.0 =
326
- This version fixes a ton of bugs, plus adds a new filter and features support for RDFa Breadcrumb by default.
2
  Contributors: mtekk, hakre
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
+ Requires at least: 4.0
6
+ Tested up to: 4.4
7
+ Stable tag: 5.3.0
8
  License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
17
  Breadcrumb NavXT 5.1.1 and older require PHP5.2
18
 
19
  = Features (non-exhaustive) =
20
+ * RDFa format Schema.org BreadcrumbList compatible breadcrumb generation.
21
  * Extensive breadcrumb customization control via a settings page with appropriate default values for most use cases.
22
  * Network admin settings page for managing breadcrumb settings for all subsites with [configurable global priority](http://mtekk.us/archives/guides/controlling-breadcrumb-navxt-settings-from-the-network-settings-page/ "Go to the article on configuring the network settings priority.").
23
  * Built in WordPress Widget.
27
 
28
  = Translations =
29
 
30
+ Breadcrumb NavXT now supports WordPress.org language packs. Want to translate Breadcrumb NavXT? Visit [Breadcrumb NavXT's WordPress.org translation project](https://translate.wordpress.org/projects/wp-plugins/breadcrumb-navxt/).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  == Installation ==
33
  Open the appropriate file for your theme (typically header.php). This can be done within WordPress’ administration panel through Presentation > Theme Editor or through your favorite text editor. Place the following code where you want the breadcrumb trail to appear.
34
+ `<div class="breadcrumbs" typeof="BreadcrumbList" vocab="http://schema.org/">
35
  <?php if(function_exists('bcn_display'))
36
  {
37
  bcn_display();
50
  6. A screenshot of the Settings Import/Export/Reset form under the Help menu
51
 
52
  == Changelog ==
53
+
54
+ = 5.3.0 =
55
+ Release date: November 12th, 2015
56
+
57
+ * Behavior change: Breadcrumb NavXT will no longer default to setting the root page for CPTs.
58
+ * Behavior change: Breadcrumb NavXT will no longer inject a breadcrumb for a CPT archive page if a root page is set for that CPT.
59
+ * Behavior change: Breadcrumb NavXT now defaults to `BCN_SETTINGS_USE_LOCAL` rather than `BCN_SETTINGS_USE_NETWORK` if all of the `BCN_SETTINGS_*` globals are not defined.
60
+ * Behavior change: The included widget now supports RDFA style, Schema.org BreadcrumbList format rather than the deprecated Google Breadcrumbs format.
61
+ * Behavior change: Default settings for breadcrumb templates now conform to RDFA style, Schema.org BreadcrumbList format rather than the deprecated Google Breadcrumbs format.
62
+ * New feature: Added `bcn_widget_display_trail` action to enhance the included widget’s extensibility.
63
+ * New feature: Added `bcn_widget_display_types` action to enhance the included widget’s extensibility.
64
+ * New feature: The plugin uninstaller has been re-factored, includes support for uninstalling in PHP5.2.
65
+ * New feature: Unit tests added for all non-deprecated features in bcn_breadcrumb.
66
+ * New feature: Unit tests added for the uninstaller.
67
+ * New feature: Date based hierarchies are now available for CPTs.
68
+ * New feature: Date archives restricted by CPT are now supported.
69
+ * New feature: Taxonomy archives restricted by CPT are now supported.
70
+ * Bug fix: Fixed issue where the multibyte supplicant functions were not always being included due to WordPress shipping with its own subset of theses functions.
71
+ * Bug fix: Fixed issue where on an archive for a post type the archive breadcrumb would appear twice.
72
  = 5.2.2 =
73
+ Release date: June 1st, 2015
74
+
75
  * Bug fix: Fixed issue where the current item would use a built in default template rather than the breadcrumb template in the settings.
76
  * Bug fix: Updated currently distributed translations set and list to match the current set of translations that achieve the 90% completeness threshold for inclusion.
77
  * Bug fix: Fixed issue where a PHP warning would be displayed when BCN_SETTINGS_USE_NETWORK is defined.
78
+
79
  = 5.2.1 =
80
+ Release date: May 25th, 2015
81
+
82
  * Bug fix: Added additional checks for empty URLs and templates within `bcn_breadcrumb` to prevent various bugs when empty URLs and/or templates are passed in.
83
  * Bug fix: Move away from building URLs for search breadcrumbs and instead using `get_search_link()` to fix support for pretty permalinks.
84
  * Bug fix: Fixed issue where media items (attachments) that have not been attached to a post yet would cause an incorrect breadcrumb trail to be generated.
86
  * Bug fix: Fixed issue where attachments of the front page would have duplicate breadcrumbs for the home page.
87
  * Bug fix: Fixed issue where attachments of pages would have an extraneous breadcrumb relating to the page for posts.
88
  * Bug fix: Fixed issue with the text domain/domain path in the plugin header.
89
+
90
  = 5.2.0 =
91
+ Release date: January 9th, 2015
92
+
93
  * Deprecated: The Max Breadcrumb Length setting has been deprecated in favor of [using CSS styling to perform the length limiting](http://mtekk.us/archives/guides/trimming-breadcrumb-title-lengths-with-css/ "Go to the article presenting how to shorten the breadcrumb title length using CSS").
94
  * Behavior change: The archive page for a post type is now generated for the top ancestor post rather than for the current page when "post parent" is used as the post's hierarchy.
95
  * Behavior change: Now requires PHP5.3 or newer.
99
  * Bug fix: Fixed awkward wording in the settings page for post hierarchy settings.
100
  * Bug fix: Fixed missed default templates for post formats when all taxonomy settings had the tax_ prefix added in 5.1.
101
  * Bug fix: Fixed bulk of compatibility issues with bbPress.
102
+
103
  = 5.1.1 =
104
+ Release date: July 29th, 2014
105
+
106
  * Bug fix: Fixed issue where attachments and their parents have the same link when 'link current item' is enabled.
107
  * Bug fix: Pass the same parameters into the widget title and (pre) text filters as the default WordPress widgets.
108
  * Bug fix: Fixed issue where PHP warnings would be thrown on author pages for authors that do not have any posts.
109
  * Bug fix: Reduced severity of `$post` global not being of type `WP_Post`, will silently exit on non-WP_DEBUG enabled sites.
110
+
111
  = 5.1.0 =
112
+ Release date: June 9th, 2014
113
+
114
  * Behavior change: `bcn_breadcrumb_trail::do_post()` now expects to be passed in a valid WP_Post object.
115
  * Behavior change: `breadcrumb_navxt::version` changed to a constant to allow uninstantiated access of the plugin version.
116
  * New feature: Support Google's RDFa Breadcrumbs microformat by default.
128
  * Bug fix: Fixed issue where the default taxonomy selected for a CPT could be a non-public taxonomy.
129
  * Bug fix: Attachments get their own title within the settings page now.
130
  * Bug fix: Filter the title and pre text in the widget.
131
+
132
  = 5.0.1 =
133
+ Release date: December 31st, 2013
134
+
135
  * Behavior Change: Notify multisite users when settings may be overridden by the network settings and vice versa.
136
  * Bug fix: Updated tab style to match WordPress 3.8 look and feel.
137
  * Bug fix: Fixed issue where `bcn_breadcrumb_trail::display_list()` would produce multiple instances of the class attribute.
138
  * Bug fix: Fixed several issues with the uninstaller.
139
+
140
  = 5.0.0 =
141
+ Release date: November 20th, 2013
142
+
143
  * Behavior Change: Moved `bcn_breadcrumb_trail::trail` to `bcn_breadcrumb_trail::breadcrumbs`
144
  * Behavior Change: When WordPress is in multisite/network mode, the settings set in the network settings page take priority over subsite settings.
145
  * New feature: Added `bcn_breadcrumb_trail_object` filter.
148
  * New feature: Added Network Admin Settings page.
149
  * New feature: Added `xmlns:v` and `property` to the valid tag attributes.
150
  * Bug fix: The current_item breadcrumb for search results should result in a valid HTTPS link when appropriate.
151
+
152
  = 4.4.0 =
153
+ Release date: June 21st, 2013
154
+
155
  * New feature: Added `bcn_breadcrumb_url` filter.
156
  * New feature: Add resource ID to the `bcn_breadcrumb_title` filter.
157
  * New feature: Added `bcn_breadcrumb_template` filter.
159
  * New feature: Added `bcn_template_tags` filter.
160
  * Bug fix: Fixed issue where invalid characters could end up in URLs due to other plugins.
161
  * Bug fix: Revise the allowed HTML for breadcrumbs in the trail.
162
+
163
  = 4.3.0 =
164
+ Release date: February 13th, 2013
165
+
166
  * Behaviour change: Home and Mainsite titles were removed.
167
  * Behaviour change: All HTML capable strings are now passed through wp_kses.
168
  * New feature: Added bcn_breadcrumb_url filter.
172
  * Bug fix: Minor tweaks to the tabs in the admin page to better support the new version of jQuery UI tabs (in WordPress 3.5+).
173
  * Bug fix: Fixed issue where initial settings were not being translated due to the text domain not loading.
174
  * Bug fix: Added verbiage to clarify what the "Post Parent" selection for "Post Hierarchy" does.
175
+
176
+ = 4.2.0, 2012-9-28 =
177
+ Release date: September 28th, 2012
178
+
179
  * Behaviour change: Date archives are only available for the 'post' post type.
180
  * New feature: All Custom Post Types can now either use a post parent, or taxonomy based hierarchy.
181
  * New feature: Post Format archives are now supported.
185
  * Bug fix: Mainsite link now works on posts and pages in multisite environments.
186
  * Bug fix: `bcn_breadcrumb::title_trim()` no longer cuts HTML encoded characters.
187
  * Bug fix: `bcn_breadcrumb::title_trim()` no longer trims the title when the title length is equal to the max length.
188
+
189
  = 4.1.0 =
190
+ Release date: June 6th, 2012
191
+
192
  * 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.
193
  * New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they don't have a parent.
194
  * New feature: Pretext option for the included Widget, allows 'You are here:' type messages in the widget.
197
  * Bug fix: Fixed cause of PHP warnings on empty term archive pages.
198
  * Bug fix: Fixed cause of PHP warnings on term archives restricted to a specified post type.
199
  * Bug fix: Fixed cause of PHP warnings and improper behavior on author archives if showing the page number in the breadcrumb trail.
200
+
201
+ = 4.0.2, 2012-2-17 =
202
+ Release date: February 17th, 2012
203
+
204
  * New feature: Estonian translation added props to Martin Orn.
205
  * New feature: Azerbaijani translation added props to Zaur Bayramov.
206
  * Bug fix: Replaced deprecated RDFa and Microformat breadcrumbs with Schema.org breadcrumbs support in the included sidebar widget.
207
  * Bug fix: Mainsite breadcrumbs are linked once again.
208
  * Bug fix: Safe default settings for CPTs and taxonomies should work now.
209
  * Bug fix: Updated translations should work, previously the old ones loaded.
210
+
211
  = 4.0.1 =
212
+ Release date: January 3rd, 2012
213
+
214
  * New feature: Norwegian translations added props to Jan Rosvoldsve.
215
  * Bug fix: Fixed line 591 and line 646 errors in multisite installs.
216
  * Bug fix: Attachments will now obey the root page setting for their parent, regardless of the parent's post type.
217
+
218
  = 4.0.0 =
219
+ Release date: December 14th, 2011
220
+
221
  * Behavior change: Prefix, suffix, and anchor settings have been replaced with templates for all breadcrumb types.
222
  * Behavior change: `bcn_display_nested` function was removed from the main plugin. Will appear in a supplementary plugin.
223
  * Behavior change: Import/Export/Reset tab moved under the admin bar Help menu.
231
  * Bug fix: Tabs on the settings page are now rounded for all "modern" browsers, including Firefox, Chrome, and IE9.
232
  * Bug fix: Tabs on the settings page are now remembered between setting saves (including multiple saves from within the same tab).
233
  * Bug fix: Fixed another cause of the "The following settings were not saved" error message.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
 
235
  == Upgrade Notice ==
236
 
237
+ = 5.3.0 =
238
+ This version requires PHP5.3 or newer. This version adds in support for post type restricted archives (date and taxonomy).
 
 
 
239
 
240
+ = 5.2.1 =
241
+ This version requires PHP5.3 or newer. This is a bug fix release with four bug fixes relating to attachments and a few other bug fixes.
uninstall.php CHANGED
@@ -22,13 +22,78 @@
22
  * @author Tom Klingenberg
23
  */
24
 
 
25
 
26
- /*
27
- * @see bcn_uninstaller
 
 
28
  */
29
- require_once(dirname(__FILE__) . '/class.bcn_uninstaller.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  /*
32
  * main
33
  */
34
- new bcn_uninstaller( array('plugin' => $plugin) );
22
  * @author Tom Klingenberg
23
  */
24
 
25
+ require_once(dirname(__FILE__) . '/includes/class.mtekk_adminkit_uninstaller.php');
26
 
27
+ /**
28
+ * Breadcrumb NavXT uninstaller class
29
+ *
30
+ * @author Tom Klingenberg
31
  */
32
+ class bcn_uninstaller extends mtekk_adminKit_uninstaller
33
+ {
34
+ protected $unique_prefix = 'bcn';
35
+ protected $plugin_basename = null;
36
+
37
+ public function __construct()
38
+ {
39
+ $this->plugin_basename = plugin_basename('/breadcrumb-navxt.php');
40
+ parent::__construct();
41
+ }
42
+ /**
43
+ * Options uninstallation function for legacy
44
+ */
45
+ private function uninstall_legacy()
46
+ {
47
+ delete_option($this->unique_prefix . '_options');
48
+ delete_option($this->unique_prefix . '_options_bk');
49
+ delete_option($this->unique_prefix . '_version');
50
+ delete_site_option($this->unique_prefix . '_options');
51
+ delete_site_option($this->unique_prefix . '_options_bk');
52
+ delete_site_option($this->unique_prefix . '_version');
53
+ }
54
+ /**
55
+ * uninstall breadcrumb navxt admin plugin
56
+ *
57
+ * @return bool
58
+ */
59
+ private function uninstall_options()
60
+ {
61
+ if(version_compare(phpversion(), '5.3.0', '<'))
62
+ {
63
+ return $this->uninstall_legacy();
64
+ }
65
+ //Grab our global breadcrumb_navxt object
66
+ global $breadcrumb_navxt;
67
+ //Load dependencies if applicable
68
+ if(!class_exists('breadcrumb_navxt'))
69
+ {
70
+ require_once($this->_get_plugin_path());
71
+ }
72
+ //Initalize $breadcrumb_navxt so we can use it
73
+ $bcn_breadcrumb_trail = new bcn_breadcrumb_trail();
74
+ //Let's make an instance of our object takes care of everything
75
+ $breadcrumb_navxt = new breadcrumb_navxt($bcn_breadcrumb_trail);
76
+ //Uninstall
77
+ return $breadcrumb_navxt->uninstall();
78
+ }
79
+
80
+ /**
81
+ * uninstall method
82
+ *
83
+ * @return bool wether or not uninstall did run successfull.
84
+ */
85
+ public function uninstall()
86
+ {
87
+ //Only bother to do things
88
+ if($this->is_installed())
89
+ {
90
+ return $this->uninstall_options();
91
+ }
92
+ }
93
+
94
+ } /// class bcn_uninstaller
95
 
96
  /*
97
  * main
98
  */
99
+ new bcn_uninstaller();