Breadcrumb NavXT - Version 5.0.0

Version Description

  • Behavior Change: Moved bcn_breadcrumb_trail::trail to bcn_breadcrumb_trail::breadcrumbs
  • Behavior Change: When WordPress is in multisite/network mode, the settings set in the network settings page take priority over subsite settings.
  • New feature: Added bcn_breadcrumb_trail_object filter.
  • New feature: Added bcn_li_attributes filter.
  • New feature: Added bcn_breadcrumb_types filter.
  • New feature: Added Network Admin Settings page.
  • New feature: Added xmlns:v and property to the valid tag attributes.
Download this release

Release Info

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

Code changes from version 4.4.0 to 5.0.0

README ADDED
File without changes
breadcrumb-navxt.php ADDED
@@ -0,0 +1,418 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Breadcrumb NavXT
4
+ Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
+ Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
+ Version: 5.0.0
7
+ Author: John Havlik
8
+ Author URI: http://mtekk.us/
9
+ License: GPL2
10
+ TextDomain: breadcrumb-navxt
11
+ DomainPath: /languages/
12
+ */
13
+ /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
14
+
15
+ This program is free software; you can redistribute it and/or modify
16
+ it under the terms of the GNU General Public License as published by
17
+ the Free Software Foundation; either version 2 of the License, or
18
+ (at your option) any later version.
19
+
20
+ This program is distributed in the hope that it will be useful,
21
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
22
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
+ GNU General Public License for more details.
24
+
25
+ You should have received a copy of the GNU General Public License
26
+ along with this program; if not, write to the Free Software
27
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
+ */
29
+ //Do a PHP version check, require 5.2 or newer
30
+ if(version_compare(phpversion(), '5.2.0', '<'))
31
+ {
32
+ //Only purpose of this function is to echo out the PHP version error
33
+ function bcn_phpold()
34
+ {
35
+ printf('<div class="error"><p>' . __('Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s', 'breadcrumb-navxt') . '</p></div>', phpversion(), '5.2.0');
36
+ }
37
+ //If we are in the admin, let's print a warning then return
38
+ if(is_admin())
39
+ {
40
+ add_action('admin_notices', 'bcn_phpold');
41
+ }
42
+ return;
43
+ }
44
+ if(!function_exists('mb_strlen'))
45
+ {
46
+ require_once(dirname(__FILE__) . '/includes/multibyte_supplicant.php');
47
+ }
48
+ //Include admin base class
49
+ if(!class_exists('mtekk_adminKit'))
50
+ {
51
+ require_once(dirname(__FILE__) . '/includes/class.mtekk_adminkit.php');
52
+ }
53
+ //Include the breadcrumb class
54
+ require_once(dirname(__FILE__) . '/class.bcn_breadcrumb.php');
55
+ //Include the breadcrumb trail class
56
+ require_once(dirname(__FILE__) . '/class.bcn_breadcrumb_trail.php');
57
+ //Include the WP 2.8+ widget class
58
+ require_once(dirname(__FILE__) . '/class.bcn_widget.php');
59
+ $breadcrumb_navxt = NULL;
60
+ //TODO change to extends mtekk_plugKit
61
+ class breadcrumb_navxt
62
+ {
63
+ private $version = '5.0.0';
64
+ protected $name = 'Breadcrumb NavXT';
65
+ protected $identifier = 'breadcrumb-navxt';
66
+ protected $unique_prefix = 'bcn';
67
+ protected $plugin_basename = null;
68
+ protected $opt = null;
69
+ protected $breadcrumb_trail = null;
70
+ protected $admin = null;
71
+ /**
72
+ * Constructor for a new breadcrumb_navxt object
73
+ *
74
+ * @param bcn_breadcrumb_trail $breadcrumb_trail An instance of a bcn_breadcrumb_trail object to use for everything
75
+ */
76
+ public function __construct(bcn_breadcrumb_trail $breadcrumb_trail)
77
+ {
78
+ //We get our breadcrumb trail object from our constructor
79
+ $this->breadcrumb_trail = $breadcrumb_trail;
80
+ //Grab defaults from the breadcrumb_trail object
81
+ $this->opt = $this->breadcrumb_trail->opt;
82
+ //We set the plugin basename here
83
+ $this->plugin_basename = plugin_basename(__FILE__);
84
+ //We need to add in the defaults for CPTs and custom taxonomies after all other plugins are loaded
85
+ add_action('wp_loaded', array($this, 'wp_loaded'));
86
+ add_action('init', array($this, 'init'));
87
+ //Register the WordPress 2.8 Widget
88
+ add_action('widgets_init', create_function('', 'return register_widget("'. $this->unique_prefix . '_widget");'));
89
+ //Load our network admin if in the network dashboard (yes is_network_admin() doesn't exist)
90
+ if(defined('WP_NETWORK_ADMIN') && WP_NETWORK_ADMIN)
91
+ {
92
+ require_once(dirname(__FILE__) . '/class.bcn_network_admin.php');
93
+ //Instantiate our new admin object
94
+ $this->admin = new bcn_network_admin($this->breadcrumb_trail, $this->plugin_basename);
95
+ }
96
+ //Load our main admin if in the dashboard, but only if we're not in the network dashboard (prevents goofy bugs)
97
+ else if(is_admin())
98
+ {
99
+ require_once(dirname(__FILE__) . '/class.bcn_admin.php');
100
+ //Instantiate our new admin object
101
+ $this->admin = new bcn_admin($this->breadcrumb_trail, $this->plugin_basename);
102
+ }
103
+ }
104
+ public function init()
105
+ {
106
+ add_filter('bcn_allowed_html', array($this, 'allowed_html'), 1, 1);
107
+ //We want to run late for using our breadcrumbs
108
+ add_filter('tha_breadcrumb_navigation', array($this, 'tha_compat'), 99);
109
+ }
110
+ public function allowed_html($tags)
111
+ {
112
+ $allowed_html = array(
113
+ 'a' => array(
114
+ 'href' => true,
115
+ 'title' => true,
116
+ 'class' => true,
117
+ 'id' => true,
118
+ 'media' => true,
119
+ 'dir' => true,
120
+ 'relList' => true,
121
+ 'rel' => true,
122
+ 'aria-hidden' => true,
123
+ 'data-icon' => true,
124
+ 'itemref' => true,
125
+ 'itemid' => true,
126
+ 'itemprop' => true,
127
+ 'itemscope' => true,
128
+ 'itemtype' => true,
129
+ 'xmlns:v' => true,
130
+ 'property' => true
131
+ ),
132
+ 'img' => array(
133
+ 'alt' => true,
134
+ 'align' => true,
135
+ 'height' => true,
136
+ 'width' => true,
137
+ 'src' => true,
138
+ 'id' => true,
139
+ 'class' => true,
140
+ 'aria-hidden' => true,
141
+ 'data-icon' => true,
142
+ 'itemref' => true,
143
+ 'itemid' => true,
144
+ 'itemprop' => true,
145
+ 'itemscope' => true,
146
+ 'itemtype' => true,
147
+ 'xmlns:v' => true,
148
+ 'property' => true
149
+ ),
150
+ 'span' => array(
151
+ 'title' => true,
152
+ 'class' => true,
153
+ 'id' => true,
154
+ 'dir' => true,
155
+ 'align' => true,
156
+ 'lang' => true,
157
+ 'xml:lang' => true,
158
+ 'aria-hidden' => true,
159
+ 'data-icon' => true,
160
+ 'itemref' => true,
161
+ 'itemid' => true,
162
+ 'itemprop' => true,
163
+ 'itemscope' => true,
164
+ 'itemtype' => true,
165
+ 'xmlns:v' => true,
166
+ 'property' => true
167
+ ),
168
+ 'h1' => array(
169
+ 'title' => true,
170
+ 'class' => true,
171
+ 'id' => true,
172
+ 'dir' => true,
173
+ 'align' => true,
174
+ 'lang' => true,
175
+ 'xml:lang' => true,
176
+ 'aria-hidden' => true,
177
+ 'data-icon' => true,
178
+ 'itemref' => true,
179
+ 'itemid' => true,
180
+ 'itemprop' => true,
181
+ 'itemscope' => true,
182
+ 'itemtype' => true,
183
+ 'xmlns:v' => true,
184
+ 'property' => true
185
+ ),
186
+ 'h2' => array(
187
+ 'title' => true,
188
+ 'class' => true,
189
+ 'id' => true,
190
+ 'dir' => true,
191
+ 'align' => true,
192
+ 'lang' => true,
193
+ 'xml:lang' => true,
194
+ 'aria-hidden' => true,
195
+ 'data-icon' => true,
196
+ 'itemref' => true,
197
+ 'itemid' => true,
198
+ 'itemprop' => true,
199
+ 'itemscope' => true,
200
+ 'itemtype' => true,
201
+ 'xmlns:v' => true,
202
+ 'property' => true
203
+ )
204
+ );
205
+ return mtekk_adminKit::array_merge_recursive($tags, $allowed_html);
206
+ }
207
+ public function get_version()
208
+ {
209
+ return $this->version;
210
+ }
211
+ public function wp_loaded()
212
+ {
213
+ breadcrumb_navxt::setup_options($this->opt);
214
+ }
215
+ /**
216
+ * Sets up the extended options for any CPTs, taxonomies or extensions
217
+ *
218
+ * @param array $opt The options array, passed by reference
219
+ */
220
+ static public function setup_options(&$opt)
221
+ {
222
+ //Add custom post types
223
+ breadcrumb_navxt::find_posttypes($opt);
224
+ //Add custom taxonomy types
225
+ breadcrumb_navxt::find_taxonomies($opt);
226
+ //Let others hook into our settings
227
+ $opt = apply_filters('bcn_settings_init', $opt);
228
+ }
229
+ /**
230
+ * Places settings into $opts array, if missing, for the registered post types
231
+ *
232
+ * @param array $opts
233
+ */
234
+ static function find_posttypes(&$opts)
235
+ {
236
+ global $wp_post_types, $wp_taxonomies;
237
+ //Loop through all of the post types in the array
238
+ foreach($wp_post_types as $post_type)
239
+ {
240
+ //We only want custom post types
241
+ if(!$post_type->_builtin)
242
+ {
243
+ //If the post type does not have settings in the options array yet, we need to load some defaults
244
+ if(!array_key_exists('Hpost_' . $post_type->name . '_template', $opts) || !$post_type->hierarchical && !array_key_exists('Spost_' . $post_type->name . '_taxonomy_type', $opts))
245
+ {
246
+ //Add the necessary option array members
247
+ $opts['Hpost_' . $post_type->name . '_template'] = __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt');
248
+ $opts['Hpost_' . $post_type->name . '_template_no_anchor'] = __('%htitle%', 'breadcrumb-navxt');
249
+ $opts['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
250
+ //Do type dependent tasks
251
+ if($post_type->hierarchical)
252
+ {
253
+ //Set post_root for hierarchical types
254
+ $opts['apost_' . $post_type->name . '_root'] = get_option('page_on_front');
255
+ }
256
+ //If it is flat, we need a taxonomy selection
257
+ else
258
+ {
259
+ //Set post_root for flat types
260
+ $opts['apost_' . $post_type->name . '_root'] = get_option('page_for_posts');
261
+ }
262
+ //Default to not displaying a taxonomy
263
+ $opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
264
+ //Loop through all of the possible taxonomies
265
+ foreach($wp_taxonomies as $taxonomy)
266
+ {
267
+ //Activate the first taxonomy valid for this post type and exit the loop
268
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
269
+ {
270
+ $opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
271
+ $opts['Spost_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
272
+ break;
273
+ }
274
+ }
275
+ //If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
276
+ if(!isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
277
+ {
278
+ $opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'date';
279
+ }
280
+ }
281
+ }
282
+ }
283
+ }
284
+ /**
285
+ * Places settings into $opts array, if missing, for the registered taxonomies
286
+ *
287
+ * @param $opts
288
+ */
289
+ static function find_taxonomies(&$opts)
290
+ {
291
+ global $wp_taxonomies;
292
+ //We'll add our custom taxonomy stuff at this time
293
+ foreach($wp_taxonomies as $taxonomy)
294
+ {
295
+ //We only want custom taxonomies
296
+ if(!$taxonomy->_builtin)
297
+ {
298
+ //If the taxonomy does not have settings in the options array yet, we need to load some defaults
299
+ if(!array_key_exists('H' . $taxonomy->name . '_template', $opts))
300
+ {
301
+ //Add the necessary option array members
302
+ $opts['H' . $taxonomy->name . '_template'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">%%htitle%%</a>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
303
+ $opts['H' . $taxonomy->name . '_template_no_anchor'] = __(sprintf('%%htitle%%', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
304
+ }
305
+ }
306
+ }
307
+ }
308
+ /**
309
+ * Hooks into the theme hook alliance tha_breadcrumb_navigation filter and replaces the trail
310
+ * with one generated by Breadcrumb NavXT
311
+ *
312
+ * @param string $bradcrumb_trail The string breadcrumb trail that we will replace
313
+ * @return string The Breadcrumb NavXT assembled breadcrumb trail
314
+ */
315
+ public function tha_compat($breadcrumb_trail)
316
+ {
317
+ //Return our breadcrumb trail
318
+ return $this->display(true);
319
+ }
320
+ /**
321
+ * Function updates the breadcrumb_trail options array from the database in a semi intellegent manner
322
+ *
323
+ * @since 5.0.0
324
+ */
325
+ private function get_settings()
326
+ {
327
+ //Let's begin by grabbing the current settings for the site (works for both multisite and single installs)
328
+ $this->breadcrumb_trail->opt = wp_parse_args(get_site_option('bcn_options'), $this->opt);
329
+ //If we're in multisite mode, look at the three BCN_SETTINGS globals
330
+ if(defined('MULTISITE') && MULTISITE)
331
+ {
332
+ if(defined('BCN_SETTINGS_USE_LOCAL') && BCN_SETTINGS_USE_LOCAL)
333
+ {
334
+ //Grab the current settings from the db
335
+ $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
336
+ }
337
+ else if(defined('BCN_SETTINGS_FAVOR_LOCAL') && BCN_SETTINGS_FAVOR_LOCAL)
338
+ {
339
+ //Grab the current settings from the db
340
+ $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->breadcrumb_trail->opt);
341
+ }
342
+ else if(defined('BCN_SETTINGS_FAVOR_NETWORK') && BCN_SETTINGS_FAVOR_NETWORK)
343
+ {
344
+ //Grab the current settings from the db
345
+ $this->breadcrumb_trail->opt = wp_parse_args($this->breadcrumb_trail->opt, get_option('bcn_options'));
346
+ }
347
+ }
348
+ }
349
+ /**
350
+ * Outputs the breadcrumb trail
351
+ *
352
+ * @param bool $return Whether to return or echo the trail.
353
+ * @param bool $linked Whether to allow hyperlinks in the trail or not.
354
+ * @param bool $reverse Whether to reverse the output or not.
355
+ */
356
+ public function display($return = false, $linked = true, $reverse = false)
357
+ {
358
+ $this->get_settings();
359
+ //Generate the breadcrumb trail
360
+ $this->breadcrumb_trail->fill();
361
+ return $this->breadcrumb_trail->display($return, $linked, $reverse);
362
+ }
363
+ /**
364
+ * Outputs the breadcrumb trail with each element encapsulated with li tags
365
+ *
366
+ * @since 3.2.0
367
+ * @param bool $return Whether to return or echo the trail.
368
+ * @param bool $linked Whether to allow hyperlinks in the trail or not.
369
+ * @param bool $reverse Whether to reverse the output or not.
370
+ */
371
+ public function display_list($return = false, $linked = true, $reverse = false)
372
+ {
373
+ $this->get_settings();
374
+ //Generate the breadcrumb trail
375
+ $this->breadcrumb_trail->fill();
376
+ return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
377
+ }
378
+ }
379
+ //Have to bootstrap our startup so that other plugins can replace the bcn_breadcrumb_trail object if they need to
380
+ add_action('plugins_loaded', 'bcn_init', 15);
381
+ function bcn_init()
382
+ {
383
+ global $breadcrumb_navxt;
384
+ //In the future there will be a hook for this so derivatives of bcn_breadcrumb_trail can use the admin
385
+ $bcn_breadcrumb_trail = new bcn_breadcrumb_trail();
386
+ //Let's make an instance of our object takes care of everything
387
+ $breadcrumb_navxt = new breadcrumb_navxt(apply_filters('bcn_breadcrumb_trail_object', $bcn_breadcrumb_trail));
388
+ }
389
+ /**
390
+ * Outputs the breadcrumb trail
391
+ *
392
+ * @param bool $return Whether to return or echo the trail. (optional)
393
+ * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
394
+ * @param bool $reverse Whether to reverse the output or not. (optional)
395
+ */
396
+ function bcn_display($return = false, $linked = true, $reverse = false)
397
+ {
398
+ global $breadcrumb_navxt;
399
+ if($breadcrumb_navxt !== null)
400
+ {
401
+ return $breadcrumb_navxt->display($return, $linked, $reverse);
402
+ }
403
+ }
404
+ /**
405
+ * Outputs the breadcrumb trail with each element encapsulated with li tags
406
+ *
407
+ * @param bool $return Whether to return or echo the trail. (optional)
408
+ * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
409
+ * @param bool $reverse Whether to reverse the output or not. (optional)
410
+ */
411
+ function bcn_display_list($return = false, $linked = true, $reverse = false)
412
+ {
413
+ global $breadcrumb_navxt;
414
+ if($breadcrumb_navxt !== null)
415
+ {
416
+ return $breadcrumb_navxt->display_list($return, $linked, $reverse);
417
+ }
418
+ }
breadcrumb_navxt_admin.php → class.bcn_admin.php RENAMED
@@ -1,15 +1,4 @@
1
  <?php
2
- /*
3
- Plugin Name: Breadcrumb NavXT
4
- Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
5
- Description: Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
- Version: 4.4.0
7
- Author: John Havlik
8
- Author URI: http://mtekk.us/
9
- License: GPL2
10
- TextDomain: breadcrumb-navxt
11
- DomainPath: /languages/
12
- */
13
  /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
14
 
15
  This program is free software; you can redistribute it and/or modify
@@ -42,18 +31,10 @@ if(version_compare(phpversion(), '5.2.0', '<'))
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
52
- require_once(dirname(__FILE__) . '/breadcrumb_navxt_widget.php');
53
  //Include admin base class
54
  if(!class_exists('mtekk_adminKit'))
55
  {
56
- require_once(dirname(__FILE__) . '/includes/mtekk_adminkit.php');
57
  }
58
  /**
59
  * The administrative interface class
@@ -61,31 +42,29 @@ if(!class_exists('mtekk_adminKit'))
61
  */
62
  class bcn_admin extends mtekk_adminKit
63
  {
64
- protected $version = '4.4.0';
65
  protected $full_name = 'Breadcrumb NavXT Settings';
66
  protected $short_name = 'Breadcrumb NavXT';
67
  protected $access_level = 'manage_options';
68
  protected $identifier = 'breadcrumb-navxt';
69
  protected $unique_prefix = 'bcn';
70
- protected $plugin_basename = 'breadcrumb-navxt/breadcrumb_navxt_admin.php';
71
  protected $support_url = 'http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-';
72
- public $breadcrumb_trail;
73
  /**
74
  * Administrative interface class default constructor
75
- * @param bcn_breadcrumb_trail $breadcrumb_trail a breadcrumb trail object
 
 
76
  */
77
- function __construct(bcn_breadcrumb_trail $breadcrumb_trail)
78
  {
79
- $this->breadcrumb_trail = $breadcrumb_trail;
 
80
  //Grab defaults from the breadcrumb_trail object
81
- $this->opt = $this->breadcrumb_trail->opt;
82
- //We set the plugin basename here, could manually set it, but this is for demonstration purposes
83
- //$this->plugin_basename = plugin_basename(__FILE__);
84
- //Register the WordPress 2.8 Widget
85
- add_action('widgets_init', create_function('', 'return register_widget("'. $this->unique_prefix . '_widget");'));
86
  //We're going to make sure we load the parent's constructor
87
  parent::__construct();
88
- add_action('init', array($this, 'wp_init'));
89
  }
90
  /**
91
  * admin initialization callback function
@@ -99,108 +78,11 @@ class bcn_admin extends mtekk_adminKit
99
  {
100
  //We're going to make sure we run the parent's version of this function as well
101
  parent::init();
102
- //We want to run late for using our breadcrumbs
103
- add_filter('tha_breadcrumb_navigation', array($this, 'tha_compat'), 99);
104
- }
105
- function wp_init()
106
- {
107
- add_filter('bcn_allowed_html', array($this, 'allowed_html'), 1, 1);
108
- }
109
- function allowed_html($tags)
110
- {
111
- $allowed_html = array(
112
- 'a' => array(
113
- 'href' => true,
114
- 'title' => true,
115
- 'class' => true,
116
- 'id' => true,
117
- 'media' => true,
118
- 'dir' => true,
119
- 'relList' => true,
120
- 'rel' => true,
121
- 'aria-hidden' => true,
122
- 'data-icon' => true,
123
- 'itemref' => true,
124
- 'itemid' => true,
125
- 'itemprop' => true,
126
- 'itemscope' => true,
127
- 'itemtype' => true
128
- ),
129
- 'img' => array(
130
- 'alt' => true,
131
- 'align' => true,
132
- 'height' => true,
133
- 'width' => true,
134
- 'src' => true,
135
- 'id' => true,
136
- 'class' => true,
137
- 'aria-hidden' => true,
138
- 'data-icon' => true,
139
- 'itemref' => true,
140
- 'itemid' => true,
141
- 'itemprop' => true,
142
- 'itemscope' => true,
143
- 'itemtype' => true
144
- ),
145
- 'span' => array(
146
- 'title' => true,
147
- 'class' => true,
148
- 'id' => true,
149
- 'dir' => true,
150
- 'align' => true,
151
- 'lang' => true,
152
- 'xml:lang' => true,
153
- 'aria-hidden' => true,
154
- 'data-icon' => true,
155
- 'itemref' => true,
156
- 'itemid' => true,
157
- 'itemprop' => true,
158
- 'itemscope' => true,
159
- 'itemtype' => true
160
- ),
161
- 'h1' => array(
162
- 'title' => true,
163
- 'class' => true,
164
- 'id' => true,
165
- 'dir' => true,
166
- 'align' => true,
167
- 'lang' => true,
168
- 'xml:lang' => true,
169
- 'aria-hidden' => true,
170
- 'data-icon' => true,
171
- 'itemref' => true,
172
- 'itemid' => true,
173
- 'itemprop' => true,
174
- 'itemscope' => true,
175
- 'itemtype' => true
176
- ),
177
- 'h2' => array(
178
- 'title' => true,
179
- 'class' => true,
180
- 'id' => true,
181
- 'dir' => true,
182
- 'align' => true,
183
- 'lang' => true,
184
- 'xml:lang' => true,
185
- 'aria-hidden' => true,
186
- 'data-icon' => true,
187
- 'itemref' => true,
188
- 'itemid' => true,
189
- 'itemprop' => true,
190
- 'itemscope' => true,
191
- 'itemtype' => true
192
- )
193
- );
194
- return $allowed_html; //$this->array_merge_recursive($tags, $allowed_html);
195
  }
196
  function wp_loaded()
197
  {
198
- //First make sure our defaults are safe
199
- $this->find_posttypes($this->opt);
200
- $this->find_taxonomies($this->opt);
201
- //Let others hook into our settings
202
- $this->opt = apply_filters($this->unique_prefix . '_settings_init', $this->opt);
203
  parent::wp_loaded();
 
204
  }
205
  /**
206
  * Makes sure the current user can manage options to proceed
@@ -302,13 +184,22 @@ class bcn_admin extends mtekk_adminKit
302
  }
303
  }
304
  //Add custom post types
305
- $this->find_posttypes($opts);
306
  //Add custom taxonomy types
307
- $this->find_taxonomies($opts);
308
  //Save the passed in opts to the object's option array
309
  $this->opt = $opts;
310
  }
311
  }
 
 
 
 
 
 
 
 
 
312
  /**
313
  * help action hook function
314
  *
@@ -414,8 +305,6 @@ class bcn_admin extends mtekk_adminKit
414
  {
415
  global $wp_taxonomies, $wp_post_types;
416
  $this->security();
417
- //Let's call the parent version of the page, will handle our setting stuff
418
- parent::admin_page();
419
  ?>
420
  <div class="wrap"><div id="icon-options-general" class="icon32"></div><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb-navxt'); ?></h2>
421
  <?php
@@ -455,7 +344,7 @@ class bcn_admin extends mtekk_adminKit
455
  </td>
456
  </tr>
457
  <?php
458
- do_action($this->unique_prefix . '_settings_general');
459
  ?>
460
  </table>
461
  <h3><?php _e('Current Item', 'breadcrumb-navxt'); ?></h3>
@@ -464,7 +353,7 @@ class bcn_admin extends mtekk_adminKit
464
  $this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
465
  $this->input_check(__('Paged Breadcrumb', 'breadcrumb-navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb-navxt'));
466
  $this->input_text(__('Paged Template', 'breadcrumb-navxt'), 'Hpaged_template', 'large-text', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
467
- do_action($this->unique_prefix . '_settings_current_item');
468
  ?>
469
  </table>
470
  <h3><?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?></h3>
@@ -473,7 +362,7 @@ class bcn_admin extends mtekk_adminKit
473
  $this->input_check(__('Home Breadcrumb', 'breadcrumb-navxt'), 'bhome_display', __('Place the home breadcrumb in the trail.', 'breadcrumb-navxt'));
474
  $this->input_text(__('Home Template', 'breadcrumb-navxt'), 'Hhome_template', 'large-text', false, __('The template for the home breadcrumb.', 'breadcrumb-navxt'));
475
  $this->input_text(__('Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hhome_template_no_anchor', 'large-text', false, __('The template for the home breadcrumb, used when the breadcrumb is not linked.', 'breadcrumb-navxt'));
476
- do_action($this->unique_prefix . '_settings_home');
477
  ?>
478
  </table>
479
  <h3><?php _e('Blog Breadcrumb', 'breadcrumb-navxt'); ?></h3>
@@ -482,7 +371,7 @@ class bcn_admin extends mtekk_adminKit
482
  $this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
483
  $this->input_text(__('Blog Template', 'breadcrumb-navxt'), 'Hblog_template', 'large-text', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb-navxt'));
484
  $this->input_text(__('Blog Template (Unlinked)', 'breadcrumb-navxt'), 'Hblog_template_no_anchor', 'large-text', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
485
- do_action($this->unique_prefix . '_settings_blog');
486
  ?>
487
  </table>
488
  <h3><?php _e('Mainsite Breadcrumb', 'breadcrumb-navxt'); ?></h3>
@@ -491,10 +380,10 @@ class bcn_admin extends mtekk_adminKit
491
  $this->input_check(__('Main Site Breadcrumb', 'breadcrumb-navxt'), 'bmainsite_display', __('Place the main site home breadcrumb in the trail in an multisite setup.', 'breadcrumb-navxt'), !is_multisite());
492
  $this->input_text(__('Main Site Home Template', 'breadcrumb-navxt'), 'Hmainsite_template', 'large-text', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb-navxt'));
493
  $this->input_text(__('Main Site Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hmainsite_template_no_anchor', 'large-text', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
494
- do_action($this->unique_prefix . '_settings_mainsite');
495
  ?>
496
  </table>
497
- <?php do_action($this->unique_prefix . '_after_settings_tab_general'); ?>
498
  </fieldset>
499
  <fieldset id="post" class="bcn_options">
500
  <h3 class="tab-title" title="<?php _e('The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Post Types', 'breadcrumb-navxt'); ?></h3>
@@ -512,10 +401,10 @@ class bcn_admin extends mtekk_adminKit
512
  <td>
513
  <?php
514
  $this->input_radio('Spost_post_taxonomy_type', 'category', __('Categories'));
515
- $this->input_radio('Spost_post_taxonomy_type', 'date', __('Dates'));
516
  $this->input_radio('Spost_post_taxonomy_type', 'post_tag', __('Tags'));
517
  //We use the value 'page' but really, this will follow the parent post hierarchy
518
- $this->input_radio('Spost_post_taxonomy_type', 'page', __('Post Parent'));
519
  //Loop through all of the taxonomies in the array
520
  foreach($wp_taxonomies as $taxonomy)
521
  {
@@ -584,7 +473,7 @@ class bcn_admin extends mtekk_adminKit
584
  <td>
585
  <?php
586
  //We use the value 'page' but really, this will follow the parent post hierarchy
587
- $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent'));
588
  //Loop through all of the taxonomies in the array
589
  foreach($wp_taxonomies as $taxonomy)
590
  {
@@ -618,7 +507,7 @@ class bcn_admin extends mtekk_adminKit
618
  <?php
619
  }
620
  }
621
- do_action($this->unique_prefix . '_after_settings_tab_post');
622
  ?>
623
  </fieldset>
624
  <fieldset id="tax" class="bcn_options alttab">
@@ -668,7 +557,7 @@ class bcn_admin extends mtekk_adminKit
668
  <?php
669
  }
670
  }
671
- do_action($this->unique_prefix . '_after_settings_tab_taxonomy'); ?>
672
  </fieldset>
673
  <fieldset id="miscellaneous" class="bcn_options">
674
  <h3 class="tab-title" title="<?php _e('The settings for author and date archives, searches, and 404 pages are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
@@ -691,8 +580,9 @@ class bcn_admin extends mtekk_adminKit
691
  $this->input_text(__('404 Template', 'breadcrumb-navxt'), 'H404_template', 'large-text', false, __('The template for 404 breadcrumbs.', 'breadcrumb-navxt'));
692
  ?>
693
  </table>
694
- <?php do_action($this->unique_prefix . '_after_settings_tab_miscellaneous'); ?>
695
  </fieldset>
 
696
  </div>
697
  <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
698
  </form>
@@ -702,193 +592,4 @@ class bcn_admin extends mtekk_adminKit
702
  </div>
703
  <?php
704
  }
705
- function opts_fix(&$opts)
706
- {
707
- if($opts['amax_title_length'] < 1)
708
- {
709
- $opts['amax_title_length'] = 1;
710
- }
711
- }
712
- function opts_update_prebk(&$opts)
713
- {
714
- //Add custom post types
715
- $this->find_posttypes($opts);
716
- //Add custom taxonomy types
717
- $this->find_taxonomies($opts);
718
- }
719
- /**
720
- * Places settings into $opts array, if missing, for the registered post types
721
- *
722
- * @param array $opts
723
- */
724
- function find_posttypes(&$opts)
725
- {
726
- global $wp_post_types, $wp_taxonomies;
727
- //Loop through all of the post types in the array
728
- foreach($wp_post_types as $post_type)
729
- {
730
- //Check for non-public CPTs
731
- if(!apply_filters('bcn_show_cpt_private', $post_type->public, $post_type->name))
732
- {
733
- continue;
734
- }
735
- //We only want custom post types
736
- if(!$post_type->_builtin)
737
- {
738
- //If the post type does not have settings in the options array yet, we need to load some defaults
739
- if(!array_key_exists('Hpost_' . $post_type->name . '_template', $opts) || !$post_type->hierarchical && !array_key_exists('Spost_' . $post_type->name . '_taxonomy_type', $opts))
740
- {
741
- //Add the necessary option array members
742
- $opts['Hpost_' . $post_type->name . '_template'] = __('<a title="Go to %ftitle%." href="%link%">%htitle%</a>', 'breadcrumb-navxt');
743
- $opts['Hpost_' . $post_type->name . '_template_no_anchor'] = __('%htitle%', 'breadcrumb-navxt');
744
- $opts['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
745
- //Do type dependent tasks
746
- if($post_type->hierarchical)
747
- {
748
- //Set post_root for hierarchical types
749
- $opts['apost_' . $post_type->name . '_root'] = get_option('page_on_front');
750
- //Default to displaying a 'taxonomy'
751
- $opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
752
- //The 'taxonomy' is the page/post hierarchy for hierarchical post types
753
- $opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'page';
754
- }
755
- //If it is flat, we need a taxonomy selection
756
- else
757
- {
758
- //Set post_root for flat types
759
- $opts['apost_' . $post_type->name . '_root'] = get_option('page_for_posts');
760
- //Default to not displaying a taxonomy
761
- $opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
762
- //Loop through all of the possible taxonomies
763
- foreach($wp_taxonomies as $taxonomy)
764
- {
765
- //Check for non-public taxonomies
766
- if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
767
- {
768
- continue;
769
- }
770
- //Activate the first taxonomy valid for this post type and exit the loop
771
- if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
772
- {
773
- $opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
774
- $opts['Spost_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
775
- break;
776
- }
777
- }
778
- }
779
- //If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
780
- if(!isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
781
- {
782
- $opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'page';
783
- }
784
- }
785
- }
786
- }
787
- }
788
- /**
789
- * Places settings into $opts array, if missing, for the registered taxonomies
790
- *
791
- * @param $opts
792
- */
793
- function find_taxonomies(&$opts)
794
- {
795
- global $wp_taxonomies;
796
- //We'll add our custom taxonomy stuff at this time
797
- foreach($wp_taxonomies as $taxonomy)
798
- {
799
- //Check for non-public taxonomies
800
- if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
801
- {
802
- continue;
803
- }
804
- //We only want custom taxonomies
805
- if(!$taxonomy->_builtin)
806
- {
807
- //If the taxonomy does not have settings in the options array yet, we need to load some defaults
808
- if(!array_key_exists('H' . $taxonomy->name . '_template', $opts))
809
- {
810
- //Add the necessary option array members
811
- $opts['H' . $taxonomy->name . '_template'] = __(sprintf('<a title="Go to the %%ftitle%% %s archives." href="%%link%%">%%htitle%%</a>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
812
- $opts['H' . $taxonomy->name . '_template_no_anchor'] = __(sprintf('%%htitle%%', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
813
- }
814
- }
815
- }
816
- }
817
- /**
818
- * Hooks into the theme hook alliance tha_breadcrumb_navigation filter and replaces the trail
819
- * with one generated by Breadcrumb NavXT
820
- *
821
- * @param string $bradcrumb_trail The string breadcrumb trail that we will replace
822
- * @return string The Breadcrumb NavXT assembled breadcrumb trail
823
- */
824
- function tha_compat($breadcrumb_trail)
825
- {
826
- //Return our breadcrumb trail
827
- return $this->display(true);
828
- }
829
- /**
830
- * Outputs the breadcrumb trail
831
- *
832
- * @param bool $return Whether to return or echo the trail.
833
- * @param bool $linked Whether to allow hyperlinks in the trail or not.
834
- * @param bool $reverse Whether to reverse the output or not.
835
- */
836
- function display($return = false, $linked = true, $reverse = false)
837
- {
838
- //Grab the current settings from the db
839
- $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
840
- //Generate the breadcrumb trail
841
- $this->breadcrumb_trail->fill();
842
- return $this->breadcrumb_trail->display($return, $linked, $reverse);
843
- }
844
- /**
845
- * Outputs the breadcrumb trail
846
- *
847
- * @since 3.2.0
848
- * @param bool $return Whether to return or echo the trail.
849
- * @param bool $linked Whether to allow hyperlinks in the trail or not.
850
- * @param bool $reverse Whether to reverse the output or not.
851
- */
852
- function display_list($return = false, $linked = true, $reverse = false)
853
- {
854
- //Grab the current settings from the db
855
- $this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
856
- //Generate the breadcrumb trail
857
- $this->breadcrumb_trail->fill();
858
- return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
859
- }
860
- }
861
- //In the future there will be a hook for this so derivatives of bcn_breadcrumb_trail can use the admin
862
- $bcn_breadcrumb_trail = new bcn_breadcrumb_trail();
863
- //Let's make an instance of our object takes care of everything
864
- $bcn_admin = new bcn_admin($bcn_breadcrumb_trail);
865
- /**
866
- * A wrapper for the internal function in the class
867
- *
868
- * @param bool $return Whether to return or echo the trail. (optional)
869
- * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
870
- * @param bool $reverse Whether to reverse the output or not. (optional)
871
- */
872
- function bcn_display($return = false, $linked = true, $reverse = false)
873
- {
874
- global $bcn_admin;
875
- if($bcn_admin !== null)
876
- {
877
- return $bcn_admin->display($return, $linked, $reverse);
878
- }
879
- }
880
- /**
881
- * A wrapper for the internal function in the class
882
- *
883
- * @param bool $return Whether to return or echo the trail. (optional)
884
- * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
885
- * @param bool $reverse Whether to reverse the output or not. (optional)
886
- */
887
- function bcn_display_list($return = false, $linked = true, $reverse = false)
888
- {
889
- global $bcn_admin;
890
- if($bcn_admin !== null)
891
- {
892
- return $bcn_admin->display_list($return, $linked, $reverse);
893
- }
894
  }
1
  <?php
 
 
 
 
 
 
 
 
 
 
 
2
  /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
3
 
4
  This program is free software; you can redistribute it and/or modify
31
  }
32
  return;
33
  }
 
 
 
 
 
 
 
 
34
  //Include admin base class
35
  if(!class_exists('mtekk_adminKit'))
36
  {
37
+ require_once(dirname(__FILE__) . '/includes/class.mtekk_adminkit.php');
38
  }
39
  /**
40
  * The administrative interface class
42
  */
43
  class bcn_admin extends mtekk_adminKit
44
  {
45
+ protected $version = '5.0.0';
46
  protected $full_name = 'Breadcrumb NavXT Settings';
47
  protected $short_name = 'Breadcrumb NavXT';
48
  protected $access_level = 'manage_options';
49
  protected $identifier = 'breadcrumb-navxt';
50
  protected $unique_prefix = 'bcn';
51
+ protected $plugin_basename = null;
52
  protected $support_url = 'http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-';
53
+ protected $breadcrumb_trail = null;
54
  /**
55
  * Administrative interface class default constructor
56
+ *
57
+ * @param bcn_breadcrumb_trail $breadcrumb_trail a breadcrumb trail object
58
+ * @param string $basename The basename of the plugin
59
  */
60
+ function __construct(bcn_breadcrumb_trail &$breadcrumb_trail, $basename)
61
  {
62
+ $this->breadcrumb_trail =& $breadcrumb_trail;
63
+ $this->plugin_basename = $basename;
64
  //Grab defaults from the breadcrumb_trail object
65
+ $this->opt =& $this->breadcrumb_trail->opt;
 
 
 
 
66
  //We're going to make sure we load the parent's constructor
67
  parent::__construct();
 
68
  }
69
  /**
70
  * admin initialization callback function
78
  {
79
  //We're going to make sure we run the parent's version of this function as well
80
  parent::init();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  }
82
  function wp_loaded()
83
  {
 
 
 
 
 
84
  parent::wp_loaded();
85
+ breadcrumb_navxt::setup_options($this->opt);
86
  }
87
  /**
88
  * Makes sure the current user can manage options to proceed
184
  }
185
  }
186
  //Add custom post types
187
+ breadcrumb_navxt::find_posttypes($this->opt);
188
  //Add custom taxonomy types
189
+ breadcrumb_navxt::find_taxonomies($this->opt);
190
  //Save the passed in opts to the object's option array
191
  $this->opt = $opts;
192
  }
193
  }
194
+ function opts_update_prebk(&$opts)
195
+ {
196
+ //Add custom post types
197
+ breadcrumb_navxt::find_posttypes($this->opt);
198
+ //Add custom taxonomy types
199
+ breadcrumb_navxt::find_taxonomies($this->opt);
200
+ //Let others hook into our settings
201
+ $this->opt = apply_filters($this->unique_prefix . '_settings_init', $this->opt);
202
+ }
203
  /**
204
  * help action hook function
205
  *
305
  {
306
  global $wp_taxonomies, $wp_post_types;
307
  $this->security();
 
 
308
  ?>
309
  <div class="wrap"><div id="icon-options-general" class="icon32"></div><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb-navxt'); ?></h2>
310
  <?php
344
  </td>
345
  </tr>
346
  <?php
347
+ do_action($this->unique_prefix . '_settings_general', $this->opt);
348
  ?>
349
  </table>
350
  <h3><?php _e('Current Item', 'breadcrumb-navxt'); ?></h3>
353
  $this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
354
  $this->input_check(__('Paged Breadcrumb', 'breadcrumb-navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb-navxt'));
355
  $this->input_text(__('Paged Template', 'breadcrumb-navxt'), 'Hpaged_template', 'large-text', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
356
+ do_action($this->unique_prefix . '_settings_current_item', $this->opt);
357
  ?>
358
  </table>
359
  <h3><?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?></h3>
362
  $this->input_check(__('Home Breadcrumb', 'breadcrumb-navxt'), 'bhome_display', __('Place the home breadcrumb in the trail.', 'breadcrumb-navxt'));
363
  $this->input_text(__('Home Template', 'breadcrumb-navxt'), 'Hhome_template', 'large-text', false, __('The template for the home breadcrumb.', 'breadcrumb-navxt'));
364
  $this->input_text(__('Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hhome_template_no_anchor', 'large-text', false, __('The template for the home breadcrumb, used when the breadcrumb is not linked.', 'breadcrumb-navxt'));
365
+ do_action($this->unique_prefix . '_settings_home', $this->opt);
366
  ?>
367
  </table>
368
  <h3><?php _e('Blog Breadcrumb', 'breadcrumb-navxt'); ?></h3>
371
  $this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
372
  $this->input_text(__('Blog Template', 'breadcrumb-navxt'), 'Hblog_template', 'large-text', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb-navxt'));
373
  $this->input_text(__('Blog Template (Unlinked)', 'breadcrumb-navxt'), 'Hblog_template_no_anchor', 'large-text', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
374
+ do_action($this->unique_prefix . '_settings_blog', $this->opt);
375
  ?>
376
  </table>
377
  <h3><?php _e('Mainsite Breadcrumb', 'breadcrumb-navxt'); ?></h3>
380
  $this->input_check(__('Main Site Breadcrumb', 'breadcrumb-navxt'), 'bmainsite_display', __('Place the main site home breadcrumb in the trail in an multisite setup.', 'breadcrumb-navxt'), !is_multisite());
381
  $this->input_text(__('Main Site Home Template', 'breadcrumb-navxt'), 'Hmainsite_template', 'large-text', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb-navxt'));
382
  $this->input_text(__('Main Site Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hmainsite_template_no_anchor', 'large-text', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
383
+ do_action($this->unique_prefix . '_settings_mainsite', $this->opt);
384
  ?>
385
  </table>
386
+ <?php do_action($this->unique_prefix . '_after_settings_tab_general', $this->opt); ?>
387
  </fieldset>
388
  <fieldset id="post" class="bcn_options">
389
  <h3 class="tab-title" title="<?php _e('The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Post Types', 'breadcrumb-navxt'); ?></h3>
401
  <td>
402
  <?php
403
  $this->input_radio('Spost_post_taxonomy_type', 'category', __('Categories'));
404
+ $this->input_radio('Spost_post_taxonomy_type', 'date', __('Dates', 'breadcrumb-navxt'));
405
  $this->input_radio('Spost_post_taxonomy_type', 'post_tag', __('Tags'));
406
  //We use the value 'page' but really, this will follow the parent post hierarchy
407
+ $this->input_radio('Spost_post_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'));
408
  //Loop through all of the taxonomies in the array
409
  foreach($wp_taxonomies as $taxonomy)
410
  {
473
  <td>
474
  <?php
475
  //We use the value 'page' but really, this will follow the parent post hierarchy
476
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'));
477
  //Loop through all of the taxonomies in the array
478
  foreach($wp_taxonomies as $taxonomy)
479
  {
507
  <?php
508
  }
509
  }
510
+ do_action($this->unique_prefix . '_after_settings_tab_post', $this->opt);
511
  ?>
512
  </fieldset>
513
  <fieldset id="tax" class="bcn_options alttab">
557
  <?php
558
  }
559
  }
560
+ do_action($this->unique_prefix . '_after_settings_tab_taxonomy', $this->opt); ?>
561
  </fieldset>
562
  <fieldset id="miscellaneous" class="bcn_options">
563
  <h3 class="tab-title" title="<?php _e('The settings for author and date archives, searches, and 404 pages are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
580
  $this->input_text(__('404 Template', 'breadcrumb-navxt'), 'H404_template', 'large-text', false, __('The template for 404 breadcrumbs.', 'breadcrumb-navxt'));
581
  ?>
582
  </table>
583
+ <?php do_action($this->unique_prefix . '_after_settings_tab_miscellaneous', $this->opt); ?>
584
  </fieldset>
585
+ <?php do_action($this->unique_prefix . '_after_settings_tabs', $this->opt); ?>
586
  </div>
587
  <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
588
  </form>
592
  </div>
593
  <?php
594
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
595
  }
class.bcn_breadcrumb.php ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
4
+
5
+ This program is free software; you can redistribute it and/or modify
6
+ it under the terms of the GNU General Public License as published by
7
+ the Free Software Foundation; either version 2 of the License, or
8
+ (at your option) any later version.
9
+
10
+ This program is distributed in the hope that it will be useful,
11
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ GNU General Public License for more details.
14
+
15
+ You should have received a copy of the GNU General Public License
16
+ along with this program; if not, write to the Free Software
17
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
+ */
19
+ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
+ //The breadcrumb class
21
+ class bcn_breadcrumb
22
+ {
23
+ //Our member variables
24
+ //The main text that will be shown
25
+ protected $title;
26
+ //The breadcrumb's template, used durring assembly
27
+ protected $template;
28
+ //The breadcrumb's no anchor template, used durring assembly when there won't be an anchor
29
+ protected $template_no_anchor = '%title%';
30
+ //Boolean, is this element linked
31
+ protected $linked;
32
+ //The link the breadcrumb leads to, null if $linked == false
33
+ protected $url;
34
+ //The corresponding resource ID
35
+ protected $id = NULL;
36
+ private $_title = NULL;
37
+ //The type of this breadcrumb
38
+ public $type;
39
+ protected $allowed_html = array();
40
+ /**
41
+ * The enhanced default constructor, ends up setting all parameters via the set_ functions
42
+ *
43
+ * @param string $title (optional) The title of the breadcrumb
44
+ * @param string $template (optional) The html template for the breadcrumb
45
+ * @param string $type (optional) The breadcrumb type
46
+ * @param string $url (optional) The url the breadcrumb links to
47
+ */
48
+ public function __construct($title = '', $template = '', $type = '', $url = NULL, $id = NULL)
49
+ {
50
+ //Filter allowed_html array to allow others to add acceptable tags
51
+ $this->allowed_html = apply_filters('bcn_allowed_html', wp_kses_allowed_html('post'));
52
+ //The breadcrumb type
53
+ $this->type = $type;
54
+ //Set the resource id
55
+ $this->set_id($id);
56
+ //Set the title
57
+ $this->set_title($title);
58
+ //Assign the breadcrumb template
59
+ if($template == NULL)
60
+ {
61
+ if($url == NULL)
62
+ {
63
+ $template = $this->template = __('%htitle%', 'breadcrumb-navxt');
64
+ }
65
+ else
66
+ {
67
+ $template = __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt');
68
+ }
69
+ }
70
+ if($url == NULL)
71
+ {
72
+ $this->template_no_anchor = wp_kses($template, $this->allowed_html);
73
+ }
74
+ else
75
+ {
76
+ $this->set_template($template);
77
+ }
78
+ //Always NULL if unlinked
79
+ $this->set_url($url);
80
+ }
81
+ /**
82
+ * Function to set the protected title member
83
+ *
84
+ * @param string $title The title of the breadcrumb
85
+ */
86
+ public function set_title($title)
87
+ {
88
+ //Set the title
89
+ $this->title = apply_filters('bcn_breadcrumb_title', $title, $this->type, $this->id);
90
+ $this->_title = $this->title;
91
+ }
92
+ /**
93
+ * Function to get the protected title member
94
+ *
95
+ * @return $this->title
96
+ */
97
+ public function get_title()
98
+ {
99
+ //Return the title
100
+ return $this->title;
101
+ }
102
+ /**
103
+ * Function to set the internal URL variable
104
+ *
105
+ * @param string $url the url to link to
106
+ */
107
+ public function set_url($url)
108
+ {
109
+ $this->url = esc_url(apply_filters('bcn_breadcrumb_url', $url, $this->type, $this->id));
110
+ //Set linked to true if we set a non-null $url
111
+ if($url)
112
+ {
113
+ $this->linked = true;
114
+ }
115
+ }
116
+ /**
117
+ * Function to set the internal breadcrumb template
118
+ *
119
+ * @param string $template the template to use durring assebly
120
+ */
121
+ public function set_template($template)
122
+ {
123
+ //Assign the breadcrumb template
124
+ $this->template = wp_kses($template, $this->allowed_html);
125
+ }
126
+ /**
127
+ * Function to set the internal breadcrumb ID
128
+ *
129
+ * @param int $id the id of the resource this breadcrumb represents
130
+ */
131
+ public function set_id($id)
132
+ {
133
+ $this->id = $id;
134
+ }
135
+ /**
136
+ * Function to get the internal breadcrumb ID
137
+ *
138
+ * @return int the id of the resource this breadcrumb represents
139
+ */
140
+ public function get_id()
141
+ {
142
+ return $this->id;
143
+ }
144
+ /**
145
+ * Append a type entry to the type array
146
+ *
147
+ * @param string $type the type to append
148
+ */
149
+ public function add_type($type)
150
+ {
151
+ $this->type[] = $type;
152
+ }
153
+ /**
154
+ * This function will intelligently trim the title to the value passed in through $max_length.
155
+ *
156
+ * @param int $max_length of the title.
157
+ */
158
+ public function title_trim($max_length)
159
+ {
160
+ //To preserve HTML entities, must decode before splitting
161
+ $this->title = html_entity_decode($this->title, ENT_COMPAT, 'UTF-8');
162
+ $title_length = mb_strlen($this->title);
163
+ //Make sure that we are not making it longer with that ellipse
164
+ if($title_length > $max_length && ($title_length + 2) > $max_length)
165
+ {
166
+ //Trim the title
167
+ $this->title = mb_substr($this->title, 0, $max_length - 1);
168
+ //Make sure we can split a, but we want to limmit to cutting at max an additional 25%
169
+ if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
170
+ {
171
+ //Don't split mid word
172
+ while(mb_substr($this->title,-1) != ' ')
173
+ {
174
+ $this->title = mb_substr($this->title, 0, -1);
175
+ }
176
+ }
177
+ //Remove the whitespace at the end and add the hellip
178
+ $this->title = rtrim($this->title) . html_entity_decode('&hellip;', ENT_COMPAT, 'UTF-8');
179
+ }
180
+ //Return to the encoded version of all HTML entities (keep standards complance)
181
+ $this->title = htmlentities($this->title, ENT_COMPAT, 'UTF-8');
182
+ }
183
+ /**
184
+ * Assembles the parts of the breadcrumb into a html string
185
+ *
186
+ * @param bool $linked (optional) Allow the output to contain anchors?
187
+ * @return string The compiled breadcrumb string
188
+ */
189
+ public function assemble($linked = true)
190
+ {
191
+ //Build our replacements array
192
+ $replacements = array(
193
+ '%title%' => esc_attr(strip_tags($this->title)),
194
+ '%link%' => $this->url,
195
+ '%htitle%' => $this->title,
196
+ '%type%' => apply_filters('bcn_breadcrumb_types', $this->type, $this->id),
197
+ '%ftitle%' => esc_attr(strip_tags($this->_title)),
198
+ '%fhtitle%' => $this->_title
199
+ );
200
+ //The type may be an array, implode it if that is the case
201
+ if(is_array($replacements['%type%']))
202
+ {
203
+ $replacements['%type%'] = implode(' ', $replacements['%type%']);
204
+ }
205
+ $replacements = apply_filters('bcn_template_tags', $replacements, $this->type, $this->id);
206
+ //If we are linked we'll need to use the normal template
207
+ if($this->linked && $linked)
208
+ {
209
+ //Return the assembled breadcrumb string
210
+ return str_replace(array_keys($replacements), $replacements, $this->template);
211
+ }
212
+ //Otherwise we use the no anchor template
213
+ else
214
+ {
215
+ //Return the assembled breadcrumb string
216
+ return str_replace(array_keys($replacements), $replacements, $this->template_no_anchor);
217
+ }
218
+ }
219
+ }
breadcrumb_navxt_class.php → class.bcn_breadcrumb_trail.php RENAMED
@@ -17,209 +17,18 @@
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
  require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
20
- //The breadcrumb class
21
- class bcn_breadcrumb
22
- {
23
- //Our member variables
24
- //The main text that will be shown
25
- protected $title;
26
- //The breadcrumb's template, used durring assembly
27
- protected $template;
28
- //The breadcrumb's no anchor template, used durring assembly when there won't be an anchor
29
- protected $template_no_anchor = '%title%';
30
- //Boolean, is this element linked
31
- protected $linked;
32
- //The link the breadcrumb leads to, null if $linked == false
33
- protected $url;
34
- //The corresponding resource ID
35
- protected $id = NULL;
36
- private $_title = NULL;
37
- //The type of this breadcrumb
38
- public $type;
39
- protected $allowed_html = array();
40
- /**
41
- * The enhanced default constructor, ends up setting all parameters via the set_ functions
42
- *
43
- * @param string $title (optional) The title of the breadcrumb
44
- * @param string $template (optional) The html template for the breadcrumb
45
- * @param string $type (optional) The breadcrumb type
46
- * @param string $url (optional) The url the breadcrumb links to
47
- */
48
- public function bcn_breadcrumb($title = '', $template = '', $type = '', $url = NULL, $id = NULL)
49
- {
50
- //Filter allowed_html array to allow others to add acceptable tags
51
- $this->allowed_html = apply_filters('bcn_allowed_html', wp_kses_allowed_html('post'));
52
- //The breadcrumb type
53
- $this->type = $type;
54
- //Set the resource id
55
- $this->set_id($id);
56
- //Set the title
57
- $this->set_title($title);
58
- //Assign the breadcrumb template
59
- if($template == NULL)
60
- {
61
- if($url == NULL)
62
- {
63
- $template = $this->template = __('%htitle%', 'breadcrumb-navxt');
64
- }
65
- else
66
- {
67
- $template = __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt');
68
- }
69
- }
70
- if($url == NULL)
71
- {
72
- $this->template_no_anchor = wp_kses($template, $this->allowed_html);
73
- }
74
- else
75
- {
76
- $this->set_template($template);
77
- }
78
- //Always NULL if unlinked
79
- $this->set_url($url);
80
- }
81
- /**
82
- * Function to set the protected title member
83
- *
84
- * @param string $title The title of the breadcrumb
85
- */
86
- public function set_title($title)
87
- {
88
- //Set the title
89
- $this->title = apply_filters('bcn_breadcrumb_title', $title, $this->type, $this->id);
90
- $this->_title = $this->title;
91
- }
92
- /**
93
- * Function to get the protected title member
94
- *
95
- * @return $this->title
96
- */
97
- public function get_title()
98
- {
99
- //Return the title
100
- return $this->title;
101
- }
102
- /**
103
- * Function to set the internal URL variable
104
- *
105
- * @param string $url the url to link to
106
- */
107
- public function set_url($url)
108
- {
109
- $this->url = esc_url(apply_filters('bcn_breadcrumb_url', $url, $this->type, $this->id));
110
- //Set linked to true if we set a non-null $url
111
- if($url)
112
- {
113
- $this->linked = true;
114
- }
115
- }
116
- /**
117
- * Sets the internal breadcrumb template
118
- *
119
- * @param string $template the template to use durring assebly
120
- */
121
- public function set_template($template)
122
- {
123
- //Assign the breadcrumb template
124
- $this->template = wp_kses(apply_filters('bcn_breadcrumb_template', $template, $this->type, $this->id), $this->allowed_html);
125
- }
126
- /**
127
- * Sets the internal breadcrumb ID
128
- *
129
- * @param int $id the id of the resource this breadcrumb represents
130
- */
131
- public function set_id($id)
132
- {
133
- $this->id = $id;
134
- }
135
- /**
136
- * Append a type entry to the type array
137
- *
138
- * @param string $type the type to append
139
- */
140
- public function add_type($type)
141
- {
142
- $this->type[] = $type;
143
- }
144
- /**
145
- * This function will intelligently trim the title to the value passed in through $max_length.
146
- *
147
- * @param int $max_length of the title.
148
- */
149
- public function title_trim($max_length)
150
- {
151
- //To preserve HTML entities, must decode before splitting
152
- $this->title = html_entity_decode($this->title, ENT_COMPAT, 'UTF-8');
153
- $title_length = mb_strlen($this->title);
154
- //Make sure that we are not making it longer with that ellipse
155
- if($title_length > $max_length && ($title_length + 2) > $max_length)
156
- {
157
- //Trim the title
158
- $this->title = mb_substr($this->title, 0, $max_length - 1);
159
- //Make sure we can split a, but we want to limmit to cutting at max an additional 25%
160
- if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
161
- {
162
- //Don't split mid word
163
- while(mb_substr($this->title,-1) != ' ')
164
- {
165
- $this->title = mb_substr($this->title, 0, -1);
166
- }
167
- }
168
- //Remove the whitespace at the end and add the hellip
169
- $this->title = rtrim($this->title) . html_entity_decode('&hellip;', ENT_COMPAT, 'UTF-8');
170
- }
171
- //Return to the encoded version of all HTML entities (keep standards complance)
172
- $this->title = htmlentities($this->title, ENT_COMPAT, 'UTF-8');
173
- }
174
- /**
175
- * Assembles the parts of the breadcrumb into a html string
176
- *
177
- * @param bool $linked (optional) Allow the output to contain anchors?
178
- * @return string The compiled breadcrumb string
179
- */
180
- public function assemble($linked = true)
181
- {
182
- //Build our replacements array
183
- $replacements = array(
184
- '%title%' => esc_attr(strip_tags($this->title)),
185
- '%link%' => $this->url,
186
- '%htitle%' => $this->title,
187
- '%type%' => $this->type,
188
- '%ftitle%' => esc_attr(strip_tags($this->_title)),
189
- '%fhtitle%' => $this->_title
190
- );
191
- //The type may be an array, implode it if that is the case
192
- if(is_array($replacements['%type%']))
193
- {
194
- $replacements['%type%'] = implode(' ', $replacements['%type%']);
195
- }
196
- $replacements = apply_filters('bcn_template_tags', $replacements, $this->type, $this->id);
197
- //If we are linked we'll need to use the normal template
198
- if($this->linked && $linked)
199
- {
200
- //Return the assembled breadcrumb string
201
- return str_replace(array_keys($replacements), $replacements, $this->template);
202
- }
203
- //Otherwise we use the no anchor template
204
- else
205
- {
206
- //Return the assembled breadcrumb string
207
- return str_replace(array_keys($replacements), $replacements, $this->template_no_anchor);
208
- }
209
- }
210
- }
211
-
212
  //The trail class
213
  class bcn_breadcrumb_trail
214
  {
215
  //Our member variables
216
- private $version = '4.4.0';
217
  //An array of breadcrumbs
 
218
  public $trail = array();
219
  //The options
220
  public $opt;
221
  //Default constructor
222
- function bcn_breadcrumb_trail()
223
  {
224
  global $l10n;
225
  // the global and the check might become obsolete in
@@ -229,6 +38,7 @@ class bcn_breadcrumb_trail
229
  {
230
  load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
231
  }
 
232
  //Load the translation domain as the next part needs it
233
  //load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
234
  //Initilize with default option values
@@ -236,19 +46,19 @@ class bcn_breadcrumb_trail
236
  //Should the mainsite be shown
237
  'bmainsite_display' => true,
238
  //The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
239
- 'Hmainsite_template' => __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
240
  //The breadcrumb template for the main site, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
241
  'Hmainsite_template_no_anchor' => '%htitle%',
242
  //Should the home page be shown
243
  'bhome_display' => true,
244
  //The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
245
- 'Hhome_template' => __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
246
  //The breadcrumb template for the home page, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
247
  'Hhome_template_no_anchor' => '%htitle%',
248
  //Should the blog page be shown globally
249
  'bblog_display' => true,
250
  //The breadcrumb template for the blog page only in static front page mode, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
251
- 'Hblog_template' => __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
252
  //The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
253
  'Hblog_template_no_anchor' => '%htitle%',
254
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
@@ -262,7 +72,7 @@ class bcn_breadcrumb_trail
262
  'bcurrent_item_linked' => false,
263
  //Static page options
264
  //The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
265
- 'Hpost_page_template' => __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
266
  //The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
267
  'Hpost_page_template_no_anchor' => '%htitle%',
268
  //Just a link to the page on front property
@@ -274,7 +84,7 @@ class bcn_breadcrumb_trail
274
  'bpaged_display' => false,
275
  //The post options previously singleblogpost
276
  //The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
277
- 'Hpost_post_template' => __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
278
  //The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
279
  'Hpost_post_template_no_anchor' => '%htitle%',
280
  //Just a link for the page for posts
@@ -286,7 +96,7 @@ class bcn_breadcrumb_trail
286
  //Attachment settings
287
  //TODO: Need to move attachments to support via normal post handlers
288
  //The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
289
- 'Hpost_attachment_template' => __('<a title="Go to %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
290
  //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
291
  'Hpost_attachment_template_no_anchor' => '%htitle%',
292
  //404 page settings
@@ -296,33 +106,33 @@ class bcn_breadcrumb_trail
296
  'S404_title' => __('404', 'breadcrumb-navxt'),
297
  //Search page options
298
  //The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
299
- 'Hsearch_template' => __('Search results for &#39;<a title="Go to the first page of search results for %ftitle%." href="%link%" class="%type%">%htitle%</a>&#39;', 'breadcrumb-navxt'),
300
  //The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
301
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
302
  //Tag related stuff
303
  //The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
304
- 'Hpost_tag_template' => __('<a title="Go to the %ftitle% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
305
  //The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
306
  'Hpost_tag_template_no_anchor' => '%htitle%',
307
  //Post format related stuff
308
  //The breadcrumb template for post format breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
309
- 'Hpost_format_template' => __('<a title="Go to the %ftitle% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
310
  //The breadcrumb template for post format breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
311
  'Hpost_format_template_no_anchor' => '%htitle%',
312
  //Author page stuff
313
  //The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
314
- 'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %ftitle%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
315
  //The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
316
  'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
317
  //Which of the various WordPress display types should the author breadcrumb display
318
  'Sauthor_name' => 'display_name',
319
  //Category stuff
320
  //The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
321
- 'Hcategory_template' => __('<a title="Go to the %ftitle% category archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
322
  //The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
323
  'Hcategory_template_no_anchor' => '%htitle%',
324
  //The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
325
- 'Hdate_template' => __('<a title="Go to the %ftitle% archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
326
  //The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
327
  'Hdate_template_no_anchor' => '%htitle%'
328
  );
@@ -342,18 +152,18 @@ class bcn_breadcrumb_trail
342
  * @return pointer to the just added Breadcrumb
343
  * @param bcn_breadcrumb $object Breadcrumb to add to the trail
344
  */
345
- function &add(bcn_breadcrumb $object)
346
  {
347
- $this->trail[] = $object;
348
  //Return the just added object
349
- return $this->trail[count($this->trail) - 1];
350
  }
351
  /**
352
  * A Breadcrumb Trail Filling Function
353
  *
354
  * This functions fills a breadcrumb for a search page.
355
  */
356
- function do_search()
357
  {
358
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
359
  $breadcrumb = $this->add(new bcn_breadcrumb(get_search_query(), $this->opt['Hsearch_template_no_anchor'], array('search', 'current-item')));
@@ -363,7 +173,7 @@ class bcn_breadcrumb_trail
363
  //Since we are paged and are linking the root breadcrumb, time to change to the regular template
364
  $breadcrumb->set_template($this->opt['Hsearch_template']);
365
  //Figure out the hyperlink for the anchor
366
- $url = get_option('home') . '?s=' . str_replace(' ', '+', get_search_query());
367
  //Figure out the anchor for the search
368
  $breadcrumb->set_url($url);
369
  }
@@ -373,7 +183,7 @@ class bcn_breadcrumb_trail
373
  *
374
  * This functions fills a breadcrumb for an author page.
375
  */
376
- function do_author()
377
  {
378
  global $author;
379
  //Get the Author name, note it is an object
@@ -407,7 +217,7 @@ class bcn_breadcrumb_trail
407
  *
408
  * TODO: Add logic for contextual taxonomy selection
409
  */
410
- function post_hierarchy($id, $type, $parent = NULL)
411
  {
412
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
413
  if($this->opt['bpost_' . $type . '_taxonomy_display'])
@@ -474,7 +284,7 @@ class bcn_breadcrumb_trail
474
  * TODO Need to implement this cleaner, fix up the entire tag_ thing, as this is now generic
475
  * TODO This still needs to be updated to the new method of adding breadcrumbs to the trail
476
  */
477
- function post_terms($id, $taxonomy)
478
  {
479
  //Fills a temporary object with the terms for the post
480
  $bcn_object = get_the_terms($id, $taxonomy);
@@ -482,9 +292,9 @@ class bcn_breadcrumb_trail
482
  if(is_array($bcn_object))
483
  {
484
  //Add new breadcrumb to the trail
485
- $this->trail[] = new bcn_breadcrumb();
486
  //Figure out where we placed the crumb, make a nice pointer to it
487
- $bcn_breadcrumb = &$this->trail[count($this->trail) - 1];
488
  $is_first = true;
489
  //Loop through all of the term results
490
  foreach($bcn_object as $term)
@@ -511,13 +321,12 @@ class bcn_breadcrumb_trail
511
  * @param string $taxonomy The name of the taxonomy that the term belongs to
512
  * @TODO Evaluate if we need to do tax_ for a prefix
513
  */
514
- function term_parents($id, $taxonomy)
515
  {
516
- global $post;
517
  //Get the current category object, filter applied within this call
518
  $term = get_term($id, $taxonomy);
519
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
520
- $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $taxonomy . '_template'], array($taxonomy), get_term_link($term, $taxonomy), $id));
521
  //Make sure the id is valid, and that we won't end up spinning in a loop
522
  if($term->parent && $term->parent != $id)
523
  {
@@ -532,12 +341,12 @@ class bcn_breadcrumb_trail
532
  * @param int $id The id of the parent page.
533
  * @param int $frontpage The id of the front page.
534
  */
535
- function post_parents($id, $frontpage)
536
  {
537
  //Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
538
  $parent = get_post($id);
539
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
540
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($id), $this->opt['Hpost_' . $parent->post_type . '_template'], array($parent->post_type), get_permalink($id), $id));
541
  //Make sure the id is valid, and that we won't end up spinning in a loop
542
  if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
543
  {
@@ -549,13 +358,12 @@ class bcn_breadcrumb_trail
549
  * A Breadcrumb Trail Filling Function
550
  *
551
  * This functions fills a breadcrumb for posts
552
- *
553
  */
554
- function do_post()
555
  {
556
  global $post, $page;
557
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, template, and type
558
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_' . $post->post_type . '_template_no_anchor'], array('post-' . $post->post_type, 'current-item'), NULL, $post->ID));
559
  //If the current item is to be linked, or this is a paged post, add in links
560
  if($this->opt['bcurrent_item_linked'] || ($page > 1 && $this->opt['bpaged_display']))
561
  {
@@ -589,11 +397,11 @@ class bcn_breadcrumb_trail
589
  *
590
  * @TODO Evaluate if this can be merged in with the do_post function
591
  */
592
- function do_attachment()
593
  {
594
  global $post;
595
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
596
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_attachment_template_no_anchor'], array('post-attachment', 'current-item'), NULL, $post->ID));
597
  if($this->opt['bcurrent_item_linked'])
598
  {
599
  //Change the template over to the normal, linked one
@@ -633,13 +441,13 @@ class bcn_breadcrumb_trail
633
  * This function fills a breadcrumb for any taxonomy archive, was previously two separate functions
634
  *
635
  */
636
- function do_archive_by_term()
637
  {
638
  global $wp_query;
639
  //Simmilar to using $post, but for things $post doesn't cover
640
  $term = $wp_query->get_queried_object();
641
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
642
- $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $term->taxonomy . '_template_no_anchor'], array($term->taxonomy, 'current-item'), NULL, $term->term_id));
643
  //If we're paged, let's link to the first page
644
  if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
645
  {
@@ -659,14 +467,14 @@ class bcn_breadcrumb_trail
659
  * This functions fills a breadcrumb for a date archive.
660
  *
661
  */
662
- function do_archive_by_date()
663
  {
664
  global $wp_query;
665
  //First deal with the day breadcrumb
666
  if(is_day() || is_single())
667
  {
668
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
669
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('d'), $this->opt['Hdate_template_no_anchor'], array('date-day')));
670
  //If this is a day archive, add current-item type
671
  if(is_day())
672
  {
@@ -685,7 +493,7 @@ class bcn_breadcrumb_trail
685
  if(is_month() || is_day() || is_single())
686
  {
687
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
688
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('F'), $this->opt['Hdate_template_no_anchor'], array('date-month')));
689
  //If this is a month archive, add current-item type
690
  if(is_month())
691
  {
@@ -701,7 +509,7 @@ class bcn_breadcrumb_trail
701
  }
702
  }
703
  //Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
704
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('Y'), $this->opt['Hdate_template_no_anchor'], array('date-year')));
705
  //If this is a year archive, add current-item type
706
  if(is_year())
707
  {
@@ -721,10 +529,10 @@ class bcn_breadcrumb_trail
721
  *
722
  * This functions fills a breadcrumb for a post type archive (WP 3.1 feature)
723
  */
724
- function do_archive_by_post_type()
725
  {
726
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
727
- $breadcrumb = $this->add(new bcn_breadcrumb(post_type_archive_title('', false), $this->opt['Hpost_' . get_post_type() . '_template_no_anchor'], array('post-' . get_post_type() . '-archive', 'current-item')));
728
  if($this->opt['bcurrent_item_linked'] || is_paged() && $this->opt['bpaged_display'])
729
  {
730
  $breadcrumb->set_template($this->opt['Hpost_' . get_post_type() . '_template']);
@@ -737,7 +545,7 @@ class bcn_breadcrumb_trail
737
  *
738
  * This functions fills a breadcrumb for the front page.
739
  */
740
- function do_front_page()
741
  {
742
  global $post, $current_site;
743
  //Get the site name
@@ -765,7 +573,7 @@ class bcn_breadcrumb_trail
765
  *
766
  * This functions fills a breadcrumb for the home page.
767
  */
768
- function do_home()
769
  {
770
  global $post, $current_site;
771
  //On everything else we need to link, but no current item (pre/suf)fixes
@@ -791,7 +599,7 @@ class bcn_breadcrumb_trail
791
  * @param object $object the post or taxonomy object used to attempt to find the title
792
  * @return string the title
793
  */
794
- function post_type_archive_title($object)
795
  {
796
  if(isset($object->labels->name))
797
  {
@@ -806,7 +614,7 @@ class bcn_breadcrumb_trail
806
  * @param string $post_type the name of the post type
807
  * @return bool
808
  */
809
- function is_builtin($post_type)
810
  {
811
  $type = get_post_type_object($post_type);
812
  return $type->_builtin;
@@ -817,7 +625,7 @@ class bcn_breadcrumb_trail
817
  * @param string $post_type the name of the post type
818
  * @return bool
819
  */
820
- function has_archive($post_type)
821
  {
822
  $type = get_post_type_object($post_type);
823
  return $type->has_archive;
@@ -829,7 +637,7 @@ class bcn_breadcrumb_trail
829
  * @param string $type_str The type string variable, passed by reference
830
  * @param int $root_id The ID for the post type root
831
  */
832
- function find_type($type, &$type_str, &$root_id)
833
  {
834
  global $wp_taxonomies;
835
  //We need to do special things for custom post types
@@ -877,7 +685,7 @@ class bcn_breadcrumb_trail
877
  *
878
  * TODO: this still needs to be cleaned up
879
  */
880
- function do_root()
881
  {
882
  global $post, $wp_query, $wp_taxonomies, $current_site;
883
  //If this is an attachment then we need to change the queried object to the parent post
@@ -897,14 +705,14 @@ class bcn_breadcrumb_trail
897
  if(isset($type->post_type) && !$this->is_builtin($type->post_type) && $this->opt['bpost_' . $type->post_type . '_archive_display'] && $this->has_archive($type->post_type))
898
  {
899
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
900
- $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($type->post_type)), $this->opt['Hpost_' . $type->post_type . '_template'], array('post-' . $type->post_type . '-archive'), get_post_type_archive_link($type->post_type)));
901
  }
902
  else if(isset($type->taxonomy) && !$this->is_builtin($wp_taxonomies[$type->taxonomy]->object_type[0]) && $this->opt['bpost_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_archive_display'] && $this->has_archive($wp_taxonomies[$type->taxonomy]->object_type[0]))
903
  {
904
  //We end up using the post type in several places, give it a variable
905
  $post_type = $wp_taxonomies[$type->taxonomy]->object_type[0];
906
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
907
- $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($post_type)), $this->opt['Hpost_' . $post_type . '_template'], array('post-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
908
  }
909
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
910
  if($root_id > 1 || $this->opt['bblog_display'] && get_option('show_on_front') == 'page' && (is_home() || is_single() || is_tax() || is_category() || is_tag() || is_date()))
@@ -919,7 +727,7 @@ class bcn_breadcrumb_trail
919
  if($root_id && $root_id != $frontpage_id)
920
  {
921
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
922
- $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($root_id), $this->opt['Hpost_' . $type_str . '_template_no_anchor'], array($type_str . '-root', 'post-' . $type_str)));
923
  //If we are at home, then we need to add the current item type
924
  if(is_home())
925
  {
@@ -948,17 +756,17 @@ class bcn_breadcrumb_trail
948
  *
949
  * This functions fills a breadcrumb for 404 pages.
950
  */
951
- function do_404()
952
  {
953
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
954
- $this->trail[] = new bcn_breadcrumb($this->opt['S404_title'], $this->opt['H404_template'], array('404', 'current-item'));
955
  }
956
  /**
957
  * A Breadcrumb Trail Filling Function
958
  *
959
  * This functions fills a breadcrumb for paged pages.
960
  */
961
- function do_paged()
962
  {
963
  global $paged, $page;
964
  //Need to switch between paged and page for archives and singular (posts)
@@ -971,18 +779,18 @@ class bcn_breadcrumb_trail
971
  $page_number = $page;
972
  }
973
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
974
- $this->trail[] = new bcn_breadcrumb($page_number, $this->opt['Hpaged_template'], array('paged'));
975
  }
976
  /**
977
  * Breadcrumb Trail Filling Function
978
  *
979
  * This functions fills the breadcrumb trail.
980
  */
981
- function fill()
982
  {
983
  global $wpdb, $post, $wp_query, $paged, $page;
984
  //Check to see if the trail is already populated
985
- if(count($this->trail) > 0)
986
  {
987
  //Exit early since we have breadcrumbs in the trail
988
  return NULL;
@@ -1067,17 +875,17 @@ class bcn_breadcrumb_trail
1067
  *
1068
  * @param bool $reverse[optional] Whether to reverse the trail or not.
1069
  */
1070
- function order($reverse = false)
1071
  {
1072
  if($reverse)
1073
  {
1074
  //Since there may be multiple calls our trail may be in a non-standard order
1075
- ksort($this->trail);
1076
  }
1077
  else
1078
  {
1079
  //For normal opperation we must reverse the array by key
1080
- krsort($this->trail);
1081
  }
1082
  }
1083
  /**
@@ -1089,14 +897,14 @@ class bcn_breadcrumb_trail
1089
  * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
1090
  * @param bool $reverse[optional] Whether to reverse the output or not.
1091
  */
1092
- function display($return = false, $linked = true, $reverse = false)
1093
  {
1094
  //Set trail order based on reverse flag
1095
  $this->order($reverse);
1096
  //Initilize the string which will hold the assembled trail
1097
  $trail_str = '';
1098
  //The main compiling loop
1099
- foreach($this->trail as $key => $breadcrumb)
1100
  {
1101
  //Must branch if we are reversing the output or not
1102
  if($reverse)
@@ -1110,7 +918,7 @@ class bcn_breadcrumb_trail
1110
  else
1111
  {
1112
  //Only show the separator when necessary
1113
- if($key < count($this->trail) - 1)
1114
  {
1115
  $trail_str .= $this->opt['hseparator'];
1116
  }
@@ -1147,32 +955,39 @@ class bcn_breadcrumb_trail
1147
  *
1148
  * TODO: Can probably write this one in a smarter way now
1149
  */
1150
- function display_list($return = false, $linked = true, $reverse = false)
1151
  {
1152
  //Set trail order based on reverse flag
1153
  $this->order($reverse);
1154
  //Initilize the string which will hold the assembled trail
1155
  $trail_str = '';
1156
  //The main compiling loop
1157
- foreach($this->trail as $key => $breadcrumb)
1158
  {
1159
  $trail_str .= '<li';
 
1160
  //On the first run we need to add in a class for the home breadcrumb
1161
  if($trail_str === '<li')
1162
  {
1163
  $trail_str .= ' class="home';
 
1164
  if($key === 0)
1165
  {
1166
  $trail_str .= ' current_item';
 
1167
  }
1168
  $trail_str .= '"';
 
1169
  }
1170
  //If we are on the current item there are some things that must be done
1171
  else if($key === 0)
1172
  {
1173
  //Add in a class for current_item
1174
  $trail_str .= ' class="current_item"';
 
1175
  }
 
 
1176
  //Trim titles, if needed
1177
  if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
1178
  {
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
  require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  //The trail class
21
  class bcn_breadcrumb_trail
22
  {
23
  //Our member variables
24
+ private $version = '5.0.0';
25
  //An array of breadcrumbs
26
+ public $breadcrumbs = array();
27
  public $trail = array();
28
  //The options
29
  public $opt;
30
  //Default constructor
31
+ public function __construct()
32
  {
33
  global $l10n;
34
  // the global and the check might become obsolete in
38
  {
39
  load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
40
  }
41
+ $this->trail = &$this->breadcrumbs;
42
  //Load the translation domain as the next part needs it
43
  //load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
44
  //Initilize with default option values
46
  //Should the mainsite be shown
47
  'bmainsite_display' => true,
48
  //The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
49
+ 'Hmainsite_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
50
  //The breadcrumb template for the main site, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
51
  'Hmainsite_template_no_anchor' => '%htitle%',
52
  //Should the home page be shown
53
  'bhome_display' => true,
54
  //The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
55
+ 'Hhome_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
56
  //The breadcrumb template for the home page, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
57
  'Hhome_template_no_anchor' => '%htitle%',
58
  //Should the blog page be shown globally
59
  'bblog_display' => true,
60
  //The breadcrumb template for the blog page only in static front page mode, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
61
+ 'Hblog_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
62
  //The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
63
  'Hblog_template_no_anchor' => '%htitle%',
64
  //Separator that is placed between each item in the breadcrumb trial, but not placed before
72
  'bcurrent_item_linked' => false,
73
  //Static page options
74
  //The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
75
+ 'Hpost_page_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
76
  //The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
77
  'Hpost_page_template_no_anchor' => '%htitle%',
78
  //Just a link to the page on front property
84
  'bpaged_display' => false,
85
  //The post options previously singleblogpost
86
  //The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
87
+ 'Hpost_post_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
88
  //The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
89
  'Hpost_post_template_no_anchor' => '%htitle%',
90
  //Just a link for the page for posts
96
  //Attachment settings
97
  //TODO: Need to move attachments to support via normal post handlers
98
  //The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
99
+ 'Hpost_attachment_template' => __('<a title="Go to %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
100
  //The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
101
  'Hpost_attachment_template_no_anchor' => '%htitle%',
102
  //404 page settings
106
  'S404_title' => __('404', 'breadcrumb-navxt'),
107
  //Search page options
108
  //The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
109
+ 'Hsearch_template' => __('Search results for &#39;<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>&#39;', 'breadcrumb-navxt'),
110
  //The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
111
  'Hsearch_template_no_anchor' => __('Search results for &#39;%htitle%&#39;', 'breadcrumb-navxt'),
112
  //Tag related stuff
113
  //The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
114
+ 'Hpost_tag_template' => __('<a title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
115
  //The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
116
  'Hpost_tag_template_no_anchor' => '%htitle%',
117
  //Post format related stuff
118
  //The breadcrumb template for post format breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
119
+ 'Hpost_format_template' => __('<a title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
120
  //The breadcrumb template for post format breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
121
  'Hpost_format_template_no_anchor' => '%htitle%',
122
  //Author page stuff
123
  //The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
124
+ 'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
125
  //The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
126
  'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
127
  //Which of the various WordPress display types should the author breadcrumb display
128
  'Sauthor_name' => 'display_name',
129
  //Category stuff
130
  //The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
131
+ 'Hcategory_template' => __('<a title="Go to the %title% category archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
132
  //The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
133
  'Hcategory_template_no_anchor' => '%htitle%',
134
  //The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
135
+ 'Hdate_template' => __('<a title="Go to the %title% archives." href="%link%" class="%type%">%htitle%</a>', 'breadcrumb-navxt'),
136
  //The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
137
  'Hdate_template_no_anchor' => '%htitle%'
138
  );
152
  * @return pointer to the just added Breadcrumb
153
  * @param bcn_breadcrumb $object Breadcrumb to add to the trail
154
  */
155
+ public function &add(bcn_breadcrumb $object)
156
  {
157
+ $this->breadcrumbs[] = $object;
158
  //Return the just added object
159
+ return $this->breadcrumbs[count($this->breadcrumbs) - 1];
160
  }
161
  /**
162
  * A Breadcrumb Trail Filling Function
163
  *
164
  * This functions fills a breadcrumb for a search page.
165
  */
166
+ protected function do_search()
167
  {
168
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
169
  $breadcrumb = $this->add(new bcn_breadcrumb(get_search_query(), $this->opt['Hsearch_template_no_anchor'], array('search', 'current-item')));
173
  //Since we are paged and are linking the root breadcrumb, time to change to the regular template
174
  $breadcrumb->set_template($this->opt['Hsearch_template']);
175
  //Figure out the hyperlink for the anchor
176
+ $url = home_url('?s=' . str_replace(' ', '+', get_search_query()));
177
  //Figure out the anchor for the search
178
  $breadcrumb->set_url($url);
179
  }
183
  *
184
  * This functions fills a breadcrumb for an author page.
185
  */
186
+ protected function do_author()
187
  {
188
  global $author;
189
  //Get the Author name, note it is an object
217
  *
218
  * TODO: Add logic for contextual taxonomy selection
219
  */
220
+ protected function post_hierarchy($id, $type, $parent = NULL)
221
  {
222
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
223
  if($this->opt['bpost_' . $type . '_taxonomy_display'])
284
  * TODO Need to implement this cleaner, fix up the entire tag_ thing, as this is now generic
285
  * TODO This still needs to be updated to the new method of adding breadcrumbs to the trail
286
  */
287
+ protected function post_terms($id, $taxonomy)
288
  {
289
  //Fills a temporary object with the terms for the post
290
  $bcn_object = get_the_terms($id, $taxonomy);
292
  if(is_array($bcn_object))
293
  {
294
  //Add new breadcrumb to the trail
295
+ $this->breadcrumbs[] = new bcn_breadcrumb();
296
  //Figure out where we placed the crumb, make a nice pointer to it
297
+ $bcn_breadcrumb = &$this->breadcrumbs[count($this->breadcrumbs) - 1];
298
  $is_first = true;
299
  //Loop through all of the term results
300
  foreach($bcn_object as $term)
321
  * @param string $taxonomy The name of the taxonomy that the term belongs to
322
  * @TODO Evaluate if we need to do tax_ for a prefix
323
  */
324
+ protected function term_parents($id, $taxonomy)
325
  {
 
326
  //Get the current category object, filter applied within this call
327
  $term = get_term($id, $taxonomy);
328
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
329
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $taxonomy . '_template'], array('taxonomy', $taxonomy), get_term_link($term, $taxonomy), $id));
330
  //Make sure the id is valid, and that we won't end up spinning in a loop
331
  if($term->parent && $term->parent != $id)
332
  {
341
  * @param int $id The id of the parent page.
342
  * @param int $frontpage The id of the front page.
343
  */
344
+ protected function post_parents($id, $frontpage)
345
  {
346
  //Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
347
  $parent = get_post($id);
348
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
349
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($id), $this->opt['Hpost_' . $parent->post_type . '_template'], array('post', 'post-' . $parent->post_type), get_permalink($id), $id));
350
  //Make sure the id is valid, and that we won't end up spinning in a loop
351
  if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
352
  {
358
  * A Breadcrumb Trail Filling Function
359
  *
360
  * This functions fills a breadcrumb for posts
 
361
  */
362
+ protected function do_post()
363
  {
364
  global $post, $page;
365
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, template, and type
366
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_' . $post->post_type . '_template_no_anchor'], array('post', 'post-' . $post->post_type, 'current-item'), NULL, $post->ID));
367
  //If the current item is to be linked, or this is a paged post, add in links
368
  if($this->opt['bcurrent_item_linked'] || ($page > 1 && $this->opt['bpaged_display']))
369
  {
397
  *
398
  * @TODO Evaluate if this can be merged in with the do_post function
399
  */
400
+ protected function do_attachment()
401
  {
402
  global $post;
403
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
404
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_attachment_template_no_anchor'], array('post', 'post-attachment', 'current-item'), NULL, $post->ID));
405
  if($this->opt['bcurrent_item_linked'])
406
  {
407
  //Change the template over to the normal, linked one
441
  * This function fills a breadcrumb for any taxonomy archive, was previously two separate functions
442
  *
443
  */
444
+ protected function do_archive_by_term()
445
  {
446
  global $wp_query;
447
  //Simmilar to using $post, but for things $post doesn't cover
448
  $term = $wp_query->get_queried_object();
449
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
450
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $term->taxonomy . '_template_no_anchor'], array('archive', 'taxonomy', $term->taxonomy, 'current-item'), NULL, $term->term_id));
451
  //If we're paged, let's link to the first page
452
  if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
453
  {
467
  * This functions fills a breadcrumb for a date archive.
468
  *
469
  */
470
+ protected function do_archive_by_date()
471
  {
472
  global $wp_query;
473
  //First deal with the day breadcrumb
474
  if(is_day() || is_single())
475
  {
476
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
477
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('d'), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-day')));
478
  //If this is a day archive, add current-item type
479
  if(is_day())
480
  {
493
  if(is_month() || is_day() || is_single())
494
  {
495
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
496
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('F'), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-month')));
497
  //If this is a month archive, add current-item type
498
  if(is_month())
499
  {
509
  }
510
  }
511
  //Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
512
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('Y'), $this->opt['Hdate_template_no_anchor'], array('archive', 'date-year')));
513
  //If this is a year archive, add current-item type
514
  if(is_year())
515
  {
529
  *
530
  * This functions fills a breadcrumb for a post type archive (WP 3.1 feature)
531
  */
532
+ protected function do_archive_by_post_type()
533
  {
534
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
535
+ $breadcrumb = $this->add(new bcn_breadcrumb(post_type_archive_title('', false), $this->opt['Hpost_' . get_post_type() . '_template_no_anchor'], array('archive', 'post-' . get_post_type() . '-archive', 'current-item')));
536
  if($this->opt['bcurrent_item_linked'] || is_paged() && $this->opt['bpaged_display'])
537
  {
538
  $breadcrumb->set_template($this->opt['Hpost_' . get_post_type() . '_template']);
545
  *
546
  * This functions fills a breadcrumb for the front page.
547
  */
548
+ protected function do_front_page()
549
  {
550
  global $post, $current_site;
551
  //Get the site name
573
  *
574
  * This functions fills a breadcrumb for the home page.
575
  */
576
+ protected function do_home()
577
  {
578
  global $post, $current_site;
579
  //On everything else we need to link, but no current item (pre/suf)fixes
599
  * @param object $object the post or taxonomy object used to attempt to find the title
600
  * @return string the title
601
  */
602
+ protected function post_type_archive_title($object)
603
  {
604
  if(isset($object->labels->name))
605
  {
614
  * @param string $post_type the name of the post type
615
  * @return bool
616
  */
617
+ protected function is_builtin($post_type)
618
  {
619
  $type = get_post_type_object($post_type);
620
  return $type->_builtin;
625
  * @param string $post_type the name of the post type
626
  * @return bool
627
  */
628
+ protected function has_archive($post_type)
629
  {
630
  $type = get_post_type_object($post_type);
631
  return $type->has_archive;
637
  * @param string $type_str The type string variable, passed by reference
638
  * @param int $root_id The ID for the post type root
639
  */
640
+ protected function find_type($type, &$type_str, &$root_id)
641
  {
642
  global $wp_taxonomies;
643
  //We need to do special things for custom post types
685
  *
686
  * TODO: this still needs to be cleaned up
687
  */
688
+ protected function do_root()
689
  {
690
  global $post, $wp_query, $wp_taxonomies, $current_site;
691
  //If this is an attachment then we need to change the queried object to the parent post
705
  if(isset($type->post_type) && !$this->is_builtin($type->post_type) && $this->opt['bpost_' . $type->post_type . '_archive_display'] && $this->has_archive($type->post_type))
706
  {
707
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
708
+ $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($type->post_type)), $this->opt['Hpost_' . $type->post_type . '_template'], array('post', 'post-' . $type->post_type . '-archive'), get_post_type_archive_link($type->post_type)));
709
  }
710
  else if(isset($type->taxonomy) && !$this->is_builtin($wp_taxonomies[$type->taxonomy]->object_type[0]) && $this->opt['bpost_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_archive_display'] && $this->has_archive($wp_taxonomies[$type->taxonomy]->object_type[0]))
711
  {
712
  //We end up using the post type in several places, give it a variable
713
  $post_type = $wp_taxonomies[$type->taxonomy]->object_type[0];
714
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
715
+ $breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($post_type)), $this->opt['Hpost_' . $post_type . '_template'], array('post', 'post-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
716
  }
717
  //We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
718
  if($root_id > 1 || $this->opt['bblog_display'] && get_option('show_on_front') == 'page' && (is_home() || is_single() || is_tax() || is_category() || is_tag() || is_date()))
727
  if($root_id && $root_id != $frontpage_id)
728
  {
729
  //Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
730
+ $breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($root_id), $this->opt['Hpost_' . $type_str . '_template_no_anchor'], array($type_str . '-root', 'post', 'post-' . $type_str)));
731
  //If we are at home, then we need to add the current item type
732
  if(is_home())
733
  {
756
  *
757
  * This functions fills a breadcrumb for 404 pages.
758
  */
759
+ protected function do_404()
760
  {
761
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
762
+ $this->breadcrumbs[] = new bcn_breadcrumb($this->opt['S404_title'], $this->opt['H404_template'], array('404', 'current-item'));
763
  }
764
  /**
765
  * A Breadcrumb Trail Filling Function
766
  *
767
  * This functions fills a breadcrumb for paged pages.
768
  */
769
+ protected function do_paged()
770
  {
771
  global $paged, $page;
772
  //Need to switch between paged and page for archives and singular (posts)
779
  $page_number = $page;
780
  }
781
  //Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
782
+ $this->breadcrumbs[] = new bcn_breadcrumb($page_number, $this->opt['Hpaged_template'], array('paged'));
783
  }
784
  /**
785
  * Breadcrumb Trail Filling Function
786
  *
787
  * This functions fills the breadcrumb trail.
788
  */
789
+ public function fill()
790
  {
791
  global $wpdb, $post, $wp_query, $paged, $page;
792
  //Check to see if the trail is already populated
793
+ if(count($this->breadcrumbs) > 0)
794
  {
795
  //Exit early since we have breadcrumbs in the trail
796
  return NULL;
875
  *
876
  * @param bool $reverse[optional] Whether to reverse the trail or not.
877
  */
878
+ protected function order($reverse = false)
879
  {
880
  if($reverse)
881
  {
882
  //Since there may be multiple calls our trail may be in a non-standard order
883
+ ksort($this->breadcrumbs);
884
  }
885
  else
886
  {
887
  //For normal opperation we must reverse the array by key
888
+ krsort($this->breadcrumbs);
889
  }
890
  }
891
  /**
897
  * @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
898
  * @param bool $reverse[optional] Whether to reverse the output or not.
899
  */
900
+ public function display($return = false, $linked = true, $reverse = false)
901
  {
902
  //Set trail order based on reverse flag
903
  $this->order($reverse);
904
  //Initilize the string which will hold the assembled trail
905
  $trail_str = '';
906
  //The main compiling loop
907
+ foreach($this->breadcrumbs as $key => $breadcrumb)
908
  {
909
  //Must branch if we are reversing the output or not
910
  if($reverse)
918
  else
919
  {
920
  //Only show the separator when necessary
921
+ if($key < count($this->breadcrumbs) - 1)
922
  {
923
  $trail_str .= $this->opt['hseparator'];
924
  }
955
  *
956
  * TODO: Can probably write this one in a smarter way now
957
  */
958
+ public function display_list($return = false, $linked = true, $reverse = false)
959
  {
960
  //Set trail order based on reverse flag
961
  $this->order($reverse);
962
  //Initilize the string which will hold the assembled trail
963
  $trail_str = '';
964
  //The main compiling loop
965
+ foreach($this->breadcrumbs as $key => $breadcrumb)
966
  {
967
  $trail_str .= '<li';
968
+ $li_class = '';
969
  //On the first run we need to add in a class for the home breadcrumb
970
  if($trail_str === '<li')
971
  {
972
  $trail_str .= ' class="home';
973
+ $li_class .= ' class="home';
974
  if($key === 0)
975
  {
976
  $trail_str .= ' current_item';
977
+ $li_class .= ' current_item';
978
  }
979
  $trail_str .= '"';
980
+ $li_class .= '"';
981
  }
982
  //If we are on the current item there are some things that must be done
983
  else if($key === 0)
984
  {
985
  //Add in a class for current_item
986
  $trail_str .= ' class="current_item"';
987
+ $li_class .= ' class="current_item"';
988
  }
989
+ //Filter li_attributes adding attributes to the li element
990
+ $trail_str .= apply_filters('bcn_li_attributes', $li_class, $breadcrumb->type, $breadcrumb->get_id());
991
  //Trim titles, if needed
992
  if($this->opt['blimit_title'] && $this->opt['amax_title_length'] > 0)
993
  {
class.bcn_network_admin.php ADDED
@@ -0,0 +1,663 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* Copyright 2007-2013 John Havlik (email : mtekkmonkey@gmail.com)
3
+
4
+ This program is free software; you can redistribute it and/or modify
5
+ it under the terms of the GNU General Public License as published by
6
+ the Free Software Foundation; either version 2 of the License, or
7
+ (at your option) any later version.
8
+
9
+ This program is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ GNU General Public License for more details.
13
+
14
+ You should have received a copy of the GNU General Public License
15
+ along with this program; if not, write to the Free Software
16
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+ */
18
+ require_once(dirname(__FILE__) . '/includes/block_direct_access.php');
19
+ //Do a PHP version check, require 5.2 or newer
20
+ if(version_compare(phpversion(), '5.2.0', '<'))
21
+ {
22
+ //Only purpose of this function is to echo out the PHP version error
23
+ function bcn_phpold()
24
+ {
25
+ printf('<div class="error"><p>' . __('Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s', 'breadcrumb-navxt') . '</p></div>', phpversion(), '5.2.0');
26
+ }
27
+ //If we are in the admin, let's print a warning then return
28
+ if(is_admin())
29
+ {
30
+ add_action('admin_notices', 'bcn_phpold');
31
+ }
32
+ return;
33
+ }
34
+ //Include admin base class
35
+ if(!class_exists('mtekk_adminKit'))
36
+ {
37
+ require_once(dirname(__FILE__) . '/includes/class.mtekk_adminkit.php');
38
+ }
39
+ /**
40
+ * The administrative interface class
41
+ *
42
+ */
43
+ class bcn_network_admin extends mtekk_adminKit
44
+ {
45
+ protected $version = '5.0.0';
46
+ protected $full_name = 'Breadcrumb NavXT Network Settings';
47
+ protected $short_name = 'Breadcrumb NavXT';
48
+ protected $access_level = 'manage_network_options';
49
+ protected $identifier = 'breadcrumb-navxt';
50
+ protected $unique_prefix = 'bcn';
51
+ protected $plugin_basename = null;
52
+ protected $support_url = 'http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-';
53
+ protected $breadcrumb_trail = null;
54
+ /**
55
+ * Administrative interface class default constructor
56
+ * @param bcn_breadcrumb_trail $breadcrumb_trail a breadcrumb trail object
57
+ * @param string $basename The basename of the plugin
58
+ */
59
+ function __construct(bcn_breadcrumb_trail $breadcrumb_trail, $basename)
60
+ {
61
+ $this->breadcrumb_trail = $breadcrumb_trail;
62
+ $this->plugin_basename = $basename;
63
+ //Grab defaults from the breadcrumb_trail object
64
+ $this->opt = $this->breadcrumb_trail->opt;
65
+ add_action('network_admin_menu', array($this, 'add_page'));
66
+ //We're going to make sure we load the parent's constructor
67
+ parent::__construct();
68
+ }
69
+ /**
70
+ * admin initialization callback function
71
+ *
72
+ * is bound to wpordpress action 'admin_init' on instantiation
73
+ *
74
+ * @since 3.2.0
75
+ * @return void
76
+ */
77
+ function init()
78
+ {
79
+ //We're going to make sure we run the parent's version of this function as well
80
+ parent::init();
81
+ }
82
+ function wp_loaded()
83
+ {
84
+ parent::wp_loaded();
85
+ breadcrumb_navxt::setup_options($this->opt);
86
+ }
87
+ /**
88
+ * Return the URL of the settings page for the plugin
89
+ */
90
+ function admin_url()
91
+ {
92
+ return admin_url('network/settings.php?page=' . $this->identifier);
93
+ }
94
+ /**
95
+ * Adds the adminpage the menu and the nice little settings link
96
+ */
97
+ function add_page()
98
+ {
99
+ //Add the submenu page to "settings" menu
100
+ $hookname = add_submenu_page('settings.php', __($this->full_name, $this->identifier), $this->short_name, $this->access_level, $this->identifier, array($this, 'net_admin_page'));
101
+ // check capability of user to manage options (access control)
102
+ if(current_user_can($this->access_level))
103
+ {
104
+ //Register admin_head-$hookname callback
105
+ add_action('admin_head-' . $hookname, array($this, 'admin_head'));
106
+ //Register admin_print_styles-$hookname callback
107
+ add_action('admin_print_styles-' . $hookname, array($this, 'admin_styles'));
108
+ //Register admin_print_scripts-$hookname callback
109
+ add_action('admin_print_scripts-' . $hookname, array($this, 'admin_scripts'));
110
+ //Register Help Output
111
+ add_action('load-' . $hookname, array($this, 'help'));
112
+ }
113
+ }
114
+ /**
115
+ * Have to hook into get_option and replace with network wide alternate
116
+ *
117
+ * @param string $option The name of the option to retrieve
118
+ * @return mixed The value of the option
119
+ */
120
+ function get_option($option)
121
+ {
122
+ return get_site_option($option);
123
+ }
124
+ /**
125
+ * Have to hook into update_option and replace with network wide alternate
126
+ *
127
+ * @param string $option The name of the option to update
128
+ * @param mixed $newvalue The new value to set the option to
129
+ *
130
+ */
131
+ function update_option($option, $newvalue)
132
+ {
133
+ return update_site_option($option, $newvalue);
134
+ }
135
+ /**
136
+ * Have to hook into add_option and replace with network wide alternate
137
+ *
138
+ * @param string $option The name of the option to update
139
+ * @param mixed $value The new value to set the option to
140
+ * @param null $deprecated Deprecated parameter
141
+ * @param string $autoload Whether or not to autoload the option, it's a string because WP is special
142
+ *
143
+ */
144
+ function add_option($option, $value = '', $deprecated = '', $autoload = 'yes')
145
+ {
146
+ return add_site_option($option, $value);
147
+ }
148
+ /**
149
+ * Have to hook into delete_option and replace with network wide alternate
150
+ *
151
+ * @param string $option The name of the option to delete
152
+ */
153
+ function delete_option($option)
154
+ {
155
+ return delete_site_option($option);
156
+ }
157
+ /**
158
+ * Makes sure the current user can manage options to proceed
159
+ */
160
+ function security()
161
+ {
162
+ //If the user can not manage options we will die on them
163
+ if(!current_user_can($this->access_level))
164
+ {
165
+ wp_die(__('Insufficient privileges to proceed.', 'breadcrumb-navxt'));
166
+ }
167
+ }
168
+ /**
169
+ * Upgrades input options array, sets to $this->opt
170
+ *
171
+ * @param array $opts
172
+ * @param string $version the version of the passed in options
173
+ */
174
+ function opts_upgrade($opts, $version)
175
+ {
176
+ global $wp_post_types;
177
+ //If our version is not the same as in the db, time to update
178
+ if(version_compare($version, $this->version, '<'))
179
+ {
180
+ //Upgrading to 3.8.1
181
+ if(version_compare($version, '3.8.1', '<'))
182
+ {
183
+ $opts['post_page_root'] = get_option('page_on_front');
184
+ $opts['post_post_root'] = get_option('page_for_posts');
185
+ }
186
+ //Upgrading to 4.0
187
+ if(version_compare($version, '4.0.0', '<'))
188
+ {
189
+ //Only migrate if we haven't migrated yet
190
+ if(isset($opts['current_item_linked']))
191
+ {
192
+ //Loop through the old options, migrate some of them
193
+ foreach($opts as $option => $value)
194
+ {
195
+ //Handle all of our boolean options first, they're real easy, just add a 'b'
196
+ if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
197
+ {
198
+ $this->breadcrumb_trail->opt['b' . $option] = $value;
199
+ }
200
+ //Handle migration of anchor templates to the templates
201
+ else if(strpos($option, 'anchor') > 0)
202
+ {
203
+ $parts = explode('_', $option);
204
+ //Do excess slash removal sanitation
205
+ $this->breadcrumb_trail->opt['H' . $parts[0] . '_template'] = $value . '%htitle%</a>';
206
+ }
207
+ //Handle our abs integers
208
+ else if($option == 'max_title_length' || $option == 'post_post_root' || $option == 'post_page_root')
209
+ {
210
+ $this->breadcrumb_trail->opt['a' . $option] = $value;
211
+ }
212
+ //Now everything else, minus prefix and suffix
213
+ else if(strpos($option, 'prefix') === false && strpos($option, 'suffix') === false)
214
+ {
215
+ $this->breadcrumb_trail->opt['S' . $option] = $value;
216
+ }
217
+ }
218
+ }
219
+ //Add in the new settings for CPTs introduced in 4.0
220
+ foreach($wp_post_types as $post_type)
221
+ {
222
+ //We only want custom post types
223
+ if(!$post_type->_builtin)
224
+ {
225
+ //Add in the archive_display option
226
+ $this->breadcrumb_trail->opt['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
227
+ }
228
+ }
229
+ $opts = $this->breadcrumb_trail->opt;
230
+ }
231
+ if(version_compare($version, '4.0.1', '<'))
232
+ {
233
+ if(isset($opts['Hcurrent_item_template_no_anchor']))
234
+ {
235
+ unset($opts['Hcurrent_item_template_no_anchor']);
236
+ }
237
+ if(isset($opts['Hcurrent_item_template']))
238
+ {
239
+ unset($opts['Hcurrent_item_template']);
240
+ }
241
+ }
242
+ //Upgrading to 4.3.0
243
+ if(version_compare($version, '4.3.0', '<'))
244
+ {
245
+ //Removed home_title
246
+ if(isset($opts['Shome_title']))
247
+ {
248
+ unset($opts['Shome_title']);
249
+ }
250
+ //Removed mainsite_title
251
+ if(isset($opts['Smainsite_title']))
252
+ {
253
+ unset($opts['Smainsite_title']);
254
+ }
255
+ }
256
+ //Add custom post types
257
+ breadcrumb_navxt::find_posttypes($this->opt);
258
+ //Add custom taxonomy types
259
+ breadcrumb_navxt::find_taxonomies($this->opt);
260
+ //Save the passed in opts to the object's option array
261
+ $this->opt = $opts;
262
+ }
263
+ }
264
+ function opts_update_prebk(&$opts)
265
+ {
266
+ //Add custom post types
267
+ breadcrumb_navxt::find_posttypes($this->opt);
268
+ //Add custom taxonomy types
269
+ breadcrumb_navxt::find_taxonomies($this->opt);
270
+ }
271
+ /**
272
+ * help action hook function
273
+ *
274
+ * @return string
275
+ *
276
+ */
277
+ function help()
278
+ {
279
+ $screen = get_current_screen();
280
+ //Exit early if the add_help_tab function doesn't exist
281
+ if(!method_exists($screen, 'add_help_tab'))
282
+ {
283
+ return;
284
+ }
285
+ //Add contextual help on current screen
286
+ if($screen->id == 'settings_page_' . $this->identifier)
287
+ {
288
+ $general_tab = '<p>' . __('Tips for the settings are located below select options.', 'breadcrumb-navxt') .
289
+ '</p><h5>' . __('Resources', 'breadcrumb-navxt') . '</h5><ul><li>' .
290
+ sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.", 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT tag archive.', 'breadcrumb-navxt') . '" href="http://mtekk.us/archives/tag/breadcrumb-navxt">', '</a>') . '</li><li>' .
291
+ sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', 'breadcrumb-navxt'), '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb-navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . '</li><li>' .
292
+ 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.', 'breadcrumb-navxt'),'<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>' .
293
+ '<h5>' . __('Giving Back', 'breadcrumb-navxt') . '</h5><ul><li>' .
294
+ sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', 'breadcrumb-navxt'),'<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>' .
295
+ sprintf(__('%sTranslate%s: Is your language not available? Contact John Havlik to get translating.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT translation project.', 'breadcrumb-navxt') . '" href="http://translate.mtekk.us/projects/breadcrumb-navxt">', '</a>') . '</li></ul>';
296
+
297
+ $screen->add_help_tab(
298
+ array(
299
+ 'id' => $this->identifier . '-base',
300
+ 'title' => __('General', 'breadcrumb-navxt'),
301
+ 'content' => $general_tab
302
+ ));
303
+ $quickstart_tab = '<p>' . __('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.', 'breadcrumb-navxt') .
304
+ '</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb-navxt') . '</h5><pre><code>&lt;div class="breadcrumbs"&gt;' . "
305
+ &lt;?php if(function_exists('bcn_display'))
306
+ {
307
+ bcn_display();
308
+ }?&gt;
309
+ &lt;/div&gt;</code></pre>" .
310
+ '<h5>' . __('Breadcrumb trail in list form', 'breadcrumb-navxt').'</h5><pre><code>&lt;ol class="breadcrumbs"&gt;'."
311
+ &lt;?php if(function_exists('bcn_display_list'))
312
+ {
313
+ bcn_display_list();
314
+ }?&gt;
315
+ &lt;/ol&gt;</code></pre>";
316
+ $screen->add_help_tab(
317
+ array(
318
+ 'id' => $this->identifier . '-quick-start',
319
+ 'title' => __('Quick Start', 'breadcrumb-navxt'),
320
+ 'content' => $quickstart_tab
321
+ ));
322
+ $styling_tab = '<p>' . __('Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail.', 'breadcrumb-navxt') . '</p>' .
323
+ '<pre><code>.breadcrumbs
324
+ {
325
+ font-size: 1.1em;
326
+ color: #fff;
327
+ margin: 30px 0 0 10px;
328
+ position: relative;
329
+ float: left;
330
+ }</code></pre>';
331
+ $screen->add_help_tab(
332
+ array(
333
+ 'id' => $this->identifier . '-styling',
334
+ 'title' => __('Styling', 'breadcrumb-navxt'),
335
+ 'content' => $styling_tab
336
+ ));
337
+ $screen->add_help_tab(
338
+ array(
339
+ 'id' => $this->identifier . '-import-export-reset',
340
+ 'title' => __('Import/Export/Reset', 'breadcrumb-navxt'),
341
+ 'content' => $this->import_form()
342
+ ));
343
+ }
344
+ }
345
+ /**
346
+ * enqueue's the tab style sheet on the settings page
347
+ */
348
+ function admin_styles()
349
+ {
350
+ wp_enqueue_style('mtekk_adminkit_tabs');
351
+ }
352
+ /**
353
+ * enqueue's the tab js and translation js on the settings page
354
+ */
355
+ function admin_scripts()
356
+ {
357
+ //Enqueue ui-tabs
358
+ wp_enqueue_script('jquery-ui-tabs');
359
+ //Enqueue the admin tabs javascript
360
+ wp_enqueue_script('mtekk_adminkit_tabs');
361
+ //Load the translations for the tabs
362
+ wp_localize_script('mtekk_adminkit_tabs', 'objectL10n', array(
363
+ 'mtad_uid' => 'bcn_admin',
364
+ 'mtad_import' => __('Import', 'breadcrumb-navxt'),
365
+ 'mtad_export' => __('Export', 'breadcrumb-navxt'),
366
+ 'mtad_reset' => __('Reset', 'breadcrumb-navxt'),
367
+ ));
368
+ }
369
+ /**
370
+ * The administrative page for Breadcrumb NavXT
371
+ */
372
+ function net_admin_page()
373
+ {
374
+ global $wp_taxonomies, $wp_post_types;
375
+ $this->security();
376
+ ?>
377
+ <div class="wrap"><div id="icon-options-general" class="icon32"></div><h2><?php _e('Breadcrumb NavXT Network Settings', 'breadcrumb-navxt'); ?></h2>
378
+ <?php
379
+ //We exit after the version check if there is an action the user needs to take before saving settings
380
+ if(!$this->version_check(get_site_option($this->unique_prefix . '_version')))
381
+ {
382
+ return;
383
+ }
384
+ ?>
385
+ <form action="<?php echo $this->admin_url(); ?>" method="post" id="bcn_admin-options">
386
+ <?php settings_fields('bcn_options');?>
387
+ <div id="hasadmintabs">
388
+ <fieldset id="general" class="bcn_options">
389
+ <h3 class="tab-title" title="<?php _e('A collection of settings most likely to be modified are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('General', 'breadcrumb-navxt'); ?></h3>
390
+ <h3><?php _e('General', 'breadcrumb-navxt'); ?></h3>
391
+ <table class="form-table">
392
+ <?php
393
+ $this->input_text(__('Breadcrumb Separator', 'breadcrumb-navxt'), 'hseparator', 'regular-text', false, __('Placed in between each breadcrumb.', 'breadcrumb-navxt'));
394
+ ?>
395
+ <tr valign="top">
396
+ <th scope="row">
397
+ <?php _e('Title Length', 'breadcrumb-navxt'); ?>
398
+ </th>
399
+ <td>
400
+ <label>
401
+ <input name="bcn_options[blimit_title]" type="checkbox" id="blimit_title" value="true" <?php checked(true, $this->opt['blimit_title']); ?> />
402
+ <?php _e('Limit the length of the breadcrumb title.', 'breadcrumb-navxt'); ?>
403
+ </label><br />
404
+ <ul>
405
+ <li>
406
+ <label for="amax_title_length">
407
+ <?php _e('Max Title Length: ','breadcrumb-navxt');?>
408
+ <input type="number" name="bcn_options[amax_title_length]" id="amax_title_length" min="1" step="1" value="<?php echo esc_html($this->opt['amax_title_length'], ENT_COMPAT, 'UTF-8'); ?>" class="small-text" />
409
+ </label>
410
+ </li>
411
+ </ul>
412
+ </td>
413
+ </tr>
414
+ <?php
415
+ do_action($this->unique_prefix . '_network_settings_general', $this->opt);
416
+ ?>
417
+ </table>
418
+ <h3><?php _e('Current Item', 'breadcrumb-navxt'); ?></h3>
419
+ <table class="form-table">
420
+ <?php
421
+ $this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes', 'breadcrumb-navxt'));
422
+ $this->input_check(__('Paged Breadcrumb', 'breadcrumb-navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb-navxt'));
423
+ $this->input_text(__('Paged Template', 'breadcrumb-navxt'), 'Hpaged_template', 'large-text', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
424
+ do_action($this->unique_prefix . '_network_settings_current_item', $this->opt);
425
+ ?>
426
+ </table>
427
+ <h3><?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?></h3>
428
+ <table class="form-table">
429
+ <?php
430
+ $this->input_check(__('Home Breadcrumb', 'breadcrumb-navxt'), 'bhome_display', __('Place the home breadcrumb in the trail.', 'breadcrumb-navxt'));
431
+ $this->input_text(__('Home Template', 'breadcrumb-navxt'), 'Hhome_template', 'large-text', false, __('The template for the home breadcrumb.', 'breadcrumb-navxt'));
432
+ $this->input_text(__('Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hhome_template_no_anchor', 'large-text', false, __('The template for the home breadcrumb, used when the breadcrumb is not linked.', 'breadcrumb-navxt'));
433
+ do_action($this->unique_prefix . '_network_settings_home', $this->opt);
434
+ ?>
435
+ </table>
436
+ <h3><?php _e('Blog Breadcrumb', 'breadcrumb-navxt'); ?></h3>
437
+ <table class="form-table">
438
+ <?php
439
+ $this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'));
440
+ $this->input_text(__('Blog Template', 'breadcrumb-navxt'), 'Hblog_template', 'large-text', false, __('The template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb-navxt'));
441
+ $this->input_text(__('Blog Template (Unlinked)', 'breadcrumb-navxt'), 'Hblog_template_no_anchor', 'large-text', false , __('The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
442
+ do_action($this->unique_prefix . '_network_settings_blog', $this->opt);
443
+ ?>
444
+ </table>
445
+ <h3><?php _e('Mainsite Breadcrumb', 'breadcrumb-navxt'); ?></h3>
446
+ <table class="form-table">
447
+ <?php
448
+ $this->input_check(__('Main Site Breadcrumb', 'breadcrumb-navxt'), 'bmainsite_display', __('Place the main site home breadcrumb in the trail in an multisite setup.', 'breadcrumb-navxt'), !is_multisite());
449
+ $this->input_text(__('Main Site Home Template', 'breadcrumb-navxt'), 'Hmainsite_template', 'large-text', false, __('The template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb-navxt'));
450
+ $this->input_text(__('Main Site Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hmainsite_template_no_anchor', 'large-text', false, __('The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
451
+ do_action($this->unique_prefix . '_network_settings_mainsite', $this->opt);
452
+ ?>
453
+ </table>
454
+ <?php do_action($this->unique_prefix . '_after_network_settings_tab_general', $this->opt); ?>
455
+ </fieldset>
456
+ <fieldset id="post" class="bcn_options">
457
+ <h3 class="tab-title" title="<?php _e('The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Post Types', 'breadcrumb-navxt'); ?></h3>
458
+ <h3><?php _e('Posts', 'breadcrumb-navxt'); ?></h3>
459
+ <table class="form-table">
460
+ <?php
461
+ $this->input_text(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', 'large-text', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
462
+ $this->input_text(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', 'large-text', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
463
+ $this->input_check(__('Post Hierarchy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'));
464
+ ?>
465
+ <tr valign="top">
466
+ <th scope="row">
467
+ <?php _e('Post Hierarchy', 'breadcrumb-navxt'); ?>
468
+ </th>
469
+ <td>
470
+ <?php
471
+ $this->input_radio('Spost_post_taxonomy_type', 'category', __('Categories'));
472
+ $this->input_radio('Spost_post_taxonomy_type', 'date', __('Dates', 'breadcrumb-navxt'));
473
+ $this->input_radio('Spost_post_taxonomy_type', 'post_tag', __('Tags'));
474
+ //We use the value 'page' but really, this will follow the parent post hierarchy
475
+ $this->input_radio('Spost_post_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'));
476
+ //Loop through all of the taxonomies in the array
477
+ foreach($wp_taxonomies as $taxonomy)
478
+ {
479
+ //Check for non-public taxonomies
480
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
481
+ {
482
+ continue;
483
+ }
484
+ //We only want custom taxonomies
485
+ if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
486
+ {
487
+ $this->input_radio('Spost_post_taxonomy_type', $taxonomy->name, mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'));
488
+ }
489
+ }
490
+ ?>
491
+ <p class="description"><?php _e('The hierarchy which the breadcrumb trail will show. Note that the "Post Parent" option may require an additional plugin to behave as expected since this is a non-hierarchical post type.', 'breadcrumb-navxt'); ?></p>
492
+ </td>
493
+ </tr>
494
+ </table>
495
+ <h3><?php _e('Pages', 'breadcrumb-navxt'); ?></h3>
496
+ <table class="form-table">
497
+ <?php
498
+ $this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', 'large-text', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
499
+ $this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', 'large-text', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
500
+ $this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', 'large-text', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
501
+ $this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', 'large-text', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
502
+ ?>
503
+ </table>
504
+ <?php
505
+ //Loop through all of the post types in the array
506
+ foreach($wp_post_types as $post_type)
507
+ {
508
+ //Check for non-public CPTs
509
+ if(!apply_filters('bcn_show_cpt_private', $post_type->public, $post_type->name))
510
+ {
511
+ continue;
512
+ }
513
+ //We only want custom post types
514
+ if(!$post_type->_builtin)
515
+ {
516
+ $singular_name_lc = mb_strtolower($post_type->labels->singular_name, 'UTF-8');
517
+ ?>
518
+ <h3><?php echo $post_type->labels->singular_name; ?></h3>
519
+ <table class="form-table">
520
+ <?php
521
+ $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $singular_name_lc));
522
+ $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $singular_name_lc));
523
+ $optid = $this->get_valid_id('apost_' . $post_type->name . '_root');
524
+ ?>
525
+ <tr valign="top">
526
+ <th scope="row">
527
+ <label for="<?php echo $optid;?>"><?php printf(__('%s Root Page', 'breadcrumb-navxt'), $post_type->labels->singular_name);?></label>
528
+ </th>
529
+ <td>
530
+ <?php wp_dropdown_pages(array('name' => $this->unique_prefix . '_options[apost_' . $post_type->name . '_root]', 'id' => $optid, 'echo' => 1, 'show_option_none' => __( '&mdash; Select &mdash;' ), 'option_none_value' => '0', 'selected' => $this->opt['apost_' . $post_type->name . '_root']));?>
531
+ </td>
532
+ </tr>
533
+ <?php
534
+ $this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc), !$post_type->has_archive);
535
+ $this->input_check(sprintf(__('%s Hierarchy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the taxonomy leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), $singular_name_lc));
536
+ ?>
537
+ <tr valign="top">
538
+ <th scope="row">
539
+ <?php printf(__('%s Hierarchy', 'breadcrumb-navxt'), $post_type->labels->singular_name); ?>
540
+ </th>
541
+ <td>
542
+ <?php
543
+ //We use the value 'page' but really, this will follow the parent post hierarchy
544
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Post Parent', 'breadcrumb-navxt'));
545
+ //Loop through all of the taxonomies in the array
546
+ foreach($wp_taxonomies as $taxonomy)
547
+ {
548
+ //Check for non-public taxonomies
549
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
550
+ {
551
+ continue;
552
+ }
553
+ //We only want custom taxonomies
554
+ if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
555
+ {
556
+ $this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', $taxonomy->name, $taxonomy->labels->singular_name);
557
+ }
558
+ }
559
+ ?>
560
+ <p class="description">
561
+ <?php
562
+ if($post_type->hierarchical)
563
+ {
564
+ _e('The hierarchy which the breadcrumb trail will show.', 'breadcrumb-navxt');
565
+ }
566
+ else
567
+ {
568
+ _e('The hierarchy which the breadcrumb trail will show. Note that the "Post Parent" option may require an additional plugin to behave as expected since this is a non-hierarchical post type.', 'breadcrumb-navxt');
569
+ }
570
+ ?>
571
+ </p>
572
+ </td>
573
+ </tr>
574
+ </table>
575
+ <?php
576
+ }
577
+ }
578
+ do_action($this->unique_prefix . '_after_network_settings_tab_post', $this->opt);
579
+ ?>
580
+ </fieldset>
581
+ <fieldset id="tax" class="bcn_options alttab">
582
+ <h3 class="tab-title" title="<?php _e('The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Taxonomies', 'breadcrumb-navxt'); ?></h3>
583
+ <h3><?php _e('Categories', 'breadcrumb-navxt'); ?></h3>
584
+ <table class="form-table">
585
+ <?php
586
+ $this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Hcategory_template', 'large-text', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
587
+ $this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Hcategory_template_no_anchor', 'large-text', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
588
+ ?>
589
+ </table>
590
+ <h3><?php _e('Tags', 'breadcrumb-navxt'); ?></h3>
591
+ <table class="form-table">
592
+ <?php
593
+ $this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Hpost_tag_template', 'large-text', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
594
+ $this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_tag_template_no_anchor', 'large-text', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
595
+ ?>
596
+ </table>
597
+ <h3><?php _e('Post Formats', 'breadcrumb-navxt'); ?></h3>
598
+ <table class="form-table">
599
+ <?php
600
+ $this->input_text(__('Post Format Template', 'breadcrumb-navxt'), 'Hpost_format_template', 'large-text', false, __('The template for post format breadcrumbs.', 'breadcrumb-navxt'));
601
+ $this->input_text(__('Post Format Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_format_template_no_anchor', 'large-text', false, __('The template for post_format breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
602
+ ?>
603
+ </table>
604
+ <?php
605
+ //Loop through all of the taxonomies in the array
606
+ foreach($wp_taxonomies as $taxonomy)
607
+ {
608
+ //Check for non-public taxonomies
609
+ if(!apply_filters('bcn_show_tax_private', $taxonomy->public, $taxonomy->name))
610
+ {
611
+ continue;
612
+ }
613
+ //We only want custom taxonomies
614
+ if(!$taxonomy->_builtin)
615
+ {
616
+ $label_lc = mb_strtolower($taxonomy->label, 'UTF-8');
617
+ ?>
618
+ <h3><?php echo mb_convert_case($taxonomy->label, MB_CASE_TITLE, 'UTF-8'); ?></h3>
619
+ <table class="form-table">
620
+ <?php
621
+ $this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template', 'large-text', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), $label_lc));
622
+ $this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template_no_anchor', 'large-text', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), $label_lc));
623
+ ?>
624
+ </table>
625
+ <?php
626
+ }
627
+ }
628
+ do_action($this->unique_prefix . '_after_network_settings_tab_taxonomy', $this->opt); ?>
629
+ </fieldset>
630
+ <fieldset id="miscellaneous" class="bcn_options">
631
+ <h3 class="tab-title" title="<?php _e('The settings for author and date archives, searches, and 404 pages are located under this tab.', 'breadcrumb-navxt');?>"><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
632
+ <h3><?php _e('Author Archives', 'breadcrumb-navxt'); ?></h3>
633
+ <table class="form-table">
634
+ <?php
635
+ $this->input_text(__('Author Template', 'breadcrumb-navxt'), 'Hauthor_template', 'large-text', false, __('The template for author breadcrumbs.', 'breadcrumb-navxt'));
636
+ $this->input_text(__('Author Template (Unlinked)', 'breadcrumb-navxt'), 'Hauthor_template_no_anchor', 'large-text', false, __('The template for author breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
637
+ $this->input_select(__('Author Display Format', 'breadcrumb-navxt'), 'Sauthor_name', array("display_name", "nickname", "first_name", "last_name"), false, __('display_name uses the name specified in "Display name publicly as" under the user profile the others correspond to options in the user profile.', 'breadcrumb-navxt'));
638
+ ?>
639
+ </table>
640
+ <h3><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
641
+ <table class="form-table">
642
+ <?php
643
+ $this->input_text(__('Date Template', 'breadcrumb-navxt'), 'Hdate_template', 'large-text', false, __('The template for date breadcrumbs.', 'breadcrumb-navxt'));
644
+ $this->input_text(__('Date Template (Unlinked)', 'breadcrumb-navxt'), 'Hdate_template_no_anchor', 'large-text', false, __('The template for date breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
645
+ $this->input_text(__('Search Template', 'breadcrumb-navxt'), 'Hsearch_template', 'large-text', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb-navxt'));
646
+ $this->input_text(__('Search Template (Unlinked)', 'breadcrumb-navxt'), 'Hsearch_template_no_anchor', 'large-text', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked.', 'breadcrumb-navxt'));
647
+ $this->input_text(__('404 Title', 'breadcrumb-navxt'), 'S404_title', 'regular-text');
648
+ $this->input_text(__('404 Template', 'breadcrumb-navxt'), 'H404_template', 'large-text', false, __('The template for 404 breadcrumbs.', 'breadcrumb-navxt'));
649
+ ?>
650
+ </table>
651
+ <?php do_action($this->unique_prefix . '_after_network_settings_tab_miscellaneous', $this->opt); ?>
652
+ </fieldset>
653
+ <?php do_action($this->unique_prefix . '_after_network_settings_tabs', $this->opt); ?>
654
+ </div>
655
+ <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
656
+ </form>
657
+ <?php
658
+ //Need to add a separate menu thing for this
659
+ $this->import_form(); ?>
660
+ </div>
661
+ <?php
662
+ }
663
+ }
breadcrumb_navxt_widget.php → class.bcn_widget.php RENAMED
File without changes
includes/{mtekk_adminkit.php → class.mtekk_adminkit.php} RENAMED
@@ -19,7 +19,7 @@
19
  require_once(dirname(__FILE__) . '/block_direct_access.php');
20
  abstract class mtekk_adminKit
21
  {
22
- private $__version = '1.1';
23
  protected $version;
24
  protected $full_name;
25
  protected $short_name;
@@ -142,6 +142,12 @@ abstract class mtekk_adminKit
142
  //Run the options fix function on init if fix button has been pressed
143
  $this->opts_upgrade_wrapper();
144
  }
 
 
 
 
 
 
145
  //Add in the nice "settings" link to the plugins page
146
  add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
147
  //Register JS for tabs
@@ -151,7 +157,7 @@ abstract class mtekk_adminKit
151
  //Register options
152
  register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
153
  //Synchronize up our settings with the database as we're done modifying them now
154
- $this->opt = mtekk_adminKit::parse_args(get_option($this->unique_prefix . '_options'), $this->opt);
155
  //Run the opts fix filter
156
  $this->opts_fix($this->opt);
157
  }
@@ -229,30 +235,30 @@ abstract class mtekk_adminKit
229
  //Call our little security function
230
  $this->security();
231
  //Try retrieving the options from the database
232
- $opts = get_option($this->unique_prefix . '_options');
233
  //If there are no settings, copy over the default settings
234
  if(!is_array($opts))
235
  {
236
  //Grab defaults from the object
237
  $opts = $this->opt;
238
  //Add the options
239
- add_option($this->unique_prefix . '_options', $opts);
240
- add_option($this->unique_prefix . '_options_bk', $opts, '', 'no');
241
  //Add the version, no need to autoload the db version
242
- add_option($this->unique_prefix . '_version', $this->version, '', 'no');
243
  }
244
  else
245
  {
246
  //Retrieve the database version
247
- $db_version = get_option($this->unique_prefix . '_version');
248
  if($this->version !== $db_version)
249
  {
250
  //Run the settings update script
251
  $this->opts_upgrade($opts, $db_version);
252
  //Always have to update the version
253
- update_option($this->unique_prefix . '_version', $this->version);
254
  //Store the options
255
- update_option($this->unique_prefix . '_options', $this->opt);
256
  }
257
  }
258
  }
@@ -262,11 +268,11 @@ abstract class mtekk_adminKit
262
  function uninstall()
263
  {
264
  //Remove the option array setting
265
- delete_option($this->unique_prefix . '_options');
266
  //Remove the option backup array setting
267
- delete_option($this->unique_prefix . '_options_bk');
268
  //Remove the version setting
269
- delete_option($this->unique_prefix . '_version');
270
  }
271
  /**
272
  * Compares the supplided version with the internal version, places an upgrade warning if there is a missmatch
@@ -280,7 +286,7 @@ abstract class mtekk_adminKit
280
  //Throw an error since the DB version is out of date
281
  $this->message['error'][] = __('Your settings are out of date.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
282
  //Output any messages that there may be
283
- $this->message();
284
  return false;
285
  }
286
  //Do a quick version check
@@ -289,7 +295,7 @@ abstract class mtekk_adminKit
289
  //Throw an error since the DB version is out of date
290
  $this->message['error'][] = __('Your settings are for a newer version.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
291
  //Output any messages that there may be
292
- $this->message();
293
  return true;
294
  }
295
  else if(!is_array($this->opt))
@@ -297,7 +303,7 @@ abstract class mtekk_adminKit
297
  //Throw an error since it appears the options were never registered
298
  $this->message['error'][] = __('Your plugin install is incomplete.', $this->identifier) . $this->admin_anchor('upgrade', __('Load default settings now.', $this->identifier), __('Complete now.', $this->identifier));
299
  //Output any messages that there may be
300
- $this->message();
301
  return false;
302
  }
303
  else if(!$this->opts_validate($this->opt))
@@ -305,7 +311,7 @@ abstract class mtekk_adminKit
305
  //Throw an error since it appears the options contain invalid data
306
  $this->message['error'][] = __('Your plugin settings are invalid.', $this->identifier) . $this->admin_anchor('fix', __('Attempt to fix settings now.', $this->identifier), __('Fix now.', $this->identifier));
307
  //Output any messages that there may be
308
- $this->message();
309
  return false;
310
  }
311
  return true;
@@ -331,7 +337,7 @@ abstract class mtekk_adminKit
331
  function opts_backup()
332
  {
333
  //Set the backup options in the DB to the current options
334
- update_option($this->unique_prefix . '_options_bk', get_option($this->unique_prefix . '_options'));
335
  }
336
  /**
337
  * Runs recursivly through the opts array, sanitizing and merging in updates from the $input array
@@ -404,7 +410,7 @@ abstract class mtekk_adminKit
404
  * @param mixed $defaults (optional) The default values to validate against
405
  * @return mixed
406
  */
407
- static function parse_args($args, $defaults = '')
408
  {
409
  if(is_object($args))
410
  {
@@ -467,16 +473,16 @@ abstract class mtekk_adminKit
467
  //Do a nonce check, prevent malicious link/form problems
468
  check_admin_referer($this->unique_prefix . '_options-options');
469
  //Update local options from database
470
- $this->opt = mtekk_adminKit::parse_args(get_option($this->unique_prefix . '_options'), $this->opt);
471
  $this->opts_update_prebk($this->opt);
472
  //Update our backup options
473
- update_option($this->unique_prefix . '_options_bk', $this->opt);
474
  //Grab our incomming array (the data is dirty)
475
  $input = $_POST[$this->unique_prefix . '_options'];
476
  //Run the update loop
477
  $this->opts_update_loop($this->opt, $input);
478
  //Commit the option changes
479
- update_option($this->unique_prefix . '_options', $this->opt);
480
  //Check if known settings match attempted save
481
  if(count(array_diff_key($input, $this->opt)) == 0)
482
  {
@@ -494,7 +500,7 @@ abstract class mtekk_adminKit
494
  }
495
  $this->message['updated fade'][] = $temp . '<br />' . sprintf(__('Please include this message in your %sbug report%s.', $this->identifier),'<a title="' . sprintf(__('Go to the %s support post for your version.', $this->identifier), $this->short_name) . '" href="' . $this->support_url . $this->version . '/#respond">', '</a>');
496
  }
497
- add_action('admin_notices', array($this, 'message'));
498
  }
499
  /**
500
  * Exports a XML options document
@@ -504,7 +510,7 @@ abstract class mtekk_adminKit
504
  //Do a nonce check, prevent malicious link/form problems
505
  check_admin_referer($this->unique_prefix . '_admin_import_export');
506
  //Update our internal settings
507
- $this->opt = get_option($this->unique_prefix . '_options');
508
  //Create a DOM document
509
  $dom = new DOMDocument('1.0', 'UTF-8');
510
  //Adds in newlines and tabs to the output
@@ -589,7 +595,7 @@ abstract class mtekk_adminKit
589
  //Make sure we safely import and upgrade settings if needed
590
  $this->opts_upgrade($opts_temp, $version);
591
  //Commit the loaded options to the database
592
- update_option($this->unique_prefix . '_options', $this->opt);
593
  //Everything was successful, let the user know
594
  $this->message['updated fade'][] = __('Settings successfully imported from the uploaded file.', $this->identifier) . $this->admin_anchor('undo', __('Undo the options import.', $this->identifier), __('Undo', $this->identifier));
595
  }
@@ -601,7 +607,7 @@ abstract class mtekk_adminKit
601
  //Reset to the default error handler after we're done
602
  restore_error_handler();
603
  //Output any messages that there may be
604
- add_action('admin_notices', array($this, 'message'));
605
  }
606
  /**
607
  * Resets the database settings array to the default set in opt
@@ -613,10 +619,10 @@ abstract class mtekk_adminKit
613
  //Set the backup options in the DB to the current options
614
  $this->opts_backup();
615
  //Load in the hard coded default option values
616
- update_option($this->unique_prefix . '_options', $this->opt);
617
  //Reset successful, let the user know
618
  $this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier) . $this->admin_anchor('undo', __('Undo the options reset.', $this->identifier), __('Undo', $this->identifier));
619
- add_action('admin_notices', array($this, 'message'));
620
  }
621
  /**
622
  * Undos the last settings save/reset/import
@@ -626,14 +632,14 @@ abstract class mtekk_adminKit
626
  //Do a nonce check, prevent malicious link/form problems
627
  check_admin_referer($this->unique_prefix . '_admin_undo');
628
  //Set the options array to the current options
629
- $opt = get_option($this->unique_prefix . '_options');
630
  //Set the options in the DB to the backup options
631
- update_option($this->unique_prefix . '_options', get_option($this->unique_prefix . '_options_bk'));
632
  //Set the backup options to the undone options
633
- update_option($this->unique_prefix . '_options_bk', $opt);
634
  //Send the success/undo message
635
  $this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->admin_anchor('undo', __('Undo the last undo operation.', $this->identifier), __('Undo', $this->identifier));
636
- add_action('admin_notices', array($this, 'message'));
637
  }
638
  /**
639
  * Upgrades input options array, sets to $this->opt, designed to be overwritten
@@ -657,15 +663,15 @@ abstract class mtekk_adminKit
657
  //Do a nonce check, prevent malicious link/form problems
658
  check_admin_referer($this->unique_prefix . '_admin_upgrade');
659
  //Grab the database options
660
- $opts = get_option($this->unique_prefix . '_options');
661
  if(is_array($opts))
662
  {
663
  //Feed the just read options into the upgrade function
664
- $this->opts_upgrade($opts, get_option($this->unique_prefix . '_version'));
665
  //Always have to update the version
666
- update_option($this->unique_prefix . '_version', $this->version);
667
  //Store the options
668
- update_option($this->unique_prefix . '_options', $this->opt);
669
  //Send the success message
670
  $this->message['updated fade'][] = __('Settings successfully migrated.', $this->identifier);
671
  }
@@ -676,7 +682,7 @@ abstract class mtekk_adminKit
676
  //Send the success message
677
  $this->message['updated fade'][] = __('Default settings successfully installed.', $this->identifier);
678
  }
679
- add_action('admin_notices', array($this, 'message'));
680
  }
681
  /**
682
  * help action hook function, meant to be overridden
@@ -696,7 +702,7 @@ abstract class mtekk_adminKit
696
  /**
697
  * Prints to screen all of the messages stored in the message member variable
698
  */
699
- function message()
700
  {
701
  if(count($this->message))
702
  {
@@ -1012,4 +1018,47 @@ abstract class mtekk_adminKit
1012
  }
1013
  }
1014
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1015
  }
19
  require_once(dirname(__FILE__) . '/block_direct_access.php');
20
  abstract class mtekk_adminKit
21
  {
22
+ private $__version = '1.2';
23
  protected $version;
24
  protected $full_name;
25
  protected $short_name;
142
  //Run the options fix function on init if fix button has been pressed
143
  $this->opts_upgrade_wrapper();
144
  }
145
+ //Admin Options update hook
146
+ else if(isset($_POST[$this->unique_prefix . '_admin_options']))
147
+ {
148
+ //Temporarily add update function on init if form has been submitted
149
+ $this->opts_update();
150
+ }
151
  //Add in the nice "settings" link to the plugins page
152
  add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
153
  //Register JS for tabs
157
  //Register options
158
  register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
159
  //Synchronize up our settings with the database as we're done modifying them now
160
+ $this->opt = $this->parse_args($this->get_option($this->unique_prefix . '_options'), $this->opt);
161
  //Run the opts fix filter
162
  $this->opts_fix($this->opt);
163
  }
235
  //Call our little security function
236
  $this->security();
237
  //Try retrieving the options from the database
238
+ $opts = $this->get_option($this->unique_prefix . '_options');
239
  //If there are no settings, copy over the default settings
240
  if(!is_array($opts))
241
  {
242
  //Grab defaults from the object
243
  $opts = $this->opt;
244
  //Add the options
245
+ $this->add_option($this->unique_prefix . '_options', $opts);
246
+ $this->add_option($this->unique_prefix . '_options_bk', $opts, '', 'no');
247
  //Add the version, no need to autoload the db version
248
+ $this->add_option($this->unique_prefix . '_version', $this->version, '', 'no');
249
  }
250
  else
251
  {
252
  //Retrieve the database version
253
+ $db_version = $this->get_option($this->unique_prefix . '_version');
254
  if($this->version !== $db_version)
255
  {
256
  //Run the settings update script
257
  $this->opts_upgrade($opts, $db_version);
258
  //Always have to update the version
259
+ $this->update_option($this->unique_prefix . '_version', $this->version);
260
  //Store the options
261
+ $this->update_option($this->unique_prefix . '_options', $this->opt);
262
  }
263
  }
264
  }
268
  function uninstall()
269
  {
270
  //Remove the option array setting
271
+ $this->delete_option($this->unique_prefix . '_options');
272
  //Remove the option backup array setting
273
+ $this->delete_option($this->unique_prefix . '_options_bk');
274
  //Remove the version setting
275
+ $this->delete_option($this->unique_prefix . '_version');
276
  }
277
  /**
278
  * Compares the supplided version with the internal version, places an upgrade warning if there is a missmatch
286
  //Throw an error since the DB version is out of date
287
  $this->message['error'][] = __('Your settings are out of date.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
288
  //Output any messages that there may be
289
+ $this->messages();
290
  return false;
291
  }
292
  //Do a quick version check
295
  //Throw an error since the DB version is out of date
296
  $this->message['error'][] = __('Your settings are for a newer version.', $this->identifier) . $this->admin_anchor('upgrade', __('Migrate the settings now.', $this->identifier), __('Migrate now.', $this->identifier));
297
  //Output any messages that there may be
298
+ $this->messages();
299
  return true;
300
  }
301
  else if(!is_array($this->opt))
303
  //Throw an error since it appears the options were never registered
304
  $this->message['error'][] = __('Your plugin install is incomplete.', $this->identifier) . $this->admin_anchor('upgrade', __('Load default settings now.', $this->identifier), __('Complete now.', $this->identifier));
305
  //Output any messages that there may be
306
+ $this->messages();
307
  return false;
308
  }
309
  else if(!$this->opts_validate($this->opt))
311
  //Throw an error since it appears the options contain invalid data
312
  $this->message['error'][] = __('Your plugin settings are invalid.', $this->identifier) . $this->admin_anchor('fix', __('Attempt to fix settings now.', $this->identifier), __('Fix now.', $this->identifier));
313
  //Output any messages that there may be
314
+ $this->messages();
315
  return false;
316
  }
317
  return true;
337
  function opts_backup()
338
  {
339
  //Set the backup options in the DB to the current options
340
+ $this->update_option($this->unique_prefix . '_options_bk', $this->get_option($this->unique_prefix . '_options'));
341
  }
342
  /**
343
  * Runs recursivly through the opts array, sanitizing and merging in updates from the $input array
410
  * @param mixed $defaults (optional) The default values to validate against
411
  * @return mixed
412
  */
413
+ function parse_args($args, $defaults = '')
414
  {
415
  if(is_object($args))
416
  {
473
  //Do a nonce check, prevent malicious link/form problems
474
  check_admin_referer($this->unique_prefix . '_options-options');
475
  //Update local options from database
476
+ $this->opt = $this->parse_args($this->get_option($this->unique_prefix . '_options'), $this->opt);
477
  $this->opts_update_prebk($this->opt);
478
  //Update our backup options
479
+ $this->update_option($this->unique_prefix . '_options_bk', $this->opt);
480
  //Grab our incomming array (the data is dirty)
481
  $input = $_POST[$this->unique_prefix . '_options'];
482
  //Run the update loop
483
  $this->opts_update_loop($this->opt, $input);
484
  //Commit the option changes
485
+ $this->update_option($this->unique_prefix . '_options', $this->opt);
486
  //Check if known settings match attempted save
487
  if(count(array_diff_key($input, $this->opt)) == 0)
488
  {
500
  }
501
  $this->message['updated fade'][] = $temp . '<br />' . sprintf(__('Please include this message in your %sbug report%s.', $this->identifier),'<a title="' . sprintf(__('Go to the %s support post for your version.', $this->identifier), $this->short_name) . '" href="' . $this->support_url . $this->version . '/#respond">', '</a>');
502
  }
503
+ add_action('admin_notices', array($this, 'messages'));
504
  }
505
  /**
506
  * Exports a XML options document
510
  //Do a nonce check, prevent malicious link/form problems
511
  check_admin_referer($this->unique_prefix . '_admin_import_export');
512
  //Update our internal settings
513
+ $this->opt = $this->get_option($this->unique_prefix . '_options');
514
  //Create a DOM document
515
  $dom = new DOMDocument('1.0', 'UTF-8');
516
  //Adds in newlines and tabs to the output
595
  //Make sure we safely import and upgrade settings if needed
596
  $this->opts_upgrade($opts_temp, $version);
597
  //Commit the loaded options to the database
598
+ $this->update_option($this->unique_prefix . '_options', $this->opt);
599
  //Everything was successful, let the user know
600
  $this->message['updated fade'][] = __('Settings successfully imported from the uploaded file.', $this->identifier) . $this->admin_anchor('undo', __('Undo the options import.', $this->identifier), __('Undo', $this->identifier));
601
  }
607
  //Reset to the default error handler after we're done
608
  restore_error_handler();
609
  //Output any messages that there may be
610
+ add_action('admin_notices', array($this, 'messages'));
611
  }
612
  /**
613
  * Resets the database settings array to the default set in opt
619
  //Set the backup options in the DB to the current options
620
  $this->opts_backup();
621
  //Load in the hard coded default option values
622
+ $this->update_option($this->unique_prefix . '_options', $this->opt);
623
  //Reset successful, let the user know
624
  $this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier) . $this->admin_anchor('undo', __('Undo the options reset.', $this->identifier), __('Undo', $this->identifier));
625
+ add_action('admin_notices', array($this, 'messages'));
626
  }
627
  /**
628
  * Undos the last settings save/reset/import
632
  //Do a nonce check, prevent malicious link/form problems
633
  check_admin_referer($this->unique_prefix . '_admin_undo');
634
  //Set the options array to the current options
635
+ $opt = $this->get_option($this->unique_prefix . '_options');
636
  //Set the options in the DB to the backup options
637
+ $this->update_option($this->unique_prefix . '_options', $this->get_option($this->unique_prefix . '_options_bk'));
638
  //Set the backup options to the undone options
639
+ $this->update_option($this->unique_prefix . '_options_bk', $opt);
640
  //Send the success/undo message
641
  $this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->admin_anchor('undo', __('Undo the last undo operation.', $this->identifier), __('Undo', $this->identifier));
642
+ add_action('admin_notices', array($this, 'messages'));
643
  }
644
  /**
645
  * Upgrades input options array, sets to $this->opt, designed to be overwritten
663
  //Do a nonce check, prevent malicious link/form problems
664
  check_admin_referer($this->unique_prefix . '_admin_upgrade');
665
  //Grab the database options
666
+ $opts = $this->get_option($this->unique_prefix . '_options');
667
  if(is_array($opts))
668
  {
669
  //Feed the just read options into the upgrade function
670
+ $this->opts_upgrade($opts, $this->get_option($this->unique_prefix . '_version'));
671
  //Always have to update the version
672
+ $this->update_option($this->unique_prefix . '_version', $this->version);
673
  //Store the options
674
+ $this->update_option($this->unique_prefix . '_options', $this->opt);
675
  //Send the success message
676
  $this->message['updated fade'][] = __('Settings successfully migrated.', $this->identifier);
677
  }
682
  //Send the success message
683
  $this->message['updated fade'][] = __('Default settings successfully installed.', $this->identifier);
684
  }
685
+ add_action('admin_notices', array($this, 'messages'));
686
  }
687
  /**
688
  * help action hook function, meant to be overridden
702
  /**
703
  * Prints to screen all of the messages stored in the message member variable
704
  */
705
+ function messages()
706
  {
707
  if(count($this->message))
708
  {
1018
  }
1019
  }
1020
  }
1021
+ /**
1022
+ * A local pass through for get_option so that we can hook in and pick the correct method if needed
1023
+ *
1024
+ * @param string $option The name of the option to retrieve
1025
+ * @return mixed The value of the option
1026
+ */
1027
+ function get_option($option)
1028
+ {
1029
+ return get_option($option);
1030
+ }
1031
+ /**
1032
+ * A local pass through for update_option so that we can hook in and pick the correct method if needed
1033
+ *
1034
+ * @param string $option The name of the option to update
1035
+ * @param mixed $newvalue The new value to set the option to
1036
+ *
1037
+ */
1038
+ function update_option($option, $newvalue)
1039
+ {
1040
+ return update_option($option, $newvalue);
1041
+ }
1042
+ /**
1043
+ * A local pass through for add_option so that we can hook in and pick the correct method if needed
1044
+ *
1045
+ * @param string $option The name of the option to update
1046
+ * @param mixed $value The new value to set the option to
1047
+ * @param null $deprecated Deprecated parameter
1048
+ * @param string $autoload Whether or not to autoload the option, it's a string because WP is special
1049
+ *
1050
+ */
1051
+ function add_option($option, $value = '', $deprecated = '', $autoload = 'yes')
1052
+ {
1053
+ return add_option($option, $value, null, $autoload);
1054
+ }
1055
+ /**
1056
+ * A local pass through for delete_option so that we can hook in and pick the correct method if needed
1057
+ *
1058
+ * @param string $option The name of the option to delete
1059
+ */
1060
+ function delete_option($option)
1061
+ {
1062
+ return delete_option($option);
1063
+ }
1064
  }
languages/breadcrumb-navxt-ca.po CHANGED
@@ -1,753 +1,753 @@
1
- # Translation of Breadcrumb NavXT in Catalan
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-06-21 14:11:36+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:534 breadcrumb_navxt_admin.php:611
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "La jerarquia en la qual es mostra la ruta de molles. Prengui nota que l'opció de \"Entrada/Pàgina Superior\" pot requerir un plugin addicional per a comportar-se com s'espera, ja que aquest és un tipus de publicació sense jerarquia."
16
-
17
- #: breadcrumb_navxt_class.php:67 breadcrumb_navxt_class.php:239
18
- #: breadcrumb_navxt_class.php:245 breadcrumb_navxt_class.php:251
19
- #: breadcrumb_navxt_class.php:265 breadcrumb_navxt_class.php:277
20
- #: breadcrumb_navxt_class.php:289
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Anar a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:299
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Resultats de recerca per a &#39;<a title=\"Anar a la primer pàgina dels resultats de recerca per a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:432
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Un conjunt d'ajustaments que probablement seran modificats es troba en aquesta pestanya."
31
-
32
- #: breadcrumb_navxt_admin.php:440
33
- msgid "Title Length"
34
- msgstr "Longitud del títol"
35
-
36
- #: breadcrumb_navxt_admin.php:445
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Longitud màxima del títol de les molles."
39
-
40
- #: breadcrumb_navxt_admin.php:488
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Molles (Breadcrumbs) del Lloc Principal"
43
-
44
- #: breadcrumb_navxt_admin.php:500
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Els ajustaments per a tots els tipus d'entrades (Entrades, Pàgines, Personalitzades) es troben en aquesta pestanya."
47
-
48
- #: breadcrumb_navxt_admin.php:500
49
- msgid "Post Types"
50
- msgstr "Tipus d'Entrades"
51
-
52
- #: breadcrumb_navxt_admin.php:506
53
- msgid "Post Hierarchy Display"
54
- msgstr "Jerarquia per a desplegar entrades"
55
-
56
- #: breadcrumb_navxt_admin.php:510
57
- msgid "Post Hierarchy"
58
- msgstr "Jerarquia d'entrades"
59
-
60
- #: breadcrumb_navxt_admin.php:578
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s Jerarquia de Desplegament"
63
-
64
- #: breadcrumb_navxt_admin.php:640
65
- msgid "Post Formats"
66
- msgstr "Formats d'Entrades"
67
-
68
- #: breadcrumb_navxt_admin.php:450
69
- msgid "Max Title Length: "
70
- msgstr "Longitud Màxima del Títol:"
71
-
72
- #: breadcrumb_navxt_admin.php:501
73
- msgid "Posts"
74
- msgstr "Entrades"
75
-
76
- #: breadcrumb_navxt_admin.php:518 breadcrumb_navxt_admin.php:587
77
- msgid "Post Parent"
78
- msgstr "Entrada o Pàgina superior"
79
-
80
- #: breadcrumb_navxt_admin.php:607
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "La jerarquia que mostrarà la ruta de molles."
83
-
84
- #: breadcrumb_navxt_admin.php:582
85
- msgid "%s Hierarchy"
86
- msgstr "%s Jerarquia"
87
-
88
- #: breadcrumb_navxt_admin.php:625
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Els ajustaments per a totes les taxonomies (incloent Categories, Etiquetes i Personalitzades) estan en aquesta pestanya. "
91
-
92
- #: breadcrumb_navxt_admin.php:625
93
- msgid "Taxonomies"
94
- msgstr "Taxonomies"
95
-
96
- #: breadcrumb_navxt_admin.php:643
97
- msgid "Post Format Template"
98
- msgstr "Plantilla per a Format de l'Entrada"
99
-
100
- #: breadcrumb_navxt_admin.php:643
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "La plantilla per al format de la ruta de molles en l'entrada"
103
-
104
- #: breadcrumb_navxt_admin.php:644
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Plantilla per a Format de l'Entrada (sense enllaç)"
107
-
108
- #: breadcrumb_navxt_admin.php:644
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "La plantilla per al format de la ruta de molles en l'entrada, utilitzat només quan la molla no té enllaç. "
111
-
112
- #: breadcrumb_navxt_admin.php:674
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Els ajustaments per a autor i arxius, recerques, i pàgines 404 estan en aquesta pestanya."
115
-
116
- #: breadcrumb_navxt_admin.php:675
117
- msgid "Author Archives"
118
- msgstr "Arxius d'Autor "
119
-
120
- #: breadcrumb_navxt_class.php:304 breadcrumb_navxt_class.php:309
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Anar als arxius de l'etiqueta %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:314
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Articles per: <a title=\"Anar a la primer pàgina d'entrades per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:321
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Anar a l'arxiu de la categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:325
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Anar a l'arxiu de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:290
137
- msgid "Your settings are for a newer version."
138
- msgstr "Els seus ajustaments són per a una versió més nova."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Text a mostrar abans de les molles:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:336
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Anar al projecte de traducció de Breadcrumb NavXT"
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "La seva versió de PHP és massa antiga, per favor, actualitzi a la nova versió. La seva versió és %1$s, el plugin Breadcrumb NavXT requereix la versió %2$s "
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Agrega una ruta de navegació en la seva barra lateral"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Títol:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Mostrar ruta com:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Llista"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Text pla"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Enllaç a la Ruta"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Invertir l'ordre de la ruta"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Ocultar la ruta de la pàgina principal"
187
-
188
- #: breadcrumb_navxt_admin.php:213
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "No té privilegis per a procedir."
191
-
192
- #: breadcrumb_navxt_admin.php:329
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Trobarà tips per als ajustaments sota cada opció."
195
-
196
- #: breadcrumb_navxt_admin.php:330
197
- msgid "Resources"
198
- msgstr "Recursos"
199
-
200
- #: breadcrumb_navxt_admin.php:331
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sTutorials i Instructius%s: En el *website de l'autor estan disponibles diverses guies, tutorials i instructius."
203
-
204
- #: breadcrumb_navxt_admin.php:331
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Anar a l'arxiu d'etiquetes de Breadcrumb NavXT"
207
-
208
- #: breadcrumb_navxt_admin.php:332
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sDocumentació En Línia%s: Revisi la documentació per a més informació tècnica."
211
-
212
- #: breadcrumb_navxt_admin.php:332
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Anar a la documentació en línia de Breadcrumb NavXT (en anglès)"
215
-
216
- #: breadcrumb_navxt_admin.php:333
217
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
- msgstr "%sReportar Errors%s: Si pensa que ha trobat un error, per favor inclogui la seva versió de WordPress i els detalls de com es reproduïx l'error."
219
-
220
- #: breadcrumb_navxt_admin.php:333
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Anar a la documentació en línia de Breadcrumb NavXT para la seva versió. "
223
-
224
- #: breadcrumb_navxt_admin.php:334
225
- msgid "Giving Back"
226
- msgstr "Donar de tornada"
227
-
228
- #: breadcrumb_navxt_admin.php:335
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sDonar%s: Li agrada Breadcrumb NavXT i desitja col·laborar amb el desenvolupament? Consideri comprar-li a l'autor una cervesa."
231
-
232
- #: breadcrumb_navxt_admin.php:335
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Anar a la pàgina de Paypal para donar-li un donatiu a. Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:336
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sTraduir%s: No està disponible en el seu idioma? Comuniqui's amb John Havlik para col·laborar amb la traducció."
239
-
240
- #: breadcrumb_navxt_admin.php:341 breadcrumb_navxt_admin.php:432
241
- #: breadcrumb_navxt_admin.php:433
242
- msgid "General"
243
- msgstr "General"
244
-
245
- #: breadcrumb_navxt_admin.php:344
246
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
- msgstr "Perquè prenguin efecte els ajustaments en aquesta pàgina, ha d'incloure el widget del plugin o col·locar el codi en la seva plantilla."
248
-
249
- #: breadcrumb_navxt_admin.php:345
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Ruta de Navegació amb Separadors"
252
-
253
- #: breadcrumb_navxt_admin.php:351
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Ruta de Navegació com Llistat"
256
-
257
- #: breadcrumb_navxt_admin.php:360
258
- msgid "Quick Start"
259
- msgstr "Inici Ràpid"
260
-
261
- #: breadcrumb_navxt_admin.php:363
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Fent servir el codi d'Inici Ràpid de la secció anterior, el següent CSS pot utilitzar-se com base per a donar-li estil a la seva ruta de navegació."
264
-
265
- #: breadcrumb_navxt_admin.php:375
266
- msgid "Styling"
267
- msgstr "Estilo"
268
-
269
- #: breadcrumb_navxt_admin.php:381
270
- msgid "Import/Export/Reset"
271
- msgstr "Importar/Exportar/Reiniciar"
272
-
273
- #: breadcrumb_navxt_admin.php:405 includes/mtekk_adminkit.php:786
274
- msgid "Import"
275
- msgstr "Importar"
276
-
277
- #: breadcrumb_navxt_admin.php:406 includes/mtekk_adminkit.php:787
278
- msgid "Export"
279
- msgstr "Exportar"
280
-
281
- #: breadcrumb_navxt_admin.php:407 includes/mtekk_adminkit.php:788
282
- msgid "Reset"
283
- msgstr "Reiniciar"
284
-
285
- #: breadcrumb_navxt_admin.php:420
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Opcions de Configuració de Breadcrumb NavXT"
288
-
289
- #: breadcrumb_navxt_admin.php:436
290
- msgid "Breadcrumb Separator"
291
- msgstr "Separador de Navegació"
292
-
293
- #: breadcrumb_navxt_admin.php:436
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Col·locat enmig de cada opció de navegació."
296
-
297
- #: breadcrumb_navxt_admin.php:470 breadcrumb_navxt_admin.php:473
298
- msgid "Home Breadcrumb"
299
- msgstr "Incloure l'Inici"
300
-
301
- #: breadcrumb_navxt_admin.php:473
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
304
-
305
- #: breadcrumb_navxt_admin.php:474
306
- msgid "Home Template"
307
- msgstr "Plantilla de la Pàgina d'Inici"
308
-
309
- #: breadcrumb_navxt_admin.php:474
310
- msgid "The template for the home breadcrumb."
311
- msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici."
312
-
313
- #: breadcrumb_navxt_admin.php:475
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Plantilla de la Pàgina d'Inici (sense vincle)"
316
-
317
- #: breadcrumb_navxt_admin.php:475
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici, quan l'element d'inici no està enllaçat."
320
-
321
- #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:482
322
- msgid "Blog Breadcrumb"
323
- msgstr "Incloure Inici (del Blog)"
324
-
325
- #: breadcrumb_navxt_admin.php:482
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
328
-
329
- #: breadcrumb_navxt_admin.php:483
330
- msgid "Blog Template"
331
- msgstr "Plantilla del Blog"
332
-
333
- #: breadcrumb_navxt_admin.php:483
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "La plantilla de la ruta de navegació per al blog, utilitzat només quan la pàgina inicial és una pàgina estàtica."
336
-
337
- #: breadcrumb_navxt_admin.php:484
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Plantilla del Blog (sense vincle)"
340
-
341
- #: breadcrumb_navxt_admin.php:484
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "La plantilla de la ruta de navegació per al blog, utilitzat només quan la pàgina inicial és una pàgina estàtica i l'element d'inici no està enllaçat."
344
-
345
- #: breadcrumb_navxt_admin.php:491
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Ruta del Lloc Principal"
348
-
349
- #: breadcrumb_navxt_admin.php:491
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Col·locar un enllaç a la pàgina d'inici del lloc principal en la ruta de navegació d'una configuració amb múltiples blogs."
352
-
353
- #: breadcrumb_navxt_admin.php:492
354
- msgid "Main Site Home Template"
355
- msgstr "Plantilla d'Inici del Lloc Principal"
356
-
357
- #: breadcrumb_navxt_admin.php:492
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs."
360
-
361
- #: breadcrumb_navxt_admin.php:493
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Plantilla d'Inici del Lloc Principal (sense vincle)"
364
-
365
- #: breadcrumb_navxt_admin.php:493
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs i l'element de navegació no està enllaçat."
368
-
369
- #: breadcrumb_navxt_admin.php:461
370
- msgid "Current Item"
371
- msgstr "Item Actual"
372
-
373
- #: breadcrumb_navxt_admin.php:464
374
- msgid "Link Current Item"
375
- msgstr "Incloure Vincle a Ítem Actual"
376
-
377
- #: breadcrumb_navxt_admin.php:464
378
- msgid "Yes"
379
- msgstr "Si"
380
-
381
- #: breadcrumb_navxt_admin.php:465
382
- msgid "Paged Breadcrumb"
383
- msgstr "Ruta de Navegació paginada"
384
-
385
- #: breadcrumb_navxt_admin.php:465
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Incloure la navegació paginada en la ruta de navegació"
388
-
389
- #: breadcrumb_navxt_admin.php:465
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Mostrar que l'usuari està en una pàgina distinta a la primera d'una entrada/arxiu amb múltiples pàgines. "
392
-
393
- #: breadcrumb_navxt_admin.php:466
394
- msgid "Paged Template"
395
- msgstr "Plantilla d'Entrada paginada"
396
-
397
- #: breadcrumb_navxt_admin.php:466
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Plantilla de ruta de navegació d'entrades de diverses pàgines."
400
-
401
- #: breadcrumb_navxt_admin.php:504
402
- msgid "Post Template"
403
- msgstr "Plantilla d'Entrades"
404
-
405
- #: breadcrumb_navxt_admin.php:504
406
- msgid "The template for post breadcrumbs."
407
- msgstr "La plantilla de la ruta de navegació per a entrades."
408
-
409
- #: breadcrumb_navxt_admin.php:505
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Plantilla de l'Entrada (sense vincle)"
412
-
413
- #: breadcrumb_navxt_admin.php:505
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "La plantilla de la ruta de navegació per a entrades, quan l'element no està enllaçat."
416
-
417
- #: breadcrumb_navxt_admin.php:506
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Mostrar la ruta de navegació amb la classificació que duu l'entrada."
420
-
421
- #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:626
422
- msgid "Categories"
423
- msgstr "Categories"
424
-
425
- #: breadcrumb_navxt_admin.php:515
426
- msgid "Dates"
427
- msgstr "Dates"
428
-
429
- #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:633
430
- msgid "Tags"
431
- msgstr "Etiquetes"
432
-
433
- #: breadcrumb_navxt_admin.php:538
434
- msgid "Pages"
435
- msgstr "Pàgines"
436
-
437
- #: breadcrumb_navxt_admin.php:541
438
- msgid "Page Template"
439
- msgstr "Plantilla de la Pàgina"
440
-
441
- #: breadcrumb_navxt_admin.php:541
442
- msgid "The template for page breadcrumbs."
443
- msgstr "La plantilla de la ruta de navegació per a pàgines."
444
-
445
- #: breadcrumb_navxt_admin.php:542
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Plantilla de la Pàgina (sense vincle)"
448
-
449
- #: breadcrumb_navxt_admin.php:542
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "La plantilla de la ruta de navegació per a pàgines, quan l'element no està enllaçat."
452
-
453
- #: breadcrumb_navxt_admin.php:543
454
- msgid "Attachment Template"
455
- msgstr "Plantilla d'Arxiu Adjunt"
456
-
457
- #: breadcrumb_navxt_admin.php:543
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "La plantilla de la ruta de navegació per a arxius adjunts."
460
-
461
- #: breadcrumb_navxt_admin.php:544
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Plantilla de l'Arxiu Adjunt (sense vincle)"
464
-
465
- #: breadcrumb_navxt_admin.php:544
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "La plantilla de la ruta de navegació per a arxius adjunts, quan l'element no està enllaçat."
468
-
469
- #: breadcrumb_navxt_admin.php:742
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Anar a %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_class.php:63
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
478
- msgid "%s Template"
479
- msgstr "Plantilla de %s"
480
-
481
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "La plantilla de la ruta de navegació per a %s."
484
-
485
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
486
- msgid "%s Template (Unlinked)"
487
- msgstr "Plantilla de %s (sense vincle)"
488
-
489
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "La plantilla de la ruta de navegació per a %s, quan l'element no està enllaçat."
492
-
493
- #: breadcrumb_navxt_admin.php:570
494
- msgid "%s Root Page"
495
- msgstr "%s Pàgina Arrel"
496
-
497
- #: breadcrumb_navxt_admin.php:573
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Seleccioni &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:577
502
- msgid "%s Archive Display"
503
- msgstr "Desplegament d'Arxius de %s"
504
-
505
- #: breadcrumb_navxt_admin.php:577
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Mostrar la ruta de navegació per als %s arxius de les entrades de tipus."
508
-
509
- #: breadcrumb_navxt_admin.php:578
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Mostrar la classificació que duu a %s en la ruta de navegació."
512
-
513
- #: breadcrumb_navxt_admin.php:629
514
- msgid "Category Template"
515
- msgstr "Plantilla de Categoria"
516
-
517
- #: breadcrumb_navxt_admin.php:629
518
- msgid "The template for category breadcrumbs."
519
- msgstr "La plantilla de la ruta de navegació per a categories."
520
-
521
- #: breadcrumb_navxt_admin.php:630
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Plantilla de la Categoria (sense vincle)"
524
-
525
- #: breadcrumb_navxt_admin.php:630
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "La plantilla de la ruta de navegació per a categories, quan l'element no està enllaçat."
528
-
529
- #: breadcrumb_navxt_admin.php:636
530
- msgid "Tag Template"
531
- msgstr "Plantilla de l'Etiqueta"
532
-
533
- #: breadcrumb_navxt_admin.php:636
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "La plantilla de la ruta de navegació per a etiquetes."
536
-
537
- #: breadcrumb_navxt_admin.php:637
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Plantilla de l'Etiqueta (sense vincle)"
540
-
541
- #: breadcrumb_navxt_admin.php:637
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "La plantilla de la ruta de navegació per a etiquetes, quan l'element no està enllaçat."
544
-
545
- #: breadcrumb_navxt_admin.php:674 breadcrumb_navxt_admin.php:683
546
- msgid "Miscellaneous"
547
- msgstr "Miscel·lanis"
548
-
549
- #: breadcrumb_navxt_admin.php:678
550
- msgid "Author Template"
551
- msgstr "Plantilla d'Autor"
552
-
553
- #: breadcrumb_navxt_admin.php:678
554
- msgid "The template for author breadcrumbs."
555
- msgstr "La plantilla de la ruta de navegació per a autors."
556
-
557
- #: breadcrumb_navxt_admin.php:679
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Plantilla de l'Autor (sense vincle)"
560
-
561
- #: breadcrumb_navxt_admin.php:679
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "La plantilla de la ruta de navegació per a autors, quan l'element no està enllaçat."
564
-
565
- #: breadcrumb_navxt_admin.php:680
566
- msgid "Author Display Format"
567
- msgstr "Format de Desplegament d'Autor"
568
-
569
- #: breadcrumb_navxt_admin.php:680
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name utilitza el nom especificat en \"Mostrar aquest nom públicament\" en el perfil de l'usuari, l'altres opcions corresponen als camps nom (first_name), cognom (last_name) i alies (nickname) en el perfil de l'usuari."
572
-
573
- #: breadcrumb_navxt_admin.php:686
574
- msgid "Date Template"
575
- msgstr "Plantilla de la Data"
576
-
577
- #: breadcrumb_navxt_admin.php:686
578
- msgid "The template for date breadcrumbs."
579
- msgstr "La plantilla de la ruta de navegació per a dates."
580
-
581
- #: breadcrumb_navxt_admin.php:687
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Plantilla de la Data (sense vincle)"
584
-
585
- #: breadcrumb_navxt_admin.php:687
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "La plantilla de la ruta de navegació per a dates, quan l'element no està enllaçat."
588
-
589
- #: breadcrumb_navxt_admin.php:688
590
- msgid "Search Template"
591
- msgstr "Plantilla de la Recerca"
592
-
593
- #: breadcrumb_navxt_admin.php:688
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Plantilla del vincle a la primera pàgina de resultats de recerca en la ruta de navegació, utilitzat només quan aquests ocupen més d'una pàgina."
596
-
597
- #: breadcrumb_navxt_admin.php:689
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Plantilla de la Recerca (sense vincle)"
600
-
601
- #: breadcrumb_navxt_admin.php:689
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "La plantilla de la ruta de navegació per a la primera pàgina de resultats de recerca, utilitzat només quan aquests ocupen més d'una pàgina i l'element no està enllaçat."
604
-
605
- #: breadcrumb_navxt_admin.php:690
606
- msgid "404 Title"
607
- msgstr "Títol Error 404."
608
-
609
- #: breadcrumb_navxt_admin.php:691
610
- msgid "404 Template"
611
- msgstr "Plantilla d'Error 404."
612
-
613
- #: breadcrumb_navxt_admin.php:691
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "La plantilla per a la ruta de la pàgina d'error 404."
616
-
617
- #: breadcrumb_navxt_admin.php:697
618
- msgid "Save Changes"
619
- msgstr "Gravar Canvis"
620
-
621
- #: includes/mtekk_adminkit.php:211
622
- msgid "Settings"
623
- msgstr "Configuracions"
624
-
625
- #: includes/mtekk_adminkit.php:281
626
- msgid "Your settings are out of date."
627
- msgstr "Els paràmetres estan desactualitzats."
628
-
629
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
630
- msgid "Migrate the settings now."
631
- msgstr "Migrar la configuració ara."
632
-
633
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
634
- msgid "Migrate now."
635
- msgstr "Migrar ara."
636
-
637
- #: includes/mtekk_adminkit.php:298
638
- msgid "Your plugin install is incomplete."
639
- msgstr "La instal·lació del plugin no s'ha completat."
640
-
641
- #: includes/mtekk_adminkit.php:298
642
- msgid "Load default settings now."
643
- msgstr "Carregar els ajustaments predeterminats ara."
644
-
645
- #: includes/mtekk_adminkit.php:298
646
- msgid "Complete now."
647
- msgstr "Completar ara."
648
-
649
- #: includes/mtekk_adminkit.php:306
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Els ajustaments del plugin no són vàlids."
652
-
653
- #: includes/mtekk_adminkit.php:306
654
- msgid "Attempt to fix settings now."
655
- msgstr "Intentar arreglar els ajustaments ara."
656
-
657
- #: includes/mtekk_adminkit.php:306
658
- msgid "Fix now."
659
- msgstr "Arreglar ara."
660
-
661
- #: includes/mtekk_adminkit.php:484
662
- msgid "Settings successfully saved."
663
- msgstr "Ajustaments guardats amb èxit."
664
-
665
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
666
- msgid "Undo the options save."
667
- msgstr "Desfer modificació d'opcions."
668
-
669
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
670
- #: includes/mtekk_adminkit.php:594 includes/mtekk_adminkit.php:618
671
- #: includes/mtekk_adminkit.php:635
672
- msgid "Undo"
673
- msgstr "Desfer"
674
-
675
- #: includes/mtekk_adminkit.php:489
676
- msgid "Some settings were not saved."
677
- msgstr "Alguns ajustaments no van ser gravats."
678
-
679
- #: includes/mtekk_adminkit.php:490
680
- msgid "The following settings were not saved:"
681
- msgstr "Els següents ajustaments no van ser gravats:"
682
-
683
- #: includes/mtekk_adminkit.php:495
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Per favor, incloure aquest missatge en el seu %sreporti de bugs%s."
686
-
687
- #: includes/mtekk_adminkit.php:495
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Anar a la documentació en línia de %s per a la seva versió."
690
-
691
- #: includes/mtekk_adminkit.php:594
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Els ajustaments de Breadcrumb NavXT es van importar reeixidament des de l'arxiu."
694
-
695
- #: includes/mtekk_adminkit.php:594
696
- msgid "Undo the options import."
697
- msgstr "Desfer importació d'opcions."
698
-
699
- #: includes/mtekk_adminkit.php:599
700
- msgid "Importing settings from file failed."
701
- msgstr "Va fallar la importació dels ajustaments des de l'arxiu."
702
-
703
- #: includes/mtekk_adminkit.php:618
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Els ajustaments predeterminats de Breadcrumb NavXT es van restaurar amb èxit."
706
-
707
- #: includes/mtekk_adminkit.php:618
708
- msgid "Undo the options reset."
709
- msgstr "Desfer reinici d'opcions."
710
-
711
- #: includes/mtekk_adminkit.php:635
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Es va desfer amb èxit l'operació anterior."
714
-
715
- #: includes/mtekk_adminkit.php:635
716
- msgid "Undo the last undo operation."
717
- msgstr "Desfer l'última operació de \"desfer\""
718
-
719
- #: includes/mtekk_adminkit.php:670
720
- msgid "Settings successfully migrated."
721
- msgstr "Configuració migrats amb èxit."
722
-
723
- #: includes/mtekk_adminkit.php:677
724
- msgid "Default settings successfully installed."
725
- msgstr "Els ajustaments predeterminats es van instal·lar amb èxit."
726
-
727
- #: includes/mtekk_adminkit.php:778
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Importar els ajustaments de Breadcrumb NavXT des d'un arxiu XML, exportar els ajustaments actuals a un arxiu XML o reiniciar els valors predeterminats de Breadcrumb NavXT."
730
-
731
- #: includes/mtekk_adminkit.php:781
732
- msgid "Settings File"
733
- msgstr "Arxiu d'Ajustaments"
734
-
735
- #: includes/mtekk_adminkit.php:784
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Seleccionar un arxiu XML per a carregar i importar els ajustaments d'aquest plugin."
738
-
739
- #: breadcrumb_navxt_class.php:272
740
- msgid "Page %htitle%"
741
- msgstr "Pàgina %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:296
744
- msgid "404"
745
- msgstr "Página no encontrada"
746
-
747
- #: breadcrumb_navxt_class.php:301
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Resultats de recerca per a &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:316
752
- msgid "Articles by: %htitle%"
753
  msgstr "Articles per: %htitle%"
1
+ # Translation of Breadcrumb NavXT in Catalan
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-06-21 14:11:36+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: breadcrumb_navxt_admin.php:534 breadcrumb_navxt_admin.php:611
14
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
+ msgstr "La jerarquia en la qual es mostra la ruta de molles. Prengui nota que l'opció de \"Entrada/Pàgina Superior\" pot requerir un plugin addicional per a comportar-se com s'espera, ja que aquest és un tipus de publicació sense jerarquia."
16
+
17
+ #: breadcrumb_navxt_class.php:67 breadcrumb_navxt_class.php:239
18
+ #: breadcrumb_navxt_class.php:245 breadcrumb_navxt_class.php:251
19
+ #: breadcrumb_navxt_class.php:265 breadcrumb_navxt_class.php:277
20
+ #: breadcrumb_navxt_class.php:289
21
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
+ msgstr "<a title=\"Anar a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
+
24
+ #: breadcrumb_navxt_class.php:299
25
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
+ msgstr "Resultats de recerca per a &#39;<a title=\"Anar a la primer pàgina dels resultats de recerca per a %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
+
28
+ #: breadcrumb_navxt_admin.php:432
29
+ msgid "A collection of settings most likely to be modified are located under this tab."
30
+ msgstr "Un conjunt d'ajustaments que probablement seran modificats es troba en aquesta pestanya."
31
+
32
+ #: breadcrumb_navxt_admin.php:440
33
+ msgid "Title Length"
34
+ msgstr "Longitud del títol"
35
+
36
+ #: breadcrumb_navxt_admin.php:445
37
+ msgid "Limit the length of the breadcrumb title."
38
+ msgstr "Longitud màxima del títol de les molles."
39
+
40
+ #: breadcrumb_navxt_admin.php:488
41
+ msgid "Mainsite Breadcrumb"
42
+ msgstr "Molles (Breadcrumbs) del Lloc Principal"
43
+
44
+ #: breadcrumb_navxt_admin.php:500
45
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
+ msgstr "Els ajustaments per a tots els tipus d'entrades (Entrades, Pàgines, Personalitzades) es troben en aquesta pestanya."
47
+
48
+ #: breadcrumb_navxt_admin.php:500
49
+ msgid "Post Types"
50
+ msgstr "Tipus d'Entrades"
51
+
52
+ #: breadcrumb_navxt_admin.php:506
53
+ msgid "Post Hierarchy Display"
54
+ msgstr "Jerarquia per a desplegar entrades"
55
+
56
+ #: breadcrumb_navxt_admin.php:510
57
+ msgid "Post Hierarchy"
58
+ msgstr "Jerarquia d'entrades"
59
+
60
+ #: breadcrumb_navxt_admin.php:578
61
+ msgid "%s Hierarchy Display"
62
+ msgstr "%s Jerarquia de Desplegament"
63
+
64
+ #: breadcrumb_navxt_admin.php:640
65
+ msgid "Post Formats"
66
+ msgstr "Formats d'Entrades"
67
+
68
+ #: breadcrumb_navxt_admin.php:450
69
+ msgid "Max Title Length: "
70
+ msgstr "Longitud Màxima del Títol:"
71
+
72
+ #: breadcrumb_navxt_admin.php:501
73
+ msgid "Posts"
74
+ msgstr "Entrades"
75
+
76
+ #: breadcrumb_navxt_admin.php:518 breadcrumb_navxt_admin.php:587
77
+ msgid "Post Parent"
78
+ msgstr "Entrada o Pàgina superior"
79
+
80
+ #: breadcrumb_navxt_admin.php:607
81
+ msgid "The hierarchy which the breadcrumb trail will show."
82
+ msgstr "La jerarquia que mostrarà la ruta de molles."
83
+
84
+ #: breadcrumb_navxt_admin.php:582
85
+ msgid "%s Hierarchy"
86
+ msgstr "%s Jerarquia"
87
+
88
+ #: breadcrumb_navxt_admin.php:625
89
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
+ msgstr "Els ajustaments per a totes les taxonomies (incloent Categories, Etiquetes i Personalitzades) estan en aquesta pestanya. "
91
+
92
+ #: breadcrumb_navxt_admin.php:625
93
+ msgid "Taxonomies"
94
+ msgstr "Taxonomies"
95
+
96
+ #: breadcrumb_navxt_admin.php:643
97
+ msgid "Post Format Template"
98
+ msgstr "Plantilla per a Format de l'Entrada"
99
+
100
+ #: breadcrumb_navxt_admin.php:643
101
+ msgid "The template for post format breadcrumbs."
102
+ msgstr "La plantilla per al format de la ruta de molles en l'entrada"
103
+
104
+ #: breadcrumb_navxt_admin.php:644
105
+ msgid "Post Format Template (Unlinked)"
106
+ msgstr "Plantilla per a Format de l'Entrada (sense enllaç)"
107
+
108
+ #: breadcrumb_navxt_admin.php:644
109
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
+ msgstr "La plantilla per al format de la ruta de molles en l'entrada, utilitzat només quan la molla no té enllaç. "
111
+
112
+ #: breadcrumb_navxt_admin.php:674
113
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
+ msgstr "Els ajustaments per a autor i arxius, recerques, i pàgines 404 estan en aquesta pestanya."
115
+
116
+ #: breadcrumb_navxt_admin.php:675
117
+ msgid "Author Archives"
118
+ msgstr "Arxius d'Autor "
119
+
120
+ #: breadcrumb_navxt_class.php:304 breadcrumb_navxt_class.php:309
121
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
+ msgstr "<a title=\"Anar als arxius de l'etiqueta %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
+
124
+ #: breadcrumb_navxt_class.php:314
125
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
+ msgstr "Articles per: <a title=\"Anar a la primer pàgina d'entrades per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
+
128
+ #: breadcrumb_navxt_class.php:321
129
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
+ msgstr "<a title=\"Anar a l'arxiu de la categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+
132
+ #: breadcrumb_navxt_class.php:325
133
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
+ msgstr "<a title=\"Anar a l'arxiu de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+
136
+ #: includes/mtekk_adminkit.php:290
137
+ msgid "Your settings are for a newer version."
138
+ msgstr "Els seus ajustaments són per a una versió més nova."
139
+
140
+ #: breadcrumb_navxt_widget.php:96
141
+ msgid "Text to show before the trail:"
142
+ msgstr "Text a mostrar abans de les molles:"
143
+
144
+ #: breadcrumb_navxt_widget.php:103
145
+ msgid "Schema.org"
146
+ msgstr "Schema.org"
147
+
148
+ #: breadcrumb_navxt_admin.php:336
149
+ msgid "Go to the Breadcrumb NavXT translation project."
150
+ msgstr "Anar al projecte de traducció de Breadcrumb NavXT"
151
+
152
+ #: breadcrumb_navxt_admin.php:36
153
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
+ msgstr "La seva versió de PHP és massa antiga, per favor, actualitzi a la nova versió. La seva versió és %1$s, el plugin Breadcrumb NavXT requereix la versió %2$s "
155
+
156
+ #: breadcrumb_navxt_widget.php:33
157
+ msgid "Adds a breadcrumb trail to your sidebar"
158
+ msgstr "Agrega una ruta de navegació en la seva barra lateral"
159
+
160
+ #: breadcrumb_navxt_widget.php:92
161
+ msgid "Title:"
162
+ msgstr "Títol:"
163
+
164
+ #: breadcrumb_navxt_widget.php:100
165
+ msgid "Output trail as:"
166
+ msgstr "Mostrar ruta com:"
167
+
168
+ #: breadcrumb_navxt_widget.php:102
169
+ msgid "List"
170
+ msgstr "Llista"
171
+
172
+ #: breadcrumb_navxt_widget.php:104
173
+ msgid "Plain"
174
+ msgstr "Text pla"
175
+
176
+ #: breadcrumb_navxt_widget.php:109
177
+ msgid "Link the breadcrumbs"
178
+ msgstr "Enllaç a la Ruta"
179
+
180
+ #: breadcrumb_navxt_widget.php:111
181
+ msgid "Reverse the order of the trail"
182
+ msgstr "Invertir l'ordre de la ruta"
183
+
184
+ #: breadcrumb_navxt_widget.php:113
185
+ msgid "Hide the trail on the front page"
186
+ msgstr "Ocultar la ruta de la pàgina principal"
187
+
188
+ #: breadcrumb_navxt_admin.php:213
189
+ msgid "Insufficient privileges to proceed."
190
+ msgstr "No té privilegis per a procedir."
191
+
192
+ #: breadcrumb_navxt_admin.php:329
193
+ msgid "Tips for the settings are located below select options."
194
+ msgstr "Trobarà tips per als ajustaments sota cada opció."
195
+
196
+ #: breadcrumb_navxt_admin.php:330
197
+ msgid "Resources"
198
+ msgstr "Recursos"
199
+
200
+ #: breadcrumb_navxt_admin.php:331
201
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
+ msgstr "%sTutorials i Instructius%s: En el *website de l'autor estan disponibles diverses guies, tutorials i instructius."
203
+
204
+ #: breadcrumb_navxt_admin.php:331
205
+ msgid "Go to the Breadcrumb NavXT tag archive."
206
+ msgstr "Anar a l'arxiu d'etiquetes de Breadcrumb NavXT"
207
+
208
+ #: breadcrumb_navxt_admin.php:332
209
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
+ msgstr "%sDocumentació En Línia%s: Revisi la documentació per a més informació tècnica."
211
+
212
+ #: breadcrumb_navxt_admin.php:332
213
+ msgid "Go to the Breadcrumb NavXT online documentation"
214
+ msgstr "Anar a la documentació en línia de Breadcrumb NavXT (en anglès)"
215
+
216
+ #: breadcrumb_navxt_admin.php:333
217
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
+ msgstr "%sReportar Errors%s: Si pensa que ha trobat un error, per favor inclogui la seva versió de WordPress i els detalls de com es reproduïx l'error."
219
+
220
+ #: breadcrumb_navxt_admin.php:333
221
+ msgid "Go to the Breadcrumb NavXT support post for your version."
222
+ msgstr "Anar a la documentació en línia de Breadcrumb NavXT para la seva versió. "
223
+
224
+ #: breadcrumb_navxt_admin.php:334
225
+ msgid "Giving Back"
226
+ msgstr "Donar de tornada"
227
+
228
+ #: breadcrumb_navxt_admin.php:335
229
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
+ msgstr "%sDonar%s: Li agrada Breadcrumb NavXT i desitja col·laborar amb el desenvolupament? Consideri comprar-li a l'autor una cervesa."
231
+
232
+ #: breadcrumb_navxt_admin.php:335
233
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
+ msgstr "Anar a la pàgina de Paypal para donar-li un donatiu a. Breadcrumb NavXT."
235
+
236
+ #: breadcrumb_navxt_admin.php:336
237
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
+ msgstr "%sTraduir%s: No està disponible en el seu idioma? Comuniqui's amb John Havlik para col·laborar amb la traducció."
239
+
240
+ #: breadcrumb_navxt_admin.php:341 breadcrumb_navxt_admin.php:432
241
+ #: breadcrumb_navxt_admin.php:433
242
+ msgid "General"
243
+ msgstr "General"
244
+
245
+ #: breadcrumb_navxt_admin.php:344
246
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
+ msgstr "Perquè prenguin efecte els ajustaments en aquesta pàgina, ha d'incloure el widget del plugin o col·locar el codi en la seva plantilla."
248
+
249
+ #: breadcrumb_navxt_admin.php:345
250
+ msgid "Breadcrumb trail with separators"
251
+ msgstr "Ruta de Navegació amb Separadors"
252
+
253
+ #: breadcrumb_navxt_admin.php:351
254
+ msgid "Breadcrumb trail in list form"
255
+ msgstr "Ruta de Navegació com Llistat"
256
+
257
+ #: breadcrumb_navxt_admin.php:360
258
+ msgid "Quick Start"
259
+ msgstr "Inici Ràpid"
260
+
261
+ #: breadcrumb_navxt_admin.php:363
262
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
+ msgstr "Fent servir el codi d'Inici Ràpid de la secció anterior, el següent CSS pot utilitzar-se com base per a donar-li estil a la seva ruta de navegació."
264
+
265
+ #: breadcrumb_navxt_admin.php:375
266
+ msgid "Styling"
267
+ msgstr "Estilo"
268
+
269
+ #: breadcrumb_navxt_admin.php:381
270
+ msgid "Import/Export/Reset"
271
+ msgstr "Importar/Exportar/Reiniciar"
272
+
273
+ #: breadcrumb_navxt_admin.php:405 includes/mtekk_adminkit.php:786
274
+ msgid "Import"
275
+ msgstr "Importar"
276
+
277
+ #: breadcrumb_navxt_admin.php:406 includes/mtekk_adminkit.php:787
278
+ msgid "Export"
279
+ msgstr "Exportar"
280
+
281
+ #: breadcrumb_navxt_admin.php:407 includes/mtekk_adminkit.php:788
282
+ msgid "Reset"
283
+ msgstr "Reiniciar"
284
+
285
+ #: breadcrumb_navxt_admin.php:420
286
+ msgid "Breadcrumb NavXT Settings"
287
+ msgstr "Opcions de Configuració de Breadcrumb NavXT"
288
+
289
+ #: breadcrumb_navxt_admin.php:436
290
+ msgid "Breadcrumb Separator"
291
+ msgstr "Separador de Navegació"
292
+
293
+ #: breadcrumb_navxt_admin.php:436
294
+ msgid "Placed in between each breadcrumb."
295
+ msgstr "Col·locat enmig de cada opció de navegació."
296
+
297
+ #: breadcrumb_navxt_admin.php:470 breadcrumb_navxt_admin.php:473
298
+ msgid "Home Breadcrumb"
299
+ msgstr "Incloure l'Inici"
300
+
301
+ #: breadcrumb_navxt_admin.php:473
302
+ msgid "Place the home breadcrumb in the trail."
303
+ msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
304
+
305
+ #: breadcrumb_navxt_admin.php:474
306
+ msgid "Home Template"
307
+ msgstr "Plantilla de la Pàgina d'Inici"
308
+
309
+ #: breadcrumb_navxt_admin.php:474
310
+ msgid "The template for the home breadcrumb."
311
+ msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici."
312
+
313
+ #: breadcrumb_navxt_admin.php:475
314
+ msgid "Home Template (Unlinked)"
315
+ msgstr "Plantilla de la Pàgina d'Inici (sense vincle)"
316
+
317
+ #: breadcrumb_navxt_admin.php:475
318
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
+ msgstr "La plantilla de la ruta de navegació per a la pàgina d'inici, quan l'element d'inici no està enllaçat."
320
+
321
+ #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:482
322
+ msgid "Blog Breadcrumb"
323
+ msgstr "Incloure Inici (del Blog)"
324
+
325
+ #: breadcrumb_navxt_admin.php:482
326
+ msgid "Place the blog breadcrumb in the trail."
327
+ msgstr "Col·locar un enllaç a la pàgina d'inici en la ruta de navegació."
328
+
329
+ #: breadcrumb_navxt_admin.php:483
330
+ msgid "Blog Template"
331
+ msgstr "Plantilla del Blog"
332
+
333
+ #: breadcrumb_navxt_admin.php:483
334
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
335
+ msgstr "La plantilla de la ruta de navegació per al blog, utilitzat només quan la pàgina inicial és una pàgina estàtica."
336
+
337
+ #: breadcrumb_navxt_admin.php:484
338
+ msgid "Blog Template (Unlinked)"
339
+ msgstr "Plantilla del Blog (sense vincle)"
340
+
341
+ #: breadcrumb_navxt_admin.php:484
342
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
+ msgstr "La plantilla de la ruta de navegació per al blog, utilitzat només quan la pàgina inicial és una pàgina estàtica i l'element d'inici no està enllaçat."
344
+
345
+ #: breadcrumb_navxt_admin.php:491
346
+ msgid "Main Site Breadcrumb"
347
+ msgstr "Ruta del Lloc Principal"
348
+
349
+ #: breadcrumb_navxt_admin.php:491
350
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
+ msgstr "Col·locar un enllaç a la pàgina d'inici del lloc principal en la ruta de navegació d'una configuració amb múltiples blogs."
352
+
353
+ #: breadcrumb_navxt_admin.php:492
354
+ msgid "Main Site Home Template"
355
+ msgstr "Plantilla d'Inici del Lloc Principal"
356
+
357
+ #: breadcrumb_navxt_admin.php:492
358
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
+ msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs."
360
+
361
+ #: breadcrumb_navxt_admin.php:493
362
+ msgid "Main Site Home Template (Unlinked)"
363
+ msgstr "Plantilla d'Inici del Lloc Principal (sense vincle)"
364
+
365
+ #: breadcrumb_navxt_admin.php:493
366
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
+ msgstr "La plantilla d'enllaç per a la pàgina d'inici del lloc principal, utilitzada només en configuracions amb múltiples blogs i l'element de navegació no està enllaçat."
368
+
369
+ #: breadcrumb_navxt_admin.php:461
370
+ msgid "Current Item"
371
+ msgstr "Item Actual"
372
+
373
+ #: breadcrumb_navxt_admin.php:464
374
+ msgid "Link Current Item"
375
+ msgstr "Incloure Vincle a Ítem Actual"
376
+
377
+ #: breadcrumb_navxt_admin.php:464
378
+ msgid "Yes"
379
+ msgstr "Si"
380
+
381
+ #: breadcrumb_navxt_admin.php:465
382
+ msgid "Paged Breadcrumb"
383
+ msgstr "Ruta de Navegació paginada"
384
+
385
+ #: breadcrumb_navxt_admin.php:465
386
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
387
+ msgstr "Incloure la navegació paginada en la ruta de navegació"
388
+
389
+ #: breadcrumb_navxt_admin.php:465
390
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
+ msgstr "Mostrar que l'usuari està en una pàgina distinta a la primera d'una entrada/arxiu amb múltiples pàgines. "
392
+
393
+ #: breadcrumb_navxt_admin.php:466
394
+ msgid "Paged Template"
395
+ msgstr "Plantilla d'Entrada paginada"
396
+
397
+ #: breadcrumb_navxt_admin.php:466
398
+ msgid "The template for paged breadcrumbs."
399
+ msgstr "Plantilla de ruta de navegació d'entrades de diverses pàgines."
400
+
401
+ #: breadcrumb_navxt_admin.php:504
402
+ msgid "Post Template"
403
+ msgstr "Plantilla d'Entrades"
404
+
405
+ #: breadcrumb_navxt_admin.php:504
406
+ msgid "The template for post breadcrumbs."
407
+ msgstr "La plantilla de la ruta de navegació per a entrades."
408
+
409
+ #: breadcrumb_navxt_admin.php:505
410
+ msgid "Post Template (Unlinked)"
411
+ msgstr "Plantilla de l'Entrada (sense vincle)"
412
+
413
+ #: breadcrumb_navxt_admin.php:505
414
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
+ msgstr "La plantilla de la ruta de navegació per a entrades, quan l'element no està enllaçat."
416
+
417
+ #: breadcrumb_navxt_admin.php:506
418
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
+ msgstr "Mostrar la ruta de navegació amb la classificació que duu l'entrada."
420
+
421
+ #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:626
422
+ msgid "Categories"
423
+ msgstr "Categories"
424
+
425
+ #: breadcrumb_navxt_admin.php:515
426
+ msgid "Dates"
427
+ msgstr "Dates"
428
+
429
+ #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:633
430
+ msgid "Tags"
431
+ msgstr "Etiquetes"
432
+
433
+ #: breadcrumb_navxt_admin.php:538
434
+ msgid "Pages"
435
+ msgstr "Pàgines"
436
+
437
+ #: breadcrumb_navxt_admin.php:541
438
+ msgid "Page Template"
439
+ msgstr "Plantilla de la Pàgina"
440
+
441
+ #: breadcrumb_navxt_admin.php:541
442
+ msgid "The template for page breadcrumbs."
443
+ msgstr "La plantilla de la ruta de navegació per a pàgines."
444
+
445
+ #: breadcrumb_navxt_admin.php:542
446
+ msgid "Page Template (Unlinked)"
447
+ msgstr "Plantilla de la Pàgina (sense vincle)"
448
+
449
+ #: breadcrumb_navxt_admin.php:542
450
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
+ msgstr "La plantilla de la ruta de navegació per a pàgines, quan l'element no està enllaçat."
452
+
453
+ #: breadcrumb_navxt_admin.php:543
454
+ msgid "Attachment Template"
455
+ msgstr "Plantilla d'Arxiu Adjunt"
456
+
457
+ #: breadcrumb_navxt_admin.php:543
458
+ msgid "The template for attachment breadcrumbs."
459
+ msgstr "La plantilla de la ruta de navegació per a arxius adjunts."
460
+
461
+ #: breadcrumb_navxt_admin.php:544
462
+ msgid "Attachment Template (Unlinked)"
463
+ msgstr "Plantilla de l'Arxiu Adjunt (sense vincle)"
464
+
465
+ #: breadcrumb_navxt_admin.php:544
466
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
+ msgstr "La plantilla de la ruta de navegació per a arxius adjunts, quan l'element no està enllaçat."
468
+
469
+ #: breadcrumb_navxt_admin.php:742
470
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
+ msgstr "<a title=\"Anar a %title%.\" href=\"%link%\">%htitle%</a>"
472
+
473
+ #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_class.php:63
474
+ msgid "%htitle%"
475
+ msgstr "%htitle%"
476
+
477
+ #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
478
+ msgid "%s Template"
479
+ msgstr "Plantilla de %s"
480
+
481
+ #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
482
+ msgid "The template for %s breadcrumbs."
483
+ msgstr "La plantilla de la ruta de navegació per a %s."
484
+
485
+ #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
486
+ msgid "%s Template (Unlinked)"
487
+ msgstr "Plantilla de %s (sense vincle)"
488
+
489
+ #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
490
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
+ msgstr "La plantilla de la ruta de navegació per a %s, quan l'element no està enllaçat."
492
+
493
+ #: breadcrumb_navxt_admin.php:570
494
+ msgid "%s Root Page"
495
+ msgstr "%s Pàgina Arrel"
496
+
497
+ #: breadcrumb_navxt_admin.php:573
498
+ msgid "&mdash; Select &mdash;"
499
+ msgstr "&mdash; Seleccioni &mdash;"
500
+
501
+ #: breadcrumb_navxt_admin.php:577
502
+ msgid "%s Archive Display"
503
+ msgstr "Desplegament d'Arxius de %s"
504
+
505
+ #: breadcrumb_navxt_admin.php:577
506
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
+ msgstr "Mostrar la ruta de navegació per als %s arxius de les entrades de tipus."
508
+
509
+ #: breadcrumb_navxt_admin.php:578
510
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
+ msgstr "Mostrar la classificació que duu a %s en la ruta de navegació."
512
+
513
+ #: breadcrumb_navxt_admin.php:629
514
+ msgid "Category Template"
515
+ msgstr "Plantilla de Categoria"
516
+
517
+ #: breadcrumb_navxt_admin.php:629
518
+ msgid "The template for category breadcrumbs."
519
+ msgstr "La plantilla de la ruta de navegació per a categories."
520
+
521
+ #: breadcrumb_navxt_admin.php:630
522
+ msgid "Category Template (Unlinked)"
523
+ msgstr "Plantilla de la Categoria (sense vincle)"
524
+
525
+ #: breadcrumb_navxt_admin.php:630
526
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
+ msgstr "La plantilla de la ruta de navegació per a categories, quan l'element no està enllaçat."
528
+
529
+ #: breadcrumb_navxt_admin.php:636
530
+ msgid "Tag Template"
531
+ msgstr "Plantilla de l'Etiqueta"
532
+
533
+ #: breadcrumb_navxt_admin.php:636
534
+ msgid "The template for tag breadcrumbs."
535
+ msgstr "La plantilla de la ruta de navegació per a etiquetes."
536
+
537
+ #: breadcrumb_navxt_admin.php:637
538
+ msgid "Tag Template (Unlinked)"
539
+ msgstr "Plantilla de l'Etiqueta (sense vincle)"
540
+
541
+ #: breadcrumb_navxt_admin.php:637
542
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
+ msgstr "La plantilla de la ruta de navegació per a etiquetes, quan l'element no està enllaçat."
544
+
545
+ #: breadcrumb_navxt_admin.php:674 breadcrumb_navxt_admin.php:683
546
+ msgid "Miscellaneous"
547
+ msgstr "Miscel·lanis"
548
+
549
+ #: breadcrumb_navxt_admin.php:678
550
+ msgid "Author Template"
551
+ msgstr "Plantilla d'Autor"
552
+
553
+ #: breadcrumb_navxt_admin.php:678
554
+ msgid "The template for author breadcrumbs."
555
+ msgstr "La plantilla de la ruta de navegació per a autors."
556
+
557
+ #: breadcrumb_navxt_admin.php:679
558
+ msgid "Author Template (Unlinked)"
559
+ msgstr "Plantilla de l'Autor (sense vincle)"
560
+
561
+ #: breadcrumb_navxt_admin.php:679
562
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
+ msgstr "La plantilla de la ruta de navegació per a autors, quan l'element no està enllaçat."
564
+
565
+ #: breadcrumb_navxt_admin.php:680
566
+ msgid "Author Display Format"
567
+ msgstr "Format de Desplegament d'Autor"
568
+
569
+ #: breadcrumb_navxt_admin.php:680
570
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
+ msgstr "display_name utilitza el nom especificat en \"Mostrar aquest nom públicament\" en el perfil de l'usuari, l'altres opcions corresponen als camps nom (first_name), cognom (last_name) i alies (nickname) en el perfil de l'usuari."
572
+
573
+ #: breadcrumb_navxt_admin.php:686
574
+ msgid "Date Template"
575
+ msgstr "Plantilla de la Data"
576
+
577
+ #: breadcrumb_navxt_admin.php:686
578
+ msgid "The template for date breadcrumbs."
579
+ msgstr "La plantilla de la ruta de navegació per a dates."
580
+
581
+ #: breadcrumb_navxt_admin.php:687
582
+ msgid "Date Template (Unlinked)"
583
+ msgstr "Plantilla de la Data (sense vincle)"
584
+
585
+ #: breadcrumb_navxt_admin.php:687
586
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
+ msgstr "La plantilla de la ruta de navegació per a dates, quan l'element no està enllaçat."
588
+
589
+ #: breadcrumb_navxt_admin.php:688
590
+ msgid "Search Template"
591
+ msgstr "Plantilla de la Recerca"
592
+
593
+ #: breadcrumb_navxt_admin.php:688
594
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
+ msgstr "Plantilla del vincle a la primera pàgina de resultats de recerca en la ruta de navegació, utilitzat només quan aquests ocupen més d'una pàgina."
596
+
597
+ #: breadcrumb_navxt_admin.php:689
598
+ msgid "Search Template (Unlinked)"
599
+ msgstr "Plantilla de la Recerca (sense vincle)"
600
+
601
+ #: breadcrumb_navxt_admin.php:689
602
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
+ msgstr "La plantilla de la ruta de navegació per a la primera pàgina de resultats de recerca, utilitzat només quan aquests ocupen més d'una pàgina i l'element no està enllaçat."
604
+
605
+ #: breadcrumb_navxt_admin.php:690
606
+ msgid "404 Title"
607
+ msgstr "Títol Error 404."
608
+
609
+ #: breadcrumb_navxt_admin.php:691
610
+ msgid "404 Template"
611
+ msgstr "Plantilla d'Error 404."
612
+
613
+ #: breadcrumb_navxt_admin.php:691
614
+ msgid "The template for 404 breadcrumbs."
615
+ msgstr "La plantilla per a la ruta de la pàgina d'error 404."
616
+
617
+ #: breadcrumb_navxt_admin.php:697
618
+ msgid "Save Changes"
619
+ msgstr "Gravar Canvis"
620
+
621
+ #: includes/mtekk_adminkit.php:211
622
+ msgid "Settings"
623
+ msgstr "Configuracions"
624
+
625
+ #: includes/mtekk_adminkit.php:281
626
+ msgid "Your settings are out of date."
627
+ msgstr "Els paràmetres estan desactualitzats."
628
+
629
+ #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
630
+ msgid "Migrate the settings now."
631
+ msgstr "Migrar la configuració ara."
632
+
633
+ #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
634
+ msgid "Migrate now."
635
+ msgstr "Migrar ara."
636
+
637
+ #: includes/mtekk_adminkit.php:298
638
+ msgid "Your plugin install is incomplete."
639
+ msgstr "La instal·lació del plugin no s'ha completat."
640
+
641
+ #: includes/mtekk_adminkit.php:298
642
+ msgid "Load default settings now."
643
+ msgstr "Carregar els ajustaments predeterminats ara."
644
+
645
+ #: includes/mtekk_adminkit.php:298
646
+ msgid "Complete now."
647
+ msgstr "Completar ara."
648
+
649
+ #: includes/mtekk_adminkit.php:306
650
+ msgid "Your plugin settings are invalid."
651
+ msgstr "Els ajustaments del plugin no són vàlids."
652
+
653
+ #: includes/mtekk_adminkit.php:306
654
+ msgid "Attempt to fix settings now."
655
+ msgstr "Intentar arreglar els ajustaments ara."
656
+
657
+ #: includes/mtekk_adminkit.php:306
658
+ msgid "Fix now."
659
+ msgstr "Arreglar ara."
660
+
661
+ #: includes/mtekk_adminkit.php:484
662
+ msgid "Settings successfully saved."
663
+ msgstr "Ajustaments guardats amb èxit."
664
+
665
+ #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
666
+ msgid "Undo the options save."
667
+ msgstr "Desfer modificació d'opcions."
668
+
669
+ #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
670
+ #: includes/mtekk_adminkit.php:594 includes/mtekk_adminkit.php:618
671
+ #: includes/mtekk_adminkit.php:635
672
+ msgid "Undo"
673
+ msgstr "Desfer"
674
+
675
+ #: includes/mtekk_adminkit.php:489
676
+ msgid "Some settings were not saved."
677
+ msgstr "Alguns ajustaments no van ser gravats."
678
+
679
+ #: includes/mtekk_adminkit.php:490
680
+ msgid "The following settings were not saved:"
681
+ msgstr "Els següents ajustaments no van ser gravats:"
682
+
683
+ #: includes/mtekk_adminkit.php:495
684
+ msgid "Please include this message in your %sbug report%s."
685
+ msgstr "Per favor, incloure aquest missatge en el seu %sreporti de bugs%s."
686
+
687
+ #: includes/mtekk_adminkit.php:495
688
+ msgid "Go to the %s support post for your version."
689
+ msgstr "Anar a la documentació en línia de %s per a la seva versió."
690
+
691
+ #: includes/mtekk_adminkit.php:594
692
+ msgid "Settings successfully imported from the uploaded file."
693
+ msgstr "Els ajustaments de Breadcrumb NavXT es van importar reeixidament des de l'arxiu."
694
+
695
+ #: includes/mtekk_adminkit.php:594
696
+ msgid "Undo the options import."
697
+ msgstr "Desfer importació d'opcions."
698
+
699
+ #: includes/mtekk_adminkit.php:599
700
+ msgid "Importing settings from file failed."
701
+ msgstr "Va fallar la importació dels ajustaments des de l'arxiu."
702
+
703
+ #: includes/mtekk_adminkit.php:618
704
+ msgid "Settings successfully reset to the default values."
705
+ msgstr "Els ajustaments predeterminats de Breadcrumb NavXT es van restaurar amb èxit."
706
+
707
+ #: includes/mtekk_adminkit.php:618
708
+ msgid "Undo the options reset."
709
+ msgstr "Desfer reinici d'opcions."
710
+
711
+ #: includes/mtekk_adminkit.php:635
712
+ msgid "Settings successfully undid the last operation."
713
+ msgstr "Es va desfer amb èxit l'operació anterior."
714
+
715
+ #: includes/mtekk_adminkit.php:635
716
+ msgid "Undo the last undo operation."
717
+ msgstr "Desfer l'última operació de \"desfer\""
718
+
719
+ #: includes/mtekk_adminkit.php:670
720
+ msgid "Settings successfully migrated."
721
+ msgstr "Configuració migrats amb èxit."
722
+
723
+ #: includes/mtekk_adminkit.php:677
724
+ msgid "Default settings successfully installed."
725
+ msgstr "Els ajustaments predeterminats es van instal·lar amb èxit."
726
+
727
+ #: includes/mtekk_adminkit.php:778
728
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
+ msgstr "Importar els ajustaments de Breadcrumb NavXT des d'un arxiu XML, exportar els ajustaments actuals a un arxiu XML o reiniciar els valors predeterminats de Breadcrumb NavXT."
730
+
731
+ #: includes/mtekk_adminkit.php:781
732
+ msgid "Settings File"
733
+ msgstr "Arxiu d'Ajustaments"
734
+
735
+ #: includes/mtekk_adminkit.php:784
736
+ msgid "Select a XML settings file to upload and import settings from."
737
+ msgstr "Seleccionar un arxiu XML per a carregar i importar els ajustaments d'aquest plugin."
738
+
739
+ #: breadcrumb_navxt_class.php:272
740
+ msgid "Page %htitle%"
741
+ msgstr "Pàgina %htitle%"
742
+
743
+ #: breadcrumb_navxt_class.php:296
744
+ msgid "404"
745
+ msgstr "Página no encontrada"
746
+
747
+ #: breadcrumb_navxt_class.php:301
748
+ msgid "Search results for &#39;%htitle%&#39;"
749
+ msgstr "Resultats de recerca per a &#39;%htitle%&#39;"
750
+
751
+ #: breadcrumb_navxt_class.php:316
752
+ msgid "Articles by: %htitle%"
753
  msgstr "Articles per: %htitle%"
languages/breadcrumb-navxt-cs_CZ.mo CHANGED
Binary file
languages/breadcrumb-navxt-cs_CZ.po CHANGED
@@ -1,753 +1,776 @@
1
- # Translation of Breadcrumb NavXT in Czech
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-02-14 02:35:45+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "Struktura, kterou zobrazí řetězec drobečkové navigace. Mějte na paměti, že možnost \"Rodič příspěvku\" může pro korektní fungování vyžadovat další plugin, protože tento typ obsahu není strukturovaný."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Zobrazit %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Výhledky hledání pro &#39;<a title=\"Zobrazit první stránku výsledků hledání pro %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Sestava nastavení, které budete pravděpodobně chtít použít, je zde."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Délka titulku"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Omezte délku titulku v názvu drobečkové navigace."
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Navigace hlavního webu"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Nastavení všech typů obsahu jsou umístěna zde (Příspěvky, Stránky a vlastní typy obsahu)."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Typy obsahu"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Zobrazení hierarchie příspěvku"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Hierarchie příspěvku"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "Zobrazení hierarchie %s"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Formáty příspěvku"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Maximální délka titulku:"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Příspěvky"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Rodič příspěvku"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "Hierarchie, kterou zobrazí řetězec drobečkové navigace."
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "Hierarchie %s"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Nastavení všech taxonomií (včetně Rubrik, Tagů a vlastních taxonomií) jsou umístěna zde."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Taxonomie"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Šablona formátu příspěvku"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "Šablona pro formát příspěvku drobečkové navigace."
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Šablona formátu příspěvku (bez odkazu)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "Šablona pro post_format drobečkovou navigaci, použita pouze, když není drobečková navigace s odkazem."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Nastavení pro autora a archiv data, hledání a stránky 404 jsou umístěna zde."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Archivy autora"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Zobrazit archivy štítku %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Články od: <a title=\"Zobrazit první stránku příspěvků od %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Zobrazit archivy rubriky %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Zobrazit archivy %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "Vaše nastavení je určeno pro novější verzi."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Text k zobrazení před řetězcem:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Otevřít projekt překladu pluginu Breadcrumb NavXT."
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "Vaše verze PHP je příliš zastaralá, proveďte prosím aktualizaci na novější. Používáte verzi %1$s, Breadcrumb NavXT vyžaduje %2$s"
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Přidá řetězec drobečkové navigace do sidebaru"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Titulek:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Výstup řetězce jako:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Seznam"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Čistý"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Nalinkovat drobečkovou navigaci"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Obrátit pořadí řetězce"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Skrýt řetězec z domovské stránky"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Nedostatečná práva k pokračování"
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Typy pro nastavení jsou umístění pod výběrem možnosti."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Zdroje"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sTutoriály a návody%: Na webových stránkách je k dispozici několik tutoriálů a návodů."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Otevřít archiv tagů Breadcrumb NavXT."
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sOnline dokumentace%: Navštivte dokumentaci pro více hlubších technických informací."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Otevřít online dokumentaci Breadcrumb NavXT"
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
- msgstr "%sNahlašte chybu%: Pokud si myslíte, že jste nalezli chybu, přiložte prosím verzi vašeho WordPressu a podrobné informace o výskytu chyby."
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Otevřít vlákno podpory pro vaši verzi Breadcrumb NavXT"
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Dát zpět"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%Přispějte%: Líbí se vám Breadcrumb NavXT a chtěli byste přispět na jeho vývoj? Zvažte zakoupení piva pro autora."
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Otevřít PayPal pro odeslání příspěvku na Breadcrumb NavXT"
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%Překlad%: Není k dispozici váš jazyk? Kontaktujte Johna Havlik pro přeložení."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "Obecné"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
- msgstr "Aby bylo nastavení na této stránce platné, musíte buď použít Breadcrumb NavXT widget nebo vložit kód níže do vaší šablony."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Řetězec drobečkové navigace s oddělovačem"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Řetězec drobečkové navigace jako vysouvací pole formuláře"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Rychlý start"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Použijte kód ze sekce Rychlý start níže, následující CSS může být použito jako základ pro stylování vaší drobečkové navigace."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Stylování"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Import/Export/Reset"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Import"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Export"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Reset"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Nastavení BreadCrumb NavXT"
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Oddělovač prvků"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Je vložen mezi každý prvek"
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Úvodní prvek"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Vložit do řetězce úvodní prvek"
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Šablona úvodního prvku"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "Šablona pro úvodní prvek"
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Úvodní šablona (bez odkazu)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "Šablona pro úvodní prvek zobrazena v případě, že není použit odkaz."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Prvek blogu"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Vložit prvek blogu do řetězce."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Šablona blogu"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "Šablona prvku blogu, je použita pouze v případě prostředí se statickou domovskou stránkou."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Šablona blogu (bez odkazu)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "Šablona pro prvek blogu, použita pouze v případě prostředí se statickou domovskou stránkou a bez odkazu."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Prvek hlavní stránky"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Vloží prvek hlavní stránky do řetězce v multisite systému."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Šablona úvodu hlavní stránky:"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Šablona pro úvodní prvek hlavní stránky, bude použita pouze v multisite systému."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Šablona úvodu hlavní stránky (bez odkazu)"
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Šablona pro úvodní prvek hlavní stránky, bude použita pouze v multisite systému a bez odkazu."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Současná položka"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Současná položka jako odkaz"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Ano"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Stránkovaný prvek"
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Zahrnout stránkovaný prvek v řetězci drobečkové navigace."
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Indikuje, že je uživatel na jiné, než první stránce stránkovaného výpisu příspěvků / stránek."
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Stránkovaná šablona"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Šablona pro stránkovaný prvek drobečkové navigace."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Šablona příspěvku"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Šablona příspěvku v drobečkové navigaci."
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Šablona příspěvku (bez odkazu)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Šablona příspěvku v drobečkové navigaci, bude použita pouze bez odkazu."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Zobrazit taxonomii vedoucí k příspěvku v řetězci drobečkové navigace."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Rubriky"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Data"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Tagy"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Stránky"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Šablona stránky"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Šablona stránky v drobečkové navigaci."
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Šablona stránky (bez odkazu)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Šablona stránky v drobečkové navigaci, bude použita pouze bez odkazu."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "Šablona přílohy"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Šablona přílohy v drobečkové navigaci."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Šablona přílohy (bez odkazu)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Šablona přílohy v drobečkové navigaci, bude použita pouze bez odkazu."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Otevřít %title%\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "Šablona %"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "Šablona pro %s drobečkovou navigaci."
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "Šablona %s (bez odkazu)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "Šablona pro %s drobečkovou navigaci, bude použita pouze bez odkazu."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "Kořenová stránka %s"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Vybrat &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "Zobrazení archivu %s"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Zobrazit prvky pro archiv typů příspěvku %s v řetězci drobečkové navigace."
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Zobrazit taxonomii vedoucí k %s v řetězci drobečkové navigace."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Šablona rubriky"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Šablona rubriky v drobečkové navigaci."
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Šablona rubriky (bez odkazu)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Šablona rubriky v drobečkové navigaci, bude použita pouze bez odkazu."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Šablona tagu"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Šablona pro tag v drobečkové navigaci."
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Šablona tagu (bez odkazu)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Šablona tagu v drobečkové navigaci, bude použita pouze bez odkazu."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Různé"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Šablona autora"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Šablona autora v drobečkové navigaci."
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Šablona autora (bez odkazu)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Šablona autora v drobečkové navigaci, bude použita pouze bez odkazu."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Formát zobrazení autora"
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name používá jméno specifikované v \"Zobrazovat jméno veřejně jako\" v uživatelském profilu, další korespondují s hodnotami v uživatelském profilu."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Šablona data"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Šablona pro datum v drobečkové navigaci."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Formát data (bez odkazu)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Šablona pro formát data v drobečkové navigaci, bude použita pouze bez odkazu."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Šablona hledání"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Šablona pro výsledky vyhledávání, bude použita pouze v případě, že výsledky vyhledávání přesahují jednu stránku."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Šablona hledání (bez odkazu)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Šablona pro výsledky vyhledávání, bude použita pouze v případě, že výsledky vyhledávání přesahují jednu stránku a není použit odkaz."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "Titulek 404"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "Šablona 404"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "Šablona pro 404 v drobečkové navigaci."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Uložit změny"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Nastavení"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "Naše nastavení je zastaralé."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Migrovat nastavení nyní."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Migrovat nyní."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Instalace pluginu není kompletní."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Nahraje výchozí nastavení."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Hotovo."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Nastavení pluginu není správné."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Pokus o opravu nastavení."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Opravit."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Nastavení úspěšně uloženo."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Vrátit změny nastavení."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Vrátit"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Některá nastavení nebyla uložena."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "Následující nastavení nebyla uložena:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Přidejte prosím tuto zprávu do vašeho %sbug report%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Otevřete si příspěvek podpory %s pro vaši verzi."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Nastavení úspěšně importováno z nahraného souboru."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Vrátit zpět importování nastavení."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Importování nastavení ze souboru selhalo."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Nastavení úspěšně navráceno k výchozím hodnotám."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Vrátit vrácení nastavení."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Nastavení úspěšně vrátilo poslední operaci."
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Vrátit poslední operací vrácení."
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Nastavení úspěšně migrováno."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Výchozí nastavení úspěšně nainstalováno."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Importoval nastavení z XML souboru, exportovat současné nastavení do XML souboru nebo vrátit výchozí nastavení."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Soubor nastavení"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Vyberte XML soubor nastavení pro nahrání a importování nastavení."
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Stránka %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "404"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Výsledky hledání pro &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Články od: %htitle%"
1
+ # Translation of Breadcrumb NavXT in Czech
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:03:59+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Síťová nastavení Breadcrumb NavXT"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Přidá drobečkovou navigaci zobrazující návštěvníkovi cestu k aktuálnímu umístění. Pro podrobnosti k používání tohoto pluginu navštivte <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "Struktura, kterou zobrazí řetězec drobečkové navigace. Mějte na paměti, že možnost \"Rodič příspěvku\" může pro korektní fungování vyžadovat další plugin, protože tento typ obsahu není strukturovaný."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Zobrazit %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Výhledky hledání pro &#39;<a title=\"Zobrazit první stránku výsledků hledání pro %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "Sestava nastavení, které budete pravděpodobně chtít použít, je zde."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Délka titulku"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Omezte délku titulku v názvu drobečkové navigace."
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Navigace hlavního webu"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "Nastavení všech typů obsahu jsou umístěna zde (Příspěvky, Stránky a vlastní typy obsahu)."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Typy obsahu"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Zobrazení hierarchie příspěvku"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Hierarchie příspěvku"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "Zobrazení hierarchie %s"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Formáty příspěvku"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Maximální délka titulku:"
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Příspěvky"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Rodič příspěvku"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "Hierarchie, kterou zobrazí řetězec drobečkové navigace."
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "Hierarchie %s"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "Nastavení všech taxonomií (včetně Rubrik, Tagů a vlastních taxonomií) jsou umístěna zde."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Taxonomie"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Šablona formátu příspěvku"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "Šablona pro formát příspěvku drobečkové navigace."
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Šablona formátu příspěvku (bez odkazu)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "Šablona pro post_format drobečkovou navigaci, použita pouze, když není drobečková navigace s odkazem."
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "Nastavení pro autora a archiv data, hledání a stránky 404 jsou umístěna zde."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Archivy autora"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Zobrazit archivy štítku %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Články od: <a title=\"Zobrazit první stránku příspěvků od %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Zobrazit archivy rubriky %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Zobrazit archivy %title%\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "Vaše nastavení je určeno pro novější verzi."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Text k zobrazení před řetězcem:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Otevřít projekt překladu pluginu Breadcrumb NavXT."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "Vaše verze PHP je příliš zastaralá, proveďte prosím aktualizaci na novější. Používáte verzi %1$s, Breadcrumb NavXT vyžaduje %2$s"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Přidá řetězec drobečkové navigace do sidebaru"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Titulek:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Výstup řetězce jako:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Seznam"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Čistý"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Nalinkovat drobečkovou navigaci"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "Obrátit pořadí řetězce"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Skrýt řetězec z domovské stránky"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Nedostatečná práva k pokračování"
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "Typy pro nastavení jsou umístění pod výběrem možnosti."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Zdroje"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sTutoriály a návody%: Na webových stránkách je k dispozici několik tutoriálů a návodů."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Otevřít archiv tagů Breadcrumb NavXT."
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sOnline dokumentace%: Navštivte dokumentaci pro více hlubších technických informací."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Otevřít online dokumentaci Breadcrumb NavXT"
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%sNahlašte chybu%: Pokud si myslíte, že jste nalezli chybu, přiložte prosím verzi vašeho WordPressu a podrobné informace o výskytu chyby."
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Otevřít vlákno podpory pro vaši verzi Breadcrumb NavXT"
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Dát zpět"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%Přispějte%: Líbí se vám Breadcrumb NavXT a chtěli byste přispět na jeho vývoj? Zvažte zakoupení piva pro autora."
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Otevřít PayPal pro odeslání příspěvku na Breadcrumb NavXT"
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%Překlad%: Není k dispozici váš jazyk? Kontaktujte Johna Havlik pro přeložení."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Obecné"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "Aby bylo nastavení na této stránce platné, musíte buď použít Breadcrumb NavXT widget nebo vložit kód níže do vaší šablony."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Řetězec drobečkové navigace s oddělovačem"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Řetězec drobečkové navigace jako vysouvací pole formuláře"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Rychlý start"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Použijte kód ze sekce Rychlý start níže, následující CSS může být použito jako základ pro stylování vaší drobečkové navigace."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Stylování"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Import/Export/Reset"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Import"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Export"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Reset"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Nastavení BreadCrumb NavXT"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Oddělovač prvků"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Je vložen mezi každý prvek"
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Úvodní prvek"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Vložit do řetězce úvodní prvek"
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Šablona úvodního prvku"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "Šablona pro úvodní prvek"
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Úvodní šablona (bez odkazu)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "Šablona pro úvodní prvek zobrazena v případě, že není použit odkaz."
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Prvek blogu"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Vložit prvek blogu do řetězce."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Šablona blogu"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "Šablona prvku blogu, je použita pouze v případě prostředí se statickou domovskou stránkou."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Šablona blogu (bez odkazu)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "Šablona pro prvek blogu, použita pouze v případě prostředí se statickou domovskou stránkou a bez odkazu."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Prvek hlavní stránky"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Vloží prvek hlavní stránky do řetězce v multisite systému."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Šablona úvodu hlavní stránky:"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "Šablona pro úvodní prvek hlavní stránky, bude použita pouze v multisite systému."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "Šablona úvodu hlavní stránky (bez odkazu)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "Šablona pro úvodní prvek hlavní stránky, bude použita pouze v multisite systému a bez odkazu."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Současná položka"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Současná položka jako odkaz"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Ano"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Stránkovaný prvek"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Zahrnout stránkovaný prvek v řetězci drobečkové navigace."
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Indikuje, že je uživatel na jiné, než první stránce stránkovaného výpisu příspěvků / stránek."
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Stránkovaná šablona"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Šablona pro stránkovaný prvek drobečkové navigace."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Šablona příspěvku"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "Šablona příspěvku v drobečkové navigaci."
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Šablona příspěvku (bez odkazu)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "Šablona příspěvku v drobečkové navigaci, bude použita pouze bez odkazu."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Zobrazit taxonomii vedoucí k příspěvku v řetězci drobečkové navigace."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Rubriky"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Data"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Tagy"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Stránky"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Šablona stránky"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "Šablona stránky v drobečkové navigaci."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Šablona stránky (bez odkazu)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "Šablona stránky v drobečkové navigaci, bude použita pouze bez odkazu."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "Šablona přílohy"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Šablona přílohy v drobečkové navigaci."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Šablona přílohy (bez odkazu)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "Šablona přílohy v drobečkové navigaci, bude použita pouze bez odkazu."
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Otevřít %title%\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "Šablona %"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "Šablona pro %s drobečkovou navigaci."
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "Šablona %s (bez odkazu)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "Šablona pro %s drobečkovou navigaci, bude použita pouze bez odkazu."
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "Kořenová stránka %s"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Vybrat &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "Zobrazení archivu %s"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Zobrazit prvky pro archiv typů příspěvku %s v řetězci drobečkové navigace."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Zobrazit taxonomii vedoucí k %s v řetězci drobečkové navigace."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Šablona rubriky"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "Šablona rubriky v drobečkové navigaci."
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Šablona rubriky (bez odkazu)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "Šablona rubriky v drobečkové navigaci, bude použita pouze bez odkazu."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Šablona tagu"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "Šablona pro tag v drobečkové navigaci."
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Šablona tagu (bez odkazu)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "Šablona tagu v drobečkové navigaci, bude použita pouze bez odkazu."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Různé"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Šablona autora"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Šablona autora v drobečkové navigaci."
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "Šablona autora (bez odkazu)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "Šablona autora v drobečkové navigaci, bude použita pouze bez odkazu."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Formát zobrazení autora"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name používá jméno specifikované v \"Zobrazovat jméno veřejně jako\" v uživatelském profilu, další korespondují s hodnotami v uživatelském profilu."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Šablona data"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "Šablona pro datum v drobečkové navigaci."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Formát data (bez odkazu)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "Šablona pro formát data v drobečkové navigaci, bude použita pouze bez odkazu."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Šablona hledání"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "Šablona pro výsledky vyhledávání, bude použita pouze v případě, že výsledky vyhledávání přesahují jednu stránku."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Šablona hledání (bez odkazu)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "Šablona pro výsledky vyhledávání, bude použita pouze v případě, že výsledky vyhledávání přesahují jednu stránku a není použit odkaz."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "Titulek 404"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "Šablona 404"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "Šablona pro 404 v drobečkové navigaci."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Uložit změny"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Nastavení"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "Naše nastavení je zastaralé."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Migrovat nastavení nyní."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Migrovat nyní."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "Instalace pluginu není kompletní."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Nahraje výchozí nastavení."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Hotovo."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "Nastavení pluginu není správné."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Pokus o opravu nastavení."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Opravit."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Nastavení úspěšně uloženo."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Vrátit změny nastavení."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Vrátit"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Některá nastavení nebyla uložena."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "Následující nastavení nebyla uložena:"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Přidejte prosím tuto zprávu do vašeho %sbug report%s."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "Otevřete si příspěvek podpory %s pro vaši verzi."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Nastavení úspěšně importováno z nahraného souboru."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Vrátit zpět importování nastavení."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Importování nastavení ze souboru selhalo."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Nastavení úspěšně navráceno k výchozím hodnotám."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Vrátit vrácení nastavení."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Nastavení úspěšně vrátilo poslední operaci."
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Vrátit poslední operací vrácení."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Nastavení úspěšně migrováno."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Výchozí nastavení úspěšně nainstalováno."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Importoval nastavení z XML souboru, exportovat současné nastavení do XML souboru nebo vrátit výchozí nastavení."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Soubor nastavení"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Vyberte XML soubor nastavení pro nahrání a importování nastavení."
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Stránka %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "Výsledky hledání pro &#39;%htitle%&#39;"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
  msgstr "Články od: %htitle%"
languages/breadcrumb-navxt-de_DE.mo CHANGED
Binary file
languages/breadcrumb-navxt-de_DE.po CHANGED
@@ -1,177 +1,776 @@
1
- # Translation of Breadcrumb NavXT in German
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-02-09 03:40:28+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "Die Hierarchie, welche der Breadcrumb Trail anzeigen wird. Beachte, dass die \"Post Parent\" Option ein zusätzliches Plugin benötigen kann um wie erwartet zu funktionieren, da dies ein nicht-hierarchischer Post Typ ist."
16
-
17
- #: includes/mtekk_adminkit.php:283
18
- msgid "Your settings are for a newer version."
19
- msgstr "Deine Einstellungen sind für eine aktuellere Version ausgelegt."
20
-
21
- #: breadcrumb_navxt_widget.php:96
22
- msgid "Text to show before the trail:"
23
- msgstr "Text, der vor dem Trail angezeigt werden soll:"
24
-
25
- #: breadcrumb_navxt_widget.php:103
26
- msgid "Schema.org"
27
- msgstr "Schema.org"
28
-
29
- #: breadcrumb_navxt_widget.php:33
30
- msgid "Adds a breadcrumb trail to your sidebar"
31
- msgstr "Fügt der Sidebar einen Breadcrumb Trail hinzu"
32
-
33
- #: breadcrumb_navxt_widget.php:92
34
- msgid "Title:"
35
- msgstr "Titel:"
36
-
37
- #: breadcrumb_navxt_widget.php:100
38
- msgid "Output trail as:"
39
- msgstr "Trail ausgeben als:"
40
-
41
- #: breadcrumb_navxt_widget.php:102
42
- msgid "List"
43
- msgstr "Liste"
44
-
45
- #: breadcrumb_navxt_widget.php:104
46
- msgid "Plain"
47
- msgstr "Plain"
48
-
49
- #: breadcrumb_navxt_widget.php:109
50
- msgid "Link the breadcrumbs"
51
- msgstr "Verlinke die Breadcrumbs"
52
-
53
- #: breadcrumb_navxt_widget.php:111
54
- msgid "Reverse the order of the trail"
55
- msgstr "Die Reihenfolge des Trails umkehren"
56
-
57
- #: breadcrumb_navxt_widget.php:113
58
- msgid "Hide the trail on the front page"
59
- msgstr "Verstecke den Trail auf der Startseite"
60
-
61
- #: includes/mtekk_adminkit.php:204
62
- msgid "Settings"
63
- msgstr "Einstellungen"
64
-
65
- #: includes/mtekk_adminkit.php:274
66
- msgid "Your settings are out of date."
67
- msgstr "Deine Einstellungen sind veraltet."
68
-
69
- #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
70
- msgid "Migrate the settings now."
71
- msgstr "Die Einstellungen jetzt migrieren."
72
-
73
- #: includes/mtekk_adminkit.php:274 includes/mtekk_adminkit.php:283
74
- msgid "Migrate now."
75
- msgstr "Jetzt migrieren."
76
-
77
- #: includes/mtekk_adminkit.php:291
78
- msgid "Your plugin install is incomplete."
79
- msgstr "Deine Plugin-Installtion ist fertig."
80
-
81
- #: includes/mtekk_adminkit.php:291
82
- msgid "Load default settings now."
83
- msgstr "Standard-Einstellungen jetzt laden."
84
-
85
- #: includes/mtekk_adminkit.php:291
86
- msgid "Complete now."
87
- msgstr "Fertiggestellt."
88
-
89
- #: includes/mtekk_adminkit.php:299
90
- msgid "Your plugin settings are invalid."
91
- msgstr "Deine Plugin-Einstellungen sind fehlerhaft."
92
-
93
- #: includes/mtekk_adminkit.php:299
94
- msgid "Attempt to fix settings now."
95
- msgstr "Versuche, die Einstellungen jetzt zu fixen."
96
-
97
- #: includes/mtekk_adminkit.php:299
98
- msgid "Fix now."
99
- msgstr "Jetzt fixen."
100
-
101
- #: includes/mtekk_adminkit.php:477
102
- msgid "Settings successfully saved."
103
- msgstr "Einstellungen erfolgreich gespeichert."
104
-
105
- #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
106
- msgid "Undo the options save."
107
- msgstr "Das Speichern der Optionen rückgängig machen."
108
-
109
- #: includes/mtekk_adminkit.php:477 includes/mtekk_adminkit.php:482
110
- #: includes/mtekk_adminkit.php:587 includes/mtekk_adminkit.php:611
111
- #: includes/mtekk_adminkit.php:628
112
- msgid "Undo"
113
- msgstr "Rückgänig machen"
114
-
115
- #: includes/mtekk_adminkit.php:482
116
- msgid "Some settings were not saved."
117
- msgstr "Einige Einstellungen wurden nicht gespeichert."
118
-
119
- #: includes/mtekk_adminkit.php:483
120
- msgid "The following settings were not saved:"
121
- msgstr "Die folgenden Einstellungen wurden nicht gespeichert."
122
-
123
- #: includes/mtekk_adminkit.php:488
124
- msgid "Please include this message in your %sbug report%s."
125
- msgstr "Bitte füge diese Nachricht Deinem %sbug report%s bei."
126
-
127
- #: includes/mtekk_adminkit.php:488
128
- msgid "Go to the %s support post for your version."
129
- msgstr "Gehe zum %s Support Post für Deine Version."
130
-
131
- #: includes/mtekk_adminkit.php:587
132
- msgid "Settings successfully imported from the uploaded file."
133
- msgstr "Die Einstellungen wurden erfolgreich von der hochgeladenen Datei importiert."
134
-
135
- #: includes/mtekk_adminkit.php:587
136
- msgid "Undo the options import."
137
- msgstr "Den Optionen-Import rückgängig machen."
138
-
139
- #: includes/mtekk_adminkit.php:592
140
- msgid "Importing settings from file failed."
141
- msgstr "Einstellungen-Import aus Datei fehlgeschlagen."
142
-
143
- #: includes/mtekk_adminkit.php:611
144
- msgid "Settings successfully reset to the default values."
145
- msgstr "Einstellungen erfolgreich auf Standardwerte zurückgesetzt."
146
-
147
- #: includes/mtekk_adminkit.php:611
148
- msgid "Undo the options reset."
149
- msgstr "Den Optionen-Reset rückgängig machen."
150
-
151
- #: includes/mtekk_adminkit.php:628
152
- msgid "Settings successfully undid the last operation."
153
- msgstr "Einstellungen hat die letzte Operation erfolgreich rückgängig gemacht."
154
-
155
- #: includes/mtekk_adminkit.php:628
156
- msgid "Undo the last undo operation."
157
- msgstr "Wiederholen."
158
-
159
- #: includes/mtekk_adminkit.php:663
160
- msgid "Settings successfully migrated."
161
- msgstr "Einstellungen erfolgreich migriert."
162
-
163
- #: includes/mtekk_adminkit.php:670
164
- msgid "Default settings successfully installed."
165
- msgstr "Standardeinstellungen erfolgreich installiert."
166
-
167
- #: includes/mtekk_adminkit.php:771
168
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
169
- msgstr "Einstellungen aus einer XML Datei importieren, aktuelle Einstellungen in XML Datei exportieren oder Reset auf Standardeinstellungen."
170
-
171
- #: includes/mtekk_adminkit.php:774
172
- msgid "Settings File"
173
- msgstr "Einstellungen Datei"
174
-
175
- #: includes/mtekk_adminkit.php:777
176
- msgid "Select a XML settings file to upload and import settings from."
177
- msgstr "Wähle eine XML Datei mit Einstellungen zum Hochladen und Einstellungen-Import."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Breadcrumb NavXT in German
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:01:12+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT Netzwerk Einstellungen"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Fügt eine Breadcrumb Navigation hinzu, die dem Besucher den Pfad zu seiner aktuellen Seite anzeigt. Besuche die <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT Webseite</a> um mehr über die Verwendung des Plugins zu erfahren."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "Die Hierarchie, welche der Breadcrumb Trail anzeigen wird. Beachte, dass die \"Post Parent\" Option ein zusätzliches Plugin benötigen kann um wie erwartet zu funktionieren, da dies ein nicht-hierarchischer Post Typ ist."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a> "
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Suchergebnisse für &#39;<a title=\"Gehe zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "Eine Sammlung von Einstellungen, die am häufigsten verändert werden, finden sich unter diesem Tab."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Länge des Titels"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Länge des Breadcrumb Titels begrenzen."
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Breadcrumb der Hauptseite"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "Die Einstellugen für alle Post Arten (Posts, Seiten und Custom Post Types) finden sich unter diesem Tab."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Post Typen"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Post Hierarchie Anzeige"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Post Hierarchie"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "%s Hierarchie Anzeige"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Post Formate"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Maximale Länge des Titels:"
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Posts"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Post Parent"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "Die Hierarchie, welche vom Breadcrumb Trail angezeigt wird."
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "%s Hierarchie"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "Die Einstellungen für alle Systematiken (inkl. Kategorien, Tags und Custom Systematiken) finden sich unter diesem Tab."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Systematiken"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Post Format Vorlage"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "Die Vorlage für Post Format Breadcrumbs."
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Post Format Vorlage (nicht verlinkt)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "Die Vorlage für post_format Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "Die Einstellungen für Autor und Datum Archive, Suchanfragen und 404 Seiten finden sich unter diesem Tab."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Autor Archive"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Gehe zu den %title% Tag Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Artikel von: <a title=\"Gehe zur ersten Seite mit Posts von %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Gehe zu den %title% Kategorie Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Gehe zu den %title% Archiven.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "Deine Einstellungen sind für eine aktuellere Version ausgelegt."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Text, der vor dem Trail angezeigt werden soll:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "Deine PHP Version ist veraltet, bitte führe ein Upgrade auf eine neuere Version durch. Deine aktuelle Version ist %1$s, Breadcrumb NavXT benötigt mindestens %2$s"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Fügt der Sidebar einen Breadcrumb Trail hinzu"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Titel:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Trail ausgeben als:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Liste"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Plain"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Verlinke die Breadcrumbs"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "Die Reihenfolge des Trails umkehren"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Verstecke den Trail auf der Startseite"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Nicht genügend Rechte um fortzufahren."
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "Tips für die Einstellungen findest Du unter den Select-Optionen."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Ressourcen"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Gehe zum Breadcrumb NavXT Archiv."
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sOnline Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%Melde einen Bug%s: Wenn du glaubst, einen Bug gefunden zu haben, füge bitte Deine Wordpress Version und Details, wie man den Bug reproduzieren kann, hinzu."
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Etwas Zurückgeben"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Grundsätzliches"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "Du musst entweder das beinhaltete Breadcrumb NavXT Widget verwenden oder eine der Code Abschnitte unten in Deinem Theme verwenden - erst dann werden die Einstellungen aktiv."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Breadcrumb Trail mit Abstandshaltern"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Breadcrumb Trail in Listen-Form"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Schnellstart"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Unter Verwendung des Codes aus dem Schnellstart-Abschnitt oben kann das folgende CSS als Basis für das Styling Deines Breadcrumb Trails verwendet werden."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Styling"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Import/Export/Reset"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Import"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Export"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Reset"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Breadcrumb NavXT Einstellungen"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Breadcrumb Trennzeichen"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Wird zwischen jedem Breadcrumb eingefügt."
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Home Breadcrumb"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Füge den Home Breadcrumb in den Trail ein."
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Home Template"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "Das Template für das Home Breadcrumb."
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Home Template (nicht verlinkt)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Blog Breadcrumb"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Platziere das Blog Breadcrumb im Trail."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Blog Template"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Blog Template (nicht verlinkt)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Hauptseite Breadcrumb"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Hauptseite Home Template"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "Hauptseite Home Template (nicht verlinkt)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Aktueller Eintrag"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Aktuellen Eintrag verlinken"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Ja"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Paged Breadcrumb"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Paged Template"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Das Template für Paged Breadcrumbs."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Post Template"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "Das Template für Post Breadcrumbs."
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Post Template (nicht verlinkt)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Zeige die Systematik, die zu einem Post im Breadcrumb Trail führt."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Kategorien"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Daten"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Tags"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Seiten"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Seiten Template"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "Das Template für Seiten Breadcrumbs."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Seiten Template (nicht verlinkt)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "Anhang Template"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Das Template für Anhang Breadcrumbs."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Anhang Template (nicht verlinkt)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "%s Template"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "Das Template für %s Breadcrumbs."
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "%s Template (nicht verlinkt)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "%s Root Seite"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Auswahl &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "%s Archiv Anzeige"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Zeige die Systematik, die zu einem %s im Breadcrumb Trail führt."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Kategorie Template"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "Das Template für Kategorie Breadcrumbs."
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Kategorie Template (nicht verlinkt)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Tag Template"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "Das Template für Tag Breadcrumbs."
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Tag Vorlage (nicht verlinkt)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "Die Vorlage für Tag Breadcrumbs - wird nur verwendet, wenn der Breadcrumb nicht verbunden (linked) ist."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Sonstiges"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Autor Template"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Das Template für Autoren Breadcrumbs."
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "(nicht verlinkt)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Autor Anzeige Format"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Datum Template"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "Das Template für Datum Breadcrumbs."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Datum Template (nicht verlinkt)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Suche Template"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Suche Template (nicht verlinkt)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404 Titel"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "404 Template"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "Das Template für 404 Breadcrumbs."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Änderungen Speichern"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Einstellungen"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "Deine Einstellungen sind veraltet."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Die Einstellungen jetzt migrieren."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Jetzt migrieren."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "Deine Plugin-Installtion ist fertig."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Standard-Einstellungen jetzt laden."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Fertiggestellt."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "Deine Plugin-Einstellungen sind fehlerhaft."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Versuche, die Einstellungen jetzt zu fixen."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Jetzt fixen."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Einstellungen erfolgreich gespeichert."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Das Speichern der Optionen rückgängig machen."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Rückgänig machen"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Einige Einstellungen wurden nicht gespeichert."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "Die folgenden Einstellungen wurden nicht gespeichert."
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Bitte füge diese Nachricht Deinem %sbug report%s bei."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "Gehe zum %s Support Post für Deine Version."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Die Einstellungen wurden erfolgreich von der hochgeladenen Datei importiert."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Den Optionen-Import rückgängig machen."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Einstellungen-Import aus Datei fehlgeschlagen."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Einstellungen erfolgreich auf Standardwerte zurückgesetzt."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Den Optionen-Reset rückgängig machen."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Einstellungen hat die letzte Operation erfolgreich rückgängig gemacht."
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Wiederholen."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Einstellungen erfolgreich migriert."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Standardeinstellungen erfolgreich installiert."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Einstellungen aus einer XML Datei importieren, aktuelle Einstellungen in XML Datei exportieren oder Reset auf Standardeinstellungen."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Einstellungen Datei"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Wähle eine XML Datei mit Einstellungen zum Hochladen und Einstellungen-Import."
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Seite %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "Suchresultate für &#39;%htitle%&#39;"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
+ msgstr "Artikel von: %htitle%"
languages/breadcrumb-navxt-et.mo CHANGED
Binary file
languages/breadcrumb-navxt-et.po CHANGED
@@ -1,753 +1,776 @@
1
- # Translation of Breadcrumb NavXT in Estonian
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-02-14 02:34:58+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "Hierarhia, mida teekonna rada kuvab. Pane tähele, et valik \"Postituse vanem\" võib vajada täiendavat pluginat, et käituda ootuspäraselt, sest see on mitte-hierarhiline postiruse tüüp."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Mine %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Pealkirja pikkus"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Piira teekonna raja pealkirja pikkust"
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Pealehe teekonna rada"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Postituse tüübid"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Postituse hierarhia kuvamine"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Postituse hierarhia"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s hierarhia kuvamine"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Postituse formaadid"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Lubatud pealkirja pikkus"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Postitused"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Postituse vanem"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "Hierarhia, mida teekonna rada kuvab"
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "%s hierarhia"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Süstemaatikad"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Postituse formaadi templiit"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "Teekonna raja postituse formaadi templiit."
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Postituse formaadi templiit (linkimata)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Autori arhiiv"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Mine %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Mine %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Mine %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "Sinu seaded on uuema versiooni jaoks."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Tekst, mida kuvada enne teekonna rada"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Breadcrumb NavXT tõlke projekt."
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Lisa teekonna rada äärepaanile"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Nimetus"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Väljasta rada kui:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Nimekiri"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Lihtne"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Lisa teekonna rajale lingid"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Pööra teekonna rada vastupidi"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Peida rada avalehel"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Puuduvad õigused, et jätkata."
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Seadete näpunäited paiknevad valikute all."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Vahendid"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Mine Breadcrumb NavXT sildi arhiivi."
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
- msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Tagasiandmine"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "Peamine"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
- msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Teekonna rada koos eraldajatega"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Teekonna rada nimekirja formaadis"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Kiire alustamine"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Stiil"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Import/Eksport/Lähtestamine"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Import"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Eksport"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Lähtestamine"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Breadcrumb NavXT seaded"
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Teekonna raja eraldaja"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Paigutatakse iga teekonna elemendi vahele"
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Avalehe rada"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Lisa avaleht teekonna rajale"
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Avalehe mall"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "Avalehe teekonna raja mall."
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Avalehe mall (ei ole lingitud)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Blogi teekonna rada"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Aseta blogi teekond rajale."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Blogi teekonna rada"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Blogi mall (linkimata)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Peamise saidi teekonna rada"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Peamise saidi avalehe mall"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Peamise saidi avalehe mall (linkimata)"
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Avatud element"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Lingi avatud element"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Jah"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Lehekülgedele jaotatud teekonna rada"
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Jaotatud mall"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Lehekülgedele jaotatud teekonna raja mall."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Postituste mall"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Postituste teekonna raja mall"
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Postituste mall (linkimata)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Kategooriad"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Kuupäevad"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Sildid"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Lehed"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Lehe mall"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Mall lehe teekonna raja jaoks."
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Lehe mall (linkimata)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "Manuse mall"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Manuse teekonna raja mall."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Manuse mall (linkimata)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Mine %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "%s Mall"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "%s teekonna raja mall"
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "%s Mall (linkimata)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "%s juur lehekülg"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Vali &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "%s arhiivi kuvamine"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Kategooria mall"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Kategooria teekonna rea mall"
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Kategooria mall (linkimata)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Sildi mall"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Siltide teekonna riba mall"
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Sildi mall (linkimata)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Varia"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Autori mall"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Autori teekonna riba mall."
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Autori mall (linkimata)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Autori kuvamise formaat"
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Kuupäeva mall"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Kuupäeva teekonna riba mall."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Kuupäeva mall (linkimata)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Otsingu mall"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Otsingu mall (linkimata)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "404 pealkiri"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "404 mall"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "404 teekonna riba mall."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Salvesta muudatused"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Seaded"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "Sinu seaded on aegunud."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Suuna seaded ümber."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Suuna nüüd."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Sinu plugina install on lõpetamata."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Laadi vaikeseaded nüüd."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Vii nüüd lõpule."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Sinu plugina seaded on vigased."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Püüa parandada seadeid nüüd."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Paranda nüüd."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Seaded on edukalt salvestatud."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Pööra seadete salvestamine tagasi."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Pööra tagasi"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Mõned seadetest ei salvestunud."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "Järgnevaid seadeid ei salvestatud:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Palun lisa see sõnum oma %svea raportisse%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Mine %s oma versiooni tugi postitusse."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Seaded imporditi edukalt üleslaetud failist."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Pööra valikute import tagasi."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Valikute import failist ebaõnnestus."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Tühista valikute tagasipööramine."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Viimase operatsiooni seaded tühistati edukalt."
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Tühista viimane tagasipööramine operatsioon."
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Seaded on edualt suunatud."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Vaikeseaded on edukalt installeeritud."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Seadete fail"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Leht %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "404"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Otsitulemused &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Artiklid: %htitle%"
1
+ # Translation of Breadcrumb NavXT in Estonian
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:00:32+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT võrgu seaded"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Lisab teekonna raja navigatsiooni, mis kuvab lehe külastajatele asukoha, kus nad hetkel viibivad. Plugina kasutamise kohta saate lähemat infot <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> veebilehelt."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "Hierarhia, mida teekonna rada kuvab. Pane tähele, et valik \"Postituse vanem\" võib vajada täiendavat pluginat, et käituda ootuspäraselt, sest see on mitte-hierarhiline postiruse tüüp."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Mine %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Otsingu tulemused &#39;<a title=\"Mine esimesele otsingutulemuse lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "Seaded, mida peamiselt on vaja muuta, asuvad selle kaardi all."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Pealkirja pikkus"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Piira teekonna raja pealkirja pikkust"
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Pealehe teekonna rada"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "Kõikide postituste tüüpide seaded (postitused, lehed, kohandatud postituse tüübid) asuvad selle kaardi all."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Postituse tüübid"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Postituse hierarhia kuvamine"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Postituse hierarhia"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "%s hierarhia kuvamine"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Postituse formaadid"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Lubatud pealkirja pikkus"
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Postitused"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Postituse vanem"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "Hierarhia, mida teekonna rada kuvab"
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "%s hierarhia"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "Süstemaatikate seaded (sh Rubriigid, Sildid ja kohandatud süstemaatikad) asuvad selle kaardi all."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Süstemaatikad"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Postituse formaadi templiit"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "Teekonna raja postituse formaadi templiit."
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Postituse formaadi templiit (linkimata)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "post_format teekonna raja templiit, kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "Autori ja kuupäeva arhiivi, otsingute, 404 lehtede seaded asuvad selle kaardi all."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Autori arhiiv"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Mine %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Artiklid: <a title=\"Mine esimesele postituste lehele %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Mine %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Mine %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "Sinu seaded on uuema versiooni jaoks."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Tekst, mida kuvada enne teekonna rada"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Breadcrumb NavXT tõlke projekt."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Lisa teekonna rada äärepaanile"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Nimetus"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Väljasta rada kui:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Nimekiri"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Lihtne"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Lisa teekonna rajale lingid"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "Pööra teekonna rada vastupidi"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Peida rada avalehel"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Puuduvad õigused, et jätkata."
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "Seadete näpunäited paiknevad valikute all."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Vahendid"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Mine Breadcrumb NavXT sildi arhiivi."
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Tagasiandmine"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Peamine"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Teekonna rada koos eraldajatega"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Teekonna rada nimekirja formaadis"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Kiire alustamine"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Stiil"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Import/Eksport/Lähtestamine"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Import"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Eksport"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Lähtestamine"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Breadcrumb NavXT seaded"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Teekonna raja eraldaja"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Paigutatakse iga teekonna elemendi vahele"
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Avalehe rada"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Lisa avaleht teekonna rajale"
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Avalehe mall"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "Avalehe teekonna raja mall."
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Avalehe mall (ei ole lingitud)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Blogi teekonna rada"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Aseta blogi teekond rajale."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Blogi teekonna rada"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Blogi mall (linkimata)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Peamise saidi teekonna rada"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Peamise saidi avalehe mall"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "Peamise saidi avalehe mall (linkimata)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Avatud element"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Lingi avatud element"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Jah"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Lehekülgedele jaotatud teekonna rada"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Jaotatud mall"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Lehekülgedele jaotatud teekonna raja mall."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Postituste mall"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "Postituste teekonna raja mall"
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Postituste mall (linkimata)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Kategooriad"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Kuupäevad"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Sildid"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Lehed"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Lehe mall"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "Mall lehe teekonna raja jaoks."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Lehe mall (linkimata)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "Manuse mall"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Manuse teekonna raja mall."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Manuse mall (linkimata)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Mine %title%.\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "%s Mall"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "%s teekonna raja mall"
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "%s Mall (linkimata)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "%s juur lehekülg"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Vali &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "%s arhiivi kuvamine"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Kategooria mall"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "Kategooria teekonna rea mall"
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Kategooria mall (linkimata)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Sildi mall"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "Siltide teekonna riba mall"
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Sildi mall (linkimata)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Varia"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Autori mall"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Autori teekonna riba mall."
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "Autori mall (linkimata)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Autori kuvamise formaat"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Kuupäeva mall"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "Kuupäeva teekonna riba mall."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Kuupäeva mall (linkimata)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Otsingu mall"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Otsingu mall (linkimata)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404 pealkiri"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "404 mall"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "404 teekonna riba mall."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Salvesta muudatused"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Seaded"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "Sinu seaded on aegunud."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Suuna seaded ümber."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Suuna nüüd."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "Sinu plugina install on lõpetamata."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Laadi vaikeseaded nüüd."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Vii nüüd lõpule."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "Sinu plugina seaded on vigased."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Püüa parandada seadeid nüüd."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Paranda nüüd."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Seaded on edukalt salvestatud."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Pööra seadete salvestamine tagasi."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Pööra tagasi"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Mõned seadetest ei salvestunud."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "Järgnevaid seadeid ei salvestatud:"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Palun lisa see sõnum oma %svea raportisse%s."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "Mine %s oma versiooni tugi postitusse."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Seaded imporditi edukalt üleslaetud failist."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Pööra valikute import tagasi."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Valikute import failist ebaõnnestus."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Tühista valikute tagasipööramine."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Viimase operatsiooni seaded tühistati edukalt."
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Tühista viimane tagasipööramine operatsioon."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Seaded on edualt suunatud."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Vaikeseaded on edukalt installeeritud."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Seadete fail"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Leht %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "Otsitulemused &#39;%htitle%&#39;"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
  msgstr "Artiklid: %htitle%"
languages/breadcrumb-navxt-fi.mo ADDED
Binary file
languages/breadcrumb-navxt-fi.po ADDED
@@ -0,0 +1,776 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Breadcrumb NavXT in Finnish
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:03:22+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT verkkoasetukset"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Lisää vierailijan toistaiseksi kulkema polku . Lisätietoja tämän apuohjelman käytöstä löytyy täältä: <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "Hierarkia jonka murupolku näyttää. Huomioi että vaihtoehto \"Artikkelin yläpuolella oleva taso\" saattaa vaatia toisen lisäpalikan asennuksen."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Siirry %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Hakutulokset &#39;<a title=\"Siirry hakutulosten ensimmäiselle sivulle %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "Yleisemmin muokatut asetukset löytyvät tältä välilehdeltä."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Otsikon pituus"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Rajoita murupolun otsikon pituus."
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Pääsivuston murupolku"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "Tämän välilehden alla löytyy kaikkien sivujen, artikkeleiden ja kustomoitujen artikkelityypien asetukset."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Julkaisun tyyppi"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Näytä Julkaisun hierarkia"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Julkaisun hierarkia"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "%s Hieraria näkymä"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Julkaisuformaatit"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Suurin sallittu otsikon pituus:"
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Julkaisut"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Julkaisun ylempi taso"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "Hierarkia jota murupolku näyttää."
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "%s Hierarkia"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "Asetukset kaikille tietoluokille (mukaan lukien Kategoriat, Tunnisteet, ja räätälöidyt tietoluokat) sijaitsevat tässä välilehdessä."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Tietoluokat"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Artikkelin/sivun mallipohja"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "Murupolkujen mallipohja (artikkelit/sivut)"
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Artikkelin/sivun mallipohja (ilman linkkiä)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "Murupolkujen mallipohja (artikkelit/sivut) jota käytetään kun niissä ei ole linkkejä"
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "Asetukset kirjoittaja ja päivämäärä kokoelmille, hauille ja 404-sivuille löytyvät tästä välilehdestä."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Kirjoittajan kokoelmat"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Siirry %title% tägi kokoelmaan.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Kirjoittajan artikkelit: <a title=\"Siirry ensimmäiselle sivulle tuloksia jossa kirjoittaja on %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Siirry kategorian %title% kokoelmaan.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Siirry %title% kokoelmaan.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "Asetuksesi ovat uudemmalle versiolle."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Näytä tämä teksti ennen murupolkua:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Siirry Breadcrumb NavXT käännösprojektiin."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "PHP versio on liian vanha, päivitä se uudempaan versioon. Nykyversio on %1$s, Breadcrumb NavXT vaatii version %2$s"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Lisää murupolun sivupalkkiin"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Otsikko:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Näitä murupolku näin:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Lista"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Riisuttu"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Lisää murupolkuun linkit"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "Näytä polku kääneisessä järjestyksessä"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Piilota etusivulta murupolku"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Oikeudet eivät riitä jatkamaan."
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "Jokaisen vaihtoehdon alla näkyy vihjeita sen käytöstä."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Resurssit"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sOhjeita ja esimerkkejä%s: Ohjelman tekijän kotisivuilta löydät runsaasti oppaita, opetusohjeita sekä miten tehdään kirjoituksia."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Siirry Breadcrumb NavXT tägi-arkistoon."
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sDokumentaatio verkossa%s:Tarkista verkkosivuilta tarkemmat dokumentaatiot."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Siirry Breadcrumb NavXT dokumentaatioon verkossa"
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%sVirheraportit%s: Jos uskot löytäneen ohjemasta virheen muista mainita käytössä-olevan WordPress versiosi sekä kuvauksen miten löysit virheen."
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Siirry Breadcrumb NavXT tuki-raportointiin käyttämälle versiollesi."
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Vasta-lahjoitus"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%sLahjoita%s: Jos nautit Breadcrumb NavXT:sta ja haluat tukea sen kehitystä, harkitse tarjota kehittelijälle oluen."
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Siirry PayPal:iin lahjoittamaan Breadcrumb NavXT:n kehitystyölle."
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%sOhjelman kääntäminen%s: Jos käyttämäsi kieli ei vielä ole tuettu, ota yhteyttä John Havlik:iin ja tarjoudu kääntämään se."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Yleistä"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "Tämän sivun asetukset tulevat voimaan joko käyttämällä mukana-tullutta Breadcrumb NavXT widgettiä tai lisäämällä toinen alla-olevista koodi-pätkästä käyttämäänne teemaan."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Murupolku jossa välimerkit"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Listamuotoinen murupolku"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Pika-aloitus"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Käyttämällä koodia pikä-aloitus osasta yllä, voit tyylitellä murupolkusi alla-olevan CSS:n kanssa."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Tyylittely"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Tuonti/Vienti/Resetointi"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Tuonti"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Vienti"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Resetointi"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Breadcrumb NavXT asetukset"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Murupolun välimerkki"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Sijoitetaan jokaisen murun väliin"
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Koti-murunen"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Näytä koti-murunen murupolussa."
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Koti-lomakepohja"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "Lomakepohja koti-muruselle."
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Lomakepohja koti-muruselle (ilman linkkiä)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "Lomakepohja koti-muruselle (murut ilman linkkiä) "
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Blogin murupolku"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Lisää blogin murupolku loppuun."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Blogin lomakepohja"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteessa)."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Blogin lomakepohja (ilman linkkejä)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "Lomakepohja murupolulle (tätä käytetään staattisen etusivun tilanteissa jossa murupolku ei ole linkattu)."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Pääsivuston murupolku"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Lisää pääsivuston muru polkuun moni-sivusto ympäristössä."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Pääsivuston etusivu-lomakepohja"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "Pääsivuston etusivu-murupolkun lomakepohja (käytettän moni-sivusto ympäristössä)."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "Pääsivuston etusivu-lomakepohja (ilman linkkejä)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "Pääsivuston etusivu-lomakepohja (käytetään moni-sivusto ympäristössä jossa murupolut eivät ole linkattu)."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Nykyinen kohde"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Nykyinen kohde (linkattu)"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Kyllä"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Sivutettu murupolku"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Näytä myös sivutettu murupolku murupolussa."
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Merkkinä siitä että käyttäjä ei ole ensimmäisellä tai sivutetulla artikkelissa/sivussa."
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Sivutettu asiakirjamalli"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Sivutettujen julkaisujen murupolku-asiakirjamalli."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Artikkelin asiakirjamalli"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "Artikkelien murupolkujen asiakirjamalli."
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Artikkelin asiakirjamalli (ilman linkkejä)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "Asiakirjamalli artikkelien murupolulle (käytetään vain silloin kun murupolku ei ole linkattu)."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Näytä tietorakenne artikkeleille murupolussa."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Kategoriat"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Päivämäärät"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Tägit"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Sivut"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Sivun asiakirjamalli"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "Sivun murupolun asiakirjamalli."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Sivun asiakirjamalli (ilman linkkiä)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "Murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "Liitteen lomakepohja"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Lomakepohja liitteen murupolulle."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Liitteen lomakepohja (linkkaamaton)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "Liitteen murupolun lomakepohja, jota käytetään silloin kun murupolku ei käytä linkkejä. "
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Siirry %title%.\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "%s Lomakepohja"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "Lomakepohja %s murupolulle."
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "%s Lomakepohja (linkkaamaton)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "Lomakepohja %s murupolulle, jota käytetään vain silloin kun murupolku ei käytä linkkejä. "
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "%s Aloitussivu"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Valitse &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "%s Arkistonäkymä"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Näytä murupolku %s artikkelityypin arkistolle murupolussa."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Näytä polku %s murupolulle."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Kategorialomakepohja"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "Kategoria murupolun lomakepohja."
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Kategorialomakepohja (linkkamaton)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "Kategoria murupolun lomakepohja, jota käytetään vain silloin kun murupolku on linkkamaton."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Tägi lomakepohja"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "Lomakepohja tägi murupoluille."
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Tägi lomakepohja (linkkamaton)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "Lomakepohja tägi murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Muut"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Kirjoittaja lomakepohja"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Lomakepohja kirjoittajan murupoluille."
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "Kirjoittaja lomakepohja (linkkamaton)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "Lomakepohja kirjoittaja lomakepohjalle, jota käytetään vain silloin kun murupolku on linkkaamaton."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Kirjoittaja näkymä"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name käyttää nimeä määritelty kohdassa \"Display name publicly as\" kohdassa käyttäjäprofiili jota käytetään muussa viestinnässä kohdassa käyttäjäprofiili."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Päiväys lomakepohja"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "Päiväys murupolun lomakepohja."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Päiväys lomakepohja (linkkamaton)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "Lomakepohja päiväys murupolulle, jota käytetään vain silloin kun murupolku on linkkamaton."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Haku lomakepohja"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Haku lomakepohja (linkkamaton)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "Ankkuri lomakepohja haku-murupoluille, jota käytetään vain silloin kun hakutulokset kattavat useamman sivun ja murupolku on linkkamaton."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404 Otsikko"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "404 lomakepohja"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "Lomakepohja 404 murupoluille."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Tallenna muutokset"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Asetukset"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "Asetuksesi ovat vanhentuneet."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Päivitä asetuksesi nyt."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Päivitä nyt."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "Apuohjelman asennus on kesken."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Ota käyttöön oletus-asetukset."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Viimeistele nyt."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "Apuohjelman asetukset ovat epäkelvot."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Yritä korjata asetukset nyt."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Korjaa nyt."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Asetukset tallenettu onnistuneesti."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Peruuta asetusten tallennus."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Peruuta"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Joitain asetuksia ei voitu tallentaa."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "Seuraavat asetukset eivät voitu tallentaa:"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Liitä %sbug report%s:iin tämä viesti."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "Siirry %s tukisivulle versiollesi."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Asetusten tuonti onnistui ladatulta tiedostolta."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Peruuta asetusten tuonti."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Asetusten tuonti tiedostosta epäonnistui."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Asetukset onnistuneesti palautettu oletusarvoille."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Peruuta asetusten resetointi."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Viimeisin asetusten muutos onnistuneesti peruutettu."
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Peruuta viimeisin muutos."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Asetukset onnistuneesti muunnettu."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Oletusasetukset onnistuneesti asennettu."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Tuo asetukset XML tiedostosta, Vie nykyiset asetukset XML tiedostoon tai palauta perusasetukset."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Asetus-tiedosto"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Valitse XML asetustiedosto ladattavaksi."
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Sivu %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "&#39;%htitle%&#39; hakutulokset"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
+ msgstr "Artikkelit kirjoittajalta: %htitle%"
languages/breadcrumb-navxt-ja.mo ADDED
Binary file
languages/breadcrumb-navxt-ja.po ADDED
@@ -0,0 +1,776 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Breadcrumb NavXT in Japanese
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:04:56+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=1; plural=0;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr ""
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr ""
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "パンくずが表示する階層です。\"親投稿\"オプションは階層構造のないタイプなので、、期待どおり動かすためには追加のプラグインが必要です。"
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"%title%へ行く\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "&#39;<a title=\"%title%の検索結果の最初のページに行く\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;の検索結果"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "よく変更される設定がこのタブの下にあります。"
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "タイトルの長さ"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "パンくずのタイトルを次の文字数に制限します。"
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "メインサイトのパンくず"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "このタブの下には全ての投稿タイプ(投稿、ページ、カスタム投稿タイプ)の設定があります。"
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "投稿タイプ"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "投稿階層を表示する"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "投稿階層"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "%s階層表示"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "投稿フォーマット"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "タイトル上限文字数: "
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "投稿"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "親投稿"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "パンくずリストが表示する階層です。"
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "%s階層"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "カテゴリー、タグ、カスタムタクソノミーなどの設定はこのタブをクリックしてください。"
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "タクソノミー"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "投稿フォーマットのテンプレート"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "投稿フォーマットのパンくず用テンプレートです。"
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "投稿フォーマットのテンプレート(リンクなし)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "投稿フォーマットのパンくず用テンプレート。パンくずがリンクになっていないときだけ使われます。"
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "投稿者、日付アーカイブ、404ページの設定は、このタブをクリックしてください。"
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "投稿者アーカイブ"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"%title%のタグアーカイブへ行く\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "投稿者: <a title=\"%title%による投稿の最初のページへ行く\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"%title%のカテゴリアーカイブへ行く\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"%title%アーカイブへ行く\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "あなたの設定は新しいバージョンに合っています。"
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "パンくずの前につけるテキスト:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Breadcrumb NavXTの翻訳プロジェクトへ行く。"
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "お使いのPHPは古すぎます。もっと新しいバージョンにアップグレードしてください。お使いのバージョンは、%1$s、Breadcrumb NavXTには%2$sが必要です。"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "サイドバーにパンくずリストを追加します"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "タイトル:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "パンくずの表示方法:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "リスト"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "プレーンテキスト"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "パンくずをリンクにする"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "リストの順序を逆にする"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "トップページではリストを表示しない"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "続けるのに必要な権限がありません。"
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "設定のヒントは下にあります。オプションを選択してください。"
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "リソース"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sチュートリアルとハウツー%s: 作者のウェブサイトには使い方ガイド、チュートリアル、ハウツーが複数あります。"
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Breadcumb NavXTのタグ・アーカイブに行く。"
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sオンライン・ドキュメント%s: もっと詳しい技術情報のためのドキュメントをチェックしましょう。"
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Breadcrumb NavXTのオンライン・ドキュメントを見る。"
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%sバグレポート%s: バグを見つけたら、あなたのWordPressのバージョンとバグを再現する方法の詳細を含めてください。"
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "このバージョン用のBreadcrumb NavXTサポート・フォーラムへ行く。"
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "返す"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%s寄付%s: Breadcrumb NavXTが気に入って、開発を援助したいですか? 作者にビールを奢りましょう。"
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "PayPalでBreadcrumb NavXTへの寄付をする。"
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%s翻訳%s: あなたの言語がありませんか? John Havlikにコンタクトを取って、翻訳を入手してください。"
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "一般"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "このページの設定を有効にするためには、Breadcrumb NavXTウィジェットを有効にするか、お使いのテーマに下のコードを書き加えてください。"
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "パンくずを区切り文字で区切る"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "パンくずをリスト形式にする"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "お手軽設定"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "上の「お手軽設定」のコードを使う場合、パンくずの基本スタイルとして次のCSSを使うことができます。"
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "スタイル"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "インポート/エクスポート/リセット"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "インポート"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "エクスポート"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "リセット"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Breadcrumb NavXT設定"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "パンくず区切り文字"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "上の文字がパンくずの間に入ります。"
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "ホームを示すパンくず"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "パンくずにホームページを含める。"
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "ホームページ用テンプレート"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "ホームを示すパンくず用テンプレートです。"
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "ホームページ用テンプレート(リンクなし)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "リンクなしのホームページ用パンくずテンプレートです。"
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "ブログ用パンくず"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "ブログのパンくずをパンくずリストに含めます。"
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "ブログ用テンプレート"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "ブログのパンくず用テンプレート。ブログを固定ページにしたときだけ使われます。"
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "ブログ用テンプレート(リンクなし)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "ブログのパンくずリスト用のテンプレートです。固定ページをブログに使い、リンクなしにするテンプレートです。"
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "メインサイトのパンくず"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "マルチサイトで運用するとき、パンくずにメインサイトのホームを含めます。"
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "メインサイトのホーム用テンプレート"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "メインサイトのホームに使うパンくず用のテンプレート。マルチサイトの環境で動作します。"
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "メインサイトのホーム用テンプレート(リンクなし)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "メインサイトのホーム用テンプレート。マルチサイト環境でリンクなしの場合。"
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "現在のページを示す項目"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "現在のページを示す項目にリンクを張る"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "はい"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "ページ分割パンくず"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "分割ページパンくずを含める。"
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "ページ分割された投稿やページで、2ページ目以降をパンくずで示します。"
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "分割ページのテンプレート"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "分割ページパンくずのためのテンプレートです。"
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "投稿テンプレート"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "投稿パンくずのテンプレートです。"
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "投稿のテンプレート(リンクなし)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "投稿パンくずのテンプレートです。リンクなしの場合だけ使われます。"
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "パンくずの投稿にタクソノミーを付け加えます。"
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "カテゴリー"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "日付"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "タグ"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "ページ"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "ページ用テンプレート"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "ページパンくず用のテンプレートです。"
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "ページ用テンプレート(リンクなし)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "ページパンくず用のテンプレートです。パンくずがリンクになっていない場合だけ使われます。"
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "添付ファイル用テンプレート"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "添付ファイルパンくず用のテンプレート"
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "添付ファイル用テンプレート(リンクなし)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "添付ファイルパンくず用のテンプレートです。パンくずがリンクになっていない場合だけ使われます。"
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"%title%へ行く\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "%s用テンプレート"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "%sパンくず用のテンプレートです。"
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "%s用テンプレート(リンクなし)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "%sパンくず用テンプレートです。パンくずがリンクになっていない場合だけ使われます。"
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "%sルートページ"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; 選択 &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "%sアーカイブ表示"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "パンくずリストに、%sポストタイプのアーカイブのパンくずを表示しましす。"
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "パンくずリストに、%sへのタクソノミーを表示します。"
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "カテゴリー用テンプレート"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "カテゴリーパンくず用のテンプレートです。"
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "カテゴリー用テンプレート(リンクなし)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "カテゴリーのパンくず用テンプレート。パンくずがリンクになっていないときにだけ使われます。"
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "タグ用テンプレート"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "タグのパンくず用テンプレートです。"
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "タグ用テンプレート(リンクなし)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "タグのパンくず用テンプレート。パンくずがリンクになっていないときだけ使われます。"
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "その他"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "投稿者テンプレート"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "投稿者パンくずのテンプレートです。"
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "投稿者テンプレート(リンクなし)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "投稿者パンくずのテンプレートです。パンくずがリンクになっていないときだけ使われます。"
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "投稿者表示フォーマット"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_nameは、ユーザプロフィールの\"ブログ上の表示名\"で指定されたものを使います。他はユーザプロフィールの設定に従います。"
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "日付テンプレート"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "日付パンくず用のテンプレートです。"
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "日付テンプレート(リンクなし)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "日付パンくずのテンプレートです。パンくずがリンクになっていないときだけ使われます。"
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "検索テンプレート"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "検索パンくずのアンカー用テンプレートです。検索結果が複数ページに渡るときにだけ使われます。"
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "検索テンプレート(リンクなし)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "検索パンくずのアンカー用テンプレート。検索結果が複数ページに渡り、リンクになっていないときだけ使われます。"
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404タイトル"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "404テンプレート"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "404パンくずのテンプレートです。"
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "変更を保存"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "設定"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "あなたの設定はもうサポートされていません。"
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "すぐに設定を移行します。"
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "すぐに移行する。"
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "プラグインのインストールが終わっていません。"
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "すぐにデフォルトの設定を読み込みます。"
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "終了しました。"
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "プラグインの設定が正しくありません。"
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "すぐに設定を直します。"
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "すぐに直します。"
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "設定を保存しました。"
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "設定の保存を取り消します。"
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "取り消し"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "保存されていない設定があります。"
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "次の設定は保存されませんでした。"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "%sバグ報告%sにこのメッセージを含めてください。"
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "このバージョンの%sサポートに投稿をしに行きます。"
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "アップロードしたファイルから設定をインポートしました。"
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "設定のインポートを中止します。"
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "ファイルからの設定インポートが失敗しました。"
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "設定をデフォルトに戻しました。"
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "設定のリセットを取り消します。"
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "直前の操作を取り消しました。"
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "直前の取り消しをキャンセルします。"
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "設定を移行しました。"
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "デフォルトの設定をインストールしました。"
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "XMLファイルから設定をインポートしたり、現在の設定をXMLファイルにエクスポートしたり、デフォルトの設定に戻したりします。"
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "設定ファイル"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "アップロードおよびインポートするXML設定ファイルを選択してください。"
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "ページ%htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "&#39;%htitle%&#39;の検索結果"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
+ msgstr "%htitle%の記事"
languages/breadcrumb-navxt-lt_LT.mo ADDED
Binary file
languages/breadcrumb-navxt-lt_LT.po ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Breadcrumb NavXT in Lithuanian
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 01:59:26+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT Tinklas Nustatymai"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Prideda breadcrumb navigaciją rodyti lankytojas&#39;s kelias į savo dabartinę vietą. Daugiau informacijos apie tai, kaip naudoti šią įskiepiai vizito <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "Hierarchija, kuris yra tinklalapio takas būtų galima parodyti. Atkreipkite dėmesį, kad \"Rašyti tėvų\" variantas, gali prireikti papildomo įskiepio dirbti taip, kaip tikėtasi, nes tai ne hierarchinė pranešimas tipas."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr ""
31
+ "<a title=\"Eiti į %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>\n"
32
+ "\n"
33
+
34
+ #: class.bcn_breadcrumb_trail.php:109
35
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
36
+ msgstr "Paieškos rezultatai &#39;<a title=\"Eiti į pirmąjį puslapį paieškos rezultatų %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
37
+
38
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
39
+ msgid "A collection of settings most likely to be modified are located under this tab."
40
+ msgstr "Nustatymų greičiausiai rinkinys turi būti pakeista yra pagal šį skirtuką."
41
+
42
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
43
+ msgid "Title Length"
44
+ msgstr "pavadinimas ilgis"
45
+
46
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
47
+ msgid "Limit the length of the breadcrumb title."
48
+ msgstr "Apriboti breadcrumb pavadinimo ilgį."
49
+
50
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
51
+ msgid "Mainsite Breadcrumb"
52
+ msgstr "Nuoroda į pagrindinį puslapį"
53
+
54
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
55
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
56
+ msgstr "Už visas po tipų (Pranešimai, puslapius, ir Custom Standartinė tipai) yra nustatymai pagal šį skirtuką."
57
+
58
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
59
+ msgid "Post Types"
60
+ msgstr "Standartinė tipai"
61
+
62
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
63
+ msgid "Post Hierarchy Display"
64
+ msgstr "Pradėti hierarchija Rodyti"
65
+
66
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
67
+ msgid "Post Hierarchy"
68
+ msgstr "Pradėti hierarchija"
69
+
70
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
71
+ msgid "%s Hierarchy Display"
72
+ msgstr "%s hierarchija Rodyti"
73
+
74
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
75
+ msgid "Post Formats"
76
+ msgstr "Standartinė formatai"
77
+
78
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
79
+ msgid "Max Title Length: "
80
+ msgstr "Maksimalus Pavadinimas Ilgis:"
81
+
82
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
83
+ msgid "Posts"
84
+ msgstr "Pranešimai"
85
+
86
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
87
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
88
+ msgid "Post Parent"
89
+ msgstr "Standartinė tėvų"
90
+
91
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
92
+ msgid "The hierarchy which the breadcrumb trail will show."
93
+ msgstr "Hierarchija, kuri tinklalapio takas bus rodomas."
94
+
95
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
96
+ msgid "%s Hierarchy"
97
+ msgstr "%s hierarchija"
98
+
99
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
100
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
101
+ msgstr "Už visų taksonomijos (įskaitant Kategorijos, žodžius ir nestandartinių taksonomijos) yra nustatymai pagal šį skirtuką."
102
+
103
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
104
+ msgid "Taxonomies"
105
+ msgstr "taksonomijos"
106
+
107
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
108
+ msgid "Post Format Template"
109
+ msgstr "Standartinė Formatas šabloną"
110
+
111
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
112
+ msgid "The template for post format breadcrumbs."
113
+ msgstr "Už pašto formato breadcrumbs šablonas."
114
+
115
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
116
+ msgid "Post Format Template (Unlinked)"
117
+ msgstr "Pranešimo formatas šablonas (atspari)"
118
+
119
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
120
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
121
+ msgstr "Už post_format džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
122
+
123
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
124
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
125
+ msgstr "Už autorius ir data archyvuose, kratas ir 404 puslapių parametrai yra pagal šį skirtuką."
126
+
127
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
128
+ msgid "Author Archives"
129
+ msgstr "Autorius Archyvas"
130
+
131
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
132
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
133
+ msgstr "<a title=\"Eiti į %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
+
135
+ #: class.bcn_breadcrumb_trail.php:124
136
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
137
+ msgstr "straipsniai: <a title=\"Eiti į pirmąjį puslapį pranešimų per %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
138
+
139
+ #: class.bcn_breadcrumb_trail.php:131
140
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
141
+ msgstr "<a title=\"Eiti į %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
142
+
143
+ #: class.bcn_breadcrumb_trail.php:135
144
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
145
+ msgstr "<a title=\"Eiti į %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
146
+
147
+ #: includes/class.mtekk_adminkit.php:296
148
+ msgid "Your settings are for a newer version."
149
+ msgstr "Jūsų nustatymai yra skirtos naujesnės versijos."
150
+
151
+ #: class.bcn_widget.php:96
152
+ msgid "Text to show before the trail:"
153
+ msgstr "Tekstas, kuris bus rodomas prieš Trail:"
154
+
155
+ #: class.bcn_widget.php:103
156
+ msgid "Schema.org"
157
+ msgstr "Schema.org"
158
+
159
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
160
+ msgid "Go to the Breadcrumb NavXT translation project."
161
+ msgstr "Eiti į Breadcrumb NavXT vertimo projektą."
162
+
163
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
164
+ #: class.bcn_network_admin.php:25
165
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
166
+ msgstr "Jūsų PHP versija yra per sena, prašome atnaujinti į naujesnę versiją. Jūsų versija yra%1$s Breadcrumb NavXT reikia %2$S"
167
+
168
+ #: class.bcn_widget.php:33
169
+ msgid "Adds a breadcrumb trail to your sidebar"
170
+ msgstr "Prideda parankinės Breadcrumb takas"
171
+
172
+ #: class.bcn_widget.php:92
173
+ msgid "Title:"
174
+ msgstr "Titel:"
175
+
176
+ #: class.bcn_widget.php:100
177
+ msgid "Output trail as:"
178
+ msgstr "Išėjimo takas kaip:"
179
+
180
+ #: class.bcn_widget.php:102
181
+ msgid "List"
182
+ msgstr "sąrašas"
183
+
184
+ #: class.bcn_widget.php:104
185
+ msgid "Plain"
186
+ msgstr "paprastas"
187
+
188
+ #: class.bcn_widget.php:109
189
+ msgid "Link the breadcrumbs"
190
+ msgstr "nuoroda Breadcrumbs"
191
+
192
+ #: class.bcn_widget.php:111
193
+ msgid "Reverse the order of the trail"
194
+ msgstr "Sukeisti takai tvarka"
195
+
196
+ #: class.bcn_widget.php:113
197
+ msgid "Hide the trail on the front page"
198
+ msgstr "Slėpti takas pagrindiniame puslapyje"
199
+
200
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
201
+ msgid "Insufficient privileges to proceed."
202
+ msgstr "Nepakankami įgaliojimai tęsti."
203
+
204
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
205
+ msgid "Tips for the settings are located below select options."
206
+ msgstr "Patarimai nustatymų yra žemiau pasirinkite Funkcijos."
207
+
208
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
209
+ msgid "Resources"
210
+ msgstr "ištekliai"
211
+
212
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
213
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
214
+ msgstr "%sPamokos ir How Tos%s: Yra keletas vadovai, vadovėliai, ir kaip tos galima rasti autoriaus svetainėje."
215
+
216
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
217
+ msgid "Go to the Breadcrumb NavXT tag archive."
218
+ msgstr "Eiti į Breadcrumb NavXT tag archive."
219
+
220
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
221
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
222
+ msgstr "%sDokumentacijos online%s: Patikrinkite daugiau indepth techninės informacijos dokumentacijoje."
223
+
224
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
225
+ msgid "Go to the Breadcrumb NavXT online documentation"
226
+ msgstr "Eiti į Breadcrumb NavXT online dokumentacijoje"
227
+
228
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
229
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
230
+ msgstr "%sPranešk apie klaidą%s: Jei manote, kad suradote klaidą, nurodykite savo WordPress versiją ir informaciją apie tai, kaip atkurti klaidą."
231
+
232
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
233
+ msgid "Go to the Breadcrumb NavXT support post for your version."
234
+ msgstr "Eiti į Breadcrumb NavXT remti postą savo versiją"
235
+
236
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
237
+ msgid "Giving Back"
238
+ msgstr "Suteikus Atgal"
239
+
240
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
241
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
242
+ msgstr "%sPaaukoti%s: Meilė Breadcrumb NavXT ir norite padėti plėtrą? Apsvarstykite pirkti autoriui alus."
243
+
244
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
245
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
246
+ msgstr "Eiti į PayPal duoti auką Breadcrumb NavXT."
247
+
248
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
249
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
250
+ msgstr "%sIšversti%s: Ar jūsų kalba nėra? Susisiekite John Havlík gauti versti."
251
+
252
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
253
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
254
+ #: class.bcn_network_admin.php:390
255
+ msgid "General"
256
+ msgstr "Bendras"
257
+
258
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
259
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
260
+ msgstr "Dėl šio puslapio nustatymai įsigaliotų, turite naudoti pridedamą Breadcrumb NavXT valdikliui, ar vietos arba Kodekso skirsniuose į savo temą."
261
+
262
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
263
+ msgid "Breadcrumb trail with separators"
264
+ msgstr "Breadcrumb takas su separatorių"
265
+
266
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
267
+ msgid "Breadcrumb trail in list form"
268
+ msgstr "Breadcrumb takas sąrašo forma"
269
+
270
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
271
+ msgid "Quick Start"
272
+ msgstr "Quick Start"
273
+
274
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
275
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
276
+ msgstr "Naudojant kodą iš Quick Start ankstesniame skyriuje, taip CSS gali būti naudojami kaip bazė stiliaus jūsų tinklalapio puslapių seką."
277
+
278
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
279
+ msgid "Styling"
280
+ msgstr "Styling"
281
+
282
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
283
+ msgid "Import/Export/Reset"
284
+ msgstr "Importas/Eksportas/Atkurti"
285
+
286
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
287
+ #: includes/class.mtekk_adminkit.php:792
288
+ msgid "Import"
289
+ msgstr "Importas"
290
+
291
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
292
+ #: includes/class.mtekk_adminkit.php:793
293
+ msgid "Export"
294
+ msgstr "Eksportas"
295
+
296
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
297
+ #: includes/class.mtekk_adminkit.php:794
298
+ msgid "Reset"
299
+ msgstr "Atstatyti"
300
+
301
+ #: class.bcn_admin.php:309
302
+ msgid "Breadcrumb NavXT Settings"
303
+ msgstr "Breadcrumb NavXT Nustatymai"
304
+
305
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
306
+ msgid "Breadcrumb Separator"
307
+ msgstr "Breadcrumb separatorius"
308
+
309
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
310
+ msgid "Placed in between each breadcrumb."
311
+ msgstr "Dedami tarpusavyje breadcrumb."
312
+
313
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
314
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
315
+ msgid "Home Breadcrumb"
316
+ msgstr "Home Breadcrumb"
317
+
318
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
319
+ msgid "Place the home breadcrumb in the trail."
320
+ msgstr ""
321
+ "Patalpinti namo breadcrumb į seką.\n"
322
+ "\t\n"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "Home Template"
326
+ msgstr "Pagrindinis Šablonas"
327
+
328
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
329
+ msgid "The template for the home breadcrumb."
330
+ msgstr "Namams šablonas už breadcrumb."
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "Home Template (Unlinked)"
334
+ msgstr "Pagrindinis šablonas (atspari)"
335
+
336
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
337
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
338
+ msgstr "Namams už tinklalapio šablonas, naudojamas, kai tinklalapio nėra susiję."
339
+
340
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
341
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
342
+ msgid "Blog Breadcrumb"
343
+ msgstr "Blog Breadcrumb"
344
+
345
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
346
+ msgid "Place the blog breadcrumb in the trail."
347
+ msgstr ""
348
+ "Patalpinti blog breadcrumb į seką.\n"
349
+ "\t\n"
350
+
351
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
352
+ msgid "Blog Template"
353
+ msgstr "Blog šablonas"
354
+
355
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
356
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
357
+ msgstr "šablonas už blog breadcrumb, used only in static front page environments."
358
+
359
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
360
+ msgid "Blog Template (Unlinked)"
361
+ msgstr "Blog šablonas (Atspari)"
362
+
363
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
364
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
365
+ msgstr "Už dienoraštį tinklalapio šablonas, naudojamas tik statinio tituliniame puslapyje aplinkoje, kai tinklalapio nėra susiję."
366
+
367
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
368
+ msgid "Main Site Breadcrumb"
369
+ msgstr "Titulinis Breadcrumb"
370
+
371
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
372
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
373
+ msgstr "Padėkite Pagrindinė svetainė namo tinklalapio puslapių tvarką sudarydamas keliose setup takas."
374
+
375
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
376
+ msgid "Main Site Home Template"
377
+ msgstr "Titulinis Pagrindinis Šablonas"
378
+
379
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
380
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
381
+ msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
382
+
383
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
384
+ msgid "Main Site Home Template (Unlinked)"
385
+ msgstr "Svetainės pagrindinį namuose tinklalapio šablonas, naudojamas tik keliose aplinkose."
386
+
387
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
388
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
389
+ msgstr "Svetainės pagrindinį namuose tinklalapio, naudojamas tik keliose aplinkose ir kai tinklalapio šablonas nėra susiję."
390
+
391
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
392
+ msgid "Current Item"
393
+ msgstr "Aktualus Prekės"
394
+
395
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
396
+ msgid "Link Current Item"
397
+ msgstr "Nuoroda Aktualus Prekės"
398
+
399
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
400
+ msgid "Yes"
401
+ msgstr "Taip"
402
+
403
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
404
+ msgid "Paged Breadcrumb"
405
+ msgstr "Puslapi Breadcrumb"
406
+
407
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
408
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
409
+ msgstr "Įtraukti puslapi breadcrumb į breadcrumb juostą."
410
+
411
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
412
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
413
+ msgstr "Nurodo, kad vartotojas yra puslapyje išskyrus ant sunumeruoti pranešimų / puslapius pirmas."
414
+
415
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
416
+ msgid "Paged Template"
417
+ msgstr "Puslapi Šablonas"
418
+
419
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
420
+ msgid "The template for paged breadcrumbs."
421
+ msgstr "Už puslapio breadcrumbs šablonas."
422
+
423
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
424
+ msgid "Post Template"
425
+ msgstr "Standartinė šabloną"
426
+
427
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
428
+ msgid "The template for post breadcrumbs."
429
+ msgstr "Už pašto breadcrumbs šablonas."
430
+
431
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
432
+ msgid "Post Template (Unlinked)"
433
+ msgstr "Rašyti šablonas (atspari)"
434
+
435
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
436
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
437
+ msgstr "Už pašto breadcrumbs, naudojamas tik tada, kai breadcrumb nėra susijęs šablonas."
438
+
439
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
440
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
441
+ msgstr "Rodyti taksonomiją, padėsiantį į tinklalapio takas paštu."
442
+
443
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
444
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
445
+ msgid "Categories"
446
+ msgstr "Kategorijos"
447
+
448
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
449
+ msgid "Dates"
450
+ msgstr "datos"
451
+
452
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
453
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
454
+ msgid "Tags"
455
+ msgstr "Tags"
456
+
457
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
458
+ msgid "Pages"
459
+ msgstr "Puslapiai"
460
+
461
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
462
+ msgid "Page Template"
463
+ msgstr "Page Web Šablono"
464
+
465
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
466
+ msgid "The template for page breadcrumbs."
467
+ msgstr "Už puslapio šablonas breadcrumbs."
468
+
469
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
470
+ msgid "Page Template (Unlinked)"
471
+ msgstr "Page Web Šablono (atspari)"
472
+
473
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
474
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
475
+ msgstr "Už puslapio breadcrumbs šablonas,naudojamas tik tada kai breadcrumb nėra susiję."
476
+
477
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
478
+ msgid "Attachment Template"
479
+ msgstr "Priedas Šablonas"
480
+
481
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
482
+ msgid "The template for attachment breadcrumbs."
483
+ msgstr "Kabinami ant breadcrumbs šablonas."
484
+
485
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
486
+ msgid "Attachment Template (Unlinked)"
487
+ msgstr "Priedas šablonas (atspari)"
488
+
489
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
490
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
491
+ msgstr "Kabinami ant breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
492
+
493
+ #: breadcrumb-navxt.php:247
494
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
495
+ msgstr "<a title=\"eiti į %title%.\" href=\"%link%\">%htitle%</a>"
496
+
497
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
498
+ msgid "%htitle%"
499
+ msgstr "%htitle%"
500
+
501
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
502
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
503
+ msgid "%s Template"
504
+ msgstr "%s šablonas"
505
+
506
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
507
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
508
+ msgid "The template for %s breadcrumbs."
509
+ msgstr "šablonas %s breadcrumbs."
510
+
511
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
512
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
513
+ msgid "%s Template (Unlinked)"
514
+ msgstr "%s šablonas (atspari)"
515
+
516
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
517
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
518
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
519
+ msgstr "%s breadcrumbs šablonas, naudojamas tik tada, kai breadcrumb nėra susiję."
520
+
521
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
522
+ msgid "%s Root Page"
523
+ msgstr "%s Root Page"
524
+
525
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
526
+ msgid "&mdash; Select &mdash;"
527
+ msgstr "&mdash; Pasirinkti &mdash;"
528
+
529
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
530
+ msgid "%s Archive Display"
531
+ msgstr "%s Archyvas Rodyti"
532
+
533
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
534
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
535
+ msgstr "Rodyti breadcrumb už %s arba tipo pareigoms archyvų tinklalapio takas."
536
+
537
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
538
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
539
+ msgstr "Rodyti taksonomiją, vedantį į%s į breadcrumb juostą."
540
+
541
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
542
+ msgid "Category Template"
543
+ msgstr "Kategorija Šablonas"
544
+
545
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
546
+ msgid "The template for category breadcrumbs."
547
+ msgstr "Kategorijos už breadcrumbs šablonas."
548
+
549
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
550
+ msgid "Category Template (Unlinked)"
551
+ msgstr "Kategorija šablonas (atspari)"
552
+
553
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
554
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
555
+ msgstr "Kategorijos breadcrumb šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
556
+
557
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
558
+ msgid "Tag Template"
559
+ msgstr "Tag Šablonas"
560
+
561
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
562
+ msgid "The template for tag breadcrumbs."
563
+ msgstr "Tag breadcrumbs šablonas."
564
+
565
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
566
+ msgid "Tag Template (Unlinked)"
567
+ msgstr "Tag šablonas (atspari)"
568
+
569
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
570
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
571
+ msgstr "šablonas už Tag breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susiję."
572
+
573
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
574
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
575
+ msgid "Miscellaneous"
576
+ msgstr "įvairialypis"
577
+
578
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
579
+ msgid "Author Template"
580
+ msgstr "Autorius Šablonas"
581
+
582
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
583
+ msgid "The template for author breadcrumbs."
584
+ msgstr "šablonas už autoriaus breadcrumbs"
585
+
586
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
587
+ msgid "Author Template (Unlinked)"
588
+ msgstr "Autorius šablonas (atspari)"
589
+
590
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
591
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
592
+ msgstr "Autoriaus džiūvėsėliai šablonas, naudojamas tik tada, kai tinklalapio nėra susiję."
593
+
594
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
595
+ msgid "Author Display Format"
596
+ msgstr "Autorius Ekranas Formatas"
597
+
598
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
599
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
600
+ msgstr "display_namenaudoja pavadinimą, nurodytą \"Display name viešai kaip\" pagal vartotojo aprašymą kiti atitinka variantų vartotojo profilį."
601
+
602
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
603
+ msgid "Date Template"
604
+ msgstr "data Šablonas"
605
+
606
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
607
+ msgid "The template for date breadcrumbs."
608
+ msgstr "Datos ir breadcrumbs šablonas."
609
+
610
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
611
+ msgid "Date Template (Unlinked)"
612
+ msgstr "Data šablonas (atspari)"
613
+
614
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
615
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
616
+ msgstr "Datos ir breadcrumbs, naudojamas tik tada, kai tinklalapio nėra susijęs šablonas."
617
+
618
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
619
+ msgid "Search Template"
620
+ msgstr "Paieška Šablonas"
621
+
622
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
623
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
624
+ msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius."
625
+
626
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
627
+ msgid "Search Template (Unlinked)"
628
+ msgstr "Paieška šablonas (atspari)"
629
+
630
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
631
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
632
+ msgstr "Saito šablonas paieškos breadcrumbs, naudojamas tik tada, kai paieškos rezultatai span kelis puslapius ir naršymo nėra susiję."
633
+
634
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
635
+ msgid "404 Title"
636
+ msgstr "404 Titras"
637
+
638
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
639
+ msgid "404 Template"
640
+ msgstr "404 Šablonas"
641
+
642
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
643
+ msgid "The template for 404 breadcrumbs."
644
+ msgstr "Šablonas už 404 breadcrumbs."
645
+
646
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
647
+ msgid "Save Changes"
648
+ msgstr "Išsaugoti pakeitimus"
649
+
650
+ #: includes/class.mtekk_adminkit.php:217
651
+ msgid "Settings"
652
+ msgstr "Nustatymai"
653
+
654
+ #: includes/class.mtekk_adminkit.php:287
655
+ msgid "Your settings are out of date."
656
+ msgstr "Jūsų nustatymai paseno."
657
+
658
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
659
+ msgid "Migrate the settings now."
660
+ msgstr "Nustatymai migruoti dabar."
661
+
662
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
663
+ msgid "Migrate now."
664
+ msgstr "Migracija dabar."
665
+
666
+ #: includes/class.mtekk_adminkit.php:304
667
+ msgid "Your plugin install is incomplete."
668
+ msgstr "Jūsų įskiepiai installtion yra baigtas."
669
+
670
+ #: includes/class.mtekk_adminkit.php:304
671
+ msgid "Load default settings now."
672
+ msgstr "Įdėkite numatytuosius nustatymus dabar."
673
+
674
+ #: includes/class.mtekk_adminkit.php:304
675
+ msgid "Complete now."
676
+ msgstr "Baigtas."
677
+
678
+ #: includes/class.mtekk_adminkit.php:312
679
+ msgid "Your plugin settings are invalid."
680
+ msgstr "Jūsų plugin parametrai yra negerai."
681
+
682
+ #: includes/class.mtekk_adminkit.php:312
683
+ msgid "Attempt to fix settings now."
684
+ msgstr "Bandymai, kaip nustatyti nustatymus dabar."
685
+
686
+ #: includes/class.mtekk_adminkit.php:312
687
+ msgid "Fix now."
688
+ msgstr "Fiksuotas dabar."
689
+
690
+ #: includes/class.mtekk_adminkit.php:490
691
+ msgid "Settings successfully saved."
692
+ msgstr "Nustatymai išsaugoti sėkmingai."
693
+
694
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
695
+ msgid "Undo the options save."
696
+ msgstr "Padaryti taupymo atšaukti galimybes."
697
+
698
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
699
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
700
+ #: includes/class.mtekk_adminkit.php:641
701
+ msgid "Undo"
702
+ msgstr "Padaryti atgal"
703
+
704
+ #: includes/class.mtekk_adminkit.php:495
705
+ msgid "Some settings were not saved."
706
+ msgstr "Kai kurie parametrai nebuvo išsaugotas."
707
+
708
+ #: includes/class.mtekk_adminkit.php:496
709
+ msgid "The following settings were not saved:"
710
+ msgstr "Kai kurie parametrai nebuvo išsaugotas."
711
+
712
+ #: includes/class.mtekk_adminkit.php:501
713
+ msgid "Please include this message in your %sbug report%s."
714
+ msgstr "Pridėkite šią naujieną prie jūsų %sbug report%s ."
715
+
716
+ #: includes/class.mtekk_adminkit.php:501
717
+ msgid "Go to the %s support post for your version."
718
+ msgstr "Eiti į %s nuotolinio paramos savo versiją."
719
+
720
+ #: includes/class.mtekk_adminkit.php:600
721
+ msgid "Settings successfully imported from the uploaded file."
722
+ msgstr "Nustatymai buvo sėkmingai importuoti iš įkelto failo."
723
+
724
+ #: includes/class.mtekk_adminkit.php:600
725
+ msgid "Undo the options import."
726
+ msgstr "Padaryti Anuliuoti Importas galimybes."
727
+
728
+ #: includes/class.mtekk_adminkit.php:605
729
+ msgid "Importing settings from file failed."
730
+ msgstr "Importuoti nustatymus iš failo nepavyko."
731
+
732
+ #: includes/class.mtekk_adminkit.php:624
733
+ msgid "Settings successfully reset to the default values."
734
+ msgstr "Sėkmingai pakeisti gamyklinius nustatymus."
735
+
736
+ #: includes/class.mtekk_adminkit.php:624
737
+ msgid "Undo the options reset."
738
+ msgstr "Padaryti iš naujo atšaukti galimybes."
739
+
740
+ #: includes/class.mtekk_adminkit.php:641
741
+ msgid "Settings successfully undid the last operation."
742
+ msgstr "Nustatymai, paskutinės operacijos sėkmingai pakeistas."
743
+
744
+ #: includes/class.mtekk_adminkit.php:641
745
+ msgid "Undo the last undo operation."
746
+ msgstr "Kartokite."
747
+
748
+ #: includes/class.mtekk_adminkit.php:676
749
+ msgid "Settings successfully migrated."
750
+ msgstr "Nustatymai sėkmingai perkelti."
751
+
752
+ #: includes/class.mtekk_adminkit.php:683
753
+ msgid "Default settings successfully installed."
754
+ msgstr "Gamykliniai nustatymai sėkmingai įdiegta."
755
+
756
+ #: includes/class.mtekk_adminkit.php:784
757
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
758
+ msgstr "Importuoti nustatymus iš XML failą, eksporto dabartinius nustatymus XML failo arba iš naujo į numatytuosius nustatymus."
759
+
760
+ #: includes/class.mtekk_adminkit.php:787
761
+ msgid "Settings File"
762
+ msgstr "Nustatymai failą"
763
+
764
+ #: includes/class.mtekk_adminkit.php:790
765
+ msgid "Select a XML settings file to upload and import settings from."
766
+ msgstr "Pasirinkite XML failą su nustatymais įkelti ir importuoti nustatymus."
767
+
768
+ #: class.bcn_breadcrumb_trail.php:82
769
+ msgid "Page %htitle%"
770
+ msgstr "Puslapis %htitle%"
771
+
772
+ #: class.bcn_breadcrumb_trail.php:106
773
+ msgid "404"
774
+ msgstr "404"
775
+
776
+ #: class.bcn_breadcrumb_trail.php:111
777
+ msgid "Search results for &#39;%htitle%&#39;"
778
+ msgstr "Paieškos rezultatai &#39;%htitle%&#39;"
779
+
780
+ #: class.bcn_breadcrumb_trail.php:126
781
+ msgid "Articles by: %htitle%"
782
+ msgstr "Straipsniai: %htitle%"
languages/breadcrumb-navxt-nl_NL.mo ADDED
Binary file
languages/breadcrumb-navxt-nl_NL.po ADDED
@@ -0,0 +1,776 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Translation of Breadcrumb NavXT in Dutch
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:02:47+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT Netwerk Instellingen"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Voegt kruimelpad navigatie toe welke aan de bezoeker het pad toont van hun huidige locatie. Voor meer informatie over gebruik van deze plugin bezoek <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "De hiërarchie die het kruimelpad zal tonen. De \"Hoofdbericht\" optie kan een extra plugin vereisen om correct te kunnen functioneren aangezien dit een niet-hiërarchisch bericht type is."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Ga naar %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Zoekresultaten boor &#39;<a title=\"Ga naar de eerste pagina van de zoekresultaten voor %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "Een verzameling instellingen die het meest waarschijnlijk worden aangepast bevinden zich onder dit tabblad."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Titel Lengte"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Beperk de lengte van de titel van het kruimelpad."
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Kruimelpad Hoofdsite"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "De instellingen voor alle typen (Berichten, Pagina's, en Custom Post Types) bevinden zich onder dit tabblad."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Bericht Typen"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Weergave Bericht Hiërarchie"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Bericht Hiërarchie"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "%s Hiërarchie Weergave"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Bericht Opmaak"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Max Titel Lengte: "
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Berichten"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Hoofdbericht"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "De hiërarchie die het kruimelpad zal laten zien."
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "%s Hiërarchie"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "De instellingen voor alle taxonomieën (waaronder Categorieën, Tags, en aangepaste taxonomieën) bevinden zich onder dit tabblad."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Taxonomies"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Bericht Opmaak Sjabloon"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "Het sjabloon voor bericht opmaak kruimelpaden."
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Bericht Opmaak Sjabloon (Niet Gelinkt)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "Het sjabloon voor post_format kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet wordt gekoppeld."
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "De instellingen voor de auteur en datum archieven, zoekopdrachten, en 404 pagina's bevinden zich onder dit tabblad."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Author Archief"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Ga naar het %title% tag archief.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Artikelen van: <a title=\"Ga naar de eerste pagina van de berichten van %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Ga naar het %title% categorie archief.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Ga naar het %title% archief.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "Uw instellingen zijn voor een nieuwere versie."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Tekst om weer te geven voor het pad:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Ga naar het Breadcrumb NavXT vertaalproject."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "Uw PHP versie is te oud, upgrade naar een nieuwere versie. Uw versie is %1$s, Breadcrumb NavXT vereist %2$s"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Voegt een kruimelpad toe aan uw sidebar"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Titel:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Output pad als:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Lijst"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Standaard"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Link het kruimelpad"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "De volgorde van het pad omdraaien"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Verberg het pad op de voorpagina"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Onvoldoende rechten om verder te gaan."
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "Tips voor de instellingen bevinden zich onder geselecteerde opties."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Middelen"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sHandleidingen en Instructies%s: Er zijn verschillende Engelstalige gidsen, handleidingen, en instructies beschikbaar op de website van de auteur."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Ga naar het Breadcrumb NavXT tag archief."
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sOnline Documentatie%s: Raadpleeg de documentatie (Engels) voor meer diepgaande technische informatie."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Ga naar online Breadcrumb NavXT documentatie"
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%sMeld een bug%s: Als u denkt dat u een bug hebt gevonden meld dan ook uw WordPress versie en details over hoe de bug te reproduceren."
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Ga naar het Breadcrumb NavXT ondersteuningsbericht voor uw versie."
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Geef Terug"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%sDoneer%s: Heeft u plezier van Breadcrumb NavXT en wilt u de ontwikkeling verder helpen? Overweeg de aanschaf van een biertje voor de auteur."
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Ga naar PayPal om te doneren aan Breadcrumb NavXT."
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%sTranslate%s: Is uw tail niet beschikbaar? Contacteer John Havlik om de vertaling te verkrijgen."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Algemeen"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "Om de instellingen op deze pagina door te voeren moet u gebruik maken van het meegeleverde Breadcrumb NavXT widget, of plaats een van de onderstaande code secties in uw thema."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Kruimelpad met afscheidingstekens"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Kruimelpad in lijst vorm"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Snelle Start"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Met behulp van de code van de bovenstaande Snelle Start sectie kan de volgende CSS worden gebruikt als basis voor het stylen van uw kruimelpad."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Styling"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Import/Export/Reset"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Import"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Export"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Reset"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Breadcrumb NavXT Instellingen"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Kruimelpad Afscheidingsteken"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Geplaatst tussen elk kruimelpad."
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Home Kruimelpad"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Plaatst het home kruimelpad in het spoor."
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Home Template"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "Het sjabloon voor het home kruimelpad."
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Home Template (Niet Gelinkt)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "Het sjabloon voor het home kruimelpad, gebruikt wanneer het kruimelpad niet gelinkt is."
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Blog Kruimelpad"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Plaatst het blog kruimelpad in het spoor."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Blog Template"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Blog Template (Niet Gelinkt)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "Het sjabloon voor het blog kruimelpad, wordt alleen gebruikt in statische hoofdpagina omgevingen en wanneer het kruimelpad niet gelinkt is."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Hoofdsite Kruimelpad"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Plaatst het home kruimelpad van de hoofdsite in het spoor in een multisite installatie."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Hoofdsite Home Sjabloon"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr " Hoofdsite Home Template (Niet Gelinkt)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "Het sjabloon voor het hoofdsite home kruimelpad, wordt alleen gebruikt in multisite omgevingen en wanneer het kruimelpad niet gelinkt is."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Huidig Item"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Link Huidig Item"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Ja"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Gepagineerd Kruimelpad"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Voeg het gepagineerde kruimelpad toe aan het kruimelpad spoor."
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Geeft aan dat de gebruiker op een andere pagina is dan de eerste op gepagineerde berichten/pagina's."
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Gepagineerd Sjabloon"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Het sjabloon voor gepagineerde kruimelpaden."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Bericht Template"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "Het sjabloon voor bericht kruimelpaden."
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Bericht Template (Niet Gelinkt)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "Het sjabloon voor bericht kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Geef de taxonomie weer die leidt tot een bericht in het kruimelpad."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Categorieën"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Data"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Tags"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Pagina's"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Pagina Template"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "Het sjabloon voor pagina kruimelpaden."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Pagina Template (Niet Gelinkt)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "Het sjabloon voor pagina kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "Bijlage Sjabloon"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Het sjabloon voor bijlage kruimelpaden."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Bijlage Sjabloon (Niet Gelinkt)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "Het sjabloon voor bijlage kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Ga naar %title%.\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "%s Template"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "Het sjabloon voor %s kruimelpaden."
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "%s Sjabloon (Niet Gelinkt)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "Het sjabloon voor %s kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet is gekoppeld."
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "%s Hoofd Pagina"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Selecteer &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "%s Archief Weergave"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Toon het kruimelpad voor %s bericht type archieven in het kruimelpad."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Toon de taxonomie welke leidt tot een %s in het kruimelpad."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Categorie Template"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "Het sjabloon voor categorie kruimelpaden."
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Categorie Template (Niet Gelinkt)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "The template for category breadcrumbs, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Tag Template"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "Het sjabloon voor tag kruimelpaden."
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Tag Template (Niet Gelinkt)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "Het sjabloon voor tag kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Diversen"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Auteur Template"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Het sjabloon voor auteur kruimelpaden."
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "Auteur Sjabloon (Niet Gelinkt)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "Het sjabloon voor auteur kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Auteur Weergave Opmaak"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name gebruikt de naam opgegeven in \"Toon naam publiekelijk als\" onder het gebruikersprofiel, de anderen komen overeen met opties in het gebruikersprofiel."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Datum Template"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "Het sjabloon voor datum kruimelpaden."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Datum Template (Niet Gelinkt)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "Het sjabloon voor datum kruimelpaden, wordt alleen gebruikt wanneer het kruimelpad niet gelinkt is."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Zoek Template"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Zoek Template (Niet Gelinkt)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "Het anker sjabloon voor zoek kruimelpaden, wordt alleen gebruikt wanneer de zoekresultaten meerdere pagina's omvat en wanneer het kruimelpad niet gelinkt is."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404 Titel"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "404 Template"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "Het sjabloon voor 404 kruimelpaden."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Opslaan Wijzigingen"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Instellingen"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "Uw instellingen zijn verouderd."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Migreer nu de instellingen."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Migreer nu."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "Uw plugin installatie is onvolledig."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Laad nu de standaardinstellingen."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Voltooi nu."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "Uw plugin instellingen zijn ongeldig."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Poging om nu de instellingen te herstellen."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Herstel nu."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Instellingen succesvol opgeslagen."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Maak de opslaging van de opties ongedaan."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Ongedaan maken"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Sommige instellingen zijn niet opgeslagen."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "De volgende instellingen zijn niet opgeslagen:"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Gelieve dit bericht bij te voegen in uw %sbug report%s."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "Ga naar het %s ondersteuningsbericht voor uw versie."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Instellingen met succes geïmporteerd uit het geüploade bestand."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Ongedaan maken van de opties import."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Instellingen importeren uit bestand is mislukt."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Instellingen met succes teruggezet naar de standaardwaarden."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Maak terugzetten van de opties naar standaardwaarden ongedaan."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Instellingen heeft de laatste handeling met succes ongedaan gemaakt."
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Maak de laatste handeling ongedaan."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Instellingen succesvol gemigreerd."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Standaardinstellingen succesvol geïnstalleerd."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Instellingen importeren van een XML-bestand, exporteer de huidige instellingen naar een XML-bestand, of resetten naar de standaardinstellingen."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Instellingen Bestand"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Selecteer een XML-bestand om instellingen te uploaden en importeren."
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Pagina %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "Zoekresultaten voor &#39;%htitle%&#39;"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
+ msgstr "Artikelen van: %htitle%"
languages/breadcrumb-navxt-pt_PT.mo CHANGED
Binary file
languages/breadcrumb-navxt-pt_PT.po CHANGED
@@ -1,753 +1,776 @@
1
- # Translation of Breadcrumb NavXT in Portuguese (Portugal)
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-02-14 02:33:29+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "A hierarquia mostrada pela navegação. Note que a opção \"Post Parent\" pode obrigar a um plugin adicional para se comportar como esperado uma vez que se trata de um tipo de artigo não-hierárquico."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Ir para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Resultados de pesquisa pro &#39;<a title=\"Ir para a primeira página dos resultados de pesquisa por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Conjunto de configurações mais frequentes encontra-se neste separador."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Comprimento do título"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Limita o tamanho dos títulos da navegação estruturada."
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Navegação estruturada do site principal"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "As configurações para todos os tipos de artigo (Artigos, Páginas e Tipos de Artigo Personalizado) encontram-se neste separador."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Tipos de artigo"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Exibir hierarquia de artigos"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Hierarquia de artigos"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "Exibir hierarquia de %s"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Formatos de artigo"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Tamanho máximo do título:"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Artigos"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Pai do artigo"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "A hierarquia exibida no caminho de navegação."
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "Hierarquia de %s"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "As configurações de todas as taxonomias (incluindo categorias, tags e taxonomias personalizadas) encontram-se neste separador."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Taxonomias"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Modelo do formato de artigo"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "O modelo para navegação dos formatos de artigo."
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Modelo de formato de artigo (sem link)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "O modelo para navegação dos formatos de artigo, quando a navegação não tem link."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "As configurações dos arquivos por autor e data, pesquisas e páginas de erro 404 encontram-se neste separador."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Arquivos por autor"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Ir para os arquivos da tag %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Artigos por: <a title=\"Ir para a primeira página de artigos por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\"Ir para os arquivos da categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\"Ir para os arquivos de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "As suas configurações dizem respeito a uma versão mais recente."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Texto a exibir antes do caminho:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "A sua versão do PHP é muito antiga, atualize-a para uma versão mais recente. A sua versão é a %1$s, o Breadcrum NavXT necessita da %2$s."
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Adiciona um caminho à barra lateral"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Título:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Produzir rasto como:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Lista"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Por extenso"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Ligue a navegação estruturada"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Inverter a ordem do caminho"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Esconder o caminho na página principal"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Permissões insuficientes para prosseguir."
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Recursos"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sTutoriais e Guias%s: Existem vários guias e tutoriais disponíveis na página do autor."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Vá para o tópico Breadcrumb NavXT"
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Vá para a documentação online do Breadcrumb NavXT."
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
- msgstr "%sReporte um erro%s: Se julga que encontrou um erro, por favor inclua a sua versão do Wordpress assim cmo os detalhes que se devem ter em atenção para se reproduzir o erro."
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Retribuir"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "Genérica"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
- msgstr "Para que as configurações desta página surtam efeito, tem de incluir o widget Breadcrumb NavXT ou colocar os seguintes blocos de código no seu tema."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Rastos de navegação estruturada com separadores"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Rasto da navegação estruturada em forma de lista"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Início rápido"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Usando o código da secção iniciação rápida acima, o seguinte CSS pode ser usado como base para estilizar o rasto da sua navegação estruturada."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Estilos"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Importar/Exportar/Anular"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Importar"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Exportar"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Anular"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Preferências da navegação estruturada NavXT "
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Separador da navegação estruturada"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Colocado entre cada link de navegação."
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Navegação para a página principal"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Coloca a navegação da página principal no rasto"
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Modelo da página inicial:"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "O modelo para a navegação da página inicial."
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Modelo da página inicial (sem link)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Navegação estruturada do blog"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Coloque a navegação estruturada do blog no rasto."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Modelo de blog"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Modelo de blog (sem link)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Navegação do site principal"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Modelo para o sítio principal"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Modelo da página inicial do site principal (sem link)"
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "O modelo para a navegação da página inicial do site principal, usado somente em ambiente de multi-site e quando a navegação estruturada não está ligada."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Item actual"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Link no item actual"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Sim"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Navegação estruturada e paginada."
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Inclui a navegação paginada e estruturada no rasto."
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Modelo paginado"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Modelo para a navegação estruturada."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Modelo de artigo"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "O modelo para a navegação de artigos."
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Modelo de Artigo (sem link)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Categorias"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Datas"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Tópicos"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Páginas"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Modelo de página"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "O modelo para página de navegação estruturada."
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Modelo de página (sem link)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "Modelo de anexo"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Modelo para anexos de navegação estruturada."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Modelo de anexo (sem link)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Vá para %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "Modelo de %s"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "O modelo para navegação de %s."
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "Modelo de %s (sem link)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "Página raíz de %s"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Escolha &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "Exibir arquivo de %s"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Modelo de categoria"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "O template para categoria de navegação estruturada."
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Modelo de categoria (sem link)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Modelo de tópico"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "O modelo para a navegação dos tópicos."
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Modelo de tópico (sem link)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Diversos"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Modelo de autor"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Modelo para o autor da navegação estruturada."
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Modelo de autor (sem link)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Formato de visualização do Autor "
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name usa o nome especificado em \"Display name publicly as\" sob o perfil do utilizador os outros corresponde a opções no perfil do utilizador."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Modelo de data"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "O modelo para as datas da navegação estruturada."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Modelo de data (sem link)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Modelo de pesquisa"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Modelo de pesquisa (sem link)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "A âncora para o modelo da navegação da pesquisa, usada somente quando o resultado de busca se estende por várias páginas e a navegação estruturada não tem link."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "404 Título"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "Modelo 404"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "O modelo para 404 navegação estruturada."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Gravar alterações"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Configurações"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "As suas configurações estão desactualizadas."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Migre as configurações agora."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Migre agora."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "A instalação do seu plugin está completa."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Carregue as configurações por omissão agora."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Complete agora."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "As suas configurações são inválidas."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Tente corrigir agora as configurações."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Corrigir agora."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Configurações gravadas com sucesso."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Desfazer as opções salvar."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Desfazer"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Algumas configurações não forma salvas."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "As seguintes configurações não foram salvas:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Por favor inclua esta mensagem no seu %sbug report%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Seguir para o %s artigo de suporte da sua versão."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Configurações importadas com sucesso do ficheiro carregado."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Desfazer as opções de importação."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Importando as configurações do ficheiro falhado."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Configurações anuladas com sucesso para os valores por omissão."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Desfazer a anulação de opções."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Configurações da última operação desfeitas com sucesso"
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Desfazer a última operação."
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Configurações migradas com sucesso."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Configurações por omissão instaladas com sucesso."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Importe as configurações de um ficheiro XML, exporte as configurações actuais para um ficheiro XML ou anule para as configurações por omissão."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Ficheiro de configurações"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Seleccionne um ficheiro de configuração XML para carregar"
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Página %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "404"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Resultados da pesquisa por &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Artigos por: %htitle%"
1
+ # Translation of Breadcrumb NavXT in Portuguese (Portugal)
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:02:09+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Definições de rede do Breadcrumb NavXT"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Adiciona navegação mostrando o caminho do visitante até à localização atual. Para descobrir como usar este plugin, visite <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "A hierarquia mostrada pela navegação. Note que a opção \"Post Parent\" pode obrigar a um plugin adicional para se comportar como esperado uma vez que se trata de um tipo de artigo não-hierárquico."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Ir para %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Resultados de pesquisa pro &#39;<a title=\"Ir para a primeira página dos resultados de pesquisa por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "Conjunto de configurações mais frequentes encontra-se neste separador."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Comprimento do título"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Limita o tamanho dos títulos da navegação estruturada."
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Navegação estruturada do site principal"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "As configurações para todos os tipos de artigo (Artigos, Páginas e Tipos de Artigo Personalizado) encontram-se neste separador."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Tipos de artigo"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Exibir hierarquia de artigos"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Hierarquia de artigos"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "Exibir hierarquia de %s"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Formatos de artigo"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Tamanho máximo do título:"
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Artigos"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Pai do artigo"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "A hierarquia exibida no caminho de navegação."
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "Hierarquia de %s"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "As configurações de todas as taxonomias (incluindo categorias, tags e taxonomias personalizadas) encontram-se neste separador."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Taxonomias"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Modelo do formato de artigo"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "O modelo para navegação dos formatos de artigo."
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Modelo de formato de artigo (sem link)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "O modelo para navegação dos formatos de artigo, quando a navegação não tem link."
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "As configurações dos arquivos por autor e data, pesquisas e páginas de erro 404 encontram-se neste separador."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Arquivos por autor"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Ir para os arquivos da tag %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Artigos por: <a title=\"Ir para a primeira página de artigos por %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Ir para os arquivos da categoria %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Ir para os arquivos de %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "As suas configurações dizem respeito a uma versão mais recente."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Texto a exibir antes do caminho:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "A sua versão do PHP é muito antiga, atualize-a para uma versão mais recente. A sua versão é a %1$s, o Breadcrum NavXT necessita da %2$s."
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Adiciona um caminho à barra lateral"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Título:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Produzir rasto como:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Lista"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Por extenso"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Ligue a navegação estruturada"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "Inverter a ordem do caminho"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Esconder o caminho na página principal"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Permissões insuficientes para prosseguir."
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Recursos"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sTutoriais e Guias%s: Existem vários guias e tutoriais disponíveis na página do autor."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Vá para o tópico Breadcrumb NavXT"
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Vá para a documentação online do Breadcrumb NavXT."
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%sReporte um erro%s: Se julga que encontrou um erro, por favor inclua a sua versão do Wordpress assim cmo os detalhes que se devem ter em atenção para se reproduzir o erro."
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Retribuir"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Genérica"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "Para que as configurações desta página surtam efeito, tem de incluir o widget Breadcrumb NavXT ou colocar os seguintes blocos de código no seu tema."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Rastos de navegação estruturada com separadores"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Rasto da navegação estruturada em forma de lista"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Início rápido"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Usando o código da secção iniciação rápida acima, o seguinte CSS pode ser usado como base para estilizar o rasto da sua navegação estruturada."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Estilos"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Importar/Exportar/Anular"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Importar"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Exportar"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Anular"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Preferências da navegação estruturada NavXT "
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Separador da navegação estruturada"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Colocado entre cada link de navegação."
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Navegação para a página principal"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Coloca a navegação da página principal no rasto"
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Modelo da página inicial:"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "O modelo para a navegação da página inicial."
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Modelo da página inicial (sem link)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Navegação estruturada do blog"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Coloque a navegação estruturada do blog no rasto."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Modelo de blog"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Modelo de blog (sem link)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Navegação do site principal"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Modelo para o sítio principal"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "Modelo da página inicial do site principal (sem link)"
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "O modelo para a navegação da página inicial do site principal, usado somente em ambiente de multi-site e quando a navegação estruturada não está ligada."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Item actual"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Link no item actual"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Sim"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Navegação estruturada e paginada."
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Inclui a navegação paginada e estruturada no rasto."
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Modelo paginado"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Modelo para a navegação estruturada."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Modelo de artigo"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "O modelo para a navegação de artigos."
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Modelo de Artigo (sem link)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Categorias"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Datas"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Tópicos"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Páginas"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Modelo de página"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "O modelo para página de navegação estruturada."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Modelo de página (sem link)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "Modelo de anexo"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Modelo para anexos de navegação estruturada."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Modelo de anexo (sem link)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Vá para %title%.\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "Modelo de %s"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "O modelo para navegação de %s."
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "Modelo de %s (sem link)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "Página raíz de %s"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Escolha &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "Exibir arquivo de %s"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Modelo de categoria"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "O template para categoria de navegação estruturada."
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Modelo de categoria (sem link)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Modelo de tópico"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "O modelo para a navegação dos tópicos."
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Modelo de tópico (sem link)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Diversos"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Modelo de autor"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Modelo para o autor da navegação estruturada."
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "Modelo de autor (sem link)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Formato de visualização do Autor "
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name usa o nome especificado em \"Display name publicly as\" sob o perfil do utilizador os outros corresponde a opções no perfil do utilizador."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Modelo de data"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "O modelo para as datas da navegação estruturada."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Modelo de data (sem link)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Modelo de pesquisa"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Modelo de pesquisa (sem link)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "A âncora para o modelo da navegação da pesquisa, usada somente quando o resultado de busca se estende por várias páginas e a navegação estruturada não tem link."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404 Título"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "Modelo 404"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "O modelo para 404 navegação estruturada."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Gravar alterações"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Configurações"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "As suas configurações estão desactualizadas."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Migre as configurações agora."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Migre agora."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "A instalação do seu plugin está completa."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Carregue as configurações por omissão agora."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Complete agora."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "As suas configurações são inválidas."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Tente corrigir agora as configurações."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Corrigir agora."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Configurações gravadas com sucesso."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Desfazer as opções salvar."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Desfazer"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Algumas configurações não forma salvas."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "As seguintes configurações não foram salvas:"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Por favor inclua esta mensagem no seu %sbug report%s."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr "Seguir para o %s artigo de suporte da sua versão."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Configurações importadas com sucesso do ficheiro carregado."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Desfazer as opções de importação."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Importando as configurações do ficheiro falhado."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Configurações anuladas com sucesso para os valores por omissão."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Desfazer a anulação de opções."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Configurações da última operação desfeitas com sucesso"
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Desfazer a última operação."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Configurações migradas com sucesso."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Configurações por omissão instaladas com sucesso."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Importe as configurações de um ficheiro XML, exporte as configurações actuais para um ficheiro XML ou anule para as configurações por omissão."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Ficheiro de configurações"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Seleccionne um ficheiro de configuração XML para carregar"
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Página %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "Resultados da pesquisa por &#39;%htitle%&#39;"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
  msgstr "Artigos por: %htitle%"
languages/breadcrumb-navxt-sv_SE.mo CHANGED
Binary file
languages/breadcrumb-navxt-sv_SE.po CHANGED
@@ -1,753 +1,776 @@
1
- # Translation of Breadcrumb NavXT in Swedish
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-02-14 02:35:19+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:520
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "Hierarkin som länkstigen visar. Observera att \"Post Parent\" alternativet kan kräva ytterligare plugin för att bete sig som förväntat eftersom detta är en icke-hierarkisk posttyp."
16
-
17
- #: breadcrumb_navxt_class.php:97 breadcrumb_navxt_class.php:258
18
- #: breadcrumb_navxt_class.php:264 breadcrumb_navxt_class.php:270
19
- #: breadcrumb_navxt_class.php:284 breadcrumb_navxt_class.php:296
20
- #: breadcrumb_navxt_class.php:308
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Gå till %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:318
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Sök resultat för &#39;<a title=\"Gå till första sidan för sökresultat av %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:341
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "En samling inställningar som mest sannolikt ändras finns under denna flik."
31
-
32
- #: breadcrumb_navxt_admin.php:349
33
- msgid "Title Length"
34
- msgstr "Titel längd"
35
-
36
- #: breadcrumb_navxt_admin.php:354
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Begränsa längden av brödspårs titeln."
39
-
40
- #: breadcrumb_navxt_admin.php:397
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Huvudsidans brödspår"
43
-
44
- #: breadcrumb_navxt_admin.php:409
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Inställningarna för alla post typer (Inlägg, Sidor och egna post typer) finns under denna tabb."
47
-
48
- #: breadcrumb_navxt_admin.php:409
49
- msgid "Post Types"
50
- msgstr "Post Typer"
51
-
52
- #: breadcrumb_navxt_admin.php:415
53
- msgid "Post Hierarchy Display"
54
- msgstr "Post hierarki visning"
55
-
56
- #: breadcrumb_navxt_admin.php:419
57
- msgid "Post Hierarchy"
58
- msgstr "Post hierarki"
59
-
60
- #: breadcrumb_navxt_admin.php:487
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s Hierarki visning"
63
-
64
- #: breadcrumb_navxt_admin.php:549
65
- msgid "Post Formats"
66
- msgstr "Post Format"
67
-
68
- #: breadcrumb_navxt_admin.php:359
69
- msgid "Max Title Length: "
70
- msgstr "Max Titel längd"
71
-
72
- #: breadcrumb_navxt_admin.php:410
73
- msgid "Posts"
74
- msgstr "Inlägg"
75
-
76
- #: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:496
77
- msgid "Post Parent"
78
- msgstr "Inläggs förälder"
79
-
80
- #: breadcrumb_navxt_admin.php:516
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "Hierarkin som länkstigen visar."
83
-
84
- #: breadcrumb_navxt_admin.php:491
85
- msgid "%s Hierarchy"
86
- msgstr "%s Hierarki"
87
-
88
- #: breadcrumb_navxt_admin.php:534
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Inställningarna för alla taxonomier (inklusive Kategorier, taggar och anpassade taxonomier) är placerade under den här fliken."
91
-
92
- #: breadcrumb_navxt_admin.php:534
93
- msgid "Taxonomies"
94
- msgstr "Taxonomier"
95
-
96
- #: breadcrumb_navxt_admin.php:552
97
- msgid "Post Format Template"
98
- msgstr "Inläggs formats mall"
99
-
100
- #: breadcrumb_navxt_admin.php:552
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "Mallen för post format länkstig."
103
-
104
- #: breadcrumb_navxt_admin.php:553
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Post formats mall (olänkad)"
107
-
108
- #: breadcrumb_navxt_admin.php:553
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "Mallen för post_format länkstigen som används endast när länkstigen inte är länkad."
111
-
112
- #: breadcrumb_navxt_admin.php:583
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Inställningarna för författare och datum arkiv, sökningar och 404 sidor finns under denna flik."
115
-
116
- #: breadcrumb_navxt_admin.php:584
117
- msgid "Author Archives"
118
- msgstr "Författar arkiv"
119
-
120
- #: breadcrumb_navxt_class.php:323 breadcrumb_navxt_class.php:328
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\"Gå till %title% tagg arkivet.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:333
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Artiklar av: <a title=\"Gå till första sidan för %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:340
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\" till %title% kategori arkiv.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:344
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\" till %title% arkiv.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:313
137
- msgid "Your settings are for a newer version."
138
- msgstr "Dina inställningar är för en nyare version."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Text som ska visas innan spåret:"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:245
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr " till \"Breadcrumb NavXT\" översättnings projekt."
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "Din PHP version är för gammal, vänligen uppdatera till en nyare version. Din version är %1$s, Breadcrumb NavXT kräver %2$s"
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Lägger till breadcrumb till din sidebar"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Titel:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Skriv ut breadcrumb som:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Lista"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Simpel"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Länka Breadcrumb"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Omvänd ordning i breadcrumb"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Göm spåret på förstasidan"
187
-
188
- #: breadcrumb_navxt_admin.php:122
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Otillräcklig privilegier för att fortsätta."
191
-
192
- #: breadcrumb_navxt_admin.php:238
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Tips för inställningarna finns under varje val."
195
-
196
- #: breadcrumb_navxt_admin.php:239
197
- msgid "Resources"
198
- msgstr "Resurser"
199
-
200
- #: breadcrumb_navxt_admin.php:240
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sTutorials och guider%s: Det finns flera guider och tutorials tillgängliga på skaparens hemsida."
203
-
204
- #: breadcrumb_navxt_admin.php:240
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Gå till Breadcrumb NavXT tagg arkiv"
207
-
208
- #: breadcrumb_navxt_admin.php:241
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sOnline dokumentation%s: Kolla dokumentationen för mer teknisk information."
211
-
212
- #: breadcrumb_navxt_admin.php:241
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Gå till Breadcrumb NavXT online dokumentation"
215
-
216
- #: breadcrumb_navxt_admin.php:242
217
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
- msgstr "%SRapportera en bug%s: Om du tror att du hittat en bug, var vänlig och inkludera WordPress version och detaljer hur man återskapar buggen"
219
-
220
- #: breadcrumb_navxt_admin.php:242
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Gå till Breadcrumb NavXT support och skicka din version."
223
-
224
- #: breadcrumb_navxt_admin.php:243
225
- msgid "Giving Back"
226
- msgstr "Ge tillbaka"
227
-
228
- #: breadcrumb_navxt_admin.php:244
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sDonera%s: Gillar du Breadcrumb NavXT och vill hjälpa utvecklingen? Överväg att köpa skaparen en öl. "
231
-
232
- #: breadcrumb_navxt_admin.php:244
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Gå till PayPal för att donera till Breadcrumb NavXT."
235
-
236
- #: breadcrumb_navxt_admin.php:245
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sÖversätt%s: Finns inte ditt språk? Kontakta John Havlik om översättning."
239
-
240
- #: breadcrumb_navxt_admin.php:250 breadcrumb_navxt_admin.php:341
241
- #: breadcrumb_navxt_admin.php:342
242
- msgid "General"
243
- msgstr "Allmänt"
244
-
245
- #: breadcrumb_navxt_admin.php:253
246
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
- msgstr "För inställningarna den här sidan att börja gälla måste du antingen använda den medföljande Breadcrumb NavXT widget, eller placera koden snutten nedan i ditt tema."
248
-
249
- #: breadcrumb_navxt_admin.php:254
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Breadcrumb spår med separator"
252
-
253
- #: breadcrumb_navxt_admin.php:260
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Breadcrumb spår i list form"
256
-
257
- #: breadcrumb_navxt_admin.php:269
258
- msgid "Quick Start"
259
- msgstr "Snabbstart"
260
-
261
- #: breadcrumb_navxt_admin.php:272
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Vid användning av koden från \"Snabb start\" sektionen ovan, följande CSS kan användas som bas för att styla ditt breadcrumb spår."
264
-
265
- #: breadcrumb_navxt_admin.php:284
266
- msgid "Styling"
267
- msgstr "Styling"
268
-
269
- #: breadcrumb_navxt_admin.php:290
270
- msgid "Import/Export/Reset"
271
- msgstr "Importera/Exportera/Återställ"
272
-
273
- #: breadcrumb_navxt_admin.php:314 includes/mtekk_adminkit.php:809
274
- msgid "Import"
275
- msgstr "Importera"
276
-
277
- #: breadcrumb_navxt_admin.php:315 includes/mtekk_adminkit.php:810
278
- msgid "Export"
279
- msgstr "Exportera"
280
-
281
- #: breadcrumb_navxt_admin.php:316 includes/mtekk_adminkit.php:811
282
- msgid "Reset"
283
- msgstr "Återställ"
284
-
285
- #: breadcrumb_navxt_admin.php:329
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Breadcrumb NavXT Inställningar"
288
-
289
- #: breadcrumb_navxt_admin.php:345
290
- msgid "Breadcrumb Separator"
291
- msgstr "Breadcrumb separator"
292
-
293
- #: breadcrumb_navxt_admin.php:345
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Placeras i mellan varje breadcrumb."
296
-
297
- #: breadcrumb_navxt_admin.php:379 breadcrumb_navxt_admin.php:382
298
- msgid "Home Breadcrumb"
299
- msgstr "Hem Breadcrumb"
300
-
301
- #: breadcrumb_navxt_admin.php:382
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Placera hem breadcrumb i spåret."
304
-
305
- #: breadcrumb_navxt_admin.php:383
306
- msgid "Home Template"
307
- msgstr "Hem mall"
308
-
309
- #: breadcrumb_navxt_admin.php:383
310
- msgid "The template for the home breadcrumb."
311
- msgstr "Mallen för hem breadcrumb."
312
-
313
- #: breadcrumb_navxt_admin.php:384
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Hem mall (olänkad)"
316
-
317
- #: breadcrumb_navxt_admin.php:384
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "Mallen för hem breadcrumb, används när breadcrumb inte är länkat."
320
-
321
- #: breadcrumb_navxt_admin.php:388 breadcrumb_navxt_admin.php:391
322
- msgid "Blog Breadcrumb"
323
- msgstr "Blogg breadcrumb"
324
-
325
- #: breadcrumb_navxt_admin.php:391
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Placera blogg breadcrumb i spåret."
328
-
329
- #: breadcrumb_navxt_admin.php:392
330
- msgid "Blog Template"
331
- msgstr "Blogg mall"
332
-
333
- #: breadcrumb_navxt_admin.php:392
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida."
336
-
337
- #: breadcrumb_navxt_admin.php:393
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Blogg mall (olänkad)"
340
-
341
- #: breadcrumb_navxt_admin.php:393
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida och när den inte är länkad."
344
-
345
- #: breadcrumb_navxt_admin.php:400
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Huvudsidans Breadcrumb"
348
-
349
- #: breadcrumb_navxt_admin.php:400
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
352
-
353
- #: breadcrumb_navxt_admin.php:401
354
- msgid "Main Site Home Template"
355
- msgstr "Huvudsidans hem mall"
356
-
357
- #: breadcrumb_navxt_admin.php:401
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite."
360
-
361
- #: breadcrumb_navxt_admin.php:402
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Huvudsidans hem mall (olänkad) "
364
-
365
- #: breadcrumb_navxt_admin.php:402
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite och inte länkad."
368
-
369
- #: breadcrumb_navxt_admin.php:370
370
- msgid "Current Item"
371
- msgstr "Nuvarande punkt"
372
-
373
- #: breadcrumb_navxt_admin.php:373
374
- msgid "Link Current Item"
375
- msgstr "Länk Nuvarande punkt"
376
-
377
- #: breadcrumb_navxt_admin.php:373
378
- msgid "Yes"
379
- msgstr "Ja"
380
-
381
- #: breadcrumb_navxt_admin.php:374
382
- msgid "Paged Breadcrumb"
383
- msgstr "Flersidig breadcrumb"
384
-
385
- #: breadcrumb_navxt_admin.php:374
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
388
-
389
- #: breadcrumb_navxt_admin.php:374
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
392
-
393
- #: breadcrumb_navxt_admin.php:375
394
- msgid "Paged Template"
395
- msgstr "Flersidig mall"
396
-
397
- #: breadcrumb_navxt_admin.php:375
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Mallen för fler sido breadcrumbs."
400
-
401
- #: breadcrumb_navxt_admin.php:413
402
- msgid "Post Template"
403
- msgstr "Inläggs mall"
404
-
405
- #: breadcrumb_navxt_admin.php:413
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Mallen för inlägg breadcrumb."
408
-
409
- #: breadcrumb_navxt_admin.php:414
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Inläggs mall (olänkad)"
412
-
413
- #: breadcrumb_navxt_admin.php:414
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Mallen för inläggs breadcrumbs, använd endast då den inte är länkad."
416
-
417
- #: breadcrumb_navxt_admin.php:415
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
420
-
421
- #: breadcrumb_navxt_admin.php:423 breadcrumb_navxt_admin.php:535
422
- msgid "Categories"
423
- msgstr "Kategorier"
424
-
425
- #: breadcrumb_navxt_admin.php:424
426
- msgid "Dates"
427
- msgstr "Datum"
428
-
429
- #: breadcrumb_navxt_admin.php:425 breadcrumb_navxt_admin.php:542
430
- msgid "Tags"
431
- msgstr "Taggar"
432
-
433
- #: breadcrumb_navxt_admin.php:447
434
- msgid "Pages"
435
- msgstr "Sidor"
436
-
437
- #: breadcrumb_navxt_admin.php:450
438
- msgid "Page Template"
439
- msgstr "Sidmall"
440
-
441
- #: breadcrumb_navxt_admin.php:450
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Mallen för sido breadcrumbs."
444
-
445
- #: breadcrumb_navxt_admin.php:451
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Sidmall (olänkad)"
448
-
449
- #: breadcrumb_navxt_admin.php:451
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Mallen för sido breadcrumbs, endast då den inte är länkad."
452
-
453
- #: breadcrumb_navxt_admin.php:452
454
- msgid "Attachment Template"
455
- msgstr "bilags mall"
456
-
457
- #: breadcrumb_navxt_admin.php:452
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Mallen för attachments breadcrumbs."
460
-
461
- #: breadcrumb_navxt_admin.php:453
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Bilags mall (olänkad)"
464
-
465
- #: breadcrumb_navxt_admin.php:453
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Mallen för attachments breadcrumbs, endast då den inte är länkad."
468
-
469
- #: breadcrumb_navxt_admin.php:651
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:652 breadcrumb_navxt_class.php:93
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
478
- msgid "%s Template"
479
- msgstr "%s mall"
480
-
481
- #: breadcrumb_navxt_admin.php:473 breadcrumb_navxt_admin.php:573
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "Mallen för %s breadcrumbs."
484
-
485
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
486
- msgid "%s Template (Unlinked)"
487
- msgstr "%s mall (olänkad)"
488
-
489
- #: breadcrumb_navxt_admin.php:474 breadcrumb_navxt_admin.php:574
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "Mallen för %s breadcrumb, används endast när den inte är länkad."
492
-
493
- #: breadcrumb_navxt_admin.php:479
494
- msgid "%s Root Page"
495
- msgstr "%s rotsida"
496
-
497
- #: breadcrumb_navxt_admin.php:482
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Välj &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:486
502
- msgid "%s Archive Display"
503
- msgstr "%s arkiv visning"
504
-
505
- #: breadcrumb_navxt_admin.php:486
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Visa breadcrumb för %s post typs arkiv i breadcrumb spåret."
508
-
509
- #: breadcrumb_navxt_admin.php:487
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
512
-
513
- #: breadcrumb_navxt_admin.php:538
514
- msgid "Category Template"
515
- msgstr "Kategori mall"
516
-
517
- #: breadcrumb_navxt_admin.php:538
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Mallen för kategori breadcrumbs"
520
-
521
- #: breadcrumb_navxt_admin.php:539
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Kategori mall (olänkad)"
524
-
525
- #: breadcrumb_navxt_admin.php:539
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Mallen för kategori breadcrumb, används endast då den inte är länkad."
528
-
529
- #: breadcrumb_navxt_admin.php:545
530
- msgid "Tag Template"
531
- msgstr "Tagg mall"
532
-
533
- #: breadcrumb_navxt_admin.php:545
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Mallen för tagg breadcrumbs."
536
-
537
- #: breadcrumb_navxt_admin.php:546
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Tagg mall (olänkad)"
540
-
541
- #: breadcrumb_navxt_admin.php:546
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Mallen för tagg breadcrumb, används endast när den inte är länkad."
544
-
545
- #: breadcrumb_navxt_admin.php:583 breadcrumb_navxt_admin.php:592
546
- msgid "Miscellaneous"
547
- msgstr "Diverse"
548
-
549
- #: breadcrumb_navxt_admin.php:587
550
- msgid "Author Template"
551
- msgstr "Författar mall"
552
-
553
- #: breadcrumb_navxt_admin.php:587
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Mallen för kategori breadcrumbs"
556
-
557
- #: breadcrumb_navxt_admin.php:588
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Författar mall (olänkad)"
560
-
561
- #: breadcrumb_navxt_admin.php:588
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Mallen för författar breadcrumb, används endast när den inte är länkad."
564
-
565
- #: breadcrumb_navxt_admin.php:589
566
- msgid "Author Display Format"
567
- msgstr "Författar visnings format"
568
-
569
- #: breadcrumb_navxt_admin.php:589
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
572
-
573
- #: breadcrumb_navxt_admin.php:595
574
- msgid "Date Template"
575
- msgstr "Datum mall"
576
-
577
- #: breadcrumb_navxt_admin.php:595
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Mallen för datum breadcrumbs."
580
-
581
- #: breadcrumb_navxt_admin.php:596
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Datum mall (olänkad)"
584
-
585
- #: breadcrumb_navxt_admin.php:596
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Mallen för datum breadcrumb, används endast när den inte är länkad."
588
-
589
- #: breadcrumb_navxt_admin.php:597
590
- msgid "Search Template"
591
- msgstr "Sök mall"
592
-
593
- #: breadcrumb_navxt_admin.php:597
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
596
-
597
- #: breadcrumb_navxt_admin.php:598
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Sök mall (olänkad)"
600
-
601
- #: breadcrumb_navxt_admin.php:598
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Mallen för sök breadcrumb, används endast när sökresultaten täcker flera sidor och den inte är länkad."
604
-
605
- #: breadcrumb_navxt_admin.php:599
606
- msgid "404 Title"
607
- msgstr "404 Titel"
608
-
609
- #: breadcrumb_navxt_admin.php:600
610
- msgid "404 Template"
611
- msgstr "404 Mall"
612
-
613
- #: breadcrumb_navxt_admin.php:600
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "Mallen för 404 breadcrumbs."
616
-
617
- #: breadcrumb_navxt_admin.php:606
618
- msgid "Save Changes"
619
- msgstr "Spara ändringar"
620
-
621
- #: includes/mtekk_adminkit.php:234
622
- msgid "Settings"
623
- msgstr "Inställningar"
624
-
625
- #: includes/mtekk_adminkit.php:304
626
- msgid "Your settings are out of date."
627
- msgstr "Dina inställningar är föråldrade."
628
-
629
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
630
- msgid "Migrate the settings now."
631
- msgstr "Migrera inställningarna nu."
632
-
633
- #: includes/mtekk_adminkit.php:304 includes/mtekk_adminkit.php:313
634
- msgid "Migrate now."
635
- msgstr "Migrera nu."
636
-
637
- #: includes/mtekk_adminkit.php:321
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Installationen är inte klar."
640
-
641
- #: includes/mtekk_adminkit.php:321
642
- msgid "Load default settings now."
643
- msgstr "Ladda default inställningarna nu."
644
-
645
- #: includes/mtekk_adminkit.php:321
646
- msgid "Complete now."
647
- msgstr "Färdigställ nu."
648
-
649
- #: includes/mtekk_adminkit.php:329
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Dina inställningar är ogiltiga."
652
-
653
- #: includes/mtekk_adminkit.php:329
654
- msgid "Attempt to fix settings now."
655
- msgstr "Försök fixa inställningarna nu."
656
-
657
- #: includes/mtekk_adminkit.php:329
658
- msgid "Fix now."
659
- msgstr "Fixa nu."
660
-
661
- #: includes/mtekk_adminkit.php:507
662
- msgid "Settings successfully saved."
663
- msgstr "Inställningarna sparade."
664
-
665
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
666
- msgid "Undo the options save."
667
- msgstr "Ångra sparade inställningar."
668
-
669
- #: includes/mtekk_adminkit.php:507 includes/mtekk_adminkit.php:512
670
- #: includes/mtekk_adminkit.php:617 includes/mtekk_adminkit.php:641
671
- #: includes/mtekk_adminkit.php:658
672
- msgid "Undo"
673
- msgstr "Ångra"
674
-
675
- #: includes/mtekk_adminkit.php:512
676
- msgid "Some settings were not saved."
677
- msgstr "Vissa inställningar sparades inte."
678
-
679
- #: includes/mtekk_adminkit.php:513
680
- msgid "The following settings were not saved:"
681
- msgstr "Följande inställningar sparades inte:"
682
-
683
- #: includes/mtekk_adminkit.php:518
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Var vänlig och inkludera detta meddelande i din %sbug rapport%s."
686
-
687
- #: includes/mtekk_adminkit.php:518
688
- msgid "Go to the %s support post for your version."
689
- msgstr " till %s support och skicka din version."
690
-
691
- #: includes/mtekk_adminkit.php:617
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Inställningarna importerades framgångsrikt från filen."
694
-
695
- #: includes/mtekk_adminkit.php:617
696
- msgid "Undo the options import."
697
- msgstr "Ångra inställnings importeringen."
698
-
699
- #: includes/mtekk_adminkit.php:622
700
- msgid "Importing settings from file failed."
701
- msgstr "Importering av inställningar från fil misslyckades."
702
-
703
- #: includes/mtekk_adminkit.php:641
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Inställningarna återställdes till standardvärdena."
706
-
707
- #: includes/mtekk_adminkit.php:641
708
- msgid "Undo the options reset."
709
- msgstr "Ångra inställnings återställningen."
710
-
711
- #: includes/mtekk_adminkit.php:658
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
714
-
715
- #: includes/mtekk_adminkit.php:658
716
- msgid "Undo the last undo operation."
717
- msgstr "Ångra senaste operationen."
718
-
719
- #: includes/mtekk_adminkit.php:693
720
- msgid "Settings successfully migrated."
721
- msgstr "Inställningarna har migrerats."
722
-
723
- #: includes/mtekk_adminkit.php:700
724
- msgid "Default settings successfully installed."
725
- msgstr "Default inställningarna sparade."
726
-
727
- #: includes/mtekk_adminkit.php:801
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
730
-
731
- #: includes/mtekk_adminkit.php:804
732
- msgid "Settings File"
733
- msgstr "Inställnings fil"
734
-
735
- #: includes/mtekk_adminkit.php:807
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
738
-
739
- #: breadcrumb_navxt_class.php:291
740
- msgid "Page %htitle%"
741
- msgstr "Sid %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:315
744
- msgid "404"
745
- msgstr "404"
746
-
747
- #: breadcrumb_navxt_class.php:320
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Sök resultat för &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:335
752
- msgid "Articles by: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
753
  msgstr "Inlägg av: %htitle%"
1
+ # Translation of Breadcrumb NavXT in Swedish
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:01:45+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Breadcrumb NavXT\n"
12
+
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT Nätverksinställningar"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Lägger till en sökväg navigering visar besökarens väg till sin nuvarande plats. För information om hur du använder detta plugin besök <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
+ msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
+ msgstr "Hierarkin som länkstigen visar. Observera att \"Post Parent\" alternativet kan kräva ytterligare plugin för att bete sig som förväntat eftersom detta är en icke-hierarkisk posttyp."
24
+
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
+ msgstr "<a title=\"Gå till %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
+
32
+ #: class.bcn_breadcrumb_trail.php:109
33
+ msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
+ msgstr "Sök resultat för &#39;<a title=\"Gå till första sidan för sökresultat av %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
+
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
+ msgid "A collection of settings most likely to be modified are located under this tab."
38
+ msgstr "En samling inställningar som mest sannolikt ändras finns under denna flik."
39
+
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
+ msgid "Title Length"
42
+ msgstr "Titel längd"
43
+
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
+ msgid "Limit the length of the breadcrumb title."
46
+ msgstr "Begränsa längden av brödspårs titeln."
47
+
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
+ msgid "Mainsite Breadcrumb"
50
+ msgstr "Huvudsidans brödspår"
51
+
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
+ msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
+ msgstr "Inställningarna för alla post typer (Inlägg, Sidor och egna post typer) finns under denna tabb."
55
+
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
+ msgid "Post Types"
58
+ msgstr "Post Typer"
59
+
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
+ msgid "Post Hierarchy Display"
62
+ msgstr "Post hierarki visning"
63
+
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
+ msgid "Post Hierarchy"
66
+ msgstr "Post hierarki"
67
+
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
+ msgid "%s Hierarchy Display"
70
+ msgstr "%s Hierarki visning"
71
+
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
+ msgid "Post Formats"
74
+ msgstr "Post Format"
75
+
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
+ msgid "Max Title Length: "
78
+ msgstr "Max Titel längd"
79
+
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
+ msgid "Posts"
82
+ msgstr "Inlägg"
83
+
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
+ msgid "Post Parent"
87
+ msgstr "Inläggs förälder"
88
+
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
+ msgid "The hierarchy which the breadcrumb trail will show."
91
+ msgstr "Hierarkin som länkstigen visar."
92
+
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
+ msgid "%s Hierarchy"
95
+ msgstr "%s Hierarki"
96
+
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
+ msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
+ msgstr "Inställningarna för alla taxonomier (inklusive Kategorier, taggar och anpassade taxonomier) är placerade under den här fliken."
100
+
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
+ msgid "Taxonomies"
103
+ msgstr "Taxonomier"
104
+
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
+ msgid "Post Format Template"
107
+ msgstr "Inläggs formats mall"
108
+
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
+ msgid "The template for post format breadcrumbs."
111
+ msgstr "Mallen för post format länkstig."
112
+
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
+ msgid "Post Format Template (Unlinked)"
115
+ msgstr "Post formats mall (olänkad)"
116
+
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
+ msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
+ msgstr "Mallen för post_format länkstigen som används endast när länkstigen inte är länkad."
120
+
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
+ msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
+ msgstr "Inställningarna för författare och datum arkiv, sökningar och 404 sidor finns under denna flik."
124
+
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
+ msgid "Author Archives"
127
+ msgstr "Författar arkiv"
128
+
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
+ msgstr "<a title=\"Gå till %title% tagg arkivet.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
+
133
+ #: class.bcn_breadcrumb_trail.php:124
134
+ msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
+ msgstr "Artiklar av: <a title=\"Gå till första sidan för %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
+
137
+ #: class.bcn_breadcrumb_trail.php:131
138
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
+ msgstr "<a title=\"Gå till %title% kategori arkiv.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
+
141
+ #: class.bcn_breadcrumb_trail.php:135
142
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
+ msgstr "<a title=\"Gå till %title% arkiv.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
+
145
+ #: includes/class.mtekk_adminkit.php:296
146
+ msgid "Your settings are for a newer version."
147
+ msgstr "Dina inställningar är för en nyare version."
148
+
149
+ #: class.bcn_widget.php:96
150
+ msgid "Text to show before the trail:"
151
+ msgstr "Text som ska visas innan spåret:"
152
+
153
+ #: class.bcn_widget.php:103
154
+ msgid "Schema.org"
155
+ msgstr "Schema.org"
156
+
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
+ msgid "Go to the Breadcrumb NavXT translation project."
159
+ msgstr "Gå till \"Breadcrumb NavXT\" översättnings projekt."
160
+
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
+ msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
+ msgstr "Din PHP version är för gammal, vänligen uppdatera till en nyare version. Din version är %1$s, Breadcrumb NavXT kräver %2$s"
165
+
166
+ #: class.bcn_widget.php:33
167
+ msgid "Adds a breadcrumb trail to your sidebar"
168
+ msgstr "Lägger till breadcrumb till din sidebar"
169
+
170
+ #: class.bcn_widget.php:92
171
+ msgid "Title:"
172
+ msgstr "Titel:"
173
+
174
+ #: class.bcn_widget.php:100
175
+ msgid "Output trail as:"
176
+ msgstr "Skriv ut breadcrumb som:"
177
+
178
+ #: class.bcn_widget.php:102
179
+ msgid "List"
180
+ msgstr "Lista"
181
+
182
+ #: class.bcn_widget.php:104
183
+ msgid "Plain"
184
+ msgstr "Simpel"
185
+
186
+ #: class.bcn_widget.php:109
187
+ msgid "Link the breadcrumbs"
188
+ msgstr "Länka Breadcrumb"
189
+
190
+ #: class.bcn_widget.php:111
191
+ msgid "Reverse the order of the trail"
192
+ msgstr "Omvänd ordning i breadcrumb"
193
+
194
+ #: class.bcn_widget.php:113
195
+ msgid "Hide the trail on the front page"
196
+ msgstr "Göm spåret på förstasidan"
197
+
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
+ msgid "Insufficient privileges to proceed."
200
+ msgstr "Otillräcklig privilegier för att fortsätta."
201
+
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
+ msgid "Tips for the settings are located below select options."
204
+ msgstr "Tips för inställningarna finns under varje val."
205
+
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
+ msgid "Resources"
208
+ msgstr "Resurser"
209
+
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
+ msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
+ msgstr "%sTutorials och guider%s: Det finns flera guider och tutorials tillgängliga på skaparens hemsida."
213
+
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
+ msgid "Go to the Breadcrumb NavXT tag archive."
216
+ msgstr "Gå till Breadcrumb NavXT tagg arkiv"
217
+
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
+ msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
+ msgstr "%sOnline dokumentation%s: Kolla dokumentationen för mer teknisk information."
221
+
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
+ msgid "Go to the Breadcrumb NavXT online documentation"
224
+ msgstr "Gå till Breadcrumb NavXT online dokumentation"
225
+
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
+ msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
+ msgstr "%SRapportera en bug%s: Om du tror att du hittat en bug, var vänlig och inkludera WordPress version och detaljer hur man återskapar buggen"
229
+
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
+ msgid "Go to the Breadcrumb NavXT support post for your version."
232
+ msgstr "Gå till Breadcrumb NavXT support och skicka din version."
233
+
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
+ msgid "Giving Back"
236
+ msgstr "Ge tillbaka"
237
+
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
+ msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
+ msgstr "%sDonera%s: Gillar du Breadcrumb NavXT och vill hjälpa utvecklingen? Överväg att köpa skaparen en öl. "
241
+
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
+ msgstr "Gå till PayPal för att donera till Breadcrumb NavXT."
245
+
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
+ msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
+ msgstr "%sÖversätt%s: Finns inte ditt språk? Kontakta John Havlik om översättning."
249
+
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
+ msgid "General"
254
+ msgstr "Allmänt"
255
+
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
+ msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
+ msgstr "För inställningarna på den här sidan att börja gälla måste du antingen använda den medföljande Breadcrumb NavXT widget, eller placera koden snutten nedan i ditt tema."
259
+
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
+ msgid "Breadcrumb trail with separators"
262
+ msgstr "Breadcrumb spår med separator"
263
+
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
+ msgid "Breadcrumb trail in list form"
266
+ msgstr "Breadcrumb spår i list form"
267
+
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
+ msgid "Quick Start"
270
+ msgstr "Snabbstart"
271
+
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
+ msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
+ msgstr "Vid användning av koden från \"Snabb start\" sektionen ovan, följande CSS kan användas som bas för att styla ditt breadcrumb spår."
275
+
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
+ msgid "Styling"
278
+ msgstr "Styling"
279
+
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
+ msgid "Import/Export/Reset"
282
+ msgstr "Importera/Exportera/Återställ"
283
+
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
+ msgid "Import"
287
+ msgstr "Importera"
288
+
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
+ msgid "Export"
292
+ msgstr "Exportera"
293
+
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
+ msgid "Reset"
297
+ msgstr "Återställ"
298
+
299
+ #: class.bcn_admin.php:309
300
+ msgid "Breadcrumb NavXT Settings"
301
+ msgstr "Breadcrumb NavXT Inställningar"
302
+
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
+ msgid "Breadcrumb Separator"
305
+ msgstr "Breadcrumb separator"
306
+
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
+ msgid "Placed in between each breadcrumb."
309
+ msgstr "Placeras i mellan varje breadcrumb."
310
+
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
+ msgid "Home Breadcrumb"
314
+ msgstr "Hem Breadcrumb"
315
+
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
+ msgid "Place the home breadcrumb in the trail."
318
+ msgstr "Placera hem breadcrumb i spåret."
319
+
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
+ msgid "Home Template"
322
+ msgstr "Hem mall"
323
+
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
+ msgid "The template for the home breadcrumb."
326
+ msgstr "Mallen för hem breadcrumb."
327
+
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
+ msgid "Home Template (Unlinked)"
330
+ msgstr "Hem mall (olänkad)"
331
+
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
+ msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
+ msgstr "Mallen för hem breadcrumb, används när breadcrumb inte är länkat."
335
+
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
+ msgid "Blog Breadcrumb"
339
+ msgstr "Blogg breadcrumb"
340
+
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
+ msgid "Place the blog breadcrumb in the trail."
343
+ msgstr "Placera blogg breadcrumb i spåret."
344
+
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
+ msgid "Blog Template"
347
+ msgstr "Blogg mall"
348
+
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
+ msgid "The template for the blog breadcrumb, used only in static front page environments."
351
+ msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida."
352
+
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
+ msgid "Blog Template (Unlinked)"
355
+ msgstr "Blogg mall (olänkad)"
356
+
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
+ msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
+ msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida och när den inte är länkad."
360
+
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
+ msgid "Main Site Breadcrumb"
363
+ msgstr "Huvudsidans Breadcrumb"
364
+
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
+ msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
368
+
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
+ msgid "Main Site Home Template"
371
+ msgstr "Huvudsidans hem mall"
372
+
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
+ msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
+ msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite."
376
+
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
+ msgid "Main Site Home Template (Unlinked)"
379
+ msgstr "Huvudsidans hem mall (olänkad) "
380
+
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
+ msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
+ msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite och inte länkad."
384
+
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
+ msgid "Current Item"
387
+ msgstr "Nuvarande punkt"
388
+
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
+ msgid "Link Current Item"
391
+ msgstr "Länk Nuvarande punkt"
392
+
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
+ msgid "Yes"
395
+ msgstr "Ja"
396
+
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
+ msgid "Paged Breadcrumb"
399
+ msgstr "Flersidig breadcrumb"
400
+
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
403
+ msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
404
+
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
+ msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
408
+
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
+ msgid "Paged Template"
411
+ msgstr "Flersidig mall"
412
+
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
+ msgid "The template for paged breadcrumbs."
415
+ msgstr "Mallen för fler sido breadcrumbs."
416
+
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
+ msgid "Post Template"
419
+ msgstr "Inläggs mall"
420
+
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
+ msgid "The template for post breadcrumbs."
423
+ msgstr "Mallen för inlägg breadcrumb."
424
+
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
+ msgid "Post Template (Unlinked)"
427
+ msgstr "Inläggs mall (olänkad)"
428
+
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
+ msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr "Mallen för inläggs breadcrumbs, använd endast då den inte är länkad."
432
+
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
+ msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
436
+
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
+ msgid "Categories"
440
+ msgstr "Kategorier"
441
+
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
+ msgid "Dates"
444
+ msgstr "Datum"
445
+
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
+ msgid "Tags"
449
+ msgstr "Taggar"
450
+
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
+ msgid "Pages"
453
+ msgstr "Sidor"
454
+
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
+ msgid "Page Template"
457
+ msgstr "Sidmall"
458
+
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
+ msgid "The template for page breadcrumbs."
461
+ msgstr "Mallen för sido breadcrumbs."
462
+
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
+ msgid "Page Template (Unlinked)"
465
+ msgstr "Sidmall (olänkad)"
466
+
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
+ msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
+ msgstr "Mallen för sido breadcrumbs, endast då den inte är länkad."
470
+
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
+ msgid "Attachment Template"
473
+ msgstr "bilags mall"
474
+
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
+ msgid "The template for attachment breadcrumbs."
477
+ msgstr "Mallen för attachments breadcrumbs."
478
+
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
+ msgid "Attachment Template (Unlinked)"
481
+ msgstr "Bilags mall (olänkad)"
482
+
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
+ msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
+ msgstr "Mallen för attachments breadcrumbs, endast då den inte är länkad."
486
+
487
+ #: breadcrumb-navxt.php:247
488
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
+ msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">%htitle%</a>"
490
+
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
+ msgid "%htitle%"
493
+ msgstr "%htitle%"
494
+
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
+ msgid "%s Template"
498
+ msgstr "%s mall"
499
+
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
+ msgid "The template for %s breadcrumbs."
503
+ msgstr "Mallen för %s breadcrumbs."
504
+
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
+ msgid "%s Template (Unlinked)"
508
+ msgstr "%s mall (olänkad)"
509
+
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
+ msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
+ msgstr "Mallen för %s breadcrumb, används endast när den inte är länkad."
514
+
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
+ msgid "%s Root Page"
517
+ msgstr "%s rotsida"
518
+
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
+ msgid "&mdash; Select &mdash;"
521
+ msgstr "&mdash; Välj &mdash;"
522
+
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
+ msgid "%s Archive Display"
525
+ msgstr "%s arkiv visning"
526
+
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
+ msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
+ msgstr "Visa breadcrumb för %s post typs arkiv i breadcrumb spåret."
530
+
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
+ msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
534
+
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
+ msgid "Category Template"
537
+ msgstr "Kategori mall"
538
+
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
+ msgid "The template for category breadcrumbs."
541
+ msgstr "Mallen för kategori breadcrumbs"
542
+
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
+ msgid "Category Template (Unlinked)"
545
+ msgstr "Kategori mall (olänkad)"
546
+
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
+ msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
+ msgstr "Mallen för kategori breadcrumb, används endast då den inte är länkad."
550
+
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
+ msgid "Tag Template"
553
+ msgstr "Tagg mall"
554
+
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
+ msgid "The template for tag breadcrumbs."
557
+ msgstr "Mallen för tagg breadcrumbs."
558
+
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
+ msgid "Tag Template (Unlinked)"
561
+ msgstr "Tagg mall (olänkad)"
562
+
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
+ msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
+ msgstr "Mallen för tagg breadcrumb, används endast när den inte är länkad."
566
+
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
+ msgid "Miscellaneous"
570
+ msgstr "Diverse"
571
+
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
+ msgid "Author Template"
574
+ msgstr "Författar mall"
575
+
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
+ msgid "The template for author breadcrumbs."
578
+ msgstr "Mallen för kategori breadcrumbs"
579
+
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
+ msgid "Author Template (Unlinked)"
582
+ msgstr "Författar mall (olänkad)"
583
+
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
+ msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
+ msgstr "Mallen för författar breadcrumb, används endast när den inte är länkad."
587
+
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
+ msgid "Author Display Format"
590
+ msgstr "Författar visnings format"
591
+
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
+ msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
+ msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
595
+
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
+ msgid "Date Template"
598
+ msgstr "Datum mall"
599
+
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
+ msgid "The template for date breadcrumbs."
602
+ msgstr "Mallen för datum breadcrumbs."
603
+
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
+ msgid "Date Template (Unlinked)"
606
+ msgstr "Datum mall (olänkad)"
607
+
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
+ msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
+ msgstr "Mallen för datum breadcrumb, används endast när den inte är länkad."
611
+
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
+ msgid "Search Template"
614
+ msgstr "Sök mall"
615
+
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
+ msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
619
+
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
+ msgid "Search Template (Unlinked)"
622
+ msgstr "Sök mall (olänkad)"
623
+
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
+ msgstr "Mallen för sök breadcrumb, används endast när sökresultaten täcker flera sidor och den inte är länkad."
627
+
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
+ msgid "404 Title"
630
+ msgstr "404 Titel"
631
+
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
+ msgid "404 Template"
634
+ msgstr "404 Mall"
635
+
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
+ msgid "The template for 404 breadcrumbs."
638
+ msgstr "Mallen för 404 breadcrumbs."
639
+
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
+ msgid "Save Changes"
642
+ msgstr "Spara ändringar"
643
+
644
+ #: includes/class.mtekk_adminkit.php:217
645
+ msgid "Settings"
646
+ msgstr "Inställningar"
647
+
648
+ #: includes/class.mtekk_adminkit.php:287
649
+ msgid "Your settings are out of date."
650
+ msgstr "Dina inställningar är föråldrade."
651
+
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
+ msgid "Migrate the settings now."
654
+ msgstr "Migrera inställningarna nu."
655
+
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
+ msgid "Migrate now."
658
+ msgstr "Migrera nu."
659
+
660
+ #: includes/class.mtekk_adminkit.php:304
661
+ msgid "Your plugin install is incomplete."
662
+ msgstr "Installationen är inte klar."
663
+
664
+ #: includes/class.mtekk_adminkit.php:304
665
+ msgid "Load default settings now."
666
+ msgstr "Ladda default inställningarna nu."
667
+
668
+ #: includes/class.mtekk_adminkit.php:304
669
+ msgid "Complete now."
670
+ msgstr "Färdigställ nu."
671
+
672
+ #: includes/class.mtekk_adminkit.php:312
673
+ msgid "Your plugin settings are invalid."
674
+ msgstr "Dina inställningar är ogiltiga."
675
+
676
+ #: includes/class.mtekk_adminkit.php:312
677
+ msgid "Attempt to fix settings now."
678
+ msgstr "Försök fixa inställningarna nu."
679
+
680
+ #: includes/class.mtekk_adminkit.php:312
681
+ msgid "Fix now."
682
+ msgstr "Fixa nu."
683
+
684
+ #: includes/class.mtekk_adminkit.php:490
685
+ msgid "Settings successfully saved."
686
+ msgstr "Inställningarna sparade."
687
+
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
+ msgid "Undo the options save."
690
+ msgstr "Ångra sparade inställningar."
691
+
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
+ msgid "Undo"
696
+ msgstr "Ångra"
697
+
698
+ #: includes/class.mtekk_adminkit.php:495
699
+ msgid "Some settings were not saved."
700
+ msgstr "Vissa inställningar sparades inte."
701
+
702
+ #: includes/class.mtekk_adminkit.php:496
703
+ msgid "The following settings were not saved:"
704
+ msgstr "Följande inställningar sparades inte:"
705
+
706
+ #: includes/class.mtekk_adminkit.php:501
707
+ msgid "Please include this message in your %sbug report%s."
708
+ msgstr "Var vänlig och inkludera detta meddelande i din %sbug rapport%s."
709
+
710
+ #: includes/class.mtekk_adminkit.php:501
711
+ msgid "Go to the %s support post for your version."
712
+ msgstr " till %s support och skicka din version."
713
+
714
+ #: includes/class.mtekk_adminkit.php:600
715
+ msgid "Settings successfully imported from the uploaded file."
716
+ msgstr "Inställningarna importerades framgångsrikt från filen."
717
+
718
+ #: includes/class.mtekk_adminkit.php:600
719
+ msgid "Undo the options import."
720
+ msgstr "Ångra inställnings importeringen."
721
+
722
+ #: includes/class.mtekk_adminkit.php:605
723
+ msgid "Importing settings from file failed."
724
+ msgstr "Importering av inställningar från fil misslyckades."
725
+
726
+ #: includes/class.mtekk_adminkit.php:624
727
+ msgid "Settings successfully reset to the default values."
728
+ msgstr "Inställningarna återställdes till standardvärdena."
729
+
730
+ #: includes/class.mtekk_adminkit.php:624
731
+ msgid "Undo the options reset."
732
+ msgstr "Ångra inställnings återställningen."
733
+
734
+ #: includes/class.mtekk_adminkit.php:641
735
+ msgid "Settings successfully undid the last operation."
736
+ msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
737
+
738
+ #: includes/class.mtekk_adminkit.php:641
739
+ msgid "Undo the last undo operation."
740
+ msgstr "Ångra senaste operationen."
741
+
742
+ #: includes/class.mtekk_adminkit.php:676
743
+ msgid "Settings successfully migrated."
744
+ msgstr "Inställningarna har migrerats."
745
+
746
+ #: includes/class.mtekk_adminkit.php:683
747
+ msgid "Default settings successfully installed."
748
+ msgstr "Default inställningarna sparade."
749
+
750
+ #: includes/class.mtekk_adminkit.php:784
751
+ msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
+ msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
753
+
754
+ #: includes/class.mtekk_adminkit.php:787
755
+ msgid "Settings File"
756
+ msgstr "Inställnings fil"
757
+
758
+ #: includes/class.mtekk_adminkit.php:790
759
+ msgid "Select a XML settings file to upload and import settings from."
760
+ msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
761
+
762
+ #: class.bcn_breadcrumb_trail.php:82
763
+ msgid "Page %htitle%"
764
+ msgstr "Sid %htitle%"
765
+
766
+ #: class.bcn_breadcrumb_trail.php:106
767
+ msgid "404"
768
+ msgstr "404"
769
+
770
+ #: class.bcn_breadcrumb_trail.php:111
771
+ msgid "Search results for &#39;%htitle%&#39;"
772
+ msgstr "Sök resultat för &#39;%htitle%&#39;"
773
+
774
+ #: class.bcn_breadcrumb_trail.php:126
775
+ msgid "Articles by: %htitle%"
776
  msgstr "Inlägg av: %htitle%"
languages/breadcrumb-navxt-tr.mo DELETED
Binary file
languages/breadcrumb-navxt-tr.po DELETED
@@ -1,753 +0,0 @@
1
- # Translation of Breadcrumb NavXT in Turkish
2
- # This file is distributed under the same license as the Breadcrumb NavXT package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2013-06-21 14:09:24+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=(n > 1);\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Breadcrumb NavXT\n"
12
-
13
- #: breadcrumb_navxt_admin.php:534 breadcrumb_navxt_admin.php:611
14
- msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
- msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi. Bu hiyerarşik olmayan bir yazı tipi olduğundan dolayı beklenileni sağlaması için \"Post Parent\" seçeneğinin ilave bir eklenti gerektirebileceğini unutmayın."
16
-
17
- #: breadcrumb_navxt_class.php:67 breadcrumb_navxt_class.php:239
18
- #: breadcrumb_navxt_class.php:245 breadcrumb_navxt_class.php:251
19
- #: breadcrumb_navxt_class.php:265 breadcrumb_navxt_class.php:277
20
- #: breadcrumb_navxt_class.php:289
21
- msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
- msgstr "<a title=\"Git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
-
24
- #: breadcrumb_navxt_class.php:299
25
- msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
- msgstr "Arama sonuçları: &#39;<a title=\"Arama sonuçlarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
-
28
- #: breadcrumb_navxt_admin.php:432
29
- msgid "A collection of settings most likely to be modified are located under this tab."
30
- msgstr "Değiştirilmesi muhtemel ayarların bir bölümü bu sekme altında yer almaktadır."
31
-
32
- #: breadcrumb_navxt_admin.php:440
33
- msgid "Title Length"
34
- msgstr "Başlık Uzunluğu"
35
-
36
- #: breadcrumb_navxt_admin.php:445
37
- msgid "Limit the length of the breadcrumb title."
38
- msgstr "Breadcrumb başlık uzunluğunu sınırla."
39
-
40
- #: breadcrumb_navxt_admin.php:488
41
- msgid "Mainsite Breadcrumb"
42
- msgstr "Anasite Breadcrumb"
43
-
44
- #: breadcrumb_navxt_admin.php:500
45
- msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
- msgstr "Tüm yazı tipleri (Yazılar, Sayfalar ve Özel Yazı Türleri) için ayarlar bu sekme altında yer almaktadır."
47
-
48
- #: breadcrumb_navxt_admin.php:500
49
- msgid "Post Types"
50
- msgstr "Yazı Tipleri"
51
-
52
- #: breadcrumb_navxt_admin.php:506
53
- msgid "Post Hierarchy Display"
54
- msgstr "Yazı Hiyerarşi Görünümü"
55
-
56
- #: breadcrumb_navxt_admin.php:510
57
- msgid "Post Hierarchy"
58
- msgstr "Yazı Hiyerarşisi"
59
-
60
- #: breadcrumb_navxt_admin.php:578
61
- msgid "%s Hierarchy Display"
62
- msgstr "%s Hiyerarşisi Görünümü"
63
-
64
- #: breadcrumb_navxt_admin.php:640
65
- msgid "Post Formats"
66
- msgstr "Yazı Biçimleri"
67
-
68
- #: breadcrumb_navxt_admin.php:450
69
- msgid "Max Title Length: "
70
- msgstr "Maksimum Başlık Uzunluğu: "
71
-
72
- #: breadcrumb_navxt_admin.php:501
73
- msgid "Posts"
74
- msgstr "Yazılar"
75
-
76
- #: breadcrumb_navxt_admin.php:518 breadcrumb_navxt_admin.php:587
77
- msgid "Post Parent"
78
- msgstr "Yazı Ebeveyni"
79
-
80
- #: breadcrumb_navxt_admin.php:607
81
- msgid "The hierarchy which the breadcrumb trail will show."
82
- msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi."
83
-
84
- #: breadcrumb_navxt_admin.php:582
85
- msgid "%s Hierarchy"
86
- msgstr "%s Hiyerarşisi"
87
-
88
- #: breadcrumb_navxt_admin.php:625
89
- msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
- msgstr "Tüm sınıflandırmalar için (Kategoriler, Etiketler, ve özel sınıflandırmalar dahil) ayarlar bu sekme altında yer almaktadır."
91
-
92
- #: breadcrumb_navxt_admin.php:625
93
- msgid "Taxonomies"
94
- msgstr "Sınıflandırmalar"
95
-
96
- #: breadcrumb_navxt_admin.php:643
97
- msgid "Post Format Template"
98
- msgstr "Yazı Biçim Şablonu"
99
-
100
- #: breadcrumb_navxt_admin.php:643
101
- msgid "The template for post format breadcrumbs."
102
- msgstr "Yazı biçimi breadcrumbs için şablon."
103
-
104
- #: breadcrumb_navxt_admin.php:644
105
- msgid "Post Format Template (Unlinked)"
106
- msgstr "Yazı Biçim Şablonu (Bağlantısız)"
107
-
108
- #: breadcrumb_navxt_admin.php:644
109
- msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan post_format breadcrumbs şablonu."
111
-
112
- #: breadcrumb_navxt_admin.php:674
113
- msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
- msgstr "Yazar ve tarih arşivleri, arama ve 404 sayfaları için ayarlar bu sekme altında yer almaktadır."
115
-
116
- #: breadcrumb_navxt_admin.php:675
117
- msgid "Author Archives"
118
- msgstr "Yazar Arşivleri"
119
-
120
- #: breadcrumb_navxt_class.php:304 breadcrumb_navxt_class.php:309
121
- msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
- msgstr "<a title=\" %title% etiket arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
-
124
- #: breadcrumb_navxt_class.php:314
125
- msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
- msgstr "Yazar: <a title=\"Yazılarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
-
128
- #: breadcrumb_navxt_class.php:321
129
- msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
- msgstr "<a title=\" %title% kategori arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
-
132
- #: breadcrumb_navxt_class.php:325
133
- msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
- msgstr "<a title=\" %title% arşivlere git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
-
136
- #: includes/mtekk_adminkit.php:290
137
- msgid "Your settings are for a newer version."
138
- msgstr "Ayarlarınız daha yeni bir sürümü için."
139
-
140
- #: breadcrumb_navxt_widget.php:96
141
- msgid "Text to show before the trail:"
142
- msgstr "Kuyruktan önce gösterilecek metin"
143
-
144
- #: breadcrumb_navxt_widget.php:103
145
- msgid "Schema.org"
146
- msgstr "Schema.org"
147
-
148
- #: breadcrumb_navxt_admin.php:336
149
- msgid "Go to the Breadcrumb NavXT translation project."
150
- msgstr "Breadcrumb NavXT çeviri projesine gidin."
151
-
152
- #: breadcrumb_navxt_admin.php:36
153
- msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
- msgstr "PHP sürümünüz çok eski, lütfen yeni bir sürüme güncelleyin. Sürümünüz %1$s, Breadcrumb NavXT için %2$s sürümü gerekir"
155
-
156
- #: breadcrumb_navxt_widget.php:33
157
- msgid "Adds a breadcrumb trail to your sidebar"
158
- msgstr "Kenar çubuğunuza bir breadcrumb kuyruğu ekler"
159
-
160
- #: breadcrumb_navxt_widget.php:92
161
- msgid "Title:"
162
- msgstr "Başlık:"
163
-
164
- #: breadcrumb_navxt_widget.php:100
165
- msgid "Output trail as:"
166
- msgstr "Kuyruk çıktısı olarak:"
167
-
168
- #: breadcrumb_navxt_widget.php:102
169
- msgid "List"
170
- msgstr "Liste"
171
-
172
- #: breadcrumb_navxt_widget.php:104
173
- msgid "Plain"
174
- msgstr "Düz"
175
-
176
- #: breadcrumb_navxt_widget.php:109
177
- msgid "Link the breadcrumbs"
178
- msgstr "Breadcrumbs bağlantısı"
179
-
180
- #: breadcrumb_navxt_widget.php:111
181
- msgid "Reverse the order of the trail"
182
- msgstr "Kuyruk sırasını tersine çevir"
183
-
184
- #: breadcrumb_navxt_widget.php:113
185
- msgid "Hide the trail on the front page"
186
- msgstr "Ön sayfada kuyruğu gizle"
187
-
188
- #: breadcrumb_navxt_admin.php:213
189
- msgid "Insufficient privileges to proceed."
190
- msgstr "Devam etmek için yetersiz yetki."
191
-
192
- #: breadcrumb_navxt_admin.php:329
193
- msgid "Tips for the settings are located below select options."
194
- msgstr "Ayarlar için ipuçları seçeneklerin altında yer almaktadır."
195
-
196
- #: breadcrumb_navxt_admin.php:330
197
- msgid "Resources"
198
- msgstr "Kaynaklar"
199
-
200
- #: breadcrumb_navxt_admin.php:331
201
- msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
- msgstr "%sEğitim ve İpuçları%s: Yazarın web sitesinde çeşitli kılavuzlar, eğitim ve ipuçlarını bulabilirsiniz."
203
-
204
- #: breadcrumb_navxt_admin.php:331
205
- msgid "Go to the Breadcrumb NavXT tag archive."
206
- msgstr "Breadcrumb NavXT etiket arşivine gidin."
207
-
208
- #: breadcrumb_navxt_admin.php:332
209
- msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
- msgstr "%sÇevrimiçi Belgeler%s: Daha detaylı teknik bilgiler için belgelere göz atın."
211
-
212
- #: breadcrumb_navxt_admin.php:332
213
- msgid "Go to the Breadcrumb NavXT online documentation"
214
- msgstr "Breadcrumb NavXT çevrimiçi belgelere gidin"
215
-
216
- #: breadcrumb_navxt_admin.php:333
217
- msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
- msgstr "%sBir Hata Bildir%s: Eğer bir hata bulduğunuzu düşünüyorsanız, WordPress sürümünüz ve hatanın yeniden nasıl oluşturulacağına ilişkin ayrıntıları ekleyin."
219
-
220
- #: breadcrumb_navxt_admin.php:333
221
- msgid "Go to the Breadcrumb NavXT support post for your version."
222
- msgstr "Sürümünüz için Breadcrumb NavXT destek yazısına gidin."
223
-
224
- #: breadcrumb_navxt_admin.php:334
225
- msgid "Giving Back"
226
- msgstr "İade"
227
-
228
- #: breadcrumb_navxt_admin.php:335
229
- msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
- msgstr "%sBağış%s: Breadcrumb NavXT sevdiniz ve geliştirilmesine yardımcı mı olmak istiyor sunuz? Yazara bir bira satın almayı düşünün."
231
-
232
- #: breadcrumb_navxt_admin.php:335
233
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
- msgstr "Breadcrumb NavXT'ye bir bağış yapmak için PayPal'a gidin."
235
-
236
- #: breadcrumb_navxt_admin.php:336
237
- msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
- msgstr "%sTercüme et%s: Dilinizi mevcut değil mi? Çevirisi için John Havlik ile iletişime geçin."
239
-
240
- #: breadcrumb_navxt_admin.php:341 breadcrumb_navxt_admin.php:432
241
- #: breadcrumb_navxt_admin.php:433
242
- msgid "General"
243
- msgstr "Genel"
244
-
245
- #: breadcrumb_navxt_admin.php:344
246
- msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
- msgstr "Bu sayfadaki ayarların etkili olabilmesi için, Breadcrumb NavXT bileşenini kullanmanız veya temanıza aşağıdaki kod bölümlerinden yerleştirmeniz gerekir."
248
-
249
- #: breadcrumb_navxt_admin.php:345
250
- msgid "Breadcrumb trail with separators"
251
- msgstr "Ayırıcılar ile Breadcrumb kuyruğu"
252
-
253
- #: breadcrumb_navxt_admin.php:351
254
- msgid "Breadcrumb trail in list form"
255
- msgstr "Liste biçiminde Breadcrumb kuyruğu"
256
-
257
- #: breadcrumb_navxt_admin.php:360
258
- msgid "Quick Start"
259
- msgstr "Hızlı Başlangıç"
260
-
261
- #: breadcrumb_navxt_admin.php:363
262
- msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
- msgstr "Yukarıda Hızlı Başlat bölümündeki kodu kullanarak, alttaki CSS breadcumb kuyruğunu şekillendirmeye temel olarak kullanılabilirsiniz."
264
-
265
- #: breadcrumb_navxt_admin.php:375
266
- msgid "Styling"
267
- msgstr "Şekillendirme"
268
-
269
- #: breadcrumb_navxt_admin.php:381
270
- msgid "Import/Export/Reset"
271
- msgstr "İçe aktar/Dışa aktar/Sıfırla"
272
-
273
- #: breadcrumb_navxt_admin.php:405 includes/mtekk_adminkit.php:786
274
- msgid "Import"
275
- msgstr "İçe aktar"
276
-
277
- #: breadcrumb_navxt_admin.php:406 includes/mtekk_adminkit.php:787
278
- msgid "Export"
279
- msgstr "Dışa aktar"
280
-
281
- #: breadcrumb_navxt_admin.php:407 includes/mtekk_adminkit.php:788
282
- msgid "Reset"
283
- msgstr "Sıfırla"
284
-
285
- #: breadcrumb_navxt_admin.php:420
286
- msgid "Breadcrumb NavXT Settings"
287
- msgstr "Breadcrumb NavXT Ayarları"
288
-
289
- #: breadcrumb_navxt_admin.php:436
290
- msgid "Breadcrumb Separator"
291
- msgstr "Breadcrumb Ayırıcı"
292
-
293
- #: breadcrumb_navxt_admin.php:436
294
- msgid "Placed in between each breadcrumb."
295
- msgstr "Her breadcrumb arasına yerleştirilir."
296
-
297
- #: breadcrumb_navxt_admin.php:470 breadcrumb_navxt_admin.php:473
298
- msgid "Home Breadcrumb"
299
- msgstr "Anasayfa Breadcrumb"
300
-
301
- #: breadcrumb_navxt_admin.php:473
302
- msgid "Place the home breadcrumb in the trail."
303
- msgstr "Breadcrumb kuyruğuna anasayfa yerleştirin."
304
-
305
- #: breadcrumb_navxt_admin.php:474
306
- msgid "Home Template"
307
- msgstr "Anasayfa Şablonu"
308
-
309
- #: breadcrumb_navxt_admin.php:474
310
- msgid "The template for the home breadcrumb."
311
- msgstr "Anasayfa breadcrumb için şablon."
312
-
313
- #: breadcrumb_navxt_admin.php:475
314
- msgid "Home Template (Unlinked)"
315
- msgstr "Anasayfa Şablonu (Bağlantısız)"
316
-
317
- #: breadcrumb_navxt_admin.php:475
318
- msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
- msgstr "Breadcrumb için bağlantı olmadığında kullanılan breadcrumb anasayfa şablonu."
320
-
321
- #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:482
322
- msgid "Blog Breadcrumb"
323
- msgstr "Blog Breadcrumb"
324
-
325
- #: breadcrumb_navxt_admin.php:482
326
- msgid "Place the blog breadcrumb in the trail."
327
- msgstr "Breadcrumb kuyruğuna blog yerleştirin."
328
-
329
- #: breadcrumb_navxt_admin.php:483
330
- msgid "Blog Template"
331
- msgstr "Blog Şablonu"
332
-
333
- #: breadcrumb_navxt_admin.php:483
334
- msgid "The template for the blog breadcrumb, used only in static front page environments."
335
- msgstr "Sadece, statik ön sayfa ortamında kullanılan blog breadcrumb şablonu."
336
-
337
- #: breadcrumb_navxt_admin.php:484
338
- msgid "Blog Template (Unlinked)"
339
- msgstr "Blog Şablonu (Bağlantısız)"
340
-
341
- #: breadcrumb_navxt_admin.php:484
342
- msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
- msgstr "Statik ön sayfa ortamında ve breadcrumb için bağlantı olmadığında kullanılan blog breadcrumb şablonu."
344
-
345
- #: breadcrumb_navxt_admin.php:491
346
- msgid "Main Site Breadcrumb"
347
- msgstr "Ana Site Breadcrumb"
348
-
349
- #: breadcrumb_navxt_admin.php:491
350
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
- msgstr "Çoklu site kurulumlarında ana site anasayfa breadcrumb bağlantısını kuyruğa yerleştirir."
352
-
353
- #: breadcrumb_navxt_admin.php:492
354
- msgid "Main Site Home Template"
355
- msgstr "Ana Site Anasayfa Şablonu"
356
-
357
- #: breadcrumb_navxt_admin.php:492
358
- msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
- msgstr "Çoklu site ortamında kullanılan breadcrumb ana site anasayfa şablonu."
360
-
361
- #: breadcrumb_navxt_admin.php:493
362
- msgid "Main Site Home Template (Unlinked)"
363
- msgstr "Ana Site Anasayfa Şablonu (Bağlantısız)"
364
-
365
- #: breadcrumb_navxt_admin.php:493
366
- msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
- msgstr "Sadece, çoklu site ortamlarında ve breadcrumb için bağlantı olmadığında kullanılan ana site anasayfa breadcrumb şablonu."
368
-
369
- #: breadcrumb_navxt_admin.php:461
370
- msgid "Current Item"
371
- msgstr "Mevcut Öğe"
372
-
373
- #: breadcrumb_navxt_admin.php:464
374
- msgid "Link Current Item"
375
- msgstr "Mevcut Öğeye Bağlantı"
376
-
377
- #: breadcrumb_navxt_admin.php:464
378
- msgid "Yes"
379
- msgstr "Evet"
380
-
381
- #: breadcrumb_navxt_admin.php:465
382
- msgid "Paged Breadcrumb"
383
- msgstr "Sayfalanmış Breadcrumb"
384
-
385
- #: breadcrumb_navxt_admin.php:465
386
- msgid "Include the paged breadcrumb in the breadcrumb trail."
387
- msgstr "Breadcrumb kuyruğuna sayfalı breadcrumb ekleyin."
388
-
389
- #: breadcrumb_navxt_admin.php:465
390
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
- msgstr "Kullanıcının ilk önce sayfalanmış yazı/sayfa yerine bir sayfada olduğunu belirtir."
392
-
393
- #: breadcrumb_navxt_admin.php:466
394
- msgid "Paged Template"
395
- msgstr "Sayfalanmış Şablon"
396
-
397
- #: breadcrumb_navxt_admin.php:466
398
- msgid "The template for paged breadcrumbs."
399
- msgstr "Sayfalanmış breadcrumbs için şablon."
400
-
401
- #: breadcrumb_navxt_admin.php:504
402
- msgid "Post Template"
403
- msgstr "Yazı Şablonu"
404
-
405
- #: breadcrumb_navxt_admin.php:504
406
- msgid "The template for post breadcrumbs."
407
- msgstr "Yazı breadcrumbs için şablon."
408
-
409
- #: breadcrumb_navxt_admin.php:505
410
- msgid "Post Template (Unlinked)"
411
- msgstr "Yazı Şablonu (Bağlantısız)"
412
-
413
- #: breadcrumb_navxt_admin.php:505
414
- msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazı breadcrumbs şablonu."
416
-
417
- #: breadcrumb_navxt_admin.php:506
418
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
- msgstr "Breadcrumb kuyruğunda yazı için rehber sınıflandırması göster."
420
-
421
- #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:626
422
- msgid "Categories"
423
- msgstr "Kategoriler"
424
-
425
- #: breadcrumb_navxt_admin.php:515
426
- msgid "Dates"
427
- msgstr "Tarihler"
428
-
429
- #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:633
430
- msgid "Tags"
431
- msgstr "Etiketler"
432
-
433
- #: breadcrumb_navxt_admin.php:538
434
- msgid "Pages"
435
- msgstr "Sayfalar"
436
-
437
- #: breadcrumb_navxt_admin.php:541
438
- msgid "Page Template"
439
- msgstr "Sayfa Şablonu"
440
-
441
- #: breadcrumb_navxt_admin.php:541
442
- msgid "The template for page breadcrumbs."
443
- msgstr "Sayfa breadcrumbs için şablon."
444
-
445
- #: breadcrumb_navxt_admin.php:542
446
- msgid "Page Template (Unlinked)"
447
- msgstr "Sayfa Şablonu (Bağlantısız)"
448
-
449
- #: breadcrumb_navxt_admin.php:542
450
- msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan sayfa breadcrumbs şablonu."
452
-
453
- #: breadcrumb_navxt_admin.php:543
454
- msgid "Attachment Template"
455
- msgstr "Ek Şablonu"
456
-
457
- #: breadcrumb_navxt_admin.php:543
458
- msgid "The template for attachment breadcrumbs."
459
- msgstr "Ek breadcrumbs için şablon."
460
-
461
- #: breadcrumb_navxt_admin.php:544
462
- msgid "Attachment Template (Unlinked)"
463
- msgstr "Ek Şablonu (Bağlantısız)"
464
-
465
- #: breadcrumb_navxt_admin.php:544
466
- msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan ek breadcrumbs şablonu."
468
-
469
- #: breadcrumb_navxt_admin.php:742
470
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
- msgstr "<a title=\"Git %title%.\" href=\"%link%\">%htitle%</a>"
472
-
473
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_class.php:63
474
- msgid "%htitle%"
475
- msgstr "%htitle%"
476
-
477
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
478
- msgid "%s Template"
479
- msgstr "%s Şablonu"
480
-
481
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
482
- msgid "The template for %s breadcrumbs."
483
- msgstr "%s breadcrumbs için şablon."
484
-
485
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
486
- msgid "%s Template (Unlinked)"
487
- msgstr "%s Şablonu (Bağlantısız)"
488
-
489
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
490
- msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan %s breadcrumbs şablonu."
492
-
493
- #: breadcrumb_navxt_admin.php:570
494
- msgid "%s Root Page"
495
- msgstr "%s Kök Sayfası"
496
-
497
- #: breadcrumb_navxt_admin.php:573
498
- msgid "&mdash; Select &mdash;"
499
- msgstr "&mdash; Seç &mdash;"
500
-
501
- #: breadcrumb_navxt_admin.php:577
502
- msgid "%s Archive Display"
503
- msgstr "%s Arşiv Görünümü"
504
-
505
- #: breadcrumb_navxt_admin.php:577
506
- msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
- msgstr "Breadcrumb kuyruğunda %s yazı tipi arşivleri için breadcrumb göster."
508
-
509
- #: breadcrumb_navxt_admin.php:578
510
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
- msgstr "Breadcrumb kuyruğunda %s için rehber sınıflandırması göster."
512
-
513
- #: breadcrumb_navxt_admin.php:629
514
- msgid "Category Template"
515
- msgstr "Kategori Şablonu"
516
-
517
- #: breadcrumb_navxt_admin.php:629
518
- msgid "The template for category breadcrumbs."
519
- msgstr "Kategori breadcrumbs için şablon."
520
-
521
- #: breadcrumb_navxt_admin.php:630
522
- msgid "Category Template (Unlinked)"
523
- msgstr "Kategori Şablonu (Bağlantısız)"
524
-
525
- #: breadcrumb_navxt_admin.php:630
526
- msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan kategori breadcrumbs şablonu."
528
-
529
- #: breadcrumb_navxt_admin.php:636
530
- msgid "Tag Template"
531
- msgstr "Etiket Şablonu"
532
-
533
- #: breadcrumb_navxt_admin.php:636
534
- msgid "The template for tag breadcrumbs."
535
- msgstr "Etiket breadcrumbs için şablon."
536
-
537
- #: breadcrumb_navxt_admin.php:637
538
- msgid "Tag Template (Unlinked)"
539
- msgstr "Etiket Şablonu (Bağlantısız)"
540
-
541
- #: breadcrumb_navxt_admin.php:637
542
- msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan etiket breadcrumbs şablonu."
544
-
545
- #: breadcrumb_navxt_admin.php:674 breadcrumb_navxt_admin.php:683
546
- msgid "Miscellaneous"
547
- msgstr "Çeşitli"
548
-
549
- #: breadcrumb_navxt_admin.php:678
550
- msgid "Author Template"
551
- msgstr "Yazar Şablonu"
552
-
553
- #: breadcrumb_navxt_admin.php:678
554
- msgid "The template for author breadcrumbs."
555
- msgstr "Yazar breadcrumbs için şablon."
556
-
557
- #: breadcrumb_navxt_admin.php:679
558
- msgid "Author Template (Unlinked)"
559
- msgstr "Yazar Şablonu (Bağlantısız)"
560
-
561
- #: breadcrumb_navxt_admin.php:679
562
- msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazar breadcrumbs şablonu."
564
-
565
- #: breadcrumb_navxt_admin.php:680
566
- msgid "Author Display Format"
567
- msgstr "Yazar Gösterim Formatı"
568
-
569
- #: breadcrumb_navxt_admin.php:680
570
- msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
- msgstr "display_name kullanıcı profili altında diğer kullanıcıların profilindeki seçeneklere karşılık gelen \"Herkes tarafından görülecek ad\" içinde belirtilen adı kullanır."
572
-
573
- #: breadcrumb_navxt_admin.php:686
574
- msgid "Date Template"
575
- msgstr "Tarih Şablonu"
576
-
577
- #: breadcrumb_navxt_admin.php:686
578
- msgid "The template for date breadcrumbs."
579
- msgstr "Tarih breadcrumbs için şablon."
580
-
581
- #: breadcrumb_navxt_admin.php:687
582
- msgid "Date Template (Unlinked)"
583
- msgstr "Tarih Şablonu (Bağlantısız)"
584
-
585
- #: breadcrumb_navxt_admin.php:687
586
- msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
- msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan tarih breadcrumbs şablonu."
588
-
589
- #: breadcrumb_navxt_admin.php:688
590
- msgid "Search Template"
591
- msgstr "Arama Şablonu"
592
-
593
- #: breadcrumb_navxt_admin.php:688
594
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
- msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında kullanılan arama breadcrumbs için bağlantı şablonu."
596
-
597
- #: breadcrumb_navxt_admin.php:689
598
- msgid "Search Template (Unlinked)"
599
- msgstr "Arama Şablonu (Bağlantısız)"
600
-
601
- #: breadcrumb_navxt_admin.php:689
602
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
- msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında ve breadcrumb için bağlantı olmadığında kullanılan arama breadcrumbs için bağlantı şablonu."
604
-
605
- #: breadcrumb_navxt_admin.php:690
606
- msgid "404 Title"
607
- msgstr "404 Başlığı"
608
-
609
- #: breadcrumb_navxt_admin.php:691
610
- msgid "404 Template"
611
- msgstr "404 Şablonu"
612
-
613
- #: breadcrumb_navxt_admin.php:691
614
- msgid "The template for 404 breadcrumbs."
615
- msgstr "404 breadcrumbs için şablon."
616
-
617
- #: breadcrumb_navxt_admin.php:697
618
- msgid "Save Changes"
619
- msgstr "Değişiklikleri Kaydet"
620
-
621
- #: includes/mtekk_adminkit.php:211
622
- msgid "Settings"
623
- msgstr "Ayarlar"
624
-
625
- #: includes/mtekk_adminkit.php:281
626
- msgid "Your settings are out of date."
627
- msgstr "Ayarlarınız güncel değil."
628
-
629
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
630
- msgid "Migrate the settings now."
631
- msgstr "Şimdi ayarları taşıyın."
632
-
633
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
634
- msgid "Migrate now."
635
- msgstr "Şimdi taşıyın."
636
-
637
- #: includes/mtekk_adminkit.php:298
638
- msgid "Your plugin install is incomplete."
639
- msgstr "Eklenti kurulumunuz tamamlanmadı."
640
-
641
- #: includes/mtekk_adminkit.php:298
642
- msgid "Load default settings now."
643
- msgstr "Şimdi varsayılan ayarları yükle."
644
-
645
- #: includes/mtekk_adminkit.php:298
646
- msgid "Complete now."
647
- msgstr "Şimdi tamamla."
648
-
649
- #: includes/mtekk_adminkit.php:306
650
- msgid "Your plugin settings are invalid."
651
- msgstr "Eklenti ayarlarınız geçersiz."
652
-
653
- #: includes/mtekk_adminkit.php:306
654
- msgid "Attempt to fix settings now."
655
- msgstr "Şimdi ayarları düzeltmeyi deneyin."
656
-
657
- #: includes/mtekk_adminkit.php:306
658
- msgid "Fix now."
659
- msgstr "Şimdi düzelt."
660
-
661
- #: includes/mtekk_adminkit.php:484
662
- msgid "Settings successfully saved."
663
- msgstr "Ayarlar başarıyla kaydedildi."
664
-
665
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
666
- msgid "Undo the options save."
667
- msgstr "Seçenekleri kaydetmeyi geri al."
668
-
669
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
670
- #: includes/mtekk_adminkit.php:594 includes/mtekk_adminkit.php:618
671
- #: includes/mtekk_adminkit.php:635
672
- msgid "Undo"
673
- msgstr "Geri al"
674
-
675
- #: includes/mtekk_adminkit.php:489
676
- msgid "Some settings were not saved."
677
- msgstr "Bazı ayarlar kaydedilmedi."
678
-
679
- #: includes/mtekk_adminkit.php:490
680
- msgid "The following settings were not saved:"
681
- msgstr "Aşağıdaki ayarları kaydedilmedi:"
682
-
683
- #: includes/mtekk_adminkit.php:495
684
- msgid "Please include this message in your %sbug report%s."
685
- msgstr "Lütfen bu mesajı %sbug report%s içine dahil edin."
686
-
687
- #: includes/mtekk_adminkit.php:495
688
- msgid "Go to the %s support post for your version."
689
- msgstr "Sürümünüz için %s destek yazısına gidin."
690
-
691
- #: includes/mtekk_adminkit.php:594
692
- msgid "Settings successfully imported from the uploaded file."
693
- msgstr "Ayarlar yüklenen dosyadan başarıyla içe aktarıldı."
694
-
695
- #: includes/mtekk_adminkit.php:594
696
- msgid "Undo the options import."
697
- msgstr "Seçenekleri içe aktarmayı geri al."
698
-
699
- #: includes/mtekk_adminkit.php:599
700
- msgid "Importing settings from file failed."
701
- msgstr "Ayarları dosyadan içe aktarma başarısız oldu."
702
-
703
- #: includes/mtekk_adminkit.php:618
704
- msgid "Settings successfully reset to the default values."
705
- msgstr "Ayarlar varsayılan değerlere başarıyla sıfırlandı."
706
-
707
- #: includes/mtekk_adminkit.php:618
708
- msgid "Undo the options reset."
709
- msgstr "Seçenekleri sıfırlamayı geri al."
710
-
711
- #: includes/mtekk_adminkit.php:635
712
- msgid "Settings successfully undid the last operation."
713
- msgstr "Ayarlar son işleme başarıyla getirildi."
714
-
715
- #: includes/mtekk_adminkit.php:635
716
- msgid "Undo the last undo operation."
717
- msgstr "Son geri alma işlemini geri al."
718
-
719
- #: includes/mtekk_adminkit.php:670
720
- msgid "Settings successfully migrated."
721
- msgstr "Ayarlar başarıyla taşındı."
722
-
723
- #: includes/mtekk_adminkit.php:677
724
- msgid "Default settings successfully installed."
725
- msgstr "Varsayılan ayarlar başarıyla yüklendi."
726
-
727
- #: includes/mtekk_adminkit.php:778
728
- msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
- msgstr "Ayarları bir XML dosyasından içe aktar, mevcut ayarları bir XML dosyasına aktar veya varsayılan ayarlara sıfırla."
730
-
731
- #: includes/mtekk_adminkit.php:781
732
- msgid "Settings File"
733
- msgstr "Ayarlar Dosyası"
734
-
735
- #: includes/mtekk_adminkit.php:784
736
- msgid "Select a XML settings file to upload and import settings from."
737
- msgstr "Ayarları yüklemek ve içe aktarmak için bir XML ayarlar dosyası seçin."
738
-
739
- #: breadcrumb_navxt_class.php:272
740
- msgid "Page %htitle%"
741
- msgstr "Sayfa %htitle%"
742
-
743
- #: breadcrumb_navxt_class.php:296
744
- msgid "404"
745
- msgstr "404"
746
-
747
- #: breadcrumb_navxt_class.php:301
748
- msgid "Search results for &#39;%htitle%&#39;"
749
- msgstr "Arama sonuçları: &#39;%htitle%&#39;"
750
-
751
- #: breadcrumb_navxt_class.php:316
752
- msgid "Articles by: %htitle%"
753
- msgstr "Yazar: %htitle%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/breadcrumb-navxt-tr_TR.mo CHANGED
Binary file
languages/breadcrumb-navxt-tr_TR.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2013-06-21 14:09:24+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -10,744 +10,767 @@ msgstr ""
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
- #: breadcrumb_navxt_admin.php:534 breadcrumb_navxt_admin.php:611
 
 
 
 
 
 
 
 
14
  msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
15
  msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi. Bu hiyerarşik olmayan bir yazı tipi olduğundan dolayı beklenileni sağlaması için \"Post Parent\" seçeneğinin ilave bir eklenti gerektirebileceğini unutmayın."
16
 
17
- #: breadcrumb_navxt_class.php:67 breadcrumb_navxt_class.php:239
18
- #: breadcrumb_navxt_class.php:245 breadcrumb_navxt_class.php:251
19
- #: breadcrumb_navxt_class.php:265 breadcrumb_navxt_class.php:277
20
- #: breadcrumb_navxt_class.php:289
21
  msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
22
  msgstr "<a title=\"Git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
23
 
24
- #: breadcrumb_navxt_class.php:299
25
  msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
26
  msgstr "Arama sonuçları: &#39;<a title=\"Arama sonuçlarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
27
 
28
- #: breadcrumb_navxt_admin.php:432
29
  msgid "A collection of settings most likely to be modified are located under this tab."
30
  msgstr "Değiştirilmesi muhtemel ayarların bir bölümü bu sekme altında yer almaktadır."
31
 
32
- #: breadcrumb_navxt_admin.php:440
33
  msgid "Title Length"
34
  msgstr "Başlık Uzunluğu"
35
 
36
- #: breadcrumb_navxt_admin.php:445
37
  msgid "Limit the length of the breadcrumb title."
38
  msgstr "Breadcrumb başlık uzunluğunu sınırla."
39
 
40
- #: breadcrumb_navxt_admin.php:488
41
  msgid "Mainsite Breadcrumb"
42
  msgstr "Anasite Breadcrumb"
43
 
44
- #: breadcrumb_navxt_admin.php:500
45
  msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
46
  msgstr "Tüm yazı tipleri (Yazılar, Sayfalar ve Özel Yazı Türleri) için ayarlar bu sekme altında yer almaktadır."
47
 
48
- #: breadcrumb_navxt_admin.php:500
49
  msgid "Post Types"
50
  msgstr "Yazı Tipleri"
51
 
52
- #: breadcrumb_navxt_admin.php:506
53
  msgid "Post Hierarchy Display"
54
  msgstr "Yazı Hiyerarşi Görünümü"
55
 
56
- #: breadcrumb_navxt_admin.php:510
57
  msgid "Post Hierarchy"
58
  msgstr "Yazı Hiyerarşisi"
59
 
60
- #: breadcrumb_navxt_admin.php:578
61
  msgid "%s Hierarchy Display"
62
  msgstr "%s Hiyerarşisi Görünümü"
63
 
64
- #: breadcrumb_navxt_admin.php:640
65
  msgid "Post Formats"
66
  msgstr "Yazı Biçimleri"
67
 
68
- #: breadcrumb_navxt_admin.php:450
69
  msgid "Max Title Length: "
70
  msgstr "Maksimum Başlık Uzunluğu: "
71
 
72
- #: breadcrumb_navxt_admin.php:501
73
  msgid "Posts"
74
  msgstr "Yazılar"
75
 
76
- #: breadcrumb_navxt_admin.php:518 breadcrumb_navxt_admin.php:587
 
77
  msgid "Post Parent"
78
  msgstr "Yazı Ebeveyni"
79
 
80
- #: breadcrumb_navxt_admin.php:607
81
  msgid "The hierarchy which the breadcrumb trail will show."
82
  msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi."
83
 
84
- #: breadcrumb_navxt_admin.php:582
85
  msgid "%s Hierarchy"
86
  msgstr "%s Hiyerarşisi"
87
 
88
- #: breadcrumb_navxt_admin.php:625
89
  msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
90
  msgstr "Tüm sınıflandırmalar için (Kategoriler, Etiketler, ve özel sınıflandırmalar dahil) ayarlar bu sekme altında yer almaktadır."
91
 
92
- #: breadcrumb_navxt_admin.php:625
93
  msgid "Taxonomies"
94
  msgstr "Sınıflandırmalar"
95
 
96
- #: breadcrumb_navxt_admin.php:643
97
  msgid "Post Format Template"
98
  msgstr "Yazı Biçim Şablonu"
99
 
100
- #: breadcrumb_navxt_admin.php:643
101
  msgid "The template for post format breadcrumbs."
102
  msgstr "Yazı biçimi breadcrumbs için şablon."
103
 
104
- #: breadcrumb_navxt_admin.php:644
105
  msgid "Post Format Template (Unlinked)"
106
  msgstr "Yazı Biçim Şablonu (Bağlantısız)"
107
 
108
- #: breadcrumb_navxt_admin.php:644
109
  msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
110
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan post_format breadcrumbs şablonu."
111
 
112
- #: breadcrumb_navxt_admin.php:674
113
  msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
114
  msgstr "Yazar ve tarih arşivleri, arama ve 404 sayfaları için ayarlar bu sekme altında yer almaktadır."
115
 
116
- #: breadcrumb_navxt_admin.php:675
117
  msgid "Author Archives"
118
  msgstr "Yazar Arşivleri"
119
 
120
- #: breadcrumb_navxt_class.php:304 breadcrumb_navxt_class.php:309
121
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
122
  msgstr "<a title=\" %title% etiket arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
123
 
124
- #: breadcrumb_navxt_class.php:314
125
  msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
126
  msgstr "Yazar: <a title=\"Yazılarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
127
 
128
- #: breadcrumb_navxt_class.php:321
129
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
130
  msgstr "<a title=\" %title% kategori arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
 
132
- #: breadcrumb_navxt_class.php:325
133
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
134
  msgstr "<a title=\" %title% arşivlere git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
 
136
- #: includes/mtekk_adminkit.php:290
137
  msgid "Your settings are for a newer version."
138
  msgstr "Ayarlarınız daha yeni bir sürümü için."
139
 
140
- #: breadcrumb_navxt_widget.php:96
141
  msgid "Text to show before the trail:"
142
  msgstr "Kuyruktan önce gösterilecek metin"
143
 
144
- #: breadcrumb_navxt_widget.php:103
145
  msgid "Schema.org"
146
  msgstr "Schema.org"
147
 
148
- #: breadcrumb_navxt_admin.php:336
149
  msgid "Go to the Breadcrumb NavXT translation project."
150
  msgstr "Breadcrumb NavXT çeviri projesine gidin."
151
 
152
- #: breadcrumb_navxt_admin.php:36
 
153
  msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
154
  msgstr "PHP sürümünüz çok eski, lütfen yeni bir sürüme güncelleyin. Sürümünüz %1$s, Breadcrumb NavXT için %2$s sürümü gerekir"
155
 
156
- #: breadcrumb_navxt_widget.php:33
157
  msgid "Adds a breadcrumb trail to your sidebar"
158
  msgstr "Kenar çubuğunuza bir breadcrumb kuyruğu ekler"
159
 
160
- #: breadcrumb_navxt_widget.php:92
161
  msgid "Title:"
162
  msgstr "Başlık:"
163
 
164
- #: breadcrumb_navxt_widget.php:100
165
  msgid "Output trail as:"
166
  msgstr "Kuyruk çıktısı olarak:"
167
 
168
- #: breadcrumb_navxt_widget.php:102
169
  msgid "List"
170
  msgstr "Liste"
171
 
172
- #: breadcrumb_navxt_widget.php:104
173
  msgid "Plain"
174
  msgstr "Düz"
175
 
176
- #: breadcrumb_navxt_widget.php:109
177
  msgid "Link the breadcrumbs"
178
  msgstr "Breadcrumbs bağlantısı"
179
 
180
- #: breadcrumb_navxt_widget.php:111
181
  msgid "Reverse the order of the trail"
182
  msgstr "Kuyruk sırasını tersine çevir"
183
 
184
- #: breadcrumb_navxt_widget.php:113
185
  msgid "Hide the trail on the front page"
186
  msgstr "Ön sayfada kuyruğu gizle"
187
 
188
- #: breadcrumb_navxt_admin.php:213
189
  msgid "Insufficient privileges to proceed."
190
  msgstr "Devam etmek için yetersiz yetki."
191
 
192
- #: breadcrumb_navxt_admin.php:329
193
  msgid "Tips for the settings are located below select options."
194
  msgstr "Ayarlar için ipuçları seçeneklerin altında yer almaktadır."
195
 
196
- #: breadcrumb_navxt_admin.php:330
197
  msgid "Resources"
198
  msgstr "Kaynaklar"
199
 
200
- #: breadcrumb_navxt_admin.php:331
201
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
202
  msgstr "%sEğitim ve İpuçları%s: Yazarın web sitesinde çeşitli kılavuzlar, eğitim ve ipuçlarını bulabilirsiniz."
203
 
204
- #: breadcrumb_navxt_admin.php:331
205
  msgid "Go to the Breadcrumb NavXT tag archive."
206
  msgstr "Breadcrumb NavXT etiket arşivine gidin."
207
 
208
- #: breadcrumb_navxt_admin.php:332
209
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
210
  msgstr "%sÇevrimiçi Belgeler%s: Daha detaylı teknik bilgiler için belgelere göz atın."
211
 
212
- #: breadcrumb_navxt_admin.php:332
213
  msgid "Go to the Breadcrumb NavXT online documentation"
214
  msgstr "Breadcrumb NavXT çevrimiçi belgelere gidin"
215
 
216
- #: breadcrumb_navxt_admin.php:333
217
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
218
  msgstr "%sBir Hata Bildir%s: Eğer bir hata bulduğunuzu düşünüyorsanız, WordPress sürümünüz ve hatanın yeniden nasıl oluşturulacağına ilişkin ayrıntıları ekleyin."
219
 
220
- #: breadcrumb_navxt_admin.php:333
221
  msgid "Go to the Breadcrumb NavXT support post for your version."
222
  msgstr "Sürümünüz için Breadcrumb NavXT destek yazısına gidin."
223
 
224
- #: breadcrumb_navxt_admin.php:334
225
  msgid "Giving Back"
226
  msgstr "İade"
227
 
228
- #: breadcrumb_navxt_admin.php:335
229
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
230
  msgstr "%sBağış%s: Breadcrumb NavXT sevdiniz ve geliştirilmesine yardımcı mı olmak istiyor sunuz? Yazara bir bira satın almayı düşünün."
231
 
232
- #: breadcrumb_navxt_admin.php:335
233
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
234
  msgstr "Breadcrumb NavXT'ye bir bağış yapmak için PayPal'a gidin."
235
 
236
- #: breadcrumb_navxt_admin.php:336
237
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
238
  msgstr "%sTercüme et%s: Dilinizi mevcut değil mi? Çevirisi için John Havlik ile iletişime geçin."
239
 
240
- #: breadcrumb_navxt_admin.php:341 breadcrumb_navxt_admin.php:432
241
- #: breadcrumb_navxt_admin.php:433
 
242
  msgid "General"
243
  msgstr "Genel"
244
 
245
- #: breadcrumb_navxt_admin.php:344
246
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
247
  msgstr "Bu sayfadaki ayarların etkili olabilmesi için, Breadcrumb NavXT bileşenini kullanmanız veya temanıza aşağıdaki kod bölümlerinden yerleştirmeniz gerekir."
248
 
249
- #: breadcrumb_navxt_admin.php:345
250
  msgid "Breadcrumb trail with separators"
251
  msgstr "Ayırıcılar ile Breadcrumb kuyruğu"
252
 
253
- #: breadcrumb_navxt_admin.php:351
254
  msgid "Breadcrumb trail in list form"
255
  msgstr "Liste biçiminde Breadcrumb kuyruğu"
256
 
257
- #: breadcrumb_navxt_admin.php:360
258
  msgid "Quick Start"
259
  msgstr "Hızlı Başlangıç"
260
 
261
- #: breadcrumb_navxt_admin.php:363
262
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
263
  msgstr "Yukarıda Hızlı Başlat bölümündeki kodu kullanarak, alttaki CSS breadcumb kuyruğunu şekillendirmeye temel olarak kullanılabilirsiniz."
264
 
265
- #: breadcrumb_navxt_admin.php:375
266
  msgid "Styling"
267
  msgstr "Şekillendirme"
268
 
269
- #: breadcrumb_navxt_admin.php:381
270
  msgid "Import/Export/Reset"
271
  msgstr "İçe aktar/Dışa aktar/Sıfırla"
272
 
273
- #: breadcrumb_navxt_admin.php:405 includes/mtekk_adminkit.php:786
 
274
  msgid "Import"
275
  msgstr "İçe aktar"
276
 
277
- #: breadcrumb_navxt_admin.php:406 includes/mtekk_adminkit.php:787
 
278
  msgid "Export"
279
  msgstr "Dışa aktar"
280
 
281
- #: breadcrumb_navxt_admin.php:407 includes/mtekk_adminkit.php:788
 
282
  msgid "Reset"
283
  msgstr "Sıfırla"
284
 
285
- #: breadcrumb_navxt_admin.php:420
286
  msgid "Breadcrumb NavXT Settings"
287
  msgstr "Breadcrumb NavXT Ayarları"
288
 
289
- #: breadcrumb_navxt_admin.php:436
290
  msgid "Breadcrumb Separator"
291
  msgstr "Breadcrumb Ayırıcı"
292
 
293
- #: breadcrumb_navxt_admin.php:436
294
  msgid "Placed in between each breadcrumb."
295
  msgstr "Her breadcrumb arasına yerleştirilir."
296
 
297
- #: breadcrumb_navxt_admin.php:470 breadcrumb_navxt_admin.php:473
 
298
  msgid "Home Breadcrumb"
299
  msgstr "Anasayfa Breadcrumb"
300
 
301
- #: breadcrumb_navxt_admin.php:473
302
  msgid "Place the home breadcrumb in the trail."
303
  msgstr "Breadcrumb kuyruğuna anasayfa yerleştirin."
304
 
305
- #: breadcrumb_navxt_admin.php:474
306
  msgid "Home Template"
307
  msgstr "Anasayfa Şablonu"
308
 
309
- #: breadcrumb_navxt_admin.php:474
310
  msgid "The template for the home breadcrumb."
311
  msgstr "Anasayfa breadcrumb için şablon."
312
 
313
- #: breadcrumb_navxt_admin.php:475
314
  msgid "Home Template (Unlinked)"
315
  msgstr "Anasayfa Şablonu (Bağlantısız)"
316
 
317
- #: breadcrumb_navxt_admin.php:475
318
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
319
  msgstr "Breadcrumb için bağlantı olmadığında kullanılan breadcrumb anasayfa şablonu."
320
 
321
- #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:482
 
322
  msgid "Blog Breadcrumb"
323
  msgstr "Blog Breadcrumb"
324
 
325
- #: breadcrumb_navxt_admin.php:482
326
  msgid "Place the blog breadcrumb in the trail."
327
  msgstr "Breadcrumb kuyruğuna blog yerleştirin."
328
 
329
- #: breadcrumb_navxt_admin.php:483
330
  msgid "Blog Template"
331
  msgstr "Blog Şablonu"
332
 
333
- #: breadcrumb_navxt_admin.php:483
334
  msgid "The template for the blog breadcrumb, used only in static front page environments."
335
  msgstr "Sadece, statik ön sayfa ortamında kullanılan blog breadcrumb şablonu."
336
 
337
- #: breadcrumb_navxt_admin.php:484
338
  msgid "Blog Template (Unlinked)"
339
  msgstr "Blog Şablonu (Bağlantısız)"
340
 
341
- #: breadcrumb_navxt_admin.php:484
342
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
343
  msgstr "Statik ön sayfa ortamında ve breadcrumb için bağlantı olmadığında kullanılan blog breadcrumb şablonu."
344
 
345
- #: breadcrumb_navxt_admin.php:491
346
  msgid "Main Site Breadcrumb"
347
  msgstr "Ana Site Breadcrumb"
348
 
349
- #: breadcrumb_navxt_admin.php:491
350
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
351
  msgstr "Çoklu site kurulumlarında ana site anasayfa breadcrumb bağlantısını kuyruğa yerleştirir."
352
 
353
- #: breadcrumb_navxt_admin.php:492
354
  msgid "Main Site Home Template"
355
  msgstr "Ana Site Anasayfa Şablonu"
356
 
357
- #: breadcrumb_navxt_admin.php:492
358
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
359
  msgstr "Çoklu site ortamında kullanılan breadcrumb ana site anasayfa şablonu."
360
 
361
- #: breadcrumb_navxt_admin.php:493
362
  msgid "Main Site Home Template (Unlinked)"
363
  msgstr "Ana Site Anasayfa Şablonu (Bağlantısız)"
364
 
365
- #: breadcrumb_navxt_admin.php:493
366
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
367
  msgstr "Sadece, çoklu site ortamlarında ve breadcrumb için bağlantı olmadığında kullanılan ana site anasayfa breadcrumb şablonu."
368
 
369
- #: breadcrumb_navxt_admin.php:461
370
  msgid "Current Item"
371
  msgstr "Mevcut Öğe"
372
 
373
- #: breadcrumb_navxt_admin.php:464
374
  msgid "Link Current Item"
375
  msgstr "Mevcut Öğeye Bağlantı"
376
 
377
- #: breadcrumb_navxt_admin.php:464
378
  msgid "Yes"
379
  msgstr "Evet"
380
 
381
- #: breadcrumb_navxt_admin.php:465
382
  msgid "Paged Breadcrumb"
383
  msgstr "Sayfalanmış Breadcrumb"
384
 
385
- #: breadcrumb_navxt_admin.php:465
386
  msgid "Include the paged breadcrumb in the breadcrumb trail."
387
  msgstr "Breadcrumb kuyruğuna sayfalı breadcrumb ekleyin."
388
 
389
- #: breadcrumb_navxt_admin.php:465
390
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
391
  msgstr "Kullanıcının ilk önce sayfalanmış yazı/sayfa yerine bir sayfada olduğunu belirtir."
392
 
393
- #: breadcrumb_navxt_admin.php:466
394
  msgid "Paged Template"
395
  msgstr "Sayfalanmış Şablon"
396
 
397
- #: breadcrumb_navxt_admin.php:466
398
  msgid "The template for paged breadcrumbs."
399
  msgstr "Sayfalanmış breadcrumbs için şablon."
400
 
401
- #: breadcrumb_navxt_admin.php:504
402
  msgid "Post Template"
403
  msgstr "Yazı Şablonu"
404
 
405
- #: breadcrumb_navxt_admin.php:504
406
  msgid "The template for post breadcrumbs."
407
  msgstr "Yazı breadcrumbs için şablon."
408
 
409
- #: breadcrumb_navxt_admin.php:505
410
  msgid "Post Template (Unlinked)"
411
  msgstr "Yazı Şablonu (Bağlantısız)"
412
 
413
- #: breadcrumb_navxt_admin.php:505
414
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
415
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazı breadcrumbs şablonu."
416
 
417
- #: breadcrumb_navxt_admin.php:506
418
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
419
  msgstr "Breadcrumb kuyruğunda yazı için rehber sınıflandırması göster."
420
 
421
- #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:626
 
422
  msgid "Categories"
423
  msgstr "Kategoriler"
424
 
425
- #: breadcrumb_navxt_admin.php:515
426
  msgid "Dates"
427
  msgstr "Tarihler"
428
 
429
- #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:633
 
430
  msgid "Tags"
431
  msgstr "Etiketler"
432
 
433
- #: breadcrumb_navxt_admin.php:538
434
  msgid "Pages"
435
  msgstr "Sayfalar"
436
 
437
- #: breadcrumb_navxt_admin.php:541
438
  msgid "Page Template"
439
  msgstr "Sayfa Şablonu"
440
 
441
- #: breadcrumb_navxt_admin.php:541
442
  msgid "The template for page breadcrumbs."
443
  msgstr "Sayfa breadcrumbs için şablon."
444
 
445
- #: breadcrumb_navxt_admin.php:542
446
  msgid "Page Template (Unlinked)"
447
  msgstr "Sayfa Şablonu (Bağlantısız)"
448
 
449
- #: breadcrumb_navxt_admin.php:542
450
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
451
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan sayfa breadcrumbs şablonu."
452
 
453
- #: breadcrumb_navxt_admin.php:543
454
  msgid "Attachment Template"
455
  msgstr "Ek Şablonu"
456
 
457
- #: breadcrumb_navxt_admin.php:543
458
  msgid "The template for attachment breadcrumbs."
459
  msgstr "Ek breadcrumbs için şablon."
460
 
461
- #: breadcrumb_navxt_admin.php:544
462
  msgid "Attachment Template (Unlinked)"
463
  msgstr "Ek Şablonu (Bağlantısız)"
464
 
465
- #: breadcrumb_navxt_admin.php:544
466
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
467
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan ek breadcrumbs şablonu."
468
 
469
- #: breadcrumb_navxt_admin.php:742
470
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
471
  msgstr "<a title=\"Git %title%.\" href=\"%link%\">%htitle%</a>"
472
 
473
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_class.php:63
474
  msgid "%htitle%"
475
  msgstr "%htitle%"
476
 
477
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
 
478
  msgid "%s Template"
479
  msgstr "%s Şablonu"
480
 
481
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
 
482
  msgid "The template for %s breadcrumbs."
483
  msgstr "%s breadcrumbs için şablon."
484
 
485
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
 
486
  msgid "%s Template (Unlinked)"
487
  msgstr "%s Şablonu (Bağlantısız)"
488
 
489
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
 
490
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
491
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan %s breadcrumbs şablonu."
492
 
493
- #: breadcrumb_navxt_admin.php:570
494
  msgid "%s Root Page"
495
  msgstr "%s Kök Sayfası"
496
 
497
- #: breadcrumb_navxt_admin.php:573
498
  msgid "&mdash; Select &mdash;"
499
  msgstr "&mdash; Seç &mdash;"
500
 
501
- #: breadcrumb_navxt_admin.php:577
502
  msgid "%s Archive Display"
503
  msgstr "%s Arşiv Görünümü"
504
 
505
- #: breadcrumb_navxt_admin.php:577
506
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
507
  msgstr "Breadcrumb kuyruğunda %s yazı tipi arşivleri için breadcrumb göster."
508
 
509
- #: breadcrumb_navxt_admin.php:578
510
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
511
  msgstr "Breadcrumb kuyruğunda %s için rehber sınıflandırması göster."
512
 
513
- #: breadcrumb_navxt_admin.php:629
514
  msgid "Category Template"
515
  msgstr "Kategori Şablonu"
516
 
517
- #: breadcrumb_navxt_admin.php:629
518
  msgid "The template for category breadcrumbs."
519
  msgstr "Kategori breadcrumbs için şablon."
520
 
521
- #: breadcrumb_navxt_admin.php:630
522
  msgid "Category Template (Unlinked)"
523
  msgstr "Kategori Şablonu (Bağlantısız)"
524
 
525
- #: breadcrumb_navxt_admin.php:630
526
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
527
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan kategori breadcrumbs şablonu."
528
 
529
- #: breadcrumb_navxt_admin.php:636
530
  msgid "Tag Template"
531
  msgstr "Etiket Şablonu"
532
 
533
- #: breadcrumb_navxt_admin.php:636
534
  msgid "The template for tag breadcrumbs."
535
  msgstr "Etiket breadcrumbs için şablon."
536
 
537
- #: breadcrumb_navxt_admin.php:637
538
  msgid "Tag Template (Unlinked)"
539
  msgstr "Etiket Şablonu (Bağlantısız)"
540
 
541
- #: breadcrumb_navxt_admin.php:637
542
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
543
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan etiket breadcrumbs şablonu."
544
 
545
- #: breadcrumb_navxt_admin.php:674 breadcrumb_navxt_admin.php:683
 
546
  msgid "Miscellaneous"
547
  msgstr "Çeşitli"
548
 
549
- #: breadcrumb_navxt_admin.php:678
550
  msgid "Author Template"
551
  msgstr "Yazar Şablonu"
552
 
553
- #: breadcrumb_navxt_admin.php:678
554
  msgid "The template for author breadcrumbs."
555
  msgstr "Yazar breadcrumbs için şablon."
556
 
557
- #: breadcrumb_navxt_admin.php:679
558
  msgid "Author Template (Unlinked)"
559
  msgstr "Yazar Şablonu (Bağlantısız)"
560
 
561
- #: breadcrumb_navxt_admin.php:679
562
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
563
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazar breadcrumbs şablonu."
564
 
565
- #: breadcrumb_navxt_admin.php:680
566
  msgid "Author Display Format"
567
  msgstr "Yazar Gösterim Formatı"
568
 
569
- #: breadcrumb_navxt_admin.php:680
570
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
571
  msgstr "display_name kullanıcı profili altında diğer kullanıcıların profilindeki seçeneklere karşılık gelen \"Herkes tarafından görülecek ad\" içinde belirtilen adı kullanır."
572
 
573
- #: breadcrumb_navxt_admin.php:686
574
  msgid "Date Template"
575
  msgstr "Tarih Şablonu"
576
 
577
- #: breadcrumb_navxt_admin.php:686
578
  msgid "The template for date breadcrumbs."
579
  msgstr "Tarih breadcrumbs için şablon."
580
 
581
- #: breadcrumb_navxt_admin.php:687
582
  msgid "Date Template (Unlinked)"
583
  msgstr "Tarih Şablonu (Bağlantısız)"
584
 
585
- #: breadcrumb_navxt_admin.php:687
586
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
587
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan tarih breadcrumbs şablonu."
588
 
589
- #: breadcrumb_navxt_admin.php:688
590
  msgid "Search Template"
591
  msgstr "Arama Şablonu"
592
 
593
- #: breadcrumb_navxt_admin.php:688
594
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
595
  msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında kullanılan arama breadcrumbs için bağlantı şablonu."
596
 
597
- #: breadcrumb_navxt_admin.php:689
598
  msgid "Search Template (Unlinked)"
599
  msgstr "Arama Şablonu (Bağlantısız)"
600
 
601
- #: breadcrumb_navxt_admin.php:689
602
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
603
  msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında ve breadcrumb için bağlantı olmadığında kullanılan arama breadcrumbs için bağlantı şablonu."
604
 
605
- #: breadcrumb_navxt_admin.php:690
606
  msgid "404 Title"
607
  msgstr "404 Başlığı"
608
 
609
- #: breadcrumb_navxt_admin.php:691
610
  msgid "404 Template"
611
  msgstr "404 Şablonu"
612
 
613
- #: breadcrumb_navxt_admin.php:691
614
  msgid "The template for 404 breadcrumbs."
615
  msgstr "404 breadcrumbs için şablon."
616
 
617
- #: breadcrumb_navxt_admin.php:697
618
  msgid "Save Changes"
619
  msgstr "Değişiklikleri Kaydet"
620
 
621
- #: includes/mtekk_adminkit.php:211
622
  msgid "Settings"
623
  msgstr "Ayarlar"
624
 
625
- #: includes/mtekk_adminkit.php:281
626
  msgid "Your settings are out of date."
627
  msgstr "Ayarlarınız güncel değil."
628
 
629
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
630
  msgid "Migrate the settings now."
631
  msgstr "Şimdi ayarları taşıyın."
632
 
633
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
634
  msgid "Migrate now."
635
  msgstr "Şimdi taşıyın."
636
 
637
- #: includes/mtekk_adminkit.php:298
638
  msgid "Your plugin install is incomplete."
639
  msgstr "Eklenti kurulumunuz tamamlanmadı."
640
 
641
- #: includes/mtekk_adminkit.php:298
642
  msgid "Load default settings now."
643
  msgstr "Şimdi varsayılan ayarları yükle."
644
 
645
- #: includes/mtekk_adminkit.php:298
646
  msgid "Complete now."
647
  msgstr "Şimdi tamamla."
648
 
649
- #: includes/mtekk_adminkit.php:306
650
  msgid "Your plugin settings are invalid."
651
  msgstr "Eklenti ayarlarınız geçersiz."
652
 
653
- #: includes/mtekk_adminkit.php:306
654
  msgid "Attempt to fix settings now."
655
  msgstr "Şimdi ayarları düzeltmeyi deneyin."
656
 
657
- #: includes/mtekk_adminkit.php:306
658
  msgid "Fix now."
659
  msgstr "Şimdi düzelt."
660
 
661
- #: includes/mtekk_adminkit.php:484
662
  msgid "Settings successfully saved."
663
  msgstr "Ayarlar başarıyla kaydedildi."
664
 
665
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
666
  msgid "Undo the options save."
667
  msgstr "Seçenekleri kaydetmeyi geri al."
668
 
669
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
670
- #: includes/mtekk_adminkit.php:594 includes/mtekk_adminkit.php:618
671
- #: includes/mtekk_adminkit.php:635
672
  msgid "Undo"
673
  msgstr "Geri al"
674
 
675
- #: includes/mtekk_adminkit.php:489
676
  msgid "Some settings were not saved."
677
  msgstr "Bazı ayarlar kaydedilmedi."
678
 
679
- #: includes/mtekk_adminkit.php:490
680
  msgid "The following settings were not saved:"
681
  msgstr "Aşağıdaki ayarları kaydedilmedi:"
682
 
683
- #: includes/mtekk_adminkit.php:495
684
  msgid "Please include this message in your %sbug report%s."
685
  msgstr "Lütfen bu mesajı %sbug report%s içine dahil edin."
686
 
687
- #: includes/mtekk_adminkit.php:495
688
  msgid "Go to the %s support post for your version."
689
  msgstr "Sürümünüz için %s destek yazısına gidin."
690
 
691
- #: includes/mtekk_adminkit.php:594
692
  msgid "Settings successfully imported from the uploaded file."
693
  msgstr "Ayarlar yüklenen dosyadan başarıyla içe aktarıldı."
694
 
695
- #: includes/mtekk_adminkit.php:594
696
  msgid "Undo the options import."
697
  msgstr "Seçenekleri içe aktarmayı geri al."
698
 
699
- #: includes/mtekk_adminkit.php:599
700
  msgid "Importing settings from file failed."
701
  msgstr "Ayarları dosyadan içe aktarma başarısız oldu."
702
 
703
- #: includes/mtekk_adminkit.php:618
704
  msgid "Settings successfully reset to the default values."
705
  msgstr "Ayarlar varsayılan değerlere başarıyla sıfırlandı."
706
 
707
- #: includes/mtekk_adminkit.php:618
708
  msgid "Undo the options reset."
709
  msgstr "Seçenekleri sıfırlamayı geri al."
710
 
711
- #: includes/mtekk_adminkit.php:635
712
  msgid "Settings successfully undid the last operation."
713
  msgstr "Ayarlar son işleme başarıyla getirildi."
714
 
715
- #: includes/mtekk_adminkit.php:635
716
  msgid "Undo the last undo operation."
717
  msgstr "Son geri alma işlemini geri al."
718
 
719
- #: includes/mtekk_adminkit.php:670
720
  msgid "Settings successfully migrated."
721
  msgstr "Ayarlar başarıyla taşındı."
722
 
723
- #: includes/mtekk_adminkit.php:677
724
  msgid "Default settings successfully installed."
725
  msgstr "Varsayılan ayarlar başarıyla yüklendi."
726
 
727
- #: includes/mtekk_adminkit.php:778
728
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
729
  msgstr "Ayarları bir XML dosyasından içe aktar, mevcut ayarları bir XML dosyasına aktar veya varsayılan ayarlara sıfırla."
730
 
731
- #: includes/mtekk_adminkit.php:781
732
  msgid "Settings File"
733
  msgstr "Ayarlar Dosyası"
734
 
735
- #: includes/mtekk_adminkit.php:784
736
  msgid "Select a XML settings file to upload and import settings from."
737
  msgstr "Ayarları yüklemek ve içe aktarmak için bir XML ayarlar dosyası seçin."
738
 
739
- #: breadcrumb_navxt_class.php:272
740
  msgid "Page %htitle%"
741
  msgstr "Sayfa %htitle%"
742
 
743
- #: breadcrumb_navxt_class.php:296
744
  msgid "404"
745
  msgstr "404"
746
 
747
- #: breadcrumb_navxt_class.php:301
748
  msgid "Search results for &#39;%htitle%&#39;"
749
  msgstr "Arama sonuçları: &#39;%htitle%&#39;"
750
 
751
- #: breadcrumb_navxt_class.php:316
752
  msgid "Articles by: %htitle%"
753
  msgstr "Yazar: %htitle%"
2
  # This file is distributed under the same license as the Breadcrumb NavXT package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2013-11-21 02:03:37+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: GlotPress/0.1\n"
11
  "Project-Id-Version: Breadcrumb NavXT\n"
12
 
13
+ #: class.bcn_network_admin.php:377
14
+ msgid "Breadcrumb NavXT Network Settings"
15
+ msgstr "Breadcrumb NavXT Ağ Ayarları"
16
+
17
+ msgid "Adds a breadcrumb navigation showing the visitor&#39;s path to their current location. For details on how to use this plugin visit <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
18
+ msgstr "Ziyaretçinin mevcut konumundaki yolunu gösteren bir breadcrumb navigasyonu ekler. Bu eklentinin nasıl kullanılacağı hakkında ayrıntılı bilgi için <a href=\"http://mtekk.us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a> sayfasını ziyaret edin."
19
+
20
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
21
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
22
  msgid "The hierarchy which the breadcrumb trail will show. Note that the \"Post Parent\" option may require an additional plugin to behave as expected since this is a non-hierarchical post type."
23
  msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi. Bu hiyerarşik olmayan bir yazı tipi olduğundan dolayı beklenileni sağlaması için \"Post Parent\" seçeneğinin ilave bir eklenti gerektirebileceğini unutmayın."
24
 
25
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
26
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
27
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
28
+ #: class.bcn_breadcrumb_trail.php:99
29
  msgid "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
30
  msgstr "<a title=\"Git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
31
 
32
+ #: class.bcn_breadcrumb_trail.php:109
33
  msgid "Search results for &#39;<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
34
  msgstr "Arama sonuçları: &#39;<a title=\"Arama sonuçlarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
35
 
36
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
37
  msgid "A collection of settings most likely to be modified are located under this tab."
38
  msgstr "Değiştirilmesi muhtemel ayarların bir bölümü bu sekme altında yer almaktadır."
39
 
40
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
41
  msgid "Title Length"
42
  msgstr "Başlık Uzunluğu"
43
 
44
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
45
  msgid "Limit the length of the breadcrumb title."
46
  msgstr "Breadcrumb başlık uzunluğunu sınırla."
47
 
48
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
49
  msgid "Mainsite Breadcrumb"
50
  msgstr "Anasite Breadcrumb"
51
 
52
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
53
  msgid "The settings for all post types (Posts, Pages, and Custom Post Types) are located under this tab."
54
  msgstr "Tüm yazı tipleri (Yazılar, Sayfalar ve Özel Yazı Türleri) için ayarlar bu sekme altında yer almaktadır."
55
 
56
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
57
  msgid "Post Types"
58
  msgstr "Yazı Tipleri"
59
 
60
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
61
  msgid "Post Hierarchy Display"
62
  msgstr "Yazı Hiyerarşi Görünümü"
63
 
64
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
65
  msgid "Post Hierarchy"
66
  msgstr "Yazı Hiyerarşisi"
67
 
68
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
69
  msgid "%s Hierarchy Display"
70
  msgstr "%s Hiyerarşisi Görünümü"
71
 
72
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
73
  msgid "Post Formats"
74
  msgstr "Yazı Biçimleri"
75
 
76
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
77
  msgid "Max Title Length: "
78
  msgstr "Maksimum Başlık Uzunluğu: "
79
 
80
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
81
  msgid "Posts"
82
  msgstr "Yazılar"
83
 
84
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
85
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
86
  msgid "Post Parent"
87
  msgstr "Yazı Ebeveyni"
88
 
89
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
90
  msgid "The hierarchy which the breadcrumb trail will show."
91
  msgstr "Breadcrumb kuyruğunda gösterilecek hiyerarşi."
92
 
93
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
94
  msgid "%s Hierarchy"
95
  msgstr "%s Hiyerarşisi"
96
 
97
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
98
  msgid "The settings for all taxonomies (including Categories, Tags, and custom taxonomies) are located under this tab."
99
  msgstr "Tüm sınıflandırmalar için (Kategoriler, Etiketler, ve özel sınıflandırmalar dahil) ayarlar bu sekme altında yer almaktadır."
100
 
101
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
102
  msgid "Taxonomies"
103
  msgstr "Sınıflandırmalar"
104
 
105
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
106
  msgid "Post Format Template"
107
  msgstr "Yazı Biçim Şablonu"
108
 
109
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
110
  msgid "The template for post format breadcrumbs."
111
  msgstr "Yazı biçimi breadcrumbs için şablon."
112
 
113
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
114
  msgid "Post Format Template (Unlinked)"
115
  msgstr "Yazı Biçim Şablonu (Bağlantısız)"
116
 
117
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
118
  msgid "The template for post_format breadcrumbs, used only when the breadcrumb is not linked."
119
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan post_format breadcrumbs şablonu."
120
 
121
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
122
  msgid "The settings for author and date archives, searches, and 404 pages are located under this tab."
123
  msgstr "Yazar ve tarih arşivleri, arama ve 404 sayfaları için ayarlar bu sekme altında yer almaktadır."
124
 
125
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
126
  msgid "Author Archives"
127
  msgstr "Yazar Arşivleri"
128
 
129
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
130
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
131
  msgstr "<a title=\" %title% etiket arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
132
 
133
+ #: class.bcn_breadcrumb_trail.php:124
134
  msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
135
  msgstr "Yazar: <a title=\"Yazılarının ilk sayfasına git %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
136
 
137
+ #: class.bcn_breadcrumb_trail.php:131
138
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
139
  msgstr "<a title=\" %title% kategori arşivlerine git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
140
 
141
+ #: class.bcn_breadcrumb_trail.php:135
142
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
143
  msgstr "<a title=\" %title% arşivlere git.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
144
 
145
+ #: includes/class.mtekk_adminkit.php:296
146
  msgid "Your settings are for a newer version."
147
  msgstr "Ayarlarınız daha yeni bir sürümü için."
148
 
149
+ #: class.bcn_widget.php:96
150
  msgid "Text to show before the trail:"
151
  msgstr "Kuyruktan önce gösterilecek metin"
152
 
153
+ #: class.bcn_widget.php:103
154
  msgid "Schema.org"
155
  msgstr "Schema.org"
156
 
157
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
158
  msgid "Go to the Breadcrumb NavXT translation project."
159
  msgstr "Breadcrumb NavXT çeviri projesine gidin."
160
 
161
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
162
+ #: class.bcn_network_admin.php:25
163
  msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
164
  msgstr "PHP sürümünüz çok eski, lütfen yeni bir sürüme güncelleyin. Sürümünüz %1$s, Breadcrumb NavXT için %2$s sürümü gerekir"
165
 
166
+ #: class.bcn_widget.php:33
167
  msgid "Adds a breadcrumb trail to your sidebar"
168
  msgstr "Kenar çubuğunuza bir breadcrumb kuyruğu ekler"
169
 
170
+ #: class.bcn_widget.php:92
171
  msgid "Title:"
172
  msgstr "Başlık:"
173
 
174
+ #: class.bcn_widget.php:100
175
  msgid "Output trail as:"
176
  msgstr "Kuyruk çıktısı olarak:"
177
 
178
+ #: class.bcn_widget.php:102
179
  msgid "List"
180
  msgstr "Liste"
181
 
182
+ #: class.bcn_widget.php:104
183
  msgid "Plain"
184
  msgstr "Düz"
185
 
186
+ #: class.bcn_widget.php:109
187
  msgid "Link the breadcrumbs"
188
  msgstr "Breadcrumbs bağlantısı"
189
 
190
+ #: class.bcn_widget.php:111
191
  msgid "Reverse the order of the trail"
192
  msgstr "Kuyruk sırasını tersine çevir"
193
 
194
+ #: class.bcn_widget.php:113
195
  msgid "Hide the trail on the front page"
196
  msgstr "Ön sayfada kuyruğu gizle"
197
 
198
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
199
  msgid "Insufficient privileges to proceed."
200
  msgstr "Devam etmek için yetersiz yetki."
201
 
202
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
203
  msgid "Tips for the settings are located below select options."
204
  msgstr "Ayarlar için ipuçları seçeneklerin altında yer almaktadır."
205
 
206
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
207
  msgid "Resources"
208
  msgstr "Kaynaklar"
209
 
210
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
211
  msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
212
  msgstr "%sEğitim ve İpuçları%s: Yazarın web sitesinde çeşitli kılavuzlar, eğitim ve ipuçlarını bulabilirsiniz."
213
 
214
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
215
  msgid "Go to the Breadcrumb NavXT tag archive."
216
  msgstr "Breadcrumb NavXT etiket arşivine gidin."
217
 
218
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
219
  msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
220
  msgstr "%sÇevrimiçi Belgeler%s: Daha detaylı teknik bilgiler için belgelere göz atın."
221
 
222
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
223
  msgid "Go to the Breadcrumb NavXT online documentation"
224
  msgstr "Breadcrumb NavXT çevrimiçi belgelere gidin"
225
 
226
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
227
  msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
228
  msgstr "%sBir Hata Bildir%s: Eğer bir hata bulduğunuzu düşünüyorsanız, WordPress sürümünüz ve hatanın yeniden nasıl oluşturulacağına ilişkin ayrıntıları ekleyin."
229
 
230
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
231
  msgid "Go to the Breadcrumb NavXT support post for your version."
232
  msgstr "Sürümünüz için Breadcrumb NavXT destek yazısına gidin."
233
 
234
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
235
  msgid "Giving Back"
236
  msgstr "İade"
237
 
238
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
239
  msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
240
  msgstr "%sBağış%s: Breadcrumb NavXT sevdiniz ve geliştirilmesine yardımcı mı olmak istiyor sunuz? Yazara bir bira satın almayı düşünün."
241
 
242
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
243
  msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
244
  msgstr "Breadcrumb NavXT'ye bir bağış yapmak için PayPal'a gidin."
245
 
246
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
247
  msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
248
  msgstr "%sTercüme et%s: Dilinizi mevcut değil mi? Çevirisi için John Havlik ile iletişime geçin."
249
 
250
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
251
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
252
+ #: class.bcn_network_admin.php:390
253
  msgid "General"
254
  msgstr "Genel"
255
 
256
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
257
  msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
258
  msgstr "Bu sayfadaki ayarların etkili olabilmesi için, Breadcrumb NavXT bileşenini kullanmanız veya temanıza aşağıdaki kod bölümlerinden yerleştirmeniz gerekir."
259
 
260
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
261
  msgid "Breadcrumb trail with separators"
262
  msgstr "Ayırıcılar ile Breadcrumb kuyruğu"
263
 
264
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
265
  msgid "Breadcrumb trail in list form"
266
  msgstr "Liste biçiminde Breadcrumb kuyruğu"
267
 
268
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
269
  msgid "Quick Start"
270
  msgstr "Hızlı Başlangıç"
271
 
272
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
273
  msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
274
  msgstr "Yukarıda Hızlı Başlat bölümündeki kodu kullanarak, alttaki CSS breadcumb kuyruğunu şekillendirmeye temel olarak kullanılabilirsiniz."
275
 
276
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
277
  msgid "Styling"
278
  msgstr "Şekillendirme"
279
 
280
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
281
  msgid "Import/Export/Reset"
282
  msgstr "İçe aktar/Dışa aktar/Sıfırla"
283
 
284
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
285
+ #: includes/class.mtekk_adminkit.php:792
286
  msgid "Import"
287
  msgstr "İçe aktar"
288
 
289
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
290
+ #: includes/class.mtekk_adminkit.php:793
291
  msgid "Export"
292
  msgstr "Dışa aktar"
293
 
294
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
295
+ #: includes/class.mtekk_adminkit.php:794
296
  msgid "Reset"
297
  msgstr "Sıfırla"
298
 
299
+ #: class.bcn_admin.php:309
300
  msgid "Breadcrumb NavXT Settings"
301
  msgstr "Breadcrumb NavXT Ayarları"
302
 
303
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
304
  msgid "Breadcrumb Separator"
305
  msgstr "Breadcrumb Ayırıcı"
306
 
307
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
308
  msgid "Placed in between each breadcrumb."
309
  msgstr "Her breadcrumb arasına yerleştirilir."
310
 
311
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
312
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
313
  msgid "Home Breadcrumb"
314
  msgstr "Anasayfa Breadcrumb"
315
 
316
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
317
  msgid "Place the home breadcrumb in the trail."
318
  msgstr "Breadcrumb kuyruğuna anasayfa yerleştirin."
319
 
320
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
321
  msgid "Home Template"
322
  msgstr "Anasayfa Şablonu"
323
 
324
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
325
  msgid "The template for the home breadcrumb."
326
  msgstr "Anasayfa breadcrumb için şablon."
327
 
328
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
329
  msgid "Home Template (Unlinked)"
330
  msgstr "Anasayfa Şablonu (Bağlantısız)"
331
 
332
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
333
  msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
334
  msgstr "Breadcrumb için bağlantı olmadığında kullanılan breadcrumb anasayfa şablonu."
335
 
336
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
337
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
338
  msgid "Blog Breadcrumb"
339
  msgstr "Blog Breadcrumb"
340
 
341
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
342
  msgid "Place the blog breadcrumb in the trail."
343
  msgstr "Breadcrumb kuyruğuna blog yerleştirin."
344
 
345
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
346
  msgid "Blog Template"
347
  msgstr "Blog Şablonu"
348
 
349
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
350
  msgid "The template for the blog breadcrumb, used only in static front page environments."
351
  msgstr "Sadece, statik ön sayfa ortamında kullanılan blog breadcrumb şablonu."
352
 
353
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
354
  msgid "Blog Template (Unlinked)"
355
  msgstr "Blog Şablonu (Bağlantısız)"
356
 
357
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
358
  msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
359
  msgstr "Statik ön sayfa ortamında ve breadcrumb için bağlantı olmadığında kullanılan blog breadcrumb şablonu."
360
 
361
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
362
  msgid "Main Site Breadcrumb"
363
  msgstr "Ana Site Breadcrumb"
364
 
365
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
366
  msgid "Place the main site home breadcrumb in the trail in an multisite setup."
367
  msgstr "Çoklu site kurulumlarında ana site anasayfa breadcrumb bağlantısını kuyruğa yerleştirir."
368
 
369
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
370
  msgid "Main Site Home Template"
371
  msgstr "Ana Site Anasayfa Şablonu"
372
 
373
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
374
  msgid "The template for the main site home breadcrumb, used only in multisite environments."
375
  msgstr "Çoklu site ortamında kullanılan breadcrumb ana site anasayfa şablonu."
376
 
377
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
378
  msgid "Main Site Home Template (Unlinked)"
379
  msgstr "Ana Site Anasayfa Şablonu (Bağlantısız)"
380
 
381
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
382
  msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
383
  msgstr "Sadece, çoklu site ortamlarında ve breadcrumb için bağlantı olmadığında kullanılan ana site anasayfa breadcrumb şablonu."
384
 
385
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
386
  msgid "Current Item"
387
  msgstr "Mevcut Öğe"
388
 
389
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
390
  msgid "Link Current Item"
391
  msgstr "Mevcut Öğeye Bağlantı"
392
 
393
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
394
  msgid "Yes"
395
  msgstr "Evet"
396
 
397
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
398
  msgid "Paged Breadcrumb"
399
  msgstr "Sayfalanmış Breadcrumb"
400
 
401
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
402
  msgid "Include the paged breadcrumb in the breadcrumb trail."
403
  msgstr "Breadcrumb kuyruğuna sayfalı breadcrumb ekleyin."
404
 
405
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
406
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
407
  msgstr "Kullanıcının ilk önce sayfalanmış yazı/sayfa yerine bir sayfada olduğunu belirtir."
408
 
409
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
410
  msgid "Paged Template"
411
  msgstr "Sayfalanmış Şablon"
412
 
413
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
414
  msgid "The template for paged breadcrumbs."
415
  msgstr "Sayfalanmış breadcrumbs için şablon."
416
 
417
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
418
  msgid "Post Template"
419
  msgstr "Yazı Şablonu"
420
 
421
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
422
  msgid "The template for post breadcrumbs."
423
  msgstr "Yazı breadcrumbs için şablon."
424
 
425
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
426
  msgid "Post Template (Unlinked)"
427
  msgstr "Yazı Şablonu (Bağlantısız)"
428
 
429
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
430
  msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
431
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazı breadcrumbs şablonu."
432
 
433
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
434
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
435
  msgstr "Breadcrumb kuyruğunda yazı için rehber sınıflandırması göster."
436
 
437
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
438
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
439
  msgid "Categories"
440
  msgstr "Kategoriler"
441
 
442
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
443
  msgid "Dates"
444
  msgstr "Tarihler"
445
 
446
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
447
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
448
  msgid "Tags"
449
  msgstr "Etiketler"
450
 
451
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
452
  msgid "Pages"
453
  msgstr "Sayfalar"
454
 
455
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
456
  msgid "Page Template"
457
  msgstr "Sayfa Şablonu"
458
 
459
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
460
  msgid "The template for page breadcrumbs."
461
  msgstr "Sayfa breadcrumbs için şablon."
462
 
463
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
464
  msgid "Page Template (Unlinked)"
465
  msgstr "Sayfa Şablonu (Bağlantısız)"
466
 
467
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
468
  msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
469
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan sayfa breadcrumbs şablonu."
470
 
471
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
472
  msgid "Attachment Template"
473
  msgstr "Ek Şablonu"
474
 
475
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
476
  msgid "The template for attachment breadcrumbs."
477
  msgstr "Ek breadcrumbs için şablon."
478
 
479
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
480
  msgid "Attachment Template (Unlinked)"
481
  msgstr "Ek Şablonu (Bağlantısız)"
482
 
483
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
484
  msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
485
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan ek breadcrumbs şablonu."
486
 
487
+ #: breadcrumb-navxt.php:247
488
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
489
  msgstr "<a title=\"Git %title%.\" href=\"%link%\">%htitle%</a>"
490
 
491
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
492
  msgid "%htitle%"
493
  msgstr "%htitle%"
494
 
495
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
496
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
497
  msgid "%s Template"
498
  msgstr "%s Şablonu"
499
 
500
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
501
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
502
  msgid "The template for %s breadcrumbs."
503
  msgstr "%s breadcrumbs için şablon."
504
 
505
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
506
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
507
  msgid "%s Template (Unlinked)"
508
  msgstr "%s Şablonu (Bağlantısız)"
509
 
510
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
511
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
512
  msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
513
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan %s breadcrumbs şablonu."
514
 
515
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
516
  msgid "%s Root Page"
517
  msgstr "%s Kök Sayfası"
518
 
519
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
520
  msgid "&mdash; Select &mdash;"
521
  msgstr "&mdash; Seç &mdash;"
522
 
523
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
524
  msgid "%s Archive Display"
525
  msgstr "%s Arşiv Görünümü"
526
 
527
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
528
  msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
529
  msgstr "Breadcrumb kuyruğunda %s yazı tipi arşivleri için breadcrumb göster."
530
 
531
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
532
  msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
533
  msgstr "Breadcrumb kuyruğunda %s için rehber sınıflandırması göster."
534
 
535
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
536
  msgid "Category Template"
537
  msgstr "Kategori Şablonu"
538
 
539
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
540
  msgid "The template for category breadcrumbs."
541
  msgstr "Kategori breadcrumbs için şablon."
542
 
543
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
544
  msgid "Category Template (Unlinked)"
545
  msgstr "Kategori Şablonu (Bağlantısız)"
546
 
547
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
548
  msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
549
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan kategori breadcrumbs şablonu."
550
 
551
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
552
  msgid "Tag Template"
553
  msgstr "Etiket Şablonu"
554
 
555
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
556
  msgid "The template for tag breadcrumbs."
557
  msgstr "Etiket breadcrumbs için şablon."
558
 
559
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
560
  msgid "Tag Template (Unlinked)"
561
  msgstr "Etiket Şablonu (Bağlantısız)"
562
 
563
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
564
  msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
565
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan etiket breadcrumbs şablonu."
566
 
567
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
568
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
569
  msgid "Miscellaneous"
570
  msgstr "Çeşitli"
571
 
572
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
573
  msgid "Author Template"
574
  msgstr "Yazar Şablonu"
575
 
576
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
577
  msgid "The template for author breadcrumbs."
578
  msgstr "Yazar breadcrumbs için şablon."
579
 
580
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
581
  msgid "Author Template (Unlinked)"
582
  msgstr "Yazar Şablonu (Bağlantısız)"
583
 
584
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
585
  msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
586
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan yazar breadcrumbs şablonu."
587
 
588
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
589
  msgid "Author Display Format"
590
  msgstr "Yazar Gösterim Formatı"
591
 
592
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
593
  msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
594
  msgstr "display_name kullanıcı profili altında diğer kullanıcıların profilindeki seçeneklere karşılık gelen \"Herkes tarafından görülecek ad\" içinde belirtilen adı kullanır."
595
 
596
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
597
  msgid "Date Template"
598
  msgstr "Tarih Şablonu"
599
 
600
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
601
  msgid "The template for date breadcrumbs."
602
  msgstr "Tarih breadcrumbs için şablon."
603
 
604
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
605
  msgid "Date Template (Unlinked)"
606
  msgstr "Tarih Şablonu (Bağlantısız)"
607
 
608
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
609
  msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
610
  msgstr "Sadece, breadcrumb için bağlantı olmadığında kullanılan tarih breadcrumbs şablonu."
611
 
612
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
613
  msgid "Search Template"
614
  msgstr "Arama Şablonu"
615
 
616
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
617
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
618
  msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında kullanılan arama breadcrumbs için bağlantı şablonu."
619
 
620
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
621
  msgid "Search Template (Unlinked)"
622
  msgstr "Arama Şablonu (Bağlantısız)"
623
 
624
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
625
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
626
  msgstr "Sadece, arama sonuçları birkaç sayfaya yayıldığında ve breadcrumb için bağlantı olmadığında kullanılan arama breadcrumbs için bağlantı şablonu."
627
 
628
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
629
  msgid "404 Title"
630
  msgstr "404 Başlığı"
631
 
632
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
633
  msgid "404 Template"
634
  msgstr "404 Şablonu"
635
 
636
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
637
  msgid "The template for 404 breadcrumbs."
638
  msgstr "404 breadcrumbs için şablon."
639
 
640
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
641
  msgid "Save Changes"
642
  msgstr "Değişiklikleri Kaydet"
643
 
644
+ #: includes/class.mtekk_adminkit.php:217
645
  msgid "Settings"
646
  msgstr "Ayarlar"
647
 
648
+ #: includes/class.mtekk_adminkit.php:287
649
  msgid "Your settings are out of date."
650
  msgstr "Ayarlarınız güncel değil."
651
 
652
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
653
  msgid "Migrate the settings now."
654
  msgstr "Şimdi ayarları taşıyın."
655
 
656
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
657
  msgid "Migrate now."
658
  msgstr "Şimdi taşıyın."
659
 
660
+ #: includes/class.mtekk_adminkit.php:304
661
  msgid "Your plugin install is incomplete."
662
  msgstr "Eklenti kurulumunuz tamamlanmadı."
663
 
664
+ #: includes/class.mtekk_adminkit.php:304
665
  msgid "Load default settings now."
666
  msgstr "Şimdi varsayılan ayarları yükle."
667
 
668
+ #: includes/class.mtekk_adminkit.php:304
669
  msgid "Complete now."
670
  msgstr "Şimdi tamamla."
671
 
672
+ #: includes/class.mtekk_adminkit.php:312
673
  msgid "Your plugin settings are invalid."
674
  msgstr "Eklenti ayarlarınız geçersiz."
675
 
676
+ #: includes/class.mtekk_adminkit.php:312
677
  msgid "Attempt to fix settings now."
678
  msgstr "Şimdi ayarları düzeltmeyi deneyin."
679
 
680
+ #: includes/class.mtekk_adminkit.php:312
681
  msgid "Fix now."
682
  msgstr "Şimdi düzelt."
683
 
684
+ #: includes/class.mtekk_adminkit.php:490
685
  msgid "Settings successfully saved."
686
  msgstr "Ayarlar başarıyla kaydedildi."
687
 
688
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
689
  msgid "Undo the options save."
690
  msgstr "Seçenekleri kaydetmeyi geri al."
691
 
692
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
693
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
694
+ #: includes/class.mtekk_adminkit.php:641
695
  msgid "Undo"
696
  msgstr "Geri al"
697
 
698
+ #: includes/class.mtekk_adminkit.php:495
699
  msgid "Some settings were not saved."
700
  msgstr "Bazı ayarlar kaydedilmedi."
701
 
702
+ #: includes/class.mtekk_adminkit.php:496
703
  msgid "The following settings were not saved:"
704
  msgstr "Aşağıdaki ayarları kaydedilmedi:"
705
 
706
+ #: includes/class.mtekk_adminkit.php:501
707
  msgid "Please include this message in your %sbug report%s."
708
  msgstr "Lütfen bu mesajı %sbug report%s içine dahil edin."
709
 
710
+ #: includes/class.mtekk_adminkit.php:501
711
  msgid "Go to the %s support post for your version."
712
  msgstr "Sürümünüz için %s destek yazısına gidin."
713
 
714
+ #: includes/class.mtekk_adminkit.php:600
715
  msgid "Settings successfully imported from the uploaded file."
716
  msgstr "Ayarlar yüklenen dosyadan başarıyla içe aktarıldı."
717
 
718
+ #: includes/class.mtekk_adminkit.php:600
719
  msgid "Undo the options import."
720
  msgstr "Seçenekleri içe aktarmayı geri al."
721
 
722
+ #: includes/class.mtekk_adminkit.php:605
723
  msgid "Importing settings from file failed."
724
  msgstr "Ayarları dosyadan içe aktarma başarısız oldu."
725
 
726
+ #: includes/class.mtekk_adminkit.php:624
727
  msgid "Settings successfully reset to the default values."
728
  msgstr "Ayarlar varsayılan değerlere başarıyla sıfırlandı."
729
 
730
+ #: includes/class.mtekk_adminkit.php:624
731
  msgid "Undo the options reset."
732
  msgstr "Seçenekleri sıfırlamayı geri al."
733
 
734
+ #: includes/class.mtekk_adminkit.php:641
735
  msgid "Settings successfully undid the last operation."
736
  msgstr "Ayarlar son işleme başarıyla getirildi."
737
 
738
+ #: includes/class.mtekk_adminkit.php:641
739
  msgid "Undo the last undo operation."
740
  msgstr "Son geri alma işlemini geri al."
741
 
742
+ #: includes/class.mtekk_adminkit.php:676
743
  msgid "Settings successfully migrated."
744
  msgstr "Ayarlar başarıyla taşındı."
745
 
746
+ #: includes/class.mtekk_adminkit.php:683
747
  msgid "Default settings successfully installed."
748
  msgstr "Varsayılan ayarlar başarıyla yüklendi."
749
 
750
+ #: includes/class.mtekk_adminkit.php:784
751
  msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
752
  msgstr "Ayarları bir XML dosyasından içe aktar, mevcut ayarları bir XML dosyasına aktar veya varsayılan ayarlara sıfırla."
753
 
754
+ #: includes/class.mtekk_adminkit.php:787
755
  msgid "Settings File"
756
  msgstr "Ayarlar Dosyası"
757
 
758
+ #: includes/class.mtekk_adminkit.php:790
759
  msgid "Select a XML settings file to upload and import settings from."
760
  msgstr "Ayarları yüklemek ve içe aktarmak için bir XML ayarlar dosyası seçin."
761
 
762
+ #: class.bcn_breadcrumb_trail.php:82
763
  msgid "Page %htitle%"
764
  msgstr "Sayfa %htitle%"
765
 
766
+ #: class.bcn_breadcrumb_trail.php:106
767
  msgid "404"
768
  msgstr "404"
769
 
770
+ #: class.bcn_breadcrumb_trail.php:111
771
  msgid "Search results for &#39;%htitle%&#39;"
772
  msgstr "Arama sonuçları: &#39;%htitle%&#39;"
773
 
774
+ #: class.bcn_breadcrumb_trail.php:126
775
  msgid "Articles by: %htitle%"
776
  msgstr "Yazar: %htitle%"
languages/breadcrumb-navxt.pot CHANGED
@@ -1,831 +1,858 @@
1
- # Copyright (C) 2013
2
- # This file is distributed under the same license as the package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: \n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
- "POT-Creation-Date: 2013-05-26 00:27:44+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
-
15
- #: breadcrumb_navxt_admin.php:36
16
- msgid ""
17
- "Your PHP version is too old, please upgrade to a newer version. Your version "
18
- "is %1$s, Breadcrumb NavXT requires %2$s"
19
- msgstr ""
20
-
21
- #: breadcrumb_navxt_admin.php:213
22
- msgid "Insufficient privileges to proceed."
23
- msgstr ""
24
-
25
- #: breadcrumb_navxt_admin.php:329
26
- msgid "Tips for the settings are located below select options."
27
- msgstr ""
28
-
29
- #: breadcrumb_navxt_admin.php:330
30
- msgid "Resources"
31
- msgstr ""
32
-
33
- #: breadcrumb_navxt_admin.php:331
34
- msgid ""
35
- "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
36
- "available on the author's website."
37
- msgstr ""
38
-
39
- #: breadcrumb_navxt_admin.php:331
40
- msgid "Go to the Breadcrumb NavXT tag archive."
41
- msgstr ""
42
-
43
- #: breadcrumb_navxt_admin.php:332
44
- msgid ""
45
- "%sOnline Documentation%s: Check out the documentation for more indepth "
46
- "technical information."
47
- msgstr ""
48
-
49
- #: breadcrumb_navxt_admin.php:332
50
- msgid "Go to the Breadcrumb NavXT online documentation"
51
- msgstr ""
52
-
53
- #: breadcrumb_navxt_admin.php:333
54
- msgid ""
55
- "%sReport a Bug%s: If you think you have found a bug, please include your "
56
- "WordPress version and details on how to reproduce the bug."
57
- msgstr ""
58
-
59
- #: breadcrumb_navxt_admin.php:333
60
- msgid "Go to the Breadcrumb NavXT support post for your version."
61
- msgstr ""
62
-
63
- #: breadcrumb_navxt_admin.php:334
64
- msgid "Giving Back"
65
- msgstr ""
66
-
67
- #: breadcrumb_navxt_admin.php:335
68
- msgid ""
69
- "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
70
- "buying the author a beer."
71
- msgstr ""
72
-
73
- #: breadcrumb_navxt_admin.php:335
74
- msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
75
- msgstr ""
76
-
77
- #: breadcrumb_navxt_admin.php:336
78
- msgid ""
79
- "%sTranslate%s: Is your language not available? Contact John Havlik to get "
80
- "translating."
81
- msgstr ""
82
-
83
- #: breadcrumb_navxt_admin.php:336
84
- msgid "Go to the Breadcrumb NavXT translation project."
85
- msgstr ""
86
-
87
- #: breadcrumb_navxt_admin.php:341 breadcrumb_navxt_admin.php:432
88
- #: breadcrumb_navxt_admin.php:433
89
- msgid "General"
90
- msgstr ""
91
-
92
- #: breadcrumb_navxt_admin.php:344
93
- msgid ""
94
- "For the settings on this page to take effect, you must either use the "
95
- "included Breadcrumb NavXT widget, or place either of the code sections below "
96
- "into your theme."
97
- msgstr ""
98
-
99
- #: breadcrumb_navxt_admin.php:345
100
- msgid "Breadcrumb trail with separators"
101
- msgstr ""
102
-
103
- #: breadcrumb_navxt_admin.php:351
104
- msgid "Breadcrumb trail in list form"
105
- msgstr ""
106
-
107
- #: breadcrumb_navxt_admin.php:360
108
- msgid "Quick Start"
109
- msgstr ""
110
-
111
- #: breadcrumb_navxt_admin.php:363
112
- msgid ""
113
- "Using the code from the Quick Start section above, the following CSS can be "
114
- "used as base for styling your breadcrumb trail."
115
- msgstr ""
116
-
117
- #: breadcrumb_navxt_admin.php:375
118
- msgid "Styling"
119
- msgstr ""
120
-
121
- #: breadcrumb_navxt_admin.php:381
122
- msgid "Import/Export/Reset"
123
- msgstr ""
124
-
125
- #: breadcrumb_navxt_admin.php:405 includes/mtekk_adminkit.php:786
126
- msgid "Import"
127
- msgstr ""
128
-
129
- #: breadcrumb_navxt_admin.php:406 includes/mtekk_adminkit.php:787
130
- msgid "Export"
131
- msgstr ""
132
-
133
- #: breadcrumb_navxt_admin.php:407 includes/mtekk_adminkit.php:788
134
- msgid "Reset"
135
- msgstr ""
136
-
137
- #: breadcrumb_navxt_admin.php:420
138
- msgid "Breadcrumb NavXT Settings"
139
- msgstr ""
140
-
141
- #: breadcrumb_navxt_admin.php:432
142
- msgid ""
143
- "A collection of settings most likely to be modified are located under this "
144
- "tab."
145
- msgstr ""
146
-
147
- #: breadcrumb_navxt_admin.php:436
148
- msgid "Breadcrumb Separator"
149
- msgstr ""
150
-
151
- #: breadcrumb_navxt_admin.php:436
152
- msgid "Placed in between each breadcrumb."
153
- msgstr ""
154
-
155
- #: breadcrumb_navxt_admin.php:440
156
- msgid "Title Length"
157
- msgstr ""
158
-
159
- #: breadcrumb_navxt_admin.php:445
160
- msgid "Limit the length of the breadcrumb title."
161
- msgstr ""
162
-
163
- #: breadcrumb_navxt_admin.php:450
164
- msgid "Max Title Length: "
165
- msgstr ""
166
-
167
- #: breadcrumb_navxt_admin.php:461
168
- msgid "Current Item"
169
- msgstr ""
170
-
171
- #: breadcrumb_navxt_admin.php:464
172
- msgid "Link Current Item"
173
- msgstr ""
174
-
175
- #: breadcrumb_navxt_admin.php:464
176
- msgid "Yes"
177
- msgstr ""
178
-
179
- #: breadcrumb_navxt_admin.php:465
180
- msgid "Paged Breadcrumb"
181
- msgstr ""
182
-
183
- #: breadcrumb_navxt_admin.php:465
184
- msgid "Include the paged breadcrumb in the breadcrumb trail."
185
- msgstr ""
186
-
187
- #: breadcrumb_navxt_admin.php:465
188
- msgid ""
189
- "Indicates that the user is on a page other than the first on paginated posts/"
190
- "pages."
191
- msgstr ""
192
-
193
- #: breadcrumb_navxt_admin.php:466
194
- msgid "Paged Template"
195
- msgstr ""
196
-
197
- #: breadcrumb_navxt_admin.php:466
198
- msgid "The template for paged breadcrumbs."
199
- msgstr ""
200
-
201
- #: breadcrumb_navxt_admin.php:470 breadcrumb_navxt_admin.php:473
202
- msgid "Home Breadcrumb"
203
- msgstr ""
204
-
205
- #: breadcrumb_navxt_admin.php:473
206
- msgid "Place the home breadcrumb in the trail."
207
- msgstr ""
208
-
209
- #: breadcrumb_navxt_admin.php:474
210
- msgid "Home Template"
211
- msgstr ""
212
-
213
- #: breadcrumb_navxt_admin.php:474
214
- msgid "The template for the home breadcrumb."
215
- msgstr ""
216
-
217
- #: breadcrumb_navxt_admin.php:475
218
- msgid "Home Template (Unlinked)"
219
- msgstr ""
220
-
221
- #: breadcrumb_navxt_admin.php:475
222
- msgid ""
223
- "The template for the home breadcrumb, used when the breadcrumb is not linked."
224
- msgstr ""
225
-
226
- #: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:482
227
- msgid "Blog Breadcrumb"
228
- msgstr ""
229
-
230
- #: breadcrumb_navxt_admin.php:482
231
- msgid "Place the blog breadcrumb in the trail."
232
- msgstr ""
233
-
234
- #: breadcrumb_navxt_admin.php:483
235
- msgid "Blog Template"
236
- msgstr ""
237
-
238
- #: breadcrumb_navxt_admin.php:483
239
- msgid ""
240
- "The template for the blog breadcrumb, used only in static front page "
241
- "environments."
242
- msgstr ""
243
-
244
- #: breadcrumb_navxt_admin.php:484
245
- msgid "Blog Template (Unlinked)"
246
- msgstr ""
247
-
248
- #: breadcrumb_navxt_admin.php:484
249
- msgid ""
250
- "The template for the blog breadcrumb, used only in static front page "
251
- "environments and when the breadcrumb is not linked."
252
- msgstr ""
253
-
254
- #: breadcrumb_navxt_admin.php:488
255
- msgid "Mainsite Breadcrumb"
256
- msgstr ""
257
-
258
- #: breadcrumb_navxt_admin.php:491
259
- msgid "Main Site Breadcrumb"
260
- msgstr ""
261
-
262
- #: breadcrumb_navxt_admin.php:491
263
- msgid "Place the main site home breadcrumb in the trail in an multisite setup."
264
- msgstr ""
265
-
266
- #: breadcrumb_navxt_admin.php:492
267
- msgid "Main Site Home Template"
268
- msgstr ""
269
-
270
- #: breadcrumb_navxt_admin.php:492
271
- msgid ""
272
- "The template for the main site home breadcrumb, used only in multisite "
273
- "environments."
274
- msgstr ""
275
-
276
- #: breadcrumb_navxt_admin.php:493
277
- msgid "Main Site Home Template (Unlinked)"
278
- msgstr ""
279
-
280
- #: breadcrumb_navxt_admin.php:493
281
- msgid ""
282
- "The template for the main site home breadcrumb, used only in multisite "
283
- "environments and when the breadcrumb is not linked."
284
- msgstr ""
285
-
286
- #: breadcrumb_navxt_admin.php:500
287
- msgid ""
288
- "The settings for all post types (Posts, Pages, and Custom Post Types) are "
289
- "located under this tab."
290
- msgstr ""
291
-
292
- #: breadcrumb_navxt_admin.php:500
293
- msgid "Post Types"
294
- msgstr ""
295
-
296
- #: breadcrumb_navxt_admin.php:501
297
- msgid "Posts"
298
- msgstr ""
299
-
300
- #: breadcrumb_navxt_admin.php:504
301
- msgid "Post Template"
302
- msgstr ""
303
-
304
- #: breadcrumb_navxt_admin.php:504
305
- msgid "The template for post breadcrumbs."
306
- msgstr ""
307
-
308
- #: breadcrumb_navxt_admin.php:505
309
- msgid "Post Template (Unlinked)"
310
- msgstr ""
311
-
312
- #: breadcrumb_navxt_admin.php:505
313
- msgid ""
314
- "The template for post breadcrumbs, used only when the breadcrumb is not "
315
- "linked."
316
- msgstr ""
317
-
318
- #: breadcrumb_navxt_admin.php:506
319
- msgid "Post Hierarchy Display"
320
- msgstr ""
321
-
322
- #: breadcrumb_navxt_admin.php:506
323
- msgid "Show the taxonomy leading to a post in the breadcrumb trail."
324
- msgstr ""
325
-
326
- #: breadcrumb_navxt_admin.php:510
327
- msgid "Post Hierarchy"
328
- msgstr ""
329
-
330
- #: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:626
331
- msgid "Categories"
332
- msgstr ""
333
-
334
- #: breadcrumb_navxt_admin.php:515
335
- msgid "Dates"
336
- msgstr ""
337
-
338
- #: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:633
339
- msgid "Tags"
340
- msgstr ""
341
-
342
- #: breadcrumb_navxt_admin.php:518 breadcrumb_navxt_admin.php:587
343
- msgid "Post Parent"
344
- msgstr ""
345
-
346
- #: breadcrumb_navxt_admin.php:534 breadcrumb_navxt_admin.php:611
347
- msgid ""
348
- "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
349
- "Parent\" option may require an additional plugin to behave as expected since "
350
- "this is a non-hierarchical post type."
351
- msgstr ""
352
-
353
- #: breadcrumb_navxt_admin.php:538
354
- msgid "Pages"
355
- msgstr ""
356
-
357
- #: breadcrumb_navxt_admin.php:541
358
- msgid "Page Template"
359
- msgstr ""
360
-
361
- #: breadcrumb_navxt_admin.php:541
362
- msgid "The template for page breadcrumbs."
363
- msgstr ""
364
-
365
- #: breadcrumb_navxt_admin.php:542
366
- msgid "Page Template (Unlinked)"
367
- msgstr ""
368
-
369
- #: breadcrumb_navxt_admin.php:542
370
- msgid ""
371
- "The template for page breadcrumbs, used only when the breadcrumb is not "
372
- "linked."
373
- msgstr ""
374
-
375
- #: breadcrumb_navxt_admin.php:543
376
- msgid "Attachment Template"
377
- msgstr ""
378
-
379
- #: breadcrumb_navxt_admin.php:543
380
- msgid "The template for attachment breadcrumbs."
381
- msgstr ""
382
-
383
- #: breadcrumb_navxt_admin.php:544
384
- msgid "Attachment Template (Unlinked)"
385
- msgstr ""
386
-
387
- #: breadcrumb_navxt_admin.php:544
388
- msgid ""
389
- "The template for attachment breadcrumbs, used only when the breadcrumb is "
390
- "not linked."
391
- msgstr ""
392
-
393
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
394
- msgid "%s Template"
395
- msgstr ""
396
-
397
- #: breadcrumb_navxt_admin.php:564 breadcrumb_navxt_admin.php:664
398
- msgid "The template for %s breadcrumbs."
399
- msgstr ""
400
-
401
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
402
- msgid "%s Template (Unlinked)"
403
- msgstr ""
404
-
405
- #: breadcrumb_navxt_admin.php:565 breadcrumb_navxt_admin.php:665
406
- msgid ""
407
- "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
408
- msgstr ""
409
-
410
- #: breadcrumb_navxt_admin.php:570
411
- msgid "%s Root Page"
412
- msgstr ""
413
-
414
- #: breadcrumb_navxt_admin.php:573
415
- msgid "&mdash; Select &mdash;"
416
- msgstr ""
417
-
418
- #: breadcrumb_navxt_admin.php:577
419
- msgid "%s Archive Display"
420
- msgstr ""
421
-
422
- #: breadcrumb_navxt_admin.php:577
423
- msgid ""
424
- "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
425
- msgstr ""
426
-
427
- #: breadcrumb_navxt_admin.php:578
428
- msgid "%s Hierarchy Display"
429
- msgstr ""
430
-
431
- #: breadcrumb_navxt_admin.php:578
432
- msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
433
- msgstr ""
434
-
435
- #: breadcrumb_navxt_admin.php:582
436
- msgid "%s Hierarchy"
437
- msgstr ""
438
-
439
- #: breadcrumb_navxt_admin.php:607
440
- msgid "The hierarchy which the breadcrumb trail will show."
441
- msgstr ""
442
-
443
- #: breadcrumb_navxt_admin.php:625
444
- msgid ""
445
- "The settings for all taxonomies (including Categories, Tags, and custom "
446
- "taxonomies) are located under this tab."
447
- msgstr ""
448
-
449
- #: breadcrumb_navxt_admin.php:625
450
- msgid "Taxonomies"
451
- msgstr ""
452
-
453
- #: breadcrumb_navxt_admin.php:629
454
- msgid "Category Template"
455
- msgstr ""
456
-
457
- #: breadcrumb_navxt_admin.php:629
458
- msgid "The template for category breadcrumbs."
459
- msgstr ""
460
-
461
- #: breadcrumb_navxt_admin.php:630
462
- msgid "Category Template (Unlinked)"
463
- msgstr ""
464
-
465
- #: breadcrumb_navxt_admin.php:630
466
- msgid ""
467
- "The template for category breadcrumbs, used only when the breadcrumb is not "
468
- "linked."
469
- msgstr ""
470
-
471
- #: breadcrumb_navxt_admin.php:636
472
- msgid "Tag Template"
473
- msgstr ""
474
-
475
- #: breadcrumb_navxt_admin.php:636
476
- msgid "The template for tag breadcrumbs."
477
- msgstr ""
478
-
479
- #: breadcrumb_navxt_admin.php:637
480
- msgid "Tag Template (Unlinked)"
481
- msgstr ""
482
-
483
- #: breadcrumb_navxt_admin.php:637
484
- msgid ""
485
- "The template for tag breadcrumbs, used only when the breadcrumb is not "
486
- "linked."
487
- msgstr ""
488
-
489
- #: breadcrumb_navxt_admin.php:640
490
- msgid "Post Formats"
491
- msgstr ""
492
-
493
- #: breadcrumb_navxt_admin.php:643
494
- msgid "Post Format Template"
495
- msgstr ""
496
-
497
- #: breadcrumb_navxt_admin.php:643
498
- msgid "The template for post format breadcrumbs."
499
- msgstr ""
500
-
501
- #: breadcrumb_navxt_admin.php:644
502
- msgid "Post Format Template (Unlinked)"
503
- msgstr ""
504
-
505
- #: breadcrumb_navxt_admin.php:644
506
- msgid ""
507
- "The template for post_format breadcrumbs, used only when the breadcrumb is "
508
- "not linked."
509
- msgstr ""
510
-
511
- #: breadcrumb_navxt_admin.php:674
512
- msgid ""
513
- "The settings for author and date archives, searches, and 404 pages are "
514
- "located under this tab."
515
- msgstr ""
516
-
517
- #: breadcrumb_navxt_admin.php:674 breadcrumb_navxt_admin.php:683
518
- msgid "Miscellaneous"
519
- msgstr ""
520
-
521
- #: breadcrumb_navxt_admin.php:675
522
- msgid "Author Archives"
523
- msgstr ""
524
-
525
- #: breadcrumb_navxt_admin.php:678
526
- msgid "Author Template"
527
- msgstr ""
528
-
529
- #: breadcrumb_navxt_admin.php:678
530
- msgid "The template for author breadcrumbs."
531
- msgstr ""
532
-
533
- #: breadcrumb_navxt_admin.php:679
534
- msgid "Author Template (Unlinked)"
535
- msgstr ""
536
-
537
- #: breadcrumb_navxt_admin.php:679
538
- msgid ""
539
- "The template for author breadcrumbs, used only when the breadcrumb is not "
540
- "linked."
541
- msgstr ""
542
-
543
- #: breadcrumb_navxt_admin.php:680
544
- msgid "Author Display Format"
545
- msgstr ""
546
-
547
- #: breadcrumb_navxt_admin.php:680
548
- msgid ""
549
- "display_name uses the name specified in \"Display name publicly as\" under "
550
- "the user profile the others correspond to options in the user profile."
551
- msgstr ""
552
-
553
- #: breadcrumb_navxt_admin.php:686
554
- msgid "Date Template"
555
- msgstr ""
556
-
557
- #: breadcrumb_navxt_admin.php:686
558
- msgid "The template for date breadcrumbs."
559
- msgstr ""
560
-
561
- #: breadcrumb_navxt_admin.php:687
562
- msgid "Date Template (Unlinked)"
563
- msgstr ""
564
-
565
- #: breadcrumb_navxt_admin.php:687
566
- msgid ""
567
- "The template for date breadcrumbs, used only when the breadcrumb is not "
568
- "linked."
569
- msgstr ""
570
-
571
- #: breadcrumb_navxt_admin.php:688
572
- msgid "Search Template"
573
- msgstr ""
574
-
575
- #: breadcrumb_navxt_admin.php:688
576
- msgid ""
577
- "The anchor template for search breadcrumbs, used only when the search "
578
- "results span several pages."
579
- msgstr ""
580
-
581
- #: breadcrumb_navxt_admin.php:689
582
- msgid "Search Template (Unlinked)"
583
- msgstr ""
584
-
585
- #: breadcrumb_navxt_admin.php:689
586
- msgid ""
587
- "The anchor template for search breadcrumbs, used only when the search "
588
- "results span several pages and the breadcrumb is not linked."
589
- msgstr ""
590
-
591
- #: breadcrumb_navxt_admin.php:690
592
- msgid "404 Title"
593
- msgstr ""
594
-
595
- #: breadcrumb_navxt_admin.php:691
596
- msgid "404 Template"
597
- msgstr ""
598
-
599
- #: breadcrumb_navxt_admin.php:691
600
- msgid "The template for 404 breadcrumbs."
601
- msgstr ""
602
-
603
- #: breadcrumb_navxt_admin.php:697
604
- msgid "Save Changes"
605
- msgstr ""
606
-
607
- #: breadcrumb_navxt_admin.php:742
608
- msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
609
- msgstr ""
610
-
611
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_class.php:63
612
- msgid "%htitle%"
613
- msgstr ""
614
-
615
- #: breadcrumb_navxt_class.php:67 breadcrumb_navxt_class.php:239
616
- #: breadcrumb_navxt_class.php:245 breadcrumb_navxt_class.php:251
617
- #: breadcrumb_navxt_class.php:265 breadcrumb_navxt_class.php:277
618
- #: breadcrumb_navxt_class.php:289
619
- msgid ""
620
- "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
621
- msgstr ""
622
-
623
- #: breadcrumb_navxt_class.php:272
624
- msgid "Page %htitle%"
625
- msgstr ""
626
-
627
- #: breadcrumb_navxt_class.php:296
628
- msgid "404"
629
- msgstr ""
630
-
631
- #: breadcrumb_navxt_class.php:299
632
- msgid ""
633
- "Search results for &#39;<a title=\"Go to the first page of search results "
634
- "for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
635
- msgstr ""
636
-
637
- #: breadcrumb_navxt_class.php:301
638
- msgid "Search results for &#39;%htitle%&#39;"
639
- msgstr ""
640
-
641
- #: breadcrumb_navxt_class.php:304 breadcrumb_navxt_class.php:309
642
- msgid ""
643
- "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%"
644
- "\">%htitle%</a>"
645
- msgstr ""
646
-
647
- #: breadcrumb_navxt_class.php:314
648
- msgid ""
649
- "Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
650
- "\"%link%\" class=\"%type%\">%htitle%</a>"
651
- msgstr ""
652
-
653
- #: breadcrumb_navxt_class.php:316
654
- msgid "Articles by: %htitle%"
655
- msgstr ""
656
-
657
- #: breadcrumb_navxt_class.php:321
658
- msgid ""
659
- "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class="
660
- "\"%type%\">%htitle%</a>"
661
- msgstr ""
662
-
663
- #: breadcrumb_navxt_class.php:325
664
- msgid ""
665
- "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">"
666
- "%htitle%</a>"
667
- msgstr ""
668
-
669
- #: breadcrumb_navxt_widget.php:33
670
- msgid "Adds a breadcrumb trail to your sidebar"
671
- msgstr ""
672
-
673
- #: breadcrumb_navxt_widget.php:92
674
- msgid "Title:"
675
- msgstr ""
676
-
677
- #: breadcrumb_navxt_widget.php:96
678
- msgid "Text to show before the trail:"
679
- msgstr ""
680
-
681
- #: breadcrumb_navxt_widget.php:100
682
- msgid "Output trail as:"
683
- msgstr ""
684
-
685
- #: breadcrumb_navxt_widget.php:102
686
- msgid "List"
687
- msgstr ""
688
-
689
- #: breadcrumb_navxt_widget.php:103
690
- msgid "Schema.org"
691
- msgstr ""
692
-
693
- #: breadcrumb_navxt_widget.php:104
694
- msgid "Plain"
695
- msgstr ""
696
-
697
- #: breadcrumb_navxt_widget.php:109
698
- msgid "Link the breadcrumbs"
699
- msgstr ""
700
-
701
- #: breadcrumb_navxt_widget.php:111
702
- msgid "Reverse the order of the trail"
703
- msgstr ""
704
-
705
- #: breadcrumb_navxt_widget.php:113
706
- msgid "Hide the trail on the front page"
707
- msgstr ""
708
-
709
- #: includes/mtekk_adminkit.php:211
710
- msgid "Settings"
711
- msgstr ""
712
-
713
- #: includes/mtekk_adminkit.php:281
714
- msgid "Your settings are out of date."
715
- msgstr ""
716
-
717
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
718
- msgid "Migrate the settings now."
719
- msgstr ""
720
-
721
- #: includes/mtekk_adminkit.php:281 includes/mtekk_adminkit.php:290
722
- msgid "Migrate now."
723
- msgstr ""
724
-
725
- #: includes/mtekk_adminkit.php:290
726
- msgid "Your settings are for a newer version."
727
- msgstr ""
728
-
729
- #: includes/mtekk_adminkit.php:298
730
- msgid "Your plugin install is incomplete."
731
- msgstr ""
732
-
733
- #: includes/mtekk_adminkit.php:298
734
- msgid "Load default settings now."
735
- msgstr ""
736
-
737
- #: includes/mtekk_adminkit.php:298
738
- msgid "Complete now."
739
- msgstr ""
740
-
741
- #: includes/mtekk_adminkit.php:306
742
- msgid "Your plugin settings are invalid."
743
- msgstr ""
744
-
745
- #: includes/mtekk_adminkit.php:306
746
- msgid "Attempt to fix settings now."
747
- msgstr ""
748
-
749
- #: includes/mtekk_adminkit.php:306
750
- msgid "Fix now."
751
- msgstr ""
752
-
753
- #: includes/mtekk_adminkit.php:484
754
- msgid "Settings successfully saved."
755
- msgstr ""
756
-
757
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
758
- msgid "Undo the options save."
759
- msgstr ""
760
-
761
- #: includes/mtekk_adminkit.php:484 includes/mtekk_adminkit.php:489
762
- #: includes/mtekk_adminkit.php:594 includes/mtekk_adminkit.php:618
763
- #: includes/mtekk_adminkit.php:635
764
- msgid "Undo"
765
- msgstr ""
766
-
767
- #: includes/mtekk_adminkit.php:489
768
- msgid "Some settings were not saved."
769
- msgstr ""
770
-
771
- #: includes/mtekk_adminkit.php:490
772
- msgid "The following settings were not saved:"
773
- msgstr ""
774
-
775
- #: includes/mtekk_adminkit.php:495
776
- msgid "Please include this message in your %sbug report%s."
777
- msgstr ""
778
-
779
- #: includes/mtekk_adminkit.php:495
780
- msgid "Go to the %s support post for your version."
781
- msgstr ""
782
-
783
- #: includes/mtekk_adminkit.php:594
784
- msgid "Settings successfully imported from the uploaded file."
785
- msgstr ""
786
-
787
- #: includes/mtekk_adminkit.php:594
788
- msgid "Undo the options import."
789
- msgstr ""
790
-
791
- #: includes/mtekk_adminkit.php:599
792
- msgid "Importing settings from file failed."
793
- msgstr ""
794
-
795
- #: includes/mtekk_adminkit.php:618
796
- msgid "Settings successfully reset to the default values."
797
- msgstr ""
798
-
799
- #: includes/mtekk_adminkit.php:618
800
- msgid "Undo the options reset."
801
- msgstr ""
802
-
803
- #: includes/mtekk_adminkit.php:635
804
- msgid "Settings successfully undid the last operation."
805
- msgstr ""
806
-
807
- #: includes/mtekk_adminkit.php:635
808
- msgid "Undo the last undo operation."
809
- msgstr ""
810
-
811
- #: includes/mtekk_adminkit.php:670
812
- msgid "Settings successfully migrated."
813
- msgstr ""
814
-
815
- #: includes/mtekk_adminkit.php:677
816
- msgid "Default settings successfully installed."
817
- msgstr ""
818
-
819
- #: includes/mtekk_adminkit.php:778
820
- msgid ""
821
- "Import settings from a XML file, export the current settings to a XML file, "
822
- "or reset to the default settings."
823
- msgstr ""
824
-
825
- #: includes/mtekk_adminkit.php:781
826
- msgid "Settings File"
827
- msgstr ""
828
-
829
- #: includes/mtekk_adminkit.php:784
830
- msgid "Select a XML settings file to upload and import settings from."
831
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2013 Breadcrumb NavXT
2
+ # This file is distributed under the same license as the Breadcrumb NavXT package.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Breadcrumb NavXT 4.9.90\n"
6
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
7
+ "POT-Creation-Date: 2013-09-27 18:23:16+00:00\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+
15
+ #: breadcrumb-navxt.php:35 class.bcn_admin.php:25
16
+ #: class.bcn_network_admin.php:25
17
+ msgid ""
18
+ "Your PHP version is too old, please upgrade to a newer version. Your version "
19
+ "is %1$s, Breadcrumb NavXT requires %2$s"
20
+ msgstr ""
21
+
22
+ #: breadcrumb-navxt.php:247
23
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
24
+ msgstr ""
25
+
26
+ #: breadcrumb-navxt.php:248 class.bcn_breadcrumb.php:63
27
+ msgid "%htitle%"
28
+ msgstr ""
29
+
30
+ #: class.bcn_admin.php:95 class.bcn_network_admin.php:165
31
+ msgid "Insufficient privileges to proceed."
32
+ msgstr ""
33
+
34
+ #: class.bcn_admin.php:220 class.bcn_network_admin.php:288
35
+ msgid "Tips for the settings are located below select options."
36
+ msgstr ""
37
+
38
+ #: class.bcn_admin.php:221 class.bcn_network_admin.php:289
39
+ msgid "Resources"
40
+ msgstr ""
41
+
42
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
43
+ msgid ""
44
+ "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos "
45
+ "available on the author's website."
46
+ msgstr ""
47
+
48
+ #: class.bcn_admin.php:222 class.bcn_network_admin.php:290
49
+ msgid "Go to the Breadcrumb NavXT tag archive."
50
+ msgstr ""
51
+
52
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
53
+ msgid ""
54
+ "%sOnline Documentation%s: Check out the documentation for more indepth "
55
+ "technical information."
56
+ msgstr ""
57
+
58
+ #: class.bcn_admin.php:223 class.bcn_network_admin.php:291
59
+ msgid "Go to the Breadcrumb NavXT online documentation"
60
+ msgstr ""
61
+
62
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
63
+ msgid ""
64
+ "%sReport a Bug%s: If you think you have found a bug, please include your "
65
+ "WordPress version and details on how to reproduce the bug."
66
+ msgstr ""
67
+
68
+ #: class.bcn_admin.php:224 class.bcn_network_admin.php:292
69
+ msgid "Go to the Breadcrumb NavXT support post for your version."
70
+ msgstr ""
71
+
72
+ #: class.bcn_admin.php:225 class.bcn_network_admin.php:293
73
+ msgid "Giving Back"
74
+ msgstr ""
75
+
76
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
77
+ msgid ""
78
+ "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider "
79
+ "buying the author a beer."
80
+ msgstr ""
81
+
82
+ #: class.bcn_admin.php:226 class.bcn_network_admin.php:294
83
+ msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
84
+ msgstr ""
85
+
86
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
87
+ msgid ""
88
+ "%sTranslate%s: Is your language not available? Contact John Havlik to get "
89
+ "translating."
90
+ msgstr ""
91
+
92
+ #: class.bcn_admin.php:227 class.bcn_network_admin.php:295
93
+ msgid "Go to the Breadcrumb NavXT translation project."
94
+ msgstr ""
95
+
96
+ #: class.bcn_admin.php:232 class.bcn_admin.php:321 class.bcn_admin.php:322
97
+ #: class.bcn_network_admin.php:300 class.bcn_network_admin.php:389
98
+ #: class.bcn_network_admin.php:390
99
+ msgid "General"
100
+ msgstr ""
101
+
102
+ #: class.bcn_admin.php:235 class.bcn_network_admin.php:303
103
+ msgid ""
104
+ "For the settings on this page to take effect, you must either use the "
105
+ "included Breadcrumb NavXT widget, or place either of the code sections below "
106
+ "into your theme."
107
+ msgstr ""
108
+
109
+ #: class.bcn_admin.php:236 class.bcn_network_admin.php:304
110
+ msgid "Breadcrumb trail with separators"
111
+ msgstr ""
112
+
113
+ #: class.bcn_admin.php:242 class.bcn_network_admin.php:310
114
+ msgid "Breadcrumb trail in list form"
115
+ msgstr ""
116
+
117
+ #: class.bcn_admin.php:251 class.bcn_network_admin.php:319
118
+ msgid "Quick Start"
119
+ msgstr ""
120
+
121
+ #: class.bcn_admin.php:254 class.bcn_network_admin.php:322
122
+ msgid ""
123
+ "Using the code from the Quick Start section above, the following CSS can be "
124
+ "used as base for styling your breadcrumb trail."
125
+ msgstr ""
126
+
127
+ #: class.bcn_admin.php:266 class.bcn_network_admin.php:334
128
+ msgid "Styling"
129
+ msgstr ""
130
+
131
+ #: class.bcn_admin.php:272 class.bcn_network_admin.php:340
132
+ msgid "Import/Export/Reset"
133
+ msgstr ""
134
+
135
+ #: class.bcn_admin.php:296 class.bcn_network_admin.php:364
136
+ #: includes/class.mtekk_adminkit.php:792
137
+ msgid "Import"
138
+ msgstr ""
139
+
140
+ #: class.bcn_admin.php:297 class.bcn_network_admin.php:365
141
+ #: includes/class.mtekk_adminkit.php:793
142
+ msgid "Export"
143
+ msgstr ""
144
+
145
+ #: class.bcn_admin.php:298 class.bcn_network_admin.php:366
146
+ #: includes/class.mtekk_adminkit.php:794
147
+ msgid "Reset"
148
+ msgstr ""
149
+
150
+ #: class.bcn_admin.php:309
151
+ msgid "Breadcrumb NavXT Settings"
152
+ msgstr ""
153
+
154
+ #: class.bcn_admin.php:321 class.bcn_network_admin.php:389
155
+ msgid ""
156
+ "A collection of settings most likely to be modified are located under this "
157
+ "tab."
158
+ msgstr ""
159
+
160
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
161
+ msgid "Breadcrumb Separator"
162
+ msgstr ""
163
+
164
+ #: class.bcn_admin.php:325 class.bcn_network_admin.php:393
165
+ msgid "Placed in between each breadcrumb."
166
+ msgstr ""
167
+
168
+ #: class.bcn_admin.php:329 class.bcn_network_admin.php:397
169
+ msgid "Title Length"
170
+ msgstr ""
171
+
172
+ #: class.bcn_admin.php:334 class.bcn_network_admin.php:402
173
+ msgid "Limit the length of the breadcrumb title."
174
+ msgstr ""
175
+
176
+ #: class.bcn_admin.php:339 class.bcn_network_admin.php:407
177
+ msgid "Max Title Length: "
178
+ msgstr ""
179
+
180
+ #: class.bcn_admin.php:350 class.bcn_network_admin.php:418
181
+ msgid "Current Item"
182
+ msgstr ""
183
+
184
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
185
+ msgid "Link Current Item"
186
+ msgstr ""
187
+
188
+ #: class.bcn_admin.php:353 class.bcn_network_admin.php:421
189
+ msgid "Yes"
190
+ msgstr ""
191
+
192
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
193
+ msgid "Paged Breadcrumb"
194
+ msgstr ""
195
+
196
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
197
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
198
+ msgstr ""
199
+
200
+ #: class.bcn_admin.php:354 class.bcn_network_admin.php:422
201
+ msgid ""
202
+ "Indicates that the user is on a page other than the first on paginated posts/"
203
+ "pages."
204
+ msgstr ""
205
+
206
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
207
+ msgid "Paged Template"
208
+ msgstr ""
209
+
210
+ #: class.bcn_admin.php:355 class.bcn_network_admin.php:423
211
+ msgid "The template for paged breadcrumbs."
212
+ msgstr ""
213
+
214
+ #: class.bcn_admin.php:359 class.bcn_admin.php:362
215
+ #: class.bcn_network_admin.php:427 class.bcn_network_admin.php:430
216
+ msgid "Home Breadcrumb"
217
+ msgstr ""
218
+
219
+ #: class.bcn_admin.php:362 class.bcn_network_admin.php:430
220
+ msgid "Place the home breadcrumb in the trail."
221
+ msgstr ""
222
+
223
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
224
+ msgid "Home Template"
225
+ msgstr ""
226
+
227
+ #: class.bcn_admin.php:363 class.bcn_network_admin.php:431
228
+ msgid "The template for the home breadcrumb."
229
+ msgstr ""
230
+
231
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
232
+ msgid "Home Template (Unlinked)"
233
+ msgstr ""
234
+
235
+ #: class.bcn_admin.php:364 class.bcn_network_admin.php:432
236
+ msgid ""
237
+ "The template for the home breadcrumb, used when the breadcrumb is not linked."
238
+ msgstr ""
239
+
240
+ #: class.bcn_admin.php:368 class.bcn_admin.php:371
241
+ #: class.bcn_network_admin.php:436 class.bcn_network_admin.php:439
242
+ msgid "Blog Breadcrumb"
243
+ msgstr ""
244
+
245
+ #: class.bcn_admin.php:371 class.bcn_network_admin.php:439
246
+ msgid "Place the blog breadcrumb in the trail."
247
+ msgstr ""
248
+
249
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
250
+ msgid "Blog Template"
251
+ msgstr ""
252
+
253
+ #: class.bcn_admin.php:372 class.bcn_network_admin.php:440
254
+ msgid ""
255
+ "The template for the blog breadcrumb, used only in static front page "
256
+ "environments."
257
+ msgstr ""
258
+
259
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
260
+ msgid "Blog Template (Unlinked)"
261
+ msgstr ""
262
+
263
+ #: class.bcn_admin.php:373 class.bcn_network_admin.php:441
264
+ msgid ""
265
+ "The template for the blog breadcrumb, used only in static front page "
266
+ "environments and when the breadcrumb is not linked."
267
+ msgstr ""
268
+
269
+ #: class.bcn_admin.php:377 class.bcn_network_admin.php:445
270
+ msgid "Mainsite Breadcrumb"
271
+ msgstr ""
272
+
273
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
274
+ msgid "Main Site Breadcrumb"
275
+ msgstr ""
276
+
277
+ #: class.bcn_admin.php:380 class.bcn_network_admin.php:448
278
+ msgid "Place the main site home breadcrumb in the trail in an multisite setup."
279
+ msgstr ""
280
+
281
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
282
+ msgid "Main Site Home Template"
283
+ msgstr ""
284
+
285
+ #: class.bcn_admin.php:381 class.bcn_network_admin.php:449
286
+ msgid ""
287
+ "The template for the main site home breadcrumb, used only in multisite "
288
+ "environments."
289
+ msgstr ""
290
+
291
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
292
+ msgid "Main Site Home Template (Unlinked)"
293
+ msgstr ""
294
+
295
+ #: class.bcn_admin.php:382 class.bcn_network_admin.php:450
296
+ msgid ""
297
+ "The template for the main site home breadcrumb, used only in multisite "
298
+ "environments and when the breadcrumb is not linked."
299
+ msgstr ""
300
+
301
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
302
+ msgid ""
303
+ "The settings for all post types (Posts, Pages, and Custom Post Types) are "
304
+ "located under this tab."
305
+ msgstr ""
306
+
307
+ #: class.bcn_admin.php:389 class.bcn_network_admin.php:457
308
+ msgid "Post Types"
309
+ msgstr ""
310
+
311
+ #: class.bcn_admin.php:390 class.bcn_network_admin.php:458
312
+ msgid "Posts"
313
+ msgstr ""
314
+
315
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
316
+ msgid "Post Template"
317
+ msgstr ""
318
+
319
+ #: class.bcn_admin.php:393 class.bcn_network_admin.php:461
320
+ msgid "The template for post breadcrumbs."
321
+ msgstr ""
322
+
323
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
324
+ msgid "Post Template (Unlinked)"
325
+ msgstr ""
326
+
327
+ #: class.bcn_admin.php:394 class.bcn_network_admin.php:462
328
+ msgid ""
329
+ "The template for post breadcrumbs, used only when the breadcrumb is not "
330
+ "linked."
331
+ msgstr ""
332
+
333
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
334
+ msgid "Post Hierarchy Display"
335
+ msgstr ""
336
+
337
+ #: class.bcn_admin.php:395 class.bcn_network_admin.php:463
338
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
339
+ msgstr ""
340
+
341
+ #: class.bcn_admin.php:399 class.bcn_network_admin.php:467
342
+ msgid "Post Hierarchy"
343
+ msgstr ""
344
+
345
+ #: class.bcn_admin.php:403 class.bcn_admin.php:515
346
+ #: class.bcn_network_admin.php:471 class.bcn_network_admin.php:583
347
+ msgid "Categories"
348
+ msgstr ""
349
+
350
+ #: class.bcn_admin.php:404 class.bcn_network_admin.php:472
351
+ msgid "Dates"
352
+ msgstr ""
353
+
354
+ #: class.bcn_admin.php:405 class.bcn_admin.php:522
355
+ #: class.bcn_network_admin.php:473 class.bcn_network_admin.php:590
356
+ msgid "Tags"
357
+ msgstr ""
358
+
359
+ #: class.bcn_admin.php:407 class.bcn_admin.php:476
360
+ #: class.bcn_network_admin.php:475 class.bcn_network_admin.php:544
361
+ msgid "Post Parent"
362
+ msgstr ""
363
+
364
+ #: class.bcn_admin.php:423 class.bcn_admin.php:500
365
+ #: class.bcn_network_admin.php:491 class.bcn_network_admin.php:568
366
+ msgid ""
367
+ "The hierarchy which the breadcrumb trail will show. Note that the \"Post "
368
+ "Parent\" option may require an additional plugin to behave as expected since "
369
+ "this is a non-hierarchical post type."
370
+ msgstr ""
371
+
372
+ #: class.bcn_admin.php:427 class.bcn_network_admin.php:495
373
+ msgid "Pages"
374
+ msgstr ""
375
+
376
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
377
+ msgid "Page Template"
378
+ msgstr ""
379
+
380
+ #: class.bcn_admin.php:430 class.bcn_network_admin.php:498
381
+ msgid "The template for page breadcrumbs."
382
+ msgstr ""
383
+
384
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
385
+ msgid "Page Template (Unlinked)"
386
+ msgstr ""
387
+
388
+ #: class.bcn_admin.php:431 class.bcn_network_admin.php:499
389
+ msgid ""
390
+ "The template for page breadcrumbs, used only when the breadcrumb is not "
391
+ "linked."
392
+ msgstr ""
393
+
394
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
395
+ msgid "Attachment Template"
396
+ msgstr ""
397
+
398
+ #: class.bcn_admin.php:432 class.bcn_network_admin.php:500
399
+ msgid "The template for attachment breadcrumbs."
400
+ msgstr ""
401
+
402
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
403
+ msgid "Attachment Template (Unlinked)"
404
+ msgstr ""
405
+
406
+ #: class.bcn_admin.php:433 class.bcn_network_admin.php:501
407
+ msgid ""
408
+ "The template for attachment breadcrumbs, used only when the breadcrumb is "
409
+ "not linked."
410
+ msgstr ""
411
+
412
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
413
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
414
+ msgid "%s Template"
415
+ msgstr ""
416
+
417
+ #: class.bcn_admin.php:453 class.bcn_admin.php:553
418
+ #: class.bcn_network_admin.php:521 class.bcn_network_admin.php:621
419
+ msgid "The template for %s breadcrumbs."
420
+ msgstr ""
421
+
422
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
423
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
424
+ msgid "%s Template (Unlinked)"
425
+ msgstr ""
426
+
427
+ #: class.bcn_admin.php:454 class.bcn_admin.php:554
428
+ #: class.bcn_network_admin.php:522 class.bcn_network_admin.php:622
429
+ msgid ""
430
+ "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
431
+ msgstr ""
432
+
433
+ #: class.bcn_admin.php:459 class.bcn_network_admin.php:527
434
+ msgid "%s Root Page"
435
+ msgstr ""
436
+
437
+ #: class.bcn_admin.php:462 class.bcn_network_admin.php:530
438
+ msgid "&mdash; Select &mdash;"
439
+ msgstr ""
440
+
441
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
442
+ msgid "%s Archive Display"
443
+ msgstr ""
444
+
445
+ #: class.bcn_admin.php:466 class.bcn_network_admin.php:534
446
+ msgid ""
447
+ "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
448
+ msgstr ""
449
+
450
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
451
+ msgid "%s Hierarchy Display"
452
+ msgstr ""
453
+
454
+ #: class.bcn_admin.php:467 class.bcn_network_admin.php:535
455
+ msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
456
+ msgstr ""
457
+
458
+ #: class.bcn_admin.php:471 class.bcn_network_admin.php:539
459
+ msgid "%s Hierarchy"
460
+ msgstr ""
461
+
462
+ #: class.bcn_admin.php:496 class.bcn_network_admin.php:564
463
+ msgid "The hierarchy which the breadcrumb trail will show."
464
+ msgstr ""
465
+
466
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
467
+ msgid ""
468
+ "The settings for all taxonomies (including Categories, Tags, and custom "
469
+ "taxonomies) are located under this tab."
470
+ msgstr ""
471
+
472
+ #: class.bcn_admin.php:514 class.bcn_network_admin.php:582
473
+ msgid "Taxonomies"
474
+ msgstr ""
475
+
476
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
477
+ msgid "Category Template"
478
+ msgstr ""
479
+
480
+ #: class.bcn_admin.php:518 class.bcn_network_admin.php:586
481
+ msgid "The template for category breadcrumbs."
482
+ msgstr ""
483
+
484
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
485
+ msgid "Category Template (Unlinked)"
486
+ msgstr ""
487
+
488
+ #: class.bcn_admin.php:519 class.bcn_network_admin.php:587
489
+ msgid ""
490
+ "The template for category breadcrumbs, used only when the breadcrumb is not "
491
+ "linked."
492
+ msgstr ""
493
+
494
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
495
+ msgid "Tag Template"
496
+ msgstr ""
497
+
498
+ #: class.bcn_admin.php:525 class.bcn_network_admin.php:593
499
+ msgid "The template for tag breadcrumbs."
500
+ msgstr ""
501
+
502
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
503
+ msgid "Tag Template (Unlinked)"
504
+ msgstr ""
505
+
506
+ #: class.bcn_admin.php:526 class.bcn_network_admin.php:594
507
+ msgid ""
508
+ "The template for tag breadcrumbs, used only when the breadcrumb is not "
509
+ "linked."
510
+ msgstr ""
511
+
512
+ #: class.bcn_admin.php:529 class.bcn_network_admin.php:597
513
+ msgid "Post Formats"
514
+ msgstr ""
515
+
516
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
517
+ msgid "Post Format Template"
518
+ msgstr ""
519
+
520
+ #: class.bcn_admin.php:532 class.bcn_network_admin.php:600
521
+ msgid "The template for post format breadcrumbs."
522
+ msgstr ""
523
+
524
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
525
+ msgid "Post Format Template (Unlinked)"
526
+ msgstr ""
527
+
528
+ #: class.bcn_admin.php:533 class.bcn_network_admin.php:601
529
+ msgid ""
530
+ "The template for post_format breadcrumbs, used only when the breadcrumb is "
531
+ "not linked."
532
+ msgstr ""
533
+
534
+ #: class.bcn_admin.php:563 class.bcn_network_admin.php:631
535
+ msgid ""
536
+ "The settings for author and date archives, searches, and 404 pages are "
537
+ "located under this tab."
538
+ msgstr ""
539
+
540
+ #: class.bcn_admin.php:563 class.bcn_admin.php:572
541
+ #: class.bcn_network_admin.php:631 class.bcn_network_admin.php:640
542
+ msgid "Miscellaneous"
543
+ msgstr ""
544
+
545
+ #: class.bcn_admin.php:564 class.bcn_network_admin.php:632
546
+ msgid "Author Archives"
547
+ msgstr ""
548
+
549
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
550
+ msgid "Author Template"
551
+ msgstr ""
552
+
553
+ #: class.bcn_admin.php:567 class.bcn_network_admin.php:635
554
+ msgid "The template for author breadcrumbs."
555
+ msgstr ""
556
+
557
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
558
+ msgid "Author Template (Unlinked)"
559
+ msgstr ""
560
+
561
+ #: class.bcn_admin.php:568 class.bcn_network_admin.php:636
562
+ msgid ""
563
+ "The template for author breadcrumbs, used only when the breadcrumb is not "
564
+ "linked."
565
+ msgstr ""
566
+
567
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
568
+ msgid "Author Display Format"
569
+ msgstr ""
570
+
571
+ #: class.bcn_admin.php:569 class.bcn_network_admin.php:637
572
+ msgid ""
573
+ "display_name uses the name specified in \"Display name publicly as\" under "
574
+ "the user profile the others correspond to options in the user profile."
575
+ msgstr ""
576
+
577
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
578
+ msgid "Date Template"
579
+ msgstr ""
580
+
581
+ #: class.bcn_admin.php:575 class.bcn_network_admin.php:643
582
+ msgid "The template for date breadcrumbs."
583
+ msgstr ""
584
+
585
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
586
+ msgid "Date Template (Unlinked)"
587
+ msgstr ""
588
+
589
+ #: class.bcn_admin.php:576 class.bcn_network_admin.php:644
590
+ msgid ""
591
+ "The template for date breadcrumbs, used only when the breadcrumb is not "
592
+ "linked."
593
+ msgstr ""
594
+
595
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
596
+ msgid "Search Template"
597
+ msgstr ""
598
+
599
+ #: class.bcn_admin.php:577 class.bcn_network_admin.php:645
600
+ msgid ""
601
+ "The anchor template for search breadcrumbs, used only when the search "
602
+ "results span several pages."
603
+ msgstr ""
604
+
605
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
606
+ msgid "Search Template (Unlinked)"
607
+ msgstr ""
608
+
609
+ #: class.bcn_admin.php:578 class.bcn_network_admin.php:646
610
+ msgid ""
611
+ "The anchor template for search breadcrumbs, used only when the search "
612
+ "results span several pages and the breadcrumb is not linked."
613
+ msgstr ""
614
+
615
+ #: class.bcn_admin.php:579 class.bcn_network_admin.php:647
616
+ msgid "404 Title"
617
+ msgstr ""
618
+
619
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
620
+ msgid "404 Template"
621
+ msgstr ""
622
+
623
+ #: class.bcn_admin.php:580 class.bcn_network_admin.php:648
624
+ msgid "The template for 404 breadcrumbs."
625
+ msgstr ""
626
+
627
+ #: class.bcn_admin.php:587 class.bcn_network_admin.php:655
628
+ msgid "Save Changes"
629
+ msgstr ""
630
+
631
+ #: class.bcn_breadcrumb.php:67 class.bcn_breadcrumb_trail.php:49
632
+ #: class.bcn_breadcrumb_trail.php:55 class.bcn_breadcrumb_trail.php:61
633
+ #: class.bcn_breadcrumb_trail.php:75 class.bcn_breadcrumb_trail.php:87
634
+ #: class.bcn_breadcrumb_trail.php:99
635
+ msgid ""
636
+ "<a title=\"Go to %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>"
637
+ msgstr ""
638
+
639
+ #: class.bcn_breadcrumb_trail.php:82
640
+ msgid "Page %htitle%"
641
+ msgstr ""
642
+
643
+ #: class.bcn_breadcrumb_trail.php:106
644
+ msgid "404"
645
+ msgstr ""
646
+
647
+ #: class.bcn_breadcrumb_trail.php:109
648
+ msgid ""
649
+ "Search results for &#39;<a title=\"Go to the first page of search results "
650
+ "for %title%.\" href=\"%link%\" class=\"%type%\">%htitle%</a>&#39;"
651
+ msgstr ""
652
+
653
+ #: class.bcn_breadcrumb_trail.php:111
654
+ msgid "Search results for &#39;%htitle%&#39;"
655
+ msgstr ""
656
+
657
+ #: class.bcn_breadcrumb_trail.php:114 class.bcn_breadcrumb_trail.php:119
658
+ msgid ""
659
+ "<a title=\"Go to the %title% tag archives.\" href=\"%link%\" class=\"%type%"
660
+ "\">%htitle%</a>"
661
+ msgstr ""
662
+
663
+ #: class.bcn_breadcrumb_trail.php:124
664
+ msgid ""
665
+ "Articles by: <a title=\"Go to the first page of posts by %title%.\" href="
666
+ "\"%link%\" class=\"%type%\">%htitle%</a>"
667
+ msgstr ""
668
+
669
+ #: class.bcn_breadcrumb_trail.php:126
670
+ msgid "Articles by: %htitle%"
671
+ msgstr ""
672
+
673
+ #: class.bcn_breadcrumb_trail.php:131
674
+ msgid ""
675
+ "<a title=\"Go to the %title% category archives.\" href=\"%link%\" class="
676
+ "\"%type%\">%htitle%</a>"
677
+ msgstr ""
678
+
679
+ #: class.bcn_breadcrumb_trail.php:135
680
+ msgid ""
681
+ "<a title=\"Go to the %title% archives.\" href=\"%link%\" class=\"%type%\">"
682
+ "%htitle%</a>"
683
+ msgstr ""
684
+
685
+ #: class.bcn_network_admin.php:377
686
+ msgid "Breadcrumb NavXT Network Settings"
687
+ msgstr ""
688
+
689
+ #: class.bcn_widget.php:33
690
+ msgid "Adds a breadcrumb trail to your sidebar"
691
+ msgstr ""
692
+
693
+ #: class.bcn_widget.php:92
694
+ msgid "Title:"
695
+ msgstr ""
696
+
697
+ #: class.bcn_widget.php:96
698
+ msgid "Text to show before the trail:"
699
+ msgstr ""
700
+
701
+ #: class.bcn_widget.php:100
702
+ msgid "Output trail as:"
703
+ msgstr ""
704
+
705
+ #: class.bcn_widget.php:102
706
+ msgid "List"
707
+ msgstr ""
708
+
709
+ #: class.bcn_widget.php:103
710
+ msgid "Schema.org"
711
+ msgstr ""
712
+
713
+ #: class.bcn_widget.php:104
714
+ msgid "Plain"
715
+ msgstr ""
716
+
717
+ #: class.bcn_widget.php:109
718
+ msgid "Link the breadcrumbs"
719
+ msgstr ""
720
+
721
+ #: class.bcn_widget.php:111
722
+ msgid "Reverse the order of the trail"
723
+ msgstr ""
724
+
725
+ #: class.bcn_widget.php:113
726
+ msgid "Hide the trail on the front page"
727
+ msgstr ""
728
+
729
+ #: includes/class.mtekk_adminkit.php:217
730
+ msgid "Settings"
731
+ msgstr ""
732
+
733
+ #: includes/class.mtekk_adminkit.php:287
734
+ msgid "Your settings are out of date."
735
+ msgstr ""
736
+
737
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
738
+ msgid "Migrate the settings now."
739
+ msgstr ""
740
+
741
+ #: includes/class.mtekk_adminkit.php:287 includes/class.mtekk_adminkit.php:296
742
+ msgid "Migrate now."
743
+ msgstr ""
744
+
745
+ #: includes/class.mtekk_adminkit.php:296
746
+ msgid "Your settings are for a newer version."
747
+ msgstr ""
748
+
749
+ #: includes/class.mtekk_adminkit.php:304
750
+ msgid "Your plugin install is incomplete."
751
+ msgstr ""
752
+
753
+ #: includes/class.mtekk_adminkit.php:304
754
+ msgid "Load default settings now."
755
+ msgstr ""
756
+
757
+ #: includes/class.mtekk_adminkit.php:304
758
+ msgid "Complete now."
759
+ msgstr ""
760
+
761
+ #: includes/class.mtekk_adminkit.php:312
762
+ msgid "Your plugin settings are invalid."
763
+ msgstr ""
764
+
765
+ #: includes/class.mtekk_adminkit.php:312
766
+ msgid "Attempt to fix settings now."
767
+ msgstr ""
768
+
769
+ #: includes/class.mtekk_adminkit.php:312
770
+ msgid "Fix now."
771
+ msgstr ""
772
+
773
+ #: includes/class.mtekk_adminkit.php:490
774
+ msgid "Settings successfully saved."
775
+ msgstr ""
776
+
777
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
778
+ msgid "Undo the options save."
779
+ msgstr ""
780
+
781
+ #: includes/class.mtekk_adminkit.php:490 includes/class.mtekk_adminkit.php:495
782
+ #: includes/class.mtekk_adminkit.php:600 includes/class.mtekk_adminkit.php:624
783
+ #: includes/class.mtekk_adminkit.php:641
784
+ msgid "Undo"
785
+ msgstr ""
786
+
787
+ #: includes/class.mtekk_adminkit.php:495
788
+ msgid "Some settings were not saved."
789
+ msgstr ""
790
+
791
+ #: includes/class.mtekk_adminkit.php:496
792
+ msgid "The following settings were not saved:"
793
+ msgstr ""
794
+
795
+ #: includes/class.mtekk_adminkit.php:501
796
+ msgid "Please include this message in your %sbug report%s."
797
+ msgstr ""
798
+
799
+ #: includes/class.mtekk_adminkit.php:501
800
+ msgid "Go to the %s support post for your version."
801
+ msgstr ""
802
+
803
+ #: includes/class.mtekk_adminkit.php:600
804
+ msgid "Settings successfully imported from the uploaded file."
805
+ msgstr ""
806
+
807
+ #: includes/class.mtekk_adminkit.php:600
808
+ msgid "Undo the options import."
809
+ msgstr ""
810
+
811
+ #: includes/class.mtekk_adminkit.php:605
812
+ msgid "Importing settings from file failed."
813
+ msgstr ""
814
+
815
+ #: includes/class.mtekk_adminkit.php:624
816
+ msgid "Settings successfully reset to the default values."
817
+ msgstr ""
818
+
819
+ #: includes/class.mtekk_adminkit.php:624
820
+ msgid "Undo the options reset."
821
+ msgstr ""
822
+
823
+ #: includes/class.mtekk_adminkit.php:641
824
+ msgid "Settings successfully undid the last operation."
825
+ msgstr ""
826
+
827
+ #: includes/class.mtekk_adminkit.php:641
828
+ msgid "Undo the last undo operation."
829
+ msgstr ""
830
+
831
+ #: includes/class.mtekk_adminkit.php:676
832
+ msgid "Settings successfully migrated."
833
+ msgstr ""
834
+
835
+ #: includes/class.mtekk_adminkit.php:683
836
+ msgid "Default settings successfully installed."
837
+ msgstr ""
838
+
839
+ #: includes/class.mtekk_adminkit.php:784
840
+ msgid ""
841
+ "Import settings from a XML file, export the current settings to a XML file, "
842
+ "or reset to the default settings."
843
+ msgstr ""
844
+
845
+ #: includes/class.mtekk_adminkit.php:787
846
+ msgid "Settings File"
847
+ msgstr ""
848
+
849
+ #: includes/class.mtekk_adminkit.php:790
850
+ msgid "Select a XML settings file to upload and import settings from."
851
+ msgstr ""
852
+
853
+ #. Description of the plugin/theme
854
+ msgid ""
855
+ "Adds a breadcrumb navigation showing the visitor&#39;s path to their current "
856
+ "location. For details on how to use this plugin visit <a href=\"http://mtekk."
857
+ "us/code/breadcrumb-navxt/\">Breadcrumb NavXT</a>."
858
+ msgstr ""
readme.txt CHANGED
@@ -3,7 +3,9 @@ Contributors: mtekk, hakre
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.5
6
- Tested up to: 3.6
 
 
7
  Adds breadcrumb navigation showing the visitor's path to their current location.
8
 
9
  == Description ==
@@ -16,31 +18,24 @@ Breadcrumb NavXT distributes with translations for the following languages:
16
 
17
  * English - default -
18
  * Russian by Alexander Samsonov
 
19
  * German by Daniel Lang
20
- * French (France) by Emmanuel Beziat
 
 
21
  * Czech by jakubmachala
 
22
  * Danish by Joachim Jensen
 
23
  * Spanish (Spain) by Karin Sequen
 
24
  * Portuguese (Portugal) by Luís Rodrigues
25
  * Estonian by Martin Orn
26
- * Latvian by Martins Dzerve
27
  * Swedish by Patrik Spathon
 
28
  * Italian by Tamara Balestri
 
29
  * Azerbaijani by Zaur Bayramov
30
- * Catalan by Christian Eduardo
31
- * Turkish by Hakan er
32
-
33
- The following were not included, but are in the process of being updated:
34
-
35
- * Norwegian (Bokmål) by Jan Rosvoldsve
36
- * Malay by Ben Di
37
- * Arabic by Eid Aldikanji
38
- * Hungarian by Atis Papai
39
- * Hindi by Love Chandel
40
-
41
- The following translations are in need of a maintainer:
42
-
43
- * Japanese originally maintained by Kazuhiro Terada
44
 
45
  Don't see your language on the list? Stop by [Breadcrumb NavXT's translation project](http://translate.mtekk.us/projects/breadcrumb-navxt "Go to Breadcrumb NavXT's GlotPress based translation project").
46
 
@@ -57,6 +52,14 @@ Save the file (upload if applicable). Now you should have a breadcrumb trail on
57
  Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/ "Go to Breadcrumb NavXT's Documentation.") page for more information.
58
 
59
  == Changelog ==
 
 
 
 
 
 
 
 
60
  = 4.4.0 =
61
  * New feature: Added `bcn_breadcrumb_url` filter.
62
  * New feature: Add resource ID to the `bcn_breadcrumb_title` filter.
@@ -69,12 +72,12 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
69
  * Behaviour change: Home and Mainsite titles were removed.
70
  * Behaviour change: All HTML capable strings are now passed through wp_kses.
71
  * New feature: Added bcn_breadcrumb_url filter.
72
- * New feature: %title% and %htitle% now are replaced with the the Site Title for the home breadcrumb and the Network Name for mainsite breadcrumbs.
73
  * New feature: Support for the proposed Theme Hook Alliance tha_breadcrumb_navigation filter.
74
  * New feature: Added %ftitle% and %fhtitle% tags that are not affected by bcn_breadcrumb::trim().
75
  * Bug fix: Minor tweaks to the tabs in the admin page to better support the new version of jQuery UI tabs (in WordPress 3.5+).
76
  * Bug fix: Fixed issue where initial settings were not being translated due to the text domain not loading.
77
- * Bug fix: Added verbiage to clarify what the Post Parent selection for Post Hierarchy does.
78
  = 4.2.0 =
79
  * Behaviour change: Date archives are only available for the 'post' post type.
80
  * New feature: All Custom Post Types can now either use a post parent, or taxonomy based hierarchy.
@@ -87,7 +90,7 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
87
  * Bug fix: `bcn_breadcrumb::title_trim()` no longer trims the title when the title length is equal to the max length.
88
  = 4.1.0 =
89
  * Behavior change: Made the behavior of posts using flat taxonomies match the behavior of using a hierarchical taxonomy when the post is not assigned a taxonomy term.
90
- * New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they dont have a parent.
91
  * New feature: Pretext option for the included Widget, allows 'You are here:' type messages in the widget.
92
  * Bug fix: Textdomain was changed to the correct one in the widget.
93
  * Bug fix: Textdomain was changed from 'breadcrumb_navxt' to 'breadcrumb-navxt' for improved compatibility with the new GlotPress translation flow.
@@ -192,8 +195,7 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
192
  * Bug fix: Now selects the first category hierarchy of a post instead of the last.
193
  = 3.2.1 =
194
  * New feature: Translations for Belorussian now included thanks to "Fat Cow".
195
- * Bug fix: The `bcn_display()` and `bcn_display_list()` wrapper functions obey the
196
- `$return parameter`.
197
  * Bug fix: Anchors now will be valid HTML even when a page/category/post title has HTML tags in it.
198
  * Bug fix: Revised `bcn_breadcrumb_trail::category_parents` to work around a bug in `get_category` that causes a WP_Error to be thrown.
199
  * Bug fix: Importing settings XML files should no longer corrupt HTML entities.
@@ -241,4 +243,9 @@ Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-
241
  * Bug fix: Static frontpage situations involving the posts page being more than one level off of the home behave as expected.
242
  * Bug fix: Compatible with all polyglot like plugins.
243
  * Bug fix: Compatible with Viper007bond's Breadcrumb Titles for Pages plugin (but 3.0.0 can replace it as well)
244
- * Bug fix: Author page support should be fixed on some setups where it did not work before.
 
 
 
 
 
3
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
4
  Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
5
  Requires at least: 3.5
6
+ Tested up to: 3.7.1
7
+ Stable tag: 5.0.0
8
+ License: GPLv2 or later
9
  Adds breadcrumb navigation showing the visitor's path to their current location.
10
 
11
  == Description ==
18
 
19
  * English - default -
20
  * Russian by Alexander Samsonov
21
+ * Catalan by Christian Eduardo
22
  * German by Daniel Lang
23
+ * French (France) by Emmanuel Beziat, Erwan Lescop, and Serge Rauber
24
+ * Greek by Giorgos Kounenis
25
+ * Turkish by Hakan Er
26
  * Czech by jakubmachala
27
+ * Norwegian (Bokmål) by Jan Rosvoldsve
28
  * Danish by Joachim Jensen
29
+ * Lithuanian by Johannes Rau
30
  * Spanish (Spain) by Karin Sequen
31
+ * Japanese by Kojima Toshiyasu
32
  * Portuguese (Portugal) by Luís Rodrigues
33
  * Estonian by Martin Orn
 
34
  * Swedish by Patrik Spathon
35
+ * Dutch by Renée Klein
36
  * Italian by Tamara Balestri
37
+ * Finnish by Ville Pilvio
38
  * Azerbaijani by Zaur Bayramov
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
  Don't see your language on the list? Stop by [Breadcrumb NavXT's translation project](http://translate.mtekk.us/projects/breadcrumb-navxt "Go to Breadcrumb NavXT's GlotPress based translation project").
41
 
52
  Please visit [Breadcrumb NavXT's Documentation](http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/ "Go to Breadcrumb NavXT's Documentation.") page for more information.
53
 
54
  == Changelog ==
55
+ = 5.0.0 =
56
+ * Behavior Change: Moved `bcn_breadcrumb_trail::trail` to `bcn_breadcrumb_trail::breadcrumbs`
57
+ * Behavior Change: When WordPress is in multisite/network mode, the settings set in the network settings page take priority over subsite settings.
58
+ * New feature: Added `bcn_breadcrumb_trail_object` filter.
59
+ * New feature: Added `bcn_li_attributes` filter.
60
+ * New feature: Added `bcn_breadcrumb_types` filter.
61
+ * New feature: Added Network Admin Settings page.
62
+ * New feature: Added `xmlns:v` and `property` to the valid tag attributes.
63
  = 4.4.0 =
64
  * New feature: Added `bcn_breadcrumb_url` filter.
65
  * New feature: Add resource ID to the `bcn_breadcrumb_title` filter.
72
  * Behaviour change: Home and Mainsite titles were removed.
73
  * Behaviour change: All HTML capable strings are now passed through wp_kses.
74
  * New feature: Added bcn_breadcrumb_url filter.
75
+ * New feature: %title% and %htitle% now are replaced with the the "Site Title" for the home breadcrumb and the "Network Name" for mainsite breadcrumbs.
76
  * New feature: Support for the proposed Theme Hook Alliance tha_breadcrumb_navigation filter.
77
  * New feature: Added %ftitle% and %fhtitle% tags that are not affected by bcn_breadcrumb::trim().
78
  * Bug fix: Minor tweaks to the tabs in the admin page to better support the new version of jQuery UI tabs (in WordPress 3.5+).
79
  * Bug fix: Fixed issue where initial settings were not being translated due to the text domain not loading.
80
+ * Bug fix: Added verbiage to clarify what the "Post Parent" selection for "Post Hierarchy" does.
81
  = 4.2.0 =
82
  * Behaviour change: Date archives are only available for the 'post' post type.
83
  * New feature: All Custom Post Types can now either use a post parent, or taxonomy based hierarchy.
90
  * Bug fix: `bcn_breadcrumb::title_trim()` no longer trims the title when the title length is equal to the max length.
91
  = 4.1.0 =
92
  * Behavior change: Made the behavior of posts using flat taxonomies match the behavior of using a hierarchical taxonomy when the post is not assigned a taxonomy term.
93
+ * New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they don't have a parent.
94
  * New feature: Pretext option for the included Widget, allows 'You are here:' type messages in the widget.
95
  * Bug fix: Textdomain was changed to the correct one in the widget.
96
  * Bug fix: Textdomain was changed from 'breadcrumb_navxt' to 'breadcrumb-navxt' for improved compatibility with the new GlotPress translation flow.
195
  * Bug fix: Now selects the first category hierarchy of a post instead of the last.
196
  = 3.2.1 =
197
  * New feature: Translations for Belorussian now included thanks to "Fat Cow".
198
+ * Bug fix: The `bcn_display()` and `bcn_display_list()` wrapper functions obey the `$return parameter`.
 
199
  * Bug fix: Anchors now will be valid HTML even when a page/category/post title has HTML tags in it.
200
  * Bug fix: Revised `bcn_breadcrumb_trail::category_parents` to work around a bug in `get_category` that causes a WP_Error to be thrown.
201
  * Bug fix: Importing settings XML files should no longer corrupt HTML entities.
243
  * Bug fix: Static frontpage situations involving the posts page being more than one level off of the home behave as expected.
244
  * Bug fix: Compatible with all polyglot like plugins.
245
  * Bug fix: Compatible with Viper007bond's Breadcrumb Titles for Pages plugin (but 3.0.0 can replace it as well)
246
+ * Bug fix: Author page support should be fixed on some setups where it did not work before.
247
+
248
+ == Upgrade Notice ==
249
+
250
+ = 5.0.0 =
251
+ This version is for the developers, those who like to extend things gracefully. Several new hooks were introduced, while others were tweaked to be more useful. If you have WordPress setup as a multisite install/in network mode, the new Breadcrumb NavXT network settings page will take priority over the individual sub site settings pages. This is a major change from previous versions. See [Controlling Breadcrumb NavXT Settings From the Network Settings Page](http://mtekk.us/archives/guides/controlling-breadcrumb-navxt-settings-from-the-network-settings-page/"Go to the article on controlling the settings hierarchy") for more information on the new settings modes.