Breadcrumb NavXT - Version 5.1.0

Version Description

  • Behavior change: bcn_breadcrumb_trail::do_post() now expects to be passed in a valid WP_Post object.
  • Behavior change: breadcrumb_navxt::version changed to a constant to allow uninstantiated access of the plugin version.
  • New feature: Support Google's RDFa Breadcrumbs microformat by default.
  • New feature: Added bcn_opts_update_prebk filter.
  • Bug fix: Validate HTML5 options on tab traversal.
  • Bug fix: Fixed issue where the settings importer parsed the version string incorrectly.
  • Bug fix: Added 'typeof' to list of valid HTML tag attributes.
  • Bug fix: Prefixed all taxonomies with 'tax_' to prevent name collisions.
  • Bug fix: Added ID to Post and Taxonomy Term Elements in bcn_breadcrumb_trail::do_root() as is done everywhere else.
  • Bug fix: Fixed issue with bcn_breadcrumb_trail::do_author() returning the incorrect user under some circumstances.
  • Bug fix: Fixed issue where saving twice on a tab in the settings page would cause the next page load to open the general tab rather than the current tab.
  • Bug fix: Added bcn_breadcrumb_template filter back into bcn_breadcrumb::set_template(), was a regression in 5.0 from 4.4.
  • Bug fix: Fixed issue where the included widget did not check against default settings, causing PHP Warnings to show up on the frontend under some circumstances.
  • Bug fix: Fixed issue where we didn't handle WP_POST::has_archive correctly when it was a string, causing issues with CPTs generated by some plugins.
  • Bug fix: Fixed issue where the default taxonomy selected for a CPT could be a non-public taxonomy.
  • Bug fix: Attachments get their own title within the settings page now.
  • Bug fix: Filter the title and pre text in the widget.
Download this release

Release Info

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

Code changes from version 5.0.1 to 5.1.0

Files changed (50) hide show
  1. README +0 -0
  2. breadcrumb-navxt.php +30 -13
  3. breadcrumb_navxt_admin.php +3 -3
  4. class.bcn_admin.php +46 -21
  5. class.bcn_breadcrumb.php +5 -5
  6. class.bcn_breadcrumb_trail.php +66 -85
  7. class.bcn_network_admin.php +40 -12
  8. class.bcn_widget.php +14 -13
  9. includes/block_direct_access.php +1 -1
  10. includes/class.mtekk_adminkit.php +10 -6
  11. includes/mtekk_adminkit_tabs.css +0 -5
  12. includes/mtekk_adminkit_tabs.js +19 -10
  13. includes/multibyte_supplicant.php +1 -1
  14. languages/breadcrumb-navxt-ar.mo +0 -0
  15. languages/breadcrumb-navxt-ar.po +0 -177
  16. languages/breadcrumb-navxt-az.mo +0 -0
  17. languages/breadcrumb-navxt-az.po +0 -757
  18. languages/breadcrumb-navxt-ca.mo +0 -0
  19. languages/breadcrumb-navxt-ca.po +815 -752
  20. languages/breadcrumb-navxt-da_DK.mo +0 -0
  21. languages/breadcrumb-navxt-da_DK.po +815 -752
  22. languages/breadcrumb-navxt-de_DE.mo +0 -0
  23. languages/breadcrumb-navxt-de_DE.po +815 -775
  24. languages/breadcrumb-navxt-es_ES.mo +0 -0
  25. languages/breadcrumb-navxt-es_ES.po +815 -752
  26. languages/breadcrumb-navxt-et.mo +0 -0
  27. languages/breadcrumb-navxt-et.po +815 -775
  28. languages/breadcrumb-navxt-fi.mo +0 -0
  29. languages/breadcrumb-navxt-fi.po +815 -775
  30. languages/breadcrumb-navxt-fr_FR.mo +0 -0
  31. languages/breadcrumb-navxt-fr_FR.po +0 -522
  32. languages/breadcrumb-navxt-ja.mo +0 -0
  33. languages/breadcrumb-navxt-ja.po +0 -776
  34. languages/breadcrumb-navxt-lt_LT.mo +0 -0
  35. languages/breadcrumb-navxt-lt_LT.po +819 -781
  36. languages/breadcrumb-navxt-nb_NO.mo +0 -0
  37. languages/breadcrumb-navxt-nb_NO.po +0 -522
  38. languages/breadcrumb-navxt-nl_NL.mo +0 -0
  39. languages/breadcrumb-navxt-nl_NL.po +815 -775
  40. languages/breadcrumb-navxt-pt_PT.mo +0 -0
  41. languages/breadcrumb-navxt-pt_PT.po +815 -775
  42. languages/breadcrumb-navxt-ru_RU.mo +0 -0
  43. languages/breadcrumb-navxt-ru_RU.po +815 -752
  44. languages/breadcrumb-navxt-tr_TR.mo +0 -0
  45. languages/breadcrumb-navxt-tr_TR.po +815 -775
  46. languages/breadcrumb-navxt-zh_CN.mo +0 -0
  47. languages/breadcrumb-navxt-zh_CN.po +816 -0
  48. languages/breadcrumb-navxt.mo +0 -0
  49. languages/breadcrumb-navxt.po +861 -783
  50. readme.txt +25 -6
README DELETED
File without changes
breadcrumb-navxt.php CHANGED
@@ -3,14 +3,14 @@
3
  Plugin Name: Breadcrumb NavXT
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
- Version: 5.0.1
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
10
  TextDomain: breadcrumb-navxt
11
  DomainPath: /languages/
12
  */
13
- /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
@@ -60,7 +60,7 @@ $breadcrumb_navxt = NULL;
60
  //TODO change to extends mtekk_plugKit
61
  class breadcrumb_navxt
62
  {
63
- private $version = '5.0.1';
64
  protected $name = 'Breadcrumb NavXT';
65
  protected $identifier = 'breadcrumb-navxt';
66
  protected $unique_prefix = 'bcn';
@@ -127,6 +127,7 @@ class breadcrumb_navxt
127
  'itemscope' => true,
128
  'itemtype' => true,
129
  'xmlns:v' => true,
 
130
  'property' => true
131
  ),
132
  'img' => array(
@@ -145,6 +146,7 @@ class breadcrumb_navxt
145
  'itemscope' => true,
146
  'itemtype' => true,
147
  'xmlns:v' => true,
 
148
  'property' => true
149
  ),
150
  'span' => array(
@@ -163,6 +165,7 @@ class breadcrumb_navxt
163
  'itemscope' => true,
164
  'itemtype' => true,
165
  'xmlns:v' => true,
 
166
  'property' => true
167
  ),
168
  'h1' => array(
@@ -181,6 +184,7 @@ class breadcrumb_navxt
181
  'itemscope' => true,
182
  'itemtype' => true,
183
  'xmlns:v' => true,
 
184
  'property' => true
185
  ),
186
  'h2' => array(
@@ -199,6 +203,7 @@ class breadcrumb_navxt
199
  'itemscope' => true,
200
  'itemtype' => true,
201
  'xmlns:v' => true,
 
202
  'property' => true
203
  )
204
  );
@@ -206,7 +211,7 @@ class breadcrumb_navxt
206
  }
207
  public function get_version()
208
  {
209
- return $this->version;
210
  }
211
  public function wp_loaded()
212
  {
@@ -245,12 +250,19 @@ class breadcrumb_navxt
245
  if(!$post_type->_builtin)
246
  {
247
  //If the post type does not have settings in the options array yet, we need to load some defaults
248
- if(!array_key_exists('Hpost_' . $post_type->name . '_template', $opts) || !$post_type->hierarchical && !array_key_exists('Spost_' . $post_type->name . '_taxonomy_type', $opts))
249
  {
250
  //Add the necessary option array members
251
- $opts['Hpost_' . $post_type->name . '_template'] = __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt');
252
- $opts['Hpost_' . $post_type->name . '_template_no_anchor'] = __('%htitle%', 'breadcrumb-navxt');
253
- $opts['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
 
 
 
 
 
 
 
254
  //Do type dependent tasks
255
  if($post_type->hierarchical)
256
  {
@@ -268,6 +280,11 @@ class breadcrumb_navxt
268
  //Loop through all of the possible taxonomies
269
  foreach($wp_taxonomies as $taxonomy)
270
  {
 
 
 
 
 
271
  //Activate the first taxonomy valid for this post type and exit the loop
272
  if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
273
  {
@@ -300,11 +317,11 @@ class breadcrumb_navxt
300
  if(!$taxonomy->_builtin)
301
  {
302
  //If the taxonomy does not have settings in the options array yet, we need to load some defaults
303
- if(!array_key_exists('H' . $taxonomy->name . '_template', $opts))
304
  {
305
  //Add the necessary option array members
306
- $opts['H' . $taxonomy->name . '_template'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">%%htitle%%</a>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
307
- $opts['H' . $taxonomy->name . '_template_no_anchor'] = __(sprintf('%%htitle%%', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
308
  }
309
  }
310
  }
@@ -335,12 +352,12 @@ class breadcrumb_navxt
335
  {
336
  if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
337
  {
338
- //Grab the current settings from the db
339
  $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
340
  }
341
  else if(defined('BCN_SETTINGS_FAVOR_LOCAL') && BCN_SETTINGS_FAVOR_LOCAL)
342
  {
343
- //Grab the current settings from the db
344
  $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->breadcrumb_trail->opt);
345
  }
346
  else if(defined('BCN_SETTINGS_FAVOR_NETWORK') && BCN_SETTINGS_FAVOR_NETWORK)
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.1.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
10
  TextDomain: breadcrumb-navxt
11
  DomainPath: /languages/
12
  */
13
+ /* Copyright 2007-2014 John Havlik (email : john.havlik@mtekk.us)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
60
  //TODO change to extends mtekk_plugKit
61
  class breadcrumb_navxt
62
  {
63
+ const version = '5.1.0';
64
  protected $name = 'Breadcrumb NavXT';
65
  protected $identifier = 'breadcrumb-navxt';
66
  protected $unique_prefix = 'bcn';
127
  'itemscope' => true,
128
  'itemtype' => true,
129
  'xmlns:v' => true,
130
+ 'typeof' => true,
131
  'property' => true
132
  ),
133
  'img' => array(
146
  'itemscope' => true,
147
  'itemtype' => true,
148
  'xmlns:v' => true,
149
+ 'typeof' => true,
150
  'property' => true
151
  ),
152
  'span' => array(
165
  'itemscope' => true,
166
  'itemtype' => true,
167
  'xmlns:v' => true,
168
+ 'typeof' => true,
169
  'property' => true
170
  ),
171
  'h1' => array(
184
  'itemscope' => true,
185
  'itemtype' => true,
186
  'xmlns:v' => true,
187
+ 'typeof' => true,
188
  'property' => true
189
  ),
190
  'h2' => array(
203
  'itemscope' => true,
204
  'itemtype' => true,
205
  'xmlns:v' => true,
206
+ 'typeof' => true,
207
  'property' => true
208
  )
209
  );
211
  }
212
  public function get_version()
213
  {
214
+ return self::version;
215
  }
216
  public function wp_loaded()
217
  {
250
  if(!$post_type->_builtin)
251
  {
252
  //If the post type does not have settings in the options array yet, we need to load some defaults
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;
261
+ }
262
+ else
263
+ {
264
+ $opts['bpost_' . $post_type->name . '_archive_display'] = false;
265
+ }
266
  //Do type dependent tasks
267
  if($post_type->hierarchical)
268
  {
280
  //Loop through all of the possible taxonomies
281
  foreach($wp_taxonomies as $taxonomy)
282
  {
283
+ //Check for non-public taxonomies
284
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
285
+ {
286
+ continue;
287
+ }
288
  //Activate the first taxonomy valid for this post type and exit the loop
289
  if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
290
  {
317
  if(!$taxonomy->_builtin)
318
  {
319
  //If the taxonomy does not have settings in the options array yet, we need to load some defaults
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
  }
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
  {
360
+ //Grab the current settings for the current local site from the db
361
  $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->breadcrumb_trail->opt);
362
  }
363
  else if(defined('BCN_SETTINGS_FAVOR_NETWORK') && BCN_SETTINGS_FAVOR_NETWORK)
breadcrumb_navxt_admin.php CHANGED
@@ -3,14 +3,14 @@
3
  Plugin Name: Breadcrumb NavXT 5.0 Migration Compatibility Layer DO NOT ACTIVATE
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: This exists to ease the transition to the new 5.0 plugin layout. Will produce the 'Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate "Breadcrumb NavXT". Also, deactivate "Breadcrumb NavXT 5.0 Migration Compatibility Layer" to make this message disappear.' message. Do not activate or rely on this, it will not be included in Breadcrumb NavXT 5.2.
6
- Version: 5.0.1
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
10
  TextDomain: breadcrumb-navxt
11
  DomainPath: /languages/
12
  */
13
- /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
@@ -32,7 +32,7 @@ function bcn_plugold()
32
  {
33
  if(current_user_can('activate_plugins'))
34
  {
35
- printf('<div class="error"><p>' . __('Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate "Breadcrumb NavXT". Also, deactivate "Breadcrumb NavXT 5.0 Migration Compatibility Layer" to make this message disappear.', 'breadcrumb-navxt') . '</p></div>');
36
  }
37
  }
38
  //If we are in the admin, let's print a warning
3
  Plugin Name: Breadcrumb NavXT 5.0 Migration Compatibility Layer DO NOT ACTIVATE
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: This exists to ease the transition to the new 5.0 plugin layout. Will produce the 'Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate "Breadcrumb NavXT". Also, deactivate "Breadcrumb NavXT 5.0 Migration Compatibility Layer" to make this message disappear.' message. Do not activate or rely on this, it will not be included in Breadcrumb NavXT 5.2.
6
+ Version: 5.1.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
10
  TextDomain: breadcrumb-navxt
11
  DomainPath: /languages/
12
  */
13
+ /* Copyright 2007-2014 John Havlik (email : john.havlik@mtekk.us)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
32
  {
33
  if(current_user_can('activate_plugins'))
34
  {
35
+ printf('<div class="error"><p>' . __('Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate "Breadcrumb NavXT". Also, deactivate the "Breadcrumb NavXT 5.0 Migration Compatibility Layer" plugin to make this message disappear.', 'breadcrumb-navxt') . '</p></div>');
36
  }
37
  }
38
  //If we are in the admin, let's print a warning
class.bcn_admin.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
3
 
4
  This program is free software; you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
@@ -42,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
42
  */
43
  class bcn_admin extends mtekk_adminKit
44
  {
45
- protected $version = '5.0.1';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
@@ -69,7 +69,7 @@ class bcn_admin extends mtekk_adminKit
69
  /**
70
  * admin initialization callback function
71
  *
72
- * is bound to wpordpress action 'admin_init' on instantiation
73
  *
74
  * @since 3.2.0
75
  * @return void
@@ -183,22 +183,42 @@ class bcn_admin extends mtekk_adminKit
183
  unset($opts['Smainsite_title']);
184
  }
185
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
  //Add custom post types
187
- breadcrumb_navxt::find_posttypes($this->opt);
188
  //Add custom taxonomy types
189
- breadcrumb_navxt::find_taxonomies($this->opt);
190
- //Save the passed in opts to the object's option array
191
- $this->opt = $opts;
 
 
 
192
  }
 
 
193
  }
194
  function opts_update_prebk(&$opts)
195
  {
196
- //Add custom post types
197
- breadcrumb_navxt::find_posttypes($this->opt);
198
- //Add custom taxonomy types
199
- breadcrumb_navxt::find_taxonomies($this->opt);
200
- //Let others hook into our settings
201
- $this->opt = apply_filters($this->unique_prefix . '_settings_init', $this->opt);
202
  }
203
  /**
204
  * help action hook function
@@ -323,8 +343,8 @@ class bcn_admin extends mtekk_adminKit
323
  }
324
  //Fall through if no settings mode was set
325
  else
326
- {
327
- $this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK.', 'breadcrumb-navxt');
328
  $this->message['updated fade'][] = __('Warning: Your network settings will override any settings set in this page.', 'breadcrumb-navxt');
329
  }
330
  }
@@ -464,6 +484,11 @@ class bcn_admin extends mtekk_adminKit
464
  <?php
465
  $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', 'large-text', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
466
  $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', 'large-text', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
 
 
 
 
 
467
  $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', 'large-text', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
468
  $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', 'large-text', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
469
  ?>
@@ -550,15 +575,15 @@ class bcn_admin extends mtekk_adminKit
550
  <h3><?php _e('Categories', 'breadcrumb-navxt'); ?></h3>
551
  <table class="form-table">
552
  <?php
553
- $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Hcategory_template', 'large-text', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
554
- $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Hcategory_template_no_anchor', 'large-text', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
555
  ?>
556
  </table>
557
  <h3><?php _e('Tags', 'breadcrumb-navxt'); ?></h3>
558
  <table class="form-table">
559
  <?php
560
- $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Hpost_tag_template', 'large-text', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
561
- $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_tag_template_no_anchor', 'large-text', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
562
  ?>
563
  </table>
564
  <h3><?php _e('Post Formats', 'breadcrumb-navxt'); ?></h3>
@@ -585,8 +610,8 @@ class bcn_admin extends mtekk_adminKit
585
  <h3><?php echo mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'); ?></h3>
586
  <table class="form-table">
587
  <?php
588
- $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $label_lc));
589
- $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $label_lc));
590
  ?>
591
  </table>
592
  <?php
1
  <?php
2
+ /* Copyright 2007-2014 John Havlik (email : john.havlik@mtekk.us)
3
 
4
  This program is free software; you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
42
  */
43
  class bcn_admin extends mtekk_adminKit
44
  {
45
+ protected $version = '5.1.0';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
69
  /**
70
  * admin initialization callback function
71
  *
72
+ * is bound to wordpress action 'admin_init' on instantiation
73
  *
74
  * @since 3.2.0
75
  * @return void
183
  unset($opts['Smainsite_title']);
184
  }
185
  }
186
+ //Upgrading to 5.1.0
187
+ if(version_compare($version, '5.1.0', '<'))
188
+ {
189
+ global $wp_taxonomies;
190
+ foreach($wp_taxonomies as $taxonomy)
191
+ {
192
+ //If we have the old options style for it, update
193
+ if($taxonomy->name !== 'post_format' && isset($opts['H' . $taxonomy->name . '_template']))
194
+ {
195
+ //Migrate to the new setting name
196
+ $opts['Htax_' . $taxonomy->name . '_template'] = $opts['H' . $taxonomy->name . '_template'];
197
+ $opts['Htax_' . $taxonomy->name . '_template_no_anchor'] = $opts['H' . $taxonomy->name . '_template_no_anchor'];
198
+ //Clean up old settings
199
+ unset($opts['H' . $taxonomy->name . '_template']);
200
+ unset($opts['H' . $taxonomy->name . '_template_no_anchor']);
201
+ }
202
+ }
203
+ }
204
  //Add custom post types
205
+ breadcrumb_navxt::find_posttypes($opts);
206
  //Add custom taxonomy types
207
+ breadcrumb_navxt::find_taxonomies($opts);
208
+ //Set the max title length to 20 if we are not limiting the title and the length was 0
209
+ if(!$opts['blimit_title'] && $opts['amax_title_length'] == 0)
210
+ {
211
+ $opts['amax_title_length'] = 20;
212
+ }
213
  }
214
+ //Save the passed in opts to the object's option array
215
+ $this->opt = $opts;
216
  }
217
  function opts_update_prebk(&$opts)
218
  {
219
+ //This may no longer be needed
220
+ breadcrumb_navxt::setup_options($opts);
221
+ $opts = apply_filters('bcn_opts_update_prebk', $opts);
 
 
 
222
  }
223
  /**
224
  * help action hook function
343
  }
344
  //Fall through if no settings mode was set
345
  else
346
+ {
347
+ $this->message['updated fade'][] = __('Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK.', 'breadcrumb-navxt');
348
  $this->message['updated fade'][] = __('Warning: Your network settings will override any settings set in this page.', 'breadcrumb-navxt');
349
  }
350
  }
484
  <?php
485
  $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', 'large-text', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
486
  $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', 'large-text', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
487
+ ?>
488
+ </table>
489
+ <h3><?php _e('Attachments', 'breadcrumb-navxt'); ?></h3>
490
+ <table class="form-table">
491
+ <?php
492
  $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', 'large-text', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
493
  $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', 'large-text', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
494
  ?>
575
  <h3><?php _e('Categories', 'breadcrumb-navxt'); ?></h3>
576
  <table class="form-table">
577
  <?php
578
+ $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Htax_category_template', 'large-text', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
579
+ $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Htax_category_template_no_anchor', 'large-text', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
580
  ?>
581
  </table>
582
  <h3><?php _e('Tags', 'breadcrumb-navxt'); ?></h3>
583
  <table class="form-table">
584
  <?php
585
+ $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Htax_post_tag_template', 'large-text', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
586
+ $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Htax_post_tag_template_no_anchor', 'large-text', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
587
  ?>
588
  </table>
589
  <h3><?php _e('Post Formats', 'breadcrumb-navxt'); ?></h3>
610
  <h3><?php echo mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'); ?></h3>
611
  <table class="form-table">
612
  <?php
613
+ $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'Htax_' . $taxonomy->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $label_lc));
614
+ $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'Htax_' . $taxonomy->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $label_lc));
615
  ?>
616
  </table>
617
  <?php
class.bcn_breadcrumb.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
@@ -60,16 +60,16 @@ class bcn_breadcrumb
60
  {
61
  if($url == NULL)
62
  {
63
- $template = $this->template = __('%htitle%', 'breadcrumb-navxt');
64
  }
65
  else
66
  {
67
- $template = __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt');
68
  }
69
  }
70
  if($url == NULL)
71
  {
72
- $this->template_no_anchor = wp_kses($template, $this->allowed_html);
73
  }
74
  else
75
  {
@@ -121,7 +121,7 @@ class bcn_breadcrumb
121
  public function set_template($template)
122
  {
123
  //Assign the breadcrumb template
124
- $this->template = wp_kses($template, $this->allowed_html);
125
  }
126
  /**
127
  * Function to set the internal breadcrumb ID
1
  <?php
2
  /*
3
+ Copyright 2007-2014 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
60
  {
61
  if($url == NULL)
62
  {
63
+ $template = __('<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>', 'breadcrumb-navxt');
64
  }
65
  else
66
  {
67
+ $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');
68
  }
69
  }
70
  if($url == NULL)
71
  {
72
+ $this->template_no_anchor = wp_kses(apply_filters('bcn_breadcrumb_template_no_anchor', $template, $this->type, $this->id), $this->allowed_html);
73
  }
74
  else
75
  {
121
  public function set_template($template)
122
  {
123
  //Assign the breadcrumb template
124
+ $this->template = wp_kses(apply_filters('bcn_breadcrumb_template', $template, $this->type, $this->id), $this->allowed_html);
125
  }
126
  /**
127
  * Function to set the internal breadcrumb ID
class.bcn_breadcrumb_trail.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
21
  class bcn_breadcrumb_trail
22
  {
23
  //Our member variables
24
- private $version = '5.0.1';
25
  //An array of breadcrumbs
26
  public $breadcrumbs = array();
27
  public $trail = array();
@@ -30,11 +30,8 @@ class bcn_breadcrumb_trail
30
  //Default constructor
31
  public function __construct()
32
  {
33
- global $l10n;
34
- // the global and the check might become obsolete in
35
- // further wordpress versions
36
- // @see https://core.trac.wordpress.org/ticket/10527
37
- if(!isset($l10n['breadcrumb-navxt']))
38
  {
39
  load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
40
  }
@@ -46,35 +43,35 @@ class bcn_breadcrumb_trail
46
  //Should the mainsite be shown
47
  'bmainsite_display' => true,
48
  //The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
49
- 'Hmainsite_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
50
  //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%
51
- 'Hmainsite_template_no_anchor' => '%htitle%',
52
  //Should the home page be shown
53
  'bhome_display' => true,
54
  //The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
55
- 'Hhome_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
56
  //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%
57
- 'Hhome_template_no_anchor' => '%htitle%',
58
  //Should the blog page be shown globally
59
  'bblog_display' => true,
60
  //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%
61
- 'Hblog_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
62
  //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%
63
- 'Hblog_template_no_anchor' => '%htitle%',
64
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
65
  //the first and not after the last breadcrumb
66
  'hseparator' => ' &gt; ',
67
  //Whether or not we should trim the breadcrumb titles
68
  'blimit_title' => false,
69
- //The maximum title lenght
70
  'amax_title_length' => 20,
71
  //Current item options, really only applies to static pages and posts unless other current items are linked
72
  'bcurrent_item_linked' => false,
73
  //Static page options
74
  //The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
75
- 'Hpost_page_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
76
  //The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
77
- 'Hpost_page_template_no_anchor' => '%htitle%',
78
  //Just a link to the page on front property
79
  'apost_page_root' => get_option('page_on_front'),
80
  //Paged options
@@ -84,9 +81,9 @@ class bcn_breadcrumb_trail
84
  'bpaged_display' => false,
85
  //The post options previously singleblogpost
86
  //The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
87
- 'Hpost_post_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
88
  //The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
89
- 'Hpost_post_template_no_anchor' => '%htitle%',
90
  //Just a link for the page for posts
91
  'apost_post_root' => get_option('page_for_posts'),
92
  //Should the trail include the taxonomy of the post
@@ -96,12 +93,12 @@ class bcn_breadcrumb_trail
96
  //Attachment settings
97
  //TODO: Need to move attachments to support via normal post handlers
98
  //The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
99
- 'Hpost_attachment_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
100
  //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
101
- 'Hpost_attachment_template_no_anchor' => '%htitle%',
102
  //404 page settings
103
  //The template for 404 breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
104
- 'H404_template' => '%htitle%',
105
  //The text to be shown in the breadcrumb for a 404 page
106
  'S404_title' => __('404', 'breadcrumb-navxt'),
107
  //Search page options
@@ -111,14 +108,14 @@ class bcn_breadcrumb_trail
111
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
112
  //Tag related stuff
113
  //The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
114
- 'Hpost_tag_template' => __('<a title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
115
  //The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
116
- 'Hpost_tag_template_no_anchor' => '%htitle%',
117
  //Post format related stuff
118
  //The breadcrumb template for post format breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
119
- 'Hpost_format_template' => __('<a title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
120
  //The breadcrumb template for post format breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
121
- 'Hpost_format_template_no_anchor' => '%htitle%',
122
  //Author page stuff
123
  //The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
124
  'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
@@ -128,13 +125,13 @@ class bcn_breadcrumb_trail
128
  'Sauthor_name' => 'display_name',
129
  //Category stuff
130
  //The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
131
- 'Hcategory_template' => __('<a title="Go to the %title% category archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
132
  //The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
133
- 'Hcategory_template_no_anchor' => '%htitle%',
134
  //The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
135
- 'Hdate_template' => __('<a title="Go to the %title% archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
136
  //The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
137
- 'Hdate_template_no_anchor' => '%htitle%'
138
  );
139
  }
140
  /**
@@ -185,9 +182,7 @@ class bcn_breadcrumb_trail
185
  */
186
  protected function do_author()
187
  {
188
- global $author;
189
- //Get the Author name, note it is an object
190
- $curauth = (isset($_GET['author_name'])) ? get_userdatabylogin($author_name) : get_userdata(intval($author));
191
  //Setup array of valid author_name values
192
  $valid_author_name = array('display_name', 'nickname', 'first_name', 'last_name');
193
  //This translation allows us to easily select the display type later on
@@ -197,13 +192,13 @@ class bcn_breadcrumb_trail
197
  {
198
  //TODO Evaluate the need for this filter call
199
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
200
- $breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_author', $curauth->$author_name), $this->opt['Hauthor_template_no_anchor'], array('author', 'current-item'), NULL, $curauth->ID));
201
  //If we're paged, or allowing the current item to be linked, let's link to the first page
202
  if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
203
  {
204
  //Set the template to our one containing an anchor
205
  $breadcrumb->set_template($this->opt['Hauthor_template']);
206
- $breadcrumb->set_url(get_author_posts_url($curauth->ID));
207
  }
208
  }
209
  }
@@ -281,7 +276,7 @@ class bcn_breadcrumb_trail
281
  * @param int $id The id of the post to find the terms for.
282
  * @param string $taxonomy The name of the taxonomy that the term belongs to
283
  *
284
- * TODO Need to implement this cleaner, fix up the entire tag_ thing, as this is now generic
285
  * TODO This still needs to be updated to the new method of adding breadcrumbs to the trail
286
  */
287
  protected function post_terms($id, $taxonomy)
@@ -308,7 +303,7 @@ class bcn_breadcrumb_trail
308
  $bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . str_replace(
309
  array('%title%', '%link%', '%htitle%', '%type%'),
310
  array($term->name, get_term_link($term, $taxonomy), $term->name, $term->taxonomy),
311
- $this->opt['H' . $term->taxonomy . '_template']));
312
  $is_first = false;
313
  }
314
  }
@@ -319,14 +314,13 @@ class bcn_breadcrumb_trail
319
  * This recursive functions fills the trail with breadcrumbs for parent terms.
320
  * @param int $id The id of the term.
321
  * @param string $taxonomy The name of the taxonomy that the term belongs to
322
- * @TODO Evaluate if we need to do tax_ for a prefix
323
  */
324
  protected function term_parents($id, $taxonomy)
325
  {
326
  //Get the current category object, filter applied within this call
327
  $term = get_term($id, $taxonomy);
328
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
329
- $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $taxonomy . '_template'], array('taxonomy', $taxonomy), get_term_link($term, $taxonomy), $id));
330
  //Make sure the id is valid, and that we won't end up spinning in a loop
331
  if($term->parent && $term->parent != $id)
332
  {
@@ -358,12 +352,14 @@ class bcn_breadcrumb_trail
358
  * A Breadcrumb Trail Filling Function
359
  *
360
  * This functions fills a breadcrumb for posts
 
 
361
  */
362
- protected function do_post()
363
  {
364
- global $post, $page;
365
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, template, and type
366
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_' . $post->post_type . '_template_no_anchor'], array('post', 'post-' . $post->post_type, 'current-item'), NULL, $post->ID));
367
  //If the current item is to be linked, or this is a paged post, add in links
368
  if($this->opt['bcurrent_item_linked'] || ($page > 1 && $this->opt['bpaged_display']))
369
  {
@@ -394,8 +390,6 @@ class bcn_breadcrumb_trail
394
  * A Breadcrumb Trail Filling Function
395
  *
396
  * This functions fills a breadcrumb for an attachment page.
397
- *
398
- * @TODO Evaluate if this can be merged in with the do_post function
399
  */
400
  protected function do_attachment()
401
  {
@@ -411,29 +405,8 @@ class bcn_breadcrumb_trail
411
  }
412
  //Get the parent's information
413
  $parent = get_post($post->post_parent);
414
- //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
415
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($post->post_parent), $this->opt['Hpost_' . $parent->post_type . '_template'], array($parent->post_type), get_permalink($post->post_parent), $post->post_parent));
416
- //We need to treat flat and hiearchical post attachment hierachies differently
417
- if(is_post_type_hierarchical($parent->post_type))
418
- {
419
- //Done with the current item, now on to the parents
420
- $frontpage = get_option('page_on_front');
421
- //If there is a parent page let's find it
422
- if($parent->post_parent && $parent->ID != $parent->post_parent && $frontpage != $parent->post_parent)
423
- {
424
- $this->post_parents($parent->post_parent, $frontpage);
425
- }
426
- else if(!$this->is_builtin($parent->post_type))
427
- {
428
- //Handle the post's taxonomy
429
- $this->post_hierarchy($post->post_parent, $parent->post_type);
430
- }
431
- }
432
- else
433
- {
434
- //Handle the post's taxonomy
435
- $this->post_hierarchy($post->post_parent, $parent->post_type);
436
- }
437
  }
438
  /**
439
  * A Breadcrumb Trail Filling Function
@@ -447,11 +420,11 @@ class bcn_breadcrumb_trail
447
  //Simmilar to using $post, but for things $post doesn't cover
448
  $term = $wp_query->get_queried_object();
449
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
450
- $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $term->taxonomy . '_template_no_anchor'], array('archive', 'taxonomy', $term->taxonomy, 'current-item'), NULL, $term->term_id));
451
  //If we're paged, let's link to the first page
452
  if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
453
  {
454
- $breadcrumb->set_template($this->opt['H' . $term->taxonomy . '_template']);
455
  //Figure out the anchor for current category
456
  $breadcrumb->set_url(get_term_link($term, $term->taxonomy));
457
  }
@@ -631,7 +604,7 @@ class bcn_breadcrumb_trail
631
  return $type->has_archive;
632
  }
633
  /**
634
- * This function populates our type_str and posts_id variables
635
  *
636
  * @param post $type A post object we are using to figureout the type
637
  * @param string $type_str The type string variable, passed by reference
@@ -675,7 +648,7 @@ class bcn_breadcrumb_trail
675
  }
676
  else
677
  {
678
- $type_str = "post";
679
  }
680
  }
681
  /**
@@ -699,21 +672,29 @@ class bcn_breadcrumb_trail
699
  $type = $wp_query->get_queried_object();
700
  }
701
  $root_id = -1;
 
702
  //Find our type string and root_id
703
  $this->find_type($type, $type_str, $root_id);
704
- //These two are for taxonomy archives and for a single custom post type
 
 
 
705
  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))
706
  {
707
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
708
  $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)));
709
  }
710
- else if(isset($type->taxonomy) && !$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]))
 
711
  {
712
  //We end up using the post type in several places, give it a variable
713
  $post_type = $wp_taxonomies[$type->taxonomy]->object_type[0];
714
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
715
  $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)));
716
  }
 
 
 
717
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
718
  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()))
719
  {
@@ -727,7 +708,7 @@ class bcn_breadcrumb_trail
727
  if($root_id && $root_id != $frontpage_id)
728
  {
729
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
730
- $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)));
731
  //If we are at home, then we need to add the current item type
732
  if(is_home())
733
  {
@@ -823,7 +804,7 @@ class bcn_breadcrumb_trail
823
  //For all other post types
824
  else
825
  {
826
- $this->do_post();
827
  }
828
  }
829
  //For searches
@@ -895,7 +876,9 @@ class bcn_breadcrumb_trail
895
  * @return string String-Data of breadcrumb trail.
896
  * @param bool $return Whether to return data or to echo it.
897
  * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
898
- * @param bool $reverse[optional] Whether to reverse the output or not.
 
 
899
  */
900
  public function display($return = false, $linked = true, $reverse = false)
901
  {
@@ -906,7 +889,7 @@ class bcn_breadcrumb_trail
906
  //The main compiling loop
907
  foreach($this->breadcrumbs as $key => $breadcrumb)
908
  {
909
- //Must branch if we are reversing the output or not
910
  if($reverse)
911
  {
912
  //Add in the separator only if we are the 2nd or greater element
@@ -947,8 +930,8 @@ class bcn_breadcrumb_trail
947
  /**
948
  * This functions outputs or returns the breadcrumb trail in list form.
949
  *
950
- * @return void Void if Option to print out breadcrumb trail was chosen.
951
- * @return string String-Data of breadcrumb trail.
952
  * @param bool $return Whether to return data or to echo it.
953
  * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
954
  * @param bool $reverse[optional] Whether to reverse the output or not.
@@ -964,10 +947,9 @@ class bcn_breadcrumb_trail
964
  //The main compiling loop
965
  foreach($this->breadcrumbs as $key => $breadcrumb)
966
  {
967
- $trail_str .= '<li';
968
  $li_class = '';
969
  //On the first run we need to add in a class for the home breadcrumb
970
- if($trail_str === '<li')
971
  {
972
  $li_class .= ' class="home';
973
  if($key === 0)
@@ -983,16 +965,15 @@ class bcn_breadcrumb_trail
983
  $li_class .= ' class="current_item"';
984
  }
985
  //Filter li_attributes adding attributes to the li element
986
- $trail_str .= apply_filters('bcn_li_attributes', $li_class, $breadcrumb->type, $breadcrumb->get_id());
987
- //Trim titles, if needed
988
  if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
989
  {
990
  //Trim the breadcrumb's title
991
  $breadcrumb->title_trim($this->opt['amax_title_length']);
992
  }
993
- //Place in the breadcrumb's assembled elements
994
- $trail_str .= '>' . $breadcrumb->assemble($linked);
995
- $trail_str .= "</li>\n";
996
  }
997
  //Should we return or echo the assembled trail?
998
  if($return)
1
  <?php
2
  /*
3
+ Copyright 2007-2014 John Havlik (email : john.havlik@mtekk.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
21
  class bcn_breadcrumb_trail
22
  {
23
  //Our member variables
24
+ private $version = '5.1.0';
25
  //An array of breadcrumbs
26
  public $breadcrumbs = array();
27
  public $trail = array();
30
  //Default constructor
31
  public function __construct()
32
  {
33
+ //@see https://core.trac.wordpress.org/ticket/10527
34
+ if(!is_textdomain_loaded('breadcrumb-navxt'))
 
 
 
35
  {
36
  load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
37
  }
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; ',
64
  //Whether or not we should trim the breadcrumb titles
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
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
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
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
+ 'Hpost_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
+ 'Hpost_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'),
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
  /**
182
  */
183
  protected function do_author()
184
  {
185
+ global $authordata;
 
 
186
  //Setup array of valid author_name values
187
  $valid_author_name = array('display_name', 'nickname', 'first_name', 'last_name');
188
  //This translation allows us to easily select the display type later on
192
  {
193
  //TODO Evaluate the need for this filter call
194
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
195
+ $breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_author', $authordata->$author_name), $this->opt['Hauthor_template_no_anchor'], array('author', 'current-item'), NULL, $authordata->ID));
196
  //If we're paged, or allowing the current item to be linked, let's link to the first page
197
  if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
198
  {
199
  //Set the template to our one containing an anchor
200
  $breadcrumb->set_template($this->opt['Hauthor_template']);
201
+ $breadcrumb->set_url(get_author_posts_url($authordata->ID));
202
  }
203
  }
204
  }
276
  * @param int $id The id of the post to find the terms for.
277
  * @param string $taxonomy The name of the taxonomy that the term belongs to
278
  *
279
+ * TODO Need to implement this cleaner
280
  * TODO This still needs to be updated to the new method of adding breadcrumbs to the trail
281
  */
282
  protected function post_terms($id, $taxonomy)
303
  $bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . str_replace(
304
  array('%title%', '%link%', '%htitle%', '%type%'),
305
  array($term->name, get_term_link($term, $taxonomy), $term->name, $term->taxonomy),
306
+ $this->opt['Htax_' . $term->taxonomy . '_template']));
307
  $is_first = false;
308
  }
309
  }
314
  * This recursive functions fills the trail with breadcrumbs for parent terms.
315
  * @param int $id The id of the term.
316
  * @param string $taxonomy The name of the taxonomy that the term belongs to
 
317
  */
318
  protected function term_parents($id, $taxonomy)
319
  {
320
  //Get the current category object, filter applied within this call
321
  $term = get_term($id, $taxonomy);
322
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
323
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['Htax_' . $taxonomy . '_template'], array('taxonomy', $taxonomy), get_term_link($term, $taxonomy), $id));
324
  //Make sure the id is valid, and that we won't end up spinning in a loop
325
  if($term->parent && $term->parent != $id)
326
  {
352
  * A Breadcrumb Trail Filling Function
353
  *
354
  * This functions fills a breadcrumb for posts
355
+ *
356
+ * @param $post WP_Post Instance of WP_Post object to create a breadcrumb for
357
  */
358
+ protected function do_post(WP_Post $post)
359
  {
360
+ global $page;
361
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, template, and type
362
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($post), $this->opt['Hpost_' . $post->post_type . '_template_no_anchor'], array('post', 'post-' . $post->post_type, 'current-item'), NULL, $post->ID));
363
  //If the current item is to be linked, or this is a paged post, add in links
364
  if($this->opt['bcurrent_item_linked'] || ($page > 1 && $this->opt['bpaged_display']))
365
  {
390
  * A Breadcrumb Trail Filling Function
391
  *
392
  * This functions fills a breadcrumb for an attachment page.
 
 
393
  */
394
  protected function do_attachment()
395
  {
405
  }
406
  //Get the parent's information
407
  $parent = get_post($post->post_parent);
408
+ //Take care of the parent's breadcrumb
409
+ $this->do_post($parent);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
410
  }
411
  /**
412
  * A Breadcrumb Trail Filling Function
420
  //Simmilar to using $post, but for things $post doesn't cover
421
  $term = $wp_query->get_queried_object();
422
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
423
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['Htax_' . $term->taxonomy . '_template_no_anchor'], array('archive', 'taxonomy', $term->taxonomy, 'current-item'), NULL, $term->term_id));
424
  //If we're paged, let's link to the first page
425
  if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
426
  {
427
+ $breadcrumb->set_template($this->opt['Htax_' . $term->taxonomy . '_template']);
428
  //Figure out the anchor for current category
429
  $breadcrumb->set_url(get_term_link($term, $term->taxonomy));
430
  }
604
  return $type->has_archive;
605
  }
606
  /**
607
+ * This function populates our type_str and root_id variables
608
  *
609
  * @param post $type A post object we are using to figureout the type
610
  * @param string $type_str The type string variable, passed by reference
648
  }
649
  else
650
  {
651
+ $type_str = 'post';
652
  }
653
  }
654
  /**
672
  $type = $wp_query->get_queried_object();
673
  }
674
  $root_id = -1;
675
+ $type_str = '';
676
  //Find our type string and root_id
677
  $this->find_type($type, $type_str, $root_id);
678
+ /**
679
+ * TODO: Split this portion off into its own function
680
+ */
681
+ //If this is a custom post type with a post type archive, add it
682
  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))
683
  {
684
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
685
  $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)));
686
  }
687
+ //Otherwise, if this is a custom taxonomy with an archive, add it
688
+ 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]))
689
  {
690
  //We end up using the post type in several places, give it a variable
691
  $post_type = $wp_taxonomies[$type->taxonomy]->object_type[0];
692
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
693
  $breadcrumb = $this->add(new bcn_breadcrumb($this->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)));
694
  }
695
+ /**
696
+ * End TODO
697
+ */
698
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
699
  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()))
700
  {
708
  if($root_id && $root_id != $frontpage_id)
709
  {
710
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
711
+ $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));
712
  //If we are at home, then we need to add the current item type
713
  if(is_home())
714
  {
804
  //For all other post types
805
  else
806
  {
807
+ $this->do_post($GLOBALS['post']);
808
  }
809
  }
810
  //For searches
876
  * @return string String-Data of breadcrumb trail.
877
  * @param bool $return Whether to return data or to echo it.
878
  * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
879
+ * @param bool $reverse[optional] Whether to reverse the output or not.
880
+ *
881
+ * TODO: Fold display and display_list together, two functions are very simmilar
882
  */
883
  public function display($return = false, $linked = true, $reverse = false)
884
  {
889
  //The main compiling loop
890
  foreach($this->breadcrumbs as $key => $breadcrumb)
891
  {
892
+ //We do different things for the separator based on the breadcrumb order
893
  if($reverse)
894
  {
895
  //Add in the separator only if we are the 2nd or greater element
930
  /**
931
  * This functions outputs or returns the breadcrumb trail in list form.
932
  *
933
+ * @return void Void if option to print out breadcrumb trail was chosen.
934
+ * @return string String version of the breadcrumb trail.
935
  * @param bool $return Whether to return data or to echo it.
936
  * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
937
  * @param bool $reverse[optional] Whether to reverse the output or not.
947
  //The main compiling loop
948
  foreach($this->breadcrumbs as $key => $breadcrumb)
949
  {
 
950
  $li_class = '';
951
  //On the first run we need to add in a class for the home breadcrumb
952
+ if($trail_str === '')
953
  {
954
  $li_class .= ' class="home';
955
  if($key === 0)
965
  $li_class .= ' class="current_item"';
966
  }
967
  //Filter li_attributes adding attributes to the li element
968
+ $li_attribs = apply_filters('bcn_li_attributes', $li_class, $breadcrumb->type, $breadcrumb->get_id());
969
+ //Trim titles, if requested
970
  if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
971
  {
972
  //Trim the breadcrumb's title
973
  $breadcrumb->title_trim($this->opt['amax_title_length']);
974
  }
975
+ //Assemble the breadrumb and wrap with li's
976
+ $trail_str .= sprintf("<li%s>%s</li>\n", $li_attribs, $breadcrumb->assemble($linked));
 
977
  }
978
  //Should we return or echo the assembled trail?
979
  if($return)
class.bcn_network_admin.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
3
 
4
  This program is free software; you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
@@ -42,7 +42,7 @@ if(!class_exists('mtekk_adminKit'))
42
  */
43
  class bcn_network_admin extends mtekk_adminKit
44
  {
45
- protected $version = '5.0.1';
46
  protected $full_name = 'Breadcrumb NavXT Network Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_network_options';
@@ -253,13 +253,36 @@ class bcn_network_admin extends mtekk_adminKit
253
  unset($opts['Smainsite_title']);
254
  }
255
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  //Add custom post types
257
- breadcrumb_navxt::find_posttypes($this->opt);
258
  //Add custom taxonomy types
259
- breadcrumb_navxt::find_taxonomies($this->opt);
260
- //Save the passed in opts to the object's option array
261
- $this->opt = $opts;
 
 
 
262
  }
 
 
263
  }
264
  function opts_update_prebk(&$opts)
265
  {
@@ -531,6 +554,11 @@ class bcn_network_admin extends mtekk_adminKit
531
  <?php
532
  $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', 'large-text', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
533
  $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', 'large-text', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
 
 
 
 
 
534
  $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', 'large-text', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
535
  $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', 'large-text', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
536
  ?>
@@ -617,15 +645,15 @@ class bcn_network_admin extends mtekk_adminKit
617
  <h3><?php _e('Categories', 'breadcrumb-navxt'); ?></h3>
618
  <table class="form-table">
619
  <?php
620
- $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Hcategory_template', 'large-text', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
621
- $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Hcategory_template_no_anchor', 'large-text', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
622
  ?>
623
  </table>
624
  <h3><?php _e('Tags', 'breadcrumb-navxt'); ?></h3>
625
  <table class="form-table">
626
  <?php
627
- $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Hpost_tag_template', 'large-text', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
628
- $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_tag_template_no_anchor', 'large-text', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
629
  ?>
630
  </table>
631
  <h3><?php _e('Post Formats', 'breadcrumb-navxt'); ?></h3>
@@ -652,8 +680,8 @@ class bcn_network_admin extends mtekk_adminKit
652
  <h3><?php echo mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'); ?></h3>
653
  <table class="form-table">
654
  <?php
655
- $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $label_lc));
656
- $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $label_lc));
657
  ?>
658
  </table>
659
  <?php
1
  <?php
2
+ /* Copyright 2007-2014 John Havlik (email : john.havlik@mtekk.us)
3
 
4
  This program is free software; you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
42
  */
43
  class bcn_network_admin extends mtekk_adminKit
44
  {
45
+ protected $version = '5.1.0';
46
  protected $full_name = 'Breadcrumb NavXT Network Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_network_options';
253
  unset($opts['Smainsite_title']);
254
  }
255
  }
256
+ //Upgrading to 5.1.0
257
+ if(version_compare($version, '5.1.0', '<'))
258
+ {
259
+ global $wp_taxonomies;
260
+ foreach($wp_taxonomies as $taxonomy)
261
+ {
262
+ //If we have the old options style for it, update
263
+ if($taxonomy->name !== 'post_format' && isset($opts['H' . $taxonomy->name . '_template']))
264
+ {
265
+ //Migrate to the new setting name
266
+ $opts['Htax_' . $taxonomy->name . '_template'] = $opts['H' . $taxonomy->name . '_template'];
267
+ $opts['Htax_' . $taxonomy->name . '_template_no_anchor'] = $opts['H' . $taxonomy->name . '_template_no_anchor'];
268
+ //Clean up old settings
269
+ unset($opts['H' . $taxonomy->name . '_template']);
270
+ unset($opts['H' . $taxonomy->name . '_template_no_anchor']);
271
+ }
272
+ }
273
+ }
274
  //Add custom post types
275
+ breadcrumb_navxt::find_posttypes($opts);
276
  //Add custom taxonomy types
277
+ breadcrumb_navxt::find_taxonomies($opts);
278
+ //Set the max title length to 20 if we are not limiting the title and the length was 0
279
+ if(!$opts['blimit_title'] && $opts['amax_title_length'] == 0)
280
+ {
281
+ $opts['amax_title_length'] = 20;
282
+ }
283
  }
284
+ //Save the passed in opts to the object's option array
285
+ $this->opt = $opts;
286
  }
287
  function opts_update_prebk(&$opts)
288
  {
554
  <?php
555
  $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', 'large-text', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
556
  $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', 'large-text', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
557
+ ?>
558
+ </table>
559
+ <h3><?php _e('Attachments', 'breadcrumb-navxt'); ?></h3>
560
+ <table class="form-table">
561
+ <?php
562
  $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', 'large-text', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
563
  $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', 'large-text', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
564
  ?>
645
  <h3><?php _e('Categories', 'breadcrumb-navxt'); ?></h3>
646
  <table class="form-table">
647
  <?php
648
+ $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Htax_category_template', 'large-text', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
649
+ $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Htax_category_template_no_anchor', 'large-text', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
650
  ?>
651
  </table>
652
  <h3><?php _e('Tags', 'breadcrumb-navxt'); ?></h3>
653
  <table class="form-table">
654
  <?php
655
+ $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Htax_post_tag_template', 'large-text', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
656
+ $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Htax_post_tag_template_no_anchor', 'large-text', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
657
  ?>
658
  </table>
659
  <h3><?php _e('Post Formats', 'breadcrumb-navxt'); ?></h3>
680
  <h3><?php echo mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'); ?></h3>
681
  <table class="form-table">
682
  <?php
683
+ $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'Htax_' . $taxonomy->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $label_lc));
684
+ $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'Htax_' . $taxonomy->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $label_lc));
685
  ?>
686
  </table>
687
  <?php
class.bcn_widget.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2009-2013 John Havlik (email : mtekkmonkey@gmail.com)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
@@ -19,14 +19,12 @@
19
  require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
  class bcn_widget extends WP_Widget
21
  {
 
22
  //Default constructor
23
  function __construct()
24
  {
25
- global $l10n;
26
- // the global and the check might become obsolete in
27
- // further wordpress versions
28
- // @see https://core.trac.wordpress.org/ticket/10527
29
- if(!isset($l10n['breadcrumb-navxt']))
30
  {
31
  load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
32
  }
@@ -35,7 +33,10 @@ class bcn_widget extends WP_Widget
35
  }
36
  function widget($args, $instance)
37
  {
38
- extract($args);
 
 
 
39
  //A bit of a hack but we need the DB settings to know if we should exit early
40
  $opt = get_option('bcn_options');
41
  //If we are on the front page and don't display on the front, return early
@@ -44,10 +45,10 @@ class bcn_widget extends WP_Widget
44
  return;
45
  }
46
  //Manditory before widget junk
47
- echo $before_widget;
48
  if(!empty($instance['title']))
49
  {
50
- echo $before_title . $instance['title'] . $after_title;
51
  }
52
  //We'll want to switch between the two breadcrumb output types
53
  if($instance['type'] == 'list')
@@ -59,7 +60,7 @@ class bcn_widget extends WP_Widget
59
  }
60
  else if($instance['type'] == 'microdata')
61
  {
62
- echo '<div class="breadcrumbs" itemprop="breadcrumbs">' . $instance['pretext'];
63
  //Display the regular output breadcrumb
64
  bcn_display(false, $instance['linked'], $instance['reverse']);
65
  echo '</div>';
@@ -72,7 +73,7 @@ class bcn_widget extends WP_Widget
72
  bcn_display(false, $instance['linked'], $instance['reverse']);
73
  }
74
  //Manditory after widget junk
75
- echo $after_widget;
76
  }
77
  function update($new_instance, $old_instance)
78
  {
@@ -87,7 +88,7 @@ class bcn_widget extends WP_Widget
87
  }
88
  function form($instance)
89
  {
90
- $instance = wp_parse_args((array) $instance, array('title' => '', 'pretext' => '', 'type' => 'plain', 'linked' => true, 'reverse' => false, 'front' => false));?>
91
  <p>
92
  <label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:', 'breadcrumb-navxt'); ?></label>
93
  <input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
@@ -100,7 +101,7 @@ class bcn_widget extends WP_Widget
100
  <label for="<?php echo $this->get_field_id('type'); ?>"> <?php _e('Output trail as:', 'breadcrumb-navxt'); ?></label>
101
  <select name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
102
  <option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', 'breadcrumb-navxt'); ?></option>
103
- <option value="microdata" <?php selected('microdata', $instance['type']);?>><?php _e('Schema.org', 'breadcrumb-navxt'); ?></option>
104
  <option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', 'breadcrumb-navxt'); ?></option>
105
  </select>
106
  </p>
1
  <?php
2
  /*
3
+ Copyright 2009-2014 John Havlik (email : john.havlik@mtekk.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
19
  require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
  class bcn_widget extends WP_Widget
21
  {
22
+ protected $defaults = array('title' => '', 'pretext' => '', 'type' => 'microdata', 'linked' => true, 'reverse' => false, 'front' => false);
23
  //Default constructor
24
  function __construct()
25
  {
26
+ //@see https://core.trac.wordpress.org/ticket/10527
27
+ if(!is_textdomain_loaded('breadcrumb-navxt'))
 
 
 
28
  {
29
  load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
30
  }
33
  }
34
  function widget($args, $instance)
35
  {
36
+ //Make sure we grab defaults in the case of out of date instance settings being sent
37
+ $instance = wp_parse_args((array) $instance, $this->defaults);
38
+ $instance['title'] = apply_filters('widget_title', $instance['title']);
39
+ $instance['pretext'] = apply_filters('widget_text', $instance['pretext']);
40
  //A bit of a hack but we need the DB settings to know if we should exit early
41
  $opt = get_option('bcn_options');
42
  //If we are on the front page and don't display on the front, return early
45
  return;
46
  }
47
  //Manditory before widget junk
48
+ echo $args['before_widget'];
49
  if(!empty($instance['title']))
50
  {
51
+ echo $args['before_title'] . $instance['title'] . $args['after_title'];
52
  }
53
  //We'll want to switch between the two breadcrumb output types
54
  if($instance['type'] == 'list')
60
  }
61
  else if($instance['type'] == 'microdata')
62
  {
63
+ echo '<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">' . $instance['pretext'];
64
  //Display the regular output breadcrumb
65
  bcn_display(false, $instance['linked'], $instance['reverse']);
66
  echo '</div>';
73
  bcn_display(false, $instance['linked'], $instance['reverse']);
74
  }
75
  //Manditory after widget junk
76
+ echo $args['after_widget'];
77
  }
78
  function update($new_instance, $old_instance)
79
  {
88
  }
89
  function form($instance)
90
  {
91
+ $instance = wp_parse_args((array) $instance, $this->defaults);?>
92
  <p>
93
  <label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:', 'breadcrumb-navxt'); ?></label>
94
  <input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
101
  <label for="<?php echo $this->get_field_id('type'); ?>"> <?php _e('Output trail as:', 'breadcrumb-navxt'); ?></label>
102
  <select name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
103
  <option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', 'breadcrumb-navxt'); ?></option>
104
+ <option value="microdata" <?php selected('microdata', $instance['type']);?>><?php _e('Google (RDFa) Breadcrumbs', 'breadcrumb-navxt'); ?></option>
105
  <option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', 'breadcrumb-navxt'); ?></option>
106
  </select>
107
  </p>
includes/block_direct_access.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- /* Copyright 2012-2013 John Havlik (email : mtekkmonkey@gmail.com)
3
 
4
  This program is free software; you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
1
  <?php
2
+ /* Copyright 2012-2014 John Havlik (email : john.havlik@mtekk.us)
3
 
4
  This program is free software; you can redistribute it and/or modify
5
  it under the terms of the GNU General Public License as published by
includes/class.mtekk_adminkit.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- Copyright 2009-2013 John Havlik (email : mtekkmonkey@gmail.com)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
@@ -19,7 +19,7 @@
19
  require_once(dirname(__FILE__) . '/block_direct_access.php');
20
  abstract class mtekk_adminKit
21
  {
22
- private $__version = '1.2';
23
  protected $version;
24
  protected $full_name;
25
  protected $short_name;
@@ -56,7 +56,7 @@ abstract class mtekk_adminKit
56
  */
57
  function get_admin_class_version()
58
  {
59
- return $__version;
60
  }
61
  /**
62
  * Return the URL of the settings page for the plugin
@@ -344,6 +344,7 @@ abstract class mtekk_adminKit
344
  *
345
  * @param array $opts good, clean array
346
  * @param array $input unsanitzed input array, not trusted at all
 
347
  */
348
  protected function opts_update_loop(&$opts, $input)
349
  {
@@ -395,10 +396,13 @@ abstract class mtekk_adminKit
395
  $opts[$option] = esc_html($input[$option]);
396
  }
397
  break;
398
- //Treat everything else as a normal string
399
  case 's':
400
- default:
401
  $opts[$option] = esc_html($input[$option]);
 
 
 
 
402
  }
403
  }
404
  }
@@ -583,7 +587,7 @@ abstract class mtekk_adminKit
583
  if($options->getAttribute('name') === $this->short_name)
584
  {
585
  //Grab the file version
586
- $version = explode('.', $options->getAttribute('version'));
587
  //Loop around all of the options
588
  foreach($options->getelementsByTagName('option') as $child)
589
  {
1
  <?php
2
  /*
3
+ Copyright 2009-2014 John Havlik (email : john.havlik@mtekk.us)
4
 
5
  This program is free software; you can redistribute it and/or modify
6
  it under the terms of the GNU General Public License as published by
19
  require_once(dirname(__FILE__) . '/block_direct_access.php');
20
  abstract class mtekk_adminKit
21
  {
22
+ const __version = '1.2';
23
  protected $version;
24
  protected $full_name;
25
  protected $short_name;
56
  */
57
  function get_admin_class_version()
58
  {
59
+ return self::__version;
60
  }
61
  /**
62
  * Return the URL of the settings page for the plugin
344
  *
345
  * @param array $opts good, clean array
346
  * @param array $input unsanitzed input array, not trusted at all
347
+ * @todo This function should probably get a filter thrown within it to be more extensible
348
  */
349
  protected function opts_update_loop(&$opts, $input)
350
  {
396
  $opts[$option] = esc_html($input[$option]);
397
  }
398
  break;
399
+ //Deal with strings that can be null
400
  case 's':
 
401
  $opts[$option] = esc_html($input[$option]);
402
+ break;
403
+ //By default we have nothing to do, allows for internal settings
404
+ default:
405
+ break;
406
  }
407
  }
408
  }
587
  if($options->getAttribute('name') === $this->short_name)
588
  {
589
  //Grab the file version
590
+ $version = $options->getAttribute('version');
591
  //Loop around all of the options
592
  foreach($options->getelementsByTagName('option') as $child)
593
  {
includes/mtekk_adminkit_tabs.css CHANGED
@@ -1,8 +1,3 @@
1
- /**
2
- * Tabbed Admin Page (CSS)
3
- *
4
- * @author Tom Klingenberg
5
- */
6
  #hasadmintabs ul.ui-tabs-nav{border-bottom:1px solid #ccc; font-size:12px; height:27px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:14px 0 0; overflow:visible;padding:0 0 0 6px;}
7
  #hasadmintabs ul.ui-tabs-nav li{display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;}
8
  #hasadmintabs ul.ui-tabs-nav li a{border-bottom:1px solid #ccc; display:block; color:#464646; float:left; line-height:25px; padding:1px 13px 0; position:relative; text-decoration:none;margin:0 4px 0 0;}
 
 
 
 
 
1
  #hasadmintabs ul.ui-tabs-nav{border-bottom:1px solid #ccc; font-size:12px; height:27px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:14px 0 0; overflow:visible;padding:0 0 0 6px;}
2
  #hasadmintabs ul.ui-tabs-nav li{display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;}
3
  #hasadmintabs ul.ui-tabs-nav li a{border-bottom:1px solid #ccc; display:block; color:#464646; float:left; line-height:25px; padding:1px 13px 0; position:relative; text-decoration:none;margin:0 4px 0 0;}
includes/mtekk_adminkit_tabs.js CHANGED
@@ -17,15 +17,24 @@ function mtekk_admin_tabulator_init(){
17
  jQuery('#hasadmintabs > ul').append('<li><a href="#'+id+'" class="nav-tab '+cssc+'" title="'+title+'"><span>'+caption+"<\/span><\/a><\/li>");
18
  jQuery(this).find('h3.tab-title').hide();
19
  });
20
- /* init the tabs plugin */
21
- var tabs = jQuery("#hasadmintabs").tabs();
22
  var form = jQuery('#'+objectL10n.mtad_uid+'-options');
23
- var action = form.attr("action").split('#', 1) + '#' + jQuery('#hasadmintabs > fieldset').eq(tabs.tabs('option', 'selected')).attr('id');
24
- form.get(0).setAttribute("action", action);
25
- /* handler for opening the last tab after submit (compability version) */
26
- jQuery('#hasadmintabs ul a').click(function(i){
27
- var form = jQuery('#'+objectL10n.mtad_uid+'-options');
28
- var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
29
- form.get(0).setAttribute("action", action);
30
- });
 
 
 
 
 
 
 
 
 
 
 
31
  }
17
  jQuery('#hasadmintabs > ul').append('<li><a href="#'+id+'" class="nav-tab '+cssc+'" title="'+title+'"><span>'+caption+"<\/span><\/a><\/li>");
18
  jQuery(this).find('h3.tab-title').hide();
19
  });
 
 
20
  var form = jQuery('#'+objectL10n.mtad_uid+'-options');
21
+ /* init the tabs plugin */
22
+ var tabs = jQuery("#hasadmintabs").tabs({
23
+ beforeActivate: function(event, ui){
24
+ form.find('input').each(function(){
25
+ if(!this.checkValidity()){
26
+ form.find(':submit').click();
27
+ event.preventDefault();
28
+ }
29
+ });
30
+ /* Update form action for reload on tab traversal*/
31
+ var action = form.attr("action").split('#', 1) + '#' + ui.newPanel[0].id;
32
+ form.get(0).setAttribute("action", action);
33
+ },
34
+ create: function(event, ui){
35
+ /* Update form action for reload of current tab on page load */
36
+ var action = form.attr("action").split('#', 1) + '#' + ui.panel[0].id;
37
+ form.get(0).setAttribute("action", action);
38
+ }
39
+ });
40
  }
includes/multibyte_supplicant.php CHANGED
@@ -3,7 +3,7 @@
3
  A small library that adds in fallbacks for some of the PHP multibyte string
4
  functions. Mainly inteneded to be used with Breadcrumb NavXT
5
 
6
- Copyright 2009-2013 John Havlik (email : mtekkmonkey@gmail.com)
7
 
8
  This program is free software; you can redistribute it and/or modify
9
  it under the terms of the GNU General Public License as published by
3
  A small library that adds in fallbacks for some of the PHP multibyte string
4
  functions. Mainly inteneded to be used with Breadcrumb NavXT
5
 
6
+ Copyright 2009-2014 John Havlik (email : john.havlik@mtekk.us)
7
 
8
  This program is free software; you can redistribute it and/or modify
9
  it under the terms of the GNU General Public License as published by
languages/breadcrumb-navxt-ar.mo DELETED
Binary file
languages/breadcrumb-navxt-ar.po DELETED
@@ -1,177 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Arabic
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-02-09 03:41:03+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=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- 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."
15
- msgstr "الهرمية التي ستظهر بها علامات التتبع . لاحظ ان خيار \"الدوينة الاب \" قد يتطلب اضافات اضافية ليعمل كما هو مطلوب حيث ان هذه الاضافة هي عبارة عن نوع تدوينة بدون هرميات ( من مستوى واحد )"
16
-
17
- #: includes/mtekk_adminkit.php:283
18
- msgid "Your settings are for a newer version."
19
- msgstr "الاعدادات المحفوظة خاصة بإصدار أحدث."
20
-
21
- #: breadcrumb_navxt_widget.php:96
22
- msgid "Text to show before the trail:"
23
- msgstr "النص المراد إظهاره قبل علامات التتبع Breadcrumbs ."
24
-
25
- #: breadcrumb_navxt_widget.php:103
26
- msgid "Schema.org"
27
- msgstr "Schema.org"
28
-
29
- #: breadcrumb_navxt_widget.php:33
30
- msgid "Adds a breadcrumb trail to your sidebar"
31
- msgstr "اضف علامات التتبع Breadcrumbs إلى العمود الجانبي في الموقع"
32
-
33
- #: breadcrumb_navxt_widget.php:92
34
- msgid "Title:"
35
- msgstr "العنوان :"
36
-
37
- #: breadcrumb_navxt_widget.php:100
38
- msgid "Output trail as:"
39
- msgstr "اظهار علامات التتبع ك : "
40
-
41
- #: breadcrumb_navxt_widget.php:102
42
- msgid "List"
43
- msgstr "قائمة"
44
-
45
- #: breadcrumb_navxt_widget.php:104
46
- msgid "Plain"
47
- msgstr "نص عادي"
48
-
49
- #: breadcrumb_navxt_widget.php:109
50
- msgid "Link the breadcrumbs"
51
- msgstr "ضع روابط على علامات التتبع"
52
-
53
- #: breadcrumb_navxt_widget.php:111
54
- msgid "Reverse the order of the trail"
55
- msgstr "عكس ترتيب علامات التتبع"
56
-
57
- #: breadcrumb_navxt_widget.php:113
58
- msgid "Hide the trail on the front page"
59
- msgstr "قم بإخفاء علامات التتبع في الصفحة الرئيسية"
60
-
61
- #: includes/mtekk_adminkit.php:204
62
- msgid "Settings"
63
- msgstr "الاعدادات"
64
-
65
- #: includes/mtekk_adminkit.php:274
66
- msgid "Your settings are out of date."
67
- msgstr "إعداداتك قديمة ."
68
-
69
- #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
70
- msgid "Migrate the settings now."
71
- msgstr "ترحيل الإعدادات الآن."
72
-
73
- #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
74
- msgid "Migrate now."
75
- msgstr "الترحيل الآن."
76
-
77
- #: includes/mtekk_adminkit.php:291
78
- msgid "Your plugin install is incomplete."
79
- msgstr "لم تتم عملية تثبيت الاضافة ."
80
-
81
- #: includes/mtekk_adminkit.php:291
82
- msgid "Load default settings now."
83
- msgstr "حمل الاعدادات الافتراضية الآن."
84
-
85
- #: includes/mtekk_adminkit.php:291
86
- msgid "Complete now."
87
- msgstr "تم الانتهاء ."
88
-
89
- #: includes/mtekk_adminkit.php:299
90
- msgid "Your plugin settings are invalid."
91
- msgstr "ان اعدادت الاضافة غير صحيحة."
92
-
93
- #: includes/mtekk_adminkit.php:299
94
- msgid "Attempt to fix settings now."
95
- msgstr "حاول اصلاح الاعدادات الآن."
96
-
97
- #: includes/mtekk_adminkit.php:299
98
- msgid "Fix now."
99
- msgstr "اصلحها الان"
100
-
101
- #: includes/mtekk_adminkit.php:477
102
- msgid "Settings successfully saved."
103
- msgstr "تم حفظ الاعدادات بنجاح"
104
-
105
- #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
106
- msgid "Undo the options save."
107
- msgstr "تراجع عن حفظ الخيارات"
108
-
109
- #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
110
- #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
111
- #: includes/mtekk_adminkit.php:628
112
- msgid "Undo"
113
- msgstr "تراجع"
114
-
115
- #: includes/mtekk_adminkit.php:482
116
- msgid "Some settings were not saved."
117
- msgstr "هنالك بعض الاعدادات لم يتم حفظها بعد"
118
-
119
- #: includes/mtekk_adminkit.php:483
120
- msgid "The following settings were not saved:"
121
- msgstr "الاعدادات التالية لم يتم حفظها بعد :"
122
-
123
- #: includes/mtekk_adminkit.php:488
124
- msgid "Please include this message in your %sbug report%s."
125
- msgstr "الرجاء ادراج الرسالة التالية في \"%sbug report%s\"."
126
-
127
- #: includes/mtekk_adminkit.php:488
128
- msgid "Go to the %s support post for your version."
129
- msgstr "الرجاء التوجه إلى تدوينة الدعم ( %s) لاصدارك "
130
-
131
- #: includes/mtekk_adminkit.php:587
132
- msgid "Settings successfully imported from the uploaded file."
133
- msgstr "تم استيراد الاعدادات بنجاح من الملف المرفوع."
134
-
135
- #: includes/mtekk_adminkit.php:587
136
- msgid "Undo the options import."
137
- msgstr "التراجع عن استيراد الاعدادات."
138
-
139
- #: includes/mtekk_adminkit.php:592
140
- msgid "Importing settings from file failed."
141
- msgstr "لم تتم عملية استيراد الاعدادات بنجاح من الملف."
142
-
143
- #: includes/mtekk_adminkit.php:611
144
- msgid "Settings successfully reset to the default values."
145
- msgstr "تم استعادة الاعدادات الافتراضية بنجاح"
146
-
147
- #: includes/mtekk_adminkit.php:611
148
- msgid "Undo the options reset."
149
- msgstr "التراجع عن عملية الضبط الافتراضي للاعدادات."
150
-
151
- #: includes/mtekk_adminkit.php:628
152
- msgid "Settings successfully undid the last operation."
153
- msgstr "تم التراجع عن اخر عملية بنجاح ."
154
-
155
- #: includes/mtekk_adminkit.php:628
156
- msgid "Undo the last undo operation."
157
- msgstr "التراجع عن أخر عملية تراجع ."
158
-
159
- #: includes/mtekk_adminkit.php:663
160
- msgid "Settings successfully migrated."
161
- msgstr "تم ترحيل الاعدادات بنجاح"
162
-
163
- #: includes/mtekk_adminkit.php:670
164
- msgid "Default settings successfully installed."
165
- msgstr "تم تثبيت الاعدادات الافتراضية بنجاح"
166
-
167
- #: includes/mtekk_adminkit.php:771
168
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
169
- msgstr "استيراد الاعدادات من ملف XML , تصدير وحفظ الاعدادات في ملف XML , اعادة الضبط للاعدادات الافتراضية ."
170
-
171
- #: includes/mtekk_adminkit.php:774
172
- msgid "Settings File"
173
- msgstr "ملف الإعدادات"
174
-
175
- #: includes/mtekk_adminkit.php:777
176
- msgid "Select a XML settings file to upload and import settings from."
177
- msgstr "تحديد ملف الاعدادات بصيغة XML للقيام بعملية رفعه واستيراد الاعدادات منه ."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-az.mo DELETED
Binary file
languages/breadcrumb-navxt-az.po DELETED
@@ -1,757 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Azerbaijani
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2012-09-28 21:55:44+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_class.php:64 breadcrumb_navxt_class.php:216
14
- #: breadcrumb_navxt_class.php:224 breadcrumb_navxt_class.php:230
15
- #: breadcrumb_navxt_class.php:244 breadcrumb_navxt_class.php:256
16
- #: breadcrumb_navxt_class.php:268
17
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
18
- msgstr "<a title=\"Keçid edin %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
19
-
20
- #: breadcrumb_navxt_class.php:278
21
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
22
- msgstr "Bu nəticə üçün axtarış edin &#39;<a title=\"%title% Başlığı üçün axtarış nəticələrinin ilk səhifəsinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
23
-
24
- #: breadcrumb_navxt_admin.php:325
25
- msgid "A collection of settings most likely to be modified are located under this tab."
26
- msgstr "Bu Tab altında daha çox dəyişdirilən tənzimləmələrin kolleksiyası yerləşir"
27
-
28
- #: breadcrumb_navxt_admin.php:333
29
- msgid "Title Length"
30
- msgstr "Başlıq Uzunluğu"
31
-
32
- #: breadcrumb_navxt_admin.php:338
33
- msgid "Limit the length of the breadcrumb title."
34
- msgstr "Breadcrumb başlığının uzunluğunu məhdudlaşdırmaq"
35
-
36
- #: breadcrumb_navxt_admin.php:399
37
- msgid "Mainsite Breadcrumb"
38
- msgstr "Əsas sayt üçün Breadcrumb"
39
-
40
- #: breadcrumb_navxt_admin.php:430
41
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
42
- msgstr "Bu Tab altında bütün post tipləri ((Postlar, Səhifələr, and Fərdi Post Tipləri) üçün tənzimləmələr yerləşir"
43
-
44
- #: breadcrumb_navxt_admin.php:430
45
- msgid "Post Types"
46
- msgstr "Post Tipləri"
47
-
48
- #: breadcrumb_navxt_admin.php:436
49
- msgid "Post Hierarchy Display"
50
- msgstr "Post İerarxiyası Görünüşü"
51
-
52
- #: breadcrumb_navxt_admin.php:440
53
- msgid "Post Hierarchy"
54
- msgstr "Post İerarxiyası"
55
-
56
- #: breadcrumb_navxt_admin.php:508
57
- msgid "%s Hierarchy Display"
58
- msgstr "%s İerarxiya Görünüşü"
59
-
60
- #: breadcrumb_navxt_admin.php:559
61
- msgid "Post Formats"
62
- msgstr "Post Formatları"
63
-
64
- #: breadcrumb_navxt_admin.php:343
65
- msgid "Max Title Length: "
66
- msgstr "Maksimum Başlıq Uzunluğu:"
67
-
68
- #: breadcrumb_navxt_admin.php:431
69
- msgid "Posts"
70
- msgstr "Postlar"
71
-
72
- #: breadcrumb_navxt_admin.php:448 breadcrumb_navxt_admin.php:517
73
- msgid "Post Parent"
74
- msgstr "Oxşar Postlar"
75
-
76
- #: breadcrumb_navxt_admin.php:464 breadcrumb_navxt_admin.php:533
77
- msgid "The hierarchy which the breadcrumb trail will show."
78
- msgstr "Breadcrumb zolağı göstəriləcək olan ierarxiya."
79
-
80
- #: breadcrumb_navxt_admin.php:512
81
- msgid "%s Hierarchy"
82
- msgstr "%s İerarxiya"
83
-
84
- #: breadcrumb_navxt_admin.php:544
85
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
86
- msgstr "Bu Tab altında bütün taxonomy-lər (Kateqoriyalar, Taglər və fərdi taxonomy-lər daxil olmaqla) üçün tənzimləmələr yerləşir."
87
-
88
- #: breadcrumb_navxt_admin.php:544
89
- msgid "Taxonomies"
90
- msgstr "Taxonomy-lər"
91
-
92
- #: breadcrumb_navxt_admin.php:562
93
- msgid "Post Format Template"
94
- msgstr "Post Formatı Şablonu"
95
-
96
- #: breadcrumb_navxt_admin.php:562
97
- msgid "The template for post format breadcrumbs."
98
- msgstr "Post Formatı breadcrumb-ları şablonu."
99
-
100
- #: breadcrumb_navxt_admin.php:563
101
- msgid "Post Format Template (Unlinked)"
102
- msgstr "Post Formatı Şablonu (Linksiz)"
103
-
104
- #: breadcrumb_navxt_admin.php:563
105
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
106
- msgstr "Yalnız breadcrumb link ilə əlaqələndirilmədikdə, post_format breadcrumb-ları üçün şablondur."
107
-
108
- #: breadcrumb_navxt_admin.php:593
109
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
110
- msgstr "Bu Tab altında müəllif və tarix arxivləri, axtarışlar və 404 səhifələri üçün tənzimləmələr yerləşir"
111
-
112
- #: breadcrumb_navxt_admin.php:594
113
- msgid "Author Archives"
114
- msgstr "Müəllif Arxivi"
115
-
116
- #: breadcrumb_navxt_class.php:283 breadcrumb_navxt_class.php:288
117
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
118
- msgstr "<a title=\"%title% tag arxivinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
119
-
120
- #: breadcrumb_navxt_class.php:293
121
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "Məqalələr: <a title=\"%title% ilə olan postların ilk səhifəsinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:300
125
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "<a title=\"%title% kateqoriya arxivlərinə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:304
129
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"%title% arxivlərə keçid edin.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: includes/mtekk_adminkit.php:283
133
- msgid "Your settings are for a newer version."
134
- msgstr "Yeni versiya üçün sizin nizamlamalarınız."
135
-
136
- #: breadcrumb_navxt_widget.php:96
137
- msgid "Text to show before the trail:"
138
- msgstr "Zolaqdan əvvəl göstəriləcək mətn"
139
-
140
- #: breadcrumb_navxt_widget.php:103
141
- msgid "Schema.org"
142
- msgstr "Schema.org"
143
-
144
- #: breadcrumb_navxt_admin.php:229
145
- msgid "Go to the Breadcrumb NavXT translation project."
146
- msgstr "Breadcrumb NavXT tərcümə proyektinə keçid edin."
147
-
148
- #: breadcrumb_navxt_widget.php:33
149
- msgid "Adds a breadcrumb trail to your sidebar"
150
- msgstr "Sizin sidebara breadcrumb zolağı əlavə edir."
151
-
152
- #: breadcrumb_navxt_widget.php:92
153
- msgid "Title:"
154
- msgstr "Başlıq:"
155
-
156
- #: breadcrumb_navxt_widget.php:100
157
- msgid "Output trail as:"
158
- msgstr "Zolağı bu cür xaric et:"
159
-
160
- #: breadcrumb_navxt_widget.php:102
161
- msgid "List"
162
- msgstr "Siyahı"
163
-
164
- #: breadcrumb_navxt_widget.php:104
165
- msgid "Plain"
166
- msgstr "Düz"
167
-
168
- #: breadcrumb_navxt_widget.php:109
169
- msgid "Link the breadcrumbs"
170
- msgstr "Breadcrumblar linki"
171
-
172
- #: breadcrumb_navxt_widget.php:111
173
- msgid "Reverse the order of the trail"
174
- msgstr "Zolağın sıralanmasını əksinə çevirin."
175
-
176
- #: breadcrumb_navxt_widget.php:113
177
- msgid "Hide the trail on the front page"
178
- msgstr "Ana səhifədə zolağı gizlədin"
179
-
180
- #: breadcrumb_navxt_admin.php:120
181
- msgid "Insufficient privileges to proceed."
182
- msgstr "Davam etmək üçün kifayət qədər icazə yoxdur."
183
-
184
- #: breadcrumb_navxt_admin.php:222
185
- msgid "Tips for the settings are located below select options."
186
- msgstr "Tənzimləmər üçün tiplər seçim tənzimləmələrinin aşağısında yerləşdirilib."
187
-
188
- #: breadcrumb_navxt_admin.php:223
189
- msgid "Resources"
190
- msgstr "Resurslar"
191
-
192
- #: breadcrumb_navxt_admin.php:224
193
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
194
- msgstr "%s Dərsliklər və İzahlar %s: Müəllifin web saytında çoxlu dərsliklər, izahlar və necə etmək barədə yazılar mövcuddur."
195
-
196
- #: breadcrumb_navxt_admin.php:224
197
- msgid "Go to the Breadcrumb NavXT tag archive."
198
- msgstr "Breadcrumb NavXT tag arxivinə gedin"
199
-
200
- #: breadcrumb_navxt_admin.php:225
201
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
202
- msgstr "%sOnline Dokumentasiya%s: Çoxlu texniki məlumat zənginliyi üçün dokumentasiyanı yoxlayın."
203
-
204
- #: breadcrumb_navxt_admin.php:225
205
- msgid "Go to the Breadcrumb NavXT online documentation"
206
- msgstr "Breadcrumb NavXT online dokumentasiyasına keçid edin"
207
-
208
- #: breadcrumb_navxt_admin.php:226
209
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
210
- msgstr "%sReport a Bug%s: Əgər səhv tapdığınızı düşünürsünüzsə, zəhmət olmasa WordPress versiyasını və səhvi necə aradan qaldırmaq barədə ətraflı olaraq daxil edin."
211
-
212
- #: breadcrumb_navxt_admin.php:226
213
- msgid "Go to the Breadcrumb NavXT support post for your version."
214
- msgstr "Sizin versiya üçün Breadcrumb NavXT dəstək məqaləsinə keçid edin."
215
-
216
- #: breadcrumb_navxt_admin.php:227
217
- msgid "Giving Back"
218
- msgstr "Geri Vermək"
219
-
220
- #: breadcrumb_navxt_admin.php:228
221
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
222
- msgstr "%sPul Yardımı%s: Breadcrumb NavXT - ni bəyəndiniz və inkişafına kömək etmək istəyirsiniz? Müəllifi pivə almağa görə nəzərə alın."
223
-
224
- #: breadcrumb_navxt_admin.php:228
225
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
226
- msgstr "Breadcrumb NavXT üçün pul yardımı etmək üçün PayPal-a keçid edin."
227
-
228
- #: breadcrumb_navxt_admin.php:229
229
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
230
- msgstr "%sTərcümə%s: Sizin diliniz mövcud deyil? John Havlik ilə tərcümə üçün əlaqə yaradın."
231
-
232
- #: breadcrumb_navxt_admin.php:234 breadcrumb_navxt_admin.php:325
233
- #: breadcrumb_navxt_admin.php:326
234
- msgid "General"
235
- msgstr "Ümumi"
236
-
237
- #: breadcrumb_navxt_admin.php:237
238
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
239
- msgstr "Tənzimləmələrin bu səhifədə effekt verməyi üçün, daxil edilən Breadcrumb NavXT widget-ni istifadə etməlisiniz, ya da kod bloklarını temanızın içinə daxil eməlisiniz."
240
-
241
- #: breadcrumb_navxt_admin.php:238
242
- msgid "Breadcrumb trail with separators"
243
- msgstr "Breadcrumb zolağı ayırıcılar ilə"
244
-
245
- #: breadcrumb_navxt_admin.php:244
246
- msgid "Breadcrumb trail in list form"
247
- msgstr "Breadcrumb zolağı form siyahısında"
248
-
249
- #: breadcrumb_navxt_admin.php:253
250
- msgid "Quick Start"
251
- msgstr "Cəld Başlanğıc"
252
-
253
- #: breadcrumb_navxt_admin.php:256
254
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
255
- msgstr "Yuxarıdakı Cəld Başlanğıc bölməsindəki kodu istifadə etməklə, növbəti CSS sizin breadcrumb zolağı üçün təməl olaraq istifadə ediləcəkdir."
256
-
257
- #: breadcrumb_navxt_admin.php:268
258
- msgid "Styling"
259
- msgstr "Stil"
260
-
261
- #: breadcrumb_navxt_admin.php:274
262
- msgid "Import/Export/Reset"
263
- msgstr "İdxal/İxrac/Sıfırlama"
264
-
265
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:779
266
- msgid "Import"
267
- msgstr "İdxal"
268
-
269
- #: breadcrumb_navxt_admin.php:299 includes/mtekk_adminkit.php:780
270
- msgid "Export"
271
- msgstr "İxrac"
272
-
273
- #: breadcrumb_navxt_admin.php:300 includes/mtekk_adminkit.php:781
274
- msgid "Reset"
275
- msgstr "Sıfırlama"
276
-
277
- #: breadcrumb_navxt_admin.php:313
278
- msgid "Breadcrumb NavXT Settings"
279
- msgstr "Breadcrumb NavXT Tənzimləmələri"
280
-
281
- #: breadcrumb_navxt_admin.php:329
282
- msgid "Breadcrumb Separator"
283
- msgstr "Breadcrumb Ayırıcı"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Placed in between each breadcrumb."
287
- msgstr "Hər breadcrumb arasında yerləşdirilir."
288
-
289
- #: breadcrumb_navxt_admin.php:363 breadcrumb_navxt_admin.php:367
290
- msgid "Home Breadcrumb"
291
- msgstr "Ana Səhifə Breadcrumb"
292
-
293
- #: breadcrumb_navxt_admin.php:372
294
- msgid "Place the home breadcrumb in the trail."
295
- msgstr "Ana Səhifə breadcrumb-ı zolaqda yerləşdirin."
296
-
297
- #: breadcrumb_navxt_admin.php:377
298
- msgid "Home Title: "
299
- msgstr "Ana Səhifə Başlığı:"
300
-
301
- #: breadcrumb_navxt_admin.php:385
302
- msgid "Home Template"
303
- msgstr "Ana Səhifə Şablonu"
304
-
305
- #: breadcrumb_navxt_admin.php:385
306
- msgid "The template for the home breadcrumb."
307
- msgstr "Ana Səhifə breadcrumb-ı üçün Şablon"
308
-
309
- #: breadcrumb_navxt_admin.php:386
310
- msgid "Home Template (Unlinked)"
311
- msgstr "Ana Səhifə Şablonu (Linksiz)"
312
-
313
- #: breadcrumb_navxt_admin.php:386
314
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
315
- msgstr "Ana Səhifə breadcrumb-ı üçün şablon, breacrumb link ilə əlaqələndirilmədikdə istifadə olunur."
316
-
317
- #: breadcrumb_navxt_admin.php:390 breadcrumb_navxt_admin.php:393
318
- msgid "Blog Breadcrumb"
319
- msgstr "Blog Breadcrumb"
320
-
321
- #: breadcrumb_navxt_admin.php:393
322
- msgid "Place the blog breadcrumb in the trail."
323
- msgstr "Blog breadcrumb-nı zolaqda yerləşdirin."
324
-
325
- #: breadcrumb_navxt_admin.php:394
326
- msgid "Blog Template"
327
- msgstr "Blog Şablonu"
328
-
329
- #: breadcrumb_navxt_admin.php:394
330
- msgid "The template for the blog breadcrumb, used only in static front page environments."
331
- msgstr "Blog breadcrumb-ı üçün şablon, yalnız statik ana səhifə vəziyyətində istifadə olunur."
332
-
333
- #: breadcrumb_navxt_admin.php:395
334
- msgid "Blog Template (Unlinked)"
335
- msgstr "Blog Şablonu (Linksiz)"
336
-
337
- #: breadcrumb_navxt_admin.php:395
338
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
339
- msgstr "Blog breadcrumb-ı üçün şablon, yalnız statik ana səhifəsi vəziyyətində və breadcrumb link ilə əlaqələndirilmədikdə istifadə olunur."
340
-
341
- #: breadcrumb_navxt_admin.php:403
342
- msgid "Main Site Breadcrumb"
343
- msgstr "Əsas Sayt Breadcrumb-ı"
344
-
345
- #: breadcrumb_navxt_admin.php:408
346
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
347
- msgstr "Əsas Sayt Breadcrumb-nı mutisayt quraşdırılması vəziyyətində olarkən zolaqda yerləşdirin."
348
-
349
- #: breadcrumb_navxt_admin.php:413
350
- msgid "Main Site Home Title: "
351
- msgstr "Əsas Sayt Ana Səhifə başlığı:"
352
-
353
- #: breadcrumb_navxt_admin.php:422
354
- msgid "Main Site Home Template"
355
- msgstr "Əsas Sayt Ana Səhifə Şablonu"
356
-
357
- #: breadcrumb_navxt_admin.php:422
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində istifadə edilir."
360
-
361
- #: breadcrumb_navxt_admin.php:423
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Əsas Sayt Ana Səhifə Şablonu (Bəyənilməyən)"
364
-
365
- #: breadcrumb_navxt_admin.php:423
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Əsas Saytın Ana Səhifəsinin breadcrumb-ı üçün şablon, yalnız multisayt şəraitində və breadcrumb link ilə əlaqələndirilmədikdə istifadə olunur."
368
-
369
- #: breadcrumb_navxt_admin.php:354
370
- msgid "Current Item"
371
- msgstr "Cari Element"
372
-
373
- #: breadcrumb_navxt_admin.php:357
374
- msgid "Link Current Item"
375
- msgstr "Cari Elmentin Linki"
376
-
377
- #: breadcrumb_navxt_admin.php:357
378
- msgid "Yes"
379
- msgstr "Hə"
380
-
381
- #: breadcrumb_navxt_admin.php:358
382
- msgid "Paged Breadcrumb"
383
- msgstr "Səhifələnmiş Breadcrumb"
384
-
385
- #: breadcrumb_navxt_admin.php:358
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Səhifələnmiş Breadcrumb-ı breadcrumb zolağında daxil edin."
388
-
389
- #: breadcrumb_navxt_admin.php:358
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "İstifadəçi məqalələr/səhifələr səhifələnməsində (pagination) birincidən başqa səhifələrdə olarkən bildirir."
392
-
393
- #: breadcrumb_navxt_admin.php:359
394
- msgid "Paged Template"
395
- msgstr "Səhifələnmə Şablonu"
396
-
397
- #: breadcrumb_navxt_admin.php:359
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Səhidələniş breadcrumb üçün şablon."
400
-
401
- #: breadcrumb_navxt_admin.php:434
402
- msgid "Post Template"
403
- msgstr "Məqalə Şablonu"
404
-
405
- #: breadcrumb_navxt_admin.php:434
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Məqalə breadcrumb-ı üçün şablon."
408
-
409
- #: breadcrumb_navxt_admin.php:435
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Məqalə Şablonu (Bəyənilməyən)"
412
-
413
- #: breadcrumb_navxt_admin.php:435
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Məqalə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
416
-
417
- #: breadcrumb_navxt_admin.php:436
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Məqalənin taxonomy liderliyini breadcrumb zolağında göstərir."
420
-
421
- #: breadcrumb_navxt_admin.php:444 breadcrumb_navxt_admin.php:545
422
- msgid "Categories"
423
- msgstr "Kateqoriyalar"
424
-
425
- #: breadcrumb_navxt_admin.php:445
426
- msgid "Dates"
427
- msgstr "Tarixlər"
428
-
429
- #: breadcrumb_navxt_admin.php:446 breadcrumb_navxt_admin.php:552
430
- msgid "Tags"
431
- msgstr "Taglər"
432
-
433
- #: breadcrumb_navxt_admin.php:468
434
- msgid "Pages"
435
- msgstr "Səhifələr"
436
-
437
- #: breadcrumb_navxt_admin.php:471
438
- msgid "Page Template"
439
- msgstr "Səhifə Şablonu"
440
-
441
- #: breadcrumb_navxt_admin.php:471
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Səhifə breadcrumbları üçüb şablon."
444
-
445
- #: breadcrumb_navxt_admin.php:472
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Səhifə Şablonu (Bəyənilməyən)"
448
-
449
- #: breadcrumb_navxt_admin.php:472
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Səhifə breadcrumb-ı üçüb şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
452
-
453
- #: breadcrumb_navxt_admin.php:473
454
- msgid "Attachment Template"
455
- msgstr "Fayl Yükləmə Şablonu"
456
-
457
- #: breadcrumb_navxt_admin.php:473
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon."
460
-
461
- #: breadcrumb_navxt_admin.php:474
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Fayl Yükləmə Şablonu (Bəyənilməyən)"
464
-
465
- #: breadcrumb_navxt_admin.php:474
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
468
-
469
- #: breadcrumb_navxt_admin.php:661
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"%title% üçün gedin.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:662 breadcrumb_navxt_class.php:60
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
478
- msgid "%s Template"
479
- msgstr "%s Şablon"
480
-
481
- #: breadcrumb_navxt_admin.php:494 breadcrumb_navxt_admin.php:583
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "%s breadcrumblar üçün şablon."
484
-
485
- #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
486
- msgid "%s Template (Unlinked)"
487
- msgstr "%s Şablon (Bəyənilməyən)"
488
-
489
- #: breadcrumb_navxt_admin.php:495 breadcrumb_navxt_admin.php:584
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "%s breadcrumblar üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
492
-
493
- #: breadcrumb_navxt_admin.php:500
494
- msgid "%s Root Page"
495
- msgstr "%s Təməl Səhifə"
496
-
497
- #: breadcrumb_navxt_admin.php:503
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Seçin &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:507
502
- msgid "%s Archive Display"
503
- msgstr "%s Arxiv Görünüşü"
504
-
505
- #: breadcrumb_navxt_admin.php:507
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "%s məqalə tipi arxivləri üçün breadcrumb-ı breadcrumb zolağında göstərin."
508
-
509
- #: breadcrumb_navxt_admin.php:508
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Təsnifat liderliyini %s üçün breadcrumb zolağında göstərin."
512
-
513
- #: breadcrumb_navxt_admin.php:548
514
- msgid "Category Template"
515
- msgstr "Kateqoriya Şablonu"
516
-
517
- #: breadcrumb_navxt_admin.php:548
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Kateqoriya breadcrumb-ları üçün şablon."
520
-
521
- #: breadcrumb_navxt_admin.php:549
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Kateqoriya Şablonu (Bəyənilməyən)"
524
-
525
- #: breadcrumb_navxt_admin.php:549
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Kateqoriya breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
528
-
529
- #: breadcrumb_navxt_admin.php:555
530
- msgid "Tag Template"
531
- msgstr "Tag Şablonu"
532
-
533
- #: breadcrumb_navxt_admin.php:555
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Tag breadcrumb-ları üçün şablon."
536
-
537
- #: breadcrumb_navxt_admin.php:556
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Tag Şablonu (Bəyənilməyən)"
540
-
541
- #: breadcrumb_navxt_admin.php:556
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Tag breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
544
-
545
- #: breadcrumb_navxt_admin.php:593 breadcrumb_navxt_admin.php:602
546
- msgid "Miscellaneous"
547
- msgstr "Müxtəlif"
548
-
549
- #: breadcrumb_navxt_admin.php:597
550
- msgid "Author Template"
551
- msgstr "Müəllif Şablonu"
552
-
553
- #: breadcrumb_navxt_admin.php:597
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Müəllif breadcrumb-ları üçün şablon."
556
-
557
- #: breadcrumb_navxt_admin.php:598
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Müəllif Şablonu (Bəyənilməyən)"
560
-
561
- #: breadcrumb_navxt_admin.php:598
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Müəllif breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
564
-
565
- #: breadcrumb_navxt_admin.php:599
566
- msgid "Author Display Format"
567
- msgstr "Müəllif Görüntü Formatı"
568
-
569
- #: breadcrumb_navxt_admin.php:599
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name istifadəçi profilinin seçimlərində təyin edilən \"Adı kütləvi olaraq görüntüləndir\" kimi görüntülənir."
572
-
573
- #: breadcrumb_navxt_admin.php:605
574
- msgid "Date Template"
575
- msgstr "Tarix Şablonu"
576
-
577
- #: breadcrumb_navxt_admin.php:605
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Tarix breadcrumb-ları üçün şablon."
580
-
581
- #: breadcrumb_navxt_admin.php:606
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Tarix Şablonu (Bəyənilməyən)"
584
-
585
- #: breadcrumb_navxt_admin.php:606
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Tarix breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
588
-
589
- #: breadcrumb_navxt_admin.php:607
590
- msgid "Search Template"
591
- msgstr "Axtarış Şablonu"
592
-
593
- #: breadcrumb_navxt_admin.php:607
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
596
-
597
- #: breadcrumb_navxt_admin.php:608
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Axtarış Şablonu (Bəyənilməyən)"
600
-
601
- #: breadcrumb_navxt_admin.php:608
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız axtarış nəticələri bir neçə səhifələri birləşdirərsə və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
604
-
605
- #: breadcrumb_navxt_admin.php:609
606
- msgid "404 Title"
607
- msgstr "404 Başlığı"
608
-
609
- #: breadcrumb_navxt_admin.php:610
610
- msgid "404 Template"
611
- msgstr "404 Şablonu"
612
-
613
- #: breadcrumb_navxt_admin.php:610
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "404 breadcrumb-ları üçün şablon."
616
-
617
- #: breadcrumb_navxt_admin.php:616
618
- msgid "Save Changes"
619
- msgstr "Dəyişiklikləri yaddaşda saxlayın"
620
-
621
- #: includes/mtekk_adminkit.php:204
622
- msgid "Settings"
623
- msgstr "Tənzimləmələr"
624
-
625
- #: includes/mtekk_adminkit.php:274
626
- msgid "Your settings are out of date."
627
- msgstr "Sizin tənzimləmələr köhnəlib."
628
-
629
- #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
630
- msgid "Migrate the settings now."
631
- msgstr "Tənzimləmələri köçürün."
632
-
633
- #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
634
- msgid "Migrate now."
635
- msgstr "İndi Köçürün."
636
-
637
- #: includes/mtekk_adminkit.php:291
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Sizin plugin quraşdırmanız natamamdır."
640
-
641
- #: includes/mtekk_adminkit.php:291
642
- msgid "Load default settings now."
643
- msgstr "Standart tənzimləmələri yükləyin."
644
-
645
- #: includes/mtekk_adminkit.php:291
646
- msgid "Complete now."
647
- msgstr "İndi Tamamlayın."
648
-
649
- #: includes/mtekk_adminkit.php:299
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Sizin plugin tənzimləmələri səhvdir."
652
-
653
- #: includes/mtekk_adminkit.php:299
654
- msgid "Attempt to fix settings now."
655
- msgstr "Tənzimləmələri düzəltmək üçün cəhd edin."
656
-
657
- #: includes/mtekk_adminkit.php:299
658
- msgid "Fix now."
659
- msgstr "İndi cəh edin."
660
-
661
- #: includes/mtekk_adminkit.php:477
662
- msgid "Settings successfully saved."
663
- msgstr "Tənzimləmələr uğurla yaddaşda saxlanıldı."
664
-
665
- #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
666
- msgid "Undo the options save."
667
- msgstr "Seçimlərin yaddaşda saxlanmasını geri qaytarın."
668
-
669
- #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
670
- #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
671
- #: includes/mtekk_adminkit.php:628
672
- msgid "Undo"
673
- msgstr "Geri"
674
-
675
- #: includes/mtekk_adminkit.php:482
676
- msgid "Some settings were not saved."
677
- msgstr "Bəzi tənzimləmələr yaddaşda saxlanılmadı."
678
-
679
- #: includes/mtekk_adminkit.php:483
680
- msgid "The following settings were not saved:"
681
- msgstr "Aşağıdakı tənzimləmələr yaddaşda saxlanılmadı:"
682
-
683
- #: includes/mtekk_adminkit.php:488
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Zəhmət olmasa bu mesajı öz %sbug report%s içinə daxil edin."
686
-
687
- #: includes/mtekk_adminkit.php:488
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Öz versiyanız üçün %s dəstək mqaləsinə gedin."
690
-
691
- #: includes/mtekk_adminkit.php:587
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Tənzimləmələr yüklənən fayldan uğurla idxal edildi."
694
-
695
- #: includes/mtekk_adminkit.php:587
696
- msgid "Undo the options import."
697
- msgstr "Seçimlərin idxal edilməsini geri qaytarın."
698
-
699
- #: includes/mtekk_adminkit.php:592
700
- msgid "Importing settings from file failed."
701
- msgstr "Fayldan tənzimləmələrin idxal edilməsi uğursuz oldu."
702
-
703
- #: includes/mtekk_adminkit.php:611
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Tənzimləmələr standart dəyərlərə uğurla qaytarıldı."
706
-
707
- #: includes/mtekk_adminkit.php:611
708
- msgid "Undo the options reset."
709
- msgstr "Seçimlərin sıfırlanmasını geri qaytarın."
710
-
711
- #: includes/mtekk_adminkit.php:628
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Tənzimləmələr son əməliyyata uğurla geri qaytarıldı."
714
-
715
- #: includes/mtekk_adminkit.php:628
716
- msgid "Undo the last undo operation."
717
- msgstr "Son geri qaytarma əməliyyatını geri qaytarın."
718
-
719
- #: includes/mtekk_adminkit.php:663
720
- msgid "Settings successfully migrated."
721
- msgstr "Tənzimləmələr uğurla köçürüldü."
722
-
723
- #: includes/mtekk_adminkit.php:670
724
- msgid "Default settings successfully installed."
725
- msgstr "Standart tənzimləmələr uğurla quraşdırıldı."
726
-
727
- #: includes/mtekk_adminkit.php:771
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Tənzimləmələri XML fayldan idxal edin, cari tənzimləmələri XML fayla ixrac edin, ya da standart dəyərlərə sıfırlayın."
730
-
731
- #: includes/mtekk_adminkit.php:774
732
- msgid "Settings File"
733
- msgstr "Tənzimləmələr Faylı"
734
-
735
- #: includes/mtekk_adminkit.php:777
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Tənzimləmələri idxal etmək üçün XML tənzimləmələr faylını seçin."
738
-
739
- #: breadcrumb_navxt_class.php:214 breadcrumb_navxt_class.php:222
740
- msgid "Home"
741
- msgstr "Ana Səhifə"
742
-
743
- #: breadcrumb_navxt_class.php:251
744
- msgid "Page %htitle%"
745
- msgstr "Səhifə %htitle%"
746
-
747
- #: breadcrumb_navxt_class.php:275
748
- msgid "404"
749
- msgstr "404"
750
-
751
- #: breadcrumb_navxt_class.php:280
752
- msgid "Search results for &#39;%htitle%&#39;"
753
- msgstr "Axtarış nəticələri &#39;%htitle%&#39; üçün"
754
-
755
- #: breadcrumb_navxt_class.php:295
756
- msgid "Articles by: %htitle%"
757
- msgstr "Artikllər tərəfindən: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-ca.mo CHANGED
Binary file
languages/breadcrumb-navxt-ca.po CHANGED
@@ -1,753 +1,816 @@
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: 2013-06-21 14:11: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
- #: breadcrumb_navxt_admin.php:534 breadcrumb_navxt_admin.php:611
14
- 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."
15
- 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."
16
-
17
- #: breadcrumb_navxt_class.php:67 breadcrumb_navxt_class.php:239
18
- #: breadcrumb_navxt_class.php:245 breadcrumb_navxt_class.php:251
19
- #: breadcrumb_navxt_class.php:265 breadcrumb_navxt_class.php:277
20
- #: breadcrumb_navxt_class.php:289
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Anar a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:299
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- 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;"
27
-
28
- #: breadcrumb_navxt_admin.php:432
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Un conjunt d'ajustaments que probablement seran modificats es troba en aquesta pestanya."
31
-
32
- #: breadcrumb_navxt_admin.php:440
33
- msgid "Title Length"
34
- msgstr "Longitud del títol"
35
-
36
- #: breadcrumb_navxt_admin.php:445
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Longitud màxima del títol de les molles."
39
-
40
- #: breadcrumb_navxt_admin.php:488
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Molles (Breadcrumbs) del Lloc Principal"
43
-
44
- #: breadcrumb_navxt_admin.php:500
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Els ajustaments per a tots els tipus d'entrades (Entrades, Pàgines, Personalitzades) es troben en aquesta pestanya."
47
-
48
- #: breadcrumb_navxt_admin.php:500
49
- msgid "Post Types"
50
- msgstr "Tipus d'Entrades"
51
-
52
- #: breadcrumb_navxt_admin.php:506
53
- msgid "Post Hierarchy Display"
54
- msgstr "Jerarquia per a desplegar entrades"
55
-
56
- #: breadcrumb_navxt_admin.php:510
57
- msgid "Post Hierarchy"
58
- msgstr "Jerarquia d'entrades"
59
-
60
- #: breadcrumb_navxt_admin.php:578
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s Jerarquia de Desplegament"
63
-
64
- #: breadcrumb_navxt_admin.php:640
65
- msgid "Post Formats"
66
- msgstr "Formats d'Entrades"
67
-
68
- #: breadcrumb_navxt_admin.php:450
69
- msgid "Max Title Length: "
70
- msgstr "Longitud Màxima del Títol:"
71
-
72
- #: breadcrumb_navxt_admin.php:501
73
- msgid "Posts"
74
- msgstr "Entrades"
75
-
76
- #: breadcrumb_navxt_admin.php:518 breadcrumb_navxt_admin.php:587
77
- msgid "Post Parent"
78
- msgstr "Entrada o Pàgina superior"
79
-
80
- #: breadcrumb_navxt_admin.php:607
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "La jerarquia que mostrarà la ruta de molles."
83
-
84
- #: breadcrumb_navxt_admin.php:582
85
- msgid "%s Hierarchy"
86
- msgstr "%s Jerarquia"
87
-
88
- #: breadcrumb_navxt_admin.php:625
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Els ajustaments per a totes les taxonomies (incloent Categories, Etiquetes i Personalitzades) estan en aquesta pestanya. "
91
-
92
- #: breadcrumb_navxt_admin.php:625
93
- msgid "Taxonomies"
94
- msgstr "Taxonomies"
95
-
96
- #: breadcrumb_navxt_admin.php:643
97
- msgid "Post Format Template"
98
- msgstr "Plantilla per a Format de l'Entrada"
99
-
100
- #: breadcrumb_navxt_admin.php:643
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "La plantilla per al format de la ruta de molles en l'entrada"
103
-
104
- #: breadcrumb_navxt_admin.php:644
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Plantilla per a Format de l'Entrada (sense enllaç)"
107
-
108
- #: breadcrumb_navxt_admin.php:644
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "La plantilla per al format de la ruta de molles en l'entrada, utilitzat només quan la molla no té enllaç. "
111
-
112
- #: breadcrumb_navxt_admin.php:674
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Els ajustaments per a autor i arxius, recerques, i pàgines 404 estan en aquesta pestanya."
115
-
116
- #: breadcrumb_navxt_admin.php:675
117
- msgid "Author Archives"
118
- msgstr "Arxius d'Autor "
119
-
120
- #: breadcrumb_navxt_class.php:304 breadcrumb_navxt_class.php:309
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Anar als arxius de l'etiqueta %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:314
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Articles per: <a title=\"Anar a la primer pàgina d'entrades per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:321
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Anar a l'arxiu de la categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:325
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Anar a l'arxiu de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:290
137
- msgid "Your settings are for a newer version."
138
- msgstr "Els seus ajustaments són per a una versió més nova."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Text a mostrar abans de les molles:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:336
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Anar al projecte de traducció de Breadcrumb NavXT"
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- 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 "
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Agrega una ruta de navegació en la seva barra lateral"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Títol:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Mostrar ruta com:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Llista"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Text pla"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Enllaç a la Ruta"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Invertir l'ordre de la ruta"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Ocultar la ruta de la pàgina principal"
187
-
188
- #: breadcrumb_navxt_admin.php:213
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "No té privilegis per a procedir."
191
-
192
- #: breadcrumb_navxt_admin.php:329
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Trobarà tips per als ajustaments sota cada opció."
195
-
196
- #: breadcrumb_navxt_admin.php:330
197
- msgid "Resources"
198
- msgstr "Recursos"
199
-
200
- #: breadcrumb_navxt_admin.php:331
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sTutorials i Instructius%s: En el *website de l'autor estan disponibles diverses guies, tutorials i instructius."
203
-
204
- #: breadcrumb_navxt_admin.php:331
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Anar a l'arxiu d'etiquetes de Breadcrumb NavXT"
207
-
208
- #: breadcrumb_navxt_admin.php:332
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sDocumentació En Línia%s: Revisi la documentació per a més informació tècnica."
211
-
212
- #: breadcrumb_navxt_admin.php:332
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Anar a la documentació en línia de Breadcrumb NavXT (en anglès)"
215
-
216
- #: breadcrumb_navxt_admin.php:333
217
- 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."
218
- 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."
219
-
220
- #: breadcrumb_navxt_admin.php:333
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Anar a la documentació en línia de Breadcrumb NavXT para la seva versió. "
223
-
224
- #: breadcrumb_navxt_admin.php:334
225
- msgid "Giving Back"
226
- msgstr "Donar de tornada"
227
-
228
- #: breadcrumb_navxt_admin.php:335
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sDonar%s: Li agrada Breadcrumb NavXT i desitja col·laborar amb el desenvolupament? Consideri comprar-li a l'autor una cervesa."
231
-
232
- #: breadcrumb_navxt_admin.php:335
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Anar a la pàgina de Paypal para donar-li un donatiu a. Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:336
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sTraduir%s: No està disponible en el seu idioma? Comuniqui's amb John Havlik para col·laborar amb la traducció."
239
-
240
- #: breadcrumb_navxt_admin.php:341 breadcrumb_navxt_admin.php:432
241
- #: breadcrumb_navxt_admin.php:433
242
- msgid "General"
243
- msgstr "General"
244
-
245
- #: breadcrumb_navxt_admin.php:344
246
- 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."
247
- 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."
248
-
249
- #: breadcrumb_navxt_admin.php:345
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Ruta de Navegació amb Separadors"
252
-
253
- #: breadcrumb_navxt_admin.php:351
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Ruta de Navegació com Llistat"
256
-
257
- #: breadcrumb_navxt_admin.php:360
258
- msgid "Quick Start"
259
- msgstr "Inici Ràpid"
260
-
261
- #: breadcrumb_navxt_admin.php:363
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- 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ó."
264
-
265
- #: breadcrumb_navxt_admin.php:375
266
- msgid "Styling"
267
- msgstr "Estilo"
268
-
269
- #: breadcrumb_navxt_admin.php:381
270
- msgid "Import/Export/Reset"
271
- msgstr "Importar/Exportar/Reiniciar"
272
-
273
- #: breadcrumb_navxt_admin.php:405 includes/mtekk_adminkit.php:786
274
- msgid "Import"
275
- msgstr "Importar"
276
-
277
- #: breadcrumb_navxt_admin.php:406 includes/mtekk_adminkit.php:787
278
- msgid "Export"
279
- msgstr "Exportar"
280
-
281
- #: breadcrumb_navxt_admin.php:407 includes/mtekk_adminkit.php:788
282
- msgid "Reset"
283
- msgstr "Reiniciar"
284
-
285
- #: breadcrumb_navxt_admin.php:420
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Opcions de Configuració de Breadcrumb NavXT"
288
-
289
- #: breadcrumb_navxt_admin.php:436
290
- msgid "Breadcrumb Separator"
291
- msgstr "Separador de Navegació"
292
-
293
- #: breadcrumb_navxt_admin.php:436
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Col·locat enmig de cada opció de navegació."
296
-
297
- #: breadcrumb_navxt_admin.php:470 breadcrumb_navxt_admin.php:473
298
- msgid "Home Breadcrumb"
299
- msgstr "Incloure l'Inici"
300
-
301
- #: breadcrumb_navxt_admin.php:473
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
304
-
305
- #: breadcrumb_navxt_admin.php:474
306
- msgid "Home Template"
307
- msgstr "Plantilla de la Pàgina d'Inici"
308
-
309
- #: breadcrumb_navxt_admin.php:474
310
- msgid "The template for the home breadcrumb."
311
- msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici."
312
-
313
- #: breadcrumb_navxt_admin.php:475
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Plantilla de la Pàgina d'Inici (sense vincle)"
316
-
317
- #: breadcrumb_navxt_admin.php:475
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici, quan l'element d'inici no està enllaçat."
320
-
321
- #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:482
322
- msgid "Blog Breadcrumb"
323
- msgstr "Incloure Inici (del Blog)"
324
-
325
- #: breadcrumb_navxt_admin.php:482
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
328
-
329
- #: breadcrumb_navxt_admin.php:483
330
- msgid "Blog Template"
331
- msgstr "Plantilla del Blog"
332
-
333
- #: breadcrumb_navxt_admin.php:483
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- 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."
336
-
337
- #: breadcrumb_navxt_admin.php:484
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Plantilla del Blog (sense vincle)"
340
-
341
- #: breadcrumb_navxt_admin.php:484
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- 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."
344
-
345
- #: breadcrumb_navxt_admin.php:491
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Ruta del Lloc Principal"
348
-
349
- #: breadcrumb_navxt_admin.php:491
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- 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."
352
-
353
- #: breadcrumb_navxt_admin.php:492
354
- msgid "Main Site Home Template"
355
- msgstr "Plantilla d'Inici del Lloc Principal"
356
-
357
- #: breadcrumb_navxt_admin.php:492
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs."
360
-
361
- #: breadcrumb_navxt_admin.php:493
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Plantilla d'Inici del Lloc Principal (sense vincle)"
364
-
365
- #: breadcrumb_navxt_admin.php:493
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- 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."
368
-
369
- #: breadcrumb_navxt_admin.php:461
370
- msgid "Current Item"
371
- msgstr "Item Actual"
372
-
373
- #: breadcrumb_navxt_admin.php:464
374
- msgid "Link Current Item"
375
- msgstr "Incloure Vincle a Ítem Actual"
376
-
377
- #: breadcrumb_navxt_admin.php:464
378
- msgid "Yes"
379
- msgstr "Si"
380
-
381
- #: breadcrumb_navxt_admin.php:465
382
- msgid "Paged Breadcrumb"
383
- msgstr "Ruta de Navegació paginada"
384
-
385
- #: breadcrumb_navxt_admin.php:465
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Incloure la navegació paginada en la ruta de navegació"
388
-
389
- #: breadcrumb_navxt_admin.php:465
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Mostrar que l'usuari està en una pàgina distinta a la primera d'una entrada/arxiu amb múltiples pàgines. "
392
-
393
- #: breadcrumb_navxt_admin.php:466
394
- msgid "Paged Template"
395
- msgstr "Plantilla d'Entrada paginada"
396
-
397
- #: breadcrumb_navxt_admin.php:466
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Plantilla de ruta de navegació d'entrades de diverses pàgines."
400
-
401
- #: breadcrumb_navxt_admin.php:504
402
- msgid "Post Template"
403
- msgstr "Plantilla d'Entrades"
404
-
405
- #: breadcrumb_navxt_admin.php:504
406
- msgid "The template for post breadcrumbs."
407
- msgstr "La plantilla de la ruta de navegació per a entrades."
408
-
409
- #: breadcrumb_navxt_admin.php:505
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Plantilla de l'Entrada (sense vincle)"
412
-
413
- #: breadcrumb_navxt_admin.php:505
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "La plantilla de la ruta de navegació per a entrades, quan l'element no està enllaçat."
416
-
417
- #: breadcrumb_navxt_admin.php:506
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Mostrar la ruta de navegació amb la classificació que duu l'entrada."
420
-
421
- #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:626
422
- msgid "Categories"
423
- msgstr "Categories"
424
-
425
- #: breadcrumb_navxt_admin.php:515
426
- msgid "Dates"
427
- msgstr "Dates"
428
-
429
- #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:633
430
- msgid "Tags"
431
- msgstr "Etiquetes"
432
-
433
- #: breadcrumb_navxt_admin.php:538
434
- msgid "Pages"
435
- msgstr "Pàgines"
436
-
437
- #: breadcrumb_navxt_admin.php:541
438
- msgid "Page Template"
439
- msgstr "Plantilla de la Pàgina"
440
-
441
- #: breadcrumb_navxt_admin.php:541
442
- msgid "The template for page breadcrumbs."
443
- msgstr "La plantilla de la ruta de navegació per a pàgines."
444
-
445
- #: breadcrumb_navxt_admin.php:542
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Plantilla de la Pàgina (sense vincle)"
448
-
449
- #: breadcrumb_navxt_admin.php:542
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "La plantilla de la ruta de navegació per a pàgines, quan l'element no està enllaçat."
452
-
453
- #: breadcrumb_navxt_admin.php:543
454
- msgid "Attachment Template"
455
- msgstr "Plantilla d'Arxiu Adjunt"
456
-
457
- #: breadcrumb_navxt_admin.php:543
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "La plantilla de la ruta de navegació per a arxius adjunts."
460
-
461
- #: breadcrumb_navxt_admin.php:544
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Plantilla de l'Arxiu Adjunt (sense vincle)"
464
-
465
- #: breadcrumb_navxt_admin.php:544
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "La plantilla de la ruta de navegació per a arxius adjunts, quan l'element no està enllaçat."
468
-
469
- #: breadcrumb_navxt_admin.php:742
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Anar a %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_class.php:63
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
478
- msgid "%s Template"
479
- msgstr "Plantilla de %s"
480
-
481
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "La plantilla de la ruta de navegació per a %s."
484
-
485
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
486
- msgid "%s Template (Unlinked)"
487
- msgstr "Plantilla de %s (sense vincle)"
488
-
489
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "La plantilla de la ruta de navegació per a %s, quan l'element no està enllaçat."
492
-
493
- #: breadcrumb_navxt_admin.php:570
494
- msgid "%s Root Page"
495
- msgstr "%s Pàgina Arrel"
496
-
497
- #: breadcrumb_navxt_admin.php:573
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Seleccioni &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:577
502
- msgid "%s Archive Display"
503
- msgstr "Desplegament d'Arxius de %s"
504
-
505
- #: breadcrumb_navxt_admin.php:577
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Mostrar la ruta de navegació per als %s arxius de les entrades de tipus."
508
-
509
- #: breadcrumb_navxt_admin.php:578
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Mostrar la classificació que duu a %s en la ruta de navegació."
512
-
513
- #: breadcrumb_navxt_admin.php:629
514
- msgid "Category Template"
515
- msgstr "Plantilla de Categoria"
516
-
517
- #: breadcrumb_navxt_admin.php:629
518
- msgid "The template for category breadcrumbs."
519
- msgstr "La plantilla de la ruta de navegació per a categories."
520
-
521
- #: breadcrumb_navxt_admin.php:630
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Plantilla de la Categoria (sense vincle)"
524
-
525
- #: breadcrumb_navxt_admin.php:630
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "La plantilla de la ruta de navegació per a categories, quan l'element no està enllaçat."
528
-
529
- #: breadcrumb_navxt_admin.php:636
530
- msgid "Tag Template"
531
- msgstr "Plantilla de l'Etiqueta"
532
-
533
- #: breadcrumb_navxt_admin.php:636
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "La plantilla de la ruta de navegació per a etiquetes."
536
-
537
- #: breadcrumb_navxt_admin.php:637
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Plantilla de l'Etiqueta (sense vincle)"
540
-
541
- #: breadcrumb_navxt_admin.php:637
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "La plantilla de la ruta de navegació per a etiquetes, quan l'element no està enllaçat."
544
-
545
- #: breadcrumb_navxt_admin.php:674 breadcrumb_navxt_admin.php:683
546
- msgid "Miscellaneous"
547
- msgstr "Miscel·lanis"
548
-
549
- #: breadcrumb_navxt_admin.php:678
550
- msgid "Author Template"
551
- msgstr "Plantilla d'Autor"
552
-
553
- #: breadcrumb_navxt_admin.php:678
554
- msgid "The template for author breadcrumbs."
555
- msgstr "La plantilla de la ruta de navegació per a autors."
556
-
557
- #: breadcrumb_navxt_admin.php:679
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Plantilla de l'Autor (sense vincle)"
560
-
561
- #: breadcrumb_navxt_admin.php:679
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "La plantilla de la ruta de navegació per a autors, quan l'element no està enllaçat."
564
-
565
- #: breadcrumb_navxt_admin.php:680
566
- msgid "Author Display Format"
567
- msgstr "Format de Desplegament d'Autor"
568
-
569
- #: breadcrumb_navxt_admin.php:680
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name 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."
572
-
573
- #: breadcrumb_navxt_admin.php:686
574
- msgid "Date Template"
575
- msgstr "Plantilla de la Data"
576
-
577
- #: breadcrumb_navxt_admin.php:686
578
- msgid "The template for date breadcrumbs."
579
- msgstr "La plantilla de la ruta de navegació per a dates."
580
-
581
- #: breadcrumb_navxt_admin.php:687
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Plantilla de la Data (sense vincle)"
584
-
585
- #: breadcrumb_navxt_admin.php:687
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "La plantilla de la ruta de navegació per a dates, quan l'element no està enllaçat."
588
-
589
- #: breadcrumb_navxt_admin.php:688
590
- msgid "Search Template"
591
- msgstr "Plantilla de la Recerca"
592
-
593
- #: breadcrumb_navxt_admin.php:688
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- 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."
596
-
597
- #: breadcrumb_navxt_admin.php:689
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Plantilla de la Recerca (sense vincle)"
600
-
601
- #: breadcrumb_navxt_admin.php:689
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "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."
604
-
605
- #: breadcrumb_navxt_admin.php:690
606
- msgid "404 Title"
607
- msgstr "Títol Error 404."
608
-
609
- #: breadcrumb_navxt_admin.php:691
610
- msgid "404 Template"
611
- msgstr "Plantilla d'Error 404."
612
-
613
- #: breadcrumb_navxt_admin.php:691
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "La plantilla per a la ruta de la pàgina d'error 404."
616
-
617
- #: breadcrumb_navxt_admin.php:697
618
- msgid "Save Changes"
619
- msgstr "Gravar Canvis"
620
-
621
- #: includes/mtekk_adminkit.php:211
622
- msgid "Settings"
623
- msgstr "Configuracions"
624
-
625
- #: includes/mtekk_adminkit.php:281
626
- msgid "Your settings are out of date."
627
- msgstr "Els paràmetres estan desactualitzats."
628
-
629
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
630
- msgid "Migrate the settings now."
631
- msgstr "Migrar la configuració ara."
632
-
633
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
634
- msgid "Migrate now."
635
- msgstr "Migrar ara."
636
-
637
- #: includes/mtekk_adminkit.php:298
638
- msgid "Your plugin install is incomplete."
639
- msgstr "La instal·lació del plugin no s'ha completat."
640
-
641
- #: includes/mtekk_adminkit.php:298
642
- msgid "Load default settings now."
643
- msgstr "Carregar els ajustaments predeterminats ara."
644
-
645
- #: includes/mtekk_adminkit.php:298
646
- msgid "Complete now."
647
- msgstr "Completar ara."
648
-
649
- #: includes/mtekk_adminkit.php:306
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Els ajustaments del plugin no són vàlids."
652
-
653
- #: includes/mtekk_adminkit.php:306
654
- msgid "Attempt to fix settings now."
655
- msgstr "Intentar arreglar els ajustaments ara."
656
-
657
- #: includes/mtekk_adminkit.php:306
658
- msgid "Fix now."
659
- msgstr "Arreglar ara."
660
-
661
- #: includes/mtekk_adminkit.php:484
662
- msgid "Settings successfully saved."
663
- msgstr "Ajustaments guardats amb èxit."
664
-
665
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
666
- msgid "Undo the options save."
667
- msgstr "Desfer modificació d'opcions."
668
-
669
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
670
- #: includes/mtekk_adminkit.php:594 includes/mtekk_adminkit.php:618
671
- #: includes/mtekk_adminkit.php:635
672
- msgid "Undo"
673
- msgstr "Desfer"
674
-
675
- #: includes/mtekk_adminkit.php:489
676
- msgid "Some settings were not saved."
677
- msgstr "Alguns ajustaments no van ser gravats."
678
-
679
- #: includes/mtekk_adminkit.php:490
680
- msgid "The following settings were not saved:"
681
- msgstr "Els següents ajustaments no van ser gravats:"
682
-
683
- #: includes/mtekk_adminkit.php:495
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Per favor, incloure aquest missatge en el seu %sreporti de bugs%s."
686
-
687
- #: includes/mtekk_adminkit.php:495
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Anar a la documentació en línia de %s per a la seva versió."
690
-
691
- #: includes/mtekk_adminkit.php:594
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Els ajustaments de Breadcrumb NavXT es van importar reeixidament des de l'arxiu."
694
-
695
- #: includes/mtekk_adminkit.php:594
696
- msgid "Undo the options import."
697
- msgstr "Desfer importació d'opcions."
698
-
699
- #: includes/mtekk_adminkit.php:599
700
- msgid "Importing settings from file failed."
701
- msgstr "Va fallar la importació dels ajustaments des de l'arxiu."
702
-
703
- #: includes/mtekk_adminkit.php:618
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Els ajustaments predeterminats de Breadcrumb NavXT es van restaurar amb èxit."
706
-
707
- #: includes/mtekk_adminkit.php:618
708
- msgid "Undo the options reset."
709
- msgstr "Desfer reinici d'opcions."
710
-
711
- #: includes/mtekk_adminkit.php:635
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Es va desfer amb èxit l'operació anterior."
714
-
715
- #: includes/mtekk_adminkit.php:635
716
- msgid "Undo the last undo operation."
717
- msgstr "Desfer l'última operació de \"desfer\""
718
-
719
- #: includes/mtekk_adminkit.php:670
720
- msgid "Settings successfully migrated."
721
- msgstr "Configuració migrats amb èxit."
722
-
723
- #: includes/mtekk_adminkit.php:677
724
- msgid "Default settings successfully installed."
725
- msgstr "Els ajustaments predeterminats es van instal·lar amb èxit."
726
-
727
- #: includes/mtekk_adminkit.php:778
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- 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."
730
-
731
- #: includes/mtekk_adminkit.php:781
732
- msgid "Settings File"
733
- msgstr "Arxiu d'Ajustaments"
734
-
735
- #: includes/mtekk_adminkit.php:784
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Seleccionar un arxiu XML per a carregar i importar els ajustaments d'aquest plugin."
738
-
739
- #: breadcrumb_navxt_class.php:272
740
- msgid "Page %htitle%"
741
- msgstr "Pàgina %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:296
744
- msgid "404"
745
- msgstr "Página no encontrada"
746
-
747
- #: breadcrumb_navxt_class.php:301
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Resultats de recerca per a &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:316
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Articles per: %htitle%"
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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Adjunts"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Av&iacute;s: la configuraci&oacute; de llocs individuals prevaldr&agrave; sobre valors establerts en aquesta p&agrave;gina."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Av&iacute;s: la configuraci&oacute; de llocs individuals ha de prevaler sobre valors establerts en aquesta p&agrave;gina."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT s'acaba d&#39;actualitzar des d&#39;una versi&oacute; anterior a 5.0, si us plau aneu a la p&agrave;gina de plugins i activar \"Breadcrumb NavXT\". A m&eacute;s, desactivar el plugin \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" perqu&egrave; aquest missatge desaparegui."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Av&iacute;s: la configuraci&oacute; de xarxa prevaldr&agrave; sobre valors establerts en aquesta p&agrave;gina."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Av&iacute;s: la configuraci&oacute; de xarxa ha de prevaler sobre valors establerts en aquesta p&agrave;gina."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Av&iacute;s: No es trobat definits BCN_SETTINGS_*, es fará servir per defecte BCN_SETTINGS_FAVOR_NETWORK."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Configuraci&oacute; de la xarxa Breadcrumb NavXT"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ 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;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Un conjunt d'ajustaments que probablement seran modificats es troba en aquesta pestanya."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Longitud del títol"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Longitud màxima del títol de les molles."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Molles (Breadcrumbs) del Lloc Principal"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Els ajustaments per a tots els tipus d'entrades (Entrades, Pàgines, Personalitzades) es troben en aquesta pestanya."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Tipus d'Entrades"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Jerarquia per a desplegar entrades"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Jerarquia d'entrades"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s Jerarquia de Desplegament"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Formats d'Entrades"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Longitud Màxima del Títol:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Entrades"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Entrada o Pàgina superior"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "La jerarquia que mostrarà la ruta de molles."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s Jerarquia"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Els ajustaments per a totes les taxonomies (incloent Categories, Etiquetes i Personalitzades) estan en aquesta pestanya. "
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Taxonomies"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Plantilla per a Format de l'Entrada"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "La plantilla per al format de la ruta de molles en l'entrada"
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Plantilla per a Format de l'Entrada (sense enllaç)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "La plantilla per al format de la ruta de molles en l'entrada, utilitzat només quan la molla no té enllaç. "
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Els ajustaments per a autor i arxius, recerques, i pàgines 404 estan en aquesta pestanya."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Arxius d'Autor "
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Articles per: <a title=\"Anar a la primer pàgina d'entrades per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Els seus ajustaments són per a una versió més nova."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Text a mostrar abans de les molles:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Anar al projecte de traducció de Breadcrumb NavXT"
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ 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 "
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Agrega una ruta de navegació en la seva barra lateral"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Títol:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Mostrar ruta com:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Llista"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Text pla"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Enllaç a la Ruta"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Invertir l'ordre de la ruta"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Ocultar la ruta de la pàgina principal"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "No té privilegis per a procedir."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Trobarà tips per als ajustaments sota cada opció."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Recursos"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sTutorials i Instructius%s: En el *website de l'autor estan disponibles diverses guies, tutorials i instructius."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Anar a l'arxiu d'etiquetes de Breadcrumb NavXT"
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sDocumentació En Línia%s: Revisi la documentació per a més informació tècnica."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Anar a la documentació en línia de Breadcrumb NavXT (en anglès)"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Anar a la documentació en línia de Breadcrumb NavXT para la seva versió. "
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Donar de tornada"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sDonar%s: Li agrada Breadcrumb NavXT i desitja col·laborar amb el desenvolupament? Consideri comprar-li a l'autor una cervesa."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Anar a la pàgina de Paypal para donar-li un donatiu a. Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTraduir%s: No està disponible en el seu idioma? Comuniqui's amb John Havlik para col·laborar amb la traducció."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "General"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ 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."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Ruta de Navegació amb Separadors"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Ruta de Navegació com Llistat"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Inici Ràpid"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ 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ó."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Estilo"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Importar/Exportar/Reiniciar"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Importar"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Exportar"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Reiniciar"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Opcions de Configuració de Breadcrumb NavXT"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Separador de Navegació"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Col·locat enmig de cada opció de navegació."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Incloure l'Inici"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Plantilla de la Pàgina d'Inici"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Plantilla de la Pàgina d'Inici (sense vincle)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici, quan l'element d'inici no està enllaçat."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Incloure Inici (del Blog)"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Plantilla del Blog"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ 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."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Plantilla del Blog (sense vincle)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ 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."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Ruta del Lloc Principal"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ 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."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Plantilla d'Inici del Lloc Principal"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Plantilla d'Inici del Lloc Principal (sense vincle)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ 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."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Item Actual"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Incloure Vincle a Ítem Actual"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Si"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Ruta de Navegació paginada"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Incloure la navegació paginada en la ruta de navegació"
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Mostrar que l'usuari està en una pàgina distinta a la primera d'una entrada/arxiu amb múltiples pàgines. "
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Plantilla d'Entrada paginada"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Plantilla de ruta de navegació d'entrades de diverses pàgines."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Plantilla d'Entrades"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "La plantilla de la ruta de navegació per a entrades."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Plantilla de l'Entrada (sense vincle)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "La plantilla de la ruta de navegació per a entrades, quan l'element no està enllaçat."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Mostrar la ruta de navegació amb la classificació que duu l'entrada."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Categories"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Dates"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Etiquetes"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Pàgines"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Plantilla de la Pàgina"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "La plantilla de la ruta de navegació per a pàgines."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Plantilla de la Pàgina (sense vincle)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "La plantilla de la ruta de navegació per a pàgines, quan l'element no està enllaçat."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Plantilla d'Arxiu Adjunt"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "La plantilla de la ruta de navegació per a arxius adjunts."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Plantilla de l'Arxiu Adjunt (sense vincle)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "La plantilla de la ruta de navegació per a arxius adjunts, quan l'element no està enllaçat."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "Plantilla de %s"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "La plantilla de la ruta de navegació per a %s."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "Plantilla de %s (sense vincle)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "La plantilla de la ruta de navegació per a %s, quan l'element no està enllaçat."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Pàgina Arrel"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Seleccioni &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "Desplegament d'Arxius de %s"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Mostrar la ruta de navegació per als %s arxius de les entrades de tipus."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Mostrar la classificació que duu a %s en la ruta de navegació."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Plantilla de Categoria"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "La plantilla de la ruta de navegació per a categories."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Plantilla de la Categoria (sense vincle)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "La plantilla de la ruta de navegació per a categories, quan l'element no està enllaçat."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Plantilla de l'Etiqueta"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "La plantilla de la ruta de navegació per a etiquetes."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Plantilla de l'Etiqueta (sense vincle)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "La plantilla de la ruta de navegació per a etiquetes, quan l'element no està enllaçat."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Miscel·lanis"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Plantilla d'Autor"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "La plantilla de la ruta de navegació per a autors."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Plantilla de l'Autor (sense vincle)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "La plantilla de la ruta de navegació per a autors, quan l'element no està enllaçat."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Format de Desplegament d'Autor"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ 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."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Plantilla de la Data"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "La plantilla de la ruta de navegació per a dates."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Plantilla de la Data (sense vincle)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "La plantilla de la ruta de navegació per a dates, quan l'element no està enllaçat."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Plantilla de la Recerca"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ 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."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Plantilla de la Recerca (sense vincle)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ 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."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "Títol Error 404."
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "Plantilla d'Error 404."
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "La plantilla per a la ruta de la pàgina d'error 404."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Gravar Canvis"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Configuracions"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Els paràmetres estan desactualitzats."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Migrar la configuració ara."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Migrar ara."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "La instal·lació del plugin no s'ha completat."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Carregar els ajustaments predeterminats ara."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Completar ara."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Els ajustaments del plugin no són vàlids."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Intentar arreglar els ajustaments ara."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Arreglar ara."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Ajustaments guardats amb èxit."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Desfer modificació d'opcions."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Desfer"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Alguns ajustaments no van ser gravats."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Els següents ajustaments no van ser gravats:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Per favor, incloure aquest missatge en el seu %sreporti de bugs%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Anar a la documentació en línia de %s per a la seva versió."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Els ajustaments de Breadcrumb NavXT es van importar reeixidament des de l'arxiu."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Desfer importació d'opcions."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Va fallar la importació dels ajustaments des de l'arxiu."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Els ajustaments predeterminats de Breadcrumb NavXT es van restaurar amb èxit."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Desfer reinici d'opcions."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Es va desfer amb èxit l'operació anterior."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Desfer l'última operació de \"desfer\""
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Configuració migrats amb èxit."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Els ajustaments predeterminats es van instal·lar amb èxit."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ 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."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Arxiu d'Ajustaments"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Seleccionar un arxiu XML per a carregar i importar els ajustaments d'aquest plugin."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Pàgina %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "Página no encontrada"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Resultats de recerca per a &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Articles per: %htitle%"
languages/breadcrumb-navxt-da_DK.mo CHANGED
Binary file
languages/breadcrumb-navxt-da_DK.po CHANGED
@@ -1,753 +1,816 @@
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: 2013-02-14 02:36:15+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- 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."
15
- 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."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Gå til %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Søgeresultater for &#39;<a title=\"Gå til første side af søgeresultaterne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "En samling af indstillinger, der højst sandsynligt skal ændres, er placeret under denne fane."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Titellængde"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Begræns længden af breadcrumb-titlen."
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Hovedside-breadcrumb"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Indstillingerne for alle indholdstyper (Indlæg, sider og brugeroprettede indholdstyper) er placeret under denne fane."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Indholdstyper"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Visning af hierarki for indlæg"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Hierarki for indlæg"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "Visning af hierarki for %s"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Formater"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Maks. titellængde"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Indlæg"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Indlægsforælder"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "Hierarkiet som breadcrumb-stien vil vise."
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "Hierarki for %s"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Indstillingerne for alle taksonomier (inkl. kategorier, tags og brugeroprettede taksonomier) er placeret under denne fane."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Taksonomier"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Skabelon for format"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "Skabelonen for format-breadcrumbs."
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Skabelon for format (uden link)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "Skabelonen for post_format breadcrumbs, kun brugt når breadcrumben ikke er linket."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Indstillingerne for forfatter- og datoarkiver, søgninger og 404-sider er placeret under denne fane."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Forfatterarkiv"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Gå til tag-arkiverne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Artikler af: <a title=\"Gå til den første side af indlæg af %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Gå til kategori-arkiverne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Gå til arkiverne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "Dine indstillinger er for en nyere version."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Tekst foran stien:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr " til Breadcrumb NavXT oversættelsesprojekt."
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- 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"
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Tilføjer en breadcrumb-sti til din sidebar"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Titel:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Vis sti som:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Liste"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Klar"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Link breadcrumbs"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Vis sti i omvendt rækkefølge"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Skjul stien forsiden"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Utilstrækkelige privilegier til at fortsætte."
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Tips til indstillingerne findes under den enkelte indstilling."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Resurser"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sVejledninger og hjælp%s: Der er flere guides, vejledninger og hjælp på forfatterens hjemmeside."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr " til tag-arkivet for Breadcrumb NavXT."
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sOnline dokumentation%s: Se dokumentationen for mere detaljerede tekniske informationer."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Gå til den online dokumentation for Breadcrumb NavXT"
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- 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."
218
- 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."
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Gå til Breadcrumb NavXT supportindlæg for din version."
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Giv igen"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sDonate%s: Elsker du Breadcrumb NavXT og ønsker at hjælpe udviklingen? Overvej at købe forfatteren en øl."
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Gå til PayPal for at give en donation til Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sOversæt%s: Er dit sprog ikke tilgængeligt? Kontakt John Havlik for at oversætte."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "Generelt"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- 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."
247
- 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."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Breadcrumb-sti med adskillere"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Breadcrumb-sti som liste"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Quick Start"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Bruges koden fra Quick Start-sektionen herover, kan følgende CSS bruges som base til at style din breadcrumb-sti."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Styling"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Import/Eksport/Nulstil"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Importer"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Eksporter"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Nulstil"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Breadcrumb NavXT Indstillinger"
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Breadcrumb-adskiller"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Placeret mellem hver breadcrumb."
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Forside-breadcrumb"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Placer forside-breadcrumben i stien."
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Skabelon for forside"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "Skabelonen for forside-breadcrumben"
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Skabelon for forside (uden link)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "Skabelonen for forside-breadcrumb, brugt når breadcrumben ikke er linket."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Blog-breadcrumb"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Placer blog-breadcrumben i stien."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Skabelon for blog"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Skabelon for blog (uden link)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat, og når breadcrumben ikke er linket."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Hovedside-breadcrumb"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Placer hovedside-breadcrumben i stien i en multisite-installation."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Skabelon for hovedside"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Skabelon for hovedside (uden link)"
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer, og når breadcrumben ikke er linket."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Nuværende side"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Link nuværende side"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Ja"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Pagineret breadcrumb"
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Inkluder den paginerede breadcrumb i breadcrumb-stien."
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Indikerer at brugeren er på en anden side end den første på paginerede indlæg/sider."
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Pagineret skabelon"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Skabelonen for paginerede breadcrumbs."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Skabelon for indlæg"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Skabelonen for indlægs-breadcrumbs."
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Skabelon for indlæg (uden link)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Skabelonen for indlægs-breadcrumbs, kun brugt når breadcrumben ikke er linket."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Vis taksonomien, der leder til et indlæg, i breadcrumb-stien."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Kategorier"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Datoer"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Tags"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Sider"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Skabelon for side"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Skabelonen for side-breadcrumbs"
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Skabelon for side (uden link)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Skabelonen for side-breadcrumbs, kun brugt når breadcrumben ikke er linket."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "Skabelon for vedhæftning"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Skabelonen for vedhæftnings-breadcrumbs."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Skabelon for vedhæftning (uden link)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Skabelonen for vedhæftnings-breadcrumbs, kun brugt når breadcrumben ikke er linket."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "Skabelon for %s"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "Skabelonen for %s-breadcrumbs."
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "Skabelon for %s (uden link)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "Skabelonen for %s-breadcrumbs, kun brugt når breadcrumben ikke er linket."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "%s rodside"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Vælg &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "Visning af %s-arkiv"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Vis breadcrumben for post type-arkiver til %s i breadcrumb-stien."
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Vis taksonomien, der leder til %s, i breadcrumb-stien."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Skabelon for kategori"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Skabelonen for kategori-breadcrumbs."
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Skabelon for kategori (uden link)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Skabelonen for kategori-breadcrumbs, kun brugt når breadcrumben ikke er linket."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Skabelon for tag"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Skabelonen for tag-breadcrumbs."
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Skabelon for tag (uden link)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Skabelonen for tag-breadcrumbs, kun brugt når breadcrumben ikke er linket."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Diverse"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Skabelon for forfatter"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Skabelonen for forfatter-breadcrumbs."
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Skabelon for forfatter (uden link)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Skabelonen for forfatter-breadcrumbs, kun brugt når breadcrumben ikke er linket."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Visning af forfatterformat"
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name bruger navnet angivet i \"Vis navn offentligt som\" under brugerprofilen; de øvrige svarer til indstillingerne i brugerprofilen."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Skabelon for dato"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Skabelonen for dato-breadcrumbs."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Skabelon for dato (uden link)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Skabelonen for dato-breadcrumbs, kun brugt når breadcrumben ikke er linket."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Skabelon for søgning"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Skabelon for søgning (uden link)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider, og breadcrumben ikke er linket."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "404-titel"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "Skabelon for 404"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "Skabelonen for 404-breadcrumbs."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Gem ændringer"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Indstillinger"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "Dine indstillinger er forældede."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Migrer indstillingerne nu."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Migrer nu."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Din plugin-installation er ikke færdig."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Indlæs standardindstillinger nu."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Færdiggør nu."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Dine plugin-indstillinger er ugyldige."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Forsøg at rette indstillinger nu."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Ret nu."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Indstillinger gemt."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Fortryd gem af indstillinger."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Fortryd"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Nogle indstillinger blev ikke gemt."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "Følgende indstillinger blev ikke gemt:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Venligst inkluder denne besked i din %sfejlrapport%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr " til %s supportindlæg for din version."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Indstillinger importeret fra den uploadede fil."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Fortryd import af indstillinger."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Importering af indstillinger fra fil mislykkedes."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Indstillinger nulstillet til standardværdierne."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Fortryd nulstilling af indstillinger."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Indstillinger fortrød seneste handling."
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Fortryd seneste fortryd-handling."
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Indstillinger migreret."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Standardindstillinger installeret."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Importer indstillinger fra en XML-fil, eksporter de nuværende indstillinger til en XML-fil eller nulstil til standardindstillinger."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Fil med indstillinger"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Vælg en XML-fil med indstillinger at uploade og importere indstillinger fra."
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Side %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "404"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Søgeresultater for &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Artikler af: %htitle%"
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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Vedhæftninger"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til%title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Advarsel: Indstillinger for individuelle websites vil overskrive enhver indstilling valgt fra denne side. "
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Advarsel: Indstillinger for individuelle websites kan overskrive enhver indstilling valgt fra denne side. "
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr ""
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Advarsel: Dine netværksindstillinger vil overskrive enhver indstilling valgt fra denne side. "
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Advarsel: Dine netværksindstillinger kan overskrive enhver indstilling valgt fra denne side. "
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Advarsel: BCN_SETTINGS_* er ikke defineret, i stedet bruges standard BCN_SETTINGS_FAVOR_NETWORK."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT netværksindstillinger"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Søgeresultater for &#39;<a title=\"Gå til første side af søgeresultaterne for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "En samling af indstillinger, der højst sandsynligt skal ændres, er placeret under denne fane."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Titellængde"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Begræns længden af breadcrumb-titlen."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Hovedside-breadcrumb"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Indstillingerne for alle indholdstyper (Indlæg, sider og brugeroprettede indholdstyper) er placeret under denne fane."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Indholdstyper"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Visning af hierarki for indlæg"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Hierarki for indlæg"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "Visning af hierarki for %s"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Formater"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Maks. titellængde"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Indlæg"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Indlægsforælder"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Hierarkiet som breadcrumb-stien vil vise."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "Hierarki for %s"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Indstillingerne for alle taksonomier (inkl. kategorier, tags og brugeroprettede taksonomier) er placeret under denne fane."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Taksonomier"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Skabelon for format"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Skabelonen for format-breadcrumbs."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Skabelon for format (uden link)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Skabelonen for post_format breadcrumbs, kun brugt når breadcrumben ikke er linket."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Indstillingerne for forfatter- og datoarkiver, søgninger og 404-sider er placeret under denne fane."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Forfatterarkiv"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Artikler af: <a title=\"Gå til den første side af indlæg af %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Dine indstillinger er for en nyere version."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Tekst foran stien:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Gå til Breadcrumb NavXT oversættelsesprojekt."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ 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"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Tilføjer en breadcrumb-sti til din sidebar"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Titel:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Vis sti som:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Liste"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Klar"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Link breadcrumbs"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Vis sti i omvendt rækkefølge"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Skjul stien på forsiden"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Utilstrækkelige privilegier til at fortsætte."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Tips til indstillingerne findes under den enkelte indstilling."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Resurser"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sVejledninger og hjælp%s: Der er flere guides, vejledninger og hjælp på forfatterens hjemmeside."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Gå til tag-arkivet for Breadcrumb NavXT."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sOnline dokumentation%s: Se dokumentationen for mere detaljerede tekniske informationer."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Gå til den online dokumentation for Breadcrumb NavXT"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Gå til Breadcrumb NavXT supportindlæg for din version."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Giv igen"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sDonate%s: Elsker du Breadcrumb NavXT og ønsker at hjælpe udviklingen? Overvej at købe forfatteren en øl."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Gå til PayPal for at give en donation til Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sOversæt%s: Er dit sprog ikke tilgængeligt? Kontakt John Havlik for at oversætte."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Generelt"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ 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."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Breadcrumb-sti med adskillere"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Breadcrumb-sti som liste"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Quick Start"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Bruges koden fra Quick Start-sektionen herover, kan følgende CSS bruges som base til at style din breadcrumb-sti."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Styling"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Import/Eksport/Nulstil"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Importer"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Eksporter"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Nulstil"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT Indstillinger"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Breadcrumb-adskiller"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Placeret mellem hver breadcrumb."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Forside-breadcrumb"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Placer forside-breadcrumben i stien."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Skabelon for forside"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Skabelonen for forside-breadcrumben"
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Skabelon for forside (uden link)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Skabelonen for forside-breadcrumb, brugt når breadcrumben ikke er linket."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Blog-breadcrumb"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Placer blog-breadcrumben i stien."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Skabelon for blog"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Skabelon for blog (uden link)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Skabelonen for blog-breadcrumben, kun brugt når en statisk forside er sat, og når breadcrumben ikke er linket."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Hovedside-breadcrumb"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Placer hovedside-breadcrumben i stien i en multisite-installation."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Skabelon for hovedside"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Skabelon for hovedside (uden link)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Skabelonen for hovedside-breadcrumben, kun brugt i multisite-installationer, og når breadcrumben ikke er linket."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Nuværende side"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Link nuværende side"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Ja"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Pagineret breadcrumb"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Inkluder den paginerede breadcrumb i breadcrumb-stien."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Indikerer at brugeren er på en anden side end den første på paginerede indlæg/sider."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Pagineret skabelon"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Skabelonen for paginerede breadcrumbs."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Skabelon for indlæg"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Skabelonen for indlægs-breadcrumbs."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Skabelon for indlæg (uden link)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Skabelonen for indlægs-breadcrumbs, kun brugt når breadcrumben ikke er linket."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Vis taksonomien, der leder til et indlæg, i breadcrumb-stien."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Kategorier"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Datoer"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Tags"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Sider"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Skabelon for side"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Skabelonen for side-breadcrumbs"
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Skabelon for side (uden link)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Skabelonen for side-breadcrumbs, kun brugt når breadcrumben ikke er linket."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Skabelon for vedhæftning"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Skabelonen for vedhæftnings-breadcrumbs."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Skabelon for vedhæftning (uden link)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Skabelonen for vedhæftnings-breadcrumbs, kun brugt når breadcrumben ikke er linket."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "Skabelon for %s"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "Skabelonen for %s-breadcrumbs."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "Skabelon for %s (uden link)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "Skabelonen for %s-breadcrumbs, kun brugt når breadcrumben ikke er linket."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s rodside"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Vælg &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "Visning af %s-arkiv"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Vis breadcrumben for post type-arkiver til %s i breadcrumb-stien."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Vis taksonomien, der leder til %s, i breadcrumb-stien."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Skabelon for kategori"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Skabelonen for kategori-breadcrumbs."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Skabelon for kategori (uden link)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "Skabelonen for kategori-breadcrumbs, kun brugt når breadcrumben ikke er linket."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Skabelon for tag"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Skabelonen for tag-breadcrumbs."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Skabelon for tag (uden link)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Skabelonen for tag-breadcrumbs, kun brugt når breadcrumben ikke er linket."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Diverse"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Skabelon for forfatter"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Skabelonen for forfatter-breadcrumbs."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Skabelon for forfatter (uden link)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Skabelonen for forfatter-breadcrumbs, kun brugt når breadcrumben ikke er linket."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Visning af forfatterformat"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ msgstr "display_name bruger navnet angivet i \"Vis navn offentligt som\" under brugerprofilen; de øvrige svarer til indstillingerne i brugerprofilen."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Skabelon for dato"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Skabelonen for dato-breadcrumbs."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Skabelon for dato (uden link)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Skabelonen for dato-breadcrumbs, kun brugt når breadcrumben ikke er linket."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Skabelon for søgning"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Skabelon for søgning (uden link)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "Skabelonen for søgnings-breadcrumbs, kun brugt når søgeresultaterne spænder over flere sider, og breadcrumben ikke er linket."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404-titel"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "Skabelon for 404"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "Skabelonen for 404-breadcrumbs."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Gem ændringer"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Indstillinger"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Dine indstillinger er forældede."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Migrer indstillingerne nu."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Migrer nu."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Din plugin-installation er ikke færdig."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Indlæs standardindstillinger nu."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Færdiggør nu."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Dine plugin-indstillinger er ugyldige."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Forsøg at rette indstillinger nu."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Ret nu."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Indstillinger gemt."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Fortryd gem af indstillinger."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Fortryd"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Nogle indstillinger blev ikke gemt."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Følgende indstillinger blev ikke gemt:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Venligst inkluder denne besked i din %sfejlrapport%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr " til %s supportindlæg for din version."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Indstillinger importeret fra den uploadede fil."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Fortryd import af indstillinger."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Importering af indstillinger fra fil mislykkedes."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Indstillinger nulstillet til standardværdierne."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Fortryd nulstilling af indstillinger."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Indstillinger fortrød seneste handling."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Fortryd seneste fortryd-handling."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Indstillinger migreret."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Standardindstillinger installeret."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Importer indstillinger fra en XML-fil, eksporter de nuværende indstillinger til en XML-fil eller nulstil til standardindstillinger."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Fil med indstillinger"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Vælg en XML-fil med indstillinger at uploade og importere indstillinger fra."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Side %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Søgeresultater for &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artikler af: %htitle%"
languages/breadcrumb-navxt-de_DE.mo CHANGED
Binary file
languages/breadcrumb-navxt-de_DE.po CHANGED
@@ -1,776 +1,816 @@
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: 2013-11-21 02:01:12+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Breadcrumb NavXT Netzwerk Einstellungen"
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 "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."
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 "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."
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=\"Gehe zu %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 "Suchergebnisse für &#39;<a title=\"Gehe zur ersten Seite der Suchergebnisse für %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 "Eine Sammlung von Einstellungen, die am häufigsten verändert werden, finden sich unter diesem Tab."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Länge des Titels"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Länge des Breadcrumb Titels begrenzen."
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Breadcrumb der Hauptseite"
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 "Die Einstellugen für alle Post Arten (Posts, Seiten und Custom Post Types) finden sich unter diesem Tab."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Post Typen"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Post Hierarchie Anzeige"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Post Hierarchie"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "%s Hierarchie Anzeige"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Post Formate"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Maximale Länge des Titels:"
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Posts"
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 "Post Parent"
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 "Die Hierarchie, welche vom Breadcrumb Trail angezeigt wird."
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "%s Hierarchie"
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 "Die Einstellungen für alle Systematiken (inkl. Kategorien, Tags und Custom Systematiken) finden sich unter diesem Tab."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Systematiken"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Post Format Vorlage"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "Die Vorlage für Post Format Breadcrumbs."
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Post Format Vorlage (nicht verlinkt)"
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 "Die Vorlage für post_format Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
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 "Die Einstellungen für Autor und Datum Archive, Suchanfragen und 404 Seiten finden sich unter diesem Tab."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Autor Archive"
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=\"Gehe zu den %title% Tag Archiven.\" 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 "Artikel von: <a title=\"Gehe zur ersten Seite mit Posts von %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=\"Gehe zu den %title% Kategorie Archiven.\" 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=\"Gehe zu den %title% Archiven.\" 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 "Deine Einstellungen sind für eine aktuellere Version ausgelegt."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Text, der vor dem Trail angezeigt werden soll:"
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 "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
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 "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"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Fügt der Sidebar einen Breadcrumb Trail hinzu"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Titel:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Trail ausgeben als:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Liste"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Plain"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Verlinke die Breadcrumbs"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "Die Reihenfolge des Trails umkehren"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Verstecke den Trail auf der Startseite"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Nicht genügend Rechte um fortzufahren."
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 "Tips für die Einstellungen findest Du unter den Select-Optionen."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Ressourcen"
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 "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Gehe zum Breadcrumb NavXT Archiv."
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 Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
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 "%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."
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 "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "Etwas Zurückgeben"
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 "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
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 "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
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 "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
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 "Grundsätzliches"
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 "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."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Breadcrumb Trail mit Abstandshaltern"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Breadcrumb Trail in Listen-Form"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Schnellstart"
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 "Unter Verwendung des Codes aus dem Schnellstart-Abschnitt oben kann das folgende CSS als Basis für das Styling Deines Breadcrumb Trails verwendet werden."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Styling"
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 "Breadcrumb NavXT Einstellungen"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Breadcrumb Trennzeichen"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Wird zwischen jedem Breadcrumb eingefügt."
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 "Home Breadcrumb"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Füge den Home Breadcrumb in den Trail ein."
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Home Template"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "Das Template für das Home Breadcrumb."
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Home Template (nicht verlinkt)"
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 "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
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 "Blog Breadcrumb"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Platziere das Blog Breadcrumb im Trail."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Blog Template"
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 "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Blog Template (nicht verlinkt)"
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 "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Hauptseite Breadcrumb"
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 "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Hauptseite Home Template"
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 "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "Hauptseite Home Template (nicht verlinkt)"
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 "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Aktueller Eintrag"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Aktuellen Eintrag verlinken"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Ja"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Paged Breadcrumb"
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 "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
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 "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Paged Template"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Das Template für Paged Breadcrumbs."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Post Template"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "Das Template für Post Breadcrumbs."
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Post Template (nicht verlinkt)"
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 "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
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 "Zeige die Systematik, die zu einem Post im Breadcrumb Trail führt."
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 "Kategorien"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "Daten"
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 "Tags"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Seiten"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Seiten Template"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "Das Template für Seiten Breadcrumbs."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Seiten Template (nicht verlinkt)"
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 "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Anhang Template"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Das Template für Anhang Breadcrumbs."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Anhang Template (nicht verlinkt)"
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 "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Gehe zu %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 "%s Template"
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 "Das Template für %s Breadcrumbs."
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 "%s Template (nicht verlinkt)"
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 "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "%s Root Seite"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Auswahl &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "%s Archiv Anzeige"
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 "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
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 "Zeige die Systematik, die zu einem %s im Breadcrumb Trail führt."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Kategorie Template"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "Das Template für Kategorie Breadcrumbs."
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Kategorie Template (nicht verlinkt)"
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 "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Tag Template"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "Das Template für Tag Breadcrumbs."
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Tag Vorlage (nicht verlinkt)"
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 "Die Vorlage für Tag Breadcrumbs - wird nur verwendet, wenn der Breadcrumb nicht verbunden (linked) ist."
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 "Sonstiges"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Autor Template"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Das Template für Autoren Breadcrumbs."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "(nicht verlinkt)"
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 "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Autor Anzeige Format"
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 verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Datum Template"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "Das Template für Datum Breadcrumbs."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Datum Template (nicht verlinkt)"
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 "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Suche Template"
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 ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Suche Template (nicht verlinkt)"
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 "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404 Titel"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "404 Template"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "Das Template für 404 Breadcrumbs."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Änderungen Speichern"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Einstellungen"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "Deine Einstellungen sind veraltet."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Die Einstellungen jetzt migrieren."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Jetzt migrieren."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "Deine Plugin-Installtion ist fertig."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Standard-Einstellungen jetzt laden."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Fertiggestellt."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "Deine Plugin-Einstellungen sind fehlerhaft."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Versuche, die Einstellungen jetzt zu fixen."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Jetzt fixen."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Einstellungen erfolgreich gespeichert."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Das Speichern der Optionen rückgängig machen."
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 "Rückgänig machen"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Einige Einstellungen wurden nicht gespeichert."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "Die folgenden Einstellungen wurden nicht gespeichert."
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Bitte füge diese Nachricht Deinem %sbug report%s bei."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Gehe zum %s Support Post für Deine Version."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Die Einstellungen wurden erfolgreich von der hochgeladenen Datei importiert."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Den Optionen-Import rückgängig machen."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Einstellungen-Import aus Datei fehlgeschlagen."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Einstellungen erfolgreich auf Standardwerte zurückgesetzt."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Den Optionen-Reset rückgängig machen."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Einstellungen hat die letzte Operation erfolgreich rückgängig gemacht."
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Wiederholen."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Einstellungen erfolgreich migriert."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Standardeinstellungen erfolgreich installiert."
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 "Einstellungen aus einer XML Datei importieren, aktuelle Einstellungen in XML Datei exportieren oder Reset auf Standardeinstellungen."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Einstellungen Datei"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Wähle eine XML Datei mit Einstellungen zum Hochladen und Einstellungen-Import."
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Seite %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 "Suchresultate für &#39;%htitle%&#39;"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgstr "Artikel von: %htitle%"
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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Anhänge"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Warnung: Individuelle Seiten-Einstellungen überschreiben alle Einstellungen, die auf dieser Seite vorgenommen werden."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Warnung: Individuelle Seiten-Einstellungen können alle Einstellungen, die auf dieser Seite vorgenommen werden, überschreiben."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Gehe zu %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb BavXT wurde kürzlich von einer pre-5.0 Version aktualisiert. Bitte gehe zur Plugin Seite und aktiviere \"Breadcrumb NavXT\". Bitte deaktiviere das \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" Plugin um diese Meldung zu löschen."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Warnung: Deine Netzwerk-Einstellungen werden alle Einstellungen, die Du auf dieser Seite vornimmst, überschreiben."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Warnung: Deine Netzwerk-Einstellungen können unter Umständen alle Einstellungen, die Du auf dieser Seite vornimmst, überschreiben."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Warnung: Kein BCN_SETTINGS_* define Statement gefunden, verwende BCN_SETTINGS_FAVOR_NETWORK Standard-Einstellung."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT Netzwerk Einstellungen"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Suchergebnisse für &#39;<a title=\"Gehe zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Eine Sammlung von Einstellungen, die am häufigsten verändert werden, finden sich unter diesem Tab."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Länge des Titels"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Länge des Breadcrumb Titels begrenzen."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Breadcrumb der Hauptseite"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Die Einstellugen für alle Post Arten (Posts, Seiten und Custom Post Types) finden sich unter diesem Tab."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Post Typen"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Post Hierarchie Anzeige"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Post Hierarchie"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s Hierarchie Anzeige"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Post Formate"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Maximale Länge des Titels:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Posts"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Post Parent"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Die Hierarchie, welche vom Breadcrumb Trail angezeigt wird."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s Hierarchie"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Die Einstellungen für alle Systematiken (inkl. Kategorien, Tags und Custom Systematiken) finden sich unter diesem Tab."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Systematiken"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Post Format Vorlage"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Die Vorlage für Post Format Breadcrumbs."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Post Format Vorlage (nicht verlinkt)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Die Vorlage für post_format Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Die Einstellungen für Autor und Datum Archive, Suchanfragen und 404 Seiten finden sich unter diesem Tab."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Autor Archive"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Artikel von: <a title=\"Gehe zur ersten Seite mit Posts von %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Deine Einstellungen sind für eine aktuellere Version ausgelegt."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Text, der vor dem Trail angezeigt werden soll:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ 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"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Fügt der Sidebar einen Breadcrumb Trail hinzu"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Titel:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Trail ausgeben als:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Liste"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Plain"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Verlinke die Breadcrumbs"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Die Reihenfolge des Trails umkehren"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Verstecke den Trail auf der Startseite"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Nicht genügend Rechte um fortzufahren."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Tips für die Einstellungen findest Du unter den Select-Optionen."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Ressourcen"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Gehe zum Breadcrumb NavXT Archiv."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sOnline Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Etwas Zurückgeben"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Grundsätzliches"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ 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."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Breadcrumb Trail mit Abstandshaltern"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Breadcrumb Trail in Listen-Form"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Schnellstart"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ 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."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Styling"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Import/Export/Reset"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Import"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Export"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Reset"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT Einstellungen"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Breadcrumb Trennzeichen"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Wird zwischen jedem Breadcrumb eingefügt."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Home Breadcrumb"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Füge den Home Breadcrumb in den Trail ein."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Home Template"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Das Template für das Home Breadcrumb."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Home Template (nicht verlinkt)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Blog Breadcrumb"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Platziere das Blog Breadcrumb im Trail."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Blog Template"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Blog Template (nicht verlinkt)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Hauptseite Breadcrumb"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Hauptseite Home Template"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Hauptseite Home Template (nicht verlinkt)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Aktueller Eintrag"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Aktuellen Eintrag verlinken"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Ja"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Paged Breadcrumb"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Paged Template"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Das Template für Paged Breadcrumbs."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Post Template"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Das Template für Post Breadcrumbs."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Post Template (nicht verlinkt)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Zeige die Systematik, die zu einem Post im Breadcrumb Trail führt."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Kategorien"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Daten"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Tags"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Seiten"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Seiten Template"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Das Template für Seiten Breadcrumbs."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Seiten Template (nicht verlinkt)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Anhang Template"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Das Template für Anhang Breadcrumbs."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Anhang Template (nicht verlinkt)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s Template"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "Das Template für %s Breadcrumbs."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s Template (nicht verlinkt)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Root Seite"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Auswahl &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s Archiv Anzeige"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Zeige die Systematik, die zu einem %s im Breadcrumb Trail führt."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Kategorie Template"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Das Template für Kategorie Breadcrumbs."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Kategorie Template (nicht verlinkt)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Tag Template"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Das Template für Tag Breadcrumbs."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Tag Vorlage (nicht verlinkt)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Die Vorlage für Tag Breadcrumbs - wird nur verwendet, wenn der Breadcrumb nicht verbunden (linked) ist."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Sonstiges"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Autor Template"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Das Template für Autoren Breadcrumbs."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "(nicht verlinkt)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Autor Anzeige Format"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ msgstr "display_name verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Datum Template"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Das Template für Datum Breadcrumbs."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Datum Template (nicht verlinkt)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Suche Template"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Suche Template (nicht verlinkt)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404 Titel"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "404 Template"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "Das Template für 404 Breadcrumbs."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Änderungen Speichern"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Einstellungen"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Deine Einstellungen sind veraltet."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Die Einstellungen jetzt migrieren."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Jetzt migrieren."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Deine Plugin-Installtion ist fertig."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Standard-Einstellungen jetzt laden."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Fertiggestellt."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Deine Plugin-Einstellungen sind fehlerhaft."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Versuche, die Einstellungen jetzt zu fixen."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Jetzt fixen."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Einstellungen erfolgreich gespeichert."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Das Speichern der Optionen rückgängig machen."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Rückgänig machen"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Einige Einstellungen wurden nicht gespeichert."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Die folgenden Einstellungen wurden nicht gespeichert."
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Bitte füge diese Nachricht Deinem %sbug report%s bei."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Gehe zum %s Support Post für Deine Version."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Die Einstellungen wurden erfolgreich von der hochgeladenen Datei importiert."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Den Optionen-Import rückgängig machen."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Einstellungen-Import aus Datei fehlgeschlagen."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Einstellungen erfolgreich auf Standardwerte zurückgesetzt."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Den Optionen-Reset rückgängig machen."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Einstellungen hat die letzte Operation erfolgreich rückgängig gemacht."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Wiederholen."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Einstellungen erfolgreich migriert."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Standardeinstellungen erfolgreich installiert."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Einstellungen aus einer XML Datei importieren, aktuelle Einstellungen in XML Datei exportieren oder Reset auf Standardeinstellungen."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Einstellungen Datei"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Wähle eine XML Datei mit Einstellungen zum Hochladen und Einstellungen-Import."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Seite %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Suchresultate für &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artikel von: %htitle%"
languages/breadcrumb-navxt-es_ES.mo CHANGED
Binary file
languages/breadcrumb-navxt-es_ES.po CHANGED
@@ -1,753 +1,816 @@
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: 2013-02-14 02:34:32+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- 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."
15
- 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."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Ir a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- 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;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Un conjunto de ajustes que probablemente serán modificados se encuentra en esta pestaña."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Longitud del título"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Longitud máxima del título de las migas"
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Migas (Breadcrumbs) del Sitio Principal"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Los ajustes para todos los tipos de entradas (Entradas, Páginas, Personalizadas) se encuentran en esta pestaña."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Tipos de Entradas"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Jerarquía para desplegar entradas"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Jerarquía de entradas"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s Jerarquía de Despliegue"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Formatos de Entradas"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Longitud Máxima del Título:"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Entradas"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Entrada o Página superior"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "La jerarquía que mostrará la ruta de migas."
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "%s Jerarquía"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Los ajustes para todas las taxonomías (incluyendo Categorías, Etiquetas y Personalizadas) están en esta pestaña."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Taxonomías"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Plantilla para Formato de la Entrada"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "La plantilla para el formato de la ruta de migas en la entrada"
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Plantilla para Formato de la Entrada (sin enlace)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "La plantilla para el formato de la ruta de migas en la entrada, utilizado sólo cuando la miga no tiene enlace."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Los ajustes para autor y archivos, búsquedas, y páginas 404 están en esta pestaña."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Archivos de Autor"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Ir a los archivos de la etiqueta %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Artículos por: <a title=\"Ir a la primer página de entradas por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Ir al archivo de la categoría %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Ir al archivo de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "Sus ajustes son para una versión más nueva."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Texto a mostrar antes de las migas:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Ir al proyecto de traducción de Breadcrumb NavXT"
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- 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 "
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Agrega una ruta de navegación en su barra lateral"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Título:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Mostrar ruta como:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Lista"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Texto plano"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Enlace a la Ruta"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Invertir el orden de la ruta"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Ocultar la ruta de la página principal"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "No tiene privilegios para proceder."
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Encontrará tips para los ajustes debajo de cada opción."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Recursos"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- 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."
218
- 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."
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Dar de vuelta"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "General"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- 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."
247
- msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Ruta de Navegación con Separadores"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Ruta de Navegación como Listado"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Inicio Rápido"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Usando el código de Inicio Rápido de la sección anterior, el siguiente CSS puede utilizarse como base para darle estilo a su ruta de navegación."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Estilo"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Importar/Exportar/Reiniciar"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Importar"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Exportar"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Reiniciar"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Opciones de Configuración de Breadcrumb NavXT"
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Separador de Navegación"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Colocado en medio de cada opción de navegación."
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Incluir Inicio"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Plantilla de la Página de Inicio"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "La plantilla de la ruta de navegación para la página de inicio."
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Plantilla de la Página de Inicio (sin vínculo)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Incluir Inicio (del Blog)"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Plantilla del Blog"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- 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."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Plantilla del Blog (sin vínculo)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- 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."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Ruta del Sitio Principal"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- 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."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Plantilla de Inicio del Sitio Principal"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- 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."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Item Actual"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Incluir Vínculo a Item Actual"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Sí"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Ruta de Navegación Paginada"
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Incluir la navegación paginada en la ruta de navegación"
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Plantilla de Entrada Paginada"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Plantilla de Entradas"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "La plantilla de la ruta de navegación para entradas."
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Plantilla de la Entrada (sin vínculo)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Categorías"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Fechas"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Etiquetas"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Páginas"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Plantilla de la Página"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "La plantilla de la ruta de navegación para páginas."
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Plantilla de la Página (sin vínculo)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "Plantilla de Archivo Adjunto"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "Plantilla de %s"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "La plantilla de la ruta de navegación para %s."
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "Plantilla de %s (sin vínculo)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "%s Página Raíz"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Seleccione &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "Despliegue de Archivos de %s"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Plantilla de Categoría"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "La plantilla de la ruta de navegación para categorías."
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Plantilla de la Categoría (sin vínculo)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Plantilla de la Etiqueta"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "La plantilla de la ruta de navegación para etiquetas."
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Plantilla de la Etiqueta (sin vínculo)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Misceláneos"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Plantilla de Autor"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "La plantilla de la ruta de navegación para autores."
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Plantilla del Autor (sin vínculo)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Formato de Despliegue de Autor"
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name 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."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Plantilla de la Fecha"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "La plantilla de la ruta de navegación para fechas."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Plantilla de la Fecha (sin vínculo)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Plantilla de la Búsqueda"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- 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."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Plantilla de la Búsqueda (sin vínculo)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "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."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "Título Error 404"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "Plantilla de Error 404"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "La plantilla para la ruta de la página de error 404."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Grabar Cambios"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Configuraciones"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "Sus ajustes están desactualizados."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Migrar los ajustes ahora."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Migrar ahora."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "La instalación del plugin no se ha completado."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Cargar los ajustes predeterminados ahora."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Completar ahora."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Los ajustes del plugin no son válidos."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Intentar arreglar los ajustes ahora."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Arreglar ahora."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Ajustes guardados exitosamente."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Deshacer modificación de opciones."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Deshacer"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Algunos ajustes no fueron grabados."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "Los siguientes ajustes no fueron grabados:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Ir a la documentación en línea de %s para su versión."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Deshacer importación de opciones."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Falló la importación de los ajustes desde el archivo."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Deshacer reinicio de opciones."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Se deshizo exitosamente la operación anterior."
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Deshacer la última operación de \"deshacer\""
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Ajustes migrados exitosamente."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Los ajustes predeterminados se instalaron exitosamente."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Archivo de Ajustes"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Página %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "Página no encontrada"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Resultados de búsqueda para &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Artículos por: %htitle%"
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-06-08 21:09:52+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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Adjuntos"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Advertencia: los ajustes individuales del sitio modificarán cualquier ajuste en esta página."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Advertencia: los ajustes individuales del sitio pueden modificar los ajustes de esta página."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir a %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT recién actualizó a la versión 5.0, por favor, vaya a la página de plugins y active \"Breadcrumb NavXT\". También, desactive el plugin \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" para que este mensaje desaparezca."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Advertencia: los ajustes de red modificarán cualquier ajuste en esta página."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Advertencia: los ajustes de red pueden modificar los ajustes de esta página."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Advertencia: No se definieron los ajustes BCN_SETTINGS_*, el ajuste predeterminado es BCN_SETTINGS_FAVOR_NETWORK."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Ajustes de Red de Breadcrumb NavXT"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik | Traducción: Karin Sequén"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ 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;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Un conjunto de ajustes que probablemente serán modificados se encuentra en esta pestaña."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Longitud del título"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Longitud máxima del título de las migas"
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Migas (Breadcrumbs) del Sitio Principal"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Los ajustes para todos los tipos de entradas (Entradas, Páginas, Personalizadas) se encuentran en esta pestaña."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Tipos de Entradas"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Jerarquía para desplegar entradas"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Jerarquía de entradas"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s Jerarquía de Despliegue"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Formatos de Entradas"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Longitud Máxima del Título:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Entradas"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Entrada o Página superior"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "La jerarquía que mostrará la ruta de migas."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s Jerarquía"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Los ajustes para todas las taxonomías (incluyendo Categorías, Etiquetas y Personalizadas) están en esta pestaña."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Taxonomías"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Plantilla para Formato de la Entrada"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "La plantilla para el formato de la ruta de migas en la entrada"
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Plantilla para Formato de la Entrada (sin enlace)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "La plantilla para el formato de la ruta de migas en la entrada, utilizado sólo cuando la miga no tiene enlace."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Los ajustes para autor y archivos, búsquedas, y páginas 404 están en esta pestaña."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Archivos de Autor"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Artículos por: <a title=\"Ir a la primer página de entradas por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Sus ajustes son para una versión más nueva."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Texto a mostrar antes de las migas:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Ir al proyecto de traducción de Breadcrumb NavXT"
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ 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 "
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Agrega una ruta de navegación en su barra lateral"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Título:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Mostrar ruta como:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Lista"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Texto plano"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Enlace a la Ruta"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Invertir el orden de la ruta"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Ocultar la ruta de la página principal"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "No tiene privilegios para proceder."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Encontrará tips para los ajustes debajo de cada opción."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Recursos"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Dar de vuelta"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "General"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Ruta de Navegación con Separadores"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Ruta de Navegación como Listado"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Inicio Rápido"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Usando el código de Inicio Rápido de la sección anterior, el siguiente CSS puede utilizarse como base para darle estilo a su ruta de navegación."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Estilo"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Importar/Exportar/Reiniciar"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Importar"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Exportar"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Reiniciar"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Opciones de Configuración de Breadcrumb NavXT"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Separador de Navegación"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Colocado en medio de cada opción de navegación."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Incluir Inicio"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Plantilla de la Página de Inicio"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "La plantilla de la ruta de navegación para la página de inicio."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Plantilla de la Página de Inicio (sin vínculo)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Incluir Inicio (del Blog)"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Plantilla del Blog"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ 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."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Plantilla del Blog (sin vínculo)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ 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."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Ruta del Sitio Principal"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ 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."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Plantilla de Inicio del Sitio Principal"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ 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."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Item Actual"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Incluir Vínculo a Item Actual"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr ""
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Ruta de Navegación Paginada"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Incluir la navegación paginada en la ruta de navegación"
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Plantilla de Entrada Paginada"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Plantilla de Entradas"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "La plantilla de la ruta de navegación para entradas."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Plantilla de la Entrada (sin vínculo)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Categorías"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Fechas"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Etiquetas"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Páginas"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Plantilla de la Página"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "La plantilla de la ruta de navegación para páginas."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Plantilla de la Página (sin vínculo)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Plantilla de Archivo Adjunto"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "Plantilla de %s"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "La plantilla de la ruta de navegación para %s."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "Plantilla de %s (sin vínculo)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Página Raíz"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Seleccione &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "Despliegue de Archivos de %s"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Plantilla de Categoría"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "La plantilla de la ruta de navegación para categorías."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Plantilla de la Categoría (sin vínculo)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Plantilla de la Etiqueta"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "La plantilla de la ruta de navegación para etiquetas."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Plantilla de la Etiqueta (sin vínculo)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Misceláneos"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Plantilla de Autor"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "La plantilla de la ruta de navegación para autores."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Plantilla del Autor (sin vínculo)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Formato de Despliegue de Autor"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ 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."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Plantilla de la Fecha"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "La plantilla de la ruta de navegación para fechas."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Plantilla de la Fecha (sin vínculo)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Plantilla de la Búsqueda"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ 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."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Plantilla de la Búsqueda (sin vínculo)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ 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."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "Título Error 404"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "Plantilla de Error 404"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "La plantilla para la ruta de la página de error 404."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Grabar Cambios"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Configuraciones"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Sus ajustes están desactualizados."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Migrar los ajustes ahora."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Migrar ahora."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "La instalación del plugin no se ha completado."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Cargar los ajustes predeterminados ahora."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Completar ahora."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Los ajustes del plugin no son válidos."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Intentar arreglar los ajustes ahora."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Arreglar ahora."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Ajustes guardados exitosamente."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Deshacer modificación de opciones."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Deshacer"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Algunos ajustes no fueron grabados."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Los siguientes ajustes no fueron grabados:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Ir a la documentación en línea de %s para su versión."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Deshacer importación de opciones."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Falló la importación de los ajustes desde el archivo."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Deshacer reinicio de opciones."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Se deshizo exitosamente la operación anterior."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Deshacer la última operación de \"deshacer\""
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Ajustes migrados exitosamente."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Los ajustes predeterminados se instalaron exitosamente."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Archivo de Ajustes"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Página %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "Página no encontrada"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Resultados de búsqueda para &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artículos por: %htitle%"
languages/breadcrumb-navxt-et.mo CHANGED
Binary file
languages/breadcrumb-navxt-et.po CHANGED
@@ -1,776 +1,816 @@
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: 2013-11-21 02:00:32+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Breadcrumb NavXT võrgu seaded"
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 "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."
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 "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."
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=\"Mine %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 "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %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 "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Pealkirja pikkus"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Piira teekonna raja pealkirja pikkust"
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Pealehe teekonna rada"
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 "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Postituse tüübid"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Postituse hierarhia kuvamine"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Postituse hierarhia"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "%s hierarhia kuvamine"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Postituse formaadid"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Lubatud pealkirja pikkus"
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Postitused"
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 "Postituse vanem"
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 "Hierarhia, mida teekonna rada kuvab"
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "%s hierarhia"
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 "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Süstemaatikad"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Postituse formaadi templiit"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "Teekonna raja postituse formaadi templiit."
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Postituse formaadi templiit (linkimata)"
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 "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
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 "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Autori arhiiv"
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=\"Mine %title% tag archives.\" 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 "Artiklid: <a title=\"Mine esimesele postituste lehele %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=\"Mine %title% category archives.\" 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=\"Mine %title% archives.\" 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 "Sinu seaded on uuema versiooni jaoks."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Tekst, mida kuvada enne teekonna rada"
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 "Breadcrumb NavXT tõlke projekt."
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 "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Lisa teekonna rada äärepaanile"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Nimetus"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Väljasta rada kui:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Nimekiri"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Lihtne"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Lisa teekonna rajale lingid"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "Pööra teekonna rada vastupidi"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Peida rada avalehel"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Puuduvad õigused, et jätkata."
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 "Seadete näpunäited paiknevad valikute all."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Vahendid"
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 "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Mine Breadcrumb NavXT sildi arhiivi."
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 dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
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 "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
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 "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "Tagasiandmine"
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 "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
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 "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
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 "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
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 "Peamine"
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 "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Teekonna rada koos eraldajatega"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Teekonna rada nimekirja formaadis"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Kiire alustamine"
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 "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Stiil"
279
-
280
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
- msgid "Import/Export/Reset"
282
- msgstr "Import/Eksport/Lähtestamine"
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 "Eksport"
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 "Lähtestamine"
298
-
299
- #: class.bcn_admin.php:309
300
- msgid "Breadcrumb NavXT Settings"
301
- msgstr "Breadcrumb NavXT seaded"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Teekonna raja eraldaja"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Paigutatakse iga teekonna elemendi vahele"
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 "Avalehe rada"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Lisa avaleht teekonna rajale"
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Avalehe mall"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "Avalehe teekonna raja mall."
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Avalehe mall (ei ole lingitud)"
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 "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
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 "Blogi teekonna rada"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Aseta blogi teekond rajale."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Blogi teekonna rada"
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 "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Blogi mall (linkimata)"
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 "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Peamise saidi teekonna rada"
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 "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Peamise saidi avalehe mall"
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 "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "Peamise saidi avalehe mall (linkimata)"
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 "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Avatud element"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Lingi avatud element"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Jah"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Lehekülgedele jaotatud teekonna rada"
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 "Lisa lehekülgedele jaotatud rada teekonna rajale"
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 "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Jaotatud mall"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Lehekülgedele jaotatud teekonna raja mall."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Postituste mall"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "Postituste teekonna raja mall"
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Postituste mall (linkimata)"
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 "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
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 "Kuva postitusele viivat teekonna raja süstemaatikat."
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 "Kategooriad"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "Kuupäevad"
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 "Sildid"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Lehed"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Lehe mall"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "Mall lehe teekonna raja jaoks."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Lehe mall (linkimata)"
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 "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Manuse mall"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Manuse teekonna raja mall."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Manuse mall (linkimata)"
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 "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Mine %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 "%s Mall"
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 "%s teekonna raja mall"
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 "%s Mall (linkimata)"
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 "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "%s juur lehekülg"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Vali &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "%s arhiivi kuvamine"
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 "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
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 "Kuva süstemaatika juhtimist %s teekonna ribas."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Kategooria mall"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "Kategooria teekonna rea mall"
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Kategooria mall (linkimata)"
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 "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Sildi mall"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "Siltide teekonna riba mall"
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Sildi mall (linkimata)"
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 "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
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 "Varia"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Autori mall"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Autori teekonna riba mall."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "Autori mall (linkimata)"
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 "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Autori kuvamise formaat"
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 kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Kuupäeva mall"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "Kuupäeva teekonna riba mall."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Kuupäeva mall (linkimata)"
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 "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Otsingu mall"
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 "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Otsingu mall (linkimata)"
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 "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404 pealkiri"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "404 mall"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "404 teekonna riba mall."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Salvesta muudatused"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Seaded"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "Sinu seaded on aegunud."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Suuna seaded ümber."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Suuna nüüd."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "Sinu plugina install on lõpetamata."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Laadi vaikeseaded nüüd."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Vii nüüd lõpule."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "Sinu plugina seaded on vigased."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Püüa parandada seadeid nüüd."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Paranda nüüd."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Seaded on edukalt salvestatud."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Pööra seadete salvestamine tagasi."
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 "Pööra tagasi"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Mõned seadetest ei salvestunud."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "Järgnevaid seadeid ei salvestatud:"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Palun lisa see sõnum oma %svea raportisse%s."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Mine %s oma versiooni tugi postitusse."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Seaded imporditi edukalt üleslaetud failist."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Pööra valikute import tagasi."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Valikute import failist ebaõnnestus."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Tühista valikute tagasipööramine."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Viimase operatsiooni seaded tühistati edukalt."
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Tühista viimane tagasipööramine operatsioon."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Seaded on edualt suunatud."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Vaikeseaded on edukalt installeeritud."
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 "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Seadete fail"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Leht %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 "Otsitulemused &#39;%htitle%&#39;"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgstr "Artiklid: %htitle%"
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: 2014-06-04 18:10: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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Manused"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine artiklile %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine sildiarhiivile %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine rubriigiarhiivile %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine arhiivile %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Hoiatus: Eraldiseisvad saidi seaded kirjutavad üle kõik sellel lehel tehtud seadistused."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Hoiatus: Eraldiseisvad saidi seaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) teekonnarada"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Mine artiklile %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT uuendati just pre-5.0 versioonilt. Palun mine oma pluginate lehele ja aktiveeri \"Breadcrumb NavXT\". Samuti deaktiveeri plugin \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\", et see sõnum kaoks."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Hoiatus: Sinu võrguseaded kirjutavad üle kõik sellel lehel tehtud seadistused."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Hoiatus: Sinu võrguseaded võivad kirjutada üle kõik sellel lehel tehtud seadistused."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Hoiatus: Ei leitud BCN_SETTINGS_* defineeritud avaldusi, taastan BCN_SETTINGS_FAVOR_NETWORK vaikeseaded."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT võrgu seaded"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Pealkirja pikkus"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Piira teekonna raja pealkirja pikkust"
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Pealehe teekonna rada"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Postituse tüübid"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Postituse hierarhia kuvamine"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Postituse hierarhia"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s hierarhia kuvamine"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Postituse formaadid"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Lubatud pealkirja pikkus"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Postitused"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Postituse vanem"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Hierarhia, mida teekonna rada kuvab"
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s hierarhia"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Süstemaatikad"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Postituse formaadi templiit"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Teekonna raja postituse formaadi templiit."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Postituse formaadi templiit (linkimata)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Autori arhiiv"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Sinu seaded on uuema versiooni jaoks."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Tekst, mida kuvada enne teekonna rada"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Breadcrumb NavXT tõlke projekt."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Lisa teekonna rada äärepaanile"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Nimetus"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Väljasta rada kui:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Nimekiri"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Lihtne"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Lisa teekonna rajale lingid"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Pööra teekonna rada vastupidi"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Peida rada avalehel"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Puuduvad õigused, et jätkata."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Seadete näpunäited paiknevad valikute all."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Vahendid"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Mine Breadcrumb NavXT sildi arhiivi."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Tagasiandmine"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Peamine"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Teekonna rada koos eraldajatega"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Teekonna rada nimekirja formaadis"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Kiire alustamine"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Stiil"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Import/Eksport/Lähtestamine"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Import"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Eksport"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Lähtestamine"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT seaded"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Teekonna raja eraldaja"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Paigutatakse iga teekonna elemendi vahele"
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Avalehe rada"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Lisa avaleht teekonna rajale"
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Avalehe mall"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Avalehe teekonna raja mall."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Avalehe mall (ei ole lingitud)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Blogi teekonna rada"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Aseta blogi teekond rajale."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Blogi teekonna rada"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Blogi mall (linkimata)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Peamise saidi teekonna rada"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Peamise saidi avalehe mall"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Peamise saidi avalehe mall (linkimata)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Avatud element"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Lingi avatud element"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Jah"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Lehekülgedele jaotatud teekonna rada"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Jaotatud mall"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Lehekülgedele jaotatud teekonna raja mall."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Postituste mall"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Postituste teekonna raja mall"
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Postituste mall (linkimata)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Kategooriad"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Kuupäevad"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Sildid"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Lehed"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Lehe mall"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Mall lehe teekonna raja jaoks."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Lehe mall (linkimata)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Manuse mall"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Manuse teekonna raja mall."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Manuse mall (linkimata)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s Mall"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "%s teekonna raja mall"
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s Mall (linkimata)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s juur lehekülg"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Vali &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s arhiivi kuvamine"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Kategooria mall"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Kategooria teekonna rea mall"
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Kategooria mall (linkimata)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Sildi mall"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Siltide teekonna riba mall"
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Sildi mall (linkimata)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Varia"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Autori mall"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Autori teekonna riba mall."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Autori mall (linkimata)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Autori kuvamise formaat"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Kuupäeva mall"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Kuupäeva teekonna riba mall."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Kuupäeva mall (linkimata)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Otsingu mall"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Otsingu mall (linkimata)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404 pealkiri"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "404 mall"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "404 teekonna riba mall."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Salvesta muudatused"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Seaded"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Sinu seaded on aegunud."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Suuna seaded ümber."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Suuna nüüd."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Sinu plugina install on lõpetamata."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Laadi vaikeseaded nüüd."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Vii nüüd lõpule."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Sinu plugina seaded on vigased."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Püüa parandada seadeid nüüd."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Paranda nüüd."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Seaded on edukalt salvestatud."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Pööra seadete salvestamine tagasi."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Pööra tagasi"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Mõned seadetest ei salvestunud."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Järgnevaid seadeid ei salvestatud:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Palun lisa see sõnum oma %svea raportisse%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Mine %s oma versiooni tugi postitusse."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Seaded imporditi edukalt üleslaetud failist."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Pööra valikute import tagasi."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Valikute import failist ebaõnnestus."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Tühista valikute tagasipööramine."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Viimase operatsiooni seaded tühistati edukalt."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Tühista viimane tagasipööramine operatsioon."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Seaded on edualt suunatud."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Vaikeseaded on edukalt installeeritud."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Seadete fail"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Leht %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Otsitulemused &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artiklid: %htitle%"
languages/breadcrumb-navxt-fi.mo CHANGED
Binary file
languages/breadcrumb-navxt-fi.po CHANGED
@@ -1,776 +1,816 @@
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: 2013-11-21 02:03:22+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Breadcrumb NavXT verkkoasetukset"
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 "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>."
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 "Hierarkia jonka murupolku näyttää. Huomioi että vaihtoehto \"Artikkelin yläpuolella oleva taso\" saattaa vaatia toisen lisäpalikan asennuksen."
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=\"Siirry %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 "Hakutulokset &#39;<a title=\"Siirry hakutulosten ensimmäiselle sivulle %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 "Yleisemmin muokatut asetukset löytyvät tältä välilehdeltä."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Otsikon pituus"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Rajoita murupolun otsikon pituus."
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Pääsivuston murupolku"
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 "Tämän välilehden alla löytyy kaikkien sivujen, artikkeleiden ja kustomoitujen artikkelityypien asetukset."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Julkaisun tyyppi"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Näytä Julkaisun hierarkia"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Julkaisun hierarkia"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "%s Hieraria näkymä"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Julkaisuformaatit"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Suurin sallittu otsikon pituus:"
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Julkaisut"
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 "Julkaisun ylempi taso"
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 "Hierarkia jota murupolku näyttää."
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "%s Hierarkia"
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 "Asetukset kaikille tietoluokille (mukaan lukien Kategoriat, Tunnisteet, ja räätälöidyt tietoluokat) sijaitsevat tässä välilehdessä."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Tietoluokat"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Artikkelin/sivun mallipohja"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "Murupolkujen mallipohja (artikkelit/sivut)"
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Artikkelin/sivun mallipohja (ilman linkkiä)"
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 "Murupolkujen mallipohja (artikkelit/sivut) jota käytetään kun niissä ei ole linkkejä"
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 "Asetukset kirjoittaja ja päivämäärä kokoelmille, hauille ja 404-sivuille löytyvät tästä välilehdestä."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Kirjoittajan kokoelmat"
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=\"Siirry %title% tägi kokoelmaan.\" 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 "Kirjoittajan artikkelit: <a title=\"Siirry ensimmäiselle sivulle tuloksia jossa kirjoittaja on %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=\"Siirry kategorian %title% kokoelmaan.\" 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=\"Siirry %title% kokoelmaan.\" 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 "Asetuksesi ovat uudemmalle versiolle."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Näytä tämä teksti ennen murupolkua:"
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 "Siirry Breadcrumb NavXT käännösprojektiin."
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 "PHP versio on liian vanha, päivitä se uudempaan versioon. Nykyversio on %1$s, Breadcrumb NavXT vaatii version %2$s"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Lisää murupolun sivupalkkiin"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Otsikko:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Näitä murupolku näin:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Lista"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Riisuttu"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Lisää murupolkuun linkit"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "Näytä polku kääneisessä järjestyksessä"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Piilota etusivulta murupolku"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Oikeudet eivät riitä jatkamaan."
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 "Jokaisen vaihtoehdon alla näkyy vihjeita sen käytöstä."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Resurssit"
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 "%sOhjeita ja esimerkkejä%s: Ohjelman tekijän kotisivuilta löydät runsaasti oppaita, opetusohjeita sekä miten tehdään kirjoituksia."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Siirry Breadcrumb NavXT tägi-arkistoon."
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 "%sDokumentaatio verkossa%s:Tarkista verkkosivuilta tarkemmat dokumentaatiot."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "Siirry Breadcrumb NavXT dokumentaatioon verkossa"
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 "%sVirheraportit%s: Jos uskot löytäneen ohjemasta virheen muista mainita käytössä-olevan WordPress versiosi sekä kuvauksen miten löysit virheen."
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 "Siirry Breadcrumb NavXT tuki-raportointiin käyttämälle versiollesi."
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "Vasta-lahjoitus"
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 "%sLahjoita%s: Jos nautit Breadcrumb NavXT:sta ja haluat tukea sen kehitystä, harkitse tarjota kehittelijälle oluen."
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 "Siirry PayPal:iin lahjoittamaan Breadcrumb NavXT:n kehitystyölle."
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 "%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."
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 "Yleistä"
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 "Tämän sivun asetukset tulevat voimaan joko käyttämällä mukana-tullutta Breadcrumb NavXT widgettiä tai lisäämällä toinen alla-olevista koodi-pätkästä käyttämäänne teemaan."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Murupolku jossa välimerkit"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Listamuotoinen murupolku"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Pika-aloitus"
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 "Käyttämällä koodia pikä-aloitus osasta yllä, voit tyylitellä murupolkusi alla-olevan CSS:n kanssa."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Tyylittely"
279
-
280
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
- msgid "Import/Export/Reset"
282
- msgstr "Tuonti/Vienti/Resetointi"
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 "Tuonti"
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 "Vienti"
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 "Resetointi"
298
-
299
- #: class.bcn_admin.php:309
300
- msgid "Breadcrumb NavXT Settings"
301
- msgstr "Breadcrumb NavXT asetukset"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Murupolun välimerkki"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Sijoitetaan jokaisen murun väliin"
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 "Koti-murunen"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Näytä koti-murunen murupolussa."
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Koti-lomakepohja"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "Lomakepohja koti-muruselle."
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Lomakepohja koti-muruselle (ilman linkkiä)"
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 "Lomakepohja koti-muruselle (murut ilman linkkiä) "
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 "Blogin murupolku"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Lisää blogin murupolku loppuun."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Blogin lomakepohja"
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 "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteessa)."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Blogin lomakepohja (ilman linkkejä)"
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 "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteissa jossa murupolku ei ole linkattu)."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Pääsivuston murupolku"
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 "Lisää pääsivuston muru polkuun moni-sivusto ympäristössä."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Pääsivuston etusivu-lomakepohja"
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 "Pääsivuston etusivu-murupolkun lomakepohja (käytettän moni-sivusto ympäristössä)."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "Pääsivuston etusivu-lomakepohja (ilman linkkejä)"
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 "Pääsivuston etusivu-lomakepohja (käytetään moni-sivusto ympäristössä jossa murupolut eivät ole linkattu)."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Nykyinen kohde"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Nykyinen kohde (linkattu)"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Kyllä"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Sivutettu murupolku"
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 "Näytä myös sivutettu murupolku murupolussa."
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 "Merkkinä siitä että käyttäjä ei ole ensimmäisellä tai sivutetulla artikkelissa/sivussa."
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Sivutettu asiakirjamalli"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Sivutettujen julkaisujen murupolku-asiakirjamalli."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Artikkelin asiakirjamalli"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "Artikkelien murupolkujen asiakirjamalli."
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Artikkelin asiakirjamalli (ilman linkkejä)"
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 "Asiakirjamalli artikkelien murupolulle (käytetään vain silloin kun murupolku ei ole linkattu)."
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 "Näytä tietorakenne artikkeleille murupolussa."
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 "Kategoriat"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "Päivämäärät"
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 "Tägit"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Sivut"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Sivun asiakirjamalli"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "Sivun murupolun asiakirjamalli."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Sivun asiakirjamalli (ilman linkkiä)"
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 "Murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Liitteen lomakepohja"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Lomakepohja liitteen murupolulle."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Liitteen lomakepohja (linkkaamaton)"
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 "Liitteen murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä. "
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Siirry %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 "%s Lomakepohja"
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 "Lomakepohja %s murupolulle."
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 "%s Lomakepohja (linkkaamaton)"
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 "Lomakepohja %s murupolulle, jota käytetään vain silloin kun murupolku ei käytä linkkejä. "
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "%s Aloitussivu"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Valitse &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "%s Arkistonäkymä"
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 "Näytä murupolku %s artikkelityypin arkistolle murupolussa."
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 "Näytä polku %s murupolulle."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Kategorialomakepohja"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "Kategoria murupolun lomakepohja."
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Kategorialomakepohja (linkkamaton)"
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 "Kategoria murupolun lomakepohja, jota käytetään vain silloin kun murupolku on linkkamaton."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Tägi lomakepohja"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "Lomakepohja tägi murupoluille."
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Tägi lomakepohja (linkkamaton)"
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 "Lomakepohja tägi murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
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 "Muut"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Kirjoittaja lomakepohja"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Lomakepohja kirjoittajan murupoluille."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "Kirjoittaja lomakepohja (linkkamaton)"
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 "Lomakepohja kirjoittaja lomakepohjalle, jota käytetään vain silloin kun murupolku on linkkaamaton."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Kirjoittaja näkymä"
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 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."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Päiväys lomakepohja"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "Päiväys murupolun lomakepohja."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Päiväys lomakepohja (linkkamaton)"
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 "Lomakepohja päiväys murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Haku lomakepohja"
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 "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Haku lomakepohja (linkkamaton)"
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 "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun ja murupolku on linkkamaton."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404 Otsikko"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "404 lomakepohja"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "Lomakepohja 404 murupoluille."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Tallenna muutokset"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Asetukset"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "Asetuksesi ovat vanhentuneet."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Päivitä asetuksesi nyt."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Päivitä nyt."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "Apuohjelman asennus on kesken."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Ota käyttöön oletus-asetukset."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Viimeistele nyt."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "Apuohjelman asetukset ovat epäkelvot."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Yritä korjata asetukset nyt."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Korjaa nyt."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Asetukset tallenettu onnistuneesti."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Peruuta asetusten tallennus."
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 "Peruuta"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Joitain asetuksia ei voitu tallentaa."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "Seuraavat asetukset eivät voitu tallentaa:"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Liitä %sbug report%s:iin tämä viesti."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Siirry %s tukisivulle versiollesi."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Asetusten tuonti onnistui ladatulta tiedostolta."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Peruuta asetusten tuonti."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Asetusten tuonti tiedostosta epäonnistui."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Asetukset onnistuneesti palautettu oletusarvoille."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Peruuta asetusten resetointi."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Viimeisin asetusten muutos onnistuneesti peruutettu."
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Peruuta viimeisin muutos."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Asetukset onnistuneesti muunnettu."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Oletusasetukset onnistuneesti asennettu."
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 "Tuo asetukset XML tiedostosta, Vie nykyiset asetukset XML tiedostoon tai palauta perusasetukset."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Asetus-tiedosto"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Valitse XML asetustiedosto ladattavaksi."
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Sivu %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 "&#39;%htitle%&#39; hakutulokset"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgstr "Artikkelit kirjoittajalta: %htitle%"
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: 2014-05-24 08:16: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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Liitetiedostot"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title% tagi arkistoon.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title% kategoria arkistoon.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title% arkistoon.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Varoitus: Verkkosivukohtaiset asetukset kumoavat tämä sivun määritykset."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Varoitus: Verkkosivukohtaiset asetukset saattavat kumota tämä sivun määritykset."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Murupolut"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Siirry %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT on päivitetty versiosta joka oli vanhempi kuin 5.0, vieraile lisäpalikat sivulla ja ota käyttöön \"Breadcrumb NavXT\". Lisäksi, poista käytöstä \"Breadcrumb NavXT 5.0 Migraatio yhteensopivuuskerros\" lisäpalikka, jotta tämä ilmoitus poistuu."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Varoitus: Verkkoasetuksesi tulevat kumomaan tämän sivun määritykset. "
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Varoitus: Verkkoasetuksesi voivat kumota tämän sivun määritykset."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Varoitus: BCN_SETTINGS_* määritystä ei löydy, oletusasetuksena BCN_SETTINGS_FAVOR_NETWORK määritelty."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT verkkoasetukset"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT murupolut"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ msgstr "Hierarkia jonka murupolku näyttää. Huomioi että vaihtoehto \"Artikkelin yläpuolella oleva taso\" saattaa vaatia toisen lisäpalikan asennuksen."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Hakutulokset &#39;<a title=\"Siirry hakutulosten ensimmäiselle sivulle %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Yleisemmin muokatut asetukset löytyvät tältä välilehdeltä."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Otsikon pituus"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Rajoita murupolun otsikon pituus."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Pääsivuston murupolku"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Tämän välilehden alla löytyy kaikkien sivujen, artikkeleiden ja kustomoitujen artikkelityypien asetukset."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Julkaisun tyyppi"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Näytä Julkaisun hierarkia"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Julkaisun hierarkia"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s Hieraria näkymä"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Julkaisuformaatit"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Suurin sallittu otsikon pituus:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Julkaisut"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Julkaisun ylempi taso"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Hierarkia jota murupolku näyttää."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s Hierarkia"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Asetukset kaikille tietoluokille (mukaan lukien Kategoriat, Tunnisteet, ja räätälöidyt tietoluokat) sijaitsevat tässä välilehdessä."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Tietoluokat"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Artikkelin/sivun mallipohja"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Murupolkujen mallipohja (artikkelit/sivut)"
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Artikkelin/sivun mallipohja (ilman linkkiä)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Murupolkujen mallipohja (artikkelit/sivut) jota käytetään kun niissä ei ole linkkejä"
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Asetukset kirjoittaja ja päivämäärä kokoelmille, hauille ja 404-sivuille löytyvät tästä välilehdestä."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Kirjoittajan kokoelmat"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Kirjoittajan artikkelit: <a title=\"Siirry ensimmäiselle sivulle tuloksia jossa kirjoittaja on %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Asetuksesi ovat uudemmalle versiolle."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Näytä tämä teksti ennen murupolkua:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Siirry Breadcrumb NavXT käännösprojektiin."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ msgstr "PHP versio on liian vanha, päivitä se uudempaan versioon. Nykyversio on %1$s, Breadcrumb NavXT vaatii version %2$s"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Lisää murupolun sivupalkkiin"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Otsikko:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Näitä murupolku näin:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Lista"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Riisuttu"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Lisää murupolkuun linkit"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Näytä polku kääneisessä järjestyksessä"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Piilota etusivulta murupolku"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Oikeudet eivät riitä jatkamaan."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Jokaisen vaihtoehdon alla näkyy vihjeita sen käytöstä."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Resurssit"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sOhjeita ja esimerkkejä%s: Ohjelman tekijän kotisivuilta löydät runsaasti oppaita, opetusohjeita sekä miten tehdään kirjoituksia."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Siirry Breadcrumb NavXT tägi-arkistoon."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sDokumentaatio verkossa%s:Tarkista verkkosivuilta tarkemmat dokumentaatiot."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Siirry Breadcrumb NavXT dokumentaatioon verkossa"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ msgstr "%sVirheraportit%s: Jos uskot löytäneen ohjemasta virheen muista mainita käytössä-olevan WordPress versiosi sekä kuvauksen miten löysit virheen."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Siirry Breadcrumb NavXT tuki-raportointiin käyttämälle versiollesi."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Vasta-lahjoitus"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sLahjoita%s: Jos nautit Breadcrumb NavXT:sta ja haluat tukea sen kehitystä, harkitse tarjota kehittelijälle oluen."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Siirry PayPal:iin lahjoittamaan Breadcrumb NavXT:n kehitystyölle."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ 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."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Yleistä"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ msgstr "Tämän sivun asetukset tulevat voimaan joko käyttämällä mukana-tullutta Breadcrumb NavXT widgettiä tai lisäämällä toinen alla-olevista koodi-pätkästä käyttämäänne teemaan."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Murupolku jossa välimerkit"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Listamuotoinen murupolku"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Pika-aloitus"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Käyttämällä koodia pikä-aloitus osasta yllä, voit tyylitellä murupolkusi alla-olevan CSS:n kanssa."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Tyylittely"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Tuonti/Vienti/Resetointi"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Tuonti"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Vienti"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Resetointi"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT asetukset"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Murupolun välimerkki"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Sijoitetaan jokaisen murun väliin"
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Koti-murunen"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Näytä koti-murunen murupolussa."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Koti-lomakepohja"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Lomakepohja koti-muruselle."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Lomakepohja koti-muruselle (ilman linkkiä)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Lomakepohja koti-muruselle (murut ilman linkkiä) "
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Blogin murupolku"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Lisää blogin murupolku loppuun."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Blogin lomakepohja"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteessa)."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Blogin lomakepohja (ilman linkkejä)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteissa jossa murupolku ei ole linkattu)."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Pääsivuston murupolku"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Lisää pääsivuston muru polkuun moni-sivusto ympäristössä."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Pääsivuston etusivu-lomakepohja"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Pääsivuston etusivu-murupolkun lomakepohja (käytettän moni-sivusto ympäristössä)."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Pääsivuston etusivu-lomakepohja (ilman linkkejä)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Pääsivuston etusivu-lomakepohja (käytetään moni-sivusto ympäristössä jossa murupolut eivät ole linkattu)."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Nykyinen kohde"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Nykyinen kohde (linkattu)"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Kyllä"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Sivutettu murupolku"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Näytä myös sivutettu murupolku murupolussa."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Merkkinä siitä että käyttäjä ei ole ensimmäisellä tai sivutetulla artikkelissa/sivussa."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Sivutettu asiakirjamalli"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Sivutettujen julkaisujen murupolku-asiakirjamalli."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Artikkelin asiakirjamalli"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Artikkelien murupolkujen asiakirjamalli."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Artikkelin asiakirjamalli (ilman linkkejä)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Asiakirjamalli artikkelien murupolulle (käytetään vain silloin kun murupolku ei ole linkattu)."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Näytä tietorakenne artikkeleille murupolussa."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Kategoriat"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Päivämäärät"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Tägit"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Sivut"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Sivun asiakirjamalli"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Sivun murupolun asiakirjamalli."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Sivun asiakirjamalli (ilman linkkiä)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Liitteen lomakepohja"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Lomakepohja liitteen murupolulle."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Liitteen lomakepohja (linkkaamaton)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Liitteen murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä. "
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s Lomakepohja"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "Lomakepohja %s murupolulle."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s Lomakepohja (linkkaamaton)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "Lomakepohja %s murupolulle, jota käytetään vain silloin kun murupolku ei käytä linkkejä. "
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Aloitussivu"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Valitse &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s Arkistonäkymä"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Näytä murupolku %s artikkelityypin arkistolle murupolussa."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Näytä polku %s murupolulle."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Kategorialomakepohja"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Kategoria murupolun lomakepohja."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Kategorialomakepohja (linkkamaton)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "Kategoria murupolun lomakepohja, jota käytetään vain silloin kun murupolku on linkkamaton."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Tägi lomakepohja"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Lomakepohja tägi murupoluille."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Tägi lomakepohja (linkkamaton)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Lomakepohja tägi murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Muut"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Kirjoittaja lomakepohja"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Lomakepohja kirjoittajan murupoluille."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Kirjoittaja lomakepohja (linkkamaton)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Lomakepohja kirjoittaja lomakepohjalle, jota käytetään vain silloin kun murupolku on linkkaamaton."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Kirjoittaja näkymä"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ 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."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Päiväys lomakepohja"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Päiväys murupolun lomakepohja."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Päiväys lomakepohja (linkkamaton)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Lomakepohja päiväys murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Haku lomakepohja"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Haku lomakepohja (linkkamaton)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun ja murupolku on linkkamaton."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404 Otsikko"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "404 lomakepohja"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "Lomakepohja 404 murupoluille."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Tallenna muutokset"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Asetukset"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Asetuksesi ovat vanhentuneet."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Päivitä asetuksesi nyt."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Päivitä nyt."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Apuohjelman asennus on kesken."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Ota käyttöön oletus-asetukset."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Viimeistele nyt."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Apuohjelman asetukset ovat epäkelvot."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Yritä korjata asetukset nyt."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Korjaa nyt."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Asetukset tallenettu onnistuneesti."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Peruuta asetusten tallennus."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Peruuta"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Joitain asetuksia ei voitu tallentaa."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Seuraavat asetukset eivät voitu tallentaa:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Liitä %sbug report%s:iin tämä viesti."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Siirry %s tukisivulle versiollesi."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Asetusten tuonti onnistui ladatulta tiedostolta."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Peruuta asetusten tuonti."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Asetusten tuonti tiedostosta epäonnistui."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Asetukset onnistuneesti palautettu oletusarvoille."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Peruuta asetusten resetointi."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Viimeisin asetusten muutos onnistuneesti peruutettu."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Peruuta viimeisin muutos."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Asetukset onnistuneesti muunnettu."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Oletusasetukset onnistuneesti asennettu."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Tuo asetukset XML tiedostosta, Vie nykyiset asetukset XML tiedostoon tai palauta perusasetukset."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Asetus-tiedosto"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Valitse XML asetustiedosto ladattavaksi."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Sivu %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "&#39;%htitle%&#39; hakutulokset"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artikkelit kirjoittajalta: %htitle%"
languages/breadcrumb-navxt-fr_FR.mo DELETED
Binary file
languages/breadcrumb-navxt-fr_FR.po DELETED
@@ -1,522 +0,0 @@
1
- # Translation of Breadcrumb NavXT in French (France)
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:29:52+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n > 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_widget.php:93
14
- msgid "Text to show before the trail:"
15
- msgstr ""
16
-
17
- #: breadcrumb_navxt_widget.php:100
18
- msgid "Schema.org"
19
- msgstr ""
20
-
21
- #: breadcrumb_navxt_admin.php:227
22
- msgid "Go to the Breadcrumb NavXT translation project."
23
- msgstr ""
24
-
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr ""
28
-
29
- #: breadcrumb_navxt_widget.php:89
30
- msgid "Title:"
31
- msgstr "Titre:"
32
-
33
- #: breadcrumb_navxt_widget.php:101
34
- msgid "Plain"
35
- msgstr "Intégral"
36
-
37
- #: breadcrumb_navxt_widget.php:106
38
- msgid "Link the breadcrumbs"
39
- msgstr "Lie le fil d'ariane"
40
-
41
- #: breadcrumb_navxt_widget.php:108
42
- msgid "Reverse the order of the trail"
43
- msgstr "Inverse l'ordre du chemin d'accès"
44
-
45
- #: breadcrumb_navxt_widget.php:110
46
- msgid "Hide the trail on the front page"
47
- msgstr "Cache le chemin d'accès sur la page d'accueil"
48
-
49
- #: breadcrumb_navxt_admin.php:118
50
- msgid "Insufficient privileges to proceed."
51
- msgstr "Vos droits sont insuffisants pour cette fonction."
52
-
53
- #: breadcrumb_navxt_admin.php:220
54
- msgid "Tips for the settings are located below select options."
55
- msgstr "Des astuces pour les paramètres sont situés sous les options sélectionnés."
56
-
57
- #: breadcrumb_navxt_admin.php:221
58
- msgid "Resources"
59
- msgstr "Ressources"
60
-
61
- #: breadcrumb_navxt_admin.php:222
62
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
- msgstr "%sTutoriels et guides%s : Il y a plusieurs guides, tutoriels et pas-à-pas disponible sur le site web de l'auteur (en anglais)."
64
-
65
- #: breadcrumb_navxt_admin.php:222
66
- msgid "Go to the Breadcrumb NavXT tag archive."
67
- msgstr "Aller à l'archive des tags de Breadcrumb NavXT."
68
-
69
- #: breadcrumb_navxt_admin.php:223
70
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
- msgstr "%sDocumentation en ligne%s : Cherchez dans la documentation pour plus d'informations techniques."
72
-
73
- #: breadcrumb_navxt_admin.php:223
74
- msgid "Go to the Breadcrumb NavXT online documentation"
75
- msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
76
-
77
- #: breadcrumb_navxt_admin.php:224
78
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
- msgstr "%sSignaler un bug%s : Si vous pensez avoir trouvé un bug, merci de préciser votre version de WordPress et des détails sur la façon de reproduire ce bug."
80
-
81
- #: breadcrumb_navxt_admin.php:224
82
- msgid "Go to the Breadcrumb NavXT support post for your version."
83
- msgstr "Aller au support en ligne de Breadcrumb NavXT pour votre version."
84
-
85
- #: breadcrumb_navxt_admin.php:225
86
- msgid "Giving Back"
87
- msgstr "Faire un retour d'utilisation"
88
-
89
- #: breadcrumb_navxt_admin.php:226
90
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
- msgstr "%sDonation%s : Vous aimez Breadcrumb NavXT et voulez aider à son développement ? Offrez une bière à l'auteur !"
92
-
93
- #: breadcrumb_navxt_admin.php:226
94
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
- msgstr "Aller sur Paypal pour faire un don à l'équipe de Breadcrumb NavXT."
96
-
97
- #: breadcrumb_navxt_admin.php:227
98
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
- msgstr "%sTraduction%s: Votre langue n'est pas disponible ? Contactez John Havlik pour participer à sa traduction."
100
-
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
102
- msgid "General"
103
- msgstr "Général"
104
-
105
- #: breadcrumb_navxt_admin.php:235
106
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
- msgstr "Pour que les réglages sur cette page prennent effet, vous devez soit utiliser le widget Breadcrumb NavXT, ou ajouter le code ci-dessous dans votre thème."
108
-
109
- #: breadcrumb_navxt_admin.php:236
110
- msgid "Breadcrumb trail with separators"
111
- msgstr "Chemin du fil d'ariane avec séparateurs"
112
-
113
- #: breadcrumb_navxt_admin.php:242
114
- msgid "Breadcrumb trail in list form"
115
- msgstr "Chemin du fil d'ariane en format liste"
116
-
117
- #: breadcrumb_navxt_admin.php:251
118
- msgid "Quick Start"
119
- msgstr "Démarrage Rapide"
120
-
121
- #: breadcrumb_navxt_admin.php:254
122
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
- msgstr "Utiliser le code de la section Démarrage Rapide, le CSS suivant peut-être utilisé comme une base de départ pour styliser votre fil d'ariane."
124
-
125
- #: breadcrumb_navxt_admin.php:266
126
- msgid "Styling"
127
- msgstr "Styliser"
128
-
129
- #: breadcrumb_navxt_admin.php:272
130
- msgid "Import/Export/Reset"
131
- msgstr "Importer / Exporter / Remettre à zéro"
132
-
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
- msgid "Import"
135
- msgstr "Importation"
136
-
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
- msgid "Export"
139
- msgstr "Exportation"
140
-
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
- msgid "Reset"
143
- msgstr "Réinitialisation"
144
-
145
- #: breadcrumb_navxt_admin.php:311
146
- msgid "Breadcrumb NavXT Settings"
147
- msgstr "Paramétrages de Breadcrumb NavXT"
148
-
149
- #: breadcrumb_navxt_admin.php:326
150
- msgid "Breadcrumb Separator"
151
- msgstr "Séparateur du fil d'ariane"
152
-
153
- #: breadcrumb_navxt_admin.php:326
154
- msgid "Placed in between each breadcrumb."
155
- msgstr "Placé entre chaque élément du fil d'ariane."
156
-
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Longueur maximum du titre "
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
- msgid "Home Breadcrumb"
163
- msgstr "Origine du fil d'ariane"
164
-
165
- #: breadcrumb_navxt_admin.php:336
166
- msgid "Place the home breadcrumb in the trail."
167
- msgstr "Inclure la page d'accueil dans le fil d'ariane."
168
-
169
- #: breadcrumb_navxt_admin.php:341
170
- msgid "Home Title: "
171
- msgstr "Titre de la page d'accueil:"
172
-
173
- #: breadcrumb_navxt_admin.php:349
174
- msgid "Home Template"
175
- msgstr "Template de la page d'accueil"
176
-
177
- #: breadcrumb_navxt_admin.php:349
178
- msgid "The template for the home breadcrumb."
179
- msgstr "Le template pour le fil d'ariane de la page d'accueil"
180
-
181
- #: breadcrumb_navxt_admin.php:350
182
- msgid "Home Template (Unlinked)"
183
- msgstr "Template de la page d'accueil (non-lié)"
184
-
185
- #: breadcrumb_navxt_admin.php:350
186
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
- msgstr "Le modèle pour le fil d'ariane de la page d'accueil, utilisé seulement quand le fil d'ariane n'est pas lié."
188
-
189
- #: breadcrumb_navxt_admin.php:351
190
- msgid "Blog Breadcrumb"
191
- msgstr "Fil d'ariane du blog"
192
-
193
- #: breadcrumb_navxt_admin.php:351
194
- msgid "Place the blog breadcrumb in the trail."
195
- msgstr "Mettre le fil d'ariane du blog en route. "
196
-
197
- #: breadcrumb_navxt_admin.php:352
198
- msgid "Blog Template"
199
- msgstr "Template du blog"
200
-
201
- #: breadcrumb_navxt_admin.php:352
202
- msgid "The template for the blog breadcrumb, used only in static front page environments."
203
- msgstr "Le template pour le fil d'ariane du blog, utilisé seulement dans les pages statiques."
204
-
205
- #: breadcrumb_navxt_admin.php:353
206
- msgid "Blog Template (Unlinked)"
207
- msgstr "Template du blog (non-lié)"
208
-
209
- #: breadcrumb_navxt_admin.php:353
210
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
- msgstr "Le template pour le fil d'ariane du blog, utilisé seulement dans les pages statiques et quand le fil d'ariane n'est pas lié."
212
-
213
- #: breadcrumb_navxt_admin.php:357
214
- msgid "Main Site Breadcrumb"
215
- msgstr "Fil d'ariane du site principal"
216
-
217
- #: breadcrumb_navxt_admin.php:362
218
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
- msgstr "Inclure la page d'accueil du site principal dans le fil d'ariane, pour un réglage multisite."
220
-
221
- #: breadcrumb_navxt_admin.php:367
222
- msgid "Main Site Home Title: "
223
- msgstr "Titre de la page d'accueil du site principal:"
224
-
225
- #: breadcrumb_navxt_admin.php:376
226
- msgid "Main Site Home Template"
227
- msgstr "Template de la page d'accueil du site principal"
228
-
229
- #: breadcrumb_navxt_admin.php:376
230
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
- msgstr "Le template pour le fil d'ariane de la page d'accueil du site principal, utilisé seulement dans un environnement multi-site."
232
-
233
- #: breadcrumb_navxt_admin.php:377
234
- msgid "Main Site Home Template (Unlinked)"
235
- msgstr "Template de la page d'accueil du site principal (non-lié)"
236
-
237
- #: breadcrumb_navxt_admin.php:377
238
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
- msgstr "Le template pour le fil d'ariane de la page d'accueil du site principal, utilisé seulement dans un environnement multi-site et quand le fil d'ariane n'est pas lié."
240
-
241
- #: breadcrumb_navxt_admin.php:382
242
- msgid "Current Item"
243
- msgstr "Elément courant"
244
-
245
- #: breadcrumb_navxt_admin.php:385
246
- msgid "Link Current Item"
247
- msgstr "Faire un lien avec l'élément courant"
248
-
249
- #: breadcrumb_navxt_admin.php:385
250
- msgid "Yes"
251
- msgstr "Oui"
252
-
253
- #: breadcrumb_navxt_admin.php:386
254
- msgid "Paged Breadcrumb"
255
- msgstr "Fil d'ariane avec pagination"
256
-
257
- #: breadcrumb_navxt_admin.php:386
258
- msgid "Include the paged breadcrumb in the breadcrumb trail."
259
- msgstr "Inclus la pagination dans le fil d'ariane."
260
-
261
- #: breadcrumb_navxt_admin.php:386
262
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
- msgstr "Indique que l'utilisateur se trouve dans une autre page/article que la première lorsque la pagination est activée."
264
-
265
- #: breadcrumb_navxt_admin.php:387
266
- msgid "Paged Template"
267
- msgstr "Template de pagination"
268
-
269
- #: breadcrumb_navxt_admin.php:387
270
- msgid "The template for paged breadcrumbs."
271
- msgstr "Le template pour le fil d'ariane des pages paginées."
272
-
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Articles &amp; Pages"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
- msgid "Post Template"
279
- msgstr "Modèle d'article"
280
-
281
- #: breadcrumb_navxt_admin.php:395
282
- msgid "The template for post breadcrumbs."
283
- msgstr "Le template pour le fil d'ariane des articles."
284
-
285
- #: breadcrumb_navxt_admin.php:396
286
- msgid "Post Template (Unlinked)"
287
- msgstr "Modèle d'article (non-lié)"
288
-
289
- #: breadcrumb_navxt_admin.php:396
290
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
- msgstr "Le template pour le fil d'ariane des articles, utilisé uniquement quand le fil d'ariane n'est pas lié"
292
-
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Affichage de la taxonomie des articles"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
- msgstr "Montrer la taxonomie dans le fil d'ariane."
300
-
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Taxonomie des articles"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
- msgid "Categories"
307
- msgstr "Catégories"
308
-
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
- msgid "Dates"
311
- msgstr "Dates"
312
-
313
- #: breadcrumb_navxt_admin.php:407
314
- msgid "Tags"
315
- msgstr "Tags"
316
-
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
- msgid "Pages"
319
- msgstr "Pages"
320
-
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
- msgid "Page Template"
327
- msgstr "Template de page"
328
-
329
- #: breadcrumb_navxt_admin.php:423
330
- msgid "The template for page breadcrumbs."
331
- msgstr "Le template pour le fil d'ariane des pages."
332
-
333
- #: breadcrumb_navxt_admin.php:424
334
- msgid "Page Template (Unlinked)"
335
- msgstr "Template de page (non-lié)"
336
-
337
- #: breadcrumb_navxt_admin.php:424
338
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
- msgstr "Le template pour le fil d'ariane des pages, utilisé seulement quand le fil d'ariane n'est pas lié."
340
-
341
- #: breadcrumb_navxt_admin.php:425
342
- msgid "Attachment Template"
343
- msgstr "Template des fichiers joints."
344
-
345
- #: breadcrumb_navxt_admin.php:425
346
- msgid "The template for attachment breadcrumbs."
347
- msgstr "Le template pour le fil d'ariane des fichiers joints."
348
-
349
- #: breadcrumb_navxt_admin.php:426
350
- msgid "Attachment Template (Unlinked)"
351
- msgstr "Template de fichiers joints (non-lié)"
352
-
353
- #: breadcrumb_navxt_admin.php:426
354
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
- msgstr "Le template pour le fil d'ariane des fichiers joints, utilisé seulement quand le fil d'ariane n'est pas lié."
356
-
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
- msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">%htitle%</a>"
363
-
364
- #: breadcrumb_navxt_admin.php:567
365
- msgid "%htitle%"
366
- msgstr "%htitle%"
367
-
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
- msgid "%s Template"
370
- msgstr "%s Template"
371
-
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
- msgid "The template for %s breadcrumbs."
374
- msgstr "Le template pour le fil d'ariane %s"
375
-
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
- msgid "%s Template (Unlinked)"
378
- msgstr "%s Template (non-lié)"
379
-
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
- msgstr "Le template pour le fil d'ariane %s, utilisé seulement quand le fil d'ariane n'est pas lié."
383
-
384
- #: breadcrumb_navxt_admin.php:448
385
- msgid "%s Root Page"
386
- msgstr "%s Page racine"
387
-
388
- #: breadcrumb_navxt_admin.php:451
389
- msgid "&mdash; Select &mdash;"
390
- msgstr "&mdash; Selectionner &mdash;"
391
-
392
- #: breadcrumb_navxt_admin.php:455
393
- msgid "%s Archive Display"
394
- msgstr "%s Affichage des archives"
395
-
396
- #: breadcrumb_navxt_admin.php:455
397
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
- msgstr "Montrer le fil d'ariane pour les %s archives dans le fil d'ariane."
399
-
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "Affichage de la taxonomie des %s"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
- msgstr "Montrer la taxonomie dans un %s dans le fil d'ariane."
407
-
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "Taxonomie des %s "
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Catégories &amp; Tags"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
- msgid "Category Template"
418
- msgstr "Template de catégorie"
419
-
420
- #: breadcrumb_navxt_admin.php:488
421
- msgid "The template for category breadcrumbs."
422
- msgstr "Le template pour le fil d'ariane des catégories."
423
-
424
- #: breadcrumb_navxt_admin.php:489
425
- msgid "Category Template (Unlinked)"
426
- msgstr "Template de catégorie (non-lié)"
427
-
428
- #: breadcrumb_navxt_admin.php:489
429
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
- msgstr "Le template pour le fil d'ariane des catégories, utilisé seulement quand le fil d'ariane n'est pas lié."
431
-
432
- #: breadcrumb_navxt_admin.php:490
433
- msgid "Tag Template"
434
- msgstr "Template de tag"
435
-
436
- #: breadcrumb_navxt_admin.php:490
437
- msgid "The template for tag breadcrumbs."
438
- msgstr "Template de fil d'ariane des tags."
439
-
440
- #: breadcrumb_navxt_admin.php:491
441
- msgid "Tag Template (Unlinked)"
442
- msgstr "Template de tag (non-lié)"
443
-
444
- #: breadcrumb_navxt_admin.php:491
445
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
- msgstr "Le template du fil d'ariane des tags, utilisé seulement quand le fil d'ariane n'est pas lié."
447
-
448
- #: breadcrumb_navxt_admin.php:517
449
- msgid "Miscellaneous"
450
- msgstr "Divers"
451
-
452
- #: breadcrumb_navxt_admin.php:520
453
- msgid "Author Template"
454
- msgstr "Template des auteurs"
455
-
456
- #: breadcrumb_navxt_admin.php:520
457
- msgid "The template for author breadcrumbs."
458
- msgstr "Le template pour le fil d'ariane des auteurs."
459
-
460
- #: breadcrumb_navxt_admin.php:521
461
- msgid "Author Template (Unlinked)"
462
- msgstr "Template des auteurs (non-lié)"
463
-
464
- #: breadcrumb_navxt_admin.php:521
465
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
- msgstr "Le template pour le fil d'ariane des auteurs, utilisé seulement quand le fil d'ariane n'est pas lié."
467
-
468
- #: breadcrumb_navxt_admin.php:522
469
- msgid "Author Display Format"
470
- msgstr "Format d'affichage de l'auteur"
471
-
472
- #: breadcrumb_navxt_admin.php:522
473
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
474
- msgstr "display_name utilise le nom spécifié \"Nom à afficher publiquement\" dans le profil utilisateur. Les autres choix correspondent aux différentes options disponibles dans profil utilisateur."
475
-
476
- #: breadcrumb_navxt_admin.php:523
477
- msgid "Date Template"
478
- msgstr "Template des dates"
479
-
480
- #: breadcrumb_navxt_admin.php:523
481
- msgid "The template for date breadcrumbs."
482
- msgstr "Template du fil d'ariane des dates."
483
-
484
- #: breadcrumb_navxt_admin.php:524
485
- msgid "Date Template (Unlinked)"
486
- msgstr "Modèle des dates (non-lié)"
487
-
488
- #: breadcrumb_navxt_admin.php:524
489
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
- msgstr "Le modèle du fil d'ariane des dates, utilisé seulement quand le fil d'ariane n'est pas lié."
491
-
492
- #: breadcrumb_navxt_admin.php:525
493
- msgid "Search Template"
494
- msgstr "Modèle de recherche"
495
-
496
- #: breadcrumb_navxt_admin.php:525
497
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
- msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
499
-
500
- #: breadcrumb_navxt_admin.php:526
501
- msgid "Search Template (Unlinked)"
502
- msgstr "Modèle de recherche (non-lié)"
503
-
504
- #: breadcrumb_navxt_admin.php:526
505
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
- msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages et que le fil d'ariane n'est pas lié."
507
-
508
- #: breadcrumb_navxt_admin.php:527
509
- msgid "404 Title"
510
- msgstr "Titre erreur 404"
511
-
512
- #: breadcrumb_navxt_admin.php:528
513
- msgid "404 Template"
514
- msgstr "Template d'erreur 404"
515
-
516
- #: breadcrumb_navxt_admin.php:528
517
- msgid "The template for 404 breadcrumbs."
518
- msgstr "Le modèlé pour le fil d'ariane de la page 404"
519
-
520
- #: breadcrumb_navxt_admin.php:533
521
- msgid "Save Changes"
522
- msgstr "Sauvegarder les changements"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-ja.mo DELETED
Binary file
languages/breadcrumb-navxt-ja.po DELETED
@@ -1,776 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Japanese
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:04: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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr ""
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 ""
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 "パンくずが表示する階層です。\"親投稿\"オプションは階層構造のないタイプなので、、期待どおり動かすためには追加のプラグインが必要です。"
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=\"%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 "&#39;<a title=\"%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 "よく変更される設定がこのタブの下にあります。"
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "タイトルの長さ"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "パンくずのタイトルを次の文字数に制限します。"
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "メインサイトのパンくず"
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 "このタブの下には全ての投稿タイプ(投稿、ページ、カスタム投稿タイプ)の設定があります。"
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "投稿タイプ"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "投稿階層を表示する"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "投稿階層"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "%s階層表示"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "投稿フォーマット"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "タイトル上限文字数: "
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "投稿"
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 "親投稿"
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 "パンくずリストが表示する階層です。"
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "%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 "カテゴリー、タグ、カスタムタクソノミーなどの設定はこのタブをクリックしてください。"
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "タクソノミー"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "投稿フォーマットのテンプレート"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "投稿フォーマットのパンくず用テンプレートです。"
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "投稿フォーマットのテンプレート(リンクなし)"
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 "投稿フォーマットのパンくず用テンプレート。パンくずがリンクになっていないときだけ使われます。"
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 "投稿者、日付アーカイブ、404ページの設定は、このタブをクリックしてください。"
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "投稿者アーカイブ"
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=\"%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 "投稿者: <a title=\"%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=\"%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=\"%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 "あなたの設定は新しいバージョンに合っています。"
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "パンくずの前につけるテキスト:"
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 "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 "お使いのPHPは古すぎます。もっと新しいバージョンにアップグレードしてください。お使いのバージョンは、%1$s、Breadcrumb NavXTには%2$sが必要です。"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "サイドバーにパンくずリストを追加します"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "タイトル:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "パンくずの表示方法:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "リスト"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "プレーンテキスト"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "パンくずをリンクにする"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "リストの順序を逆にする"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "トップページではリストを表示しない"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "続けるのに必要な権限がありません。"
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 "設定のヒントは下にあります。オプションを選択してください。"
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "リソース"
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 "%sチュートリアルとハウツー%s: 作者のウェブサイトには使い方ガイド、チュートリアル、ハウツーが複数あります。"
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Breadcumb 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 "%sオンライン・ドキュメント%s: もっと詳しい技術情報のためのドキュメントをチェックしましょう。"
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "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 "%sバグレポート%s: バグを見つけたら、あなたのWordPressのバージョンとバグを再現する方法の詳細を含めてください。"
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 "このバージョン用のBreadcrumb NavXTサポート・フォーラムへ行く。"
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "返す"
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 "%s寄付%s: Breadcrumb NavXTが気に入って、開発を援助したいですか? 作者にビールを奢りましょう。"
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 "PayPalで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 "%s翻訳%s: あなたの言語がありませんか? John Havlikにコンタクトを取って、翻訳を入手してください。"
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 "一般"
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 "このページの設定を有効にするためには、Breadcrumb NavXTウィジェットを有効にするか、お使いのテーマに下のコードを書き加えてください。"
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "パンくずを区切り文字で区切る"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "パンくずをリスト形式にする"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "お手軽設定"
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 "上の「お手軽設定」のコードを使う場合、パンくずの基本スタイルとして次のCSSを使うことができます。"
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "スタイル"
279
-
280
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
- msgid "Import/Export/Reset"
282
- msgstr "インポート/エクスポート/リセット"
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 "インポート"
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 "エクスポート"
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 "リセット"
298
-
299
- #: class.bcn_admin.php:309
300
- msgid "Breadcrumb NavXT Settings"
301
- msgstr "Breadcrumb NavXT設定"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "パンくず区切り文字"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "上の文字がパンくずの間に入ります。"
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 "ホームを示すパンくず"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "パンくずにホームページを含める。"
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "ホームページ用テンプレート"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "ホームを示すパンくず用テンプレートです。"
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "ホームページ用テンプレート(リンクなし)"
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 "リンクなしのホームページ用パンくずテンプレートです。"
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 "ブログ用パンくず"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "ブログのパンくずをパンくずリストに含めます。"
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "ブログ用テンプレート"
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 "ブログのパンくず用テンプレート。ブログを固定ページにしたときだけ使われます。"
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "ブログ用テンプレート(リンクなし)"
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 "ブログのパンくずリスト用のテンプレートです。固定ページをブログに使い、リンクなしにするテンプレートです。"
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "メインサイトのパンくず"
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 "マルチサイトで運用するとき、パンくずにメインサイトのホームを含めます。"
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "メインサイトのホーム用テンプレート"
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 "メインサイトのホームに使うパンくず用のテンプレート。マルチサイトの環境で動作します。"
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "メインサイトのホーム用テンプレート(リンクなし)"
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 "メインサイトのホーム用テンプレート。マルチサイト環境でリンクなしの場合。"
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "現在のページを示す項目"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "現在のページを示す項目にリンクを張る"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "はい"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "ページ分割パンくず"
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 "分割ページパンくずを含める。"
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 "ページ分割された投稿やページで、2ページ目以降をパンくずで示します。"
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "分割ページのテンプレート"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "分割ページパンくずのためのテンプレートです。"
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "投稿テンプレート"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "投稿パンくずのテンプレートです。"
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "投稿のテンプレート(リンクなし)"
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 "投稿パンくずのテンプレートです。リンクなしの場合だけ使われます。"
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 "パンくずの投稿にタクソノミーを付け加えます。"
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 "カテゴリー"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "日付"
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 "タグ"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "ページ"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "ページ用テンプレート"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "ページパンくず用のテンプレートです。"
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "ページ用テンプレート(リンクなし)"
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 "ページパンくず用のテンプレートです。パンくずがリンクになっていない場合だけ使われます。"
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "添付ファイル用テンプレート"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "添付ファイルパンくず用のテンプレート"
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "添付ファイル用テンプレート(リンクなし)"
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 "添付ファイルパンくず用のテンプレートです。パンくずがリンクになっていない場合だけ使われます。"
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"%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 "%s用テンプレート"
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 "%sパンくず用のテンプレートです。"
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 "%s用テンプレート(リンクなし)"
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 "%sパンくず用テンプレートです。パンくずがリンクになっていない場合だけ使われます。"
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "%sルートページ"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; 選択 &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "%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 "パンくずリストに、%sポストタイプのアーカイブのパンくずを表示しましす。"
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 "パンくずリストに、%sへのタクソノミーを表示します。"
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "カテゴリー用テンプレート"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "カテゴリーパンくず用のテンプレートです。"
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "カテゴリー用テンプレート(リンクなし)"
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 "カテゴリーのパンくず用テンプレート。パンくずがリンクになっていないときにだけ使われます。"
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "タグ用テンプレート"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "タグのパンくず用テンプレートです。"
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "タグ用テンプレート(リンクなし)"
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 "タグのパンくず用テンプレート。パンくずがリンクになっていないときだけ使われます。"
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 "その他"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "投稿者テンプレート"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "投稿者パンくずのテンプレートです。"
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "投稿者テンプレート(リンクなし)"
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 "投稿者パンくずのテンプレートです。パンくずがリンクになっていないときだけ使われます。"
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "投稿者表示フォーマット"
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は、ユーザプロフィールの\"ブログ上の表示名\"で指定されたものを使います。他はユーザプロフィールの設定に従います。"
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "日付テンプレート"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "日付パンくず用のテンプレートです。"
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "日付テンプレート(リンクなし)"
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 "日付パンくずのテンプレートです。パンくずがリンクになっていないときだけ使われます。"
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "検索テンプレート"
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 "検索パンくずのアンカー用テンプレートです。検索結果が複数ページに渡るときにだけ使われます。"
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "検索テンプレート(リンクなし)"
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 "検索パンくずのアンカー用テンプレート。検索結果が複数ページに渡り、リンクになっていないときだけ使われます。"
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404タイトル"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "404テンプレート"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "404パンくずのテンプレートです。"
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "変更を保存"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "設定"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "あなたの設定はもうサポートされていません。"
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "すぐに設定を移行します。"
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "すぐに移行する。"
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "プラグインのインストールが終わっていません。"
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "すぐにデフォルトの設定を読み込みます。"
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "終了しました。"
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "プラグインの設定が正しくありません。"
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "すぐに設定を直します。"
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "すぐに直します。"
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "設定を保存しました。"
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "設定の保存を取り消します。"
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 "取り消し"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "保存されていない設定があります。"
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "次の設定は保存されませんでした。"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "%sバグ報告%sにこのメッセージを含めてください。"
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "このバージョンの%sサポートに投稿をしに行きます。"
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "アップロードしたファイルから設定をインポートしました。"
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "設定のインポートを中止します。"
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "ファイルからの設定インポートが失敗しました。"
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "設定をデフォルトに戻しました。"
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "設定のリセットを取り消します。"
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "直前の操作を取り消しました。"
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "直前の取り消しをキャンセルします。"
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "設定を移行しました。"
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "デフォルトの設定をインストールしました。"
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 "XMLファイルから設定をインポートしたり、現在の設定をXMLファイルにエクスポートしたり、デフォルトの設定に戻したりします。"
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "設定ファイル"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "アップロードおよびインポートするXML設定ファイルを選択してください。"
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "ページ%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 "&#39;%htitle%&#39;の検索結果"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
776
- msgstr "%htitle%の記事"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-lt_LT.mo CHANGED
Binary file
languages/breadcrumb-navxt-lt_LT.po CHANGED
@@ -1,782 +1,820 @@
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: 2013-11-21 01:59:26+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Breadcrumb NavXT Tinklas Nustatymai"
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 "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>."
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 "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."
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 ""
31
- "<a title=\"Eiti į %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>\n"
32
- "\n"
33
-
34
- #: class.bcn_breadcrumb_trail.php:109
35
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
36
- msgstr "Paieškos rezultatai &#39;<a title=\"Eiti į pirmąjį puslapį paieškos rezultatų %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
37
-
38
- #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
39
- msgid "A collection of settings most likely to be modified are located under this tab."
40
- msgstr "Nustatymų greičiausiai rinkinys turi būti pakeista yra pagal šį skirtuką."
41
-
42
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
43
- msgid "Title Length"
44
- msgstr "pavadinimas ilgis"
45
-
46
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
47
- msgid "Limit the length of the breadcrumb title."
48
- msgstr "Apriboti breadcrumb pavadinimo ilgį."
49
-
50
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
51
- msgid "Mainsite Breadcrumb"
52
- msgstr "Nuoroda į pagrindinį puslapį"
53
-
54
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
55
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
56
- msgstr "Už visas po tipų (Pranešimai, puslapius, ir Custom Standartinė tipai) yra nustatymai pagal šį skirtuką."
57
-
58
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
59
- msgid "Post Types"
60
- msgstr "Standartinė tipai"
61
-
62
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
63
- msgid "Post Hierarchy Display"
64
- msgstr "Pradėti hierarchija Rodyti"
65
-
66
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
67
- msgid "Post Hierarchy"
68
- msgstr "Pradėti hierarchija"
69
-
70
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
71
- msgid "%s Hierarchy Display"
72
- msgstr "%s hierarchija Rodyti"
73
-
74
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
75
- msgid "Post Formats"
76
- msgstr "Standartinė formatai"
77
-
78
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
79
- msgid "Max Title Length: "
80
- msgstr "Maksimalus Pavadinimas Ilgis:"
81
-
82
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
83
- msgid "Posts"
84
- msgstr "Pranešimai"
85
-
86
- #: class.bcn_admin.php:407 class.bcn_admin.php:476
87
- #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
88
- msgid "Post Parent"
89
- msgstr "Standartinė tėvų"
90
-
91
- #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
92
- msgid "The hierarchy which the breadcrumb trail will show."
93
- msgstr "Hierarchija, kuri tinklalapio takas bus rodomas."
94
-
95
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
96
- msgid "%s Hierarchy"
97
- msgstr "%s hierarchija"
98
-
99
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
100
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
101
- msgstr " visų taksonomijos (įskaitant Kategorijos, žodžius ir nestandartinių taksonomijos) yra nustatymai pagal šį skirtuką."
102
-
103
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
104
- msgid "Taxonomies"
105
- msgstr "taksonomijos"
106
-
107
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
108
- msgid "Post Format Template"
109
- msgstr "Standartinė Formatas šabloną"
110
-
111
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
112
- msgid "The template for post format breadcrumbs."
113
- msgstr " pašto formato breadcrumbs šablonas."
114
-
115
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
116
- msgid "Post Format Template (Unlinked)"
117
- msgstr "Pranešimo formatas šablonas (atspari)"
118
-
119
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
120
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
121
- msgstr " post_format džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
122
-
123
- #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
124
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
125
- msgstr " autorius ir data archyvuose, kratas ir 404 puslapių parametrai yra pagal šį skirtuką."
126
-
127
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
128
- msgid "Author Archives"
129
- msgstr "Autorius Archyvas"
130
-
131
- #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
132
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
133
- msgstr "<a title=\"Eiti į %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
-
135
- #: class.bcn_breadcrumb_trail.php:124
136
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
137
- msgstr "straipsniai: <a title=\"Eiti į pirmąjį puslapį pranešimų per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
138
-
139
- #: class.bcn_breadcrumb_trail.php:131
140
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
141
- msgstr "<a title=\"Eiti į %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
142
-
143
- #: class.bcn_breadcrumb_trail.php:135
144
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
145
- msgstr "<a title=\"Eiti į %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
146
-
147
- #: includes/class.mtekk_adminkit.php:296
148
- msgid "Your settings are for a newer version."
149
- msgstr "Jūsų nustatymai yra skirtos naujesnės versijos."
150
-
151
- #: class.bcn_widget.php:96
152
- msgid "Text to show before the trail:"
153
- msgstr "Tekstas, kuris bus rodomas prieš Trail:"
154
-
155
- #: class.bcn_widget.php:103
156
- msgid "Schema.org"
157
- msgstr "Schema.org"
158
-
159
- #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
160
- msgid "Go to the Breadcrumb NavXT translation project."
161
- msgstr "Eiti į Breadcrumb NavXT vertimo projektą."
162
-
163
- #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
164
- #: class.bcn_network_admin.php:25
165
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
166
- msgstr "Jūsų PHP versija yra per sena, prašome atnaujinti į naujesnę versiją. Jūsų versija yra%1$s Breadcrumb NavXT reikia %2$S"
167
-
168
- #: class.bcn_widget.php:33
169
- msgid "Adds a breadcrumb trail to your sidebar"
170
- msgstr "Prideda parankinės Breadcrumb takas"
171
-
172
- #: class.bcn_widget.php:92
173
- msgid "Title:"
174
- msgstr "Titel:"
175
-
176
- #: class.bcn_widget.php:100
177
- msgid "Output trail as:"
178
- msgstr "Išėjimo takas kaip:"
179
-
180
- #: class.bcn_widget.php:102
181
- msgid "List"
182
- msgstr "sąrašas"
183
-
184
- #: class.bcn_widget.php:104
185
- msgid "Plain"
186
- msgstr "paprastas"
187
-
188
- #: class.bcn_widget.php:109
189
- msgid "Link the breadcrumbs"
190
- msgstr "nuoroda Breadcrumbs"
191
-
192
- #: class.bcn_widget.php:111
193
- msgid "Reverse the order of the trail"
194
- msgstr "Sukeisti takai tvarka"
195
-
196
- #: class.bcn_widget.php:113
197
- msgid "Hide the trail on the front page"
198
- msgstr "Slėpti takas pagrindiniame puslapyje"
199
-
200
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
201
- msgid "Insufficient privileges to proceed."
202
- msgstr "Nepakankami įgaliojimai tęsti."
203
-
204
- #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
205
- msgid "Tips for the settings are located below select options."
206
- msgstr "Patarimai nustatymų yra žemiau pasirinkite Funkcijos."
207
-
208
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
209
- msgid "Resources"
210
- msgstr "ištekliai"
211
-
212
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
213
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
214
- msgstr "%sPamokos ir How Tos%s: Yra keletas vadovai, vadovėliai, ir kaip tos galima rasti autoriaus svetainėje."
215
-
216
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
217
- msgid "Go to the Breadcrumb NavXT tag archive."
218
- msgstr "Eiti į Breadcrumb NavXT tag archive."
219
-
220
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
221
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
222
- msgstr "%sDokumentacijos online%s: Patikrinkite daugiau indepth techninės informacijos dokumentacijoje."
223
-
224
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
225
- msgid "Go to the Breadcrumb NavXT online documentation"
226
- msgstr "Eiti į Breadcrumb NavXT online dokumentacijoje"
227
-
228
- #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
229
- 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."
230
- msgstr "%sPranešk apie klaidą%s: Jei manote, kad suradote klaidą, nurodykite savo WordPress versiją ir informaciją apie tai, kaip atkurti klaidą."
231
-
232
- #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
233
- msgid "Go to the Breadcrumb NavXT support post for your version."
234
- msgstr "Eiti į Breadcrumb NavXT remti postą savo versiją"
235
-
236
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
237
- msgid "Giving Back"
238
- msgstr "Suteikus Atgal"
239
-
240
- #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
241
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
242
- msgstr "%sPaaukoti%s: Meilė Breadcrumb NavXT ir norite padėti plėtrą? Apsvarstykite pirkti autoriui alus."
243
-
244
- #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
245
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
246
- msgstr "Eiti į PayPal duoti auką Breadcrumb NavXT."
247
-
248
- #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
249
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
250
- msgstr "%sIšversti%s: Ar jūsų kalba nėra? Susisiekite John Havlík gauti versti."
251
-
252
- #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
253
- #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
254
- #: class.bcn_network_admin.php:390
255
- msgid "General"
256
- msgstr "Bendras"
257
-
258
- #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
259
- 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."
260
- msgstr "Dėl šio puslapio nustatymai įsigaliotų, turite naudoti pridedamą Breadcrumb NavXT valdikliui, ar vietos arba Kodekso skirsniuose į savo temą."
261
-
262
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
263
- msgid "Breadcrumb trail with separators"
264
- msgstr "Breadcrumb takas su separatorių"
265
-
266
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
267
- msgid "Breadcrumb trail in list form"
268
- msgstr "Breadcrumb takas sąrašo forma"
269
-
270
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
271
- msgid "Quick Start"
272
- msgstr "Quick Start"
273
-
274
- #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
275
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
276
- msgstr "Naudojant kodą Quick Start ankstesniame skyriuje, taip CSS gali būti naudojami kaip bazė stiliaus jūsų tinklalapio puslapių seką."
277
-
278
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
279
- msgid "Styling"
280
- msgstr "Styling"
281
-
282
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
283
- msgid "Import/Export/Reset"
284
- msgstr "Importas/Eksportas/Atkurti"
285
-
286
- #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
287
- #: includes/class.mtekk_adminkit.php:792
288
- msgid "Import"
289
- msgstr "Importas"
290
-
291
- #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
292
- #: includes/class.mtekk_adminkit.php:793
293
- msgid "Export"
294
- msgstr "Eksportas"
295
-
296
- #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
297
- #: includes/class.mtekk_adminkit.php:794
298
- msgid "Reset"
299
- msgstr "Atstatyti"
300
-
301
- #: class.bcn_admin.php:309
302
- msgid "Breadcrumb NavXT Settings"
303
- msgstr "Breadcrumb NavXT Nustatymai"
304
-
305
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
306
- msgid "Breadcrumb Separator"
307
- msgstr "Breadcrumb separatorius"
308
-
309
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
310
- msgid "Placed in between each breadcrumb."
311
- msgstr "Dedami tarpusavyje breadcrumb."
312
-
313
- #: class.bcn_admin.php:359 class.bcn_admin.php:362
314
- #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
315
- msgid "Home Breadcrumb"
316
- msgstr "Home Breadcrumb"
317
-
318
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
319
- msgid "Place the home breadcrumb in the trail."
320
- msgstr ""
321
- "Patalpinti namo breadcrumb į seką.\n"
322
- "\t\n"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "Home Template"
326
- msgstr "Pagrindinis Šablonas"
327
-
328
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
329
- msgid "The template for the home breadcrumb."
330
- msgstr "Namams šablonas už breadcrumb."
331
-
332
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
- msgid "Home Template (Unlinked)"
334
- msgstr "Pagrindinis šablonas (atspari)"
335
-
336
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
337
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
338
- msgstr "Namams už tinklalapio šablonas, naudojamas, kai tinklalapio nėra susiję."
339
-
340
- #: class.bcn_admin.php:368 class.bcn_admin.php:371
341
- #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
342
- msgid "Blog Breadcrumb"
343
- msgstr "Blog Breadcrumb"
344
-
345
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
346
- msgid "Place the blog breadcrumb in the trail."
347
- msgstr ""
348
- "Patalpinti blog breadcrumb į seką.\n"
349
- "\t\n"
350
-
351
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
352
- msgid "Blog Template"
353
- msgstr "Blog šablonas"
354
-
355
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
356
- msgid "The template for the blog breadcrumb, used only in static front page environments."
357
- msgstr "šablonas blog breadcrumb, used only in static front page environments."
358
-
359
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
360
- msgid "Blog Template (Unlinked)"
361
- msgstr "Blog šablonas (Atspari)"
362
-
363
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
364
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
365
- msgstr " dienoraštį tinklalapio šablonas, naudojamas tik statinio tituliniame puslapyje aplinkoje, kai tinklalapio nėra susiję."
366
-
367
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
368
- msgid "Main Site Breadcrumb"
369
- msgstr "Titulinis Breadcrumb"
370
-
371
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
372
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
373
- msgstr "Padėkite Pagrindinė svetainė namo tinklalapio puslapių tvarką sudarydamas keliose setup takas."
374
-
375
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
376
- msgid "Main Site Home Template"
377
- msgstr "Titulinis Pagrindinis Šablonas"
378
-
379
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
380
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
381
- msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
382
-
383
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
384
- msgid "Main Site Home Template (Unlinked)"
385
- msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
386
-
387
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
388
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
389
- msgstr "Svetainės pagrindinį namuose tinklalapio, naudojamas tik keliose aplinkose ir kai tinklalapio šablonas nėra susiję."
390
-
391
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
392
- msgid "Current Item"
393
- msgstr "Aktualus Prekės"
394
-
395
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
396
- msgid "Link Current Item"
397
- msgstr "Nuoroda Aktualus Prekės"
398
-
399
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
400
- msgid "Yes"
401
- msgstr "Taip"
402
-
403
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
404
- msgid "Paged Breadcrumb"
405
- msgstr "Puslapi Breadcrumb"
406
-
407
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
408
- msgid "Include the paged breadcrumb in the breadcrumb trail."
409
- msgstr "Įtraukti puslapi breadcrumb į breadcrumb juostą."
410
-
411
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
412
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
413
- msgstr "Nurodo, kad vartotojas yra puslapyje išskyrus ant sunumeruoti pranešimų / puslapius pirmas."
414
-
415
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
416
- msgid "Paged Template"
417
- msgstr "Puslapi Šablonas"
418
-
419
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
420
- msgid "The template for paged breadcrumbs."
421
- msgstr "Už puslapio breadcrumbs šablonas."
422
-
423
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
424
- msgid "Post Template"
425
- msgstr "Standartinė šabloną"
426
-
427
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
428
- msgid "The template for post breadcrumbs."
429
- msgstr "Už pašto breadcrumbs šablonas."
430
-
431
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
432
- msgid "Post Template (Unlinked)"
433
- msgstr "Rašyti šablonas (atspari)"
434
-
435
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
436
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
437
- msgstr "Už pašto breadcrumbs, naudojamas tik tada, kai breadcrumb nėra susijęs šablonas."
438
-
439
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
440
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
441
- msgstr "Rodyti taksonomiją, padėsiantį į tinklalapio takas paštu."
442
-
443
- #: class.bcn_admin.php:403 class.bcn_admin.php:515
444
- #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
445
- msgid "Categories"
446
- msgstr "Kategorijos"
447
-
448
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
449
- msgid "Dates"
450
- msgstr "datos"
451
-
452
- #: class.bcn_admin.php:405 class.bcn_admin.php:522
453
- #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
454
- msgid "Tags"
455
- msgstr "Tags"
456
-
457
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
458
- msgid "Pages"
459
- msgstr "Puslapiai"
460
-
461
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
462
- msgid "Page Template"
463
- msgstr "Page Web Šablono"
464
-
465
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
466
- msgid "The template for page breadcrumbs."
467
- msgstr "Už puslapio šablonas breadcrumbs."
468
-
469
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
470
- msgid "Page Template (Unlinked)"
471
- msgstr "Page Web Šablono (atspari)"
472
-
473
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
474
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
475
- msgstr "Už puslapio breadcrumbs šablonas,naudojamas tik tada kai breadcrumb nėra susiję."
476
-
477
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
478
- msgid "Attachment Template"
479
- msgstr "Priedas Šablonas"
480
-
481
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
482
- msgid "The template for attachment breadcrumbs."
483
- msgstr "Kabinami ant breadcrumbs šablonas."
484
-
485
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
486
- msgid "Attachment Template (Unlinked)"
487
- msgstr "Priedas šablonas (atspari)"
488
-
489
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
490
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "Kabinami ant breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
492
-
493
- #: breadcrumb-navxt.php:247
494
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
495
- msgstr "<a title=\"eiti į %title%.\" href=\"%link%\">%htitle%</a>"
496
-
497
- #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
498
- msgid "%htitle%"
499
- msgstr "%htitle%"
500
-
501
- #: class.bcn_admin.php:453 class.bcn_admin.php:553
502
- #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
503
- msgid "%s Template"
504
- msgstr "%s šablonas"
505
-
506
- #: class.bcn_admin.php:453 class.bcn_admin.php:553
507
- #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
508
- msgid "The template for %s breadcrumbs."
509
- msgstr "šablonas %s breadcrumbs."
510
-
511
- #: class.bcn_admin.php:454 class.bcn_admin.php:554
512
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
513
- msgid "%s Template (Unlinked)"
514
- msgstr "%s šablonas (atspari)"
515
-
516
- #: class.bcn_admin.php:454 class.bcn_admin.php:554
517
- #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
518
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
519
- msgstr "%s breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
520
-
521
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
522
- msgid "%s Root Page"
523
- msgstr "%s Root Page"
524
-
525
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
526
- msgid "&mdash; Select &mdash;"
527
- msgstr "&mdash; Pasirinkti &mdash;"
528
-
529
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
530
- msgid "%s Archive Display"
531
- msgstr "%s Archyvas Rodyti"
532
-
533
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
534
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
535
- msgstr "Rodyti breadcrumb už %s arba tipo pareigoms archyvų tinklalapio takas."
536
-
537
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
538
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
539
- msgstr "Rodyti taksonomiją, vedantį į%s į breadcrumb juostą."
540
-
541
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
542
- msgid "Category Template"
543
- msgstr "Kategorija Šablonas"
544
-
545
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
546
- msgid "The template for category breadcrumbs."
547
- msgstr "Kategorijos breadcrumbs šablonas."
548
-
549
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
550
- msgid "Category Template (Unlinked)"
551
- msgstr "Kategorija šablonas (atspari)"
552
-
553
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
554
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
555
- msgstr "Kategorijos breadcrumb šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
556
-
557
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
558
- msgid "Tag Template"
559
- msgstr "Tag Šablonas"
560
-
561
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
562
- msgid "The template for tag breadcrumbs."
563
- msgstr "Tag breadcrumbs šablonas."
564
-
565
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
566
- msgid "Tag Template (Unlinked)"
567
- msgstr "Tag šablonas (atspari)"
568
-
569
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
570
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
571
- msgstr "šablonas už Tag breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susiję."
572
-
573
- #: class.bcn_admin.php:563 class.bcn_admin.php:572
574
- #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
575
- msgid "Miscellaneous"
576
- msgstr "įvairialypis"
577
-
578
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
579
- msgid "Author Template"
580
- msgstr "Autorius Šablonas"
581
-
582
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
583
- msgid "The template for author breadcrumbs."
584
- msgstr "šablonas autoriaus breadcrumbs"
585
-
586
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
587
- msgid "Author Template (Unlinked)"
588
- msgstr "Autorius šablonas (atspari)"
589
-
590
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
591
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
592
- msgstr "Autoriaus džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
593
-
594
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
595
- msgid "Author Display Format"
596
- msgstr "Autorius Ekranas Formatas"
597
-
598
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
599
- 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."
600
- msgstr "display_namenaudoja pavadinimą, nurodytą \"Display name viešai kaip\" pagal vartotojo aprašymą kiti atitinka variantų vartotojo profilį."
601
-
602
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
603
- msgid "Date Template"
604
- msgstr "data Šablonas"
605
-
606
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
607
- msgid "The template for date breadcrumbs."
608
- msgstr "Datos ir breadcrumbs šablonas."
609
-
610
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
611
- msgid "Date Template (Unlinked)"
612
- msgstr "Data šablonas (atspari)"
613
-
614
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
615
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
616
- msgstr "Datos ir breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susijęs šablonas."
617
-
618
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
619
- msgid "Search Template"
620
- msgstr "Paieška Šablonas"
621
-
622
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
623
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
624
- msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius."
625
-
626
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
627
- msgid "Search Template (Unlinked)"
628
- msgstr "Paieška šablonas (atspari)"
629
-
630
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
631
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
632
- msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius ir naršymo nėra susiję."
633
-
634
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
635
- msgid "404 Title"
636
- msgstr "404 Titras"
637
-
638
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
639
- msgid "404 Template"
640
- msgstr "404 Šablonas"
641
-
642
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
643
- msgid "The template for 404 breadcrumbs."
644
- msgstr "Šablonas už 404 breadcrumbs."
645
-
646
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
647
- msgid "Save Changes"
648
- msgstr "Išsaugoti pakeitimus"
649
-
650
- #: includes/class.mtekk_adminkit.php:217
651
- msgid "Settings"
652
- msgstr "Nustatymai"
653
-
654
- #: includes/class.mtekk_adminkit.php:287
655
- msgid "Your settings are out of date."
656
- msgstr "Jūsų nustatymai paseno."
657
-
658
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
659
- msgid "Migrate the settings now."
660
- msgstr "Nustatymai migruoti dabar."
661
-
662
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
663
- msgid "Migrate now."
664
- msgstr "Migracija dabar."
665
-
666
- #: includes/class.mtekk_adminkit.php:304
667
- msgid "Your plugin install is incomplete."
668
- msgstr "Jūsų įskiepiai installtion yra baigtas."
669
-
670
- #: includes/class.mtekk_adminkit.php:304
671
- msgid "Load default settings now."
672
- msgstr "Įdėkite numatytuosius nustatymus dabar."
673
-
674
- #: includes/class.mtekk_adminkit.php:304
675
- msgid "Complete now."
676
- msgstr "Baigtas."
677
-
678
- #: includes/class.mtekk_adminkit.php:312
679
- msgid "Your plugin settings are invalid."
680
- msgstr "Jūsų plugin parametrai yra negerai."
681
-
682
- #: includes/class.mtekk_adminkit.php:312
683
- msgid "Attempt to fix settings now."
684
- msgstr "Bandymai, kaip nustatyti nustatymus dabar."
685
-
686
- #: includes/class.mtekk_adminkit.php:312
687
- msgid "Fix now."
688
- msgstr "Fiksuotas dabar."
689
-
690
- #: includes/class.mtekk_adminkit.php:490
691
- msgid "Settings successfully saved."
692
- msgstr "Nustatymai išsaugoti sėkmingai."
693
-
694
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
695
- msgid "Undo the options save."
696
- msgstr "Padaryti taupymo atšaukti galimybes."
697
-
698
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
699
- #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
700
- #: includes/class.mtekk_adminkit.php:641
701
- msgid "Undo"
702
- msgstr "Padaryti atgal"
703
-
704
- #: includes/class.mtekk_adminkit.php:495
705
- msgid "Some settings were not saved."
706
- msgstr "Kai kurie parametrai nebuvo išsaugotas."
707
-
708
- #: includes/class.mtekk_adminkit.php:496
709
- msgid "The following settings were not saved:"
710
- msgstr "Kai kurie parametrai nebuvo išsaugotas."
711
-
712
- #: includes/class.mtekk_adminkit.php:501
713
- msgid "Please include this message in your %sbug report%s."
714
- msgstr "Pridėkite šią naujieną prie jūsų %sbug report%s ."
715
-
716
- #: includes/class.mtekk_adminkit.php:501
717
- msgid "Go to the %s support post for your version."
718
- msgstr "Eiti į %s nuotolinio paramos savo versiją."
719
-
720
- #: includes/class.mtekk_adminkit.php:600
721
- msgid "Settings successfully imported from the uploaded file."
722
- msgstr "Nustatymai buvo sėkmingai importuoti iš įkelto failo."
723
-
724
- #: includes/class.mtekk_adminkit.php:600
725
- msgid "Undo the options import."
726
- msgstr "Padaryti Anuliuoti Importas galimybes."
727
-
728
- #: includes/class.mtekk_adminkit.php:605
729
- msgid "Importing settings from file failed."
730
- msgstr "Importuoti nustatymus iš failo nepavyko."
731
-
732
- #: includes/class.mtekk_adminkit.php:624
733
- msgid "Settings successfully reset to the default values."
734
- msgstr "Sėkmingai pakeisti gamyklinius nustatymus."
735
-
736
- #: includes/class.mtekk_adminkit.php:624
737
- msgid "Undo the options reset."
738
- msgstr "Padaryti iš naujo atšaukti galimybes."
739
-
740
- #: includes/class.mtekk_adminkit.php:641
741
- msgid "Settings successfully undid the last operation."
742
- msgstr "Nustatymai, paskutinės operacijos sėkmingai pakeistas."
743
-
744
- #: includes/class.mtekk_adminkit.php:641
745
- msgid "Undo the last undo operation."
746
- msgstr "Kartokite."
747
-
748
- #: includes/class.mtekk_adminkit.php:676
749
- msgid "Settings successfully migrated."
750
- msgstr "Nustatymai sėkmingai perkelti."
751
-
752
- #: includes/class.mtekk_adminkit.php:683
753
- msgid "Default settings successfully installed."
754
- msgstr "Gamykliniai nustatymai sėkmingai įdiegta."
755
-
756
- #: includes/class.mtekk_adminkit.php:784
757
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
758
- msgstr "Importuoti nustatymus iš XML failą, eksporto dabartinius nustatymus XML failo arba iš naujo į numatytuosius nustatymus."
759
-
760
- #: includes/class.mtekk_adminkit.php:787
761
- msgid "Settings File"
762
- msgstr "Nustatymai failą"
763
-
764
- #: includes/class.mtekk_adminkit.php:790
765
- msgid "Select a XML settings file to upload and import settings from."
766
- msgstr "Pasirinkite XML failą su nustatymais įkelti ir importuoti nustatymus."
767
-
768
- #: class.bcn_breadcrumb_trail.php:82
769
- msgid "Page %htitle%"
770
- msgstr "Puslapis %htitle%"
771
-
772
- #: class.bcn_breadcrumb_trail.php:106
773
- msgid "404"
774
- msgstr "404"
775
-
776
- #: class.bcn_breadcrumb_trail.php:111
777
- msgid "Search results for &#39;%htitle%&#39;"
778
- msgstr "Paieškos rezultatai &#39;%htitle%&#39;"
779
-
780
- #: class.bcn_breadcrumb_trail.php:126
781
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
782
  msgstr "Straipsniai: %htitle%"
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: 2014-06-03 14:48: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=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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Priedas"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Įspėjimas: Individualūs vietos nustatymai bus panaikinti visus nustatytus šiame puslapyje nustatymus."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Įspėjimas: Individualūs svetainės parametrus gali panaikinti visus nustatytus šiame puslapyje nustatymus."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT buvo tiesiog atnaujinta iš anksto 5,0 versijos, eikite į jūsų plugins puslapyje ir įjungti \"Breadcrumb NavXT\". Be to, išjunkite \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" įskiepiai, kad šis pranešimas išnyks."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Įspėjimas: Jūsų tinklo nustatymai bus panaikinti visus nustatytus šiame puslapyje nustatymus."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Įspėjimas: Jūsų tinklo nustatymai gali panaikinti visus nustatytus šiame puslapyje nustatymus."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Įspėjimas: Ne BCN_NUSTATYMAI_* apibrėžti pareiškimą rasti, įsipareigojimų nevykdymą BCN_SETTINGS_FAVOR_NETWORK."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT Tinklas Nustatymai"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT "
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Paieškos rezultatai &#39;<a title=\"Eiti į pirmąjį puslapį paieškos rezultatų %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Nustatymų greičiausiai rinkinys turi būti pakeista yra pagal šį skirtuką."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "pavadinimas ilgis"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Apriboti breadcrumb pavadinimo ilgį."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Nuoroda į pagrindinį puslapį"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Už visas po tipų (Pranešimai, puslapius, ir Custom Standartinė tipai) yra nustatymai pagal šį skirtuką."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Standartinė tipai"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Pradėti hierarchija Rodyti"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Pradėti hierarchija"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s hierarchija Rodyti"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Standartinė formatai"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Maksimalus Pavadinimas Ilgis:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Pranešimai"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Standartinė tėvų"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Hierarchija, kuri tinklalapio takas bus rodomas."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s hierarchija"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Už visų taksonomijos (įskaitant Kategorijos, žodžius ir nestandartinių taksonomijos) yra nustatymai pagal šį skirtuką."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "taksonomijos"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Standartinė Formatas šabloną"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Už pašto formato breadcrumbs šablonas."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Pranešimo formatas šablonas (atspari)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Už post_format džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Už autorius ir data archyvuose, kratas ir 404 puslapių parametrai yra pagal šį skirtuką."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Autorius Archyvas"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "straipsniai: <a title=\"Eiti į pirmąjį puslapį pranešimų per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Jūsų nustatymai yra skirtos naujesnės versijos."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Tekstas, kuris bus rodomas prieš Trail:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Eiti į Breadcrumb NavXT vertimo projektą."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ msgstr "Jūsų PHP versija yra per sena, prašome atnaujinti į naujesnę versiją. Jūsų versija yra%1$s Breadcrumb NavXT reikia %2$S"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Prideda parankinės Breadcrumb takas"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Titel:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Išėjimo takas kaip:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "sąrašas"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "paprastas"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "nuoroda Breadcrumbs"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Sukeisti takai tvarka"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Slėpti takas pagrindiniame puslapyje"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Nepakankami įgaliojimai tęsti."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Patarimai nustatymų yra žemiau pasirinkite Funkcijos."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "ištekliai"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sPamokos ir How Tos%s: Yra keletas vadovai, vadovėliai, ir kaip tos galima rasti autoriaus svetainėje."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Eiti į Breadcrumb NavXT tag archive."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sDokumentacijos online%s: Patikrinkite daugiau indepth techninės informacijos dokumentacijoje."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Eiti į Breadcrumb NavXT online dokumentacijoje"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ msgstr "%sPranešk apie klaidą%s: Jei manote, kad suradote klaidą, nurodykite savo WordPress versiją ir informaciją apie tai, kaip atkurti klaidą."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Eiti į Breadcrumb NavXT remti postą savo versiją"
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Suteikus Atgal"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sPaaukoti%s: Meilė Breadcrumb NavXT ir norite padėti plėtrą? Apsvarstykite pirkti autoriui alus."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Eiti į PayPal duoti auką Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sIšversti%s: Ar jūsų kalba nėra? Susisiekite John Havlík gauti versti."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Bendras"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ msgstr "Dėl šio puslapio nustatymai įsigaliotų, turite naudoti pridedamą Breadcrumb NavXT valdikliui, ar vietos arba Kodekso skirsniuose į savo temą."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Breadcrumb takas su separatorių"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Breadcrumb takas sąrašo forma"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Quick Start"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Naudojant kodą iš Quick Start ankstesniame skyriuje, taip CSS gali būti naudojami kaip bazė stiliaus jūsų tinklalapio puslapių seką."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Styling"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Importas/Eksportas/Atkurti"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Importas"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Eksportas"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Atstatyti"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT Nustatymai"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Breadcrumb separatorius"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Dedami tarpusavyje breadcrumb."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Home Breadcrumb"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr ""
367
+ "Patalpinti namo breadcrumb į seką.\n"
368
+ "\t\n"
369
+
370
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
371
+ msgid "Home Template"
372
+ msgstr "Pagrindinis Šablonas"
373
+
374
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
375
+ msgid "The template for the home breadcrumb."
376
+ msgstr "Namams šablonas breadcrumb."
377
+
378
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
379
+ msgid "Home Template (Unlinked)"
380
+ msgstr "Pagrindinis šablonas (atspari)"
381
+
382
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
383
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
384
+ msgstr "Namams tinklalapio šablonas, naudojamas, kai tinklalapio nėra susiję."
385
+
386
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
387
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
388
+ msgid "Blog Breadcrumb"
389
+ msgstr "Blog Breadcrumb"
390
+
391
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
392
+ msgid "Place the blog breadcrumb in the trail."
393
+ msgstr ""
394
+ "Patalpinti blog breadcrumb į seką.\n"
395
+ "\t\n"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "Blog Template"
399
+ msgstr "Blog šablonas"
400
+
401
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
402
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
403
+ msgstr "šablonas už blog breadcrumb, used only in static front page environments."
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "Blog Template (Unlinked)"
407
+ msgstr "Blog šablonas (Atspari)"
408
+
409
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
410
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
411
+ msgstr "Už dienoraštį tinklalapio šablonas, naudojamas tik statinio tituliniame puslapyje aplinkoje, kai tinklalapio nėra susiję."
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Main Site Breadcrumb"
415
+ msgstr "Titulinis Breadcrumb"
416
+
417
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
418
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
419
+ msgstr "Padėkite Pagrindinė svetainė namo tinklalapio puslapių tvarką sudarydamas keliose setup takas."
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "Main Site Home Template"
423
+ msgstr "Titulinis Pagrindinis Šablonas"
424
+
425
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
426
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
427
+ msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "Main Site Home Template (Unlinked)"
431
+ msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
432
+
433
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
434
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
435
+ msgstr "Svetainės pagrindinį namuose tinklalapio, naudojamas tik keliose aplinkose ir kai tinklalapio šablonas nėra susiję."
436
+
437
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
438
+ msgid "Current Item"
439
+ msgstr "Aktualus Prekės"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Link Current Item"
443
+ msgstr "Nuoroda Aktualus Prekės"
444
+
445
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
446
+ msgid "Yes"
447
+ msgstr "Taip"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Paged Breadcrumb"
451
+ msgstr "Puslapi Breadcrumb"
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
455
+ msgstr "Įtraukti puslapi breadcrumb į breadcrumb juostą."
456
+
457
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
458
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
459
+ msgstr "Nurodo, kad vartotojas yra puslapyje išskyrus ant sunumeruoti pranešimų / puslapius pirmas."
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "Paged Template"
463
+ msgstr "Puslapi Šablonas"
464
+
465
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
466
+ msgid "The template for paged breadcrumbs."
467
+ msgstr "Už puslapio breadcrumbs šablonas."
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "Post Template"
471
+ msgstr "Standartinė šabloną"
472
+
473
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
474
+ msgid "The template for post breadcrumbs."
475
+ msgstr "Už pašto breadcrumbs šablonas."
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "Post Template (Unlinked)"
479
+ msgstr "Rašyti šablonas (atspari)"
480
+
481
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
482
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
483
+ msgstr " pašto breadcrumbs, naudojamas tik tada, kai breadcrumb nėra susijęs šablonas."
484
+
485
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
486
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
487
+ msgstr "Rodyti taksonomiją, padėsiantį į tinklalapio takas paštu."
488
+
489
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
490
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
491
+ msgid "Categories"
492
+ msgstr "Kategorijos"
493
+
494
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
495
+ msgid "Dates"
496
+ msgstr "datos"
497
+
498
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
499
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
500
+ msgid "Tags"
501
+ msgstr "Tags"
502
+
503
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
504
+ msgid "Pages"
505
+ msgstr "Puslapiai"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "Page Template"
509
+ msgstr "Page Web Šablono"
510
+
511
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
512
+ msgid "The template for page breadcrumbs."
513
+ msgstr " puslapio šablonas breadcrumbs."
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "Page Template (Unlinked)"
517
+ msgstr "Page Web Šablono (atspari)"
518
+
519
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
520
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
521
+ msgstr "Už puslapio breadcrumbs šablonas,naudojamas tik tada kai breadcrumb nėra susiję."
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "Attachment Template"
525
+ msgstr "Priedas Šablonas"
526
+
527
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
528
+ msgid "The template for attachment breadcrumbs."
529
+ msgstr "Kabinami ant breadcrumbs šablonas."
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "Attachment Template (Unlinked)"
533
+ msgstr "Priedas šablonas (atspari)"
534
+
535
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
536
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
537
+ msgstr "Kabinami ant breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
538
+
539
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
540
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
541
+ msgid "%s Template"
542
+ msgstr "%s šablonas"
543
+
544
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
545
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
546
+ msgid "The template for %s breadcrumbs."
547
+ msgstr "šablonas %s breadcrumbs."
548
+
549
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
550
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
551
+ msgid "%s Template (Unlinked)"
552
+ msgstr "%s šablonas (atspari)"
553
+
554
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
555
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
556
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
557
+ msgstr "%s breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
558
+
559
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
560
+ msgid "%s Root Page"
561
+ msgstr "%s Root Page"
562
+
563
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
564
+ msgid "&mdash; Select &mdash;"
565
+ msgstr "&mdash; Pasirinkti &mdash;"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "%s Archive Display"
569
+ msgstr "%s Archyvas Rodyti"
570
+
571
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
572
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
573
+ msgstr "Rodyti breadcrumb už %s arba tipo pareigoms archyvų tinklalapio takas."
574
+
575
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
576
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
577
+ msgstr "Rodyti taksonomiją, vedantį į%s į breadcrumb juostą."
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "Category Template"
581
+ msgstr "Kategorija Šablonas"
582
+
583
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
584
+ msgid "The template for category breadcrumbs."
585
+ msgstr "Kategorijos už breadcrumbs šablonas."
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "Category Template (Unlinked)"
589
+ msgstr "Kategorija šablonas (atspari)"
590
+
591
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
592
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
593
+ msgstr "Kategorijos breadcrumb šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "Tag Template"
597
+ msgstr "Tag Šablonas"
598
+
599
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
600
+ msgid "The template for tag breadcrumbs."
601
+ msgstr "Tag breadcrumbs šablonas."
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "Tag Template (Unlinked)"
605
+ msgstr "Tag šablonas (atspari)"
606
+
607
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
608
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
609
+ msgstr "šablonas už Tag breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susiję."
610
+
611
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
612
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
613
+ msgid "Miscellaneous"
614
+ msgstr "įvairialypis"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "Author Template"
618
+ msgstr "Autorius Šablonas"
619
+
620
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
621
+ msgid "The template for author breadcrumbs."
622
+ msgstr "šablonas už autoriaus breadcrumbs"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "Author Template (Unlinked)"
626
+ msgstr "Autorius šablonas (atspari)"
627
+
628
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
629
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
630
+ msgstr "Autoriaus džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ msgid "Author Display Format"
634
+ msgstr "Autorius Ekranas Formatas"
635
+
636
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
637
+ 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."
638
+ msgstr "display_namenaudoja pavadinimą, nurodytą \"Display name viešai kaip\" pagal vartotojo aprašymą kiti atitinka variantų vartotojo profilį."
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "Date Template"
642
+ msgstr "data Šablonas"
643
+
644
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
645
+ msgid "The template for date breadcrumbs."
646
+ msgstr "Datos ir breadcrumbs šablonas."
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "Date Template (Unlinked)"
650
+ msgstr "Data šablonas (atspari)"
651
+
652
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
653
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
654
+ msgstr "Datos ir breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susijęs šablonas."
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "Search Template"
658
+ msgstr "Paieška Šablonas"
659
+
660
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
661
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
662
+ msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius."
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "Search Template (Unlinked)"
666
+ msgstr "Paieška šablonas (atspari)"
667
+
668
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
669
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
670
+ msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius ir naršymo nėra susiję."
671
+
672
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
673
+ msgid "404 Title"
674
+ msgstr "404 Titras"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "404 Template"
678
+ msgstr "404 Šablonas"
679
+
680
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
681
+ msgid "The template for 404 breadcrumbs."
682
+ msgstr "Šablonas už 404 breadcrumbs."
683
+
684
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
685
+ msgid "Save Changes"
686
+ msgstr "Išsaugoti pakeitimus"
687
+
688
+ #: includes/class.mtekk_adminkit.php:217
689
+ msgid "Settings"
690
+ msgstr "Nustatymai"
691
+
692
+ #: includes/class.mtekk_adminkit.php:287
693
+ msgid "Your settings are out of date."
694
+ msgstr "Jūsų nustatymai paseno."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate the settings now."
698
+ msgstr "Nustatymai migruoti dabar."
699
+
700
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
701
+ msgid "Migrate now."
702
+ msgstr "Migracija dabar."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Your plugin install is incomplete."
706
+ msgstr "Jūsų įskiepiai installtion yra baigtas."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Load default settings now."
710
+ msgstr "Įdėkite numatytuosius nustatymus dabar."
711
+
712
+ #: includes/class.mtekk_adminkit.php:304
713
+ msgid "Complete now."
714
+ msgstr "Baigtas."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Your plugin settings are invalid."
718
+ msgstr "Jūsų plugin parametrai yra negerai."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Attempt to fix settings now."
722
+ msgstr "Bandymai, kaip nustatyti nustatymus dabar."
723
+
724
+ #: includes/class.mtekk_adminkit.php:312
725
+ msgid "Fix now."
726
+ msgstr "Fiksuotas dabar."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490
729
+ msgid "Settings successfully saved."
730
+ msgstr "Nustatymai išsaugoti sėkmingai."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ msgid "Undo the options save."
734
+ msgstr "Padaryti taupymo atšaukti galimybes."
735
+
736
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
737
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo"
740
+ msgstr "Padaryti atgal"
741
+
742
+ #: includes/class.mtekk_adminkit.php:495
743
+ msgid "Some settings were not saved."
744
+ msgstr "Kai kurie parametrai nebuvo išsaugotas."
745
+
746
+ #: includes/class.mtekk_adminkit.php:496
747
+ msgid "The following settings were not saved:"
748
+ msgstr "Kai kurie parametrai nebuvo išsaugotas."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Please include this message in your %sbug report%s."
752
+ msgstr "Pridėkite šią naujieną prie jūsų %sbug report%s ."
753
+
754
+ #: includes/class.mtekk_adminkit.php:501
755
+ msgid "Go to the %s support post for your version."
756
+ msgstr "Eiti į %s nuotolinio paramos savo versiją."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Settings successfully imported from the uploaded file."
760
+ msgstr "Nustatymai buvo sėkmingai importuoti iš įkelto failo."
761
+
762
+ #: includes/class.mtekk_adminkit.php:600
763
+ msgid "Undo the options import."
764
+ msgstr "Padaryti Anuliuoti Importas galimybes."
765
+
766
+ #: includes/class.mtekk_adminkit.php:605
767
+ msgid "Importing settings from file failed."
768
+ msgstr "Importuoti nustatymus iš failo nepavyko."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Settings successfully reset to the default values."
772
+ msgstr "Sėkmingai pakeisti gamyklinius nustatymus."
773
+
774
+ #: includes/class.mtekk_adminkit.php:624
775
+ msgid "Undo the options reset."
776
+ msgstr "Padaryti iš naujo atšaukti galimybes."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Settings successfully undid the last operation."
780
+ msgstr "Nustatymai, paskutinės operacijos sėkmingai pakeistas."
781
+
782
+ #: includes/class.mtekk_adminkit.php:641
783
+ msgid "Undo the last undo operation."
784
+ msgstr "Kartokite."
785
+
786
+ #: includes/class.mtekk_adminkit.php:676
787
+ msgid "Settings successfully migrated."
788
+ msgstr "Nustatymai sėkmingai perkelti."
789
+
790
+ #: includes/class.mtekk_adminkit.php:683
791
+ msgid "Default settings successfully installed."
792
+ msgstr "Gamykliniai nustatymai sėkmingai įdiegta."
793
+
794
+ #: includes/class.mtekk_adminkit.php:779
795
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
796
+ msgstr "Importuoti nustatymus iš XML failą, eksporto dabartinius nustatymus XML failo arba iš naujo į numatytuosius nustatymus."
797
+
798
+ #: includes/class.mtekk_adminkit.php:782
799
+ msgid "Settings File"
800
+ msgstr "Nustatymai failą"
801
+
802
+ #: includes/class.mtekk_adminkit.php:785
803
+ msgid "Select a XML settings file to upload and import settings from."
804
+ msgstr "Pasirinkite XML failą su nustatymais įkelti ir importuoti nustatymus."
805
+
806
+ #: class.bcn_breadcrumb_trail.php:82
807
+ msgid "Page %htitle%"
808
+ msgstr "Puslapis %htitle%"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:106
811
+ msgid "404"
812
+ msgstr "404"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:111
815
+ msgid "Search results for &#39;%htitle%&#39;"
816
+ msgstr "Paieškos rezultatai &#39;%htitle%&#39;"
817
+
818
+ #: class.bcn_breadcrumb_trail.php:126
819
+ msgid "Articles by: %htitle%"
820
  msgstr "Straipsniai: %htitle%"
languages/breadcrumb-navxt-nb_NO.mo DELETED
Binary file
languages/breadcrumb-navxt-nb_NO.po DELETED
@@ -1,522 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Norwegian (Bokmål)
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2012-06-06 01:22:54+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_widget.php:93
14
- msgid "Text to show before the trail:"
15
- msgstr "Tekst som vises før stien:"
16
-
17
- #: breadcrumb_navxt_widget.php:100
18
- msgid "Schema.org"
19
- msgstr "Schema.org"
20
-
21
- #: breadcrumb_navxt_admin.php:227
22
- msgid "Go to the Breadcrumb NavXT translation project."
23
- msgstr "Gå til Breadcrumb NavXT oversettingsprosjekt."
24
-
25
- #: breadcrumb_navxt_admin.php:36
26
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
27
- msgstr "Din PHP-versjon er for gammel, vennligst oppgrader til en nyere versjon. Din versjon er %1$s, Breadcrumb NavXT krever %2$s"
28
-
29
- #: breadcrumb_navxt_widget.php:89
30
- msgid "Title:"
31
- msgstr "Tittel:"
32
-
33
- #: breadcrumb_navxt_widget.php:101
34
- msgid "Plain"
35
- msgstr "Ordinær"
36
-
37
- #: breadcrumb_navxt_widget.php:106
38
- msgid "Link the breadcrumbs"
39
- msgstr "Lenke breadcrumbs"
40
-
41
- #: breadcrumb_navxt_widget.php:108
42
- msgid "Reverse the order of the trail"
43
- msgstr "Reverser rekkefølgen på stien"
44
-
45
- #: breadcrumb_navxt_widget.php:110
46
- msgid "Hide the trail on the front page"
47
- msgstr "Skjul stien på hovedsiden"
48
-
49
- #: breadcrumb_navxt_admin.php:118
50
- msgid "Insufficient privileges to proceed."
51
- msgstr "Utilstrekkelige rettigheter for å fortsette."
52
-
53
- #: breadcrumb_navxt_admin.php:220
54
- msgid "Tips for the settings are located below select options."
55
- msgstr "Tips for innstillinger finnes under \"Velg alternativer\"."
56
-
57
- #: breadcrumb_navxt_admin.php:221
58
- msgid "Resources"
59
- msgstr "Resurser"
60
-
61
- #: breadcrumb_navxt_admin.php:222
62
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
63
- msgstr "%sTutorials and How Tos%s: Det er flere guider, \"tutorials\" og \"how tos\" tilgjengelig på forfatterens hjemmeside."
64
-
65
- #: breadcrumb_navxt_admin.php:222
66
- msgid "Go to the Breadcrumb NavXT tag archive."
67
- msgstr "Gå til Breadcrumb NavXT stikkordsarkiv."
68
-
69
- #: breadcrumb_navxt_admin.php:223
70
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
71
- msgstr "%sOnline Dokumentasjon%s: Dokumentasjon for mer avansert teknisk informasjon."
72
-
73
- #: breadcrumb_navxt_admin.php:223
74
- msgid "Go to the Breadcrumb NavXT online documentation"
75
- msgstr "Gå til Breadcrumb NavXT online dokumentasjon"
76
-
77
- #: breadcrumb_navxt_admin.php:224
78
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
79
- msgstr "%sRaporter en Bug%s: Hvis du tror du har funnet en bug, vennligst inkluder din WordPress-versjon og detaljer om hvordan reprodusere buggen."
80
-
81
- #: breadcrumb_navxt_admin.php:224
82
- msgid "Go to the Breadcrumb NavXT support post for your version."
83
- msgstr "Gå til Breadcrumb NavXT support for din versjon."
84
-
85
- #: breadcrumb_navxt_admin.php:225
86
- msgid "Giving Back"
87
- msgstr "Gi Tilbake"
88
-
89
- #: breadcrumb_navxt_admin.php:226
90
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
91
- msgstr "%sDonate%s: Liker Breadcrumb NavXT og ønsker å bidra til utviklingen? Vurder å spandere en øl på forfatteren."
92
-
93
- #: breadcrumb_navxt_admin.php:226
94
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
95
- msgstr "Gå til PayPal for å gi en donasjon til Breadcrumb NavXT."
96
-
97
- #: breadcrumb_navxt_admin.php:227
98
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
99
- msgstr "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
100
-
101
- #: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
102
- msgid "General"
103
- msgstr "Generelt"
104
-
105
- #: breadcrumb_navxt_admin.php:235
106
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
107
- msgstr "For at innstillingene på denne siden skal gjelde må du enten bruke den medfølgende Breadcrumb NavXT widget, eller bruke en av kodeseksjonene nedenfor i temaet ditt."
108
-
109
- #: breadcrumb_navxt_admin.php:236
110
- msgid "Breadcrumb trail with separators"
111
- msgstr "Breadcrumb-sti med skilletegn"
112
-
113
- #: breadcrumb_navxt_admin.php:242
114
- msgid "Breadcrumb trail in list form"
115
- msgstr "Breadcrumb-sti i listeform"
116
-
117
- #: breadcrumb_navxt_admin.php:251
118
- msgid "Quick Start"
119
- msgstr "Hurtig-Start"
120
-
121
- #: breadcrumb_navxt_admin.php:254
122
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
123
- msgstr "Bruker du koden fra Hurtig-Start seksjonen ovenfor, kan følgende CSS brukes som utgangspunkt for å style breadcrumb-stien."
124
-
125
- #: breadcrumb_navxt_admin.php:266
126
- msgid "Styling"
127
- msgstr "Styling"
128
-
129
- #: breadcrumb_navxt_admin.php:272
130
- msgid "Import/Export/Reset"
131
- msgstr "Import/Eksport/Tilbakestille Innstillinger"
132
-
133
- #: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
134
- msgid "Import"
135
- msgstr "Import"
136
-
137
- #: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
138
- msgid "Export"
139
- msgstr "Eksport"
140
-
141
- #: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
142
- msgid "Reset"
143
- msgstr "Tilbakestille"
144
-
145
- #: breadcrumb_navxt_admin.php:311
146
- msgid "Breadcrumb NavXT Settings"
147
- msgstr "Breadcrumb NavXT Innstillinger"
148
-
149
- #: breadcrumb_navxt_admin.php:326
150
- msgid "Breadcrumb Separator"
151
- msgstr "Breadcrumb Skilletegn"
152
-
153
- #: breadcrumb_navxt_admin.php:326
154
- msgid "Placed in between each breadcrumb."
155
- msgstr "Settes inn mellom hver breadcrumb."
156
-
157
- #: breadcrumb_navxt_admin.php:327
158
- msgid "Breadcrumb Max Title Length"
159
- msgstr "Breadcrumb Max Tittellengde"
160
-
161
- #: breadcrumb_navxt_admin.php:331
162
- msgid "Home Breadcrumb"
163
- msgstr "Hjem Breadcrumb"
164
-
165
- #: breadcrumb_navxt_admin.php:336
166
- msgid "Place the home breadcrumb in the trail."
167
- msgstr "Sett inn hjem-breadcrumb i stien."
168
-
169
- #: breadcrumb_navxt_admin.php:341
170
- msgid "Home Title: "
171
- msgstr "Hjem-Tittel:"
172
-
173
- #: breadcrumb_navxt_admin.php:349
174
- msgid "Home Template"
175
- msgstr "Hjem-Mal"
176
-
177
- #: breadcrumb_navxt_admin.php:349
178
- msgid "The template for the home breadcrumb."
179
- msgstr "Mal for hjem-breadcrumb."
180
-
181
- #: breadcrumb_navxt_admin.php:350
182
- msgid "Home Template (Unlinked)"
183
- msgstr "Hjem-Mal (ulenket)"
184
-
185
- #: breadcrumb_navxt_admin.php:350
186
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
187
- msgstr "Mal for hjem-breadcrumb, brukes når breadcrumb ikke er lenket."
188
-
189
- #: breadcrumb_navxt_admin.php:351
190
- msgid "Blog Breadcrumb"
191
- msgstr "Blogg Breadcrumb"
192
-
193
- #: breadcrumb_navxt_admin.php:351
194
- msgid "Place the blog breadcrumb in the trail."
195
- msgstr "Sett inn blogg-breadcrumb i stien."
196
-
197
- #: breadcrumb_navxt_admin.php:352
198
- msgid "Blog Template"
199
- msgstr "Blogg-Mal"
200
-
201
- #: breadcrumb_navxt_admin.php:352
202
- msgid "The template for the blog breadcrumb, used only in static front page environments."
203
- msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside."
204
-
205
- #: breadcrumb_navxt_admin.php:353
206
- msgid "Blog Template (Unlinked)"
207
- msgstr "Blogg-Mal (ulenket)"
208
-
209
- #: breadcrumb_navxt_admin.php:353
210
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
211
- msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside og når breadcrumb ikke er lenket."
212
-
213
- #: breadcrumb_navxt_admin.php:357
214
- msgid "Main Site Breadcrumb"
215
- msgstr "Hovedsidens Breadcrumb"
216
-
217
- #: breadcrumb_navxt_admin.php:362
218
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
219
- msgstr "Sett inn hovedsidens hjem-breadcrumb i stien i et multisite-oppsett."
220
-
221
- #: breadcrumb_navxt_admin.php:367
222
- msgid "Main Site Home Title: "
223
- msgstr "Hovedsidens Hjem-Tittel:"
224
-
225
- #: breadcrumb_navxt_admin.php:376
226
- msgid "Main Site Home Template"
227
- msgstr "Hovedsidens Hjem-Mal"
228
-
229
- #: breadcrumb_navxt_admin.php:376
230
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
231
- msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett."
232
-
233
- #: breadcrumb_navxt_admin.php:377
234
- msgid "Main Site Home Template (Unlinked)"
235
- msgstr "Hovedsidens Hjem-Mal (ulenket)"
236
-
237
- #: breadcrumb_navxt_admin.php:377
238
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
239
- msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett og når breadcrumb ikke er lenket."
240
-
241
- #: breadcrumb_navxt_admin.php:382
242
- msgid "Current Item"
243
- msgstr "Aktuelle Element"
244
-
245
- #: breadcrumb_navxt_admin.php:385
246
- msgid "Link Current Item"
247
- msgstr "Lenke Aktuelle Element"
248
-
249
- #: breadcrumb_navxt_admin.php:385
250
- msgid "Yes"
251
- msgstr "Ja"
252
-
253
- #: breadcrumb_navxt_admin.php:386
254
- msgid "Paged Breadcrumb"
255
- msgstr "Sidebestemt Breadcrumb"
256
-
257
- #: breadcrumb_navxt_admin.php:386
258
- msgid "Include the paged breadcrumb in the breadcrumb trail."
259
- msgstr "Inkluder sidebestemt breadcrumb i stien."
260
-
261
- #: breadcrumb_navxt_admin.php:386
262
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
263
- msgstr "Indikerer at brukeren er på en annen side enn den første i paginerte innlegg eller sider."
264
-
265
- #: breadcrumb_navxt_admin.php:387
266
- msgid "Paged Template"
267
- msgstr "Sidebestemt-Mal"
268
-
269
- #: breadcrumb_navxt_admin.php:387
270
- msgid "The template for paged breadcrumbs."
271
- msgstr "Mal for sidebestemt breadcrumbs."
272
-
273
- #: breadcrumb_navxt_admin.php:392
274
- msgid "Posts &amp; Pages"
275
- msgstr "Innlegg &amp; Sider"
276
-
277
- #: breadcrumb_navxt_admin.php:395
278
- msgid "Post Template"
279
- msgstr "Innlegg-Mal"
280
-
281
- #: breadcrumb_navxt_admin.php:395
282
- msgid "The template for post breadcrumbs."
283
- msgstr "Mal for innlegg-breadcrumbs."
284
-
285
- #: breadcrumb_navxt_admin.php:396
286
- msgid "Post Template (Unlinked)"
287
- msgstr "Innlegg-Mal (ulenket)"
288
-
289
- #: breadcrumb_navxt_admin.php:396
290
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
291
- msgstr "Mal for innlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
292
-
293
- #: breadcrumb_navxt_admin.php:397
294
- msgid "Post Taxonomy Display"
295
- msgstr "Innleggsgruppe Visning"
296
-
297
- #: breadcrumb_navxt_admin.php:397
298
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
299
- msgstr "Vis gruppenavnet som peker til et innlegg i stien."
300
-
301
- #: breadcrumb_navxt_admin.php:401
302
- msgid "Post Taxonomy"
303
- msgstr "Innleggsgruppe"
304
-
305
- #: breadcrumb_navxt_admin.php:405
306
- msgid "Categories"
307
- msgstr "Kategorier"
308
-
309
- #: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
310
- msgid "Dates"
311
- msgstr "Datoer"
312
-
313
- #: breadcrumb_navxt_admin.php:407
314
- msgid "Tags"
315
- msgstr "Stikkord"
316
-
317
- #: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
318
- msgid "Pages"
319
- msgstr "Sider"
320
-
321
- #: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
322
- msgid "The taxonomy which the breadcrumb trail will show."
323
- msgstr "Gruppenavnet som breadcrumb-stien vil vise."
324
-
325
- #: breadcrumb_navxt_admin.php:423
326
- msgid "Page Template"
327
- msgstr "Side-Mal"
328
-
329
- #: breadcrumb_navxt_admin.php:423
330
- msgid "The template for page breadcrumbs."
331
- msgstr "Mal for side-breadcrumbs."
332
-
333
- #: breadcrumb_navxt_admin.php:424
334
- msgid "Page Template (Unlinked)"
335
- msgstr "Side-Mal (ulenket)"
336
-
337
- #: breadcrumb_navxt_admin.php:424
338
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
339
- msgstr "Mal for side-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
340
-
341
- #: breadcrumb_navxt_admin.php:425
342
- msgid "Attachment Template"
343
- msgstr "Vedlegg-Mal"
344
-
345
- #: breadcrumb_navxt_admin.php:425
346
- msgid "The template for attachment breadcrumbs."
347
- msgstr "Mal for vedlegg-breadcrumbs."
348
-
349
- #: breadcrumb_navxt_admin.php:426
350
- msgid "Attachment Template (Unlinked)"
351
- msgstr "Vedlegg-Mal (ulenket)"
352
-
353
- #: breadcrumb_navxt_admin.php:426
354
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
355
- msgstr "Mal for vedlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
356
-
357
- #: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
358
- #: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
359
- #: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
360
- #: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
361
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
362
- msgstr "<a title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a>"
363
-
364
- #: breadcrumb_navxt_admin.php:567
365
- msgid "%htitle%"
366
- msgstr "%htitle%"
367
-
368
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
369
- msgid "%s Template"
370
- msgstr "%s Mal"
371
-
372
- #: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
373
- msgid "The template for %s breadcrumbs."
374
- msgstr "Mal for %s-breadcrumbs."
375
-
376
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
377
- msgid "%s Template (Unlinked)"
378
- msgstr "%s Mal (ulenket)"
379
-
380
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
381
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
- msgstr "Mal for %s-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
383
-
384
- #: breadcrumb_navxt_admin.php:448
385
- msgid "%s Root Page"
386
- msgstr "%s Rot-siden"
387
-
388
- #: breadcrumb_navxt_admin.php:451
389
- msgid "&mdash; Select &mdash;"
390
- msgstr "&mdash; Velg &mdash;"
391
-
392
- #: breadcrumb_navxt_admin.php:455
393
- msgid "%s Archive Display"
394
- msgstr "%s Arkiv Visning"
395
-
396
- #: breadcrumb_navxt_admin.php:455
397
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
- msgstr "Vis breadcrumb for %s type innleggsarkiv i breadcrumb-stien."
399
-
400
- #: breadcrumb_navxt_admin.php:456
401
- msgid "%s Taxonomy Display"
402
- msgstr "%s Gruppenavn Visning"
403
-
404
- #: breadcrumb_navxt_admin.php:456
405
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
- msgstr "Vis gruppenavnet som peker til en %s i breadcrumb-stien."
407
-
408
- #: breadcrumb_navxt_admin.php:460
409
- msgid "%s Taxonomy"
410
- msgstr "%s Gruppenavn"
411
-
412
- #: breadcrumb_navxt_admin.php:485
413
- msgid "Categories &amp; Tags"
414
- msgstr "Kategorier &amp; Stikkord"
415
-
416
- #: breadcrumb_navxt_admin.php:488
417
- msgid "Category Template"
418
- msgstr "Kategori-Mal"
419
-
420
- #: breadcrumb_navxt_admin.php:488
421
- msgid "The template for category breadcrumbs."
422
- msgstr "Mal for kategori-breadcrumbs."
423
-
424
- #: breadcrumb_navxt_admin.php:489
425
- msgid "Category Template (Unlinked)"
426
- msgstr "Kategori-Mal (ulenket)"
427
-
428
- #: breadcrumb_navxt_admin.php:489
429
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
430
- msgstr "Mal for kategori-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
431
-
432
- #: breadcrumb_navxt_admin.php:490
433
- msgid "Tag Template"
434
- msgstr "Stikkord-Mal"
435
-
436
- #: breadcrumb_navxt_admin.php:490
437
- msgid "The template for tag breadcrumbs."
438
- msgstr "Mal for stikkord-breadcrumbs."
439
-
440
- #: breadcrumb_navxt_admin.php:491
441
- msgid "Tag Template (Unlinked)"
442
- msgstr "Stikkord-Mal (ulenket)"
443
-
444
- #: breadcrumb_navxt_admin.php:491
445
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
446
- msgstr "Mal for stikkord-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
447
-
448
- #: breadcrumb_navxt_admin.php:517
449
- msgid "Miscellaneous"
450
- msgstr "Diverse"
451
-
452
- #: breadcrumb_navxt_admin.php:520
453
- msgid "Author Template"
454
- msgstr "Forfatter-Mal"
455
-
456
- #: breadcrumb_navxt_admin.php:520
457
- msgid "The template for author breadcrumbs."
458
- msgstr "Mal for forfatter-breadcrumbs."
459
-
460
- #: breadcrumb_navxt_admin.php:521
461
- msgid "Author Template (Unlinked)"
462
- msgstr "Forfatter-Mal (ulenket)"
463
-
464
- #: breadcrumb_navxt_admin.php:521
465
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
466
- msgstr "Mal for forfatter-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
467
-
468
- #: breadcrumb_navxt_admin.php:522
469
- msgid "Author Display Format"
470
- msgstr "Forfatter Visningsformat"
471
-
472
- #: breadcrumb_navxt_admin.php:522
473
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
474
- msgstr "display_name bruker navnet som er valgt under \"Vis navn offentlig som\" i brukerprofilen."
475
-
476
- #: breadcrumb_navxt_admin.php:523
477
- msgid "Date Template"
478
- msgstr "Dato-Mal"
479
-
480
- #: breadcrumb_navxt_admin.php:523
481
- msgid "The template for date breadcrumbs."
482
- msgstr "Mal for dato-breadcrumbs."
483
-
484
- #: breadcrumb_navxt_admin.php:524
485
- msgid "Date Template (Unlinked)"
486
- msgstr "Dato-Mal (ulenket)"
487
-
488
- #: breadcrumb_navxt_admin.php:524
489
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
490
- msgstr "Mal for dato-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
491
-
492
- #: breadcrumb_navxt_admin.php:525
493
- msgid "Search Template"
494
- msgstr "Søk-Mal"
495
-
496
- #: breadcrumb_navxt_admin.php:525
497
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
498
- msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider."
499
-
500
- #: breadcrumb_navxt_admin.php:526
501
- msgid "Search Template (Unlinked)"
502
- msgstr "Søk-Mal (ulenket)"
503
-
504
- #: breadcrumb_navxt_admin.php:526
505
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
506
- msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider og breadcrumb ikke er lenket."
507
-
508
- #: breadcrumb_navxt_admin.php:527
509
- msgid "404 Title"
510
- msgstr "404 Tittel"
511
-
512
- #: breadcrumb_navxt_admin.php:528
513
- msgid "404 Template"
514
- msgstr "404 Mal"
515
-
516
- #: breadcrumb_navxt_admin.php:528
517
- msgid "The template for 404 breadcrumbs."
518
- msgstr "Mal for 404-breadcrumbs."
519
-
520
- #: breadcrumb_navxt_admin.php:533
521
- msgid "Save Changes"
522
- msgstr "Lagre endringer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-nl_NL.mo CHANGED
Binary file
languages/breadcrumb-navxt-nl_NL.po CHANGED
@@ -1,776 +1,816 @@
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: 2013-11-21 02:02:47+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Breadcrumb NavXT Netwerk Instellingen"
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 "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>."
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 "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."
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=\"Ga naar %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 "Zoekresultaten boor &#39;<a title=\"Ga naar de eerste pagina van de zoekresultaten voor %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 "Een verzameling instellingen die het meest waarschijnlijk worden aangepast bevinden zich onder dit tabblad."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Titel Lengte"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Beperk de lengte van de titel van het kruimelpad."
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Kruimelpad Hoofdsite"
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 "De instellingen voor alle typen (Berichten, Pagina's, en Custom Post Types) bevinden zich onder dit tabblad."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Bericht Typen"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Weergave Bericht Hiërarchie"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Bericht Hiërarchie"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "%s Hiërarchie Weergave"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Bericht Opmaak"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Max Titel Lengte: "
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Berichten"
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 "Hoofdbericht"
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 "De hiërarchie die het kruimelpad zal laten zien."
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "%s Hiërarchie"
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 "De instellingen voor alle taxonomieën (waaronder Categorieën, Tags, en aangepaste taxonomieën) bevinden zich onder dit tabblad."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Taxonomies"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Bericht Opmaak Sjabloon"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "Het sjabloon voor bericht opmaak kruimelpaden."
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Bericht Opmaak Sjabloon (Niet Gelinkt)"
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 "Het sjabloon voor post_format kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet wordt gekoppeld."
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 "De instellingen voor de auteur en datum archieven, zoekopdrachten, en 404 pagina's bevinden zich onder dit tabblad."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Author Archief"
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=\"Ga naar het %title% tag archief.\" 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 "Artikelen van: <a title=\"Ga naar de eerste pagina van de berichten van %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=\"Ga naar het %title% categorie archief.\" 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=\"Ga naar het %title% archief.\" 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 "Uw instellingen zijn voor een nieuwere versie."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Tekst om weer te geven voor het pad:"
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 "Ga naar het Breadcrumb NavXT vertaalproject."
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 "Uw PHP versie is te oud, upgrade naar een nieuwere versie. Uw versie is %1$s, Breadcrumb NavXT vereist %2$s"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Voegt een kruimelpad toe aan uw sidebar"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Titel:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Output pad als:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Lijst"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Standaard"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Link het kruimelpad"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "De volgorde van het pad omdraaien"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Verberg het pad op de voorpagina"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Onvoldoende rechten om verder te gaan."
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 "Tips voor de instellingen bevinden zich onder geselecteerde opties."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Middelen"
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 "%sHandleidingen en Instructies%s: Er zijn verschillende Engelstalige gidsen, handleidingen, en instructies beschikbaar op de website van de auteur."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Ga naar het Breadcrumb NavXT tag archief."
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 Documentatie%s: Raadpleeg de documentatie (Engels) voor meer diepgaande technische informatie."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "Ga naar online Breadcrumb NavXT documentatie"
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 "%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."
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 "Ga naar het Breadcrumb NavXT ondersteuningsbericht voor uw versie."
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "Geef Terug"
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 "%sDoneer%s: Heeft u plezier van Breadcrumb NavXT en wilt u de ontwikkeling verder helpen? Overweeg de aanschaf van een biertje voor de auteur."
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 "Ga naar PayPal om te doneren aan 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 "%sTranslate%s: Is uw tail niet beschikbaar? Contacteer John Havlik om de vertaling te verkrijgen."
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 "Algemeen"
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 "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."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Kruimelpad met afscheidingstekens"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Kruimelpad in lijst vorm"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Snelle 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 "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."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Styling"
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 "Breadcrumb NavXT Instellingen"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Kruimelpad Afscheidingsteken"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Geplaatst tussen elk kruimelpad."
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 "Home Kruimelpad"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Plaatst het home kruimelpad in het spoor."
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Home Template"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "Het sjabloon voor het home kruimelpad."
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Home Template (Niet Gelinkt)"
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 "Het sjabloon voor het home kruimelpad, gebruikt wanneer het kruimelpad niet gelinkt is."
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 "Blog Kruimelpad"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Plaatst het blog kruimelpad in het spoor."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Blog Template"
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 "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Blog Template (Niet Gelinkt)"
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 "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen en wanneer het kruimelpad niet gelinkt is."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Hoofdsite Kruimelpad"
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 "Plaatst het home kruimelpad van de hoofdsite in het spoor in een multisite installatie."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Hoofdsite Home Sjabloon"
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 "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr " Hoofdsite Home Template (Niet Gelinkt)"
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 "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen en wanneer het kruimelpad niet gelinkt is."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Huidig Item"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Link Huidig Item"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Ja"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Gepagineerd Kruimelpad"
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 "Voeg het gepagineerde kruimelpad toe aan het kruimelpad spoor."
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 "Geeft aan dat de gebruiker op een andere pagina is dan de eerste op gepagineerde berichten/pagina's."
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Gepagineerd Sjabloon"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Het sjabloon voor gepagineerde kruimelpaden."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Bericht Template"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "Het sjabloon voor bericht kruimelpaden."
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Bericht Template (Niet Gelinkt)"
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 "Het sjabloon voor bericht kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
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 "Geef de taxonomie weer die leidt tot een bericht in het kruimelpad."
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 "Categorieën"
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 "Tags"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Pagina's"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Pagina Template"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "Het sjabloon voor pagina kruimelpaden."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Pagina Template (Niet Gelinkt)"
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 "Het sjabloon voor pagina kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Bijlage Sjabloon"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Het sjabloon voor bijlage kruimelpaden."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Bijlage Sjabloon (Niet Gelinkt)"
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 "Het sjabloon voor bijlage kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Ga naar %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 "%s Template"
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 "Het sjabloon voor %s kruimelpaden."
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 "%s Sjabloon (Niet Gelinkt)"
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 "Het sjabloon voor %s kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "%s Hoofd Pagina"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Selecteer &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "%s Archief Weergave"
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 "Toon het kruimelpad voor %s bericht type archieven in het kruimelpad."
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 "Toon de taxonomie welke leidt tot een %s in het kruimelpad."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Categorie Template"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "Het sjabloon voor categorie kruimelpaden."
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Categorie Template (Niet Gelinkt)"
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 "The template for category breadcrumbs, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Tag Template"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "Het sjabloon voor tag kruimelpaden."
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Tag Template (Niet Gelinkt)"
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 "Het sjabloon voor tag kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
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 "Diversen"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Auteur Template"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Het sjabloon voor auteur kruimelpaden."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "Auteur Sjabloon (Niet Gelinkt)"
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 "Het sjabloon voor auteur kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Auteur Weergave Opmaak"
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 gebruikt de naam opgegeven in \"Toon naam publiekelijk als\" onder het gebruikersprofiel, de anderen komen overeen met opties in het gebruikersprofiel."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Datum Template"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "Het sjabloon voor datum kruimelpaden."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Datum Template (Niet Gelinkt)"
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 "Het sjabloon voor datum kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Zoek Template"
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 "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Zoek Template (Niet Gelinkt)"
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 "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat en wanneer het kruimelpad niet gelinkt is."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404 Titel"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "404 Template"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "Het sjabloon voor 404 kruimelpaden."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Opslaan Wijzigingen"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Instellingen"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "Uw instellingen zijn verouderd."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Migreer nu de instellingen."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Migreer nu."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "Uw plugin installatie is onvolledig."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Laad nu de standaardinstellingen."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Voltooi nu."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "Uw plugin instellingen zijn ongeldig."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Poging om nu de instellingen te herstellen."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Herstel nu."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Instellingen succesvol opgeslagen."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Maak de opslaging van de opties ongedaan."
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 "Ongedaan maken"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Sommige instellingen zijn niet opgeslagen."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "De volgende instellingen zijn niet opgeslagen:"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Gelieve dit bericht bij te voegen in uw %sbug report%s."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Ga naar het %s ondersteuningsbericht voor uw versie."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Instellingen met succes geïmporteerd uit het geüploade bestand."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Ongedaan maken van de opties import."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Instellingen importeren uit bestand is mislukt."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Instellingen met succes teruggezet naar de standaardwaarden."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Maak terugzetten van de opties naar standaardwaarden ongedaan."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Instellingen heeft de laatste handeling met succes ongedaan gemaakt."
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Maak de laatste handeling ongedaan."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Instellingen succesvol gemigreerd."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Standaardinstellingen succesvol geïnstalleerd."
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 "Instellingen importeren van een XML-bestand, exporteer de huidige instellingen naar een XML-bestand, of resetten naar de standaardinstellingen."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Instellingen Bestand"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Selecteer een XML-bestand om instellingen te uploaden en importeren."
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Pagina %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 "Zoekresultaten voor &#39;%htitle%&#39;"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgstr "Artikelen van: %htitle%"
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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "bijlagen"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Waarschuwing: individuele site instellingen overschrijven elke instelling ingesteld op deze pagina"
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Waarschuwing: individuele site instellingen kunnen instellingen ingesteld op deze pagina overschrijven."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ga naar %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT is net bijgewerkt van een pre-5.0 version, ga naar je plugins pagina en activeer \"Breadcrumb NavXT\". Deactiveer ook de \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin om deze boodschap te verwijderen."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Waarschuwing: Je netwerk instellingen overschrijven elke instelling ingesteld op deze pagina."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Waarschuwing: Je netwerk instellingen kunnen instellingen ingesteld op deze pagina overschrijven. "
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Waarschuwing: Geen BCN_SETTINGS_* definitie statement gevonden, standaard ingesteld op BCN_SETTINGS_FAVOR_NETWORK."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT Netwerk Instellingen"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Zoekresultaten boor &#39;<a title=\"Ga naar de eerste pagina van de zoekresultaten voor %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Een verzameling instellingen die het meest waarschijnlijk worden aangepast bevinden zich onder dit tabblad."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Titel Lengte"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Beperk de lengte van de titel van het kruimelpad."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Kruimelpad Hoofdsite"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "De instellingen voor alle typen (Berichten, Pagina's, en Custom Post Types) bevinden zich onder dit tabblad."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Bericht Typen"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Weergave Bericht Hiërarchie"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Bericht Hiërarchie"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s Hiërarchie Weergave"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Bericht Opmaak"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Max Titel Lengte: "
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Berichten"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Hoofdbericht"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "De hiërarchie die het kruimelpad zal laten zien."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s Hiërarchie"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "De instellingen voor alle taxonomieën (waaronder Categorieën, Tags, en aangepaste taxonomieën) bevinden zich onder dit tabblad."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Taxonomies"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Bericht Opmaak Sjabloon"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Het sjabloon voor bericht opmaak kruimelpaden."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Bericht Opmaak Sjabloon (Niet Gelinkt)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Het sjabloon voor post_format kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet wordt gekoppeld."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "De instellingen voor de auteur en datum archieven, zoekopdrachten, en 404 pagina's bevinden zich onder dit tabblad."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Author Archief"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Artikelen van: <a title=\"Ga naar de eerste pagina van de berichten van %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Uw instellingen zijn voor een nieuwere versie."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Tekst om weer te geven voor het pad:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Ga naar het Breadcrumb NavXT vertaalproject."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ msgstr "Uw PHP versie is te oud, upgrade naar een nieuwere versie. Uw versie is %1$s, Breadcrumb NavXT vereist %2$s"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Voegt een kruimelpad toe aan uw sidebar"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Titel:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Output pad als:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Lijst"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Standaard"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Link het kruimelpad"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "De volgorde van het pad omdraaien"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Verberg het pad op de voorpagina"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Onvoldoende rechten om verder te gaan."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Tips voor de instellingen bevinden zich onder geselecteerde opties."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Middelen"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sHandleidingen en Instructies%s: Er zijn verschillende Engelstalige gidsen, handleidingen, en instructies beschikbaar op de website van de auteur."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Ga naar het Breadcrumb NavXT tag archief."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sOnline Documentatie%s: Raadpleeg de documentatie (Engels) voor meer diepgaande technische informatie."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Ga naar online Breadcrumb NavXT documentatie"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Ga naar het Breadcrumb NavXT ondersteuningsbericht voor uw versie."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Geef Terug"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ 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."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Ga naar PayPal om te doneren aan Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTranslate%s: Is uw tail niet beschikbaar? Contacteer John Havlik om de vertaling te verkrijgen."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Algemeen"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ 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."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Kruimelpad met afscheidingstekens"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Kruimelpad in lijst vorm"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Snelle Start"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ 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."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Styling"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Import/Export/Reset"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Import"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Export"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Reset"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT Instellingen"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Kruimelpad Afscheidingsteken"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Geplaatst tussen elk kruimelpad."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Home Kruimelpad"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Plaatst het home kruimelpad in het spoor."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Home Template"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Het sjabloon voor het home kruimelpad."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Home Template (Niet Gelinkt)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Het sjabloon voor het home kruimelpad, gebruikt wanneer het kruimelpad niet gelinkt is."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Blog Kruimelpad"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Plaatst het blog kruimelpad in het spoor."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Blog Template"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Blog Template (Niet Gelinkt)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen en wanneer het kruimelpad niet gelinkt is."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Hoofdsite Kruimelpad"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Plaatst het home kruimelpad van de hoofdsite in het spoor in een multisite installatie."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Hoofdsite Home Sjabloon"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr " Hoofdsite Home Template (Niet Gelinkt)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen en wanneer het kruimelpad niet gelinkt is."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Huidig Item"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Link Huidig Item"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Ja"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Gepagineerd Kruimelpad"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Voeg het gepagineerde kruimelpad toe aan het kruimelpad spoor."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Geeft aan dat de gebruiker op een andere pagina is dan de eerste op gepagineerde berichten/pagina's."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Gepagineerd Sjabloon"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Het sjabloon voor gepagineerde kruimelpaden."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Bericht Template"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Het sjabloon voor bericht kruimelpaden."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Bericht Template (Niet Gelinkt)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Het sjabloon voor bericht kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Geef de taxonomie weer die leidt tot een bericht in het kruimelpad."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Categorieën"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Data"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Tags"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Pagina's"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Pagina Template"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Het sjabloon voor pagina kruimelpaden."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Pagina Template (Niet Gelinkt)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Het sjabloon voor pagina kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Bijlage Sjabloon"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Het sjabloon voor bijlage kruimelpaden."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Bijlage Sjabloon (Niet Gelinkt)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Het sjabloon voor bijlage kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s Template"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "Het sjabloon voor %s kruimelpaden."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s Sjabloon (Niet Gelinkt)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "Het sjabloon voor %s kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Hoofd Pagina"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Selecteer &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s Archief Weergave"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Toon het kruimelpad voor %s bericht type archieven in het kruimelpad."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Toon de taxonomie welke leidt tot een %s in het kruimelpad."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Categorie Template"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Het sjabloon voor categorie kruimelpaden."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Categorie Template (Niet Gelinkt)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "The template for category breadcrumbs, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Tag Template"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Het sjabloon voor tag kruimelpaden."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Tag Template (Niet Gelinkt)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Het sjabloon voor tag kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Diversen"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Auteur Template"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Het sjabloon voor auteur kruimelpaden."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Auteur Sjabloon (Niet Gelinkt)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Het sjabloon voor auteur kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Auteur Weergave Opmaak"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ msgstr "display_name gebruikt de naam opgegeven in \"Toon naam publiekelijk als\" onder het gebruikersprofiel, de anderen komen overeen met opties in het gebruikersprofiel."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Datum Template"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Het sjabloon voor datum kruimelpaden."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Datum Template (Niet Gelinkt)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Het sjabloon voor datum kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Zoek Template"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Zoek Template (Niet Gelinkt)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat en wanneer het kruimelpad niet gelinkt is."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404 Titel"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "404 Template"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "Het sjabloon voor 404 kruimelpaden."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Opslaan Wijzigingen"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Instellingen"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Uw instellingen zijn verouderd."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Migreer nu de instellingen."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Migreer nu."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Uw plugin installatie is onvolledig."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Laad nu de standaardinstellingen."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Voltooi nu."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Uw plugin instellingen zijn ongeldig."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Poging om nu de instellingen te herstellen."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Herstel nu."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Instellingen succesvol opgeslagen."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Maak de opslaging van de opties ongedaan."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Ongedaan maken"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Sommige instellingen zijn niet opgeslagen."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "De volgende instellingen zijn niet opgeslagen:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Gelieve dit bericht bij te voegen in uw %sbug report%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Ga naar het %s ondersteuningsbericht voor uw versie."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Instellingen met succes geïmporteerd uit het geüploade bestand."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Ongedaan maken van de opties import."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Instellingen importeren uit bestand is mislukt."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Instellingen met succes teruggezet naar de standaardwaarden."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Maak terugzetten van de opties naar standaardwaarden ongedaan."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Instellingen heeft de laatste handeling met succes ongedaan gemaakt."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Maak de laatste handeling ongedaan."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Instellingen succesvol gemigreerd."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Standaardinstellingen succesvol geïnstalleerd."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Instellingen importeren van een XML-bestand, exporteer de huidige instellingen naar een XML-bestand, of resetten naar de standaardinstellingen."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Instellingen Bestand"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Selecteer een XML-bestand om instellingen te uploaden en importeren."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Pagina %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Zoekresultaten voor &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artikelen van: %htitle%"
languages/breadcrumb-navxt-pt_PT.mo CHANGED
Binary file
languages/breadcrumb-navxt-pt_PT.po CHANGED
@@ -1,776 +1,816 @@
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: 2013-11-21 02:02:09+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Definições de rede do 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 "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>."
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 "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."
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=\"Ir para %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 "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;"
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 "Conjunto de configurações mais frequentes encontra-se neste separador."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Comprimento do título"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Limita o tamanho dos títulos da navegação estruturada."
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Navegação estruturada do site principal"
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 "As configurações para todos os tipos de artigo (Artigos, Páginas e Tipos de Artigo Personalizado) encontram-se neste separador."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Tipos de artigo"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Exibir hierarquia de artigos"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Hierarquia de artigos"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "Exibir hierarquia de %s"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Formatos de artigo"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Tamanho máximo do título:"
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Artigos"
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 "Pai do artigo"
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 "A hierarquia exibida no caminho de navegação."
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "Hierarquia de %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 "As configurações de todas as taxonomias (incluindo categorias, tags e taxonomias personalizadas) encontram-se neste separador."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Taxonomias"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Modelo do formato de artigo"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "O modelo para navegação dos formatos de artigo."
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Modelo de formato de artigo (sem link)"
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 "O modelo para navegação dos formatos de artigo, quando a navegação não tem link."
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 "As configurações dos arquivos por autor e data, pesquisas e páginas de erro 404 encontram-se neste separador."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Arquivos por autor"
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=\"Ir para os arquivos da tag %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 "Artigos por: <a title=\"Ir para a primeira página de artigos por %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=\"Ir para os arquivos da categoria %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=\"Ir para os arquivos de %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 "As suas configurações dizem respeito a uma versão mais recente."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Texto a exibir antes do caminho:"
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 "Ir para o projecto de tradução do 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 "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."
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Adiciona um caminho à barra lateral"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Título:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Produzir rasto como:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Lista"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Por extenso"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Ligue a navegação estruturada"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "Inverter a ordem do caminho"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Esconder o caminho na página principal"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Permissões insuficientes para prosseguir."
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 "As dicas de configuração estão localizadas abaixo das opções de selecção."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Recursos"
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 "%sTutoriais e Guias%s: Existem vários guias e tutoriais disponíveis na página do autor."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr " para o tópico 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 "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr " para a documentação online do 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 "%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."
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 "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "Retribuir"
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 "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
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 " ao PayPal para efectuar um donativo ao 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 "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
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 "Genérica"
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 "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."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Rastos de navegação estruturada com separadores"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Rasto da navegação estruturada em forma de lista"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Início rápido"
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 "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."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Estilos"
279
-
280
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
- msgid "Import/Export/Reset"
282
- msgstr "Importar/Exportar/Anular"
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 "Importar"
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 "Exportar"
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 "Anular"
298
-
299
- #: class.bcn_admin.php:309
300
- msgid "Breadcrumb NavXT Settings"
301
- msgstr "Preferências da navegação estruturada NavXT "
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Separador da navegação estruturada"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Colocado entre cada link de navegação."
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 "Navegação para a página principal"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Coloca a navegação da página principal no rasto"
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Modelo da página inicial:"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "O modelo para a navegação da página inicial."
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Modelo da página inicial (sem link)"
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 "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
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 "Navegação estruturada do blog"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Coloque a navegação estruturada do blog no rasto."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Modelo de blog"
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 "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Modelo de blog (sem link)"
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 "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Navegação do site principal"
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 "Colocar a navegação do site principal no rasto numa configuração multi-síte."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Modelo para o sítio principal"
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 "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "Modelo da página inicial do site principal (sem link)"
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 "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."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Item actual"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Link no item actual"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Sim"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Navegação estruturada e paginada."
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 "Inclui a navegação paginada e estruturada no rasto."
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 "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Modelo paginado"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Modelo para a navegação estruturada."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Modelo de artigo"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "O modelo para a navegação de artigos."
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Modelo de Artigo (sem link)"
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 "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
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 "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
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 "Categorias"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "Datas"
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 "Tópicos"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Páginas"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Modelo de página"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "O modelo para página de navegação estruturada."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Modelo de página (sem link)"
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 "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Modelo de anexo"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Modelo para anexos de navegação estruturada."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Modelo de anexo (sem link)"
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 "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Vá para %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 "Modelo de %s"
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 "O modelo para navegação de %s."
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 "Modelo de %s (sem link)"
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 "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "Página raíz de %s"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Escolha &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "Exibir arquivo de %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 "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
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 "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Modelo de categoria"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "O template para categoria de navegação estruturada."
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Modelo de categoria (sem link)"
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 "O modelo para a navegação das categorias, usado apenas quando não há link."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Modelo de tópico"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "O modelo para a navegação dos tópicos."
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Modelo de tópico (sem link)"
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 "O modelo para a navegação dos tópicos, usado apenas quando não há link."
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 "Diversos"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Modelo de autor"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Modelo para o autor da navegação estruturada."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "Modelo de autor (sem link)"
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 "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Formato de visualização do Autor "
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 usa o nome especificado em \"Display name publicly as\" sob o perfil do utilizador os outros corresponde a opções no perfil do utilizador."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Modelo de data"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "O modelo para as datas da navegação estruturada."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Modelo de data (sem link)"
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 "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Modelo de pesquisa"
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 "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Modelo de pesquisa (sem link)"
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 "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."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404 Título"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "Modelo 404"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "O modelo para 404 navegação estruturada."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Gravar alterações"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Configurações"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "As suas configurações estão desactualizadas."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Migre as configurações agora."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Migre agora."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "A instalação do seu plugin está completa."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Carregue as configurações por omissão agora."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Complete agora."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "As suas configurações são inválidas."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Tente corrigir agora as configurações."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Corrigir agora."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Configurações gravadas com sucesso."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Desfazer as opções salvar."
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 "Desfazer"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Algumas configurações não forma salvas."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "As seguintes configurações não foram salvas:"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Por favor inclua esta mensagem no seu %sbug report%s."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Seguir para o %s artigo de suporte da sua versão."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Configurações importadas com sucesso do ficheiro carregado."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Desfazer as opções de importação."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Importando as configurações do ficheiro falhado."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Configurações anuladas com sucesso para os valores por omissão."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Desfazer a anulação de opções."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Configurações da última operação desfeitas com sucesso"
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Desfazer a última operação."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Configurações migradas com sucesso."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Configurações por omissão instaladas com sucesso."
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 "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."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Ficheiro de configurações"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Seleccionne um ficheiro de configuração XML para carregar"
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Página %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 "Resultados da pesquisa por &#39;%htitle%&#39;"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgstr "Artigos por: %htitle%"
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: 2014-05-24 18:38: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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Anexos"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ 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>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Aviso: As definições de cada site irão sobrepor-se às definições nesta página."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Aviso: As definições de cada site poderão sobrepor-se às definições nesta página."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Estrutura de navegação do Google (RDFa)"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Ir para %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT foi atualizado de uma versão anterior à 5.0. Por favor dirija-se à página de plugins e ative \"Breadcrumb NavXT\". Desative ainda o plugin \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" para fazer com que esta mensagem desapareça."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Aviso: As suas definições de rede irão sobrepor-se às definições desta página."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Aviso: As suas definições de rede poderão sobrepor-se às definições desta página."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Aviso: A instrução para definir BCN_SETTINGS_* não foi encontrada, será usada BCN_SETTINGS_FAVOR_NETWORK por omissão."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Definições de rede do Breadcrumb NavXT"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ 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;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Conjunto de configurações mais frequentes encontra-se neste separador."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Comprimento do título"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Limita o tamanho dos títulos da navegação estruturada."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Navegação estruturada do site principal"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "As configurações para todos os tipos de artigo (Artigos, Páginas e Tipos de Artigo Personalizado) encontram-se neste separador."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Tipos de artigo"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Exibir hierarquia de artigos"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Hierarquia de artigos"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "Exibir hierarquia de %s"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Formatos de artigo"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Tamanho máximo do título:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Artigos"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Pai do artigo"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "A hierarquia exibida no caminho de navegação."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "Hierarquia de %s"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "As configurações de todas as taxonomias (incluindo categorias, tags e taxonomias personalizadas) encontram-se neste separador."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Taxonomias"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Modelo do formato de artigo"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "O modelo para navegação dos formatos de artigo."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Modelo de formato de artigo (sem link)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "O modelo para navegação dos formatos de artigo, quando a navegação não tem link."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "As configurações dos arquivos por autor e data, pesquisas e páginas de erro 404 encontram-se neste separador."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Arquivos por autor"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Artigos por: <a title=\"Ir para a primeira página de artigos por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "As suas configurações dizem respeito a uma versão mais recente."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Texto a exibir antes do caminho:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ 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."
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Adiciona um caminho à barra lateral"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Título:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Produzir rasto como:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Lista"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Por extenso"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Ligue a navegação estruturada"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Inverter a ordem do caminho"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Esconder o caminho na página principal"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Permissões insuficientes para prosseguir."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Recursos"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sTutoriais e Guias%s: Existem vários guias e tutoriais disponíveis na página do autor."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Vá para o tópico Breadcrumb NavXT"
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Vá para a documentação online do Breadcrumb NavXT."
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Retribuir"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Genérica"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ 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."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Rastos de navegação estruturada com separadores"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Rasto da navegação estruturada em forma de lista"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Início rápido"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ 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."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Estilos"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Importar/Exportar/Anular"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Importar"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Exportar"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Anular"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Preferências da navegação estruturada NavXT "
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Separador da navegação estruturada"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Colocado entre cada link de navegação."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Navegação para a página principal"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Coloca a navegação da página principal no rasto"
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Modelo da página inicial:"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "O modelo para a navegação da página inicial."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Modelo da página inicial (sem link)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Navegação estruturada do blog"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Coloque a navegação estruturada do blog no rasto."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Modelo de blog"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Modelo de blog (sem link)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Navegação do site principal"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Modelo para o sítio principal"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Modelo da página inicial do site principal (sem link)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ 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."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Item actual"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Link no item actual"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Sim"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Navegação estruturada e paginada."
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Inclui a navegação paginada e estruturada no rasto."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Modelo paginado"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Modelo para a navegação estruturada."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Modelo de artigo"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "O modelo para a navegação de artigos."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Modelo de Artigo (sem link)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Categorias"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Datas"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Tópicos"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Páginas"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Modelo de página"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "O modelo para página de navegação estruturada."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Modelo de página (sem link)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Modelo de anexo"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Modelo para anexos de navegação estruturada."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Modelo de anexo (sem link)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "Modelo de %s"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "O modelo para navegação de %s."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "Modelo de %s (sem link)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "Página raíz de %s"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Escolha &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "Exibir arquivo de %s"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Modelo de categoria"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "O template para categoria de navegação estruturada."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Modelo de categoria (sem link)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Modelo de tópico"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "O modelo para a navegação dos tópicos."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Modelo de tópico (sem link)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Diversos"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Modelo de autor"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Modelo para o autor da navegação estruturada."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Modelo de autor (sem link)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Formato de visualização do Autor "
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ 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."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Modelo de data"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "O modelo para as datas da navegação estruturada."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Modelo de data (sem link)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Modelo de pesquisa"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Modelo de pesquisa (sem link)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ 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."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404 Título"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "Modelo 404"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "O modelo para 404 navegação estruturada."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Gravar alterações"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Configurações"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "As suas configurações estão desactualizadas."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Migre as configurações agora."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Migre agora."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "A instalação do seu plugin está completa."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Carregue as configurações por omissão agora."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Complete agora."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "As suas configurações são inválidas."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Tente corrigir agora as configurações."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Corrigir agora."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Configurações gravadas com sucesso."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Desfazer as opções salvar."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Desfazer"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Algumas configurações não forma salvas."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "As seguintes configurações não foram salvas:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Por favor inclua esta mensagem no seu %sbug report%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Seguir para o %s artigo de suporte da sua versão."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Configurações importadas com sucesso do ficheiro carregado."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Desfazer as opções de importação."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Importando as configurações do ficheiro falhado."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Configurações anuladas com sucesso para os valores por omissão."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Desfazer a anulação de opções."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Configurações da última operação desfeitas com sucesso"
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Desfazer a última operação."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Configurações migradas com sucesso."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Configurações por omissão instaladas com sucesso."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ 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."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Ficheiro de configurações"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Seleccionne um ficheiro de configuração XML para carregar"
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Página %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Resultados da pesquisa por &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Artigos por: %htitle%"
languages/breadcrumb-navxt-ru_RU.mo CHANGED
Binary file
languages/breadcrumb-navxt-ru_RU.po CHANGED
@@ -1,753 +1,816 @@
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: 2013-02-28 01:21:48+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
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- 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."
15
- msgstr "Иерархия, согласно которой будут выведены \"хлебные крошки\". Помните, что при выборе \"Post Parent\" может потребоваться дополнительный плагин, так это не иерархический тип записей."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Перейти к %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Результаты поиска для запроса: &#39;<a title=\"Перейти на первую страницу с результатами поиска %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Основные настройки."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Длина заголовка"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Ограничить длину заголовка"
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Ссылка на главный сайт"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Настройки для всех типов записей (записи, страницы, записи произвольного типа)."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Записи и страницы"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Вывод иерархии"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Иерархия записи"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s вывод иерархии"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Форматы записей"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Максимальная длина:"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Записи"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Под-страницы"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "Путь будет строиться по выбранной иерархии."
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "%s иерархия"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Настройки таксономий (рубрики, метки и произвольные таксономии)."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Таксономии"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Форматы записей"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "Шаблон ссылки на свой формат записей"
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Шаблон ссылки на свой формат записей (некликабельная)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "Шаблон ссылки на свой формат записей (когда ссылка на свой формат записей некликабельна)."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Настройки архивов по автору, дате, поиску и 404 ошибки."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Архивы по автору"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Перейти к архиву по метке %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Статьи от: <a title=\"Перейти на первую страницу с записями %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Перейти к архиву рубрики %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Перейти к архиву %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "Ваши настройки для новой версии."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Текст, выводимый перед путем:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Перейти на сайт перевода Breadcrumb NavXT"
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "Ваша версия PHP устарела, пожалуйста обновите ее. У вас версия %1$s, Breadcrumb NavXT требует %2$s"
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "\"Хлебные крошки\" в вашем сайдбаре."
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Заголовок:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Выводить путь как:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Список"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Текст"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Путь в виде ссылок"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Обратная сортировка пути"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Не показывать виджет на главной"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Недостаточно прав для продолжения."
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Различные подсказки по работе с плагином."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Ресурсы"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sРуководства и FAQ'и%s: Тут вы найдете несколько руководств, туториалов и FAQ'ов по использованию плагина."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Все записи с тегом 'Breadcrumb NavXT'."
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sДокументация онлайн%s: Здесь вы найдете документацию с более подробной технической информацией."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Перейти на сайт с онлайн документацией по плагину Breadcrumb NavXT."
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- 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."
218
- msgstr "%sСообщить об ошибке%s: Если вы нашли ошибку в работе плагина, то сообщите о ней автору. Не забудьте указать версию WordPress и ситуацию, при которой можно воспроизвести ошибку."
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Сообщить об ошибке плагина Breadcrumb NavXT вашей версии."
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Внести свой вклад"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sПожертвования%s: Любите плагин Breadcrumb NavXT и хотите помочь его разработке? Купите автору пиво :)"
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Перейти к сайту PayPal, чтобы сделать пожертвование автору плагина Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sПеревод%s: Ваш язык недоступен? Свяжитесь с John Havlik, если хотите перевести плагин на свой язык."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "Основные"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- 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."
247
- msgstr "Для использования плагина вы должны или использовать соответствующий виджет или поместить указанные примеры кода в нужный файл вашего шаблона."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Путь с разделителями"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Путь в формате list"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Быстрый старт"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Следующий CSS-код может быть использован для оформления стиля пути."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Стиль"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Импорт/Экспорт/Сброс"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Импорт"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Экспорт"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Сброс"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Настройки Breadcrumb NavXT"
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Разделитель"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Устанавливается между ссылками."
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Ссылка на главную"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Поместить ссылку на главную страницу блога в путь."
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Шаблон ссылки на главную"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "Шаблон ссылки для главной страницы блога."
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Шаблон ссылки на главную (некликабельная)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "Шаблон ссылки для главной страницы блога (когда ссылка на главную некликабельна)."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Ссылка на блог"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Поместить ссылку на блог в путь."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Шаблон ссылки на блог"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "Шаблон ссылки на блог (используется только при статической главной странице)."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Шаблон ссылки на блог (некликабельная)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "Шаблон ссылки на блог (используется только при статической главной странице и только, когда ссылка на блог некликабельна)."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Ссылка на главный сайт"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Поместить ссылку на главный сайт в путь (при включенном режиме мультисайта)."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Шаблон ссылки на главный сайт"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта)."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Шаблон ссылки на главный сайт (некликабельная)."
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта и только, когда ссылка на главный сайт некликабельна)."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Текущая позиция"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Показывать текущую позицию в виде ссылки"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Да"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Постраничная навигация"
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Включить поддержку постраничной навигации."
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "В текущей позиции будет указан номер страницы, если посетитель находится на странице, образованной постраничной навигацией."
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Шаблон"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Шаблон для страниц с постраничной навигацией."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Шаблон ссылки на запись"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Шаблон ссылки на запись."
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Шаблон ссылки на запись (некликабельная)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Шаблон ссылки на запись (когда ссылка на запись некликабельна)."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Показывать в пути все возможные варианты доступа к текущей позиции."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Рубрики"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Даты"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Метки"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Страницы"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Шаблон ссылки на страницу"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Шаблон ссылки на страницу."
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Шаблон ссылки на страницу (некликабельная)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Шаблон ссылки на страницу (когда ссылка на страницу некликабельна)."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "Шаблон ссылки на вложение"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Шаблон ссылки на вложение."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Шаблон ссылки на вложение (некликабельная)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Шаблон ссылки на вложение (когда ссылка на вложение некликабельна)."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Перейти к %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "%s Шаблон"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "Шаблон для %s пути."
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "%s Шаблон (некликабельная)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "Шаблон для %s пути (когда %1$s путь некликабелен)."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "%s Главная страница"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Выбор &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "%s Архив"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Показывать путь для %s архивов типов записей."
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Показывать путь для %s таксономий."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Шаблон ссылки на рубрику"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Шаблон ссылки на рубрику."
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Шаблон ссылки на рубрику (некликабельная)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Шаблон ссылки на рубрику (когда ссылка на рубрику некликабельна)."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Шаблон ссылки на метку"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Шаблон ссылки на метку."
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Шаблон ссылки на метку (некликабельная)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Шаблон ссылки на метку (когда ссылка на метку некликабельна)."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Другое"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Шаблон ссылки на автора"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Шаблон ссылки на автора."
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Шаблон ссылки на автора (некликабельная)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Шаблон ссылки на автора (когда ссылка на автора некликабельна)."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Формат имени автора"
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name отображает имя автора так, как указано у него в профиле в опции \"Отображать как\"."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Шаблон ссылки на архив по дате"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Шаблон ссылки на архив по дате."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Шаблон ссылки на архив по дате (некликабельная)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Шаблон ссылки на архив по дате (когда ссылка на архив по дате некликабельна)."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Шаблон ссылки на страницу с результатами поиска"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Шаблон ссылки на страницу с результатами поиска (используется только, когда страница с результатами поиска разделена постраничной навигацией)."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Шаблон ссылки на страницу с результатами поиска (некликабельная)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Шаблон ссылки на страницу с результатами поиска (когда страница с результатами поиска разделена постраничной навигацией и когда ссылка на страницу с результатами поиска некликабельна)."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "Страница 404 (не найдено)"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "Шаблон текста для 404 страницы"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "Шаблон текста в пути для 404 страницы."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Сохранить изменения"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Настройки"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "Ваши настройки устарели."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Обновить настройки сейчас."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Обновить сейчас."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Установка плагина некорректна."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Загрузить дефолтные настройки."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Сделать сейчас."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Настройки плагина испорчены."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Попытаться исправить настройки сейчас."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Исправить сейчас."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Настройки удачно сохранены."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Отменить сохранение настроек."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Отменить"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Некоторые настройки не были сохранены."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "Следующие настройки не были сохранены:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Пожалуйста, добавьте текст в ваше %sсообщение об ошибке%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Перейти на %s страницу поддержки для вашей версии плагина."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Настройки удачно импортированы из загруженного файла."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Отменить импорт настроек."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Импортируемые настройки испорчены."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Настройки удачно сброшены на дефолтные значения."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Отменить сброс настроек."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Последняя операция была удачно отменена."
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Отменить отмену последней операции."
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Настройки удачно обновлены."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Дефолтные настройки были удачно установлены."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Импорт настроек из XML-файла, экспорт настроек в XML-файл, или сброс настроек на дефолтные значения."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Файл настроек"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Выберите XML-файл настроек для загрузки и импорта."
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Страница %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "404. Страница не найдена"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Результаты поиска для запроса: &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Записи от: '%htitle%'"
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-05-26 21:30:48+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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Вложения"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к метке %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к рубрике %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к архиву %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Внимание: настройки индивидуального сайта перезапишут любую настройку, указанную на этой странице."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Внимание: настройки индивидуального сайта могут переопределить любую настройку на этой странице."
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Хлебные крошки для Гугла (RDFa)"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Перейти к %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT был обновлен с версии pre-5.0, пожалуйста посетите раздел \"Плагины\" и активируйте плагин Breadcrumb NavXT. Также, деактивируйте плагин Breadcrumb NavXT 5.0 Migration Compatibility Layer, чтобы данное сообщение больше не выводилось."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Внимание: ваши сетевые настройки перезапишут любую настройку, указанную на этой странице."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Внимание: ваши сетевые настройки могут переопределить любые настройки, указанные на этой странице."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Внимание: не найден аргумент BCN_SETTINGS_*, будут установлены значения по умолчанию BCN_SETTINGS_FAVOR_NETWORK."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Сетевые настройки"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ msgstr "Добавить \"хлебные крошки\", показывающие посетителям путь до их текущего положения на сайте. Подробнее об установке и настройке плагина вы можете узнать на сайте <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ msgstr "Иерархия, согласно которой будут выведены \"хлебные крошки\". Помните, что при выборе \"Post Parent\" может потребоваться дополнительный плагин, так это не иерархический тип записей."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Результаты поиска для запроса: &#39;<a title=\"Перейти на первую страницу с результатами поиска %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Основные настройки."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Длина заголовка"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Ограничить длину заголовка"
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Ссылка на главный сайт"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Настройки для всех типов записей (записи, страницы, записи произвольного типа)."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Записи и страницы"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Вывод иерархии"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Иерархия записи"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s вывод иерархии"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Форматы записей"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Максимальная длина:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Записи"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Под-страницы"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Путь будет строиться по выбранной иерархии."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s иерархия"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "Настройки таксономий (рубрики, метки и произвольные таксономии)."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Таксономии"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Форматы записей"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Шаблон ссылки на свой формат записей"
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Шаблон ссылки на свой формат записей (некликабельная)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Шаблон ссылки на свой формат записей (когда ссылка на свой формат записей некликабельна)."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Настройки архивов по автору, дате, поиску и 404 ошибки."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Архивы по автору"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Статьи от: <a title=\"Перейти на первую страницу с записями %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Ваши настройки для новой версии."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Текст, выводимый перед путем:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Перейти на сайт перевода Breadcrumb NavXT"
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ msgstr "Ваша версия PHP устарела, пожалуйста обновите ее. У вас версия %1$s, Breadcrumb NavXT требует %2$s"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "\"Хлебные крошки\" в вашем сайдбаре."
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Заголовок:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Выводить путь как:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Список"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Текст"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Путь в виде ссылок"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Обратная сортировка пути"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Не показывать виджет на главной"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Недостаточно прав для продолжения."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Различные подсказки по работе с плагином."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Ресурсы"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sРуководства и FAQ'и%s: Тут вы найдете несколько руководств, туториалов и FAQ'ов по использованию плагина."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Все записи с тегом 'Breadcrumb NavXT'."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sДокументация онлайн%s: Здесь вы найдете документацию с более подробной технической информацией."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Перейти на сайт с онлайн документацией по плагину Breadcrumb NavXT."
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ msgstr "%sСообщить об ошибке%s: Если вы нашли ошибку в работе плагина, то сообщите о ней автору. Не забудьте указать версию WordPress и ситуацию, при которой можно воспроизвести ошибку."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Сообщить об ошибке плагина Breadcrumb NavXT вашей версии."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "Внести свой вклад"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sПожертвования%s: Любите плагин Breadcrumb NavXT и хотите помочь его разработке? Купите автору пиво :)"
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Перейти к сайту PayPal, чтобы сделать пожертвование автору плагина Breadcrumb NavXT."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sПеревод%s: Ваш язык недоступен? Свяжитесь с John Havlik, если хотите перевести плагин на свой язык."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Основные"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ msgstr "Для использования плагина вы должны или использовать соответствующий виджет или поместить указанные примеры кода в нужный файл вашего шаблона."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Путь с разделителями"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Путь в формате list"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Быстрый старт"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Следующий CSS-код может быть использован для оформления стиля пути."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Стиль"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "Импорт/Экспорт/Сброс"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "Импорт"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Экспорт"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Сброс"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Настройки Breadcrumb NavXT"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Разделитель"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Устанавливается между ссылками."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Ссылка на главную"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Поместить ссылку на главную страницу блога в путь."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Шаблон ссылки на главную"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Шаблон ссылки для главной страницы блога."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Шаблон ссылки на главную (некликабельная)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Шаблон ссылки для главной страницы блога (когда ссылка на главную некликабельна)."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Ссылка на блог"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Поместить ссылку на блог в путь."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Шаблон ссылки на блог"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Шаблон ссылки на блог (используется только при статической главной странице)."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Шаблон ссылки на блог (некликабельная)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Шаблон ссылки на блог (используется только при статической главной странице и только, когда ссылка на блог некликабельна)."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Ссылка на главный сайт"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Поместить ссылку на главный сайт в путь (при включенном режиме мультисайта)."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Шаблон ссылки на главный сайт"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта)."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Шаблон ссылки на главный сайт (некликабельная)."
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта и только, когда ссылка на главный сайт некликабельна)."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Текущая позиция"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Показывать текущую позицию в виде ссылки"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Да"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Постраничная навигация"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Включить поддержку постраничной навигации."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "В текущей позиции будет указан номер страницы, если посетитель находится на странице, образованной постраничной навигацией."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Шаблон"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Шаблон для страниц с постраничной навигацией."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Шаблон ссылки на запись"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Шаблон ссылки на запись."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Шаблон ссылки на запись (некликабельная)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Шаблон ссылки на запись (когда ссылка на запись некликабельна)."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Показывать в пути все возможные варианты доступа к текущей позиции."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Рубрики"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Даты"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Метки"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Страницы"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Шаблон ссылки на страницу"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Шаблон ссылки на страницу."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Шаблон ссылки на страницу (некликабельная)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Шаблон ссылки на страницу (когда ссылка на страницу некликабельна)."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Шаблон ссылки на вложение"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Шаблон ссылки на вложение."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Шаблон ссылки на вложение (некликабельная)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Шаблон ссылки на вложение (когда ссылка на вложение некликабельна)."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s Шаблон"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "Шаблон для %s пути."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s Шаблон (некликабельная)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "Шаблон для %s пути (когда %1$s путь некликабелен)."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Главная страница"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Выбор &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s Архив"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Показывать путь для %s архивов типов записей."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Показывать путь для %s таксономий."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Шаблон ссылки на рубрику"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Шаблон ссылки на рубрику."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Шаблон ссылки на рубрику (некликабельная)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "Шаблон ссылки на рубрику (когда ссылка на рубрику некликабельна)."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Шаблон ссылки на метку"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Шаблон ссылки на метку."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Шаблон ссылки на метку (некликабельная)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Шаблон ссылки на метку (когда ссылка на метку некликабельна)."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Другое"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Шаблон ссылки на автора"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Шаблон ссылки на автора."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Шаблон ссылки на автора (некликабельная)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Шаблон ссылки на автора (когда ссылка на автора некликабельна)."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Формат имени автора"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ msgstr "display_name отображает имя автора так, как указано у него в профиле в опции \"Отображать как\"."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Шаблон ссылки на архив по дате"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Шаблон ссылки на архив по дате."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Шаблон ссылки на архив по дате (некликабельная)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Шаблон ссылки на архив по дате (когда ссылка на архив по дате некликабельна)."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Шаблон ссылки на страницу с результатами поиска"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "Шаблон ссылки на страницу с результатами поиска (используется только, когда страница с результатами поиска разделена постраничной навигацией)."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Шаблон ссылки на страницу с результатами поиска (некликабельная)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "Шаблон ссылки на страницу с результатами поиска (когда страница с результатами поиска разделена постраничной навигацией и когда ссылка на страницу с результатами поиска некликабельна)."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "Страница 404 (не найдено)"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "Шаблон текста для 404 страницы"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "Шаблон текста в пути для 404 страницы."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Сохранить изменения"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Настройки"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Ваши настройки устарели."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Обновить настройки сейчас."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Обновить сейчас."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Установка плагина некорректна."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Загрузить дефолтные настройки."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Сделать сейчас."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Настройки плагина испорчены."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Попытаться исправить настройки сейчас."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Исправить сейчас."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Настройки удачно сохранены."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Отменить сохранение настроек."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Отменить"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Некоторые настройки не были сохранены."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Следующие настройки не были сохранены:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Пожалуйста, добавьте текст в ваше %sсообщение об ошибке%s."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Перейти на %s страницу поддержки для вашей версии плагина."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Настройки удачно импортированы из загруженного файла."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Отменить импорт настроек."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Импортируемые настройки испорчены."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Настройки удачно сброшены на дефолтные значения."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Отменить сброс настроек."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Последняя операция была удачно отменена."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Отменить отмену последней операции."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Настройки удачно обновлены."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Дефолтные настройки были удачно установлены."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Импорт настроек из XML-файла, экспорт настроек в XML-файл, или сброс настроек на дефолтные значения."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Файл настроек"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Выберите XML-файл настроек для загрузки и импорта."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Страница %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404. Страница не найдена"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Результаты поиска для запроса: &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Записи от: '%htitle%'"
languages/breadcrumb-navxt-tr_TR.mo CHANGED
Binary file
languages/breadcrumb-navxt-tr_TR.po CHANGED
@@ -1,776 +1,816 @@
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: 2013-11-21 02:03:37+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_network_admin.php:377
14
- msgid "Breadcrumb NavXT Network Settings"
15
- msgstr "Breadcrumb NavXT Ağ Ayarları"
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 "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."
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 "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."
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=\"Git %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 "Arama sonuçları: &#39;<a title=\"Arama sonuçlarının ilk sayfasına git %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 "Değiştirilmesi muhtemel ayarların bir bölümü bu sekme altında yer almaktadır."
39
-
40
- #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
- msgid "Title Length"
42
- msgstr "Başlık Uzunluğu"
43
-
44
- #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
- msgid "Limit the length of the breadcrumb title."
46
- msgstr "Breadcrumb başlık uzunluğunu sınırla."
47
-
48
- #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
- msgid "Mainsite Breadcrumb"
50
- msgstr "Anasite Breadcrumb"
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 "Tüm yazı tipleri (Yazılar, Sayfalar ve Özel Yazı Türleri) için ayarlar bu sekme altında yer almaktadır."
55
-
56
- #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
- msgid "Post Types"
58
- msgstr "Yazı Tipleri"
59
-
60
- #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
- msgid "Post Hierarchy Display"
62
- msgstr "Yazı Hiyerarşi Görünümü"
63
-
64
- #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
- msgid "Post Hierarchy"
66
- msgstr "Yazı Hiyerarşisi"
67
-
68
- #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
- msgid "%s Hierarchy Display"
70
- msgstr "%s Hiyerarşisi Görünümü"
71
-
72
- #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
- msgid "Post Formats"
74
- msgstr "Yazı Biçimleri"
75
-
76
- #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
- msgid "Max Title Length: "
78
- msgstr "Maksimum Başlık Uzunluğu: "
79
-
80
- #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
- msgid "Posts"
82
- msgstr "Yazılar"
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 "Yazı Ebeveyni"
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 "Breadcrumb kuyruğunda gösterilecek hiyerarşi."
92
-
93
- #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
- msgid "%s Hierarchy"
95
- msgstr "%s Hiyerarşisi"
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 "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."
100
-
101
- #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
- msgid "Taxonomies"
103
- msgstr "Sınıflandırmalar"
104
-
105
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
- msgid "Post Format Template"
107
- msgstr "Yazı Biçim Şablonu"
108
-
109
- #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
- msgid "The template for post format breadcrumbs."
111
- msgstr "Yazı biçimi breadcrumbs için şablon."
112
-
113
- #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
- msgid "Post Format Template (Unlinked)"
115
- msgstr "Yazı Biçim Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan post_format breadcrumbs şablonu."
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 "Yazar ve tarih arşivleri, arama ve 404 sayfaları için ayarlar bu sekme altında yer almaktadır."
124
-
125
- #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
- msgid "Author Archives"
127
- msgstr "Yazar Arşivleri"
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=\" %title% etiket arşivlerine git.\" 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 "Yazar: <a title=\"Yazılarının ilk sayfasına git %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=\" %title% kategori arşivlerine git.\" 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=\" %title% arşivlere git.\" 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 "Ayarlarınız daha yeni bir sürümü için."
148
-
149
- #: class.bcn_widget.php:96
150
- msgid "Text to show before the trail:"
151
- msgstr "Kuyruktan önce gösterilecek metin"
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 "Breadcrumb NavXT çeviri projesine gidin."
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 "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"
165
-
166
- #: class.bcn_widget.php:33
167
- msgid "Adds a breadcrumb trail to your sidebar"
168
- msgstr "Kenar çubuğunuza bir breadcrumb kuyruğu ekler"
169
-
170
- #: class.bcn_widget.php:92
171
- msgid "Title:"
172
- msgstr "Başlık:"
173
-
174
- #: class.bcn_widget.php:100
175
- msgid "Output trail as:"
176
- msgstr "Kuyruk çıktısı olarak:"
177
-
178
- #: class.bcn_widget.php:102
179
- msgid "List"
180
- msgstr "Liste"
181
-
182
- #: class.bcn_widget.php:104
183
- msgid "Plain"
184
- msgstr "Düz"
185
-
186
- #: class.bcn_widget.php:109
187
- msgid "Link the breadcrumbs"
188
- msgstr "Breadcrumbs bağlantısı"
189
-
190
- #: class.bcn_widget.php:111
191
- msgid "Reverse the order of the trail"
192
- msgstr "Kuyruk sırasını tersine çevir"
193
-
194
- #: class.bcn_widget.php:113
195
- msgid "Hide the trail on the front page"
196
- msgstr "Ön sayfada kuyruğu gizle"
197
-
198
- #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
- msgid "Insufficient privileges to proceed."
200
- msgstr "Devam etmek için yetersiz yetki."
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 "Ayarlar için ipuçları seçeneklerin altında yer almaktadır."
205
-
206
- #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
- msgid "Resources"
208
- msgstr "Kaynaklar"
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 "%sEğitim ve İpuçları%s: Yazarın web sitesinde çeşitli kılavuzlar, eğitim ve ipuçlarını bulabilirsiniz."
213
-
214
- #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
- msgid "Go to the Breadcrumb NavXT tag archive."
216
- msgstr "Breadcrumb NavXT etiket arşivine gidin."
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 "%sÇevrimiçi Belgeler%s: Daha detaylı teknik bilgiler için belgelere göz atın."
221
-
222
- #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
- msgid "Go to the Breadcrumb NavXT online documentation"
224
- msgstr "Breadcrumb NavXT çevrimiçi belgelere gidin"
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 "%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."
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 "Sürümünüz için Breadcrumb NavXT destek yazısına gidin."
233
-
234
- #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
- msgid "Giving Back"
236
- msgstr "İade"
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 "%sBağış%s: Breadcrumb NavXT sevdiniz ve geliştirilmesine yardımcı mı olmak istiyor sunuz? Yazara bir bira satın almayı düşünün."
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 "Breadcrumb NavXT'ye bir bağış yapmak için PayPal'a gidin."
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 "%sTercüme et%s: Dilinizi mevcut değil mi? Çevirisi için John Havlik ile iletişime geçin."
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 "Genel"
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 "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."
259
-
260
- #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
- msgid "Breadcrumb trail with separators"
262
- msgstr "Ayırıcılar ile Breadcrumb kuyruğu"
263
-
264
- #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
- msgid "Breadcrumb trail in list form"
266
- msgstr "Liste biçiminde Breadcrumb kuyruğu"
267
-
268
- #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
- msgid "Quick Start"
270
- msgstr "Hızlı Başlangıç"
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 "Yukarıda Hızlı Başlat bölümündeki kodu kullanarak, alttaki CSS breadcumb kuyruğunu şekillendirmeye temel olarak kullanılabilirsiniz."
275
-
276
- #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
- msgid "Styling"
278
- msgstr "Şekillendirme"
279
-
280
- #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
- msgid "Import/Export/Reset"
282
- msgstr "İçe aktar/Dışa aktar/Sıfırla"
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 "İçe aktar"
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 "Dışa aktar"
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 "Sıfırla"
298
-
299
- #: class.bcn_admin.php:309
300
- msgid "Breadcrumb NavXT Settings"
301
- msgstr "Breadcrumb NavXT Ayarları"
302
-
303
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
- msgid "Breadcrumb Separator"
305
- msgstr "Breadcrumb Ayırıcı"
306
-
307
- #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
- msgid "Placed in between each breadcrumb."
309
- msgstr "Her breadcrumb arasına yerleştirilir."
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 "Anasayfa Breadcrumb"
315
-
316
- #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
- msgid "Place the home breadcrumb in the trail."
318
- msgstr "Breadcrumb kuyruğuna anasayfa yerleştirin."
319
-
320
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
- msgid "Home Template"
322
- msgstr "Anasayfa Şablonu"
323
-
324
- #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
- msgid "The template for the home breadcrumb."
326
- msgstr "Anasayfa breadcrumb için şablon."
327
-
328
- #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
- msgid "Home Template (Unlinked)"
330
- msgstr "Anasayfa Şablonu (Bağlantısız)"
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 "Breadcrumb için bağlantı olmadığında kullanılan breadcrumb anasayfa şablonu."
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 "Blog Breadcrumb"
340
-
341
- #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
- msgid "Place the blog breadcrumb in the trail."
343
- msgstr "Breadcrumb kuyruğuna blog yerleştirin."
344
-
345
- #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
- msgid "Blog Template"
347
- msgstr "Blog Şablonu"
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 "Sadece, statik ön sayfa ortamında kullanılan blog breadcrumb şablonu."
352
-
353
- #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
- msgid "Blog Template (Unlinked)"
355
- msgstr "Blog Şablonu (Bağlantısız)"
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 "Statik ön sayfa ortamında ve breadcrumb için bağlantı olmadığında kullanılan blog breadcrumb şablonu."
360
-
361
- #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
- msgid "Main Site Breadcrumb"
363
- msgstr "Ana Site Breadcrumb"
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 "Çoklu site kurulumlarında ana site anasayfa breadcrumb bağlantısını kuyruğa yerleştirir."
368
-
369
- #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
- msgid "Main Site Home Template"
371
- msgstr "Ana Site Anasayfa Şablonu"
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 "Çoklu site ortamında kullanılan breadcrumb ana site anasayfa şablonu."
376
-
377
- #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
- msgid "Main Site Home Template (Unlinked)"
379
- msgstr "Ana Site Anasayfa Şablonu (Bağlantısız)"
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 "Sadece, çoklu site ortamlarında ve breadcrumb için bağlantı olmadığında kullanılan ana site anasayfa breadcrumb şablonu."
384
-
385
- #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
- msgid "Current Item"
387
- msgstr "Mevcut Öğe"
388
-
389
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
- msgid "Link Current Item"
391
- msgstr "Mevcut Öğeye Bağlantı"
392
-
393
- #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
- msgid "Yes"
395
- msgstr "Evet"
396
-
397
- #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
- msgid "Paged Breadcrumb"
399
- msgstr "Sayfalanmış Breadcrumb"
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 "Breadcrumb kuyruğuna sayfalı breadcrumb ekleyin."
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 "Kullanıcının ilk önce sayfalanmış yazı/sayfa yerine bir sayfada olduğunu belirtir."
408
-
409
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
- msgid "Paged Template"
411
- msgstr "Sayfalanmış Şablon"
412
-
413
- #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
- msgid "The template for paged breadcrumbs."
415
- msgstr "Sayfalanmış breadcrumbs için şablon."
416
-
417
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
- msgid "Post Template"
419
- msgstr "Yazı Şablonu"
420
-
421
- #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
- msgid "The template for post breadcrumbs."
423
- msgstr "Yazı breadcrumbs için şablon."
424
-
425
- #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
- msgid "Post Template (Unlinked)"
427
- msgstr "Yazı Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazı breadcrumbs şablonu."
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 "Breadcrumb kuyruğunda yazı için rehber sınıflandırması göster."
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 "Kategoriler"
441
-
442
- #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
- msgid "Dates"
444
- msgstr "Tarihler"
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 "Etiketler"
450
-
451
- #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
- msgid "Pages"
453
- msgstr "Sayfalar"
454
-
455
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
- msgid "Page Template"
457
- msgstr "Sayfa Şablonu"
458
-
459
- #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
- msgid "The template for page breadcrumbs."
461
- msgstr "Sayfa breadcrumbs için şablon."
462
-
463
- #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
- msgid "Page Template (Unlinked)"
465
- msgstr "Sayfa Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan sayfa breadcrumbs şablonu."
470
-
471
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
- msgid "Attachment Template"
473
- msgstr "Ek Şablonu"
474
-
475
- #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
- msgid "The template for attachment breadcrumbs."
477
- msgstr "Ek breadcrumbs için şablon."
478
-
479
- #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
- msgid "Attachment Template (Unlinked)"
481
- msgstr "Ek Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan ek breadcrumbs şablonu."
486
-
487
- #: breadcrumb-navxt.php:247
488
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
- msgstr "<a title=\"Git %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 "%s Şablonu"
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 "%s breadcrumbs için şablon."
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 "%s Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan %s breadcrumbs şablonu."
514
-
515
- #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
- msgid "%s Root Page"
517
- msgstr "%s Kök Sayfası"
518
-
519
- #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
- msgid "&mdash; Select &mdash;"
521
- msgstr "&mdash; Seç &mdash;"
522
-
523
- #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
- msgid "%s Archive Display"
525
- msgstr "%s Arşiv Görünümü"
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 "Breadcrumb kuyruğunda %s yazı tipi arşivleri için breadcrumb göster."
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 "Breadcrumb kuyruğunda %s için rehber sınıflandırması göster."
534
-
535
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
- msgid "Category Template"
537
- msgstr "Kategori Şablonu"
538
-
539
- #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
- msgid "The template for category breadcrumbs."
541
- msgstr "Kategori breadcrumbs için şablon."
542
-
543
- #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
- msgid "Category Template (Unlinked)"
545
- msgstr "Kategori Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan kategori breadcrumbs şablonu."
550
-
551
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
- msgid "Tag Template"
553
- msgstr "Etiket Şablonu"
554
-
555
- #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
- msgid "The template for tag breadcrumbs."
557
- msgstr "Etiket breadcrumbs için şablon."
558
-
559
- #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
- msgid "Tag Template (Unlinked)"
561
- msgstr "Etiket Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan etiket breadcrumbs şablonu."
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 "Çeşitli"
571
-
572
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
- msgid "Author Template"
574
- msgstr "Yazar Şablonu"
575
-
576
- #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
- msgid "The template for author breadcrumbs."
578
- msgstr "Yazar breadcrumbs için şablon."
579
-
580
- #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
- msgid "Author Template (Unlinked)"
582
- msgstr "Yazar Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazar breadcrumbs şablonu."
587
-
588
- #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
- msgid "Author Display Format"
590
- msgstr "Yazar Gösterim Formatı"
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 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."
595
-
596
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
- msgid "Date Template"
598
- msgstr "Tarih Şablonu"
599
-
600
- #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
- msgid "The template for date breadcrumbs."
602
- msgstr "Tarih breadcrumbs için şablon."
603
-
604
- #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
- msgid "Date Template (Unlinked)"
606
- msgstr "Tarih Şablonu (Bağlantısız)"
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 "Sadece, breadcrumb için bağlantı olmadığında kullanılan tarih breadcrumbs şablonu."
611
-
612
- #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
- msgid "Search Template"
614
- msgstr "Arama Şablonu"
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 "Sadece, arama sonuçları birkaç sayfaya yayıldığında kullanılan arama breadcrumbs için bağlantı şablonu."
619
-
620
- #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
- msgid "Search Template (Unlinked)"
622
- msgstr "Arama Şablonu (Bağlantısız)"
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 "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."
627
-
628
- #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
- msgid "404 Title"
630
- msgstr "404 Başlığı"
631
-
632
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
- msgid "404 Template"
634
- msgstr "404 Şablonu"
635
-
636
- #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
- msgid "The template for 404 breadcrumbs."
638
- msgstr "404 breadcrumbs için şablon."
639
-
640
- #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
- msgid "Save Changes"
642
- msgstr "Değişiklikleri Kaydet"
643
-
644
- #: includes/class.mtekk_adminkit.php:217
645
- msgid "Settings"
646
- msgstr "Ayarlar"
647
-
648
- #: includes/class.mtekk_adminkit.php:287
649
- msgid "Your settings are out of date."
650
- msgstr "Ayarlarınız güncel değil."
651
-
652
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
- msgid "Migrate the settings now."
654
- msgstr "Şimdi ayarları taşıyın."
655
-
656
- #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
- msgid "Migrate now."
658
- msgstr "Şimdi taşıyın."
659
-
660
- #: includes/class.mtekk_adminkit.php:304
661
- msgid "Your plugin install is incomplete."
662
- msgstr "Eklenti kurulumunuz tamamlanmadı."
663
-
664
- #: includes/class.mtekk_adminkit.php:304
665
- msgid "Load default settings now."
666
- msgstr "Şimdi varsayılan ayarları yükle."
667
-
668
- #: includes/class.mtekk_adminkit.php:304
669
- msgid "Complete now."
670
- msgstr "Şimdi tamamla."
671
-
672
- #: includes/class.mtekk_adminkit.php:312
673
- msgid "Your plugin settings are invalid."
674
- msgstr "Eklenti ayarlarınız geçersiz."
675
-
676
- #: includes/class.mtekk_adminkit.php:312
677
- msgid "Attempt to fix settings now."
678
- msgstr "Şimdi ayarları düzeltmeyi deneyin."
679
-
680
- #: includes/class.mtekk_adminkit.php:312
681
- msgid "Fix now."
682
- msgstr "Şimdi düzelt."
683
-
684
- #: includes/class.mtekk_adminkit.php:490
685
- msgid "Settings successfully saved."
686
- msgstr "Ayarlar başarıyla kaydedildi."
687
-
688
- #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
- msgid "Undo the options save."
690
- msgstr "Seçenekleri kaydetmeyi geri al."
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 "Geri al"
697
-
698
- #: includes/class.mtekk_adminkit.php:495
699
- msgid "Some settings were not saved."
700
- msgstr "Bazı ayarlar kaydedilmedi."
701
-
702
- #: includes/class.mtekk_adminkit.php:496
703
- msgid "The following settings were not saved:"
704
- msgstr "Aşağıdaki ayarları kaydedilmedi:"
705
-
706
- #: includes/class.mtekk_adminkit.php:501
707
- msgid "Please include this message in your %sbug report%s."
708
- msgstr "Lütfen bu mesajı %sbug report%s içine dahil edin."
709
-
710
- #: includes/class.mtekk_adminkit.php:501
711
- msgid "Go to the %s support post for your version."
712
- msgstr "Sürümünüz için %s destek yazısına gidin."
713
-
714
- #: includes/class.mtekk_adminkit.php:600
715
- msgid "Settings successfully imported from the uploaded file."
716
- msgstr "Ayarlar yüklenen dosyadan başarıyla içe aktarıldı."
717
-
718
- #: includes/class.mtekk_adminkit.php:600
719
- msgid "Undo the options import."
720
- msgstr "Seçenekleri içe aktarmayı geri al."
721
-
722
- #: includes/class.mtekk_adminkit.php:605
723
- msgid "Importing settings from file failed."
724
- msgstr "Ayarları dosyadan içe aktarma başarısız oldu."
725
-
726
- #: includes/class.mtekk_adminkit.php:624
727
- msgid "Settings successfully reset to the default values."
728
- msgstr "Ayarlar varsayılan değerlere başarıyla sıfırlandı."
729
-
730
- #: includes/class.mtekk_adminkit.php:624
731
- msgid "Undo the options reset."
732
- msgstr "Seçenekleri sıfırlamayı geri al."
733
-
734
- #: includes/class.mtekk_adminkit.php:641
735
- msgid "Settings successfully undid the last operation."
736
- msgstr "Ayarlar son işleme başarıyla getirildi."
737
-
738
- #: includes/class.mtekk_adminkit.php:641
739
- msgid "Undo the last undo operation."
740
- msgstr "Son geri alma işlemini geri al."
741
-
742
- #: includes/class.mtekk_adminkit.php:676
743
- msgid "Settings successfully migrated."
744
- msgstr "Ayarlar başarıyla taşındı."
745
-
746
- #: includes/class.mtekk_adminkit.php:683
747
- msgid "Default settings successfully installed."
748
- msgstr "Varsayılan ayarlar başarıyla yüklendi."
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 "Ayarları bir XML dosyasından içe aktar, mevcut ayarları bir XML dosyasına aktar veya varsayılan ayarlara sıfırla."
753
-
754
- #: includes/class.mtekk_adminkit.php:787
755
- msgid "Settings File"
756
- msgstr "Ayarlar Dosyası"
757
-
758
- #: includes/class.mtekk_adminkit.php:790
759
- msgid "Select a XML settings file to upload and import settings from."
760
- msgstr "Ayarları yüklemek ve içe aktarmak için bir XML ayarlar dosyası seçin."
761
-
762
- #: class.bcn_breadcrumb_trail.php:82
763
- msgid "Page %htitle%"
764
- msgstr "Sayfa %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 "Arama sonuçları: &#39;%htitle%&#39;"
773
-
774
- #: class.bcn_breadcrumb_trail.php:126
775
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
776
  msgstr "Yazar: %htitle%"
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-05-25 00:11:17+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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "Ekler"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Buraya git: %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ 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>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ 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>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"%title% arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "Uyarı: Kişisel site ayarları, bu sayfada uygulanmış olan ayarları geçersiz kılar."
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "Uyarı: Kişisel site ayarları, bu sayfada uygulanmış olan ayarları geçersiz kılabilir. "
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) Breadcrumbs"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Buraya git: %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "Breadcrumb NavXT az önce pre-5.0 sürümünden güncellendi. Lütfen eklentiler sayfanıza gidin ve \"Breadcrumb NavXT\" etkinleştirin. Ayrıca, bu mesajı yok etmek için \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" eklentisini devre dışı bırakın."
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "Uyarı: ayarlarınız, bu sayfada uygulanmış olan ayarları geçersiz kılar."
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "Uyarı: Ağ ayarlarınız, bu sayfada uygulanmış olan ayarları geçersiz kılabilir."
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "Uyarı: Herhangi bir BCN_SETTINGS_* define ifadesi bulunamadı. Varsayılan olarak BCN_SETTINGS_FAVOR_NETWORK ayarlanıyor."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "Breadcrumb NavXT Ağ Ayarları"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "Breadcrumb NavXT"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ 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."
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ 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."
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "Arama sonuçları: &#39;<a title=\"Arama sonuçlarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "Değiştirilmesi muhtemel ayarların bir bölümü bu sekme altında yer almaktadır."
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "Başlık Uzunluğu"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "Breadcrumb başlık uzunluğunu sınırla."
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "Anasite Breadcrumb"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "Tüm yazı tipleri (Yazılar, Sayfalar ve Özel Yazı Türleri) için ayarlar bu sekme altında yer almaktadır."
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "Yazı Tipleri"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "Yazı Hiyerarşi Görünümü"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "Yazı Hiyerarşisi"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s Hiyerarşisi Görünümü"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "Yazı Biçimleri"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "Maksimum Başlık Uzunluğu: "
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "Yazılar"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "Yazı Ebeveyni"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi."
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s Hiyerarşisi"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ 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."
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "Sınıflandırmalar"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "Yazı Biçim Şablonu"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "Yazı biçimi breadcrumbs için şablon."
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "Yazı Biçim Şablonu (Bağlantısız)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan post_format breadcrumbs şablonu."
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "Yazar ve tarih arşivleri, arama ve 404 sayfaları için ayarlar bu sekme altında yer almaktadır."
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "Yazar Arşivleri"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "Yazar: <a title=\"Yazılarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "Ayarlarınız daha yeni bir sürümü için."
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "Kuyruktan önce gösterilecek metin"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "Breadcrumb NavXT çeviri projesine gidin."
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ 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"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "Kenar çubuğunuza bir breadcrumb kuyruğu ekler"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "Başlık:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "Kuyruk çıktısı olarak:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "Liste"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "Düz"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "Breadcrumbs bağlantısı"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "Kuyruk sırasını tersine çevir"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "Ön sayfada kuyruğu gizle"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "Devam etmek için yetersiz yetki."
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "Ayarlar için ipuçları seçeneklerin altında yer almaktadır."
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "Kaynaklar"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%sEğitim ve İpuçları%s: Yazarın web sitesinde çeşitli kılavuzlar, eğitim ve ipuçlarını bulabilirsiniz."
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "Breadcrumb NavXT etiket arşivine gidin."
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%sÇevrimiçi Belgeler%s: Daha detaylı teknik bilgiler için belgelere göz atın."
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "Breadcrumb NavXT çevrimiçi belgelere gidin"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ 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."
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "Sürümünüz için Breadcrumb NavXT destek yazısına gidin."
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "İade"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sBağış%s: Breadcrumb NavXT sevdiniz ve geliştirilmesine yardımcı mı olmak istiyor sunuz? Yazara bir bira satın almayı düşünün."
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "Breadcrumb NavXT'ye bir bağış yapmak için PayPal'a gidin."
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTercüme et%s: Dilinizi mevcut değil mi? Çevirisi için John Havlik ile iletişime geçin."
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "Genel"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ 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."
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "Ayırıcılar ile Breadcrumb kuyruğu"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "Liste biçiminde Breadcrumb kuyruğu"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "Hızlı Başlangıç"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "Yukarıda Hızlı Başlat bölümündeki kodu kullanarak, alttaki CSS breadcumb kuyruğunu şekillendirmeye temel olarak kullanılabilirsiniz."
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "Şekillendirme"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "İçe aktar/Dışa aktar/Sıfırla"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "İçe aktar"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "Dışa aktar"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "Sıfırla"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "Breadcrumb NavXT Ayarları"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "Breadcrumb Ayırıcı"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "Her breadcrumb arasına yerleştirilir."
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "Anasayfa Breadcrumb"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "Breadcrumb kuyruğuna anasayfa yerleştirin."
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "Anasayfa Şablonu"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "Anasayfa breadcrumb için şablon."
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "Anasayfa Şablonu (Bağlantısız)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "Breadcrumb için bağlantı olmadığında kullanılan breadcrumb anasayfa şablonu."
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "Blog Breadcrumb"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "Breadcrumb kuyruğuna blog yerleştirin."
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "Blog Şablonu"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "Sadece, statik ön sayfa ortamında kullanılan blog breadcrumb şablonu."
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "Blog Şablonu (Bağlantısız)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "Statik ön sayfa ortamında ve breadcrumb için bağlantı olmadığında kullanılan blog breadcrumb şablonu."
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "Ana Site Breadcrumb"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "Çoklu site kurulumlarında ana site anasayfa breadcrumb bağlantısını kuyruğa yerleştirir."
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "Ana Site Anasayfa Şablonu"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "Çoklu site ortamında kullanılan breadcrumb ana site anasayfa şablonu."
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "Ana Site Anasayfa Şablonu (Bağlantısız)"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "Sadece, çoklu site ortamlarında ve breadcrumb için bağlantı olmadığında kullanılan ana site anasayfa breadcrumb şablonu."
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "Mevcut Öğe"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "Mevcut Öğeye Bağlantı"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "Evet"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "Sayfalanmış Breadcrumb"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "Breadcrumb kuyruğuna sayfalı breadcrumb ekleyin."
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "Kullanıcının ilk önce sayfalanmış yazı/sayfa yerine bir sayfada olduğunu belirtir."
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "Sayfalanmış Şablon"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "Sayfalanmış breadcrumbs için şablon."
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "Yazı Şablonu"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "Yazı breadcrumbs için şablon."
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "Yazı Şablonu (Bağlantısız)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazı breadcrumbs şablonu."
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "Breadcrumb kuyruğunda yazı için rehber sınıflandırması göster."
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "Kategoriler"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "Tarihler"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "Etiketler"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "Sayfalar"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "Sayfa Şablonu"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "Sayfa breadcrumbs için şablon."
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "Sayfa Şablonu (Bağlantısız)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan sayfa breadcrumbs şablonu."
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "Ek Şablonu"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "Ek breadcrumbs için şablon."
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "Ek Şablonu (Bağlantısız)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan ek breadcrumbs şablonu."
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s Şablonu"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "%s breadcrumbs için şablon."
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s Şablonu (Bağlantısız)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan %s breadcrumbs şablonu."
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s Kök Sayfası"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash; Seç &mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s Arşiv Görünümü"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "Breadcrumb kuyruğunda %s yazı tipi arşivleri için breadcrumb göster."
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "Breadcrumb kuyruğunda %s için rehber sınıflandırması göster."
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "Kategori Şablonu"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "Kategori breadcrumbs için şablon."
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "Kategori Şablonu (Bağlantısız)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan kategori breadcrumbs şablonu."
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "Etiket Şablonu"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "Etiket breadcrumbs için şablon."
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "Etiket Şablonu (Bağlantısız)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan etiket breadcrumbs şablonu."
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "Çeşitli"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "Yazar Şablonu"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "Yazar breadcrumbs için şablon."
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "Yazar Şablonu (Bağlantısız)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazar breadcrumbs şablonu."
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "Yazar Gösterim Formatı"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ 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."
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "Tarih Şablonu"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "Tarih breadcrumbs için şablon."
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "Tarih Şablonu (Bağlantısız)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan tarih breadcrumbs şablonu."
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "Arama Şablonu"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında kullanılan arama breadcrumbs için bağlantı şablonu."
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "Arama Şablonu (Bağlantısız)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ 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."
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404 Başlığı"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "404 Şablonu"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "404 breadcrumbs için şablon."
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "Değişiklikleri Kaydet"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "Ayarlar"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "Ayarlarınız güncel değil."
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "Şimdi ayarları taşıyın."
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "Şimdi taşıyın."
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "Eklenti kurulumunuz tamamlanmadı."
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "Şimdi varsayılan ayarları yükle."
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "Şimdi tamamla."
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "Eklenti ayarlarınız geçersiz."
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "Şimdi ayarları düzeltmeyi deneyin."
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "Şimdi düzelt."
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "Ayarlar başarıyla kaydedildi."
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "Seçenekleri kaydetmeyi geri al."
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "Geri al"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "Bazı ayarlar kaydedilmedi."
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "Aşağıdaki ayarları kaydedilmedi:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "Lütfen bu mesajı %sbug report%s içine dahil edin."
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "Sürümünüz için %s destek yazısına gidin."
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "Ayarlar yüklenen dosyadan başarıyla içe aktarıldı."
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "Seçenekleri içe aktarmayı geri al."
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "Ayarları dosyadan içe aktarma başarısız oldu."
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "Ayarlar varsayılan değerlere başarıyla sıfırlandı."
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "Seçenekleri sıfırlamayı geri al."
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "Ayarlar son işleme başarıyla getirildi."
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "Son geri alma işlemini geri al."
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "Ayarlar başarıyla taşındı."
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "Varsayılan ayarlar başarıyla yüklendi."
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "Ayarları bir XML dosyasından içe aktar, mevcut ayarları bir XML dosyasına aktar veya varsayılan ayarlara sıfırla."
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "Ayarlar Dosyası"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "Ayarları yüklemek ve içe aktarmak için bir XML ayarlar dosyası seçin."
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "Sayfa %htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "Arama sonuçları: &#39;%htitle%&#39;"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
  msgstr "Yazar: %htitle%"
languages/breadcrumb-navxt-zh_CN.mo ADDED
Binary file
languages/breadcrumb-navxt-zh_CN.po ADDED
@@ -0,0 +1,816 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-05-23 01:21:23+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:492 class.bcn_network_admin.php:559
14
+ msgid "Attachments"
15
+ msgstr "附件"
16
+
17
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
18
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
19
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
20
+ #: class.bcn_breadcrumb_trail.php:99
21
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
22
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
23
+
24
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
25
+ 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>"
26
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title% 标签存档.\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
27
+
28
+ #: class.bcn_breadcrumb_trail.php:131
29
+ 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>"
30
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title% 分类存档\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:135
33
+ 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>"
34
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title% 存档\" href=\"%link%\" class=\"%type%\">%htitle%</a></span>"
35
+
36
+ #: class.bcn_network_admin.php:401
37
+ msgid "Warning: Individual site settings will override any settings set in this page."
38
+ msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
39
+
40
+ #: class.bcn_network_admin.php:409 class.bcn_network_admin.php:413
41
+ msgid "Warning: Individual site settings may override any settings set in this page."
42
+ msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
43
+
44
+ #: class.bcn_widget.php:105
45
+ msgid "Google (RDFa) Breadcrumbs"
46
+ msgstr "Google (RDFa) 面包屑"
47
+
48
+ #: breadcrumb-navxt.php:256
49
+ msgid "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"Go to %title%.\" href=\"%link%\">%htitle%</a></span>"
50
+ msgstr "<span typeof=\"v:Breadcrumb\"><a rel=\"v:url\" property=\"v:title\" title=\"转到 %title%.\" href=\"%link%\">%htitle%</a></span>"
51
+
52
+ #: breadcrumb-navxt.php:257 class.bcn_breadcrumb.php:63
53
+ msgid "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
54
+ msgstr "<span typeof=\"v:Breadcrumb\"><span property=\"v:title\">%htitle%</span></span>"
55
+
56
+ #: breadcrumb_navxt_admin.php:35
57
+ msgid "Breadcrumb NavXT was just updated from a pre-5.0 version, please go to your plugins page and activate \"Breadcrumb NavXT\". Also, deactivate the \"Breadcrumb NavXT 5.0 Migration Compatibility Layer\" plugin to make this message disappear."
58
+ msgstr "面包屑插件刚刚更新到5.0,请转到插件管理页面,激活“Breadcrumb NavXT”插件。此外,急用“Breadcrumb NavXT 5.0 Migration Compatibility Laye”插件,这个消息将消失。"
59
+
60
+ #: class.bcn_admin.php:337 class.bcn_admin.php:351
61
+ msgid "Warning: Your network settings will override any settings set in this page."
62
+ msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
63
+
64
+ #: class.bcn_admin.php:341 class.bcn_admin.php:345
65
+ msgid "Warning: Your network settings may override any settings set in this page."
66
+ msgstr "警告:个别站点的设置将覆盖这个页面中的一些设置。"
67
+
68
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
69
+ msgid "Warning: No BCN_SETTINGS_* define statement found, defaulting to BCN_SETTINGS_FAVOR_NETWORK."
70
+ msgstr "警告:没有找到 BCN_SETTINGS_* 声明, 使用BCN_SETTINGS_FAVOR_NETWORK的默认值."
71
+
72
+ #: class.bcn_network_admin.php:434
73
+ msgid "Breadcrumb NavXT Network Settings"
74
+ msgstr "面包屑网络设置"
75
+
76
+ msgid "Breadcrumb NavXT"
77
+ msgstr "面包屑导航"
78
+
79
+ msgid "http://mtekk.us/code/breadcrumb-navxt/"
80
+ msgstr "http://mtekk.us/code/breadcrumb-navxt/"
81
+
82
+ 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>."
83
+ msgstr "添加一个面包屑导航以显示用户当前访问路径,关于插件的详情信息,请访问<a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>。"
84
+
85
+ msgid "John Havlik"
86
+ msgstr "John Havlik"
87
+
88
+ msgid "http://mtekk.us/"
89
+ msgstr "http://mtekk.us/"
90
+
91
+ #: class.bcn_admin.php:481 class.bcn_admin.php:563
92
+ #: class.bcn_network_admin.php:548 class.bcn_network_admin.php:630
93
+ 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."
94
+ msgstr "面包屑导航显示的层次。需要注意的是\"父级文章\" 选项,可能需要额外的插件才能像预期的那样显示,因为文章是一个没有分层的文章类型。"
95
+
96
+ #: class.bcn_breadcrumb_trail.php:109
97
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
98
+ msgstr "搜索&#39;%htitle%&#39;的结果<a title=\"转到%title%结果的首页\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
99
+
100
+ #: class.bcn_admin.php:379 class.bcn_network_admin.php:446
101
+ msgid "A collection of settings most likely to be modified are located under this tab."
102
+ msgstr "最有可能设置的选项都集合这个选项卡下面。"
103
+
104
+ #: class.bcn_admin.php:387 class.bcn_network_admin.php:454
105
+ msgid "Title Length"
106
+ msgstr "标题长度"
107
+
108
+ #: class.bcn_admin.php:392 class.bcn_network_admin.php:459
109
+ msgid "Limit the length of the breadcrumb title."
110
+ msgstr "限制面包屑标题的长度"
111
+
112
+ #: class.bcn_admin.php:435 class.bcn_network_admin.php:502
113
+ msgid "Mainsite Breadcrumb"
114
+ msgstr "主站面包屑"
115
+
116
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
117
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
118
+ msgstr "所有文章类型的设置(文章,页面和自定义文章类型)都在这里设置。"
119
+
120
+ #: class.bcn_admin.php:447 class.bcn_network_admin.php:514
121
+ msgid "Post Types"
122
+ msgstr "文章类型"
123
+
124
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
125
+ msgid "Post Hierarchy Display"
126
+ msgstr "显示文章层次"
127
+
128
+ #: class.bcn_admin.php:457 class.bcn_network_admin.php:524
129
+ msgid "Post Hierarchy"
130
+ msgstr "文章层次"
131
+
132
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
133
+ msgid "%s Hierarchy Display"
134
+ msgstr "%s分层显示"
135
+
136
+ #: class.bcn_admin.php:592 class.bcn_network_admin.php:659
137
+ msgid "Post Formats"
138
+ msgstr "文章格式"
139
+
140
+ #: class.bcn_admin.php:397 class.bcn_network_admin.php:464
141
+ msgid "Max Title Length: "
142
+ msgstr "最大标题长度:"
143
+
144
+ #: class.bcn_admin.php:448 class.bcn_network_admin.php:515
145
+ msgid "Posts"
146
+ msgstr "文章"
147
+
148
+ #: class.bcn_admin.php:465 class.bcn_admin.php:539
149
+ #: class.bcn_network_admin.php:532 class.bcn_network_admin.php:606
150
+ msgid "Post Parent"
151
+ msgstr "文章所属分类"
152
+
153
+ #: class.bcn_admin.php:559 class.bcn_network_admin.php:626
154
+ msgid "The hierarchy which the breadcrumb trail will show."
155
+ msgstr "面包屑显示的层次"
156
+
157
+ #: class.bcn_admin.php:534 class.bcn_network_admin.php:601
158
+ msgid "%s Hierarchy"
159
+ msgstr "%s分级"
160
+
161
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
162
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
163
+ msgstr "所有分类法(包括分类,标签,和自定义分类法)的设置都在这个选项卡下面。"
164
+
165
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:644
166
+ msgid "Taxonomies"
167
+ msgstr "分类法"
168
+
169
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
170
+ msgid "Post Format Template"
171
+ msgstr "文章格式模版"
172
+
173
+ #: class.bcn_admin.php:595 class.bcn_network_admin.php:662
174
+ msgid "The template for post format breadcrumbs."
175
+ msgstr "文章格式面包屑模版"
176
+
177
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
178
+ msgid "Post Format Template (Unlinked)"
179
+ msgstr "文章格式模版(没有链接)"
180
+
181
+ #: class.bcn_admin.php:596 class.bcn_network_admin.php:663
182
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
183
+ msgstr "文章格式面包屑模版,只在面包屑没有链接时使用。"
184
+
185
+ #: class.bcn_admin.php:626 class.bcn_network_admin.php:693
186
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
187
+ msgstr "作者和日期存档,搜索结果,404页面的设置在这个选项卡下面。"
188
+
189
+ #: class.bcn_admin.php:627 class.bcn_network_admin.php:694
190
+ msgid "Author Archives"
191
+ msgstr "作者存档"
192
+
193
+ #: class.bcn_breadcrumb_trail.php:124
194
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
195
+ msgstr "存档类型:<a title=\"转到%title%文章存档首页\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
196
+
197
+ #: includes/class.mtekk_adminkit.php:296
198
+ msgid "Your settings are for a newer version."
199
+ msgstr "你的设置是新版本的"
200
+
201
+ #: class.bcn_widget.php:98
202
+ msgid "Text to show before the trail:"
203
+ msgstr "导航前面的文本:"
204
+
205
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
206
+ msgid "Go to the Breadcrumb NavXT translation project."
207
+ msgstr "转到面包屑NavXT翻译项目。"
208
+
209
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
210
+ #: class.bcn_network_admin.php:25
211
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
212
+ msgstr "你的PHP版本太旧了,请升级,您的版本为:%1$s,面包屑导航需要的版本为%2$s"
213
+
214
+ #: class.bcn_widget.php:34
215
+ msgid "Adds a breadcrumb trail to your sidebar"
216
+ msgstr "添加一个面包屑导航到侧边栏"
217
+
218
+ #: class.bcn_widget.php:94
219
+ msgid "Title:"
220
+ msgstr "标题:"
221
+
222
+ #: class.bcn_widget.php:102
223
+ msgid "Output trail as:"
224
+ msgstr "像这样输出面包屑:"
225
+
226
+ #: class.bcn_widget.php:104
227
+ msgid "List"
228
+ msgstr "列表"
229
+
230
+ #: class.bcn_widget.php:106
231
+ msgid "Plain"
232
+ msgstr "纯文本"
233
+
234
+ #: class.bcn_widget.php:111
235
+ msgid "Link the breadcrumbs"
236
+ msgstr "链接到面包屑"
237
+
238
+ #: class.bcn_widget.php:113
239
+ msgid "Reverse the order of the trail"
240
+ msgstr "反转面包屑导航的顺序"
241
+
242
+ #: class.bcn_widget.php:115
243
+ msgid "Hide the trail on the front page"
244
+ msgstr "在首页隐藏面包屑"
245
+
246
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
247
+ msgid "Insufficient privileges to proceed."
248
+ msgstr "足够的权限来执行"
249
+
250
+ #: class.bcn_admin.php:243 class.bcn_network_admin.php:311
251
+ msgid "Tips for the settings are located below select options."
252
+ msgstr "设置小提示在选项下面"
253
+
254
+ #: class.bcn_admin.php:244 class.bcn_network_admin.php:312
255
+ msgid "Resources"
256
+ msgstr "资源"
257
+
258
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
259
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
260
+ msgstr "%s向导和指南%s:你可以在作者网站上找到几个指南,向导,和使用方法。"
261
+
262
+ #: class.bcn_admin.php:245 class.bcn_network_admin.php:313
263
+ msgid "Go to the Breadcrumb NavXT tag archive."
264
+ msgstr "转到面包屑导航标签存档"
265
+
266
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
267
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
268
+ msgstr "%s在线手册%s:查看文章以获取更深入的技术信息。"
269
+
270
+ #: class.bcn_admin.php:246 class.bcn_network_admin.php:314
271
+ msgid "Go to the Breadcrumb NavXT online documentation"
272
+ msgstr "转到Breadcrumb NavXT在线文档"
273
+
274
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
275
+ 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."
276
+ msgstr "%s报告bugs%s:如果你认为你发现了一个bug,请在报告bug时包括你使用的WordPress版本和如何重现的bug的详细描述。"
277
+
278
+ #: class.bcn_admin.php:247 class.bcn_network_admin.php:315
279
+ msgid "Go to the Breadcrumb NavXT support post for your version."
280
+ msgstr "转到你所用版本的Breadcrumb NavXT支持文章。"
281
+
282
+ #: class.bcn_admin.php:248 class.bcn_network_admin.php:316
283
+ msgid "Giving Back"
284
+ msgstr "回馈"
285
+
286
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
287
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
288
+ msgstr "%sDonate%s:喜欢Breadcrumb NavXT,并且想帮助开发?考虑请作者喝杯啤酒吧。"
289
+
290
+ #: class.bcn_admin.php:249 class.bcn_network_admin.php:317
291
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
292
+ msgstr "转到PayPal捐助Breadcrumb NavXT。"
293
+
294
+ #: class.bcn_admin.php:250 class.bcn_network_admin.php:318
295
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
296
+ msgstr "%sTranslate%s:没有你使用的语言?联系John Havlik获取翻译。"
297
+
298
+ #: class.bcn_admin.php:255 class.bcn_admin.php:379 class.bcn_admin.php:380
299
+ #: class.bcn_network_admin.php:323 class.bcn_network_admin.php:446
300
+ #: class.bcn_network_admin.php:447
301
+ msgid "General"
302
+ msgstr "通用"
303
+
304
+ #: class.bcn_admin.php:258 class.bcn_network_admin.php:326
305
+ 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."
306
+ msgstr "要使此页面上的设置生效,你必须包含下面的代码到你的主题中,或使用Breadcrumb NavXT小工具。"
307
+
308
+ #: class.bcn_admin.php:259 class.bcn_network_admin.php:327
309
+ msgid "Breadcrumb trail with separators"
310
+ msgstr "带分隔符的面包屑导航"
311
+
312
+ #: class.bcn_admin.php:265 class.bcn_network_admin.php:333
313
+ msgid "Breadcrumb trail in list form"
314
+ msgstr "列表形式的面包屑导航"
315
+
316
+ #: class.bcn_admin.php:274 class.bcn_network_admin.php:342
317
+ msgid "Quick Start"
318
+ msgstr "快速开始"
319
+
320
+ #: class.bcn_admin.php:277 class.bcn_network_admin.php:345
321
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
322
+ msgstr "使用上述快速启动部分的代码,下面的CSS可以作为面包屑导航样式的基础代码。"
323
+
324
+ #: class.bcn_admin.php:289 class.bcn_network_admin.php:357
325
+ msgid "Styling"
326
+ msgstr "样式"
327
+
328
+ #: class.bcn_admin.php:295 class.bcn_network_admin.php:363
329
+ msgid "Import/Export/Reset"
330
+ msgstr "导入/导出/重置"
331
+
332
+ #: class.bcn_admin.php:319 class.bcn_network_admin.php:387
333
+ #: includes/class.mtekk_adminkit.php:787
334
+ msgid "Import"
335
+ msgstr "导入"
336
+
337
+ #: class.bcn_admin.php:320 class.bcn_network_admin.php:388
338
+ #: includes/class.mtekk_adminkit.php:788
339
+ msgid "Export"
340
+ msgstr "导出"
341
+
342
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
343
+ #: includes/class.mtekk_adminkit.php:789
344
+ msgid "Reset"
345
+ msgstr "重置"
346
+
347
+ #: class.bcn_admin.php:367
348
+ msgid "Breadcrumb NavXT Settings"
349
+ msgstr "面包屑导航设置"
350
+
351
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
352
+ msgid "Breadcrumb Separator"
353
+ msgstr "面包屑分隔符"
354
+
355
+ #: class.bcn_admin.php:383 class.bcn_network_admin.php:450
356
+ msgid "Placed in between each breadcrumb."
357
+ msgstr "两个面包屑之间的分隔符"
358
+
359
+ #: class.bcn_admin.php:417 class.bcn_admin.php:420
360
+ #: class.bcn_network_admin.php:484 class.bcn_network_admin.php:487
361
+ msgid "Home Breadcrumb"
362
+ msgstr "首页面包屑"
363
+
364
+ #: class.bcn_admin.php:420 class.bcn_network_admin.php:487
365
+ msgid "Place the home breadcrumb in the trail."
366
+ msgstr "把首页放到导航里"
367
+
368
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
369
+ msgid "Home Template"
370
+ msgstr "首页模版"
371
+
372
+ #: class.bcn_admin.php:421 class.bcn_network_admin.php:488
373
+ msgid "The template for the home breadcrumb."
374
+ msgstr "首页面包屑的模版"
375
+
376
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
377
+ msgid "Home Template (Unlinked)"
378
+ msgstr "首页模版(没有链接)"
379
+
380
+ #: class.bcn_admin.php:422 class.bcn_network_admin.php:489
381
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
382
+ msgstr "首页面包屑模版,当面包屑没有链接时使用。"
383
+
384
+ #: class.bcn_admin.php:426 class.bcn_admin.php:429
385
+ #: class.bcn_network_admin.php:493 class.bcn_network_admin.php:496
386
+ msgid "Blog Breadcrumb"
387
+ msgstr "博客面包屑"
388
+
389
+ #: class.bcn_admin.php:429 class.bcn_network_admin.php:496
390
+ msgid "Place the blog breadcrumb in the trail."
391
+ msgstr "把博客面包屑放到导航里。"
392
+
393
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
394
+ msgid "Blog Template"
395
+ msgstr "博客模版"
396
+
397
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:497
398
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
399
+ msgstr "博客面包屑模版,只在网站设置静态页面为首页时使用。"
400
+
401
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
402
+ msgid "Blog Template (Unlinked)"
403
+ msgstr "博客模版(没有链接)"
404
+
405
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:498
406
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
407
+ msgstr "博客面包屑模版,只在网站设置静态页面为首页,且面包屑没有链接时使用。"
408
+
409
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
410
+ msgid "Main Site Breadcrumb"
411
+ msgstr "主站面包屑"
412
+
413
+ #: class.bcn_admin.php:438 class.bcn_network_admin.php:505
414
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
415
+ msgstr "在多站点环境下,把主站首页面包屑放到导航里。"
416
+
417
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
418
+ msgid "Main Site Home Template"
419
+ msgstr "主站首页模版"
420
+
421
+ #: class.bcn_admin.php:439 class.bcn_network_admin.php:506
422
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
423
+ msgstr "主站首页面包屑导航,只在多站点环境下使用。"
424
+
425
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
426
+ msgid "Main Site Home Template (Unlinked)"
427
+ msgstr "主站首页模版"
428
+
429
+ #: class.bcn_admin.php:440 class.bcn_network_admin.php:507
430
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
431
+ msgstr "主站首页面包屑,只在多站点环境,且面包屑没有链接时使用。"
432
+
433
+ #: class.bcn_admin.php:408 class.bcn_network_admin.php:475
434
+ msgid "Current Item"
435
+ msgstr "当前页"
436
+
437
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
438
+ msgid "Link Current Item"
439
+ msgstr "显示当前页面的链接"
440
+
441
+ #: class.bcn_admin.php:411 class.bcn_network_admin.php:478
442
+ msgid "Yes"
443
+ msgstr "是"
444
+
445
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
446
+ msgid "Paged Breadcrumb"
447
+ msgstr "分页面包屑"
448
+
449
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
450
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
451
+ msgstr "包含分页面包屑在导航中"
452
+
453
+ #: class.bcn_admin.php:412 class.bcn_network_admin.php:479
454
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
455
+ msgstr "指明用户在在分页文章或页面的某个分页而不是首页上"
456
+
457
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
458
+ msgid "Paged Template"
459
+ msgstr "分页模版"
460
+
461
+ #: class.bcn_admin.php:413 class.bcn_network_admin.php:480
462
+ msgid "The template for paged breadcrumbs."
463
+ msgstr "分页面包屑的模版"
464
+
465
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
466
+ msgid "Post Template"
467
+ msgstr "文章模版"
468
+
469
+ #: class.bcn_admin.php:451 class.bcn_network_admin.php:518
470
+ msgid "The template for post breadcrumbs."
471
+ msgstr "文章面包屑模版"
472
+
473
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
474
+ msgid "Post Template (Unlinked)"
475
+ msgstr "文章模版(没有链接)"
476
+
477
+ #: class.bcn_admin.php:452 class.bcn_network_admin.php:519
478
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
479
+ msgstr "文章面包屑模版,只在面包屑没有链接时使用。"
480
+
481
+ #: class.bcn_admin.php:453 class.bcn_network_admin.php:520
482
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
483
+ msgstr "在面包屑导航里显示文章所属的分类。"
484
+
485
+ #: class.bcn_admin.php:461 class.bcn_admin.php:578
486
+ #: class.bcn_network_admin.php:528 class.bcn_network_admin.php:645
487
+ msgid "Categories"
488
+ msgstr "分类"
489
+
490
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:529
491
+ msgid "Dates"
492
+ msgstr "日期"
493
+
494
+ #: class.bcn_admin.php:463 class.bcn_admin.php:585
495
+ #: class.bcn_network_admin.php:530 class.bcn_network_admin.php:652
496
+ msgid "Tags"
497
+ msgstr "标签"
498
+
499
+ #: class.bcn_admin.php:485 class.bcn_network_admin.php:552
500
+ msgid "Pages"
501
+ msgstr "页面"
502
+
503
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
504
+ msgid "Page Template"
505
+ msgstr "页面模版"
506
+
507
+ #: class.bcn_admin.php:488 class.bcn_network_admin.php:555
508
+ msgid "The template for page breadcrumbs."
509
+ msgstr "页面面包屑模版"
510
+
511
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
512
+ msgid "Page Template (Unlinked)"
513
+ msgstr "页面模版(没有链接)"
514
+
515
+ #: class.bcn_admin.php:489 class.bcn_network_admin.php:556
516
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
517
+ msgstr "页面面包屑模版,只在面包屑没有链接时使用。"
518
+
519
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
520
+ msgid "Attachment Template"
521
+ msgstr "附件模版"
522
+
523
+ #: class.bcn_admin.php:495 class.bcn_network_admin.php:562
524
+ msgid "The template for attachment breadcrumbs."
525
+ msgstr "附件面包屑模版"
526
+
527
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
528
+ msgid "Attachment Template (Unlinked)"
529
+ msgstr "附件模版(没有链接)"
530
+
531
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:563
532
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
533
+ msgstr "附件面包屑模版,只在面包屑没有链接时使用。"
534
+
535
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
536
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
537
+ msgid "%s Template"
538
+ msgstr "%s模版"
539
+
540
+ #: class.bcn_admin.php:516 class.bcn_admin.php:616
541
+ #: class.bcn_network_admin.php:583 class.bcn_network_admin.php:683
542
+ msgid "The template for %s breadcrumbs."
543
+ msgstr "%s面包屑模版"
544
+
545
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
546
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
547
+ msgid "%s Template (Unlinked)"
548
+ msgstr "%s模版(未连接)"
549
+
550
+ #: class.bcn_admin.php:517 class.bcn_admin.php:617
551
+ #: class.bcn_network_admin.php:584 class.bcn_network_admin.php:684
552
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
553
+ msgstr "%s面包屑模版,只在面包屑没有链接时使用。"
554
+
555
+ #: class.bcn_admin.php:522 class.bcn_network_admin.php:589
556
+ msgid "%s Root Page"
557
+ msgstr "%s根页面"
558
+
559
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:592
560
+ msgid "&mdash; Select &mdash;"
561
+ msgstr "&mdash;选择&mdash;"
562
+
563
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
564
+ msgid "%s Archive Display"
565
+ msgstr "%s存档显示"
566
+
567
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:596
568
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
569
+ msgstr "在面包屑导航中显示%s文章类型存档的面包屑"
570
+
571
+ #: class.bcn_admin.php:530 class.bcn_network_admin.php:597
572
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
573
+ msgstr "在面包屑导航里显示%s所属的自定义分类"
574
+
575
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
576
+ msgid "Category Template"
577
+ msgstr "分类模版"
578
+
579
+ #: class.bcn_admin.php:581 class.bcn_network_admin.php:648
580
+ msgid "The template for category breadcrumbs."
581
+ msgstr "分类面包屑模版"
582
+
583
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
584
+ msgid "Category Template (Unlinked)"
585
+ msgstr "分类模版(没有链接)"
586
+
587
+ #: class.bcn_admin.php:582 class.bcn_network_admin.php:649
588
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
589
+ msgstr "分类面包屑模版,只在面包屑没有链接时使用。"
590
+
591
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
592
+ msgid "Tag Template"
593
+ msgstr "标签模版"
594
+
595
+ #: class.bcn_admin.php:588 class.bcn_network_admin.php:655
596
+ msgid "The template for tag breadcrumbs."
597
+ msgstr "标签面包屑模版"
598
+
599
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
600
+ msgid "Tag Template (Unlinked)"
601
+ msgstr "标签模版(没有链接)"
602
+
603
+ #: class.bcn_admin.php:589 class.bcn_network_admin.php:656
604
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
605
+ msgstr "标签面包屑模版,只在面包屑没有链接时使用。"
606
+
607
+ #: class.bcn_admin.php:626 class.bcn_admin.php:635
608
+ #: class.bcn_network_admin.php:693 class.bcn_network_admin.php:702
609
+ msgid "Miscellaneous"
610
+ msgstr "杂项"
611
+
612
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
613
+ msgid "Author Template"
614
+ msgstr "作者模版"
615
+
616
+ #: class.bcn_admin.php:630 class.bcn_network_admin.php:697
617
+ msgid "The template for author breadcrumbs."
618
+ msgstr "作者面包屑模版"
619
+
620
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
621
+ msgid "Author Template (Unlinked)"
622
+ msgstr "作者模版(没有链接)"
623
+
624
+ #: class.bcn_admin.php:631 class.bcn_network_admin.php:698
625
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
626
+ msgstr "作者面包屑模版,只在面包屑没有链接时使用。"
627
+
628
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
629
+ msgid "Author Display Format"
630
+ msgstr "作者显示格式"
631
+
632
+ #: class.bcn_admin.php:632 class.bcn_network_admin.php:699
633
+ 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."
634
+ msgstr "显示名使用用户资料下\"公开显示为\"选项下对应的名称。"
635
+
636
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
637
+ msgid "Date Template"
638
+ msgstr "日期模版"
639
+
640
+ #: class.bcn_admin.php:638 class.bcn_network_admin.php:705
641
+ msgid "The template for date breadcrumbs."
642
+ msgstr "日期面包屑模版"
643
+
644
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
645
+ msgid "Date Template (Unlinked)"
646
+ msgstr "日期面包屑(没有链接)"
647
+
648
+ #: class.bcn_admin.php:639 class.bcn_network_admin.php:706
649
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
650
+ msgstr "日期面包屑模版,只在面包屑没有链接时使用"
651
+
652
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
653
+ msgid "Search Template"
654
+ msgstr "搜索模版"
655
+
656
+ #: class.bcn_admin.php:640 class.bcn_network_admin.php:707
657
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
658
+ msgstr "搜索结果首页模版,只在搜索结果分为多页时使用。"
659
+
660
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
661
+ msgid "Search Template (Unlinked)"
662
+ msgstr "搜索模版(没有链接)"
663
+
664
+ #: class.bcn_admin.php:641 class.bcn_network_admin.php:708
665
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
666
+ msgstr "搜索结果首页模版,只在搜索结果分为多页,且面包屑没有连接时使用。"
667
+
668
+ #: class.bcn_admin.php:642 class.bcn_network_admin.php:709
669
+ msgid "404 Title"
670
+ msgstr "404标题"
671
+
672
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
673
+ msgid "404 Template"
674
+ msgstr "404模版"
675
+
676
+ #: class.bcn_admin.php:643 class.bcn_network_admin.php:710
677
+ msgid "The template for 404 breadcrumbs."
678
+ msgstr "404页面的面包屑。"
679
+
680
+ #: class.bcn_admin.php:650 class.bcn_network_admin.php:717
681
+ msgid "Save Changes"
682
+ msgstr "保存修改"
683
+
684
+ #: includes/class.mtekk_adminkit.php:217
685
+ msgid "Settings"
686
+ msgstr "设置"
687
+
688
+ #: includes/class.mtekk_adminkit.php:287
689
+ msgid "Your settings are out of date."
690
+ msgstr "你的设置已过期。"
691
+
692
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
693
+ msgid "Migrate the settings now."
694
+ msgstr "现在迁移设置。"
695
+
696
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
697
+ msgid "Migrate now."
698
+ msgstr "现在迁移。"
699
+
700
+ #: includes/class.mtekk_adminkit.php:304
701
+ msgid "Your plugin install is incomplete."
702
+ msgstr "插件安装未完成"
703
+
704
+ #: includes/class.mtekk_adminkit.php:304
705
+ msgid "Load default settings now."
706
+ msgstr "现在加载默认设置。"
707
+
708
+ #: includes/class.mtekk_adminkit.php:304
709
+ msgid "Complete now."
710
+ msgstr "现在完成"
711
+
712
+ #: includes/class.mtekk_adminkit.php:312
713
+ msgid "Your plugin settings are invalid."
714
+ msgstr "你的设置有错误"
715
+
716
+ #: includes/class.mtekk_adminkit.php:312
717
+ msgid "Attempt to fix settings now."
718
+ msgstr "尝试修复设置。"
719
+
720
+ #: includes/class.mtekk_adminkit.php:312
721
+ msgid "Fix now."
722
+ msgstr "现在修复。"
723
+
724
+ #: includes/class.mtekk_adminkit.php:490
725
+ msgid "Settings successfully saved."
726
+ msgstr "设置保存成功"
727
+
728
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
729
+ msgid "Undo the options save."
730
+ msgstr "撤销保存操作"
731
+
732
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
733
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Undo"
736
+ msgstr "撤销"
737
+
738
+ #: includes/class.mtekk_adminkit.php:495
739
+ msgid "Some settings were not saved."
740
+ msgstr "一些设置没有保存"
741
+
742
+ #: includes/class.mtekk_adminkit.php:496
743
+ msgid "The following settings were not saved:"
744
+ msgstr "下面的设置没有保存:"
745
+
746
+ #: includes/class.mtekk_adminkit.php:501
747
+ msgid "Please include this message in your %sbug report%s."
748
+ msgstr "请包含这个消息到你的%sbug report%s。"
749
+
750
+ #: includes/class.mtekk_adminkit.php:501
751
+ msgid "Go to the %s support post for your version."
752
+ msgstr "转到你所用版本%s的支持文章"
753
+
754
+ #: includes/class.mtekk_adminkit.php:600
755
+ msgid "Settings successfully imported from the uploaded file."
756
+ msgstr "设置成功从上传的文件中导入"
757
+
758
+ #: includes/class.mtekk_adminkit.php:600
759
+ msgid "Undo the options import."
760
+ msgstr "撤销导入操作"
761
+
762
+ #: includes/class.mtekk_adminkit.php:605
763
+ msgid "Importing settings from file failed."
764
+ msgstr "从文件中导入设置失败。"
765
+
766
+ #: includes/class.mtekk_adminkit.php:624
767
+ msgid "Settings successfully reset to the default values."
768
+ msgstr "设置成功恢复到默认值。"
769
+
770
+ #: includes/class.mtekk_adminkit.php:624
771
+ msgid "Undo the options reset."
772
+ msgstr "撤销选项重置操作"
773
+
774
+ #: includes/class.mtekk_adminkit.php:641
775
+ msgid "Settings successfully undid the last operation."
776
+ msgstr "设置成功从上一个操作中恢复。"
777
+
778
+ #: includes/class.mtekk_adminkit.php:641
779
+ msgid "Undo the last undo operation."
780
+ msgstr "撤销最后一个撤销操作"
781
+
782
+ #: includes/class.mtekk_adminkit.php:676
783
+ msgid "Settings successfully migrated."
784
+ msgstr "设置迁移成功"
785
+
786
+ #: includes/class.mtekk_adminkit.php:683
787
+ msgid "Default settings successfully installed."
788
+ msgstr "默认设置已安装"
789
+
790
+ #: includes/class.mtekk_adminkit.php:779
791
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
792
+ msgstr "从XML文件中导入设置,导出当前设置到XML文件,或者重置到默认设置。"
793
+
794
+ #: includes/class.mtekk_adminkit.php:782
795
+ msgid "Settings File"
796
+ msgstr "设置文件"
797
+
798
+ #: includes/class.mtekk_adminkit.php:785
799
+ msgid "Select a XML settings file to upload and import settings from."
800
+ msgstr "选择需要上传和导入的XML文件"
801
+
802
+ #: class.bcn_breadcrumb_trail.php:82
803
+ msgid "Page %htitle%"
804
+ msgstr "页面%htitle%"
805
+
806
+ #: class.bcn_breadcrumb_trail.php:106
807
+ msgid "404"
808
+ msgstr "404"
809
+
810
+ #: class.bcn_breadcrumb_trail.php:111
811
+ msgid "Search results for &#39;%htitle%&#39;"
812
+ msgstr "搜索&#39;%htitle%&#39;的结果"
813
+
814
+ #: class.bcn_breadcrumb_trail.php:126
815
+ msgid "Articles by: %htitle%"
816
+ msgstr "存档类型:%htitle%"
languages/breadcrumb-navxt.mo CHANGED
Binary file
languages/breadcrumb-navxt.po CHANGED
@@ -1,783 +1,861 @@
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-05-26 00:27:44+00:00\n"
6
- "PO-Revision-Date: 2013-05-26 13:40-0600\n"
7
- "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
- "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: English\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SearchPath-0: D:\\Docs\\Breadcrumb NavXT\\trunk\n"
16
-
17
- #: breadcrumb_navxt_admin.php:36
18
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
19
- msgstr ""
20
-
21
- #: breadcrumb_navxt_admin.php:213
22
- msgid "Insufficient privileges to proceed."
23
- msgstr ""
24
-
25
- #: breadcrumb_navxt_admin.php:329
26
- msgid "Tips for the settings are located below select options."
27
- msgstr ""
28
-
29
- #: breadcrumb_navxt_admin.php:330
30
- msgid "Resources"
31
- msgstr ""
32
-
33
- #: breadcrumb_navxt_admin.php:331
34
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
35
- msgstr ""
36
-
37
- #: breadcrumb_navxt_admin.php:331
38
- msgid "Go to the Breadcrumb NavXT tag archive."
39
- msgstr ""
40
-
41
- #: breadcrumb_navxt_admin.php:332
42
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
43
- msgstr ""
44
-
45
- #: breadcrumb_navxt_admin.php:332
46
- msgid "Go to the Breadcrumb NavXT online documentation"
47
- msgstr ""
48
-
49
- #: breadcrumb_navxt_admin.php:333
50
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
51
- msgstr ""
52
-
53
- #: breadcrumb_navxt_admin.php:333
54
- msgid "Go to the Breadcrumb NavXT support post for your version."
55
- msgstr ""
56
-
57
- #: breadcrumb_navxt_admin.php:334
58
- msgid "Giving Back"
59
- msgstr ""
60
-
61
- #: breadcrumb_navxt_admin.php:335
62
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
63
- msgstr ""
64
-
65
- #: breadcrumb_navxt_admin.php:335
66
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
67
- msgstr ""
68
-
69
- #: breadcrumb_navxt_admin.php:336
70
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
71
- msgstr ""
72
-
73
- #: breadcrumb_navxt_admin.php:336
74
- msgid "Go to the Breadcrumb NavXT translation project."
75
- msgstr ""
76
-
77
- #: breadcrumb_navxt_admin.php:341
78
- #: breadcrumb_navxt_admin.php:432
79
- #: breadcrumb_navxt_admin.php:433
80
- msgid "General"
81
- msgstr ""
82
-
83
- #: breadcrumb_navxt_admin.php:344
84
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
85
- msgstr ""
86
-
87
- #: breadcrumb_navxt_admin.php:345
88
- msgid "Breadcrumb trail with separators"
89
- msgstr ""
90
-
91
- #: breadcrumb_navxt_admin.php:351
92
- msgid "Breadcrumb trail in list form"
93
- msgstr ""
94
-
95
- #: breadcrumb_navxt_admin.php:360
96
- msgid "Quick Start"
97
- msgstr ""
98
-
99
- #: breadcrumb_navxt_admin.php:363
100
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
101
- msgstr ""
102
-
103
- #: breadcrumb_navxt_admin.php:375
104
- msgid "Styling"
105
- msgstr ""
106
-
107
- #: breadcrumb_navxt_admin.php:381
108
- msgid "Import/Export/Reset"
109
- msgstr ""
110
-
111
- #: breadcrumb_navxt_admin.php:405
112
- #: includes/mtekk_adminkit.php:786
113
- msgid "Import"
114
- msgstr ""
115
-
116
- #: breadcrumb_navxt_admin.php:406
117
- #: includes/mtekk_adminkit.php:787
118
- msgid "Export"
119
- msgstr ""
120
-
121
- #: breadcrumb_navxt_admin.php:407
122
- #: includes/mtekk_adminkit.php:788
123
- msgid "Reset"
124
- msgstr ""
125
-
126
- #: breadcrumb_navxt_admin.php:420
127
- msgid "Breadcrumb NavXT Settings"
128
- msgstr ""
129
-
130
- #: breadcrumb_navxt_admin.php:432
131
- msgid "A collection of settings most likely to be modified are located under this tab."
132
- msgstr ""
133
-
134
- #: breadcrumb_navxt_admin.php:436
135
- msgid "Breadcrumb Separator"
136
- msgstr ""
137
-
138
- #: breadcrumb_navxt_admin.php:436
139
- msgid "Placed in between each breadcrumb."
140
- msgstr ""
141
-
142
- #: breadcrumb_navxt_admin.php:440
143
- msgid "Title Length"
144
- msgstr ""
145
-
146
- #: breadcrumb_navxt_admin.php:445
147
- msgid "Limit the length of the breadcrumb title."
148
- msgstr ""
149
-
150
- #: breadcrumb_navxt_admin.php:450
151
- msgid "Max Title Length: "
152
- msgstr ""
153
-
154
- #: breadcrumb_navxt_admin.php:461
155
- msgid "Current Item"
156
- msgstr ""
157
-
158
- #: breadcrumb_navxt_admin.php:464
159
- msgid "Link Current Item"
160
- msgstr ""
161
-
162
- #: breadcrumb_navxt_admin.php:464
163
- msgid "Yes"
164
- msgstr ""
165
-
166
- #: breadcrumb_navxt_admin.php:465
167
- msgid "Paged Breadcrumb"
168
- msgstr ""
169
-
170
- #: breadcrumb_navxt_admin.php:465
171
- msgid "Include the paged breadcrumb in the breadcrumb trail."
172
- msgstr ""
173
-
174
- #: breadcrumb_navxt_admin.php:465
175
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
176
- msgstr ""
177
-
178
- #: breadcrumb_navxt_admin.php:466
179
- msgid "Paged Template"
180
- msgstr ""
181
-
182
- #: breadcrumb_navxt_admin.php:466
183
- msgid "The template for paged breadcrumbs."
184
- msgstr ""
185
-
186
- #: breadcrumb_navxt_admin.php:470
187
- #: breadcrumb_navxt_admin.php:473
188
- msgid "Home Breadcrumb"
189
- msgstr ""
190
-
191
- #: breadcrumb_navxt_admin.php:473
192
- msgid "Place the home breadcrumb in the trail."
193
- msgstr ""
194
-
195
- #: breadcrumb_navxt_admin.php:474
196
- msgid "Home Template"
197
- msgstr ""
198
-
199
- #: breadcrumb_navxt_admin.php:474
200
- msgid "The template for the home breadcrumb."
201
- msgstr ""
202
-
203
- #: breadcrumb_navxt_admin.php:475
204
- msgid "Home Template (Unlinked)"
205
- msgstr ""
206
-
207
- #: breadcrumb_navxt_admin.php:475
208
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
209
- msgstr ""
210
-
211
- #: breadcrumb_navxt_admin.php:479
212
- #: breadcrumb_navxt_admin.php:482
213
- msgid "Blog Breadcrumb"
214
- msgstr ""
215
-
216
- #: breadcrumb_navxt_admin.php:482
217
- msgid "Place the blog breadcrumb in the trail."
218
- msgstr ""
219
-
220
- #: breadcrumb_navxt_admin.php:483
221
- msgid "Blog Template"
222
- msgstr ""
223
-
224
- #: breadcrumb_navxt_admin.php:483
225
- msgid "The template for the blog breadcrumb, used only in static front page environments."
226
- msgstr ""
227
-
228
- #: breadcrumb_navxt_admin.php:484
229
- msgid "Blog Template (Unlinked)"
230
- msgstr ""
231
-
232
- #: breadcrumb_navxt_admin.php:484
233
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
234
- msgstr ""
235
-
236
- #: breadcrumb_navxt_admin.php:488
237
- msgid "Mainsite Breadcrumb"
238
- msgstr ""
239
-
240
- #: breadcrumb_navxt_admin.php:491
241
- msgid "Main Site Breadcrumb"
242
- msgstr ""
243
-
244
- #: breadcrumb_navxt_admin.php:491
245
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
246
- msgstr ""
247
-
248
- #: breadcrumb_navxt_admin.php:492
249
- msgid "Main Site Home Template"
250
- msgstr ""
251
-
252
- #: breadcrumb_navxt_admin.php:492
253
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
254
- msgstr ""
255
-
256
- #: breadcrumb_navxt_admin.php:493
257
- msgid "Main Site Home Template (Unlinked)"
258
- msgstr ""
259
-
260
- #: breadcrumb_navxt_admin.php:493
261
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
262
- msgstr ""
263
-
264
- #: breadcrumb_navxt_admin.php:500
265
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
266
- msgstr ""
267
-
268
- #: breadcrumb_navxt_admin.php:500
269
- msgid "Post Types"
270
- msgstr ""
271
-
272
- #: breadcrumb_navxt_admin.php:501
273
- msgid "Posts"
274
- msgstr ""
275
-
276
- #: breadcrumb_navxt_admin.php:504
277
- msgid "Post Template"
278
- msgstr ""
279
-
280
- #: breadcrumb_navxt_admin.php:504
281
- msgid "The template for post breadcrumbs."
282
- msgstr ""
283
-
284
- #: breadcrumb_navxt_admin.php:505
285
- msgid "Post Template (Unlinked)"
286
- msgstr ""
287
-
288
- #: breadcrumb_navxt_admin.php:505
289
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
290
- msgstr ""
291
-
292
- #: breadcrumb_navxt_admin.php:506
293
- msgid "Post Hierarchy Display"
294
- msgstr ""
295
-
296
- #: breadcrumb_navxt_admin.php:506
297
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
298
- msgstr ""
299
-
300
- #: breadcrumb_navxt_admin.php:510
301
- msgid "Post Hierarchy"
302
- msgstr ""
303
-
304
- #: breadcrumb_navxt_admin.php:514
305
- #: breadcrumb_navxt_admin.php:626
306
- msgid "Categories"
307
- msgstr ""
308
-
309
- #: breadcrumb_navxt_admin.php:515
310
- msgid "Dates"
311
- msgstr ""
312
-
313
- #: breadcrumb_navxt_admin.php:516
314
- #: breadcrumb_navxt_admin.php:633
315
- msgid "Tags"
316
- msgstr ""
317
-
318
- #: breadcrumb_navxt_admin.php:518
319
- #: breadcrumb_navxt_admin.php:587
320
- msgid "Post Parent"
321
- msgstr ""
322
-
323
- #: breadcrumb_navxt_admin.php:534
324
- #: breadcrumb_navxt_admin.php:611
325
- 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."
326
- msgstr ""
327
-
328
- #: breadcrumb_navxt_admin.php:538
329
- msgid "Pages"
330
- msgstr ""
331
-
332
- #: breadcrumb_navxt_admin.php:541
333
- msgid "Page Template"
334
- msgstr ""
335
-
336
- #: breadcrumb_navxt_admin.php:541
337
- msgid "The template for page breadcrumbs."
338
- msgstr ""
339
-
340
- #: breadcrumb_navxt_admin.php:542
341
- msgid "Page Template (Unlinked)"
342
- msgstr ""
343
-
344
- #: breadcrumb_navxt_admin.php:542
345
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
346
- msgstr ""
347
-
348
- #: breadcrumb_navxt_admin.php:543
349
- msgid "Attachment Template"
350
- msgstr ""
351
-
352
- #: breadcrumb_navxt_admin.php:543
353
- msgid "The template for attachment breadcrumbs."
354
- msgstr ""
355
-
356
- #: breadcrumb_navxt_admin.php:544
357
- msgid "Attachment Template (Unlinked)"
358
- msgstr ""
359
-
360
- #: breadcrumb_navxt_admin.php:544
361
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
362
- msgstr ""
363
-
364
- #: breadcrumb_navxt_admin.php:564
365
- #: breadcrumb_navxt_admin.php:664
366
- msgid "%s Template"
367
- msgstr ""
368
-
369
- #: breadcrumb_navxt_admin.php:564
370
- #: breadcrumb_navxt_admin.php:664
371
- msgid "The template for %s breadcrumbs."
372
- msgstr ""
373
-
374
- #: breadcrumb_navxt_admin.php:565
375
- #: breadcrumb_navxt_admin.php:665
376
- msgid "%s Template (Unlinked)"
377
- msgstr ""
378
-
379
- #: breadcrumb_navxt_admin.php:565
380
- #: breadcrumb_navxt_admin.php:665
381
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
382
- msgstr ""
383
-
384
- #: breadcrumb_navxt_admin.php:570
385
- msgid "%s Root Page"
386
- msgstr ""
387
-
388
- #: breadcrumb_navxt_admin.php:573
389
- msgid "&mdash; Select &mdash;"
390
- msgstr ""
391
-
392
- #: breadcrumb_navxt_admin.php:577
393
- msgid "%s Archive Display"
394
- msgstr ""
395
-
396
- #: breadcrumb_navxt_admin.php:577
397
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
398
- msgstr ""
399
-
400
- #: breadcrumb_navxt_admin.php:578
401
- msgid "%s Hierarchy Display"
402
- msgstr ""
403
-
404
- #: breadcrumb_navxt_admin.php:578
405
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
406
- msgstr ""
407
-
408
- #: breadcrumb_navxt_admin.php:582
409
- msgid "%s Hierarchy"
410
- msgstr ""
411
-
412
- #: breadcrumb_navxt_admin.php:607
413
- msgid "The hierarchy which the breadcrumb trail will show."
414
- msgstr ""
415
-
416
- #: breadcrumb_navxt_admin.php:625
417
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
418
- msgstr ""
419
-
420
- #: breadcrumb_navxt_admin.php:625
421
- msgid "Taxonomies"
422
- msgstr ""
423
-
424
- #: breadcrumb_navxt_admin.php:629
425
- msgid "Category Template"
426
- msgstr ""
427
-
428
- #: breadcrumb_navxt_admin.php:629
429
- msgid "The template for category breadcrumbs."
430
- msgstr ""
431
-
432
- #: breadcrumb_navxt_admin.php:630
433
- msgid "Category Template (Unlinked)"
434
- msgstr ""
435
-
436
- #: breadcrumb_navxt_admin.php:630
437
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
438
- msgstr ""
439
-
440
- #: breadcrumb_navxt_admin.php:636
441
- msgid "Tag Template"
442
- msgstr ""
443
-
444
- #: breadcrumb_navxt_admin.php:636
445
- msgid "The template for tag breadcrumbs."
446
- msgstr ""
447
-
448
- #: breadcrumb_navxt_admin.php:637
449
- msgid "Tag Template (Unlinked)"
450
- msgstr ""
451
-
452
- #: breadcrumb_navxt_admin.php:637
453
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
454
- msgstr ""
455
-
456
- #: breadcrumb_navxt_admin.php:640
457
- msgid "Post Formats"
458
- msgstr ""
459
-
460
- #: breadcrumb_navxt_admin.php:643
461
- msgid "Post Format Template"
462
- msgstr ""
463
-
464
- #: breadcrumb_navxt_admin.php:643
465
- msgid "The template for post format breadcrumbs."
466
- msgstr ""
467
-
468
- #: breadcrumb_navxt_admin.php:644
469
- msgid "Post Format Template (Unlinked)"
470
- msgstr ""
471
-
472
- #: breadcrumb_navxt_admin.php:644
473
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
474
- msgstr ""
475
-
476
- #: breadcrumb_navxt_admin.php:674
477
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
478
- msgstr ""
479
-
480
- #: breadcrumb_navxt_admin.php:674
481
- #: breadcrumb_navxt_admin.php:683
482
- msgid "Miscellaneous"
483
- msgstr ""
484
-
485
- #: breadcrumb_navxt_admin.php:675
486
- msgid "Author Archives"
487
- msgstr ""
488
-
489
- #: breadcrumb_navxt_admin.php:678
490
- msgid "Author Template"
491
- msgstr ""
492
-
493
- #: breadcrumb_navxt_admin.php:678
494
- msgid "The template for author breadcrumbs."
495
- msgstr ""
496
-
497
- #: breadcrumb_navxt_admin.php:679
498
- msgid "Author Template (Unlinked)"
499
- msgstr ""
500
-
501
- #: breadcrumb_navxt_admin.php:679
502
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
503
- msgstr ""
504
-
505
- #: breadcrumb_navxt_admin.php:680
506
- msgid "Author Display Format"
507
- msgstr ""
508
-
509
- #: breadcrumb_navxt_admin.php:680
510
- 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."
511
- msgstr ""
512
-
513
- #: breadcrumb_navxt_admin.php:686
514
- msgid "Date Template"
515
- msgstr ""
516
-
517
- #: breadcrumb_navxt_admin.php:686
518
- msgid "The template for date breadcrumbs."
519
- msgstr ""
520
-
521
- #: breadcrumb_navxt_admin.php:687
522
- msgid "Date Template (Unlinked)"
523
- msgstr ""
524
-
525
- #: breadcrumb_navxt_admin.php:687
526
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr ""
528
-
529
- #: breadcrumb_navxt_admin.php:688
530
- msgid "Search Template"
531
- msgstr ""
532
-
533
- #: breadcrumb_navxt_admin.php:688
534
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
535
- msgstr ""
536
-
537
- #: breadcrumb_navxt_admin.php:689
538
- msgid "Search Template (Unlinked)"
539
- msgstr ""
540
-
541
- #: breadcrumb_navxt_admin.php:689
542
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
543
- msgstr ""
544
-
545
- #: breadcrumb_navxt_admin.php:690
546
- msgid "404 Title"
547
- msgstr ""
548
-
549
- #: breadcrumb_navxt_admin.php:691
550
- msgid "404 Template"
551
- msgstr ""
552
-
553
- #: breadcrumb_navxt_admin.php:691
554
- msgid "The template for 404 breadcrumbs."
555
- msgstr ""
556
-
557
- #: breadcrumb_navxt_admin.php:697
558
- msgid "Save Changes"
559
- msgstr ""
560
-
561
- #: breadcrumb_navxt_admin.php:742
562
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
563
- msgstr ""
564
-
565
- #: breadcrumb_navxt_admin.php:743
566
- #: breadcrumb_navxt_class.php:63
567
- msgid "%htitle%"
568
- msgstr ""
569
-
570
- #: breadcrumb_navxt_class.php:67
571
- #: breadcrumb_navxt_class.php:239
572
- #: breadcrumb_navxt_class.php:245
573
- #: breadcrumb_navxt_class.php:251
574
- #: breadcrumb_navxt_class.php:265
575
- #: breadcrumb_navxt_class.php:277
576
- #: breadcrumb_navxt_class.php:289
577
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
578
- msgstr ""
579
-
580
- #: breadcrumb_navxt_class.php:272
581
- msgid "Page %htitle%"
582
- msgstr ""
583
-
584
- #: breadcrumb_navxt_class.php:296
585
- msgid "404"
586
- msgstr ""
587
-
588
- #: breadcrumb_navxt_class.php:299
589
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
590
- msgstr ""
591
-
592
- #: breadcrumb_navxt_class.php:301
593
- msgid "Search results for &#39;%htitle%&#39;"
594
- msgstr ""
595
-
596
- #: breadcrumb_navxt_class.php:304
597
- #: breadcrumb_navxt_class.php:309
598
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
599
- msgstr ""
600
-
601
- #: breadcrumb_navxt_class.php:314
602
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
603
- msgstr ""
604
-
605
- #: breadcrumb_navxt_class.php:316
606
- msgid "Articles by: %htitle%"
607
- msgstr ""
608
-
609
- #: breadcrumb_navxt_class.php:321
610
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
611
- msgstr ""
612
-
613
- #: breadcrumb_navxt_class.php:325
614
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
615
- msgstr ""
616
-
617
- #: breadcrumb_navxt_widget.php:33
618
- msgid "Adds a breadcrumb trail to your sidebar"
619
- msgstr ""
620
-
621
- #: breadcrumb_navxt_widget.php:92
622
- msgid "Title:"
623
- msgstr ""
624
-
625
- #: breadcrumb_navxt_widget.php:96
626
- msgid "Text to show before the trail:"
627
- msgstr ""
628
-
629
- #: breadcrumb_navxt_widget.php:100
630
- msgid "Output trail as:"
631
- msgstr ""
632
-
633
- #: breadcrumb_navxt_widget.php:102
634
- msgid "List"
635
- msgstr ""
636
-
637
- #: breadcrumb_navxt_widget.php:103
638
- msgid "Schema.org"
639
- msgstr ""
640
-
641
- #: breadcrumb_navxt_widget.php:104
642
- msgid "Plain"
643
- msgstr ""
644
-
645
- #: breadcrumb_navxt_widget.php:109
646
- msgid "Link the breadcrumbs"
647
- msgstr ""
648
-
649
- #: breadcrumb_navxt_widget.php:111
650
- msgid "Reverse the order of the trail"
651
- msgstr ""
652
-
653
- #: breadcrumb_navxt_widget.php:113
654
- msgid "Hide the trail on the front page"
655
- msgstr ""
656
-
657
- #: includes/mtekk_adminkit.php:211
658
- msgid "Settings"
659
- msgstr ""
660
-
661
- #: includes/mtekk_adminkit.php:281
662
- msgid "Your settings are out of date."
663
- msgstr ""
664
-
665
- #: includes/mtekk_adminkit.php:281
666
- #: includes/mtekk_adminkit.php:290
667
- msgid "Migrate the settings now."
668
- msgstr ""
669
-
670
- #: includes/mtekk_adminkit.php:281
671
- #: includes/mtekk_adminkit.php:290
672
- msgid "Migrate now."
673
- msgstr ""
674
-
675
- #: includes/mtekk_adminkit.php:290
676
- msgid "Your settings are for a newer version."
677
- msgstr ""
678
-
679
- #: includes/mtekk_adminkit.php:298
680
- msgid "Your plugin install is incomplete."
681
- msgstr ""
682
-
683
- #: includes/mtekk_adminkit.php:298
684
- msgid "Load default settings now."
685
- msgstr ""
686
-
687
- #: includes/mtekk_adminkit.php:298
688
- msgid "Complete now."
689
- msgstr ""
690
-
691
- #: includes/mtekk_adminkit.php:306
692
- msgid "Your plugin settings are invalid."
693
- msgstr ""
694
-
695
- #: includes/mtekk_adminkit.php:306
696
- msgid "Attempt to fix settings now."
697
- msgstr ""
698
-
699
- #: includes/mtekk_adminkit.php:306
700
- msgid "Fix now."
701
- msgstr ""
702
-
703
- #: includes/mtekk_adminkit.php:484
704
- msgid "Settings successfully saved."
705
- msgstr ""
706
-
707
- #: includes/mtekk_adminkit.php:484
708
- #: includes/mtekk_adminkit.php:489
709
- msgid "Undo the options save."
710
- msgstr ""
711
-
712
- #: includes/mtekk_adminkit.php:484
713
- #: includes/mtekk_adminkit.php:489
714
- #: includes/mtekk_adminkit.php:594
715
- #: includes/mtekk_adminkit.php:618
716
- #: includes/mtekk_adminkit.php:635
717
- msgid "Undo"
718
- msgstr ""
719
-
720
- #: includes/mtekk_adminkit.php:489
721
- msgid "Some settings were not saved."
722
- msgstr ""
723
-
724
- #: includes/mtekk_adminkit.php:490
725
- msgid "The following settings were not saved:"
726
- msgstr ""
727
-
728
- #: includes/mtekk_adminkit.php:495
729
- msgid "Please include this message in your %sbug report%s."
730
- msgstr ""
731
-
732
- #: includes/mtekk_adminkit.php:495
733
- msgid "Go to the %s support post for your version."
734
- msgstr ""
735
-
736
- #: includes/mtekk_adminkit.php:594
737
- msgid "Settings successfully imported from the uploaded file."
738
- msgstr ""
739
-
740
- #: includes/mtekk_adminkit.php:594
741
- msgid "Undo the options import."
742
- msgstr ""
743
-
744
- #: includes/mtekk_adminkit.php:599
745
- msgid "Importing settings from file failed."
746
- msgstr ""
747
-
748
- #: includes/mtekk_adminkit.php:618
749
- msgid "Settings successfully reset to the default values."
750
- msgstr ""
751
-
752
- #: includes/mtekk_adminkit.php:618
753
- msgid "Undo the options reset."
754
- msgstr ""
755
-
756
- #: includes/mtekk_adminkit.php:635
757
- msgid "Settings successfully undid the last operation."
758
- msgstr ""
759
-
760
- #: includes/mtekk_adminkit.php:635
761
- msgid "Undo the last undo operation."
762
- msgstr ""
763
-
764
- #: includes/mtekk_adminkit.php:670
765
- msgid "Settings successfully migrated."
766
- msgstr ""
767
-
768
- #: includes/mtekk_adminkit.php:677
769
- msgid "Default settings successfully installed."
770
- msgstr ""
771
-
772
- #: includes/mtekk_adminkit.php:778
773
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
774
- msgstr ""
775
-
776
- #: includes/mtekk_adminkit.php:781
777
- msgid "Settings File"
778
- msgstr ""
779
-
780
- #: includes/mtekk_adminkit.php:784
781
- msgid "Select a XML settings file to upload and import settings from."
782
- msgstr ""
783
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 ""
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.6
6
- Tested up to: 3.9
7
- Stable tag: 5.0.1
8
  License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
@@ -21,21 +21,19 @@ Breadcrumb NavXT distributes with translations for the following languages:
21
  * Catalan by Christian Eduardo
22
  * German by Daniel Lang
23
  * French (France) by Emmanuel Beziat, Erwan Lescop, and Serge Rauber
24
- * Greek by Giorgos Kounenis
25
  * Turkish by Hakan Er
26
  * Czech by jakubmachala
27
  * Norwegian (Bokmål) by Jan Rosvoldsve
28
  * Danish by Joachim Jensen
29
  * Lithuanian by Johannes Rau
30
  * Spanish (Spain) by Karin Sequen
31
- * Japanese by Kojima Toshiyasu
32
  * Portuguese (Portugal) by Luís Rodrigues
33
  * Estonian by Martin Orn
34
  * Swedish by Patrik Spathon
35
  * Dutch by Renée Klein
36
  * Italian by Tamara Balestri
37
  * Finnish by Ville Pilvio
38
- * Azerbaijani by Zaur Bayramov
39
 
40
  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").
41
 
@@ -52,6 +50,24 @@ Save the file (upload if applicable). Now you should have a breadcrumb trail on
52
  Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/ "Go to Breadcrumb NavXT's Documentation.") page for more information.
53
 
54
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  = 5.0.1 =
56
  * Behavior Change: Notify multisite users when settings may be overridden by the network settings and vice versa.
57
  * Bug fix: Updated tab style to match WordPress 3.8 look and feel.
@@ -253,5 +269,8 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
253
 
254
  == Upgrade Notice ==
255
 
 
 
 
256
  = 5.0.0 =
257
  This version is for the developers, those who like to extend things gracefully. Several new hooks were introduced, while others were tweaked to be more useful. If you have WordPress setup as a multisite install/in network mode, the new Breadcrumb NavXT network settings page will take priority over the individual sub site settings pages. This is a major change from previous versions. See [Controlling Breadcrumb NavXT Settings From the Network Settings Page](http://mtekk.us/archives/guides/controlling-breadcrumb-navxt-settings-from-the-network-settings-page/"Go to the article on controlling the settings hierarchy") for more information on the new settings modes.
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.7
6
+ Tested up to: 3.9.1
7
+ Stable tag: 5.1.0
8
  License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
21
  * Catalan by Christian Eduardo
22
  * German by Daniel Lang
23
  * French (France) by Emmanuel Beziat, Erwan Lescop, and Serge Rauber
 
24
  * Turkish by Hakan Er
25
  * Czech by jakubmachala
26
  * Norwegian (Bokmål) by Jan Rosvoldsve
27
  * Danish by Joachim Jensen
28
  * Lithuanian by Johannes Rau
29
  * Spanish (Spain) by Karin Sequen
 
30
  * Portuguese (Portugal) by Luís Rodrigues
31
  * Estonian by Martin Orn
32
  * Swedish by Patrik Spathon
33
  * Dutch by Renée Klein
34
  * Italian by Tamara Balestri
35
  * Finnish by Ville Pilvio
36
+ * Chinese (China) by Amos Lee
37
 
38
  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").
39
 
50
  Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/ "Go to Breadcrumb NavXT's Documentation.") page for more information.
51
 
52
  == Changelog ==
53
+ = 5.1.0 =
54
+ * Behavior change: `bcn_breadcrumb_trail::do_post()` now expects to be passed in a valid WP_Post object.
55
+ * Behavior change: `breadcrumb_navxt::version` changed to a constant to allow uninstantiated access of the plugin version.
56
+ * New feature: Support Google's RDFa Breadcrumbs microformat by default.
57
+ * New feature: Added `bcn_opts_update_prebk` filter.
58
+ * Bug fix: Validate HTML5 options on tab traversal.
59
+ * Bug fix: Fixed issue where the settings importer parsed the version string incorrectly.
60
+ * Bug fix: Added 'typeof' to list of valid HTML tag attributes.
61
+ * Bug fix: Prefixed all taxonomies with 'tax_' to prevent name collisions.
62
+ * Bug fix: Added ID to Post and Taxonomy Term Elements in `bcn_breadcrumb_trail::do_root()` as is done everywhere else.
63
+ * Bug fix: Fixed issue with `bcn_breadcrumb_trail::do_author()` returning the incorrect user under some circumstances.
64
+ * Bug fix: Fixed issue where saving twice on a tab in the settings page would cause the next page load to open the general tab rather than the current tab.
65
+ * Bug fix: Added bcn_breadcrumb_template filter back into `bcn_breadcrumb::set_template()`, was a regression in 5.0 from 4.4.
66
+ * Bug fix: Fixed issue where the included widget did not check against default settings, causing PHP Warnings to show up on the frontend under some circumstances.
67
+ * Bug fix: Fixed issue where we didn't handle `WP_POST::has_archive` correctly when it was a string, causing issues with CPTs generated by some plugins.
68
+ * Bug fix: Fixed issue where the default taxonomy selected for a CPT could be a non-public taxonomy.
69
+ * Bug fix: Attachments get their own title within the settings page now.
70
+ * Bug fix: Filter the title and pre text in the widget.
71
  = 5.0.1 =
72
  * Behavior Change: Notify multisite users when settings may be overridden by the network settings and vice versa.
73
  * Bug fix: Updated tab style to match WordPress 3.8 look and feel.
269
 
270
  == Upgrade Notice ==
271
 
272
+ = 5.1.0 =
273
+ This version fixes a ton of bugs, plus adds a new filter and features support for RDFa Breadcrumb by default.
274
+
275
  = 5.0.0 =
276
  This version is for the developers, those who like to extend things gracefully. Several new hooks were introduced, while others were tweaked to be more useful. If you have WordPress setup as a multisite install/in network mode, the new Breadcrumb NavXT network settings page will take priority over the individual sub site settings pages. This is a major change from previous versions. See [Controlling Breadcrumb NavXT Settings From the Network Settings Page](http://mtekk.us/archives/guides/controlling-breadcrumb-navxt-settings-from-the-network-settings-page/"Go to the article on controlling the settings hierarchy") for more information on the new settings modes.