Breadcrumb NavXT - Version 4.0.0

Version Description

  • Behavior change: Prefix, suffix, and anchor settings have been replaced with templates for all breadcrumb types.
  • Behavior change: bcn_display_nested function was removed from the main plugin. Will appear in a supplementary plugin.
  • Behavior change: Import/Export/Reset tab moved under the admin bar Help menu.
  • Behavior change: Paged breadcrumbs are enabled in the default settings, among other subtle changes.
  • New feature: More useful Help menu, utilizing the new WordPress 3.3 Help menu.
  • New feature: True URLs are now generated for current items when link current item is enabled.
  • New feature: The display of the custom post type archive breadcrumb for custom post types may now be disabled.
  • New feature: Added in fallback functions for PHPs multibyte character string functions for environments that do not have multibyte character support.
  • Bug fix: Custom post type archives now respect the root page setting.
  • Bug fix: Custom post types without WordPress post archives enabled will no longer cause a double root page breadcrumb to be generated.
  • Bug fix: Tabs on the settings page are now rounded for all modern browsers, including Firefox, Chrome, and IE9.
  • Bug fix: Tabs on the settings page are now remembered between setting saves (including multiple saves from within the same tab).
  • Bug fix: Fixed another cause of the The following settings were not saved error message.
Download this release

Release Info

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

Code changes from version 4.0.0-Beta1 to 4.0.0

breadcrumb_navxt_admin.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Breadcrumb NavXT
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
- Version: 3.9.80 Beta 1
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
@@ -42,6 +42,10 @@ if(version_compare(phpversion(), '5.2.0', '<'))
42
  }
43
  return;
44
  }
 
 
 
 
45
  //Include the breadcrumb class
46
  require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
47
  //Include the WP 2.8+ widget class
@@ -57,7 +61,7 @@ if(!class_exists('mtekk_adminKit'))
57
  */
58
  class bcn_admin extends mtekk_adminKit
59
  {
60
- protected $version = '3.99.80';
61
  protected $full_name = 'Breadcrumb NavXT Settings';
62
  protected $short_name = 'Breadcrumb NavXT';
63
  protected $access_level = 'manage_options';
@@ -139,24 +143,24 @@ class bcn_admin extends mtekk_adminKit
139
  //Handle all of our boolean options first, they're real easy, just add a 'b'
140
  if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
141
  {
142
- $this->breadcrumb_trail->opt['b'.$option] = $this->opt[$option];
143
  }
144
  //Handle migration of anchor templates to the templates
145
  else if(strpos($option, 'anchor') > 0)
146
  {
147
  $parts = explode('_', $option);
148
  //Do excess slash removal sanitation
149
- $this->breadcrumb_trail->opt['H' . $parts[0] . '_template'] = $this->opt[$option] . '%htitle%</a>';
150
  }
151
  //Handle our abs integers
152
  else if($option == 'max_title_length' || $option == 'post_post_root' || $option == 'post_page_root')
153
  {
154
- $this->breadcrumb_trail->opt['a' . $option] = $this->opt[$option];
155
  }
156
  //Now everything else, minus prefix and suffix
157
  else if(strpos($option, 'prefix') === false && strpos($option, 'suffix') === false)
158
  {
159
- $this->breadcrumb_trail->opt['S' . $option] = $this->opt[$option];
160
  }
161
  }
162
  }
@@ -172,6 +176,10 @@ class bcn_admin extends mtekk_adminKit
172
  }
173
  $opts = $this->breadcrumb_trail->opt;
174
  }
 
 
 
 
175
  //Save the passed in opts to the object's option array
176
  $this->opt = $opts;
177
  }
@@ -185,6 +193,11 @@ class bcn_admin extends mtekk_adminKit
185
  function help()
186
  {
187
  $screen = get_current_screen();
 
 
 
 
 
188
  //Add contextual help on current screen
189
  if($screen->id == 'settings_page_' . $this->identifier)
190
  {
@@ -195,7 +208,7 @@ class bcn_admin extends mtekk_adminKit
195
  sprintf(__('%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.', $this->identifier),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb_navxt') . '" href="http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this->version . '/#respond">', '</a>') . '</li></ul>' .
196
  '<h5>' . __('Giving Back', $this->identifier) . '</h5><ul><li>' .
197
  sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', $this->identifier),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb_navxt') . '" href="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">', '</a>') . '</li><li>' .
198
- sprintf(__('%sTranslate%s: Is your language not available? Contact John Havlik to get translating.', $this->identifier),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb_navxt') . '" href="">', '</a>') . '</li></ul>';
199
 
200
  $screen->add_help_tab(
201
  array(
3
  Plugin Name: Breadcrumb NavXT
4
  Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
  Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
+ Version: 4.0.0
7
  Author: John Havlik
8
  Author URI: http://mtekk.us/
9
  License: GPL2
42
  }
43
  return;
44
  }
45
+ if(!function_exists('mb_strlen'))
46
+ {
47
+ require_once(dirname(__FILE__) . '/includes/multibyte_supplicant.php');
48
+ }
49
  //Include the breadcrumb class
50
  require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
51
  //Include the WP 2.8+ widget class
61
  */
62
  class bcn_admin extends mtekk_adminKit
63
  {
64
+ protected $version = '4.0.0';
65
  protected $full_name = 'Breadcrumb NavXT Settings';
66
  protected $short_name = 'Breadcrumb NavXT';
67
  protected $access_level = 'manage_options';
143
  //Handle all of our boolean options first, they're real easy, just add a 'b'
144
  if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
145
  {
146
+ $this->breadcrumb_trail->opt['b'.$option] = $value;
147
  }
148
  //Handle migration of anchor templates to the templates
149
  else if(strpos($option, 'anchor') > 0)
150
  {
151
  $parts = explode('_', $option);
152
  //Do excess slash removal sanitation
153
+ $this->breadcrumb_trail->opt['H' . $parts[0] . '_template'] = $value . '%htitle%</a>';
154
  }
155
  //Handle our abs integers
156
  else if($option == 'max_title_length' || $option == 'post_post_root' || $option == 'post_page_root')
157
  {
158
+ $this->breadcrumb_trail->opt['a' . $option] = $value;
159
  }
160
  //Now everything else, minus prefix and suffix
161
  else if(strpos($option, 'prefix') === false && strpos($option, 'suffix') === false)
162
  {
163
+ $this->breadcrumb_trail->opt['S' . $option] = $value;
164
  }
165
  }
166
  }
176
  }
177
  $opts = $this->breadcrumb_trail->opt;
178
  }
179
+ //Add custom post types
180
+ $this->find_posttypes($opts);
181
+ //Add custom taxonomy types
182
+ $this->find_taxonomies($opts);
183
  //Save the passed in opts to the object's option array
184
  $this->opt = $opts;
185
  }
193
  function help()
194
  {
195
  $screen = get_current_screen();
196
+ //Exit early if the add_help_tab function doesn't exist
197
+ if(!method_exists($screen, 'add_help_tab'))
198
+ {
199
+ return;
200
+ }
201
  //Add contextual help on current screen
202
  if($screen->id == 'settings_page_' . $this->identifier)
203
  {
208
  sprintf(__('%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.', $this->identifier),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb_navxt') . '" href="http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this->version . '/#respond">', '</a>') . '</li></ul>' .
209
  '<h5>' . __('Giving Back', $this->identifier) . '</h5><ul><li>' .
210
  sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', $this->identifier),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb_navxt') . '" href="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">', '</a>') . '</li><li>' .
211
+ sprintf(__('%sTranslate%s: Is your language not available? Contact John Havlik to get translating.', $this->identifier),'<a title="' . __('Go to the Breadcrumb NavXT translation project.', 'breadcrumb_navxt') . '" href="http://translate.mtekk.us/projects/breadcrumb-navxt">', '</a>') . '</li></ul>';
212
 
213
  $screen->add_help_tab(
214
  array(
breadcrumb_navxt_class.php CHANGED
@@ -185,7 +185,7 @@ class bcn_breadcrumb
185
  class bcn_breadcrumb_trail
186
  {
187
  //Our member variables
188
- private $version = '3.99.80';
189
  //An array of breadcrumbs
190
  public $trail = array();
191
  //The options
@@ -311,6 +311,7 @@ class bcn_breadcrumb_trail
311
  {
312
  $this->trail[] = $object;
313
  //Return the just added object
 
314
  return $this->trail[count($this->trail) - 1];
315
  }
316
  /**
185
  class bcn_breadcrumb_trail
186
  {
187
  //Our member variables
188
+ private $version = '4.0.0';
189
  //An array of breadcrumbs
190
  public $trail = array();
191
  //The options
311
  {
312
  $this->trail[] = $object;
313
  //Return the just added object
314
+ //TODO: investigate using the key function here
315
  return $this->trail[count($this->trail) - 1];
316
  }
317
  /**
includes/multibyte_supplicant.php ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
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-2011 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
10
+ the Free Software Foundation; either version 2 of the License, or
11
+ (at your option) any later version.
12
+
13
+ This program is distributed in the hope that it will be useful,
14
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ GNU General Public License for more details.
17
+
18
+ You should have received a copy of the GNU General Public License
19
+ along with this program; if not, write to the Free Software
20
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
+ */
22
+ if(!function_exists('mb_strlen'))
23
+ {
24
+ /**
25
+ * Fallback for mb_strlen for users without multibyte support
26
+ *
27
+ * @param string $string the string to determine the lenght of
28
+ * @return int the number of characters in the string
29
+ */
30
+ function mb_strlen($string)
31
+ {
32
+ return strlen($string);
33
+ }
34
+ }
35
+ if(!function_exists('mb_strpos'))
36
+ {
37
+ /**
38
+ * Fallback for mb_strpos for users without multibyte support
39
+ *
40
+ * @param string $haystack the string to search within
41
+ * @param string $needle the string to search for
42
+ * @return mixed position of the first instances of needle, or false if needle not found
43
+ */
44
+ function mb_strpos($haystack, $needle, $offset = 0)
45
+ {
46
+ return strpos($haystack, $needle, $offset);
47
+ }
48
+ }
49
+ if(!function_exists('mb_substr'))
50
+ {
51
+ /**
52
+ * Fallback for mb_substr for users without multibyte support
53
+ *
54
+ * @param string $string the input string
55
+ * @param int $start the start
56
+ * @param int length the length of the substring
57
+ * @return string the substring of specified length
58
+ */
59
+ function mb_substr($string, $start, $length = 'a')
60
+ {
61
+ //This happens to be the easiest way to preserve the behavior of substr
62
+ if($length = 'a')
63
+ {
64
+ return substr($string, $start);
65
+ }
66
+ else
67
+ {
68
+ return substr($string, $start, $length);
69
+ }
70
+ }
71
+ }
72
+ //We need this constant to be defined, otherwise things will break
73
+ if(!defined('MB_CASE_TITLE'))
74
+ {
75
+ define('MB_CASE_TITLE', '1');
76
+ }
77
+ if(!function_exists('mb_convert_case'))
78
+ {
79
+ /**
80
+ * A very hacky fallback for mb_convert_case for users without multibyte support
81
+ *
82
+ * @param string $str the string to change the case on
83
+ * @param int $mode the mode of case convert to use
84
+ * @param string $encoding the encoding of the string
85
+ * @return string the case converted string
86
+ */
87
+ function mb_convert_case($str, $mode = MB_CASE_TITLE, $encoding = 'UTF-8')
88
+ {
89
+ //Only implementing MB_CASE_TITLE
90
+ if($mode = MB_CASE_TITLE)
91
+ {
92
+ return ucwords($str);
93
+ }
94
+ return $str;
95
+ }
96
+ }
languages/breadcrumb-navxt-es.mo ADDED
Binary file
languages/breadcrumb-navxt-es.po ADDED
@@ -0,0 +1,709 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 2011-12-15 03:21:10+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:32
14
+ msgid "Adds a breadcrumb trail to your sidebar"
15
+ msgstr "Agrega una ruta de navegación en su barra lateral"
16
+
17
+ #: breadcrumb_navxt_widget.php:93
18
+ msgid "Title:"
19
+ msgstr "Título:"
20
+
21
+ #: breadcrumb_navxt_widget.php:97
22
+ msgid "Output trail as:"
23
+ msgstr "Mostrar ruta como:"
24
+
25
+ #: breadcrumb_navxt_widget.php:99
26
+ msgid "List"
27
+ msgstr "Lista"
28
+
29
+ #: breadcrumb_navxt_widget.php:100
30
+ msgid "RDFa"
31
+ msgstr "RDFa"
32
+
33
+ #: breadcrumb_navxt_widget.php:101
34
+ msgid "Microformat"
35
+ msgstr "Microformato"
36
+
37
+ #: breadcrumb_navxt_widget.php:102
38
+ msgid "Plain"
39
+ msgstr "Texto plano"
40
+
41
+ #: breadcrumb_navxt_widget.php:107
42
+ msgid "Link the breadcrumbs"
43
+ msgstr "Enlace a la Ruta"
44
+
45
+ #: breadcrumb_navxt_widget.php:109
46
+ msgid "Reverse the order of the trail"
47
+ msgstr "Invertir el orden de la ruta"
48
+
49
+ #: breadcrumb_navxt_widget.php:111
50
+ msgid "Hide the trail on the front page"
51
+ msgstr "Ocultar la ruta de la página principal"
52
+
53
+ #: breadcrumb_navxt_admin.php:36
54
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
55
+ msgstr "Su versión de PHP es obsoleta, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
56
+
57
+ #: breadcrumb_navxt_admin.php:113
58
+ msgid "Insufficient privileges to proceed."
59
+ msgstr "No tiene privilegios para proceder."
60
+
61
+ #: breadcrumb_navxt_admin.php:204
62
+ msgid "Tips for the settings are located below select options."
63
+ msgstr "Encontrará tips para los ajustes debajo de cada opción."
64
+
65
+ #: breadcrumb_navxt_admin.php:205
66
+ msgid "Resources"
67
+ msgstr "Recursos"
68
+
69
+ #: breadcrumb_navxt_admin.php:206
70
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
71
+ msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
72
+
73
+ #: breadcrumb_navxt_admin.php:206
74
+ msgid "Go to the Breadcrumb NavXT tag archive."
75
+ msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
76
+
77
+ #: breadcrumb_navxt_admin.php:207
78
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
79
+ msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
80
+
81
+ #: breadcrumb_navxt_admin.php:207
82
+ msgid "Go to the Breadcrumb NavXT online documentation"
83
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
84
+
85
+ #: breadcrumb_navxt_admin.php:208
86
+ 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."
87
+ 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."
88
+
89
+ #: breadcrumb_navxt_admin.php:208 breadcrumb_navxt_admin.php:211
90
+ msgid "Go to the Breadcrumb NavXT support post for your version."
91
+ msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
92
+
93
+ #: breadcrumb_navxt_admin.php:209
94
+ msgid "Giving Back"
95
+ msgstr "Dar de vuelta"
96
+
97
+ #: breadcrumb_navxt_admin.php:210
98
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
99
+ msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
100
+
101
+ #: breadcrumb_navxt_admin.php:210
102
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
103
+ msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
104
+
105
+ #: breadcrumb_navxt_admin.php:211
106
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
107
+ msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
108
+
109
+ #: breadcrumb_navxt_admin.php:216 breadcrumb_navxt_admin.php:307
110
+ msgid "General"
111
+ msgstr "General"
112
+
113
+ #: breadcrumb_navxt_admin.php:219
114
+ 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."
115
+ 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."
116
+
117
+ #: breadcrumb_navxt_admin.php:220
118
+ msgid "Breadcrumb trail with separators"
119
+ msgstr "Ruta de Navegación con Separadores"
120
+
121
+ #: breadcrumb_navxt_admin.php:226
122
+ msgid "Breadcrumb trail in list form"
123
+ msgstr "Ruta de Navegación como Listado"
124
+
125
+ #: breadcrumb_navxt_admin.php:235
126
+ msgid "Quick Start"
127
+ msgstr "Inicio Rápido"
128
+
129
+ #: breadcrumb_navxt_admin.php:238
130
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
131
+ 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."
132
+
133
+ #: breadcrumb_navxt_admin.php:250
134
+ msgid "Styling"
135
+ msgstr "Estilo"
136
+
137
+ #: breadcrumb_navxt_admin.php:256
138
+ msgid "Import/Export/Reset"
139
+ msgstr "Importar/Exportar/Reiniciar"
140
+
141
+ #: breadcrumb_navxt_admin.php:280 includes/mtekk_adminkit.php:765
142
+ msgid "Import"
143
+ msgstr "Importar"
144
+
145
+ #: breadcrumb_navxt_admin.php:281 includes/mtekk_adminkit.php:766
146
+ msgid "Export"
147
+ msgstr "Exportar"
148
+
149
+ #: breadcrumb_navxt_admin.php:282 includes/mtekk_adminkit.php:767
150
+ msgid "Reset"
151
+ msgstr "Reiniciar"
152
+
153
+ #: breadcrumb_navxt_admin.php:295
154
+ msgid "Breadcrumb NavXT Settings"
155
+ msgstr "Opciones de Configuración de Breadcrumb NavXT"
156
+
157
+ #: breadcrumb_navxt_admin.php:310
158
+ msgid "Breadcrumb Separator"
159
+ msgstr "Separador de Navegación"
160
+
161
+ #: breadcrumb_navxt_admin.php:310
162
+ msgid "Placed in between each breadcrumb."
163
+ msgstr "Colocado en medio de cada opción de navegación."
164
+
165
+ #: breadcrumb_navxt_admin.php:311
166
+ msgid "Breadcrumb Max Title Length"
167
+ msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
168
+
169
+ #: breadcrumb_navxt_admin.php:315
170
+ msgid "Home Breadcrumb"
171
+ msgstr "Incluir Inicio"
172
+
173
+ #: breadcrumb_navxt_admin.php:320
174
+ msgid "Place the home breadcrumb in the trail."
175
+ msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
176
+
177
+ #: breadcrumb_navxt_admin.php:325
178
+ msgid "Home Title: "
179
+ msgstr "Título de Página de Inicio:"
180
+
181
+ #: breadcrumb_navxt_admin.php:333
182
+ msgid "Home Template"
183
+ msgstr "Plantilla de la Página de Inicio"
184
+
185
+ #: breadcrumb_navxt_admin.php:333
186
+ msgid "The template for the home breadcrumb."
187
+ msgstr "La plantilla de la ruta de navegación para la página de inicio."
188
+
189
+ #: breadcrumb_navxt_admin.php:334
190
+ msgid "Home Template (Unlinked)"
191
+ msgstr "Plantilla de la Página de Inicio (sin vínculo)"
192
+
193
+ #: breadcrumb_navxt_admin.php:334
194
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
195
+ msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
196
+
197
+ #: breadcrumb_navxt_admin.php:335
198
+ msgid "Blog Breadcrumb"
199
+ msgstr "Incluir Inicio (del Blog)"
200
+
201
+ #: breadcrumb_navxt_admin.php:335
202
+ msgid "Place the blog breadcrumb in the trail."
203
+ msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
204
+
205
+ #: breadcrumb_navxt_admin.php:336
206
+ msgid "Blog Template"
207
+ msgstr "Plantilla del Blog"
208
+
209
+ #: breadcrumb_navxt_admin.php:336
210
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
211
+ msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática."
212
+
213
+ #: breadcrumb_navxt_admin.php:337
214
+ msgid "Blog Template (Unlinked)"
215
+ msgstr "Plantilla del Blog (sin vínculo)"
216
+
217
+ #: breadcrumb_navxt_admin.php:337
218
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
219
+ 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."
220
+
221
+ #: breadcrumb_navxt_admin.php:341
222
+ msgid "Main Site Breadcrumb"
223
+ msgstr "Ruta del Sitio Principal"
224
+
225
+ #: breadcrumb_navxt_admin.php:346
226
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
227
+ 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."
228
+
229
+ #: breadcrumb_navxt_admin.php:351
230
+ msgid "Main Site Home Title: "
231
+ msgstr "Título de Página de Inicio del Sitio Principal: "
232
+
233
+ #: breadcrumb_navxt_admin.php:360
234
+ msgid "Main Site Home Template"
235
+ msgstr "Plantilla de Inicio del Sitio Principal"
236
+
237
+ #: breadcrumb_navxt_admin.php:360
238
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
239
+ msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
240
+
241
+ #: breadcrumb_navxt_admin.php:361
242
+ msgid "Main Site Home Template (Unlinked)"
243
+ msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
244
+
245
+ #: breadcrumb_navxt_admin.php:361
246
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
247
+ 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."
248
+
249
+ #: breadcrumb_navxt_admin.php:366
250
+ msgid "Current Item"
251
+ msgstr "Item Actual"
252
+
253
+ #: breadcrumb_navxt_admin.php:369
254
+ msgid "Link Current Item"
255
+ msgstr "Incluir Vínculo a Item Actual"
256
+
257
+ #: breadcrumb_navxt_admin.php:369
258
+ msgid "Yes"
259
+ msgstr "Sí"
260
+
261
+ #: breadcrumb_navxt_admin.php:370
262
+ msgid "Current Item Template"
263
+ msgstr "Plantilla de Item Actual"
264
+
265
+ #: breadcrumb_navxt_admin.php:370
266
+ msgid "The template for current item breadcrumbs."
267
+ msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
268
+
269
+ #: breadcrumb_navxt_admin.php:371
270
+ msgid "Current Item Template (Unlinked)"
271
+ msgstr "Plantilla del Item Actual (sin vínculo)"
272
+
273
+ #: breadcrumb_navxt_admin.php:371
274
+ msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
275
+ msgstr "Plantilla del elemento actual en la ruta de navegación, utilizado sólo cuando éste no está enlazado."
276
+
277
+ #: breadcrumb_navxt_admin.php:372
278
+ msgid "Paged Breadcrumb"
279
+ msgstr "Ruta de Navegación Paginada"
280
+
281
+ #: breadcrumb_navxt_admin.php:372
282
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
283
+ msgstr "Incluir la navegación paginada en la ruta de navegación"
284
+
285
+ #: breadcrumb_navxt_admin.php:372
286
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
287
+ msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
288
+
289
+ #: breadcrumb_navxt_admin.php:373
290
+ msgid "Paged Template"
291
+ msgstr "Plantilla de Entrada Paginada"
292
+
293
+ #: breadcrumb_navxt_admin.php:373
294
+ msgid "The template for paged breadcrumbs."
295
+ msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
296
+
297
+ #: breadcrumb_navxt_admin.php:378
298
+ msgid "Posts &amp; Pages"
299
+ msgstr "Entradas &amp; Páginas"
300
+
301
+ #: breadcrumb_navxt_admin.php:381
302
+ msgid "Post Template"
303
+ msgstr "Plantilla de Entradas"
304
+
305
+ #: breadcrumb_navxt_admin.php:381
306
+ msgid "The template for post breadcrumbs."
307
+ msgstr "La plantilla de la ruta de navegación para entradas."
308
+
309
+ #: breadcrumb_navxt_admin.php:382
310
+ msgid "Post Template (Unlinked)"
311
+ msgstr "Plantilla de la Entrada (sin vínculo)"
312
+
313
+ #: breadcrumb_navxt_admin.php:382
314
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
315
+ msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
316
+
317
+ #: breadcrumb_navxt_admin.php:383
318
+ msgid "Post Taxonomy Display"
319
+ msgstr "Mostrar Clasificación de Entradas"
320
+
321
+ #: breadcrumb_navxt_admin.php:383
322
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
323
+ msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
324
+
325
+ #: breadcrumb_navxt_admin.php:387
326
+ msgid "Post Taxonomy"
327
+ msgstr "Clasificación de Entradas"
328
+
329
+ #: breadcrumb_navxt_admin.php:391
330
+ msgid "Categories"
331
+ msgstr "Categorías"
332
+
333
+ #: breadcrumb_navxt_admin.php:392 breadcrumb_navxt_admin.php:490
334
+ msgid "Dates"
335
+ msgstr "Fechas"
336
+
337
+ #: breadcrumb_navxt_admin.php:393
338
+ msgid "Tags"
339
+ msgstr "Etiquetas"
340
+
341
+ #: breadcrumb_navxt_admin.php:394 breadcrumb_navxt_admin.php:491
342
+ msgid "Pages"
343
+ msgstr "Páginas"
344
+
345
+ #: breadcrumb_navxt_admin.php:405 breadcrumb_navxt_admin.php:502
346
+ msgid "The taxonomy which the breadcrumb trail will show."
347
+ msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
348
+
349
+ #: breadcrumb_navxt_admin.php:409
350
+ msgid "Page Template"
351
+ msgstr "Plantilla de la Página"
352
+
353
+ #: breadcrumb_navxt_admin.php:409
354
+ msgid "The template for page breadcrumbs."
355
+ msgstr "La plantilla de la ruta de navegación para páginas."
356
+
357
+ #: breadcrumb_navxt_admin.php:410
358
+ msgid "Page Template (Unlinked)"
359
+ msgstr "Plantilla de la Página (sin vínculo)"
360
+
361
+ #: breadcrumb_navxt_admin.php:410
362
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
363
+ msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
364
+
365
+ #: breadcrumb_navxt_admin.php:411
366
+ msgid "Attachment Template"
367
+ msgstr "Plantilla de Archivo Adjunto"
368
+
369
+ #: breadcrumb_navxt_admin.php:411
370
+ msgid "The template for attachment breadcrumbs."
371
+ msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
372
+
373
+ #: breadcrumb_navxt_admin.php:412
374
+ msgid "Attachment Template (Unlinked)"
375
+ msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
376
+
377
+ #: breadcrumb_navxt_admin.php:412
378
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
379
+ msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
380
+
381
+ #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:600
382
+ #: breadcrumb_navxt_class.php:56 breadcrumb_navxt_class.php:205
383
+ #: breadcrumb_navxt_class.php:213 breadcrumb_navxt_class.php:219
384
+ #: breadcrumb_navxt_class.php:235 breadcrumb_navxt_class.php:247
385
+ #: breadcrumb_navxt_class.php:259
386
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
387
+ msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">%htitle%</a>"
388
+
389
+ #: breadcrumb_navxt_admin.php:428 breadcrumb_navxt_admin.php:601
390
+ msgid "%htitle%"
391
+ msgstr "%htitle%"
392
+
393
+ #: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
394
+ msgid "%s Template"
395
+ msgstr "Plantilla de %s"
396
+
397
+ #: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
398
+ msgid "The template for %s breadcrumbs."
399
+ msgstr "La plantilla de la ruta de navegación para %s."
400
+
401
+ #: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
402
+ msgid "%s Template (Unlinked)"
403
+ msgstr "Plantilla de %s (sin vínculo)"
404
+
405
+ #: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
406
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
407
+ msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
408
+
409
+ #: breadcrumb_navxt_admin.php:471
410
+ msgid "%s Root Page"
411
+ msgstr "%s Página Raíz"
412
+
413
+ #: breadcrumb_navxt_admin.php:474
414
+ msgid "&mdash; Select &mdash;"
415
+ msgstr "&mdash; Seleccione &mdash;"
416
+
417
+ #: breadcrumb_navxt_admin.php:478
418
+ msgid "%s Archive Display"
419
+ msgstr "Despliegue de Archivos de %s"
420
+
421
+ #: breadcrumb_navxt_admin.php:478
422
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
423
+ msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
424
+
425
+ #: breadcrumb_navxt_admin.php:482
426
+ msgid "%s Taxonomy Display"
427
+ msgstr "%s Despliegue de Clasificación"
428
+
429
+ #: breadcrumb_navxt_admin.php:482
430
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
431
+ msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
432
+
433
+ #: breadcrumb_navxt_admin.php:486
434
+ msgid "%s Taxonomy"
435
+ msgstr "%s Clasificación"
436
+
437
+ #: breadcrumb_navxt_admin.php:512
438
+ msgid "Categories &amp; Tags"
439
+ msgstr "Categorías &amp; Etiquetas"
440
+
441
+ #: breadcrumb_navxt_admin.php:515
442
+ msgid "Category Template"
443
+ msgstr "Plantilla de Categoría"
444
+
445
+ #: breadcrumb_navxt_admin.php:515
446
+ msgid "The template for category breadcrumbs."
447
+ msgstr "La plantilla de la ruta de navegación para categorías."
448
+
449
+ #: breadcrumb_navxt_admin.php:516
450
+ msgid "Category Template (Unlinked)"
451
+ msgstr "Plantilla de la Categoría (sin vínculo)"
452
+
453
+ #: breadcrumb_navxt_admin.php:516
454
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
455
+ msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
456
+
457
+ #: breadcrumb_navxt_admin.php:517
458
+ msgid "Tag Template"
459
+ msgstr "Plantilla de la Etiqueta"
460
+
461
+ #: breadcrumb_navxt_admin.php:517
462
+ msgid "The template for tag breadcrumbs."
463
+ msgstr "La plantilla de la ruta de navegación para etiquetas."
464
+
465
+ #: breadcrumb_navxt_admin.php:518
466
+ msgid "Tag Template (Unlinked)"
467
+ msgstr "Plantilla de la Etiqueta (sin vínculo)"
468
+
469
+ #: breadcrumb_navxt_admin.php:518
470
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
471
+ msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
472
+
473
+ #: breadcrumb_navxt_admin.php:551
474
+ msgid "Miscellaneous"
475
+ msgstr "Misceláneos"
476
+
477
+ #: breadcrumb_navxt_admin.php:554
478
+ msgid "Author Template"
479
+ msgstr "Plantilla de Autor"
480
+
481
+ #: breadcrumb_navxt_admin.php:554
482
+ msgid "The template for author breadcrumbs."
483
+ msgstr "La plantilla de la ruta de navegación para autores."
484
+
485
+ #: breadcrumb_navxt_admin.php:555
486
+ msgid "Author Template (Unlinked)"
487
+ msgstr "Plantilla del Autor (sin vínculo)"
488
+
489
+ #: breadcrumb_navxt_admin.php:555
490
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
491
+ msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
492
+
493
+ #: breadcrumb_navxt_admin.php:556
494
+ msgid "Author Display Format"
495
+ msgstr "Formato de Despliegue de Autor"
496
+
497
+ #: breadcrumb_navxt_admin.php:556
498
+ 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."
499
+ 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."
500
+
501
+ #: breadcrumb_navxt_admin.php:557
502
+ msgid "Date Template"
503
+ msgstr "Plantilla de la Fecha"
504
+
505
+ #: breadcrumb_navxt_admin.php:557
506
+ msgid "The template for date breadcrumbs."
507
+ msgstr "La plantilla de la ruta de navegación para fechas."
508
+
509
+ #: breadcrumb_navxt_admin.php:558
510
+ msgid "Date Template (Unlinked)"
511
+ msgstr "Plantilla de la Fecha (sin vínculo)"
512
+
513
+ #: breadcrumb_navxt_admin.php:558
514
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
515
+ msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
516
+
517
+ #: breadcrumb_navxt_admin.php:559
518
+ msgid "Search Template"
519
+ msgstr "Plantilla de la Búsqueda"
520
+
521
+ #: breadcrumb_navxt_admin.php:559
522
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
523
+ 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."
524
+
525
+ #: breadcrumb_navxt_admin.php:560
526
+ msgid "Search Template (Unlinked)"
527
+ msgstr "Plantilla de la Búsqueda (sin vínculo)"
528
+
529
+ #: breadcrumb_navxt_admin.php:560
530
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
531
+ 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."
532
+
533
+ #: breadcrumb_navxt_admin.php:561
534
+ msgid "404 Title"
535
+ msgstr "Título Error 404"
536
+
537
+ #: breadcrumb_navxt_admin.php:562
538
+ msgid "404 Template"
539
+ msgstr "Plantilla de Error 404"
540
+
541
+ #: breadcrumb_navxt_admin.php:562
542
+ msgid "The template for 404 breadcrumbs."
543
+ msgstr "La plantilla para la ruta de la página de error 404."
544
+
545
+ #: breadcrumb_navxt_admin.php:567
546
+ msgid "Save Changes"
547
+ msgstr "Grabar Cambios"
548
+
549
+ #: includes/mtekk_adminkit.php:201
550
+ msgid "Settings"
551
+ msgstr "Configuraciones"
552
+
553
+ #: includes/mtekk_adminkit.php:271
554
+ msgid "Your settings are out of date."
555
+ msgstr "Sus ajustes están desactualizados."
556
+
557
+ #: includes/mtekk_adminkit.php:271
558
+ msgid "Migrate the settings now."
559
+ msgstr "Migrar los ajustes ahora."
560
+
561
+ #: includes/mtekk_adminkit.php:271
562
+ msgid "Migrate now."
563
+ msgstr "Migrar ahora."
564
+
565
+ #: includes/mtekk_adminkit.php:279
566
+ msgid "Your plugin install is incomplete."
567
+ msgstr "La instalación del plugin no se ha completado."
568
+
569
+ #: includes/mtekk_adminkit.php:279
570
+ msgid "Load default settings now."
571
+ msgstr "Cargar los ajustes predeterminados ahora."
572
+
573
+ #: includes/mtekk_adminkit.php:279
574
+ msgid "Complete now."
575
+ msgstr "Completar ahora."
576
+
577
+ #: includes/mtekk_adminkit.php:287
578
+ msgid "Your plugin settings are invalid."
579
+ msgstr "Los ajustes del plugin no son válidos."
580
+
581
+ #: includes/mtekk_adminkit.php:287
582
+ msgid "Attempt to fix settings now."
583
+ msgstr "Intentar arreglar los ajustes ahora."
584
+
585
+ #: includes/mtekk_adminkit.php:287
586
+ msgid "Fix now."
587
+ msgstr "Arreglar ahora."
588
+
589
+ #: includes/mtekk_adminkit.php:463
590
+ msgid "Settings successfully saved."
591
+ msgstr "Ajustes guardados exitosamente."
592
+
593
+ #: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
594
+ msgid "Undo the options save."
595
+ msgstr "Deshacer modificación de opciones."
596
+
597
+ #: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
598
+ #: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
599
+ #: includes/mtekk_adminkit.php:614
600
+ msgid "Undo"
601
+ msgstr "Deshacer"
602
+
603
+ #: includes/mtekk_adminkit.php:468
604
+ msgid "Some settings were not saved."
605
+ msgstr "Algunos ajustes no fueron grabados."
606
+
607
+ #: includes/mtekk_adminkit.php:469
608
+ msgid "The following settings were not saved:"
609
+ msgstr "Los siguientes ajustes no fueron grabados:"
610
+
611
+ #: includes/mtekk_adminkit.php:474
612
+ msgid "Please include this message in your %sbug report%s."
613
+ msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
614
+
615
+ #: includes/mtekk_adminkit.php:474
616
+ msgid "Go to the %s support post for your version."
617
+ msgstr "Ir a la documentación en línea de %s para su versión."
618
+
619
+ #: includes/mtekk_adminkit.php:573
620
+ msgid "Settings successfully imported from the uploaded file."
621
+ msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
622
+
623
+ #: includes/mtekk_adminkit.php:573
624
+ msgid "Undo the options import."
625
+ msgstr "Deshacer importación de opciones."
626
+
627
+ #: includes/mtekk_adminkit.php:578
628
+ msgid "Importing settings from file failed."
629
+ msgstr "Falló la importación de los ajustes desde el archivo."
630
+
631
+ #: includes/mtekk_adminkit.php:597
632
+ msgid "Settings successfully reset to the default values."
633
+ msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
634
+
635
+ #: includes/mtekk_adminkit.php:597
636
+ msgid "Undo the options reset."
637
+ msgstr "Deshacer reinicio de opciones."
638
+
639
+ #: includes/mtekk_adminkit.php:614
640
+ msgid "Settings successfully undid the last operation."
641
+ msgstr "Se deshizo exitosamente la operación anterior."
642
+
643
+ #: includes/mtekk_adminkit.php:614
644
+ msgid "Undo the last undo operation."
645
+ msgstr "Deshacer la última operación de \"deshacer\""
646
+
647
+ #: includes/mtekk_adminkit.php:649
648
+ msgid "Settings successfully migrated."
649
+ msgstr "Ajustes migrados exitosamente."
650
+
651
+ #: includes/mtekk_adminkit.php:656
652
+ msgid "Default settings successfully installed."
653
+ msgstr "Los ajustes predeterminados se instalaron exitosamente."
654
+
655
+ #: includes/mtekk_adminkit.php:757
656
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
657
+ 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."
658
+
659
+ #: includes/mtekk_adminkit.php:760
660
+ msgid "Settings File"
661
+ msgstr "Archivo de Ajustes"
662
+
663
+ #: includes/mtekk_adminkit.php:763
664
+ msgid "Select a XML settings file to upload and import settings from."
665
+ msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
666
+
667
+ #: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
668
+ msgid "Home"
669
+ msgstr "Inicio"
670
+
671
+ #: breadcrumb_navxt_class.php:230
672
+ msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
673
+ msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">%htitle%</a>"
674
+
675
+ #: breadcrumb_navxt_class.php:242
676
+ msgid "Page %htitle%"
677
+ msgstr "Página %htitle%"
678
+
679
+ #: breadcrumb_navxt_class.php:266
680
+ msgid "404"
681
+ msgstr "Página no encontrada"
682
+
683
+ #: breadcrumb_navxt_class.php:269
684
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>&#39;"
685
+ msgstr "Resultados de búsqueda para: <a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">%htitle%</a>&#39;"
686
+
687
+ #: breadcrumb_navxt_class.php:271
688
+ msgid "Search results for &#39;%htitle%&#39;"
689
+ msgstr "Resultados de búsqueda para &#39;%htitle%&#39;"
690
+
691
+ #: breadcrumb_navxt_class.php:274
692
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
693
+ msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">%htitle%</a>"
694
+
695
+ #: breadcrumb_navxt_class.php:279
696
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
697
+ msgstr "Artículos por: <a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">%htitle%</a>"
698
+
699
+ #: breadcrumb_navxt_class.php:281
700
+ msgid "Articles by: %htitle%"
701
+ msgstr "Artículos por: %htitle%"
702
+
703
+ #: breadcrumb_navxt_class.php:286
704
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
705
+ msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">%htitle%</a>"
706
+
707
+ #: breadcrumb_navxt_class.php:290
708
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
709
+ msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">%htitle%</a>"
languages/breadcrumb-navxt.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
- "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,749 +12,761 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: breadcrumb_navxt_widget.php:24
16
  msgid "Adds a breadcrumb trail to your sidebar"
17
  msgstr ""
18
 
19
- #: breadcrumb_navxt_widget.php:85
20
  msgid "Title:"
21
  msgstr ""
22
 
23
- #: breadcrumb_navxt_widget.php:89
24
  msgid "Output trail as:"
25
  msgstr ""
26
 
27
- #: breadcrumb_navxt_widget.php:91
28
  msgid "List"
29
  msgstr ""
30
 
31
- #: breadcrumb_navxt_widget.php:92
32
  msgid "RDFa"
33
  msgstr ""
34
 
35
- #: breadcrumb_navxt_widget.php:93
36
  msgid "Microformat"
37
  msgstr ""
38
 
39
- #: breadcrumb_navxt_widget.php:94
40
  msgid "Plain"
41
  msgstr ""
42
 
43
- #: breadcrumb_navxt_widget.php:99
44
  msgid "Link the breadcrumbs"
45
  msgstr ""
46
 
47
- #: breadcrumb_navxt_widget.php:101
48
  msgid "Reverse the order of the trail"
49
  msgstr ""
50
 
51
- #: breadcrumb_navxt_widget.php:103
52
  msgid "Hide the trail on the front page"
53
  msgstr ""
54
 
55
- #: mtekk_admin_class.php:59
56
- msgid "Undo"
 
 
57
  msgstr ""
58
 
59
- #: mtekk_admin_class.php:67 mtekk_admin_class.php:191
60
- msgid "Migrate now."
61
  msgstr ""
62
 
63
- #: mtekk_admin_class.php:164
64
- msgid "Settings"
65
  msgstr ""
66
 
67
- #: mtekk_admin_class.php:191
68
- msgid "Your settings are out of date."
69
  msgstr ""
70
 
71
- #: mtekk_admin_class.php:191
72
- msgid "Migrate the settings now."
 
 
73
  msgstr ""
74
 
75
- #: mtekk_admin_class.php:198
76
- msgid "Your plugin install is incomplete."
77
  msgstr ""
78
 
79
- #: mtekk_admin_class.php:198
80
- msgid "Load default settings now."
 
 
81
  msgstr ""
82
 
83
- #: mtekk_admin_class.php:198
84
- msgid "Complete now."
85
  msgstr ""
86
 
87
- #: mtekk_admin_class.php:311
88
- msgid "Settings successfully imported from the uploaded file."
 
 
89
  msgstr ""
90
 
91
- #: mtekk_admin_class.php:311
92
- msgid "Undo the options import."
93
  msgstr ""
94
 
95
- #: mtekk_admin_class.php:316
96
- msgid "Importing settings from file failed."
97
  msgstr ""
98
 
99
- #: mtekk_admin_class.php:335
100
- msgid "Settings successfully reset to the default values."
 
 
101
  msgstr ""
102
 
103
- #: mtekk_admin_class.php:335
104
- msgid "Undo the options reset."
105
  msgstr ""
106
 
107
- #: mtekk_admin_class.php:352
108
- msgid "Settings successfully undid the last operation."
 
 
109
  msgstr ""
110
 
111
- #: mtekk_admin_class.php:352
112
- msgid "Undo the last undo operation."
113
  msgstr ""
114
 
115
- #: mtekk_admin_class.php:387
116
- msgid "Settings successfully migrated."
 
 
 
117
  msgstr ""
118
 
119
- #: mtekk_admin_class.php:394
120
- msgid "Default settings successfully installed."
121
  msgstr ""
122
 
123
- #: mtekk_admin_class.php:425
124
- msgid "Get help with \"%s\""
125
  msgstr ""
126
 
127
- #: mtekk_admin_class.php:495
128
- msgid "Import/Export/Reset Settings"
129
  msgstr ""
130
 
131
- #: mtekk_admin_class.php:496
132
  msgid ""
133
- "Import settings from a XML file, export the current settings to a XML file, "
134
- "or reset to the default settings."
135
  msgstr ""
136
 
137
- #: mtekk_admin_class.php:499
138
- msgid "Settings File"
139
  msgstr ""
140
 
141
- #: mtekk_admin_class.php:502
142
- msgid "Select a XML settings file to upload and import settings from."
143
  msgstr ""
144
 
145
- #: mtekk_admin_class.php:504 breadcrumb_navxt_admin.php:423
146
  msgid "Import"
147
  msgstr ""
148
 
149
- #: mtekk_admin_class.php:505 breadcrumb_navxt_admin.php:423
150
  msgid "Export"
151
  msgstr ""
152
 
153
- #: mtekk_admin_class.php:506 breadcrumb_navxt_admin.php:423
154
  msgid "Reset"
155
  msgstr ""
156
 
157
- #: breadcrumb_navxt_admin.php:35
158
- msgid ""
159
- "Your PHP version is too old, please upgrade to a newer version. Your version "
160
- "is %s, Breadcrumb NavXT requires %s"
161
  msgstr ""
162
 
163
- #: breadcrumb_navxt_admin.php:112
164
- msgid "Insufficient privileges to proceed."
165
  msgstr ""
166
 
167
- #: breadcrumb_navxt_admin.php:217 breadcrumb_navxt_class.php:207
168
- msgid "Home"
169
  msgstr ""
170
 
171
- #: breadcrumb_navxt_admin.php:219 breadcrumb_navxt_admin.php:580
172
- #: breadcrumb_navxt_admin.php:773 breadcrumb_navxt_class.php:130
173
- #: breadcrumb_navxt_class.php:209 breadcrumb_navxt_class.php:219
174
- #: breadcrumb_navxt_class.php:223 breadcrumb_navxt_class.php:247
175
- #: breadcrumb_navxt_class.php:263
176
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
177
  msgstr ""
178
 
179
- #: breadcrumb_navxt_admin.php:304
180
- msgid "Settings successfully saved."
181
  msgstr ""
182
 
183
- #: breadcrumb_navxt_admin.php:304 breadcrumb_navxt_admin.php:309
184
- msgid "Undo the options save."
185
  msgstr ""
186
 
187
- #: breadcrumb_navxt_admin.php:309
188
- msgid "Some settings were not saved."
189
  msgstr ""
190
 
191
- #: breadcrumb_navxt_admin.php:310
192
- msgid "The following settings were not saved:"
193
  msgstr ""
194
 
195
- #: breadcrumb_navxt_admin.php:315
196
- msgid "Please include this message in your %sbug report%s."
197
  msgstr ""
198
 
199
- #: breadcrumb_navxt_admin.php:315 breadcrumb_navxt_admin.php:339
200
- msgid "Go to the Breadcrumb NavXT support post for your version."
201
  msgstr ""
202
 
203
- #: breadcrumb_navxt_admin.php:337
204
  msgid ""
205
- "Tips for the settings are located below select options. Please refer to the %"
206
- "sdocumentation%s for more information."
207
  msgstr ""
208
 
209
- #: breadcrumb_navxt_admin.php:338
210
- msgid "Go to the Breadcrumb NavXT online documentation"
211
  msgstr ""
212
 
213
- #: breadcrumb_navxt_admin.php:339
214
- msgid ""
215
- "If you think you have found a bug, please include your WordPress version and "
216
- "details on how to reproduce the bug when you %sreport the issue%s."
217
  msgstr ""
218
 
219
- #: breadcrumb_navxt_admin.php:340
220
- msgid "Quick Start Information"
221
  msgstr ""
222
 
223
- #: breadcrumb_navxt_admin.php:340
224
  msgid ""
225
- "For the settings on this page to take effect, you must either use the "
226
- "included Breadcrumb NavXT widget, or place either of the code sections below "
227
- "into your theme."
228
  msgstr ""
229
 
230
- #: breadcrumb_navxt_admin.php:341
231
- msgid "Breadcrumb trail with separators"
232
  msgstr ""
233
 
234
- #: breadcrumb_navxt_admin.php:342
235
- msgid "Breadcrumb trail in list form"
 
 
236
  msgstr ""
237
 
238
- #: breadcrumb_navxt_admin.php:445
239
- msgid "Breadcrumb NavXT Settings"
240
  msgstr ""
241
 
242
- #: breadcrumb_navxt_admin.php:453
243
- msgid "General"
244
  msgstr ""
245
 
246
- #: breadcrumb_navxt_admin.php:456
247
- msgid "Breadcrumb Separator"
248
  msgstr ""
249
 
250
- #: breadcrumb_navxt_admin.php:456
251
- msgid "Placed in between each breadcrumb."
252
  msgstr ""
253
 
254
- #: breadcrumb_navxt_admin.php:457
255
- msgid "Breadcrumb Max Title Length"
 
 
256
  msgstr ""
257
 
258
- #: breadcrumb_navxt_admin.php:461
259
- msgid "Home Breadcrumb"
260
  msgstr ""
261
 
262
- #: breadcrumb_navxt_admin.php:466
263
- msgid "Place the home breadcrumb in the trail."
 
 
264
  msgstr ""
265
 
266
- #: breadcrumb_navxt_admin.php:471
267
- msgid "Home Title: "
268
  msgstr ""
269
 
270
- #: breadcrumb_navxt_admin.php:479
271
- msgid "Home Prefix"
272
  msgstr ""
273
 
274
- #: breadcrumb_navxt_admin.php:480
275
- msgid "Home Suffix"
276
  msgstr ""
277
 
278
- #: breadcrumb_navxt_admin.php:481
279
- msgid "Home Anchor"
280
  msgstr ""
281
 
282
- #: breadcrumb_navxt_admin.php:481
283
- msgid "The anchor template for the home breadcrumb."
284
  msgstr ""
285
 
286
- #: breadcrumb_navxt_admin.php:482
287
- msgid "Blog Breadcrumb"
288
  msgstr ""
289
 
290
- #: breadcrumb_navxt_admin.php:482
291
- msgid "Place the blog breadcrumb in the trail."
 
 
292
  msgstr ""
293
 
294
- #: breadcrumb_navxt_admin.php:483
295
- msgid "Blog Anchor"
296
  msgstr ""
297
 
298
- #: breadcrumb_navxt_admin.php:483
299
- msgid ""
300
- "The anchor template for the blog breadcrumb, used only in static front page "
301
- "environments."
302
  msgstr ""
303
 
304
- #: breadcrumb_navxt_admin.php:487
305
- msgid "Main Site Breadcrumb"
 
 
306
  msgstr ""
307
 
308
- #: breadcrumb_navxt_admin.php:492
309
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
310
  msgstr ""
311
 
312
- #: breadcrumb_navxt_admin.php:497
313
- msgid "Main Site Home Title: "
314
  msgstr ""
315
 
316
- #: breadcrumb_navxt_admin.php:506
317
- msgid "Main Site Home Prefix"
318
  msgstr ""
319
 
320
- #: breadcrumb_navxt_admin.php:506 breadcrumb_navxt_admin.php:507
321
- msgid "Used for the main site home breadcrumb in an multisite setup"
322
  msgstr ""
323
 
324
- #: breadcrumb_navxt_admin.php:507
325
- msgid "Main Site Home Suffix"
326
  msgstr ""
327
 
328
- #: breadcrumb_navxt_admin.php:508
329
- msgid "Main Site Home Anchor"
330
  msgstr ""
331
 
332
- #: breadcrumb_navxt_admin.php:508
333
  msgid ""
334
- "The anchor template for the main site home breadcrumb, used only in "
335
- "multisite environments."
336
  msgstr ""
337
 
338
- #: breadcrumb_navxt_admin.php:513
339
- msgid "Current Item"
340
  msgstr ""
341
 
342
- #: breadcrumb_navxt_admin.php:516
343
- msgid "Link Current Item"
344
  msgstr ""
345
 
346
- #: breadcrumb_navxt_admin.php:516
347
- msgid "Yes"
348
  msgstr ""
349
 
350
- #: breadcrumb_navxt_admin.php:517
351
- msgid "Current Item Prefix"
352
  msgstr ""
353
 
354
- #: breadcrumb_navxt_admin.php:517
355
- msgid ""
356
- "This is always placed in front of the last breadcrumb in the trail, before "
357
- "any other prefixes for that breadcrumb."
358
  msgstr ""
359
 
360
- #: breadcrumb_navxt_admin.php:518
361
- msgid "Current Item Suffix"
362
  msgstr ""
363
 
364
- #: breadcrumb_navxt_admin.php:518
365
- msgid ""
366
- "This is always placed after the last breadcrumb in the trail, and after any "
367
- "other prefixes for that breadcrumb."
368
  msgstr ""
369
 
370
- #: breadcrumb_navxt_admin.php:519
371
- msgid "Current Item Anchor"
372
  msgstr ""
373
 
374
- #: breadcrumb_navxt_admin.php:519
375
- msgid "The anchor template for current item breadcrumbs."
376
  msgstr ""
377
 
378
- #: breadcrumb_navxt_admin.php:520
379
- msgid "Paged Breadcrumb"
380
  msgstr ""
381
 
382
- #: breadcrumb_navxt_admin.php:520
383
- msgid "Include the paged breadcrumb in the breadcrumb trail."
384
  msgstr ""
385
 
386
- #: breadcrumb_navxt_admin.php:520
387
  msgid ""
388
- "Indicates that the user is on a page other than the first on paginated posts/"
389
- "pages."
390
- msgstr ""
391
-
392
- #: breadcrumb_navxt_admin.php:521
393
- msgid "Paged Prefix"
394
  msgstr ""
395
 
396
- #: breadcrumb_navxt_admin.php:522
397
- msgid "Paged Suffix"
398
  msgstr ""
399
 
400
- #: breadcrumb_navxt_admin.php:527
401
- msgid "Posts &amp; Pages"
402
  msgstr ""
403
 
404
- #: breadcrumb_navxt_admin.php:530
405
- msgid "Post Prefix"
406
  msgstr ""
407
 
408
- #: breadcrumb_navxt_admin.php:531
409
- msgid "Post Suffix"
 
 
410
  msgstr ""
411
 
412
- #: breadcrumb_navxt_admin.php:532
413
- msgid "Post Anchor"
 
 
 
 
414
  msgstr ""
415
 
416
- #: breadcrumb_navxt_admin.php:532
417
- msgid "The anchor template for post breadcrumbs."
418
  msgstr ""
419
 
420
- #: breadcrumb_navxt_admin.php:533
421
- msgid "Post Taxonomy Display"
422
  msgstr ""
423
 
424
- #: breadcrumb_navxt_admin.php:533
425
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
426
  msgstr ""
427
 
428
- #: breadcrumb_navxt_admin.php:537
429
- msgid "Post Taxonomy"
430
  msgstr ""
431
 
432
- #: breadcrumb_navxt_admin.php:541 breadcrumb_navxt_admin.php:663
433
- msgid "Categories"
 
434
  msgstr ""
435
 
436
- #: breadcrumb_navxt_admin.php:542 breadcrumb_navxt_admin.php:641
437
- msgid "Dates"
438
  msgstr ""
439
 
440
- #: breadcrumb_navxt_admin.php:543 breadcrumb_navxt_admin.php:675
441
- msgid "Tags"
442
  msgstr ""
443
 
444
- #: breadcrumb_navxt_admin.php:544 breadcrumb_navxt_admin.php:642
445
- msgid "Pages"
446
  msgstr ""
447
 
448
- #: breadcrumb_navxt_admin.php:555 breadcrumb_navxt_admin.php:653
449
- msgid "The taxonomy which the breadcrumb trail will show."
 
450
  msgstr ""
451
 
452
- #: breadcrumb_navxt_admin.php:559
453
- msgid "Page Prefix"
454
  msgstr ""
455
 
456
- #: breadcrumb_navxt_admin.php:560
457
- msgid "Page Suffix"
458
  msgstr ""
459
 
460
- #: breadcrumb_navxt_admin.php:561
461
- msgid "Page Anchor"
462
  msgstr ""
463
 
464
- #: breadcrumb_navxt_admin.php:561
465
- msgid "The anchor template for page breadcrumbs."
466
  msgstr ""
467
 
468
- #: breadcrumb_navxt_admin.php:562
469
- msgid "Attachment Prefix"
470
  msgstr ""
471
 
472
- #: breadcrumb_navxt_admin.php:563
473
- msgid "Attachment Suffix"
474
  msgstr ""
475
 
476
- #: breadcrumb_navxt_admin.php:616 breadcrumb_navxt_admin.php:708
477
- msgid "%s Prefix"
478
  msgstr ""
479
 
480
- #: breadcrumb_navxt_admin.php:617 breadcrumb_navxt_admin.php:709
481
- msgid "%s Suffix"
 
 
482
  msgstr ""
483
 
484
- #: breadcrumb_navxt_admin.php:618 breadcrumb_navxt_admin.php:710
485
- msgid "%s Anchor"
486
  msgstr ""
487
 
488
- #: breadcrumb_navxt_admin.php:618 breadcrumb_navxt_admin.php:710
489
- msgid "The anchor template for %s breadcrumbs."
490
  msgstr ""
491
 
492
- #: breadcrumb_navxt_admin.php:623
493
- msgid "%s Root Page"
494
  msgstr ""
495
 
496
- #: breadcrumb_navxt_admin.php:626
497
- msgid "&mdash; Select &mdash;"
 
 
498
  msgstr ""
499
 
500
- #: breadcrumb_navxt_admin.php:633
501
- msgid "%s Taxonomy Display"
502
  msgstr ""
503
 
504
- #: breadcrumb_navxt_admin.php:633
505
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
506
  msgstr ""
507
 
508
- #: breadcrumb_navxt_admin.php:637
509
- msgid "%s Taxonomy"
510
  msgstr ""
511
 
512
- #: breadcrumb_navxt_admin.php:666
513
- msgid "Category Prefix"
514
  msgstr ""
515
 
516
- #: breadcrumb_navxt_admin.php:666
517
- msgid "Applied before the anchor on all category breadcrumbs."
 
 
518
  msgstr ""
519
 
520
- #: breadcrumb_navxt_admin.php:667
521
- msgid "Category Suffix"
522
  msgstr ""
523
 
524
- #: breadcrumb_navxt_admin.php:667
525
- msgid "Applied after the anchor on all category breadcrumbs."
 
 
526
  msgstr ""
527
 
528
- #: breadcrumb_navxt_admin.php:668
529
- msgid "Category Anchor"
530
  msgstr ""
531
 
532
- #: breadcrumb_navxt_admin.php:668
533
- msgid "The anchor template for category breadcrumbs."
534
  msgstr ""
535
 
536
- #: breadcrumb_navxt_admin.php:669
537
- msgid "Archive by Category Prefix"
538
  msgstr ""
539
 
540
- #: breadcrumb_navxt_admin.php:669
541
  msgid ""
542
- "Applied before the title of the current item breadcrumb on an archive by "
543
- "cateogry page."
544
  msgstr ""
545
 
546
- #: breadcrumb_navxt_admin.php:670
547
- msgid "Archive by Category Suffix"
548
  msgstr ""
549
 
550
- #: breadcrumb_navxt_admin.php:670
551
  msgid ""
552
- "Applied after the title of the current item breadcrumb on an archive by "
553
- "cateogry page."
554
  msgstr ""
555
 
556
- #: breadcrumb_navxt_admin.php:678
557
- msgid "Tag Prefix"
558
  msgstr ""
559
 
560
- #: breadcrumb_navxt_admin.php:678
561
- msgid "Applied before the anchor on all tag breadcrumbs."
 
 
562
  msgstr ""
563
 
564
- #: breadcrumb_navxt_admin.php:679
565
- msgid "Tag Suffix"
566
  msgstr ""
567
 
568
- #: breadcrumb_navxt_admin.php:679
569
- msgid "Applied after the anchor on all tag breadcrumbs."
570
  msgstr ""
571
 
572
- #: breadcrumb_navxt_admin.php:680
573
- msgid "Tag Anchor"
574
  msgstr ""
575
 
576
- #: breadcrumb_navxt_admin.php:680
577
- msgid "The anchor template for tag breadcrumbs."
578
  msgstr ""
579
 
580
- #: breadcrumb_navxt_admin.php:681
581
- msgid "Archive by Tag Prefix"
582
  msgstr ""
583
 
584
- #: breadcrumb_navxt_admin.php:681
585
- msgid ""
586
- "Applied before the title of the current item breadcrumb on an archive by tag "
587
- "page."
588
  msgstr ""
589
 
590
- #: breadcrumb_navxt_admin.php:682
591
- msgid "Archive by Tag Suffix"
592
  msgstr ""
593
 
594
- #: breadcrumb_navxt_admin.php:682
595
- msgid ""
596
- "Applied after the title of the current item breadcrumb on an archive by tag "
597
- "page."
598
  msgstr ""
599
 
600
- #: breadcrumb_navxt_admin.php:708
601
- msgid "Applied before the anchor on all %s breadcrumbs."
602
  msgstr ""
603
 
604
- #: breadcrumb_navxt_admin.php:709
605
- msgid "Applied after the anchor on all %s breadcrumbs."
606
  msgstr ""
607
 
608
- #: breadcrumb_navxt_admin.php:711
609
- msgid "Archive by %s Prefix"
610
  msgstr ""
611
 
612
- #: breadcrumb_navxt_admin.php:711
613
- msgid ""
614
- "Applied before the title of the current item breadcrumb on an archive by %s "
615
- "page."
616
  msgstr ""
617
 
618
- #: breadcrumb_navxt_admin.php:712
619
- msgid "Archive by %s Suffix"
620
  msgstr ""
621
 
622
- #: breadcrumb_navxt_admin.php:712
623
- msgid ""
624
- "Applied after the title of the current item breadcrumb on an archive by %s "
625
- "page."
626
  msgstr ""
627
 
628
- #: breadcrumb_navxt_admin.php:721
629
- msgid "Date Archives"
630
  msgstr ""
631
 
632
- #: breadcrumb_navxt_admin.php:724
633
- msgid "Date Anchor"
634
  msgstr ""
635
 
636
- #: breadcrumb_navxt_admin.php:724
637
- msgid "The anchor template for date breadcrumbs."
 
 
638
  msgstr ""
639
 
640
- #: breadcrumb_navxt_admin.php:725
641
- msgid "Archive by Date Prefix"
642
  msgstr ""
643
 
644
- #: breadcrumb_navxt_admin.php:725
645
- msgid "Applied before the anchor on all date breadcrumbs."
646
  msgstr ""
647
 
648
- #: breadcrumb_navxt_admin.php:726
649
- msgid "Archive by Date Suffix"
650
  msgstr ""
651
 
652
- #: breadcrumb_navxt_admin.php:726
653
- msgid "Applied after the anchor on all date breadcrumbs."
654
  msgstr ""
655
 
656
- #: breadcrumb_navxt_admin.php:731
657
- msgid "Miscellaneous"
658
  msgstr ""
659
 
660
- #: breadcrumb_navxt_admin.php:734
661
- msgid "Author Prefix"
662
  msgstr ""
663
 
664
- #: breadcrumb_navxt_admin.php:735
665
- msgid "Author Suffix"
666
  msgstr ""
667
 
668
- #: breadcrumb_navxt_admin.php:736
669
- msgid "Author Display Format"
670
  msgstr ""
671
 
672
- #: breadcrumb_navxt_admin.php:736
673
- msgid ""
674
- "display_name uses the name specified in \"Display name publicly as\" under "
675
- "the user profile the others correspond to options in the user profile."
676
  msgstr ""
677
 
678
- #: breadcrumb_navxt_admin.php:737
679
- msgid "Search Prefix"
680
  msgstr ""
681
 
682
- #: breadcrumb_navxt_admin.php:738
683
- msgid "Search Suffix"
684
  msgstr ""
685
 
686
- #: breadcrumb_navxt_admin.php:739
687
- msgid "Search Anchor"
688
  msgstr ""
689
 
690
- #: breadcrumb_navxt_admin.php:739
691
- msgid ""
692
- "The anchor template for search breadcrumbs, used only when the search "
693
- "results span several pages."
694
  msgstr ""
695
 
696
- #: breadcrumb_navxt_admin.php:740
697
- msgid "404 Title"
 
 
698
  msgstr ""
699
 
700
- #: breadcrumb_navxt_admin.php:741
701
- msgid "404 Prefix"
702
  msgstr ""
703
 
704
- #: breadcrumb_navxt_admin.php:742
705
- msgid "404 Suffix"
706
  msgstr ""
707
 
708
- #: breadcrumb_navxt_admin.php:747
709
- msgid "Save Changes"
710
  msgstr ""
711
 
712
- #: breadcrumb_navxt_class.php:217
713
- msgid "Blog"
714
  msgstr ""
715
 
716
- #: breadcrumb_navxt_class.php:236
717
- msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
718
  msgstr ""
719
 
720
- #: breadcrumb_navxt_class.php:281
721
  msgid "404"
722
  msgstr ""
723
 
724
- #: breadcrumb_navxt_class.php:284
725
- msgid "Search results for &#39;"
726
- msgstr ""
727
-
728
- #: breadcrumb_navxt_class.php:288
729
  msgid ""
730
- "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
731
- "%\">"
732
- msgstr ""
733
-
734
- #: breadcrumb_navxt_class.php:295
735
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
736
  msgstr ""
737
 
738
- #: breadcrumb_navxt_class.php:298
739
- msgid "Articles by: "
740
  msgstr ""
741
 
742
- #: breadcrumb_navxt_class.php:302
743
- msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
 
744
  msgstr ""
745
 
746
- #: breadcrumb_navxt_class.php:311
747
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
 
 
748
  msgstr ""
749
 
750
- #: breadcrumb_navxt_class.php:314
751
- msgid "Archive by category &#39;"
752
  msgstr ""
753
 
754
- #: breadcrumb_navxt_class.php:318
755
- msgid "Archive by tag &#39;"
 
 
756
  msgstr ""
757
 
758
- #: breadcrumb_navxt_class.php:321
759
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
760
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: \n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
+ "POT-Creation-Date: 2011-12-03 04:49:09+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: breadcrumb_navxt_widget.php:32
16
  msgid "Adds a breadcrumb trail to your sidebar"
17
  msgstr ""
18
 
19
+ #: breadcrumb_navxt_widget.php:93
20
  msgid "Title:"
21
  msgstr ""
22
 
23
+ #: breadcrumb_navxt_widget.php:97
24
  msgid "Output trail as:"
25
  msgstr ""
26
 
27
+ #: breadcrumb_navxt_widget.php:99
28
  msgid "List"
29
  msgstr ""
30
 
31
+ #: breadcrumb_navxt_widget.php:100
32
  msgid "RDFa"
33
  msgstr ""
34
 
35
+ #: breadcrumb_navxt_widget.php:101
36
  msgid "Microformat"
37
  msgstr ""
38
 
39
+ #: breadcrumb_navxt_widget.php:102
40
  msgid "Plain"
41
  msgstr ""
42
 
43
+ #: breadcrumb_navxt_widget.php:107
44
  msgid "Link the breadcrumbs"
45
  msgstr ""
46
 
47
+ #: breadcrumb_navxt_widget.php:109
48
  msgid "Reverse the order of the trail"
49
  msgstr ""
50
 
51
+ #: breadcrumb_navxt_widget.php:111
52
  msgid "Hide the trail on the front page"
53
  msgstr ""
54
 
55
+ #: breadcrumb_navxt_admin.php:36
56
+ msgid ""
57
+ "Your PHP version is too old, please upgrade to a newer version. Your version "
58
+ "is %s, Breadcrumb NavXT requires %s"
59
  msgstr ""
60
 
61
+ #: breadcrumb_navxt_admin.php:113
62
+ msgid "Insufficient privileges to proceed."
63
  msgstr ""
64
 
65
+ #: breadcrumb_navxt_admin.php:204
66
+ msgid "Tips for the settings are located below select options."
67
  msgstr ""
68
 
69
+ #: breadcrumb_navxt_admin.php:205
70
+ msgid "Resources"
71
  msgstr ""
72
 
73
+ #: breadcrumb_navxt_admin.php:206
74
+ msgid ""
75
+ "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
76
+ "available on the author's website."
77
  msgstr ""
78
 
79
+ #: breadcrumb_navxt_admin.php:206
80
+ msgid "Go to the Breadcrumb NavXT tag archive."
81
  msgstr ""
82
 
83
+ #: breadcrumb_navxt_admin.php:207
84
+ msgid ""
85
+ "%sOnline Documentation%s: Check out the documentation for more indepth "
86
+ "technical information."
87
  msgstr ""
88
 
89
+ #: breadcrumb_navxt_admin.php:207
90
+ msgid "Go to the Breadcrumb NavXT online documentation"
91
  msgstr ""
92
 
93
+ #: breadcrumb_navxt_admin.php:208
94
+ msgid ""
95
+ "%sReport a Bug%s: If you think you have found a bug, please include your "
96
+ "WordPress version and details on how to reproduce the bug."
97
  msgstr ""
98
 
99
+ #: breadcrumb_navxt_admin.php:208 breadcrumb_navxt_admin.php:211
100
+ msgid "Go to the Breadcrumb NavXT support post for your version."
101
  msgstr ""
102
 
103
+ #: breadcrumb_navxt_admin.php:209
104
+ msgid "Giving Back"
105
  msgstr ""
106
 
107
+ #: breadcrumb_navxt_admin.php:210
108
+ msgid ""
109
+ "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
110
+ "buying the author a beer."
111
  msgstr ""
112
 
113
+ #: breadcrumb_navxt_admin.php:210
114
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
115
  msgstr ""
116
 
117
+ #: breadcrumb_navxt_admin.php:211
118
+ msgid ""
119
+ "%sTranslate%s: Is your language not available? Contact John Havlik to get "
120
+ "translating."
121
  msgstr ""
122
 
123
+ #: breadcrumb_navxt_admin.php:216 breadcrumb_navxt_admin.php:307
124
+ msgid "General"
125
  msgstr ""
126
 
127
+ #: breadcrumb_navxt_admin.php:219
128
+ msgid ""
129
+ "For the settings on this page to take effect, you must either use the "
130
+ "included Breadcrumb NavXT widget, or place either of the code sections below "
131
+ "into your theme."
132
  msgstr ""
133
 
134
+ #: breadcrumb_navxt_admin.php:220
135
+ msgid "Breadcrumb trail with separators"
136
  msgstr ""
137
 
138
+ #: breadcrumb_navxt_admin.php:226
139
+ msgid "Breadcrumb trail in list form"
140
  msgstr ""
141
 
142
+ #: breadcrumb_navxt_admin.php:235
143
+ msgid "Quick Start"
144
  msgstr ""
145
 
146
+ #: breadcrumb_navxt_admin.php:238
147
  msgid ""
148
+ "Using the code from the Quick Start section above, the following CSS can be "
149
+ "used as base for styling your breadcrumb trail."
150
  msgstr ""
151
 
152
+ #: breadcrumb_navxt_admin.php:250
153
+ msgid "Styling"
154
  msgstr ""
155
 
156
+ #: breadcrumb_navxt_admin.php:256
157
+ msgid "Import/Export/Reset"
158
  msgstr ""
159
 
160
+ #: breadcrumb_navxt_admin.php:280 includes/mtekk_adminkit.php:765
161
  msgid "Import"
162
  msgstr ""
163
 
164
+ #: breadcrumb_navxt_admin.php:281 includes/mtekk_adminkit.php:766
165
  msgid "Export"
166
  msgstr ""
167
 
168
+ #: breadcrumb_navxt_admin.php:282 includes/mtekk_adminkit.php:767
169
  msgid "Reset"
170
  msgstr ""
171
 
172
+ #: breadcrumb_navxt_admin.php:295
173
+ msgid "Breadcrumb NavXT Settings"
 
 
174
  msgstr ""
175
 
176
+ #: breadcrumb_navxt_admin.php:310
177
+ msgid "Breadcrumb Separator"
178
  msgstr ""
179
 
180
+ #: breadcrumb_navxt_admin.php:310
181
+ msgid "Placed in between each breadcrumb."
182
  msgstr ""
183
 
184
+ #: breadcrumb_navxt_admin.php:311
185
+ msgid "Breadcrumb Max Title Length"
 
 
 
 
186
  msgstr ""
187
 
188
+ #: breadcrumb_navxt_admin.php:315
189
+ msgid "Home Breadcrumb"
190
  msgstr ""
191
 
192
+ #: breadcrumb_navxt_admin.php:320
193
+ msgid "Place the home breadcrumb in the trail."
194
  msgstr ""
195
 
196
+ #: breadcrumb_navxt_admin.php:325
197
+ msgid "Home Title: "
198
  msgstr ""
199
 
200
+ #: breadcrumb_navxt_admin.php:333
201
+ msgid "Home Template"
202
  msgstr ""
203
 
204
+ #: breadcrumb_navxt_admin.php:333
205
+ msgid "The template for the home breadcrumb."
206
  msgstr ""
207
 
208
+ #: breadcrumb_navxt_admin.php:334
209
+ msgid "Home Template (Unlinked)"
210
  msgstr ""
211
 
212
+ #: breadcrumb_navxt_admin.php:334
213
  msgid ""
214
+ "The template for the home breadcrumb, used when the breadcrumb is not linked."
 
215
  msgstr ""
216
 
217
+ #: breadcrumb_navxt_admin.php:335
218
+ msgid "Blog Breadcrumb"
219
  msgstr ""
220
 
221
+ #: breadcrumb_navxt_admin.php:335
222
+ msgid "Place the blog breadcrumb in the trail."
 
 
223
  msgstr ""
224
 
225
+ #: breadcrumb_navxt_admin.php:336
226
+ msgid "Blog Template"
227
  msgstr ""
228
 
229
+ #: breadcrumb_navxt_admin.php:336
230
  msgid ""
231
+ "The template for the blog breadcrumb, used only in static front page "
232
+ "environments."
 
233
  msgstr ""
234
 
235
+ #: breadcrumb_navxt_admin.php:337
236
+ msgid "Blog Template (Unlinked)"
237
  msgstr ""
238
 
239
+ #: breadcrumb_navxt_admin.php:337
240
+ msgid ""
241
+ "The template for the blog breadcrumb, used only in static front page "
242
+ "environments and when the breadcrumb is not linked."
243
  msgstr ""
244
 
245
+ #: breadcrumb_navxt_admin.php:341
246
+ msgid "Main Site Breadcrumb"
247
  msgstr ""
248
 
249
+ #: breadcrumb_navxt_admin.php:346
250
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
251
  msgstr ""
252
 
253
+ #: breadcrumb_navxt_admin.php:351
254
+ msgid "Main Site Home Title: "
255
  msgstr ""
256
 
257
+ #: breadcrumb_navxt_admin.php:360
258
+ msgid "Main Site Home Template"
259
  msgstr ""
260
 
261
+ #: breadcrumb_navxt_admin.php:360
262
+ msgid ""
263
+ "The template for the main site home breadcrumb, used only in multisite "
264
+ "environments."
265
  msgstr ""
266
 
267
+ #: breadcrumb_navxt_admin.php:361
268
+ msgid "Main Site Home Template (Unlinked)"
269
  msgstr ""
270
 
271
+ #: breadcrumb_navxt_admin.php:361
272
+ msgid ""
273
+ "The template for the main site home breadcrumb, used only in multisite "
274
+ "environments and when the breadcrumb is not linked."
275
  msgstr ""
276
 
277
+ #: breadcrumb_navxt_admin.php:366
278
+ msgid "Current Item"
279
  msgstr ""
280
 
281
+ #: breadcrumb_navxt_admin.php:369
282
+ msgid "Link Current Item"
283
  msgstr ""
284
 
285
+ #: breadcrumb_navxt_admin.php:369
286
+ msgid "Yes"
287
  msgstr ""
288
 
289
+ #: breadcrumb_navxt_admin.php:370
290
+ msgid "Current Item Template"
291
  msgstr ""
292
 
293
+ #: breadcrumb_navxt_admin.php:370
294
+ msgid "The template for current item breadcrumbs."
295
  msgstr ""
296
 
297
+ #: breadcrumb_navxt_admin.php:371
298
+ msgid "Current Item Template (Unlinked)"
299
  msgstr ""
300
 
301
+ #: breadcrumb_navxt_admin.php:371
302
+ msgid ""
303
+ "The template for current item breadcrumbs, used only when the breadcrumb is "
304
+ "not linked."
305
  msgstr ""
306
 
307
+ #: breadcrumb_navxt_admin.php:372
308
+ msgid "Paged Breadcrumb"
309
  msgstr ""
310
 
311
+ #: breadcrumb_navxt_admin.php:372
312
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
 
 
313
  msgstr ""
314
 
315
+ #: breadcrumb_navxt_admin.php:372
316
+ msgid ""
317
+ "Indicates that the user is on a page other than the first on paginated posts/"
318
+ "pages."
319
  msgstr ""
320
 
321
+ #: breadcrumb_navxt_admin.php:373
322
+ msgid "Paged Template"
323
  msgstr ""
324
 
325
+ #: breadcrumb_navxt_admin.php:373
326
+ msgid "The template for paged breadcrumbs."
327
  msgstr ""
328
 
329
+ #: breadcrumb_navxt_admin.php:378
330
+ msgid "Posts &amp; Pages"
331
  msgstr ""
332
 
333
+ #: breadcrumb_navxt_admin.php:381
334
+ msgid "Post Template"
335
  msgstr ""
336
 
337
+ #: breadcrumb_navxt_admin.php:381
338
+ msgid "The template for post breadcrumbs."
339
  msgstr ""
340
 
341
+ #: breadcrumb_navxt_admin.php:382
342
+ msgid "Post Template (Unlinked)"
343
  msgstr ""
344
 
345
+ #: breadcrumb_navxt_admin.php:382
346
  msgid ""
347
+ "The template for post breadcrumbs, used only when the breadcrumb is not "
348
+ "linked."
349
  msgstr ""
350
 
351
+ #: breadcrumb_navxt_admin.php:383
352
+ msgid "Post Taxonomy Display"
353
  msgstr ""
354
 
355
+ #: breadcrumb_navxt_admin.php:383
356
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
357
  msgstr ""
358
 
359
+ #: breadcrumb_navxt_admin.php:387
360
+ msgid "Post Taxonomy"
361
  msgstr ""
362
 
363
+ #: breadcrumb_navxt_admin.php:391
364
+ msgid "Categories"
365
  msgstr ""
366
 
367
+ #: breadcrumb_navxt_admin.php:392 breadcrumb_navxt_admin.php:490
368
+ msgid "Dates"
 
 
369
  msgstr ""
370
 
371
+ #: breadcrumb_navxt_admin.php:393
372
+ msgid "Tags"
373
  msgstr ""
374
 
375
+ #: breadcrumb_navxt_admin.php:394 breadcrumb_navxt_admin.php:491
376
+ msgid "Pages"
 
 
377
  msgstr ""
378
 
379
+ #: breadcrumb_navxt_admin.php:405 breadcrumb_navxt_admin.php:502
380
+ msgid "The taxonomy which the breadcrumb trail will show."
381
  msgstr ""
382
 
383
+ #: breadcrumb_navxt_admin.php:409
384
+ msgid "Page Template"
385
  msgstr ""
386
 
387
+ #: breadcrumb_navxt_admin.php:409
388
+ msgid "The template for page breadcrumbs."
389
  msgstr ""
390
 
391
+ #: breadcrumb_navxt_admin.php:410
392
+ msgid "Page Template (Unlinked)"
393
  msgstr ""
394
 
395
+ #: breadcrumb_navxt_admin.php:410
396
  msgid ""
397
+ "The template for page breadcrumbs, used only when the breadcrumb is not "
398
+ "linked."
 
 
 
 
399
  msgstr ""
400
 
401
+ #: breadcrumb_navxt_admin.php:411
402
+ msgid "Attachment Template"
403
  msgstr ""
404
 
405
+ #: breadcrumb_navxt_admin.php:411
406
+ msgid "The template for attachment breadcrumbs."
407
  msgstr ""
408
 
409
+ #: breadcrumb_navxt_admin.php:412
410
+ msgid "Attachment Template (Unlinked)"
411
  msgstr ""
412
 
413
+ #: breadcrumb_navxt_admin.php:412
414
+ msgid ""
415
+ "The template for attachment breadcrumbs, used only when the breadcrumb is "
416
+ "not linked."
417
  msgstr ""
418
 
419
+ #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:600
420
+ #: breadcrumb_navxt_class.php:56 breadcrumb_navxt_class.php:205
421
+ #: breadcrumb_navxt_class.php:213 breadcrumb_navxt_class.php:219
422
+ #: breadcrumb_navxt_class.php:235 breadcrumb_navxt_class.php:247
423
+ #: breadcrumb_navxt_class.php:259
424
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
425
  msgstr ""
426
 
427
+ #: breadcrumb_navxt_admin.php:428 breadcrumb_navxt_admin.php:601
428
+ msgid "%htitle%"
429
  msgstr ""
430
 
431
+ #: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
432
+ msgid "%s Template"
433
  msgstr ""
434
 
435
+ #: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
436
+ msgid "The template for %s breadcrumbs."
437
  msgstr ""
438
 
439
+ #: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
440
+ msgid "%s Template (Unlinked)"
441
  msgstr ""
442
 
443
+ #: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
444
+ msgid ""
445
+ "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
446
  msgstr ""
447
 
448
+ #: breadcrumb_navxt_admin.php:471
449
+ msgid "%s Root Page"
450
  msgstr ""
451
 
452
+ #: breadcrumb_navxt_admin.php:474
453
+ msgid "&mdash; Select &mdash;"
454
  msgstr ""
455
 
456
+ #: breadcrumb_navxt_admin.php:478
457
+ msgid "%s Archive Display"
458
  msgstr ""
459
 
460
+ #: breadcrumb_navxt_admin.php:478
461
+ msgid ""
462
+ "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
463
  msgstr ""
464
 
465
+ #: breadcrumb_navxt_admin.php:482
466
+ msgid "%s Taxonomy Display"
467
  msgstr ""
468
 
469
+ #: breadcrumb_navxt_admin.php:482
470
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
471
  msgstr ""
472
 
473
+ #: breadcrumb_navxt_admin.php:486
474
+ msgid "%s Taxonomy"
475
  msgstr ""
476
 
477
+ #: breadcrumb_navxt_admin.php:512
478
+ msgid "Categories &amp; Tags"
479
  msgstr ""
480
 
481
+ #: breadcrumb_navxt_admin.php:515
482
+ msgid "Category Template"
483
  msgstr ""
484
 
485
+ #: breadcrumb_navxt_admin.php:515
486
+ msgid "The template for category breadcrumbs."
487
  msgstr ""
488
 
489
+ #: breadcrumb_navxt_admin.php:516
490
+ msgid "Category Template (Unlinked)"
491
  msgstr ""
492
 
493
+ #: breadcrumb_navxt_admin.php:516
494
+ msgid ""
495
+ "The template for category breadcrumbs, used only when the breadcrumb is not "
496
+ "linked."
497
  msgstr ""
498
 
499
+ #: breadcrumb_navxt_admin.php:517
500
+ msgid "Tag Template"
501
  msgstr ""
502
 
503
+ #: breadcrumb_navxt_admin.php:517
504
+ msgid "The template for tag breadcrumbs."
505
  msgstr ""
506
 
507
+ #: breadcrumb_navxt_admin.php:518
508
+ msgid "Tag Template (Unlinked)"
509
  msgstr ""
510
 
511
+ #: breadcrumb_navxt_admin.php:518
512
+ msgid ""
513
+ "The template for tag breadcrumbs, used only when the breadcrumb is not "
514
+ "linked."
515
  msgstr ""
516
 
517
+ #: breadcrumb_navxt_admin.php:551
518
+ msgid "Miscellaneous"
519
  msgstr ""
520
 
521
+ #: breadcrumb_navxt_admin.php:554
522
+ msgid "Author Template"
523
  msgstr ""
524
 
525
+ #: breadcrumb_navxt_admin.php:554
526
+ msgid "The template for author breadcrumbs."
527
  msgstr ""
528
 
529
+ #: breadcrumb_navxt_admin.php:555
530
+ msgid "Author Template (Unlinked)"
531
  msgstr ""
532
 
533
+ #: breadcrumb_navxt_admin.php:555
534
+ msgid ""
535
+ "The template for author breadcrumbs, used only when the breadcrumb is not "
536
+ "linked."
537
  msgstr ""
538
 
539
+ #: breadcrumb_navxt_admin.php:556
540
+ msgid "Author Display Format"
541
  msgstr ""
542
 
543
+ #: breadcrumb_navxt_admin.php:556
544
+ msgid ""
545
+ "display_name uses the name specified in \"Display name publicly as\" under "
546
+ "the user profile the others correspond to options in the user profile."
547
  msgstr ""
548
 
549
+ #: breadcrumb_navxt_admin.php:557
550
+ msgid "Date Template"
551
  msgstr ""
552
 
553
+ #: breadcrumb_navxt_admin.php:557
554
+ msgid "The template for date breadcrumbs."
555
  msgstr ""
556
 
557
+ #: breadcrumb_navxt_admin.php:558
558
+ msgid "Date Template (Unlinked)"
559
  msgstr ""
560
 
561
+ #: breadcrumb_navxt_admin.php:558
562
  msgid ""
563
+ "The template for date breadcrumbs, used only when the breadcrumb is not "
564
+ "linked."
565
  msgstr ""
566
 
567
+ #: breadcrumb_navxt_admin.php:559
568
+ msgid "Search Template"
569
  msgstr ""
570
 
571
+ #: breadcrumb_navxt_admin.php:559
572
  msgid ""
573
+ "The anchor template for search breadcrumbs, used only when the search "
574
+ "results span several pages."
575
  msgstr ""
576
 
577
+ #: breadcrumb_navxt_admin.php:560
578
+ msgid "Search Template (Unlinked)"
579
  msgstr ""
580
 
581
+ #: breadcrumb_navxt_admin.php:560
582
+ msgid ""
583
+ "The anchor template for search breadcrumbs, used only when the search "
584
+ "results span several pages and the breadcrumb is not linked."
585
  msgstr ""
586
 
587
+ #: breadcrumb_navxt_admin.php:561
588
+ msgid "404 Title"
589
  msgstr ""
590
 
591
+ #: breadcrumb_navxt_admin.php:562
592
+ msgid "404 Template"
593
  msgstr ""
594
 
595
+ #: breadcrumb_navxt_admin.php:562
596
+ msgid "The template for 404 breadcrumbs."
597
  msgstr ""
598
 
599
+ #: breadcrumb_navxt_admin.php:567
600
+ msgid "Save Changes"
601
  msgstr ""
602
 
603
+ #: includes/mtekk_adminkit.php:201
604
+ msgid "Settings"
605
  msgstr ""
606
 
607
+ #: includes/mtekk_adminkit.php:271
608
+ msgid "Your settings are out of date."
 
 
609
  msgstr ""
610
 
611
+ #: includes/mtekk_adminkit.php:271
612
+ msgid "Migrate the settings now."
613
  msgstr ""
614
 
615
+ #: includes/mtekk_adminkit.php:271
616
+ msgid "Migrate now."
 
 
617
  msgstr ""
618
 
619
+ #: includes/mtekk_adminkit.php:279
620
+ msgid "Your plugin install is incomplete."
621
  msgstr ""
622
 
623
+ #: includes/mtekk_adminkit.php:279
624
+ msgid "Load default settings now."
625
  msgstr ""
626
 
627
+ #: includes/mtekk_adminkit.php:279
628
+ msgid "Complete now."
629
  msgstr ""
630
 
631
+ #: includes/mtekk_adminkit.php:287
632
+ msgid "Your plugin settings are invalid."
 
 
633
  msgstr ""
634
 
635
+ #: includes/mtekk_adminkit.php:287
636
+ msgid "Attempt to fix settings now."
637
  msgstr ""
638
 
639
+ #: includes/mtekk_adminkit.php:287
640
+ msgid "Fix now."
 
 
641
  msgstr ""
642
 
643
+ #: includes/mtekk_adminkit.php:463
644
+ msgid "Settings successfully saved."
645
  msgstr ""
646
 
647
+ #: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
648
+ msgid "Undo the options save."
649
  msgstr ""
650
 
651
+ #: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
652
+ #: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
653
+ #: includes/mtekk_adminkit.php:614
654
+ msgid "Undo"
655
  msgstr ""
656
 
657
+ #: includes/mtekk_adminkit.php:468
658
+ msgid "Some settings were not saved."
659
  msgstr ""
660
 
661
+ #: includes/mtekk_adminkit.php:469
662
+ msgid "The following settings were not saved:"
663
  msgstr ""
664
 
665
+ #: includes/mtekk_adminkit.php:474
666
+ msgid "Please include this message in your %sbug report%s."
667
  msgstr ""
668
 
669
+ #: includes/mtekk_adminkit.php:474
670
+ msgid "Go to the %s support post for your version."
671
  msgstr ""
672
 
673
+ #: includes/mtekk_adminkit.php:573
674
+ msgid "Settings successfully imported from the uploaded file."
675
  msgstr ""
676
 
677
+ #: includes/mtekk_adminkit.php:573
678
+ msgid "Undo the options import."
679
  msgstr ""
680
 
681
+ #: includes/mtekk_adminkit.php:578
682
+ msgid "Importing settings from file failed."
683
  msgstr ""
684
 
685
+ #: includes/mtekk_adminkit.php:597
686
+ msgid "Settings successfully reset to the default values."
687
  msgstr ""
688
 
689
+ #: includes/mtekk_adminkit.php:597
690
+ msgid "Undo the options reset."
 
 
691
  msgstr ""
692
 
693
+ #: includes/mtekk_adminkit.php:614
694
+ msgid "Settings successfully undid the last operation."
695
  msgstr ""
696
 
697
+ #: includes/mtekk_adminkit.php:614
698
+ msgid "Undo the last undo operation."
699
  msgstr ""
700
 
701
+ #: includes/mtekk_adminkit.php:649
702
+ msgid "Settings successfully migrated."
703
  msgstr ""
704
 
705
+ #: includes/mtekk_adminkit.php:656
706
+ msgid "Default settings successfully installed."
 
 
707
  msgstr ""
708
 
709
+ #: includes/mtekk_adminkit.php:757
710
+ msgid ""
711
+ "Import settings from a XML file, export the current settings to a XML file, "
712
+ "or reset to the default settings."
713
  msgstr ""
714
 
715
+ #: includes/mtekk_adminkit.php:760
716
+ msgid "Settings File"
717
  msgstr ""
718
 
719
+ #: includes/mtekk_adminkit.php:763
720
+ msgid "Select a XML settings file to upload and import settings from."
721
  msgstr ""
722
 
723
+ #: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
724
+ msgid "Home"
725
  msgstr ""
726
 
727
+ #: breadcrumb_navxt_class.php:230
728
+ msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
729
  msgstr ""
730
 
731
+ #: breadcrumb_navxt_class.php:242
732
+ msgid "Page %htitle%"
733
  msgstr ""
734
 
735
+ #: breadcrumb_navxt_class.php:266
736
  msgid "404"
737
  msgstr ""
738
 
739
+ #: breadcrumb_navxt_class.php:269
 
 
 
 
740
  msgid ""
741
+ "Search results for &#39;<a title=\"Go to the first page of search results "
742
+ "for %title%.\" href=\"%link%\">%htitle%</a>&#39;"
 
 
 
 
743
  msgstr ""
744
 
745
+ #: breadcrumb_navxt_class.php:271
746
+ msgid "Search results for &#39;%htitle%&#39;"
747
  msgstr ""
748
 
749
+ #: breadcrumb_navxt_class.php:274
750
+ msgid ""
751
+ "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
752
  msgstr ""
753
 
754
+ #: breadcrumb_navxt_class.php:279
755
+ msgid ""
756
+ "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%"
757
+ "link%\">%htitle%</a>"
758
  msgstr ""
759
 
760
+ #: breadcrumb_navxt_class.php:281
761
+ msgid "Articles by: %htitle%"
762
  msgstr ""
763
 
764
+ #: breadcrumb_navxt_class.php:286
765
+ msgid ""
766
+ "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</"
767
+ "a>"
768
  msgstr ""
769
 
770
+ #: breadcrumb_navxt_class.php:290
771
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
772
  msgstr ""
languages/breadcrumb_navxt-es_ES.mo DELETED
Binary file
languages/breadcrumb_navxt-es_ES.po DELETED
@@ -1,777 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Breadcrumb NavXT\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
6
- "PO-Revision-Date: 2011-02-19 16:54-0600\n"
7
- "Last-Translator: Karin Sequen <karin.sequen@bumerang180.com>\n"
8
- "Language-Team: Karin Sequen || Bumerang180 <info@bumerang180.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-Language: Spanish\n"
13
- "X-Poedit-KeywordsList: __;_es\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-Country: GUATEMALA\n"
16
- ": \n"
17
- "X-Poedit-SourceCharset: utf-8\n"
18
- "X-Poedit-SearchPath-0: C:/Documents and Settings/mtekk/My Documents/Aptana Studio/Breadcrumb NavXT/trunk\n"
19
-
20
- #: breadcrumb_navxt_widget.php:24
21
- msgid "Adds a breadcrumb trail to your sidebar"
22
- msgstr "Agrega una ruta de navegación en su barra lateral"
23
-
24
- #: breadcrumb_navxt_widget.php:85
25
- msgid "Title:"
26
- msgstr "Título:"
27
-
28
- #: breadcrumb_navxt_widget.php:89
29
- msgid "Output trail as:"
30
- msgstr "Mostrar ruta como:"
31
-
32
- #: breadcrumb_navxt_widget.php:91
33
- msgid "List"
34
- msgstr "Lista"
35
-
36
- #: breadcrumb_navxt_widget.php:92
37
- msgid "RDFa"
38
- msgstr "RDFa"
39
-
40
- #: breadcrumb_navxt_widget.php:93
41
- msgid "Microformat"
42
- msgstr "Microformato"
43
-
44
- #: breadcrumb_navxt_widget.php:94
45
- msgid "Plain"
46
- msgstr "Texto plano"
47
-
48
- #: breadcrumb_navxt_widget.php:99
49
- msgid "Link the breadcrumbs"
50
- msgstr "Enlace a la Ruta"
51
-
52
- #: breadcrumb_navxt_widget.php:101
53
- msgid "Reverse the order of the trail"
54
- msgstr "Invertir el orden de la ruta"
55
-
56
- #: breadcrumb_navxt_widget.php:103
57
- msgid "Hide the trail on the front page"
58
- msgstr "Ocultar la ruta de la página principal"
59
-
60
- #: mtekk_admin_class.php:59
61
- msgid "Undo"
62
- msgstr "Deshacer"
63
-
64
- #: mtekk_admin_class.php:67
65
- #: mtekk_admin_class.php:191
66
- msgid "Migrate now."
67
- msgstr "Migrar ahora."
68
-
69
- #: mtekk_admin_class.php:164
70
- msgid "Settings"
71
- msgstr "Configuraciones"
72
-
73
- #: mtekk_admin_class.php:191
74
- msgid "Your settings are out of date."
75
- msgstr "Sus ajustes están desactualizados."
76
-
77
- #: mtekk_admin_class.php:191
78
- msgid "Migrate the settings now."
79
- msgstr "Migrar los ajustes ahora."
80
-
81
- #: mtekk_admin_class.php:198
82
- msgid "Your plugin install is incomplete."
83
- msgstr "La instalación del plugin no se ha completado."
84
-
85
- #: mtekk_admin_class.php:198
86
- msgid "Load default settings now."
87
- msgstr "Cargar los ajustes predeterminados ahora."
88
-
89
- #: mtekk_admin_class.php:198
90
- msgid "Complete now."
91
- msgstr "Completar ahora."
92
-
93
- #: mtekk_admin_class.php:311
94
- msgid "Settings successfully imported from the uploaded file."
95
- msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
96
-
97
- #: mtekk_admin_class.php:311
98
- msgid "Undo the options import."
99
- msgstr "Deshacer importación de opciones."
100
-
101
- #: mtekk_admin_class.php:316
102
- msgid "Importing settings from file failed."
103
- msgstr "Falló la importación de los ajustes desde el archivo."
104
-
105
- #: mtekk_admin_class.php:335
106
- msgid "Settings successfully reset to the default values."
107
- msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
108
-
109
- #: mtekk_admin_class.php:335
110
- msgid "Undo the options reset."
111
- msgstr "Deshacer reinicio de opciones."
112
-
113
- #: mtekk_admin_class.php:352
114
- msgid "Settings successfully undid the last operation."
115
- msgstr "Se deshizo exitosamente la operación anterior."
116
-
117
- #: mtekk_admin_class.php:352
118
- msgid "Undo the last undo operation."
119
- msgstr "Deshacer la última operación de \"deshacer\""
120
-
121
- #: mtekk_admin_class.php:387
122
- msgid "Settings successfully migrated."
123
- msgstr "Ajustes migrados exitosamente."
124
-
125
- #: mtekk_admin_class.php:394
126
- msgid "Default settings successfully installed."
127
- msgstr "Los ajustes predeterminados se instalaron exitosamente."
128
-
129
- #: mtekk_admin_class.php:425
130
- msgid "Get help with \"%s\""
131
- msgstr "Obtener ayuda con \"%s\""
132
-
133
- #: mtekk_admin_class.php:495
134
- msgid "Import/Export/Reset Settings"
135
- msgstr "Importar/Exportar/Reiniciar Ajustes"
136
-
137
- #: mtekk_admin_class.php:496
138
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
139
- msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
140
-
141
- #: mtekk_admin_class.php:499
142
- msgid "Settings File"
143
- msgstr "Archivo de Ajustes"
144
-
145
- #: mtekk_admin_class.php:502
146
- msgid "Select a XML settings file to upload and import settings from."
147
- msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
148
-
149
- #: mtekk_admin_class.php:504
150
- #: breadcrumb_navxt_admin.php:423
151
- msgid "Import"
152
- msgstr "Importar"
153
-
154
- #: mtekk_admin_class.php:505
155
- #: breadcrumb_navxt_admin.php:423
156
- msgid "Export"
157
- msgstr "Exportar"
158
-
159
- #: mtekk_admin_class.php:506
160
- #: breadcrumb_navxt_admin.php:423
161
- msgid "Reset"
162
- msgstr "Reiniciar"
163
-
164
- #: breadcrumb_navxt_admin.php:35
165
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
166
- msgstr "Su versión de PHP es obsoleta, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
167
-
168
- #: breadcrumb_navxt_admin.php:112
169
- msgid "Insufficient privileges to proceed."
170
- msgstr "No tiene privilegios para proceder."
171
-
172
- #: breadcrumb_navxt_admin.php:217
173
- #: breadcrumb_navxt_class.php:207
174
- msgid "Home"
175
- msgstr "Inicio"
176
-
177
- #: breadcrumb_navxt_admin.php:219
178
- #: breadcrumb_navxt_admin.php:580
179
- #: breadcrumb_navxt_admin.php:773
180
- #: breadcrumb_navxt_class.php:130
181
- #: breadcrumb_navxt_class.php:209
182
- #: breadcrumb_navxt_class.php:219
183
- #: breadcrumb_navxt_class.php:223
184
- #: breadcrumb_navxt_class.php:247
185
- #: breadcrumb_navxt_class.php:263
186
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
187
- msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
188
-
189
- #: breadcrumb_navxt_admin.php:304
190
- msgid "Settings successfully saved."
191
- msgstr "Ajustes guardados exitosamente."
192
-
193
- #: breadcrumb_navxt_admin.php:304
194
- #: breadcrumb_navxt_admin.php:309
195
- msgid "Undo the options save."
196
- msgstr "Deshacer modificación de opciones."
197
-
198
- #: breadcrumb_navxt_admin.php:309
199
- msgid "Some settings were not saved."
200
- msgstr "Algunos ajustes no fueron grabados."
201
-
202
- #: breadcrumb_navxt_admin.php:310
203
- msgid "The following settings were not saved:"
204
- msgstr "Los siguientes ajustes no fueron grabados:"
205
-
206
- #: breadcrumb_navxt_admin.php:315
207
- msgid "Please include this message in your %sbug report%s."
208
- msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
209
-
210
- #: breadcrumb_navxt_admin.php:315
211
- #: breadcrumb_navxt_admin.php:339
212
- msgid "Go to the Breadcrumb NavXT support post for your version."
213
- msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
214
-
215
- #: breadcrumb_navxt_admin.php:337
216
- msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
217
- msgstr "Encontrará tips para las configuraciones debajo de cada opción. Por favor lea la %sdocumentación%s para más información (en inglés)."
218
-
219
- #: breadcrumb_navxt_admin.php:338
220
- msgid "Go to the Breadcrumb NavXT online documentation"
221
- msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
222
-
223
- #: breadcrumb_navxt_admin.php:339
224
- msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
225
- msgstr "Si piensa que ha encontrado un bug, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el bug cuando %sreporte el problema%s."
226
-
227
- #: breadcrumb_navxt_admin.php:340
228
- msgid "Quick Start Information"
229
- msgstr "Información para Inicio Rápido"
230
-
231
- #: breadcrumb_navxt_admin.php:340
232
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
233
- msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
234
-
235
- #: breadcrumb_navxt_admin.php:341
236
- msgid "Breadcrumb trail with separators"
237
- msgstr "Ruta de Navegación con Separadores"
238
-
239
- #: breadcrumb_navxt_admin.php:342
240
- msgid "Breadcrumb trail in list form"
241
- msgstr "Ruta de Navegación como Listado"
242
-
243
- #: breadcrumb_navxt_admin.php:445
244
- msgid "Breadcrumb NavXT Settings"
245
- msgstr "Opciones de Configuración de Breadcrumb NavXT"
246
-
247
- #: breadcrumb_navxt_admin.php:453
248
- msgid "General"
249
- msgstr "General"
250
-
251
- #: breadcrumb_navxt_admin.php:456
252
- msgid "Breadcrumb Separator"
253
- msgstr "Separador de Navegación"
254
-
255
- #: breadcrumb_navxt_admin.php:456
256
- msgid "Placed in between each breadcrumb."
257
- msgstr "Colocado en medio de cada opción de navegación."
258
-
259
- #: breadcrumb_navxt_admin.php:457
260
- msgid "Breadcrumb Max Title Length"
261
- msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
262
-
263
- #: breadcrumb_navxt_admin.php:461
264
- msgid "Home Breadcrumb"
265
- msgstr "Incluir Inicio"
266
-
267
- #: breadcrumb_navxt_admin.php:466
268
- msgid "Place the home breadcrumb in the trail."
269
- msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
270
-
271
- #: breadcrumb_navxt_admin.php:471
272
- msgid "Home Title: "
273
- msgstr "Título de Página de Inicio:"
274
-
275
- #: breadcrumb_navxt_admin.php:479
276
- msgid "Home Prefix"
277
- msgstr "Prefijo de Inicio"
278
-
279
- #: breadcrumb_navxt_admin.php:480
280
- msgid "Home Suffix"
281
- msgstr "Sufijo de Inicio"
282
-
283
- #: breadcrumb_navxt_admin.php:481
284
- msgid "Home Anchor"
285
- msgstr "Vínculo a Inicio"
286
-
287
- #: breadcrumb_navxt_admin.php:481
288
- msgid "The anchor template for the home breadcrumb."
289
- msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
290
-
291
- #: breadcrumb_navxt_admin.php:482
292
- msgid "Blog Breadcrumb"
293
- msgstr "Incluir Inicio (del Blog)"
294
-
295
- #: breadcrumb_navxt_admin.php:482
296
- msgid "Place the blog breadcrumb in the trail."
297
- msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
298
-
299
- #: breadcrumb_navxt_admin.php:483
300
- msgid "Blog Anchor"
301
- msgstr "Vínculo a Blog"
302
-
303
- #: breadcrumb_navxt_admin.php:483
304
- msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
305
- msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
306
-
307
- #: breadcrumb_navxt_admin.php:487
308
- msgid "Main Site Breadcrumb"
309
- msgstr "Ruta del Sitio Principal"
310
-
311
- #: breadcrumb_navxt_admin.php:492
312
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
313
- msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
314
-
315
- #: breadcrumb_navxt_admin.php:497
316
- msgid "Main Site Home Title: "
317
- msgstr "Título de Página de Inicio del Sitio Principal: "
318
-
319
- #: breadcrumb_navxt_admin.php:506
320
- msgid "Main Site Home Prefix"
321
- msgstr "Prefijo de Inicio del Sitio Principal"
322
-
323
- #: breadcrumb_navxt_admin.php:506
324
- #: breadcrumb_navxt_admin.php:507
325
- msgid "Used for the main site home breadcrumb in an multisite setup"
326
- msgstr "Utilizado para el sitio principal de breadcrumb en una configuración para múltiples blogs"
327
-
328
- #: breadcrumb_navxt_admin.php:507
329
- msgid "Main Site Home Suffix"
330
- msgstr "Sufijo de Inicio del Sitio Principal"
331
-
332
- #: breadcrumb_navxt_admin.php:508
333
- msgid "Main Site Home Anchor"
334
- msgstr "Vínculo a Inicio del Sitio Principal"
335
-
336
- #: breadcrumb_navxt_admin.php:508
337
- msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
338
- msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
339
-
340
- #: breadcrumb_navxt_admin.php:513
341
- msgid "Current Item"
342
- msgstr "Item Actual"
343
-
344
- #: breadcrumb_navxt_admin.php:516
345
- msgid "Link Current Item"
346
- msgstr "Incluir Vínculo a Item Actual"
347
-
348
- #: breadcrumb_navxt_admin.php:516
349
- msgid "Yes"
350
- msgstr "Sí"
351
-
352
- #: breadcrumb_navxt_admin.php:517
353
- msgid "Current Item Prefix"
354
- msgstr "Prefijo de Item Actual"
355
-
356
- #: breadcrumb_navxt_admin.php:517
357
- msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
358
- msgstr "Esto se coloca siempre antes de la última opción de la ruta de navegación, antes que cualquier otro prefijo para esa opción."
359
-
360
- #: breadcrumb_navxt_admin.php:518
361
- msgid "Current Item Suffix"
362
- msgstr "Sufijo de Item Actual"
363
-
364
- #: breadcrumb_navxt_admin.php:518
365
- msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
366
- msgstr "Esto se coloca siempre después del último item de la ruta de navegación y después de cualquier otro sufijo para ese item."
367
-
368
- #: breadcrumb_navxt_admin.php:519
369
- msgid "Current Item Anchor"
370
- msgstr "Vínculo a Item Actual"
371
-
372
- #: breadcrumb_navxt_admin.php:519
373
- msgid "The anchor template for current item breadcrumbs."
374
- msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
375
-
376
- #: breadcrumb_navxt_admin.php:520
377
- msgid "Paged Breadcrumb"
378
- msgstr "Ruta de Navegación Paginada"
379
-
380
- #: breadcrumb_navxt_admin.php:520
381
- msgid "Include the paged breadcrumb in the breadcrumb trail."
382
- msgstr "Incluir la navegación paginada en la ruta de navegación"
383
-
384
- #: breadcrumb_navxt_admin.php:520
385
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
386
- msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
387
-
388
- #: breadcrumb_navxt_admin.php:521
389
- msgid "Paged Prefix"
390
- msgstr "Prefijo para Paginado"
391
-
392
- #: breadcrumb_navxt_admin.php:522
393
- msgid "Paged Suffix"
394
- msgstr "Sufijo para Paginado"
395
-
396
- #: breadcrumb_navxt_admin.php:527
397
- msgid "Posts &amp; Pages"
398
- msgstr "Entradas &amp; Páginas"
399
-
400
- #: breadcrumb_navxt_admin.php:530
401
- msgid "Post Prefix"
402
- msgstr "Prefijo de Entrada"
403
-
404
- #: breadcrumb_navxt_admin.php:531
405
- msgid "Post Suffix"
406
- msgstr "Sufijo de Entrada"
407
-
408
- #: breadcrumb_navxt_admin.php:532
409
- msgid "Post Anchor"
410
- msgstr "Vínculo a Entrada"
411
-
412
- #: breadcrumb_navxt_admin.php:532
413
- msgid "The anchor template for post breadcrumbs."
414
- msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
415
-
416
- #: breadcrumb_navxt_admin.php:533
417
- msgid "Post Taxonomy Display"
418
- msgstr "Mostrar Clasificación de Entradas"
419
-
420
- #: breadcrumb_navxt_admin.php:533
421
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
422
- msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
423
-
424
- #: breadcrumb_navxt_admin.php:537
425
- msgid "Post Taxonomy"
426
- msgstr "Clasificación de Entradas"
427
-
428
- #: breadcrumb_navxt_admin.php:541
429
- #: breadcrumb_navxt_admin.php:663
430
- msgid "Categories"
431
- msgstr "Categorías"
432
-
433
- #: breadcrumb_navxt_admin.php:542
434
- #: breadcrumb_navxt_admin.php:641
435
- msgid "Dates"
436
- msgstr "Fechas"
437
-
438
- #: breadcrumb_navxt_admin.php:543
439
- #: breadcrumb_navxt_admin.php:675
440
- msgid "Tags"
441
- msgstr "Etiquetas"
442
-
443
- #: breadcrumb_navxt_admin.php:544
444
- #: breadcrumb_navxt_admin.php:642
445
- msgid "Pages"
446
- msgstr "Páginas"
447
-
448
- #: breadcrumb_navxt_admin.php:555
449
- #: breadcrumb_navxt_admin.php:653
450
- msgid "The taxonomy which the breadcrumb trail will show."
451
- msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
452
-
453
- #: breadcrumb_navxt_admin.php:559
454
- msgid "Page Prefix"
455
- msgstr "Prefijo de Página"
456
-
457
- #: breadcrumb_navxt_admin.php:560
458
- msgid "Page Suffix"
459
- msgstr "Sufijo de Página"
460
-
461
- #: breadcrumb_navxt_admin.php:561
462
- msgid "Page Anchor"
463
- msgstr "Vínculo a Página"
464
-
465
- #: breadcrumb_navxt_admin.php:561
466
- msgid "The anchor template for page breadcrumbs."
467
- msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
468
-
469
- #: breadcrumb_navxt_admin.php:562
470
- msgid "Attachment Prefix"
471
- msgstr "Prefijo de Archivo Adjunto"
472
-
473
- #: breadcrumb_navxt_admin.php:563
474
- msgid "Attachment Suffix"
475
- msgstr "Sufijo de Archivo Adjunto"
476
-
477
- #: breadcrumb_navxt_admin.php:616
478
- #: breadcrumb_navxt_admin.php:708
479
- msgid "%s Prefix"
480
- msgstr "Prefijo de %s"
481
-
482
- #: breadcrumb_navxt_admin.php:617
483
- #: breadcrumb_navxt_admin.php:709
484
- msgid "%s Suffix"
485
- msgstr "Sufijo de %s"
486
-
487
- #: breadcrumb_navxt_admin.php:618
488
- #: breadcrumb_navxt_admin.php:710
489
- msgid "%s Anchor"
490
- msgstr "Vínculo a %s"
491
-
492
- #: breadcrumb_navxt_admin.php:618
493
- #: breadcrumb_navxt_admin.php:710
494
- msgid "The anchor template for %s breadcrumbs."
495
- msgstr "La plantilla de vínculo para los elementos de ruta de %s."
496
-
497
- #: breadcrumb_navxt_admin.php:623
498
- msgid "%s Root Page"
499
- msgstr "%s Página Raíz"
500
-
501
- #: breadcrumb_navxt_admin.php:626
502
- msgid "&mdash; Select &mdash;"
503
- msgstr "&mdash; Seleccione &mdash;"
504
-
505
- #: breadcrumb_navxt_admin.php:633
506
- msgid "%s Taxonomy Display"
507
- msgstr "%s Despliegue de Clasificación"
508
-
509
- #: breadcrumb_navxt_admin.php:633
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
512
-
513
- #: breadcrumb_navxt_admin.php:637
514
- msgid "%s Taxonomy"
515
- msgstr "%s Clasificación"
516
-
517
- #: breadcrumb_navxt_admin.php:666
518
- msgid "Category Prefix"
519
- msgstr "Prefijo de Categoría"
520
-
521
- #: breadcrumb_navxt_admin.php:666
522
- msgid "Applied before the anchor on all category breadcrumbs."
523
- msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
524
-
525
- #: breadcrumb_navxt_admin.php:667
526
- msgid "Category Suffix"
527
- msgstr "Sufijo de Categoría"
528
-
529
- #: breadcrumb_navxt_admin.php:667
530
- msgid "Applied after the anchor on all category breadcrumbs."
531
- msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
532
-
533
- #: breadcrumb_navxt_admin.php:668
534
- msgid "Category Anchor"
535
- msgstr "Vínculo a Categoría"
536
-
537
- #: breadcrumb_navxt_admin.php:668
538
- msgid "The anchor template for category breadcrumbs."
539
- msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
540
-
541
- #: breadcrumb_navxt_admin.php:669
542
- msgid "Archive by Category Prefix"
543
- msgstr "Prefijo de Archivo por Categoría"
544
-
545
- #: breadcrumb_navxt_admin.php:669
546
- msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
547
- msgstr "Aplicado antes del título del item actual en un archivo por categoría."
548
-
549
- #: breadcrumb_navxt_admin.php:670
550
- msgid "Archive by Category Suffix"
551
- msgstr "Sufijo de Archivo por Categoría"
552
-
553
- #: breadcrumb_navxt_admin.php:670
554
- msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
555
- msgstr "Aplicado después del título del item actual en un archivo por categoría."
556
-
557
- #: breadcrumb_navxt_admin.php:678
558
- msgid "Tag Prefix"
559
- msgstr "Prefijo de Etiqueta"
560
-
561
- #: breadcrumb_navxt_admin.php:678
562
- msgid "Applied before the anchor on all tag breadcrumbs."
563
- msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
564
-
565
- #: breadcrumb_navxt_admin.php:679
566
- msgid "Tag Suffix"
567
- msgstr "Sufijo de Etiqueta"
568
-
569
- #: breadcrumb_navxt_admin.php:679
570
- msgid "Applied after the anchor on all tag breadcrumbs."
571
- msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
572
-
573
- #: breadcrumb_navxt_admin.php:680
574
- msgid "Tag Anchor"
575
- msgstr "Vínculo a Etiqueta"
576
-
577
- #: breadcrumb_navxt_admin.php:680
578
- msgid "The anchor template for tag breadcrumbs."
579
- msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
580
-
581
- #: breadcrumb_navxt_admin.php:681
582
- msgid "Archive by Tag Prefix"
583
- msgstr "Prefijo de Archivo por Etiqueta"
584
-
585
- #: breadcrumb_navxt_admin.php:681
586
- msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
587
- msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
588
-
589
- #: breadcrumb_navxt_admin.php:682
590
- msgid "Archive by Tag Suffix"
591
- msgstr "Sufijo de Archivo por Etiqueta"
592
-
593
- #: breadcrumb_navxt_admin.php:682
594
- msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
595
- msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
596
-
597
- #: breadcrumb_navxt_admin.php:708
598
- msgid "Applied before the anchor on all %s breadcrumbs."
599
- msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
600
-
601
- #: breadcrumb_navxt_admin.php:709
602
- msgid "Applied after the anchor on all %s breadcrumbs."
603
- msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
604
-
605
- #: breadcrumb_navxt_admin.php:711
606
- msgid "Archive by %s Prefix"
607
- msgstr "Archivo por Prefijo de %s"
608
-
609
- #: breadcrumb_navxt_admin.php:711
610
- msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
611
- msgstr "Aplicado antes del título del item actual en un archivo por página %s."
612
-
613
- #: breadcrumb_navxt_admin.php:712
614
- msgid "Archive by %s Suffix"
615
- msgstr "Archivo por Sufijo de %s"
616
-
617
- #: breadcrumb_navxt_admin.php:712
618
- msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
619
- msgstr "Aplicado después del título del item actual en un archivo por página %s."
620
-
621
- #: breadcrumb_navxt_admin.php:721
622
- msgid "Date Archives"
623
- msgstr "Archivos por Fecha"
624
-
625
- #: breadcrumb_navxt_admin.php:724
626
- msgid "Date Anchor"
627
- msgstr "Vínculo a Fecha"
628
-
629
- #: breadcrumb_navxt_admin.php:724
630
- msgid "The anchor template for date breadcrumbs."
631
- msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
632
-
633
- #: breadcrumb_navxt_admin.php:725
634
- msgid "Archive by Date Prefix"
635
- msgstr "Prefijo de Archivo por Fecha"
636
-
637
- #: breadcrumb_navxt_admin.php:725
638
- msgid "Applied before the anchor on all date breadcrumbs."
639
- msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
640
-
641
- #: breadcrumb_navxt_admin.php:726
642
- msgid "Archive by Date Suffix"
643
- msgstr "Sufijo de Archivo por Fecha"
644
-
645
- #: breadcrumb_navxt_admin.php:726
646
- msgid "Applied after the anchor on all date breadcrumbs."
647
- msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
648
-
649
- #: breadcrumb_navxt_admin.php:731
650
- msgid "Miscellaneous"
651
- msgstr "Misceláneos"
652
-
653
- #: breadcrumb_navxt_admin.php:734
654
- msgid "Author Prefix"
655
- msgstr "Prefijo de Autor"
656
-
657
- #: breadcrumb_navxt_admin.php:735
658
- msgid "Author Suffix"
659
- msgstr "Sufijo de Autor"
660
-
661
- #: breadcrumb_navxt_admin.php:736
662
- msgid "Author Display Format"
663
- msgstr "Formato de Despliegue de Autor"
664
-
665
- #: breadcrumb_navxt_admin.php:736
666
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
667
- msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
668
-
669
- #: breadcrumb_navxt_admin.php:737
670
- msgid "Search Prefix"
671
- msgstr "Prefijo de Búsqueda"
672
-
673
- #: breadcrumb_navxt_admin.php:738
674
- msgid "Search Suffix"
675
- msgstr "Sufijo de Búsqueda"
676
-
677
- #: breadcrumb_navxt_admin.php:739
678
- msgid "Search Anchor"
679
- msgstr "Vínculo a Búsqueda"
680
-
681
- #: breadcrumb_navxt_admin.php:739
682
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
683
- msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
684
-
685
- #: breadcrumb_navxt_admin.php:740
686
- msgid "404 Title"
687
- msgstr "Título Error 404"
688
-
689
- #: breadcrumb_navxt_admin.php:741
690
- msgid "404 Prefix"
691
- msgstr "Prefijo de Error 404"
692
-
693
- #: breadcrumb_navxt_admin.php:742
694
- msgid "404 Suffix"
695
- msgstr "Sufijo de Error 404"
696
-
697
- #: breadcrumb_navxt_admin.php:747
698
- msgid "Save Changes"
699
- msgstr "Grabar Cambios"
700
-
701
- #: breadcrumb_navxt_class.php:217
702
- msgid "Blog"
703
- msgstr "Inicio"
704
-
705
- #: breadcrumb_navxt_class.php:236
706
- msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
707
- msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
708
-
709
- #: breadcrumb_navxt_class.php:281
710
- msgid "404"
711
- msgstr "Página no encontrada"
712
-
713
- #: breadcrumb_navxt_class.php:284
714
- msgid "Search results for &#39;"
715
- msgstr "Resultados de búsqueda para &#39;"
716
-
717
- #: breadcrumb_navxt_class.php:288
718
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
719
- msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
720
-
721
- #: breadcrumb_navxt_class.php:295
722
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
723
- msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
724
-
725
- #: breadcrumb_navxt_class.php:298
726
- msgid "Articles by: "
727
- msgstr "Artículos por: "
728
-
729
- #: breadcrumb_navxt_class.php:302
730
- msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
731
- msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
732
-
733
- #: breadcrumb_navxt_class.php:311
734
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
735
- msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
736
-
737
- #: breadcrumb_navxt_class.php:314
738
- msgid "Archive by category &#39;"
739
- msgstr "Archivo por Categoría &#39;"
740
-
741
- #: breadcrumb_navxt_class.php:318
742
- msgid "Archive by tag &#39;"
743
- msgstr "Archivo por Etiqueta &#39;"
744
-
745
- #: breadcrumb_navxt_class.php:321
746
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
747
- msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
748
-
749
- #~ msgid "Un"
750
- #~ msgstr "Des"
751
- #~ msgid "Untagged"
752
- #~ msgstr "Sin etiqueta"
753
- #~ msgid ""
754
- #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
755
- #~ "the default values. Are you sure you want to continue?"
756
- #~ msgstr ""
757
- #~ "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los "
758
- #~ "valores predeterminados. ¿Seguro que desea continuar?"
759
- #~ msgid ""
760
- #~ "All of your current Breadcrumb NavXT settings will be overwritten with "
761
- #~ "the imported values. Are you sure you want to continue?"
762
- #~ msgstr ""
763
- #~ "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los "
764
- #~ "valores que se importen. ¿Seguro que desea continuar?"
765
- #~ msgid ""
766
- #~ "Warning, your version of Breadcrumb NavXT does not match the version "
767
- #~ "supported by this administrative interface. As a result, settings may not "
768
- #~ "work as expected."
769
- #~ msgstr ""
770
- #~ "Advertencia, la versión de Breadcrumb NavXT que usted posee no es "
771
- #~ "compatible con la versión proveída por la iinterfaz de administración. "
772
- #~ "Como resultado, las configuraciones pueden no funcionar apropiadamente."
773
- #~ msgid "Your Breadcrumb NavXT Administration interface version is "
774
- #~ msgstr "La versión de su interfaz de Administración Breadcrumb NavXT es "
775
- #~ msgid "Your Breadcrumb NavXT version is "
776
- #~ msgstr "La versión de Breadcrubm NavXT que posee es "
777
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb_navxt.mo CHANGED
Binary file
languages/breadcrumb_navxt.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
6
- "PO-Revision-Date: 2011-02-09 11:38-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,732 +14,722 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
- #: breadcrumb_navxt_widget.php:24
18
  msgid "Adds a breadcrumb trail to your sidebar"
19
  msgstr ""
20
 
21
- #: breadcrumb_navxt_widget.php:85
22
  msgid "Title:"
23
  msgstr ""
24
 
25
- #: breadcrumb_navxt_widget.php:89
26
  msgid "Output trail as:"
27
  msgstr ""
28
 
29
- #: breadcrumb_navxt_widget.php:91
30
  msgid "List"
31
  msgstr ""
32
 
33
- #: breadcrumb_navxt_widget.php:92
34
  msgid "RDFa"
35
  msgstr ""
36
 
37
- #: breadcrumb_navxt_widget.php:93
38
  msgid "Microformat"
39
  msgstr ""
40
 
41
- #: breadcrumb_navxt_widget.php:94
42
  msgid "Plain"
43
  msgstr ""
44
 
45
- #: breadcrumb_navxt_widget.php:99
46
  msgid "Link the breadcrumbs"
47
  msgstr ""
48
 
49
- #: breadcrumb_navxt_widget.php:101
50
  msgid "Reverse the order of the trail"
51
  msgstr ""
52
 
53
- #: breadcrumb_navxt_widget.php:103
54
  msgid "Hide the trail on the front page"
55
  msgstr ""
56
 
57
- #: mtekk_admin_class.php:59
58
- msgid "Undo"
59
  msgstr ""
60
 
61
- #: mtekk_admin_class.php:67
62
- #: mtekk_admin_class.php:191
63
- msgid "Migrate now."
64
  msgstr ""
65
 
66
- #: mtekk_admin_class.php:164
67
- msgid "Settings"
68
  msgstr ""
69
 
70
- #: mtekk_admin_class.php:191
71
- msgid "Your settings are out of date."
72
  msgstr ""
73
 
74
- #: mtekk_admin_class.php:191
75
- msgid "Migrate the settings now."
76
  msgstr ""
77
 
78
- #: mtekk_admin_class.php:198
79
- msgid "Your plugin install is incomplete."
80
  msgstr ""
81
 
82
- #: mtekk_admin_class.php:198
83
- msgid "Load default settings now."
84
  msgstr ""
85
 
86
- #: mtekk_admin_class.php:198
87
- msgid "Complete now."
88
  msgstr ""
89
 
90
- #: mtekk_admin_class.php:311
91
- msgid "Settings successfully imported from the uploaded file."
92
  msgstr ""
93
 
94
- #: mtekk_admin_class.php:311
95
- msgid "Undo the options import."
 
96
  msgstr ""
97
 
98
- #: mtekk_admin_class.php:316
99
- msgid "Importing settings from file failed."
100
  msgstr ""
101
 
102
- #: mtekk_admin_class.php:335
103
- msgid "Settings successfully reset to the default values."
104
  msgstr ""
105
 
106
- #: mtekk_admin_class.php:335
107
- msgid "Undo the options reset."
108
  msgstr ""
109
 
110
- #: mtekk_admin_class.php:352
111
- msgid "Settings successfully undid the last operation."
112
  msgstr ""
113
 
114
- #: mtekk_admin_class.php:352
115
- msgid "Undo the last undo operation."
 
116
  msgstr ""
117
 
118
- #: mtekk_admin_class.php:387
119
- msgid "Settings successfully migrated."
120
  msgstr ""
121
 
122
- #: mtekk_admin_class.php:394
123
- msgid "Default settings successfully installed."
124
  msgstr ""
125
 
126
- #: mtekk_admin_class.php:425
127
- msgid "Get help with \"%s\""
128
  msgstr ""
129
 
130
- #: mtekk_admin_class.php:495
131
- msgid "Import/Export/Reset Settings"
132
  msgstr ""
133
 
134
- #: mtekk_admin_class.php:496
135
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
136
  msgstr ""
137
 
138
- #: mtekk_admin_class.php:499
139
- msgid "Settings File"
140
  msgstr ""
141
 
142
- #: mtekk_admin_class.php:502
143
- msgid "Select a XML settings file to upload and import settings from."
144
  msgstr ""
145
 
146
- #: mtekk_admin_class.php:504
147
- #: breadcrumb_navxt_admin.php:423
148
  msgid "Import"
149
  msgstr ""
150
 
151
- #: mtekk_admin_class.php:505
152
- #: breadcrumb_navxt_admin.php:423
153
  msgid "Export"
154
  msgstr ""
155
 
156
- #: mtekk_admin_class.php:506
157
- #: breadcrumb_navxt_admin.php:423
158
  msgid "Reset"
159
  msgstr ""
160
 
161
- #: breadcrumb_navxt_admin.php:35
162
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
163
- msgstr ""
164
-
165
- #: breadcrumb_navxt_admin.php:112
166
- msgid "Insufficient privileges to proceed."
167
- msgstr ""
168
-
169
- #: breadcrumb_navxt_admin.php:217
170
- #: breadcrumb_navxt_class.php:207
171
- msgid "Home"
172
  msgstr ""
173
 
174
- #: breadcrumb_navxt_admin.php:219
175
- #: breadcrumb_navxt_admin.php:580
176
- #: breadcrumb_navxt_admin.php:773
177
- #: breadcrumb_navxt_class.php:130
178
- #: breadcrumb_navxt_class.php:209
179
- #: breadcrumb_navxt_class.php:219
180
- #: breadcrumb_navxt_class.php:223
181
- #: breadcrumb_navxt_class.php:247
182
- #: breadcrumb_navxt_class.php:263
183
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
184
  msgstr ""
185
 
186
- #: breadcrumb_navxt_admin.php:304
187
- msgid "Settings successfully saved."
188
  msgstr ""
189
 
190
- #: breadcrumb_navxt_admin.php:304
191
- #: breadcrumb_navxt_admin.php:309
192
- msgid "Undo the options save."
193
  msgstr ""
194
 
195
- #: breadcrumb_navxt_admin.php:309
196
- msgid "Some settings were not saved."
197
  msgstr ""
198
 
199
- #: breadcrumb_navxt_admin.php:310
200
- msgid "The following settings were not saved:"
201
  msgstr ""
202
 
203
- #: breadcrumb_navxt_admin.php:315
204
- msgid "Please include this message in your %sbug report%s."
205
  msgstr ""
206
 
207
- #: breadcrumb_navxt_admin.php:315
208
- #: breadcrumb_navxt_admin.php:339
209
- msgid "Go to the Breadcrumb NavXT support post for your version."
210
  msgstr ""
211
 
212
- #: breadcrumb_navxt_admin.php:337
213
- msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
214
  msgstr ""
215
 
216
- #: breadcrumb_navxt_admin.php:338
217
- msgid "Go to the Breadcrumb NavXT online documentation"
218
  msgstr ""
219
 
220
- #: breadcrumb_navxt_admin.php:339
221
- msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
222
  msgstr ""
223
 
224
- #: breadcrumb_navxt_admin.php:340
225
- msgid "Quick Start Information"
226
  msgstr ""
227
 
228
- #: breadcrumb_navxt_admin.php:340
229
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
230
  msgstr ""
231
 
232
- #: breadcrumb_navxt_admin.php:341
233
- msgid "Breadcrumb trail with separators"
234
  msgstr ""
235
 
236
- #: breadcrumb_navxt_admin.php:342
237
- msgid "Breadcrumb trail in list form"
238
  msgstr ""
239
 
240
- #: breadcrumb_navxt_admin.php:445
241
- msgid "Breadcrumb NavXT Settings"
242
  msgstr ""
243
 
244
- #: breadcrumb_navxt_admin.php:453
245
- msgid "General"
246
  msgstr ""
247
 
248
- #: breadcrumb_navxt_admin.php:456
249
- msgid "Breadcrumb Separator"
250
  msgstr ""
251
 
252
- #: breadcrumb_navxt_admin.php:456
253
- msgid "Placed in between each breadcrumb."
254
  msgstr ""
255
 
256
- #: breadcrumb_navxt_admin.php:457
257
- msgid "Breadcrumb Max Title Length"
258
  msgstr ""
259
 
260
- #: breadcrumb_navxt_admin.php:461
261
- msgid "Home Breadcrumb"
262
  msgstr ""
263
 
264
- #: breadcrumb_navxt_admin.php:466
265
- msgid "Place the home breadcrumb in the trail."
266
  msgstr ""
267
 
268
- #: breadcrumb_navxt_admin.php:471
269
- msgid "Home Title: "
270
  msgstr ""
271
 
272
- #: breadcrumb_navxt_admin.php:479
273
- msgid "Home Prefix"
274
  msgstr ""
275
 
276
- #: breadcrumb_navxt_admin.php:480
277
- msgid "Home Suffix"
278
  msgstr ""
279
 
280
- #: breadcrumb_navxt_admin.php:481
281
- msgid "Home Anchor"
282
  msgstr ""
283
 
284
- #: breadcrumb_navxt_admin.php:481
285
- msgid "The anchor template for the home breadcrumb."
286
  msgstr ""
287
 
288
- #: breadcrumb_navxt_admin.php:482
289
- msgid "Blog Breadcrumb"
290
  msgstr ""
291
 
292
- #: breadcrumb_navxt_admin.php:482
293
- msgid "Place the blog breadcrumb in the trail."
294
  msgstr ""
295
 
296
- #: breadcrumb_navxt_admin.php:483
297
- msgid "Blog Anchor"
298
  msgstr ""
299
 
300
- #: breadcrumb_navxt_admin.php:483
301
- msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
302
  msgstr ""
303
 
304
- #: breadcrumb_navxt_admin.php:487
305
- msgid "Main Site Breadcrumb"
306
  msgstr ""
307
 
308
- #: breadcrumb_navxt_admin.php:492
309
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
310
  msgstr ""
311
 
312
- #: breadcrumb_navxt_admin.php:497
313
- msgid "Main Site Home Title: "
314
  msgstr ""
315
 
316
- #: breadcrumb_navxt_admin.php:506
317
- msgid "Main Site Home Prefix"
318
  msgstr ""
319
 
320
- #: breadcrumb_navxt_admin.php:506
321
- #: breadcrumb_navxt_admin.php:507
322
- msgid "Used for the main site home breadcrumb in an multisite setup"
323
  msgstr ""
324
 
325
- #: breadcrumb_navxt_admin.php:507
326
- msgid "Main Site Home Suffix"
327
  msgstr ""
328
 
329
- #: breadcrumb_navxt_admin.php:508
330
- msgid "Main Site Home Anchor"
331
  msgstr ""
332
 
333
- #: breadcrumb_navxt_admin.php:508
334
- msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
335
  msgstr ""
336
 
337
- #: breadcrumb_navxt_admin.php:513
338
- msgid "Current Item"
339
  msgstr ""
340
 
341
- #: breadcrumb_navxt_admin.php:516
342
- msgid "Link Current Item"
343
  msgstr ""
344
 
345
- #: breadcrumb_navxt_admin.php:516
346
- msgid "Yes"
347
- msgstr ""
348
-
349
- #: breadcrumb_navxt_admin.php:517
350
- msgid "Current Item Prefix"
351
  msgstr ""
352
 
353
- #: breadcrumb_navxt_admin.php:517
354
- msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
355
  msgstr ""
356
 
357
- #: breadcrumb_navxt_admin.php:518
358
- msgid "Current Item Suffix"
359
  msgstr ""
360
 
361
- #: breadcrumb_navxt_admin.php:518
362
- msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
363
  msgstr ""
364
 
365
- #: breadcrumb_navxt_admin.php:519
366
- msgid "Current Item Anchor"
 
367
  msgstr ""
368
 
369
- #: breadcrumb_navxt_admin.php:519
370
- msgid "The anchor template for current item breadcrumbs."
371
  msgstr ""
372
 
373
- #: breadcrumb_navxt_admin.php:520
374
- msgid "Paged Breadcrumb"
 
375
  msgstr ""
376
 
377
- #: breadcrumb_navxt_admin.php:520
378
- msgid "Include the paged breadcrumb in the breadcrumb trail."
 
379
  msgstr ""
380
 
381
- #: breadcrumb_navxt_admin.php:520
382
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
383
  msgstr ""
384
 
385
- #: breadcrumb_navxt_admin.php:521
386
- msgid "Paged Prefix"
387
  msgstr ""
388
 
389
- #: breadcrumb_navxt_admin.php:522
390
- msgid "Paged Suffix"
391
  msgstr ""
392
 
393
- #: breadcrumb_navxt_admin.php:527
394
- msgid "Posts &amp; Pages"
395
  msgstr ""
396
 
397
- #: breadcrumb_navxt_admin.php:530
398
- msgid "Post Prefix"
399
  msgstr ""
400
 
401
- #: breadcrumb_navxt_admin.php:531
402
- msgid "Post Suffix"
403
  msgstr ""
404
 
405
- #: breadcrumb_navxt_admin.php:532
406
- msgid "Post Anchor"
407
  msgstr ""
408
 
409
- #: breadcrumb_navxt_admin.php:532
410
- msgid "The anchor template for post breadcrumbs."
411
  msgstr ""
412
 
413
- #: breadcrumb_navxt_admin.php:533
414
- msgid "Post Taxonomy Display"
 
 
 
 
 
 
 
 
415
  msgstr ""
416
 
417
- #: breadcrumb_navxt_admin.php:533
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
 
419
  msgstr ""
420
 
421
- #: breadcrumb_navxt_admin.php:537
422
- msgid "Post Taxonomy"
 
423
  msgstr ""
424
 
 
425
  #: breadcrumb_navxt_admin.php:541
426
- #: breadcrumb_navxt_admin.php:663
427
- msgid "Categories"
428
  msgstr ""
429
 
 
430
  #: breadcrumb_navxt_admin.php:542
431
- #: breadcrumb_navxt_admin.php:641
432
- msgid "Dates"
433
  msgstr ""
434
 
435
- #: breadcrumb_navxt_admin.php:543
436
- #: breadcrumb_navxt_admin.php:675
437
- msgid "Tags"
438
  msgstr ""
439
 
440
- #: breadcrumb_navxt_admin.php:544
441
- #: breadcrumb_navxt_admin.php:642
442
- msgid "Pages"
443
  msgstr ""
444
 
445
- #: breadcrumb_navxt_admin.php:555
446
- #: breadcrumb_navxt_admin.php:653
447
- msgid "The taxonomy which the breadcrumb trail will show."
448
  msgstr ""
449
 
450
- #: breadcrumb_navxt_admin.php:559
451
- msgid "Page Prefix"
452
  msgstr ""
453
 
454
- #: breadcrumb_navxt_admin.php:560
455
- msgid "Page Suffix"
456
  msgstr ""
457
 
458
- #: breadcrumb_navxt_admin.php:561
459
- msgid "Page Anchor"
460
  msgstr ""
461
 
462
- #: breadcrumb_navxt_admin.php:561
463
- msgid "The anchor template for page breadcrumbs."
464
  msgstr ""
465
 
466
- #: breadcrumb_navxt_admin.php:562
467
- msgid "Attachment Prefix"
468
  msgstr ""
469
 
470
- #: breadcrumb_navxt_admin.php:563
471
- msgid "Attachment Suffix"
472
  msgstr ""
473
 
474
- #: breadcrumb_navxt_admin.php:616
475
- #: breadcrumb_navxt_admin.php:708
476
- msgid "%s Prefix"
477
  msgstr ""
478
 
479
- #: breadcrumb_navxt_admin.php:617
480
- #: breadcrumb_navxt_admin.php:709
481
- msgid "%s Suffix"
482
  msgstr ""
483
 
484
- #: breadcrumb_navxt_admin.php:618
485
- #: breadcrumb_navxt_admin.php:710
486
- msgid "%s Anchor"
487
  msgstr ""
488
 
489
- #: breadcrumb_navxt_admin.php:618
490
- #: breadcrumb_navxt_admin.php:710
491
- msgid "The anchor template for %s breadcrumbs."
492
  msgstr ""
493
 
494
- #: breadcrumb_navxt_admin.php:623
495
- msgid "%s Root Page"
496
  msgstr ""
497
 
498
- #: breadcrumb_navxt_admin.php:626
499
- msgid "&mdash; Select &mdash;"
500
  msgstr ""
501
 
502
- #: breadcrumb_navxt_admin.php:633
503
- msgid "%s Taxonomy Display"
504
  msgstr ""
505
 
506
- #: breadcrumb_navxt_admin.php:633
507
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
508
  msgstr ""
509
 
510
- #: breadcrumb_navxt_admin.php:637
511
- msgid "%s Taxonomy"
512
  msgstr ""
513
 
514
- #: breadcrumb_navxt_admin.php:666
515
- msgid "Category Prefix"
516
  msgstr ""
517
 
518
- #: breadcrumb_navxt_admin.php:666
519
- msgid "Applied before the anchor on all category breadcrumbs."
520
  msgstr ""
521
 
522
- #: breadcrumb_navxt_admin.php:667
523
- msgid "Category Suffix"
524
  msgstr ""
525
 
526
- #: breadcrumb_navxt_admin.php:667
527
- msgid "Applied after the anchor on all category breadcrumbs."
528
  msgstr ""
529
 
530
- #: breadcrumb_navxt_admin.php:668
531
- msgid "Category Anchor"
532
  msgstr ""
533
 
534
- #: breadcrumb_navxt_admin.php:668
535
- msgid "The anchor template for category breadcrumbs."
536
  msgstr ""
537
 
538
- #: breadcrumb_navxt_admin.php:669
539
- msgid "Archive by Category Prefix"
540
  msgstr ""
541
 
542
- #: breadcrumb_navxt_admin.php:669
543
- msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
544
  msgstr ""
545
 
546
- #: breadcrumb_navxt_admin.php:670
547
- msgid "Archive by Category Suffix"
548
  msgstr ""
549
 
550
- #: breadcrumb_navxt_admin.php:670
551
- msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
552
  msgstr ""
553
 
554
- #: breadcrumb_navxt_admin.php:678
555
- msgid "Tag Prefix"
556
  msgstr ""
557
 
558
- #: breadcrumb_navxt_admin.php:678
559
- msgid "Applied before the anchor on all tag breadcrumbs."
560
  msgstr ""
561
 
562
- #: breadcrumb_navxt_admin.php:679
563
- msgid "Tag Suffix"
564
  msgstr ""
565
 
566
- #: breadcrumb_navxt_admin.php:679
567
- msgid "Applied after the anchor on all tag breadcrumbs."
568
  msgstr ""
569
 
570
- #: breadcrumb_navxt_admin.php:680
571
- msgid "Tag Anchor"
572
  msgstr ""
573
 
574
- #: breadcrumb_navxt_admin.php:680
575
- msgid "The anchor template for tag breadcrumbs."
576
  msgstr ""
577
 
578
- #: breadcrumb_navxt_admin.php:681
579
- msgid "Archive by Tag Prefix"
580
  msgstr ""
581
 
582
- #: breadcrumb_navxt_admin.php:681
583
- msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
584
  msgstr ""
585
 
586
- #: breadcrumb_navxt_admin.php:682
587
- msgid "Archive by Tag Suffix"
588
  msgstr ""
589
 
590
- #: breadcrumb_navxt_admin.php:682
591
- msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
592
  msgstr ""
593
 
594
- #: breadcrumb_navxt_admin.php:708
595
- msgid "Applied before the anchor on all %s breadcrumbs."
596
  msgstr ""
597
 
598
- #: breadcrumb_navxt_admin.php:709
599
- msgid "Applied after the anchor on all %s breadcrumbs."
600
  msgstr ""
601
 
602
- #: breadcrumb_navxt_admin.php:711
603
- msgid "Archive by %s Prefix"
604
  msgstr ""
605
 
606
- #: breadcrumb_navxt_admin.php:711
607
- msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
608
  msgstr ""
609
 
610
- #: breadcrumb_navxt_admin.php:712
611
- msgid "Archive by %s Suffix"
612
  msgstr ""
613
 
614
- #: breadcrumb_navxt_admin.php:712
615
- msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
616
  msgstr ""
617
 
618
- #: breadcrumb_navxt_admin.php:721
619
- msgid "Date Archives"
620
  msgstr ""
621
 
622
- #: breadcrumb_navxt_admin.php:724
623
- msgid "Date Anchor"
624
  msgstr ""
625
 
626
- #: breadcrumb_navxt_admin.php:724
627
- msgid "The anchor template for date breadcrumbs."
628
  msgstr ""
629
 
630
- #: breadcrumb_navxt_admin.php:725
631
- msgid "Archive by Date Prefix"
 
632
  msgstr ""
633
 
634
- #: breadcrumb_navxt_admin.php:725
635
- msgid "Applied before the anchor on all date breadcrumbs."
 
 
 
 
636
  msgstr ""
637
 
638
- #: breadcrumb_navxt_admin.php:726
639
- msgid "Archive by Date Suffix"
640
  msgstr ""
641
 
642
- #: breadcrumb_navxt_admin.php:726
643
- msgid "Applied after the anchor on all date breadcrumbs."
644
  msgstr ""
645
 
646
- #: breadcrumb_navxt_admin.php:731
647
- msgid "Miscellaneous"
648
  msgstr ""
649
 
650
- #: breadcrumb_navxt_admin.php:734
651
- msgid "Author Prefix"
652
  msgstr ""
653
 
654
- #: breadcrumb_navxt_admin.php:735
655
- msgid "Author Suffix"
656
  msgstr ""
657
 
658
- #: breadcrumb_navxt_admin.php:736
659
- msgid "Author Display Format"
660
  msgstr ""
661
 
662
- #: breadcrumb_navxt_admin.php:736
663
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
664
  msgstr ""
665
 
666
- #: breadcrumb_navxt_admin.php:737
667
- msgid "Search Prefix"
668
  msgstr ""
669
 
670
- #: breadcrumb_navxt_admin.php:738
671
- msgid "Search Suffix"
672
  msgstr ""
673
 
674
- #: breadcrumb_navxt_admin.php:739
675
- msgid "Search Anchor"
676
  msgstr ""
677
 
678
- #: breadcrumb_navxt_admin.php:739
679
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
680
  msgstr ""
681
 
682
- #: breadcrumb_navxt_admin.php:740
683
- msgid "404 Title"
684
  msgstr ""
685
 
686
- #: breadcrumb_navxt_admin.php:741
687
- msgid "404 Prefix"
688
  msgstr ""
689
 
690
- #: breadcrumb_navxt_admin.php:742
691
- msgid "404 Suffix"
692
  msgstr ""
693
 
694
- #: breadcrumb_navxt_admin.php:747
695
- msgid "Save Changes"
696
  msgstr ""
697
 
698
- #: breadcrumb_navxt_class.php:217
699
- msgid "Blog"
700
  msgstr ""
701
 
702
- #: breadcrumb_navxt_class.php:236
703
- msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
 
704
  msgstr ""
705
 
706
- #: breadcrumb_navxt_class.php:281
707
- msgid "404"
708
  msgstr ""
709
 
710
- #: breadcrumb_navxt_class.php:284
711
- msgid "Search results for &#39;"
712
  msgstr ""
713
 
714
- #: breadcrumb_navxt_class.php:288
715
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
716
  msgstr ""
717
 
718
- #: breadcrumb_navxt_class.php:295
719
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
720
  msgstr ""
721
 
722
- #: breadcrumb_navxt_class.php:298
723
- msgid "Articles by: "
724
  msgstr ""
725
 
726
- #: breadcrumb_navxt_class.php:302
727
- msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
728
  msgstr ""
729
 
730
- #: breadcrumb_navxt_class.php:311
731
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
732
  msgstr ""
733
 
734
- #: breadcrumb_navxt_class.php:314
735
- msgid "Archive by category &#39;"
736
  msgstr ""
737
 
738
- #: breadcrumb_navxt_class.php:318
739
- msgid "Archive by tag &#39;"
740
  msgstr ""
741
 
742
- #: breadcrumb_navxt_class.php:321
743
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
744
  msgstr ""
745
 
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2011-12-03 04:49:09+00:00\n"
6
+ "PO-Revision-Date: 2011-12-03 17:11-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
+ #: breadcrumb_navxt_widget.php:32
18
  msgid "Adds a breadcrumb trail to your sidebar"
19
  msgstr ""
20
 
21
+ #: breadcrumb_navxt_widget.php:93
22
  msgid "Title:"
23
  msgstr ""
24
 
25
+ #: breadcrumb_navxt_widget.php:97
26
  msgid "Output trail as:"
27
  msgstr ""
28
 
29
+ #: breadcrumb_navxt_widget.php:99
30
  msgid "List"
31
  msgstr ""
32
 
33
+ #: breadcrumb_navxt_widget.php:100
34
  msgid "RDFa"
35
  msgstr ""
36
 
37
+ #: breadcrumb_navxt_widget.php:101
38
  msgid "Microformat"
39
  msgstr ""
40
 
41
+ #: breadcrumb_navxt_widget.php:102
42
  msgid "Plain"
43
  msgstr ""
44
 
45
+ #: breadcrumb_navxt_widget.php:107
46
  msgid "Link the breadcrumbs"
47
  msgstr ""
48
 
49
+ #: breadcrumb_navxt_widget.php:109
50
  msgid "Reverse the order of the trail"
51
  msgstr ""
52
 
53
+ #: breadcrumb_navxt_widget.php:111
54
  msgid "Hide the trail on the front page"
55
  msgstr ""
56
 
57
+ #: breadcrumb_navxt_admin.php:36
58
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
59
  msgstr ""
60
 
61
+ #: breadcrumb_navxt_admin.php:113
62
+ msgid "Insufficient privileges to proceed."
 
63
  msgstr ""
64
 
65
+ #: breadcrumb_navxt_admin.php:204
66
+ msgid "Tips for the settings are located below select options."
67
  msgstr ""
68
 
69
+ #: breadcrumb_navxt_admin.php:205
70
+ msgid "Resources"
71
  msgstr ""
72
 
73
+ #: breadcrumb_navxt_admin.php:206
74
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
75
  msgstr ""
76
 
77
+ #: breadcrumb_navxt_admin.php:206
78
+ msgid "Go to the Breadcrumb NavXT tag archive."
79
  msgstr ""
80
 
81
+ #: breadcrumb_navxt_admin.php:207
82
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
83
  msgstr ""
84
 
85
+ #: breadcrumb_navxt_admin.php:207
86
+ msgid "Go to the Breadcrumb NavXT online documentation"
87
  msgstr ""
88
 
89
+ #: breadcrumb_navxt_admin.php:208
90
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
91
  msgstr ""
92
 
93
+ #: breadcrumb_navxt_admin.php:208
94
+ #: breadcrumb_navxt_admin.php:211
95
+ msgid "Go to the Breadcrumb NavXT support post for your version."
96
  msgstr ""
97
 
98
+ #: breadcrumb_navxt_admin.php:209
99
+ msgid "Giving Back"
100
  msgstr ""
101
 
102
+ #: breadcrumb_navxt_admin.php:210
103
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
104
  msgstr ""
105
 
106
+ #: breadcrumb_navxt_admin.php:210
107
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
108
  msgstr ""
109
 
110
+ #: breadcrumb_navxt_admin.php:211
111
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
112
  msgstr ""
113
 
114
+ #: breadcrumb_navxt_admin.php:216
115
+ #: breadcrumb_navxt_admin.php:307
116
+ msgid "General"
117
  msgstr ""
118
 
119
+ #: breadcrumb_navxt_admin.php:219
120
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
121
  msgstr ""
122
 
123
+ #: breadcrumb_navxt_admin.php:220
124
+ msgid "Breadcrumb trail with separators"
125
  msgstr ""
126
 
127
+ #: breadcrumb_navxt_admin.php:226
128
+ msgid "Breadcrumb trail in list form"
129
  msgstr ""
130
 
131
+ #: breadcrumb_navxt_admin.php:235
132
+ msgid "Quick Start"
133
  msgstr ""
134
 
135
+ #: breadcrumb_navxt_admin.php:238
136
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
137
  msgstr ""
138
 
139
+ #: breadcrumb_navxt_admin.php:250
140
+ msgid "Styling"
141
  msgstr ""
142
 
143
+ #: breadcrumb_navxt_admin.php:256
144
+ msgid "Import/Export/Reset"
145
  msgstr ""
146
 
147
+ #: breadcrumb_navxt_admin.php:280
148
+ #: includes/mtekk_adminkit.php:765
149
  msgid "Import"
150
  msgstr ""
151
 
152
+ #: breadcrumb_navxt_admin.php:281
153
+ #: includes/mtekk_adminkit.php:766
154
  msgid "Export"
155
  msgstr ""
156
 
157
+ #: breadcrumb_navxt_admin.php:282
158
+ #: includes/mtekk_adminkit.php:767
159
  msgid "Reset"
160
  msgstr ""
161
 
162
+ #: breadcrumb_navxt_admin.php:295
163
+ msgid "Breadcrumb NavXT Settings"
 
 
 
 
 
 
 
 
 
164
  msgstr ""
165
 
166
+ #: breadcrumb_navxt_admin.php:310
167
+ msgid "Breadcrumb Separator"
 
 
 
 
 
 
 
 
168
  msgstr ""
169
 
170
+ #: breadcrumb_navxt_admin.php:310
171
+ msgid "Placed in between each breadcrumb."
172
  msgstr ""
173
 
174
+ #: breadcrumb_navxt_admin.php:311
175
+ msgid "Breadcrumb Max Title Length"
 
176
  msgstr ""
177
 
178
+ #: breadcrumb_navxt_admin.php:315
179
+ msgid "Home Breadcrumb"
180
  msgstr ""
181
 
182
+ #: breadcrumb_navxt_admin.php:320
183
+ msgid "Place the home breadcrumb in the trail."
184
  msgstr ""
185
 
186
+ #: breadcrumb_navxt_admin.php:325
187
+ msgid "Home Title: "
188
  msgstr ""
189
 
190
+ #: breadcrumb_navxt_admin.php:333
191
+ msgid "Home Template"
 
192
  msgstr ""
193
 
194
+ #: breadcrumb_navxt_admin.php:333
195
+ msgid "The template for the home breadcrumb."
196
  msgstr ""
197
 
198
+ #: breadcrumb_navxt_admin.php:334
199
+ msgid "Home Template (Unlinked)"
200
  msgstr ""
201
 
202
+ #: breadcrumb_navxt_admin.php:334
203
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
204
  msgstr ""
205
 
206
+ #: breadcrumb_navxt_admin.php:335
207
+ msgid "Blog Breadcrumb"
208
  msgstr ""
209
 
210
+ #: breadcrumb_navxt_admin.php:335
211
+ msgid "Place the blog breadcrumb in the trail."
212
  msgstr ""
213
 
214
+ #: breadcrumb_navxt_admin.php:336
215
+ msgid "Blog Template"
216
  msgstr ""
217
 
218
+ #: breadcrumb_navxt_admin.php:336
219
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
220
  msgstr ""
221
 
222
+ #: breadcrumb_navxt_admin.php:337
223
+ msgid "Blog Template (Unlinked)"
224
  msgstr ""
225
 
226
+ #: breadcrumb_navxt_admin.php:337
227
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
228
  msgstr ""
229
 
230
+ #: breadcrumb_navxt_admin.php:341
231
+ msgid "Main Site Breadcrumb"
232
  msgstr ""
233
 
234
+ #: breadcrumb_navxt_admin.php:346
235
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
236
  msgstr ""
237
 
238
+ #: breadcrumb_navxt_admin.php:351
239
+ msgid "Main Site Home Title: "
240
  msgstr ""
241
 
242
+ #: breadcrumb_navxt_admin.php:360
243
+ msgid "Main Site Home Template"
244
  msgstr ""
245
 
246
+ #: breadcrumb_navxt_admin.php:360
247
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
248
  msgstr ""
249
 
250
+ #: breadcrumb_navxt_admin.php:361
251
+ msgid "Main Site Home Template (Unlinked)"
252
  msgstr ""
253
 
254
+ #: breadcrumb_navxt_admin.php:361
255
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
256
  msgstr ""
257
 
258
+ #: breadcrumb_navxt_admin.php:366
259
+ msgid "Current Item"
260
  msgstr ""
261
 
262
+ #: breadcrumb_navxt_admin.php:369
263
+ msgid "Link Current Item"
264
  msgstr ""
265
 
266
+ #: breadcrumb_navxt_admin.php:369
267
+ msgid "Yes"
268
  msgstr ""
269
 
270
+ #: breadcrumb_navxt_admin.php:370
271
+ msgid "Current Item Template"
272
  msgstr ""
273
 
274
+ #: breadcrumb_navxt_admin.php:370
275
+ msgid "The template for current item breadcrumbs."
276
  msgstr ""
277
 
278
+ #: breadcrumb_navxt_admin.php:371
279
+ msgid "Current Item Template (Unlinked)"
280
  msgstr ""
281
 
282
+ #: breadcrumb_navxt_admin.php:371
283
+ msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
284
  msgstr ""
285
 
286
+ #: breadcrumb_navxt_admin.php:372
287
+ msgid "Paged Breadcrumb"
288
  msgstr ""
289
 
290
+ #: breadcrumb_navxt_admin.php:372
291
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
292
  msgstr ""
293
 
294
+ #: breadcrumb_navxt_admin.php:372
295
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
296
  msgstr ""
297
 
298
+ #: breadcrumb_navxt_admin.php:373
299
+ msgid "Paged Template"
300
  msgstr ""
301
 
302
+ #: breadcrumb_navxt_admin.php:373
303
+ msgid "The template for paged breadcrumbs."
 
304
  msgstr ""
305
 
306
+ #: breadcrumb_navxt_admin.php:378
307
+ msgid "Posts &amp; Pages"
308
  msgstr ""
309
 
310
+ #: breadcrumb_navxt_admin.php:381
311
+ msgid "Post Template"
312
  msgstr ""
313
 
314
+ #: breadcrumb_navxt_admin.php:381
315
+ msgid "The template for post breadcrumbs."
316
  msgstr ""
317
 
318
+ #: breadcrumb_navxt_admin.php:382
319
+ msgid "Post Template (Unlinked)"
320
  msgstr ""
321
 
322
+ #: breadcrumb_navxt_admin.php:382
323
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
324
  msgstr ""
325
 
326
+ #: breadcrumb_navxt_admin.php:383
327
+ msgid "Post Taxonomy Display"
 
 
 
 
328
  msgstr ""
329
 
330
+ #: breadcrumb_navxt_admin.php:383
331
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
332
  msgstr ""
333
 
334
+ #: breadcrumb_navxt_admin.php:387
335
+ msgid "Post Taxonomy"
336
  msgstr ""
337
 
338
+ #: breadcrumb_navxt_admin.php:391
339
+ msgid "Categories"
340
  msgstr ""
341
 
342
+ #: breadcrumb_navxt_admin.php:392
343
+ #: breadcrumb_navxt_admin.php:490
344
+ msgid "Dates"
345
  msgstr ""
346
 
347
+ #: breadcrumb_navxt_admin.php:393
348
+ msgid "Tags"
349
  msgstr ""
350
 
351
+ #: breadcrumb_navxt_admin.php:394
352
+ #: breadcrumb_navxt_admin.php:491
353
+ msgid "Pages"
354
  msgstr ""
355
 
356
+ #: breadcrumb_navxt_admin.php:405
357
+ #: breadcrumb_navxt_admin.php:502
358
+ msgid "The taxonomy which the breadcrumb trail will show."
359
  msgstr ""
360
 
361
+ #: breadcrumb_navxt_admin.php:409
362
+ msgid "Page Template"
363
  msgstr ""
364
 
365
+ #: breadcrumb_navxt_admin.php:409
366
+ msgid "The template for page breadcrumbs."
367
  msgstr ""
368
 
369
+ #: breadcrumb_navxt_admin.php:410
370
+ msgid "Page Template (Unlinked)"
371
  msgstr ""
372
 
373
+ #: breadcrumb_navxt_admin.php:410
374
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
375
  msgstr ""
376
 
377
+ #: breadcrumb_navxt_admin.php:411
378
+ msgid "Attachment Template"
379
  msgstr ""
380
 
381
+ #: breadcrumb_navxt_admin.php:411
382
+ msgid "The template for attachment breadcrumbs."
383
  msgstr ""
384
 
385
+ #: breadcrumb_navxt_admin.php:412
386
+ msgid "Attachment Template (Unlinked)"
387
  msgstr ""
388
 
389
+ #: breadcrumb_navxt_admin.php:412
390
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
391
  msgstr ""
392
 
393
+ #: breadcrumb_navxt_admin.php:427
394
+ #: breadcrumb_navxt_admin.php:600
395
+ #: breadcrumb_navxt_class.php:56
396
+ #: breadcrumb_navxt_class.php:205
397
+ #: breadcrumb_navxt_class.php:213
398
+ #: breadcrumb_navxt_class.php:219
399
+ #: breadcrumb_navxt_class.php:235
400
+ #: breadcrumb_navxt_class.php:247
401
+ #: breadcrumb_navxt_class.php:259
402
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
403
  msgstr ""
404
 
405
+ #: breadcrumb_navxt_admin.php:428
406
+ #: breadcrumb_navxt_admin.php:601
407
+ msgid "%htitle%"
408
  msgstr ""
409
 
410
+ #: breadcrumb_navxt_admin.php:465
411
+ #: breadcrumb_navxt_admin.php:541
412
+ msgid "%s Template"
413
  msgstr ""
414
 
415
+ #: breadcrumb_navxt_admin.php:465
416
  #: breadcrumb_navxt_admin.php:541
417
+ msgid "The template for %s breadcrumbs."
 
418
  msgstr ""
419
 
420
+ #: breadcrumb_navxt_admin.php:466
421
  #: breadcrumb_navxt_admin.php:542
422
+ msgid "%s Template (Unlinked)"
 
423
  msgstr ""
424
 
425
+ #: breadcrumb_navxt_admin.php:466
426
+ #: breadcrumb_navxt_admin.php:542
427
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
428
  msgstr ""
429
 
430
+ #: breadcrumb_navxt_admin.php:471
431
+ msgid "%s Root Page"
 
432
  msgstr ""
433
 
434
+ #: breadcrumb_navxt_admin.php:474
435
+ msgid "&mdash; Select &mdash;"
 
436
  msgstr ""
437
 
438
+ #: breadcrumb_navxt_admin.php:478
439
+ msgid "%s Archive Display"
440
  msgstr ""
441
 
442
+ #: breadcrumb_navxt_admin.php:478
443
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
444
  msgstr ""
445
 
446
+ #: breadcrumb_navxt_admin.php:482
447
+ msgid "%s Taxonomy Display"
448
  msgstr ""
449
 
450
+ #: breadcrumb_navxt_admin.php:482
451
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
452
  msgstr ""
453
 
454
+ #: breadcrumb_navxt_admin.php:486
455
+ msgid "%s Taxonomy"
456
  msgstr ""
457
 
458
+ #: breadcrumb_navxt_admin.php:512
459
+ msgid "Categories &amp; Tags"
460
  msgstr ""
461
 
462
+ #: breadcrumb_navxt_admin.php:515
463
+ msgid "Category Template"
 
464
  msgstr ""
465
 
466
+ #: breadcrumb_navxt_admin.php:515
467
+ msgid "The template for category breadcrumbs."
 
468
  msgstr ""
469
 
470
+ #: breadcrumb_navxt_admin.php:516
471
+ msgid "Category Template (Unlinked)"
 
472
  msgstr ""
473
 
474
+ #: breadcrumb_navxt_admin.php:516
475
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
 
476
  msgstr ""
477
 
478
+ #: breadcrumb_navxt_admin.php:517
479
+ msgid "Tag Template"
480
  msgstr ""
481
 
482
+ #: breadcrumb_navxt_admin.php:517
483
+ msgid "The template for tag breadcrumbs."
484
  msgstr ""
485
 
486
+ #: breadcrumb_navxt_admin.php:518
487
+ msgid "Tag Template (Unlinked)"
488
  msgstr ""
489
 
490
+ #: breadcrumb_navxt_admin.php:518
491
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
492
  msgstr ""
493
 
494
+ #: breadcrumb_navxt_admin.php:551
495
+ msgid "Miscellaneous"
496
  msgstr ""
497
 
498
+ #: breadcrumb_navxt_admin.php:554
499
+ msgid "Author Template"
500
  msgstr ""
501
 
502
+ #: breadcrumb_navxt_admin.php:554
503
+ msgid "The template for author breadcrumbs."
504
  msgstr ""
505
 
506
+ #: breadcrumb_navxt_admin.php:555
507
+ msgid "Author Template (Unlinked)"
508
  msgstr ""
509
 
510
+ #: breadcrumb_navxt_admin.php:555
511
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
512
  msgstr ""
513
 
514
+ #: breadcrumb_navxt_admin.php:556
515
+ msgid "Author Display Format"
516
  msgstr ""
517
 
518
+ #: breadcrumb_navxt_admin.php:556
519
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
520
  msgstr ""
521
 
522
+ #: breadcrumb_navxt_admin.php:557
523
+ msgid "Date Template"
524
  msgstr ""
525
 
526
+ #: breadcrumb_navxt_admin.php:557
527
+ msgid "The template for date breadcrumbs."
528
  msgstr ""
529
 
530
+ #: breadcrumb_navxt_admin.php:558
531
+ msgid "Date Template (Unlinked)"
532
  msgstr ""
533
 
534
+ #: breadcrumb_navxt_admin.php:558
535
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
536
  msgstr ""
537
 
538
+ #: breadcrumb_navxt_admin.php:559
539
+ msgid "Search Template"
540
  msgstr ""
541
 
542
+ #: breadcrumb_navxt_admin.php:559
543
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
544
  msgstr ""
545
 
546
+ #: breadcrumb_navxt_admin.php:560
547
+ msgid "Search Template (Unlinked)"
548
  msgstr ""
549
 
550
+ #: breadcrumb_navxt_admin.php:560
551
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
552
  msgstr ""
553
 
554
+ #: breadcrumb_navxt_admin.php:561
555
+ msgid "404 Title"
556
  msgstr ""
557
 
558
+ #: breadcrumb_navxt_admin.php:562
559
+ msgid "404 Template"
560
  msgstr ""
561
 
562
+ #: breadcrumb_navxt_admin.php:562
563
+ msgid "The template for 404 breadcrumbs."
564
  msgstr ""
565
 
566
+ #: breadcrumb_navxt_admin.php:567
567
+ msgid "Save Changes"
568
  msgstr ""
569
 
570
+ #: includes/mtekk_adminkit.php:201
571
+ msgid "Settings"
572
  msgstr ""
573
 
574
+ #: includes/mtekk_adminkit.php:271
575
+ msgid "Your settings are out of date."
576
  msgstr ""
577
 
578
+ #: includes/mtekk_adminkit.php:271
579
+ msgid "Migrate the settings now."
580
  msgstr ""
581
 
582
+ #: includes/mtekk_adminkit.php:271
583
+ msgid "Migrate now."
584
  msgstr ""
585
 
586
+ #: includes/mtekk_adminkit.php:279
587
+ msgid "Your plugin install is incomplete."
588
  msgstr ""
589
 
590
+ #: includes/mtekk_adminkit.php:279
591
+ msgid "Load default settings now."
592
  msgstr ""
593
 
594
+ #: includes/mtekk_adminkit.php:279
595
+ msgid "Complete now."
596
  msgstr ""
597
 
598
+ #: includes/mtekk_adminkit.php:287
599
+ msgid "Your plugin settings are invalid."
600
  msgstr ""
601
 
602
+ #: includes/mtekk_adminkit.php:287
603
+ msgid "Attempt to fix settings now."
604
  msgstr ""
605
 
606
+ #: includes/mtekk_adminkit.php:287
607
+ msgid "Fix now."
608
  msgstr ""
609
 
610
+ #: includes/mtekk_adminkit.php:463
611
+ msgid "Settings successfully saved."
612
  msgstr ""
613
 
614
+ #: includes/mtekk_adminkit.php:463
615
+ #: includes/mtekk_adminkit.php:468
616
+ msgid "Undo the options save."
617
  msgstr ""
618
 
619
+ #: includes/mtekk_adminkit.php:463
620
+ #: includes/mtekk_adminkit.php:468
621
+ #: includes/mtekk_adminkit.php:573
622
+ #: includes/mtekk_adminkit.php:597
623
+ #: includes/mtekk_adminkit.php:614
624
+ msgid "Undo"
625
  msgstr ""
626
 
627
+ #: includes/mtekk_adminkit.php:468
628
+ msgid "Some settings were not saved."
629
  msgstr ""
630
 
631
+ #: includes/mtekk_adminkit.php:469
632
+ msgid "The following settings were not saved:"
633
  msgstr ""
634
 
635
+ #: includes/mtekk_adminkit.php:474
636
+ msgid "Please include this message in your %sbug report%s."
637
  msgstr ""
638
 
639
+ #: includes/mtekk_adminkit.php:474
640
+ msgid "Go to the %s support post for your version."
641
  msgstr ""
642
 
643
+ #: includes/mtekk_adminkit.php:573
644
+ msgid "Settings successfully imported from the uploaded file."
645
  msgstr ""
646
 
647
+ #: includes/mtekk_adminkit.php:573
648
+ msgid "Undo the options import."
649
  msgstr ""
650
 
651
+ #: includes/mtekk_adminkit.php:578
652
+ msgid "Importing settings from file failed."
653
  msgstr ""
654
 
655
+ #: includes/mtekk_adminkit.php:597
656
+ msgid "Settings successfully reset to the default values."
657
  msgstr ""
658
 
659
+ #: includes/mtekk_adminkit.php:597
660
+ msgid "Undo the options reset."
661
  msgstr ""
662
 
663
+ #: includes/mtekk_adminkit.php:614
664
+ msgid "Settings successfully undid the last operation."
665
  msgstr ""
666
 
667
+ #: includes/mtekk_adminkit.php:614
668
+ msgid "Undo the last undo operation."
669
  msgstr ""
670
 
671
+ #: includes/mtekk_adminkit.php:649
672
+ msgid "Settings successfully migrated."
673
  msgstr ""
674
 
675
+ #: includes/mtekk_adminkit.php:656
676
+ msgid "Default settings successfully installed."
677
  msgstr ""
678
 
679
+ #: includes/mtekk_adminkit.php:757
680
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
681
  msgstr ""
682
 
683
+ #: includes/mtekk_adminkit.php:760
684
+ msgid "Settings File"
685
  msgstr ""
686
 
687
+ #: includes/mtekk_adminkit.php:763
688
+ msgid "Select a XML settings file to upload and import settings from."
689
  msgstr ""
690
 
691
+ #: breadcrumb_navxt_class.php:203
692
+ #: breadcrumb_navxt_class.php:211
693
+ msgid "Home"
694
  msgstr ""
695
 
696
+ #: breadcrumb_navxt_class.php:230
697
+ msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
698
  msgstr ""
699
 
700
+ #: breadcrumb_navxt_class.php:242
701
+ msgid "Page %htitle%"
702
  msgstr ""
703
 
704
+ #: breadcrumb_navxt_class.php:266
705
+ msgid "404"
706
  msgstr ""
707
 
708
+ #: breadcrumb_navxt_class.php:269
709
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>&#39;"
710
  msgstr ""
711
 
712
+ #: breadcrumb_navxt_class.php:271
713
+ msgid "Search results for &#39;%htitle%&#39;"
714
  msgstr ""
715
 
716
+ #: breadcrumb_navxt_class.php:274
717
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
718
  msgstr ""
719
 
720
+ #: breadcrumb_navxt_class.php:279
721
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
722
  msgstr ""
723
 
724
+ #: breadcrumb_navxt_class.php:281
725
+ msgid "Articles by: %htitle%"
726
  msgstr ""
727
 
728
+ #: breadcrumb_navxt_class.php:286
729
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
730
  msgstr ""
731
 
732
+ #: breadcrumb_navxt_class.php:290
733
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
734
  msgstr ""
735
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XE
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.2
6
  Tested up to: 3.3
7
- Stable tag: 3.9.0
8
  Adds breadcrumb navigation showing the visitor's path to their current location.
9
 
10
  == Description ==
@@ -33,12 +33,26 @@ Don't see your language on the list? Feel free to translate Breadcrumb NavXT and
33
  Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
34
 
35
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  = 3.9.0 =
37
  * Behavior change: Settings can not be saved, imported, or exported until any necessary settings updates and/or installs are completed.
38
  * New feature: Support for WordPress 3.1 custom post type archives.
39
  * Bug fix: Displays a warning message in the WordPress dashboard if PHP version is too old rather than trying to deactivate and dieing on all pages.
40
  * Bug fix: Fixed a potential cause for the "options not saved" error.
41
- * Bug fix: Fixed bug where the Blog Breadcrumb was not obeyed on archives.
42
  = 3.8.1 =
43
  * Bug fix: Root pages for custom post types should work again.
44
  * Bug fix: The post_post_root and post_page_root not being saved warning when saving settings should be fixed.
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.2
6
  Tested up to: 3.3
7
+ Stable tag: 4.0.0
8
  Adds breadcrumb navigation showing the visitor's path to their current location.
9
 
10
  == Description ==
33
  Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
34
 
35
  == Changelog ==
36
+ = 4.0.0 =
37
+ * Behavior change: Prefix, suffix, and anchor settings have been replaced with templates for all breadcrumb types.
38
+ * Behavior change: `bcn_display_nested` function was removed from the main plugin. Will appear in a supplementary plugin.
39
+ * Behavior change: Import/Export/Reset tab moved under the admin bar Help menu.
40
+ * Behavior change: Paged breadcrumbs are enabled in the default settings, among other subtle changes.
41
+ * New feature: More useful Help menu, utilizing the new WordPress 3.3 Help menu.
42
+ * New feature: True URLs are now generated for current items when link current item is enabled.
43
+ * New feature: The display of the custom post type archive breadcrumb for custom post types may now be disabled.
44
+ * New feature: Added in fallback functions for PHP�s multibyte character string functions for environments that do not have multibyte character support.
45
+ * Bug fix: Custom post type archives now respect the root page setting.
46
+ * Bug fix: Custom post types without WordPress post archives enabled will no longer cause a double root page breadcrumb to be generated.
47
+ * Bug fix: Tabs on the settings page are now rounded for all �modern� browsers, including Firefox, Chrome, and IE9.
48
+ * Bug fix: Tabs on the settings page are now remembered between setting saves (including multiple saves from within the same tab).
49
+ * Bug fix: Fixed another cause of the �The following settings were not saved� error message.
50
  = 3.9.0 =
51
  * Behavior change: Settings can not be saved, imported, or exported until any necessary settings updates and/or installs are completed.
52
  * New feature: Support for WordPress 3.1 custom post type archives.
53
  * Bug fix: Displays a warning message in the WordPress dashboard if PHP version is too old rather than trying to deactivate and dieing on all pages.
54
  * Bug fix: Fixed a potential cause for the "options not saved" error.
55
+ * Bug fix: Fixed bug where the "Blog Breadcrumb" was not obeyed on archives.
56
  = 3.8.1 =
57
  * Bug fix: Root pages for custom post types should work again.
58
  * Bug fix: The post_post_root and post_page_root not being saved warning when saving settings should be fixed.