Breadcrumb NavXT - Version 3.4.0

Version Description

  • New feature: Proper support of custom taxonomies. category_parents and post_tags replaced with term_parents and post_terms.
  • New feature: Ability to use date as post taxonomy.
  • New feature: Translations for Italian now included thanks to Luca Camellini.
  • Bug fix: Fixed permalink for day breadcrumbs.
  • Bug fix: Flat taxonomy archive breadcrumbs now are surrounded by both the standard and archive prefix/suffix combination.
Download this release

Release Info

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

Code changes from version 3.3.0 to 3.4.0

breadcrumb_navxt_admin.php CHANGED
@@ -1,1480 +1,1566 @@
1
- <?php
2
- /*
3
- Plugin Name: Breadcrumb NavXT
4
- Plugin URI: http://mtekk.weblogs.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.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
- Version: 3.3.0
7
- Author: John Havlik
8
- Author URI: http://mtekk.weblogs.us/
9
- */
10
- /* Copyright 2007-2009 John Havlik (email : mtekkmonkey@gmail.com)
11
-
12
- This program is free software; you can redistribute it and/or modify
13
- it under the terms of the GNU General Public License as published by
14
- the Free Software Foundation; either version 2 of the License, or
15
- (at your option) any later version.
16
-
17
- This program is distributed in the hope that it will be useful,
18
- but WITHOUT ANY WARRANTY; without even the implied warranty of
19
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
- GNU General Public License for more details.
21
-
22
- You should have received a copy of the GNU General Public License
23
- along with this program; if not, write to the Free Software
24
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
- */
26
- //Include the breadcrumb class
27
- require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
28
- //Include the supplemental functions
29
- require_once(dirname(__FILE__) . '/breadcrumb_navxt_api.php');
30
-
31
- /**
32
- * The administrative interface class
33
- *
34
- * @since 3.0.0
35
- */
36
- class bcn_admin
37
- {
38
- /**
39
- * local store for breadcrumb version
40
- *
41
- * Example: String '3.1.0'
42
- *
43
- * @var string
44
- * @since 3.1.0
45
- */
46
- private $version = '3.3.0';
47
-
48
- /**
49
- * wether or not this administration page has contextual help
50
- *
51
- * @var bool
52
- * @since 3.2
53
- */
54
- private $_has_contextual_help = false;
55
-
56
- /**
57
- * local store for the breadcrumb object
58
- *
59
- * @see bcn_admin()
60
- * @var bcn_breadcrumb
61
- * @since 3.0
62
- */
63
- public $breadcrumb_trail;
64
- /**
65
- * bcn_admin
66
- *
67
- * Administrative interface class default constructor
68
- */
69
- function bcn_admin()
70
- {
71
- //We'll let it fail fataly if the class isn't there as we depend on it
72
- $this->breadcrumb_trail = new bcn_breadcrumb_trail;
73
- //Installation Script hook
74
- add_action('activate_breadcrumb-navxt/breadcrumb_navxt_admin.php', array($this, 'install'));
75
-
76
- //Uninstallation Script hook
77
- //
78
- // uncommented 2009-04-27 09:49 GMT+1 because this code is replaced
79
- // by new uninstall.php file.
80
- //
81
- // TODO remove uncommented code if unstall.php has been tested for a while
82
- // if(function_exists('register_uninstall_hook'))
83
- // {
84
- // register_uninstall_hook(__FILE__, array($this, 'uninstall'));
85
- // }
86
-
87
- //Initilizes l10n domain
88
- $this->local();
89
- //WordPress Admin interface hook
90
- add_action('admin_menu', array($this, 'add_page'));
91
- //WordPress Hook for the widget
92
- add_action('plugins_loaded', array($this, 'register_widget'));
93
- //Admin Options update hook
94
- if(isset($_POST['bcn_admin_options']))
95
- {
96
- //Temporarily add update function on init if form has been submitted
97
- add_action('init', array($this, 'update'));
98
- }
99
- //Admin Options reset hook
100
- if(isset($_POST['bcn_admin_reset']))
101
- {
102
- //Temporarily add reset function on init if reset form has been submitted
103
- add_action('init', array($this, 'reset'));
104
- }
105
- //Admin Options export hook
106
- else if(isset($_POST['bcn_admin_export']))
107
- {
108
- //Temporarily add export function on init if export form has been submitted
109
- add_action('init', array($this, 'export'));
110
- }
111
- //Admin Options import hook
112
- else if(isset($_FILES['bcn_admin_import_file']) && !empty($_FILES['bcn_admin_import_file']['name']))
113
- {
114
- //Temporarily add import function on init if import form has been submitted
115
- add_action('init', array($this, 'import'));
116
- }
117
- //Admin Init Hook
118
- add_action('admin_init', array($this, 'admin_init'));
119
- }
120
- /**
121
- * admin initialisation callback function
122
- *
123
- * is bound to wpordpress action 'admin_init' on instantiation
124
- *
125
- * @since 3.2.0
126
- * @return void
127
- */
128
- public function admin_init()
129
- {
130
- // Register options.
131
- register_setting($option_group = 'bcn_admin', $option_name = 'bcn_options', $sanitize_callback = '');
132
- //Add in the nice "settings" link to the plugins page
133
- add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
134
- //Add javascript enqeueing callback
135
- add_action('wp_print_scripts', array($this, 'javascript'));
136
- }
137
- /**
138
- * security
139
- *
140
- * Makes sure the current user can manage options to proceed
141
- */
142
- function security()
143
- {
144
- //If the user can not manage options we will die on them
145
- if(!current_user_can('manage_options'))
146
- {
147
- _e('Insufficient privileges to proceed.', 'breadcrumb_navxt');
148
- die();
149
- }
150
- }
151
- /**
152
- * install
153
- *
154
- * This sets up and upgrades the database settings, runs on every activation
155
- */
156
- function install()
157
- {
158
- //Call our little security function
159
- $this->security();
160
- //Initilize the options
161
- $this->breadcrumb_trail = new bcn_breadcrumb_trail;
162
- //Reduce db queries by saving this
163
- $db_version = $this->get_option('bcn_version');
164
- //If our version is not the same as in the db, time to update
165
- if($db_version !== $this->version)
166
- {
167
- //Split up the db version into it's components
168
- list($major, $minor, $release) = explode('.', $db_version);
169
- //For upgrading from 2.x.x
170
- if($major == 2)
171
- {
172
- //Delete old options
173
- $delete_options = array
174
- (
175
- 'bcn_preserve', 'bcn_static_frontpage', 'bcn_url_blog',
176
- 'bcn_home_display', 'bcn_home_link', 'bcn_title_home',
177
- 'bcn_title_blog', 'bcn_separator', 'bcn_search_prefix',
178
- 'bcn_search_suffix', 'bcn_author_prefix', 'bcn_author_suffix',
179
- 'bcn_author_display', 'bcn_singleblogpost_prefix',
180
- 'bcn_singleblogpost_suffix', 'bcn_page_prefix', 'bcn_page_suffix',
181
- 'bcn_urltitle_prefix', 'bcn_urltitle_suffix',
182
- 'bcn_archive_category_prefix', 'bcn_archive_category_suffix',
183
- 'bcn_archive_date_prefix', 'bcn_archive_date_suffix',
184
- 'bcn_archive_date_format', 'bcn_attachment_prefix',
185
- 'bcn_attachment_suffix', 'bcn_archive_tag_prefix',
186
- 'bcn_archive_tag_suffix', 'bcn_title_404', 'bcn_link_current_item',
187
- 'bcn_current_item_urltitle', 'bcn_current_item_style_prefix',
188
- 'bcn_current_item_style_suffix', 'bcn_posttitle_maxlen',
189
- 'bcn_paged_display', 'bcn_paged_prefix', 'bcn_paged_suffix',
190
- 'bcn_singleblogpost_taxonomy', 'bcn_singleblogpost_taxonomy_display',
191
- 'bcn_singleblogpost_category_prefix', 'bcn_singleblogpost_category_suffix',
192
- 'bcn_singleblogpost_tag_prefix', 'bcn_singleblogpost_tag_suffix'
193
- );
194
- foreach ($delete_options as $option)
195
- {
196
- $this->delete_option($option);
197
- }
198
- }
199
- else if($major == 3 && $minor == 0)
200
- {
201
- //Update our internal settings
202
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
203
- $this->breadcrumb_trail->opt['search_anchor'] = __('<a title="Go to the first page of search results for %title%." href="%link%">','breadcrumb_navxt');
204
- }
205
- else if($major == 3 && $minor < 3)
206
- {
207
- //Update our internal settings
208
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
209
- $this->breadcrumb_trail->opt['blog_display'] = true;
210
- }
211
- //Always have to update the version
212
- $this->update_option('bcn_version', $this->version);
213
- //Store the options
214
- $this->add_option('bcn_options', $this->breadcrumb_trail->opt);
215
- }
216
- //Check if we have valid anchors
217
- if($temp = $this->get_option('bcn_options'))
218
- {
219
- //Missing the blog anchor is a bug from 3.0.0/3.0.1 so we soft error that one
220
- if(strlen($temp['blog_anchor']) == 0)
221
- {
222
- $temp['blog_anchor'] = $this->breadcrumb_trail->opt['blog_anchor'];
223
- $this->update_option('bcn_options', $temp);
224
- }
225
- else if(strlen($temp['home_anchor']) == 0 ||
226
- strlen($temp['blog_anchor']) == 0 ||
227
- strlen($temp['page_anchor']) == 0 ||
228
- strlen($temp['post_anchor']) == 0 ||
229
- strlen($temp['tag_anchor']) == 0 ||
230
- strlen($temp['date_anchor']) == 0 ||
231
- strlen($temp['category_anchor']) == 0)
232
- {
233
- $this->delete_option('bcn_options');
234
- $this->add_option('bcn_options', $this->breadcrumb_trail->opt);
235
- }
236
- }
237
- }
238
- /**
239
- * uninstall
240
- *
241
- * This removes database settings upon deletion of the plugin from WordPress
242
- */
243
- function uninstall()
244
- {
245
- //Call our little security function
246
- $this->security();
247
- //Remove the option array setting
248
- $this->delete_option('bcn_options');
249
- //Remove the version setting
250
- $this->delete_option('bcn_version');
251
- }
252
- /**
253
- * reset
254
- *
255
- * Resets the options to the default values
256
- */
257
- function reset()
258
- {
259
- $this->security();
260
- //Do a nonce check, prevent malicious link/form problems
261
- check_admin_referer('bcn_admin_upload');
262
- //Only needs this one line, will load in the hard coded default option values
263
- $this->update_option('bcn_options', $this->breadcrumb_trail->opt);
264
- //Reset successful, let the user know
265
- add_action('admin_notices', array($this, 'notify_reset'));
266
- }
267
- /**
268
- * export
269
- *
270
- * Exports the database settings to a XML document
271
- */
272
- function export()
273
- {
274
- $this->security();
275
- //Do a nonce check, prevent malicious link/form problems
276
- check_admin_referer('bcn_admin_upload');
277
- //Update our internal settings
278
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options', true);
279
- //Create a DOM document
280
- $dom = new DOMDocument('1.0', 'UTF-8');
281
- //Adds in newlines and tabs to the output
282
- $dom->formatOutput = true;
283
- //We're not using a DTD therefore we need to specify it as a standalone document
284
- $dom->xmlStandalone = true;
285
- //Add an element called options
286
- $node = $dom->createElement('options');
287
- $parnode = $dom->appendChild($node);
288
- //Add a child element named plugin
289
- $node = $dom->createElement('plugin');
290
- $plugnode = $parnode->appendChild($node);
291
- //Add some attributes that identify the plugin and version for the options export
292
- $plugnode->setAttribute('name', 'breadcrumb_navxt');
293
- $plugnode->setAttribute('version', $this->version);
294
- //Change our headder to text/xml for direct save
295
- header('Cache-Control: public');
296
- //The next two will cause good browsers to download instead of displaying the file
297
- header('Content-Description: File Transfer');
298
- header('Content-disposition: attachemnt; filename=bcn_settings.xml');
299
- header('Content-Type: text/xml');
300
- //Loop through the options array
301
- foreach($this->breadcrumb_trail->opt as $key=>$option)
302
- {
303
- //Add a option tag under the options tag, store the option value
304
- $node = $dom->createElement('option', $option);
305
- $newnode = $plugnode->appendChild($node);
306
- //Change the tag's name to that of the stored option
307
- $newnode->setAttribute('name', $key);
308
- }
309
- //Prepair the XML for output
310
- $output = $dom->saveXML();
311
- //Let the browser know how long the file is
312
- header('Content-Length: ' . strlen($output)); // binary length
313
- //Output the file
314
- echo $output;
315
- //Prevent WordPress from continuing on
316
- die();
317
- }
318
- /**
319
- * import
320
- *
321
- * Imports a XML options document
322
- */
323
- function import()
324
- {
325
- //Our quick and dirty error supressor
326
- function error($errno, $errstr, $eerfile, $errline)
327
- {
328
- return true;
329
- }
330
- $this->security();
331
- //Do a nonce check, prevent malicious link/form problems
332
- check_admin_referer('bcn_admin_upload');
333
- //Create a DOM document
334
- $dom = new DOMDocument('1.0', 'UTF-8');
335
- //We want to catch errors ourselves
336
- set_error_handler('error');
337
- //Load the user uploaded file, handle failure gracefully
338
- if($dom->load($_FILES['bcn_admin_import_file']['tmp_name']))
339
- {
340
- //Have to use an xpath query otherwise we run into problems
341
- $xpath = new DOMXPath($dom);
342
- $option_sets = $xpath->query('plugin');
343
- //Loop through all of the xpath query results
344
- foreach($option_sets as $options)
345
- {
346
- //We only want to import options for Breadcrumb NavXT
347
- if($options->getAttribute('name') === 'breadcrumb_navxt')
348
- {
349
- //Do a quick version check
350
- list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
351
- list($major, $minor, $release) = explode('.', $options->getAttribute('version'));
352
- //We don't support using newer versioned option files in older releases
353
- if($plug_major == $major && $plug_minor >= $minor)
354
- {
355
- //Loop around all of the options
356
- foreach($options->getelementsByTagName('option') as $child)
357
- {
358
- //Place the option into the option array, DOMDocument decodes html entities for us
359
- $this->breadcrumb_trail->opt[$child->getAttribute('name')] = $child->nodeValue;
360
- }
361
- }
362
- }
363
- }
364
- //Commit the loaded options to the database
365
- $this->update_option('bcn_options', $this->breadcrumb_trail->opt);
366
- //Everything was successful, let the user know
367
- add_action('admin_notices', array($this, 'notify_import_success'));
368
- }
369
- else
370
- {
371
- //Throw an error since we could not load the file for various reasons
372
- add_action('admin_notices', array($this, 'notify_import_failure'));
373
- }
374
- //Reset to the default error handler after we're done
375
- restore_error_handler();
376
- }
377
- /**
378
- * update
379
- *
380
- * Updates the database settings from the webform
381
- */
382
- function update()
383
- {
384
- $this->security();
385
- //Do a nonce check, prevent malicious link/form problems
386
- check_admin_referer('bcn_admin-options');
387
-
388
- //Grab the options from the from post
389
- //Home page settings
390
- $this->breadcrumb_trail->opt['home_display'] = str2bool(bcn_get('home_display', 'false'));
391
- $this->breadcrumb_trail->opt['blog_display'] = str2bool(bcn_get('blog_display', 'false'));
392
- $this->breadcrumb_trail->opt['home_title'] = bcn_get('home_title');
393
- $this->breadcrumb_trail->opt['home_anchor'] = bcn_get('home_anchor', $this->breadcrumb_trail->opt['home_anchor']);
394
- $this->breadcrumb_trail->opt['blog_anchor'] = bcn_get('blog_anchor', $this->breadcrumb_trail->opt['blog_anchor']);
395
- $this->breadcrumb_trail->opt['home_prefix'] = bcn_get('home_prefix');
396
- $this->breadcrumb_trail->opt['home_suffix'] = bcn_get('home_suffix');
397
- $this->breadcrumb_trail->opt['separator'] = bcn_get('separator');
398
- $this->breadcrumb_trail->opt['max_title_length'] = (int) bcn_get('max_title_length');
399
- //Current item settings
400
- $this->breadcrumb_trail->opt['current_item_linked'] = str2bool(bcn_get('current_item_linked', 'false'));
401
- $this->breadcrumb_trail->opt['current_item_anchor'] = bcn_get('current_item_anchor', $this->breadcrumb_trail->opt['current_item_anchor']);
402
- $this->breadcrumb_trail->opt['current_item_prefix'] = bcn_get('current_item_prefix');
403
- $this->breadcrumb_trail->opt['current_item_suffix'] = bcn_get('current_item_suffix');
404
- //Paged settings
405
- $this->breadcrumb_trail->opt['paged_prefix'] = bcn_get('paged_prefix');
406
- $this->breadcrumb_trail->opt['paged_suffix'] = bcn_get('paged_suffix');
407
- $this->breadcrumb_trail->opt['paged_display'] = str2bool(bcn_get('paged_display', 'false'));
408
- //Page settings
409
- $this->breadcrumb_trail->opt['page_prefix'] = bcn_get('page_prefix');
410
- $this->breadcrumb_trail->opt['page_suffix'] = bcn_get('page_suffix');
411
- $this->breadcrumb_trail->opt['page_anchor'] = bcn_get('page_anchor', $this->breadcrumb_trail->opt['page_anchor']);
412
- //Post related options
413
- $this->breadcrumb_trail->opt['post_prefix'] = bcn_get('post_prefix');
414
- $this->breadcrumb_trail->opt['post_suffix'] = bcn_get('post_suffix');
415
- $this->breadcrumb_trail->opt['post_anchor'] = bcn_get('post_anchor', $this->breadcrumb_trail->opt['post_anchor']);
416
- $this->breadcrumb_trail->opt['post_taxonomy_display'] = str2bool(bcn_get('post_taxonomy_display', 'false'));
417
- $this->breadcrumb_trail->opt['post_taxonomy_type'] = bcn_get('post_taxonomy_type');
418
- //Attachment settings
419
- $this->breadcrumb_trail->opt['attachment_prefix'] = bcn_get('attachment_prefix');
420
- $this->breadcrumb_trail->opt['attachment_suffix'] = bcn_get('attachment_suffix');
421
- //404 page settings
422
- $this->breadcrumb_trail->opt['404_prefix'] = bcn_get('404_prefix');
423
- $this->breadcrumb_trail->opt['404_suffix'] = bcn_get('404_suffix');
424
- $this->breadcrumb_trail->opt['404_title'] = bcn_get('404_title');
425
- //Search page settings
426
- $this->breadcrumb_trail->opt['search_prefix'] = bcn_get('search_prefix');
427
- $this->breadcrumb_trail->opt['search_suffix'] = bcn_get('search_suffix');
428
- $this->breadcrumb_trail->opt['search_anchor'] = bcn_get('search_anchor', $this->breadcrumb_trail->opt['search_anchor']);
429
- //Tag settings
430
- $this->breadcrumb_trail->opt['tag_prefix'] = bcn_get('tag_prefix');
431
- $this->breadcrumb_trail->opt['tag_suffix'] = bcn_get('tag_suffix');
432
- $this->breadcrumb_trail->opt['tag_anchor'] = bcn_get('tag_anchor', $this->breadcrumb_trail->opt['tag_anchor']);
433
- //Author page settings
434
- $this->breadcrumb_trail->opt['author_prefix'] = bcn_get('author_prefix');
435
- $this->breadcrumb_trail->opt['author_suffix'] = bcn_get('author_suffix');
436
- $this->breadcrumb_trail->opt['author_display'] = bcn_get('author_display');
437
- //Category settings
438
- $this->breadcrumb_trail->opt['category_prefix'] = bcn_get('category_prefix');
439
- $this->breadcrumb_trail->opt['category_suffix'] = bcn_get('category_suffix');
440
- $this->breadcrumb_trail->opt['category_anchor'] = bcn_get('category_anchor', $this->breadcrumb_trail->opt['category_anchor']);
441
- //Archive settings
442
- $this->breadcrumb_trail->opt['archive_category_prefix'] = bcn_get('archive_category_prefix');
443
- $this->breadcrumb_trail->opt['archive_category_suffix'] = bcn_get('archive_category_suffix');
444
- $this->breadcrumb_trail->opt['archive_tag_prefix'] = bcn_get('archive_tag_prefix');
445
- $this->breadcrumb_trail->opt['archive_tag_suffix'] = bcn_get('archive_tag_suffix');
446
- //Archive by date settings
447
- $this->breadcrumb_trail->opt['date_anchor'] = bcn_get('date_anchor', $this->breadcrumb_trail->opt['date_anchor']);
448
- $this->breadcrumb_trail->opt['archive_date_prefix'] = bcn_get('archive_date_prefix');
449
- $this->breadcrumb_trail->opt['archive_date_suffix'] = bcn_get('archive_date_suffix');
450
- //Commit the option changes
451
- $this->update_option('bcn_options', $this->breadcrumb_trail->opt);
452
- }
453
- /**
454
- * display
455
- *
456
- * Outputs the breadcrumb trail
457
- *
458
- * @param (bool) $return Whether to return or echo the trail.
459
- * @param (bool) $linked Whether to allow hyperlinks in the trail or not.
460
- * @param (bool) $reverse Whether to reverse the output or not.
461
- */
462
- function display($return = false, $linked = true, $reverse = false)
463
- {
464
- //Update our internal settings
465
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
466
- //Generate the breadcrumb trail
467
- $this->breadcrumb_trail->fill();
468
- return $this->breadcrumb_trail->display($return, $linked, $reverse);
469
- }
470
- /**
471
- * display_list
472
- *
473
- * Outputs the breadcrumb trail
474
- *
475
- * @since 3.2.0
476
- * @param (bool) $return Whether to return or echo the trail.
477
- * @param (bool) $linked Whether to allow hyperlinks in the trail or not.
478
- * @param (bool) $reverse Whether to reverse the output or not.
479
- */
480
- function display_list($return = false, $linked = true, $reverse = false)
481
- {
482
- //Update our internal settings
483
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
484
- //Generate the breadcrumb trail
485
- $this->breadcrumb_trail->fill();
486
- return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
487
- }
488
- /**
489
- * widget
490
- *
491
- * The sidebar widget
492
- */
493
- function widget($args)
494
- {
495
- extract($args);
496
- //Manditory before widget junk
497
- echo $before_widget;
498
- //Display the breadcrumb trial
499
- if($this->breadcrumb_trail->trail[0] != NULL)
500
- {
501
- $this->breadcrumb_trail->display();
502
- }
503
- else
504
- {
505
- $this->display();
506
- }
507
- //Manditory after widget junk
508
- echo $after_widget;
509
- }
510
- /**
511
- * register_widget
512
- *
513
- * Registers the sidebar widget
514
- */
515
- function register_widget()
516
- {
517
- register_sidebar_widget('Breadcrumb NavXT', array($this, 'widget'));
518
- }
519
- /**
520
- * filter_plugin_actions
521
- *
522
- * Places in a link to the settings page in the plugins listing entry
523
- *
524
- * @param (array) $links An array of links that are output in the listing
525
- * @param (string) $file The file that is currently in processing
526
- * @return (array) Array of links that are output in the listing.
527
- */
528
- function filter_plugin_actions($links, $file)
529
- {
530
- static $this_plugin;
531
- if(!$this_plugin)
532
- {
533
- $this_plugin = plugin_basename(__FILE__);
534
- }
535
- //Make sure we are adding only for Breadcrumb NavXT
536
- if($file == $this_plugin)
537
- {
538
- //Setup the link string
539
- $settings_link = '<a href="options-general.php?page=breadcrumb-navxt">' . __('Settings') . '</a>';
540
- //Add it to the end of the array to better integrate into the WP 2.8 plugins page
541
- $links[] = $settings_link;
542
- }
543
- return $links;
544
- }
545
- /**
546
- * javascript
547
- *
548
- * Enqueues JS dependencies (jquery) for the tabs
549
- *
550
- * @see admin_init()
551
- * @return void
552
- */
553
- function javascript()
554
- {
555
- //Enqueue ui-tabs
556
- wp_enqueue_script('jquery-ui-tabs');
557
- }
558
- /**
559
- * local
560
- *
561
- * Initilizes localization textdomain for translations (if applicable)
562
- *
563
- * normally there is no need to load it because it is already loaded with
564
- * the breadcrumb class. if not, then it will be loaded.
565
- *
566
- * @return void
567
- */
568
- function local()
569
- {
570
- global $l10n;
571
- $domain = 'breadcrumb_navxt';
572
- if (!isset( $l10n[$domain] ))
573
- {
574
- load_plugin_textdomain($domain, false, 'breadcrumb-navxt/languages');
575
- }
576
- }
577
- /**
578
- * add_page
579
- *
580
- * Adds the adminpage the menue and the nice little settings link
581
- *
582
- * @return void
583
- */
584
- function add_page()
585
- {
586
- // check capability of user to manage options (access control)
587
- if(current_user_can('manage_options'))
588
- {
589
- //Add the submenu page to "settings" menu
590
- $hookname = add_submenu_page('options-general.php', __('Breadcrumb NavXT Settings', 'breadcrumb_navxt'), 'Breadcrumb NavXT', 'manage_options', 'breadcrumb-navxt', array($this, 'admin_panel'));
591
- //Register admin_head-$hookname callback
592
- add_action('admin_head-'.$hookname, array($this, 'admin_head'));
593
- //Register Help Output
594
- add_action('contextual_help', array($this, 'contextual_help'), 10, 2);
595
- }
596
- }
597
-
598
- /**
599
- * contextual_help action hook function
600
- *
601
- * @param string $contextual_help
602
- * @param string $screen
603
- * @return string
604
- */
605
- function contextual_help($contextual_help, $screen)
606
- {
607
- // add contextual help on current screen
608
- if ($screen == 'settings_page_breadcrumb-navxt')
609
- {
610
- $contextual_help = $this->_get_contextual_help();
611
- $this->_has_contextual_help = true;
612
- }
613
- return $contextual_help;
614
- }
615
-
616
- /**
617
- * get contextual help
618
- *
619
- * @return string
620
- */
621
- private function _get_contextual_help()
622
- {
623
- $t = $this->_get_help_text();
624
-
625
- $t = sprintf('<div class="metabox-prefs">%s</div>', $t);
626
-
627
- $title = __('Breadcrumb NavXT Settings', 'breadcrumb_navxt');
628
-
629
- $t = sprintf('<h5>%s</h5>%s', sprintf(__('Get help with "%s"'), $title), $t);
630
-
631
- return $t;
632
- }
633
-
634
- /**
635
- * get help text
636
- *
637
- * @return string
638
- */
639
- private function _get_help_text()
640
- {
641
- return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
642
- '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>');
643
- }
644
-
645
- /**
646
- * admin_head
647
- *
648
- * Adds in the JavaScript and CSS for the tabs in the adminsitrative
649
- * interface
650
- *
651
- */
652
- function admin_head()
653
- {
654
- // print style and script element (should go into head element)
655
- ?>
656
- <style type="text/css">
657
- /**
658
- * Tabbed Admin Page (CSS)
659
- *
660
- * @see Breadcrumb NavXT (Wordpress Plugin)
661
- * @author Tom Klingenberg
662
- * @colordef #c6d9e9 light-blue (older tabs border color, obsolete)
663
- * @colordef #dfdfdf light-grey (tabs border color)
664
- * @colordef #f9f9f9 very-light-grey (admin standard background color)
665
- * @colordef #fff white (active tab background color)
666
- */
667
- #hasadmintabs ul.ui-tabs-nav {border-bottom:1px solid #dfdfdf; font-size:12px; height:29px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:13px 0 0; overflow:visible; padding:0 0 0 8px;}
668
- #hasadmintabs ul.ui-tabs-nav li {display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;}
669
- #hasadmintabs ul.ui-tabs-nav li a {background:transparent none no-repeat scroll 0 50%; border-bottom:1px solid #dfdfdf; display:block; float:left; line-height:28px; padding:1px 13px 0; position:relative; text-decoration:none;}
670
- #hasadmintabs ul.ui-tabs-nav li.ui-tabs-selected a{-moz-border-radius-topleft:4px; -moz-border-radius-topright:4px;border:1px solid #dfdfdf; border-bottom-color:#f9f9f9; color:#333333; font-weight:normal; padding:0 12px;}
671
- #hasadmintabs ul.ui-tabs-nav a:focus, a:active {outline-color:-moz-use-text-color; outline-style:none; outline-width:medium;}
672
- #screen-options-wrap p.submit {margin:0; padding:0;}
673
- </style>
674
- <script type="text/javascript">
675
- /* <![CDATA[ */
676
- /**
677
- * Breadcrumb NavXT Admin Page (javascript/jQuery)
678
- *
679
- * unobtrusive approach to add tabbed forms into
680
- * the wordpress admin panel and various other
681
- * stuff that needs javascript with the Admin Panel.
682
- *
683
- * @see Breadcrumb NavXT (Wordpress Plugin)
684
- * @author Tom Klingenberg
685
- * @author John Havlik
686
- * @uses jQuery
687
- * @uses jQuery.ui.tabs
688
- */
689
- jQuery(function()
690
- {
691
- bcn_context_init();
692
- bcn_tabulator_init();
693
- });
694
- function bcn_confirm(type)
695
- {
696
- if(type == 'reset'){
697
- var answer = confirm("<?php _e('All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?', 'breadcrumb_navxt'); ?>");
698
- }
699
- else{
700
- var answer = confirm("<?php _e('All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?', 'breadcrumb_navxt'); ?>");
701
- }
702
- if(answer)
703
- return true;
704
- else
705
- return false;
706
- }
707
- /**
708
- * Tabulator Bootup
709
- */
710
- function bcn_tabulator_init(){
711
- /* if this is not the breadcrumb admin page, quit */
712
- if (!jQuery("#hasadmintabs").length) return;
713
- /* init markup for tabs */
714
- jQuery('#hasadmintabs').prepend("<ul><\/ul>");
715
- jQuery('#hasadmintabs > fieldset').each(function(i){
716
- id = jQuery(this).attr('id');
717
- caption = jQuery(this).find('h3').text();
718
- jQuery('#hasadmintabs > ul').append('<li><a href="#'+id+'"><span>'+caption+"<\/span><\/a><\/li>");
719
- jQuery(this).find('h3').hide();
720
- });
721
- /* init the tabs plugin */
722
- var jquiver = undefined == jQuery.ui ? [0,0,0] : undefined == jQuery.ui.version ? [0,1,0] : jQuery.ui.version.split('.');
723
- switch(true){
724
- // tabs plugin has been fixed to work on the parent element again.
725
- case jquiver[0] >= 1 && jquiver[1] >= 7:
726
- jQuery("#hasadmintabs").tabs();
727
- break;
728
- // tabs plugin has bug and needs to work on ul directly.
729
- default:
730
- jQuery("#hasadmintabs > ul").tabs();
731
- }
732
- /* handler for opening the last tab after submit (compability version) */
733
- jQuery('#hasadmintabs ul a').click(function(i){
734
- var form = jQuery('#bcn_admin_options');
735
- var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
736
- // an older bug pops up with some jQuery version(s), which makes it
737
- // necessary to set the form's action attribute by standard javascript
738
- // node access:
739
- form.get(0).setAttribute("action", action);
740
- });
741
- }
742
- /**
743
- * context screen options for import/export
744
- */
745
- function bcn_context_init(){
746
- if (!jQuery("#bcn_import_export_relocate").length) return;
747
- var jqver = undefined == jQuery.fn.jquery ? [0,0,0] : jQuery.fn.jquery.split('.');
748
- jQuery('#screen-meta').prepend(
749
- '<div id="screen-options-wrap" class="hidden"></div>'
750
- );
751
- jQuery('#screen-meta-links').append(
752
- '<div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle">' +
753
- '<a class="show-settings" id="show-settings-link" href="#screen-options"><?php printf('%s/%s/%s', __('Import', 'breadcrumb_navxt'), __('Export', 'breadcrumb_navxt'), __('Reset', 'breadcrumb_navxt')); ?></a>' +
754
- '</div>'
755
- );
756
- // jQuery Version below 1.3 (common for WP 2.7) needs some other style-classes
757
- // and jQuery events
758
- if (jqver[0] <= 1 && jqver[1] < 3){
759
- // hide-if-no-js for WP 2.8, not for WP 2.7
760
- jQuery('#screen-options-link-wrap').removeClass('hide-if-no-js');
761
- // screen settings tab (WP 2.7 legacy)
762
- jQuery('#show-settings-link').click(function () {
763
- if ( ! jQuery('#screen-options-wrap').hasClass('screen-options-open') ) {
764
- jQuery('#contextual-help-link-wrap').addClass('invisible');
765
- }
766
- jQuery('#screen-options-wrap').slideToggle('fast', function(){
767
- if ( jQuery(this).hasClass('screen-options-open') ) {
768
- jQuery('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
769
- jQuery('#contextual-help-link-wrap').removeClass('invisible');
770
- jQuery(this).removeClass('screen-options-open');
771
- } else {
772
- jQuery('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
773
- jQuery(this).addClass('screen-options-open');
774
- }
775
- });
776
- return false;
777
- });
778
- }
779
- var code = jQuery('#bcn_import_export_relocate').html();
780
- jQuery('#bcn_import_export_relocate').html('');
781
- code = code.replace(/h3>/gi, 'h5>');
782
- jQuery('#screen-options-wrap').prepend(code);
783
- }
784
- /* ]]> */
785
- </script>
786
- <?php
787
- } //function admin_head()
788
-
789
- /**
790
- * admin_panel
791
- *
792
- * The administrative panel for Breadcrumb NavXT
793
- *
794
- */
795
- function admin_panel()
796
- {
797
- $this->security();
798
- //Update our internal options array, use form safe function
799
- $this->breadcrumb_trail->opt = $this->get_option('bcn_options', true);
800
- ?>
801
- <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
802
- <p<?php if ($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
803
- print $this->_get_help_text();
804
- ?></p>
805
- <form action="options-general.php?page=breadcrumb-navxt" method="post" id="bcn_admin_options">
806
- <?php
807
- settings_fields('bcn_admin');
808
- ?>
809
- <div id="hasadmintabs">
810
- <fieldset id="general" class="bcn_options">
811
- <h3><?php _e('General', 'breadcrumb_navxt'); ?></h3>
812
- <table class="form-table">
813
- <tr valign="top">
814
- <th scope="row">
815
- <label for="separator"><?php _e('Breadcrumb Separator', 'breadcrumb_navxt'); ?></label>
816
- </th>
817
- <td>
818
- <input type="text" name="separator" id="separator" value="<?php echo $this->breadcrumb_trail->opt['separator']; ?>" size="32" /><br />
819
- <span class="setting-description"><?php _e('Placed in between each breadcrumb.', 'breadcrumb_navxt'); ?></span>
820
- </td>
821
- </tr>
822
- <tr valign="top">
823
- <th scope="row">
824
- <label for="max_title_length"><?php _e('Breadcrumb Max Title Length', 'breadcrumb_navxt'); ?></label>
825
- </th>
826
- <td>
827
- <input type="text" name="max_title_length" id="max_title_length" value="<?php echo $this->breadcrumb_trail->opt['max_title_length'];?>" size="10" />
828
- </td>
829
- </tr>
830
- <tr valign="top">
831
- <th scope="row">
832
- <?php _e('Home Breadcrumb', 'breadcrumb_navxt'); ?>
833
- </th>
834
- <td>
835
- <label>
836
- <input name="home_display" type="checkbox" id="home_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['home_display']); ?> />
837
- <?php _e('Place the home breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
838
- </label><br />
839
- <ul>
840
- <li>
841
- <label for="home_title">
842
- <?php _e('Home Title: ','breadcrumb_navxt');?>
843
- <input type="text" name="home_title" id="home_title" value="<?php echo $this->breadcrumb_trail->opt['home_title']; ?>" size="20" />
844
- </label>
845
- </li>
846
- </ul>
847
- </td>
848
- </tr>
849
- <tr valign="top">
850
- <th scope="row">
851
- <label for="blog_display"><?php _e('Blog Breadcrumb', 'breadcrumb_navxt'); ?></label>
852
- </th>
853
- <td>
854
- <label>
855
- <input name="blog_display" <?php if($this->get_option('show_on_front') !== "page"){echo 'disabled="disabled" class="disabled"';} ?> type="checkbox" id="blog_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['blog_display']); ?> />
856
- <?php _e('Place the blog breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
857
- </label>
858
- </td>
859
- </tr>
860
- <tr valign="top">
861
- <th scope="row">
862
- <label for="home_prefix"><?php _e('Home Prefix', 'breadcrumb_navxt'); ?></label>
863
- </th>
864
- <td>
865
- <input type="text" name="home_prefix" id="home_prefix" value="<?php echo $this->breadcrumb_trail->opt['home_prefix']; ?>" size="32" />
866
- </td>
867
- </tr>
868
- <tr valign="top">
869
- <th scope="row">
870
- <label for="home_suffix"><?php _e('Home Suffix', 'breadcrumb_navxt'); ?></label>
871
- </th>
872
- <td>
873
- <input type="text" name="home_suffix" id="home_suffix" value="<?php echo $this->breadcrumb_trail->opt['home_suffix']; ?>" size="32" />
874
- </td>
875
- </tr>
876
- <tr valign="top">
877
- <th scope="row">
878
- <label for="home_anchor"><?php _e('Home Anchor', 'breadcrumb_navxt'); ?></label>
879
- </th>
880
- <td>
881
- <input type="text" name="home_anchor" id="home_anchor" value="<?php echo $this->breadcrumb_trail->opt['home_anchor']; ?>" size="60" /><br />
882
- <span class="setting-description"><?php _e('The anchor template for the home breadcrumb.', 'breadcrumb_navxt'); ?></span>
883
- </td>
884
- </tr>
885
- <tr valign="top">
886
- <th scope="row">
887
- <label for="blog_anchor"><?php _e('Blog Anchor', 'breadcrumb_navxt'); ?></label>
888
- </th>
889
- <td>
 
890
  <input type="text" <?php if($this->get_option('show_on_front') !== "page"){echo 'disabled="disabled" class="disabled"';} ?> name="blog_anchor" id="blog_anchor" value="<?php echo $this->breadcrumb_trail->opt['blog_anchor']; ?>" size="60" /><br />
891
- <span class="setting-description"><?php _e('The anchor template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb_navxt'); ?></span>
892
- </td>
893
- </tr>
894
- </table>
895
- </fieldset>
896
- <fieldset id="current" class="bcn_options">
897
- <h3><?php _e('Current Item', 'breadcrumb_navxt'); ?></h3>
898
- <table class="form-table">
899
- <tr valign="top">
900
- <th scope="row">
901
- <label for="current_item_linked"><?php _e('Link Current Item', 'breadcrumb_navxt'); ?></label>
902
- </th>
903
- <td>
904
- <label>
905
- <input name="current_item_linked" type="checkbox" id="current_item_linked" value="true" <?php checked(true, $this->breadcrumb_trail->opt['current_item_linked']); ?> />
906
- <?php _e('Yes'); ?>
907
- </label>
908
- </td>
909
- </tr>
910
- <tr valign="top">
911
- <th scope="row">
912
- <label for="current_item_prefix"><?php _e('Current Item Prefix', 'breadcrumb_navxt'); ?></label>
913
- </th>
914
- <td>
915
- <input type="text" name="current_item_prefix" id="current_item_prefix" value="<?php echo $this->breadcrumb_trail->opt['current_item_prefix']; ?>" size="32" /><br />
916
- <span class="setting-description"><?php _e('This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb.', 'breadcrumb_navxt'); ?></span>
917
- </td>
918
- </tr>
919
- <tr valign="top">
920
- <th scope="row">
921
- <label for="current_item_suffix"><?php _e('Current Item Suffix', 'breadcrumb_navxt'); ?></label>
922
- </th>
923
- <td>
924
- <input type="text" name="current_item_suffix" id="current_item_suffix" value="<?php echo $this->breadcrumb_trail->opt['current_item_suffix']; ?>" size="32" /><br />
925
- <span class="setting-description"><?php _e('This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb.', 'breadcrumb_navxt'); ?></span>
926
- </td>
927
- </tr>
928
- <tr valign="top">
929
- <th scope="row">
930
- <label for="current_item_anchor"><?php _e('Current Item Anchor', 'breadcrumb_navxt'); ?></label>
931
- </th>
932
- <td>
933
- <input type="text" name="current_item_anchor" id="current_item_anchor" value="<?php echo $this->breadcrumb_trail->opt['current_item_anchor']; ?>" size="60" /><br />
934
- <span class="setting-description"><?php _e('The anchor template for current item breadcrumbs.', 'breadcrumb_navxt'); ?></span>
935
- </td>
936
- </tr>
937
- <tr valign="top">
938
- <th scope="row">
939
- <label for="paged_display"><?php _e('Paged Breadcrumb', 'breadcrumb_navxt'); ?></label>
940
- </th>
941
- <td>
942
- <label>
943
- <input name="paged_display" type="checkbox" id="paged_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['paged_display']); ?> />
944
- <?php _e('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb_navxt'); ?>
945
- </label><br />
946
- <span class="setting-description"><?php _e('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb_navxt'); ?></span>
947
- </td>
948
- </tr>
949
- <tr valign="top">
950
- <th scope="row">
951
- <label for="paged_prefix"><?php _e('Paged Prefix', 'breadcrumb_navxt'); ?></label>
952
- </th>
953
- <td>
954
- <input type="text" name="paged_prefix" id="paged_prefix" value="<?php echo $this->breadcrumb_trail->opt['paged_prefix']; ?>" size="32" />
955
- </td>
956
- </tr>
957
- <tr valign="top">
958
- <th scope="row">
959
- <label for="paged_suffix"><?php _e('Paged Suffix', 'breadcrumb_navxt'); ?></label>
960
- </th>
961
- <td>
962
- <input type="text" name="paged_suffix" id="paged_suffix" value="<?php echo $this->breadcrumb_trail->opt['paged_suffix']; ?>" size="32" />
963
- </td>
964
- </tr>
965
- </table>
966
- </fieldset>
967
- <fieldset id="single" class="bcn_options">
968
- <h3><?php _e('Posts &amp; Pages', 'breadcrumb_navxt'); ?></h3>
969
- <table class="form-table">
970
- <tr valign="top">
971
- <th scope="row">
972
- <label for="post_prefix"><?php _e('Post Prefix', 'breadcrumb_navxt'); ?></label>
973
- </th>
974
- <td>
975
- <input type="text" name="post_prefix" id="post_prefix" value="<?php echo $this->breadcrumb_trail->opt['post_prefix']; ?>" size="32" />
976
- </td>
977
- </tr>
978
- <tr valign="top">
979
- <th scope="row">
980
- <label for="post_suffix"><?php _e('Post Suffix', 'breadcrumb_navxt'); ?></label>
981
- </th>
982
- <td>
983
- <input type="text" name="post_suffix" id="post_suffix" value="<?php echo $this->breadcrumb_trail->opt['post_suffix']; ?>" size="32" />
984
- </td>
985
- </tr>
986
- <tr valign="top">
987
- <th scope="row">
988
- <label for="post_anchor"><?php _e('Post Anchor', 'breadcrumb_navxt'); ?></label>
989
- </th>
990
- <td>
991
- <input type="text" name="post_anchor" id="post_anchor" value="<?php echo $this->breadcrumb_trail->opt['post_anchor']; ?>" size="60" /><br />
992
- <span class="setting-description"><?php _e('The anchor template for post breadcrumbs.', 'breadcrumb_navxt'); ?></span>
993
- </td>
994
- </tr>
995
- <tr valign="top">
996
- <th scope="row">
997
- <?php _e('Post Taxonomy Display', 'breadcrumb_navxt'); ?>
998
- </th>
999
- <td>
1000
- <label for="post_taxonomy_display">
1001
- <input name="post_taxonomy_display" type="checkbox" id="post_taxonomy_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['post_taxonomy_display']); ?> />
1002
- <?php _e('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb_navxt'); ?>
1003
- </label>
1004
- </td>
1005
- </tr>
1006
- <tr valign="top">
1007
- <th scope="row">
1008
- <?php _e('Post Taxonomy', 'breadcrumb_navxt'); ?>
1009
- </th>
1010
- <td>
1011
- <label>
1012
- <input name="post_taxonomy_type" type="radio" value="category" class="togx" <?php checked('category', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
1013
- <?php _e('Categories'); ?>
1014
- </label>
1015
- <br/>
1016
- <label>
1017
- <input name="post_taxonomy_type" type="radio" value="tag" class="togx" <?php checked('tag', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
1018
- <?php _e('Tags'); ?>
1019
- </label>
1020
- <br/>
1021
- <span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb_navxt'); ?></span>
1022
- </td>
1023
- </tr>
1024
- <tr valign="top">
1025
- <th scope="row">
1026
- <label for="page_prefix"><?php _e('Page Prefix', 'breadcrumb_navxt'); ?></label>
1027
- </th>
1028
- <td>
1029
- <input type="text" name="page_prefix" id="page_prefix" value="<?php echo $this->breadcrumb_trail->opt['page_prefix']; ?>" size="32" />
1030
- </td>
1031
- </tr>
1032
- <tr valign="top">
1033
- <th scope="row">
1034
- <label for="page_suffix"><?php _e('Page Suffix', 'breadcrumb_navxt'); ?></label>
1035
- </th>
1036
- <td>
1037
- <input type="text" name="page_suffix" id="page_suffix" value="<?php echo $this->breadcrumb_trail->opt['page_suffix']; ?>" size="32" />
1038
- </td>
1039
- </tr>
1040
- <tr valign="top">
1041
- <th scope="row">
1042
- <label for="page_anchor"><?php _e('Page Anchor', 'breadcrumb_navxt'); ?></label>
1043
- </th>
1044
- <td>
1045
- <input type="text" name="page_anchor" id="page_anchor" value="<?php echo $this->breadcrumb_trail->opt['page_anchor']; ?>" size="60" /><br />
1046
- <span class="setting-description"><?php _e('The anchor template for page breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1047
- </td>
1048
- </tr>
1049
- <tr valign="top">
1050
- <th scope="row">
1051
- <label for="attachment_prefix"><?php _e('Attachment Prefix', 'breadcrumb_navxt'); ?></label>
1052
- </th>
1053
- <td>
1054
- <input type="text" name="attachment_prefix" id="attachment_prefix" value="<?php echo $this->breadcrumb_trail->opt['attachment_prefix']; ?>" size="32" />
1055
- </td>
1056
- </tr>
1057
- <tr valign="top">
1058
- <th scope="row">
1059
- <label for="attachment_suffix"><?php _e('Attachment Suffix', 'breadcrumb_navxt'); ?></label>
1060
- </th>
1061
- <td>
1062
- <input type="text" name="attachment_suffix" id="attachment_suffix" value="<?php echo $this->breadcrumb_trail->opt['attachment_suffix']; ?>" size="32" />
1063
- </td>
1064
- </tr>
1065
- </table>
1066
- </fieldset>
1067
- <fieldset id="category" class="bcn_options">
1068
- <h3><?php _e('Categories', 'breadcrumb_navxt'); ?></h3>
1069
- <table class="form-table">
1070
- <tr valign="top">
1071
- <th scope="row">
1072
- <label for="category_prefix"><?php _e('Category Prefix', 'breadcrumb_navxt'); ?></label>
1073
- </th>
1074
- <td>
1075
- <input type="text" name="category_prefix" id="category_prefix" value="<?php echo $this->breadcrumb_trail->opt['category_prefix']; ?>" size="32" /><br />
1076
- <span class="setting-description"><?php _e('Applied before the anchor on all category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1077
- </td>
1078
- </tr>
1079
- <tr valign="top">
1080
- <th scope="row">
1081
- <label for="category_suffix"><?php _e('Category Suffix', 'breadcrumb_navxt'); ?></label>
1082
- </th>
1083
- <td>
1084
- <input type="text" name="category_suffix" id="category_suffix" value="<?php echo $this->breadcrumb_trail->opt['category_suffix']; ?>" size="32" /><br />
1085
- <span class="setting-description"><?php _e('Applied after the anchor on all category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1086
- </td>
1087
- </tr>
1088
- <tr valign="top">
1089
- <th scope="row">
1090
- <label for="category_anchor"><?php _e('Category Anchor', 'breadcrumb_navxt'); ?></label>
1091
- </th>
1092
- <td>
1093
- <input type="text" name="category_anchor" id="category_anchor" value="<?php echo $this->breadcrumb_trail->opt['category_anchor']; ?>" size="60" /><br />
1094
- <span class="setting-description"><?php _e('The anchor template for category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1095
- </td>
1096
- </tr>
1097
- <tr valign="top">
1098
- <th scope="row">
1099
- <label for="archive_category_prefix"><?php _e('Archive by Category Prefix', 'breadcrumb_navxt'); ?></label>
1100
- </th>
1101
- <td>
1102
- <input type="text" name="archive_category_prefix" id="archive_category_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_category_prefix']; ?>" size="32" /><br />
1103
- <span class="setting-description"><?php _e('Applied before the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'); ?></span>
1104
- </td>
1105
- </tr>
1106
- <tr valign="top">
1107
- <th scope="row">
1108
- <label for="archive_category_suffix"><?php _e('Archive by Category Suffix', 'breadcrumb_navxt'); ?></label>
1109
- </th>
1110
- <td>
1111
- <input type="text" name="archive_category_suffix" id="archive_category_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_category_suffix']; ?>" size="32" /><br />
1112
- <span class="setting-description"><?php _e('Applied after the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'); ?></span>
1113
- </td>
1114
- </tr>
1115
- </table>
1116
- </fieldset>
1117
- <fieldset id="tag" class="bcn_options">
1118
- <h3><?php _e('Tags', 'breadcrumb_navxt'); ?></h3>
1119
- <table class="form-table">
1120
- <tr valign="top">
1121
- <th scope="row">
1122
- <label for="tag_prefix"><?php _e('Tag Prefix', 'breadcrumb_navxt'); ?></label>
1123
- </th>
1124
- <td>
1125
- <input type="text" name="tag_prefix" id="tag_prefix" value="<?php echo $this->breadcrumb_trail->opt['tag_prefix']; ?>" size="32" /><br />
1126
- <span class="setting-description"><?php _e('Applied before the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1127
- </td>
1128
- </tr>
1129
- <tr valign="top">
1130
- <th scope="row">
1131
- <label for="tag_suffix"><?php _e('Tag Suffix', 'breadcrumb_navxt'); ?></label>
1132
- </th>
1133
- <td>
1134
- <input type="text" name="tag_suffix" id="tag_suffix" value="<?php echo $this->breadcrumb_trail->opt['tag_suffix']; ?>" size="32" /><br />
1135
- <span class="setting-description"><?php _e('Applied after the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1136
- </td>
1137
- </tr>
1138
- <tr valign="top">
1139
- <th scope="row">
1140
- <label for="tag_anchor"><?php _e('Tag Anchor', 'breadcrumb_navxt'); ?></label>
1141
- </th>
1142
- <td>
1143
- <input type="text" name="tag_anchor" id="tag_anchor" value="<?php echo $this->breadcrumb_trail->opt['tag_anchor']; ?>" size="60" /><br />
1144
- <span class="setting-description"><?php _e('The anchor template for tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1145
- </td>
1146
- </tr>
1147
- <tr valign="top">
1148
- <th scope="row">
1149
- <label for="archive_tag_prefix"><?php _e('Archive by Tag Prefix', 'breadcrumb_navxt'); ?></label>
1150
- </th>
1151
- <td>
1152
- <input type="text" name="archive_tag_prefix" id="archive_tag_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_tag_prefix']; ?>" size="32" /><br />
1153
- <span class="setting-description"><?php _e('Applied before the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'); ?></span>
1154
- </td>
1155
- </tr>
1156
- <tr valign="top">
1157
- <th scope="row">
1158
- <label for="archive_tag_suffix"><?php _e('Archive by Tag Suffix', 'breadcrumb_navxt'); ?></label>
1159
- </th>
1160
- <td>
1161
- <input type="text" name="archive_tag_suffix" id="archive_tag_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_tag_suffix']; ?>" size="32" /><br />
1162
- <span class="setting-description"><?php _e('Applied after the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'); ?></span>
1163
- </td>
1164
- </tr>
1165
- </table>
1166
- </fieldset>
1167
- <fieldset id="date" class="bcn_options">
1168
- <h3><?php _e('Date Archives', 'breadcrumb_navxt'); ?></h3>
1169
- <table class="form-table">
1170
- <tr valign="top">
1171
- <th scope="row">
1172
- <label for="archive_date_prefix"><?php _e('Archive by Date Prefix', 'breadcrumb_navxt'); ?></label>
1173
- </th>
1174
- <td>
1175
- <input type="text" name="archive_date_prefix" id="archive_date_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_date_prefix']; ?>" size="32" /><br />
1176
- <span class="setting-description"><?php _e('Applied before the anchor on all date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1177
- </td>
1178
- </tr>
1179
- <tr valign="top">
1180
- <th scope="row">
1181
- <label for="archive_date_suffix"><?php _e('Archive by Date Suffix', 'breadcrumb_navxt'); ?></label>
1182
- </th>
1183
- <td>
1184
- <input type="text" name="archive_date_suffix" id="archive_date_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_date_suffix']; ?>" size="32" /><br />
1185
- <span class="setting-description"><?php _e('Applied after the anchor on all date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1186
- </td>
1187
- </tr>
1188
- <tr valign="top">
1189
- <th scope="row">
1190
- <label for="date_anchor"><?php _e('Date Anchor', 'breadcrumb_navxt'); ?></label>
1191
- </th>
1192
- <td>
1193
- <input type="text" name="date_anchor" id="date_anchor" value="<?php echo $this->breadcrumb_trail->opt['date_anchor']; ?>" size="60" /><br />
1194
- <span class="setting-description"><?php _e('The anchor template for date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1195
- </td>
1196
- </tr>
1197
- </table>
1198
- </fieldset>
1199
- <fieldset id="miscellaneous" class="bcn_options">
1200
- <h3><?php _e('Miscellaneous', 'breadcrumb_navxt'); ?></h3>
1201
- <table class="form-table">
1202
- <tr valign="top">
1203
- <th scope="row">
1204
- <label for="author_prefix"><?php _e('Author Prefix', 'breadcrumb_navxt'); ?></label>
1205
- </th>
1206
- <td>
1207
- <input type="text" name="author_prefix" id="author_prefix" value="<?php echo $this->breadcrumb_trail->opt['author_prefix']; ?>" size="32" />
1208
- </td>
1209
- </tr>
1210
- <tr valign="top">
1211
- <th scope="row">
1212
- <label for="author_suffix"><?php _e('Author Suffix', 'breadcrumb_navxt'); ?></label>
1213
- </th>
1214
- <td>
1215
- <input type="text" name="author_suffix" id="author_suffix" value="<?php echo $this->breadcrumb_trail->opt['author_suffix']; ?>" size="32" />
1216
- </td>
1217
- </tr>
1218
- <tr valign="top">
1219
- <th scope="row">
1220
- <label for="author_display"><?php _e('Author Display Format', 'breadcrumb_navxt'); ?></label>
1221
- </th>
1222
- <td>
1223
- <select name="author_display" id="author_display">
1224
- <?php $this->select_options('author_display', array("display_name", "nickname", "first_name", "last_name")); ?>
1225
- </select><br />
1226
- <span class="setting-description"><?php _e('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'); ?></span>
1227
- </td>
1228
- </tr>
1229
- <tr valign="top">
1230
- <th scope="row">
1231
- <label for="search_prefix"><?php _e('Search Prefix', 'breadcrumb_navxt'); ?></label>
1232
- </th>
1233
- <td>
1234
- <input type="text" name="search_prefix" id="search_prefix" value="<?php echo $this->breadcrumb_trail->opt['search_prefix']; ?>" size="32" />
1235
- </td>
1236
- </tr>
1237
- <tr valign="top">
1238
- <th scope="row">
1239
- <label for="search_suffix"><?php _e('Search Suffix', 'breadcrumb_navxt'); ?></label>
1240
- </th>
1241
- <td>
1242
- <input type="text" name="search_suffix" id="search_suffix" value="<?php echo $this->breadcrumb_trail->opt['search_suffix']; ?>" size="32" />
1243
- </td>
1244
- </tr>
1245
- <tr valign="top">
1246
- <th scope="row">
1247
- <label for="search_anchor"><?php _e('Search Anchor', 'breadcrumb_navxt'); ?></label>
1248
- </th>
1249
- <td>
1250
- <input type="text" name="search_anchor" id="search_anchor" value="<?php echo $this->breadcrumb_trail->opt['search_anchor']; ?>" size="60" /><br />
1251
- <span class="setting-description"><?php _e('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb_navxt'); ?></span>
1252
- </td>
1253
- </tr>
1254
- <tr valign="top">
1255
- <th scope="row">
1256
- <label for="id404_title"><?php _e('404 Title', 'breadcrumb_navxt'); ?></label>
1257
- </th>
1258
- <td>
1259
- <input type="text" name="404_title" id="id404_title" value="<?php echo $this->breadcrumb_trail->opt['404_title']; ?>" size="32" />
1260
- </td>
1261
- </tr>
1262
- <tr valign="top">
1263
- <th scope="row">
1264
- <label for="id404_prefix"><?php _e('404 Prefix', 'breadcrumb_navxt'); ?></label>
1265
- </th>
1266
- <td>
1267
- <input type="text" name="404_prefix" id="id404_prefix" value="<?php echo $this->breadcrumb_trail->opt['404_prefix']; ?>" size="32" />
1268
- </td>
1269
- </tr>
1270
- <tr valign="top">
1271
- <th scope="row">
1272
- <label for="id404_suffix"><?php _e('404 Suffix', 'breadcrumb_navxt'); ?></label>
1273
- </th>
1274
- <td>
1275
- <input type="text" name="404_suffix" id="id404_suffix" value="<?php echo $this->breadcrumb_trail->opt['404_suffix']; ?>" size="32" />
1276
- </td>
1277
- </tr>
1278
- </table>
1279
- </fieldset>
1280
- </div>
1281
- <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php _e('Save Changes') ?>" /></p>
1282
- </form>
1283
- <div id="bcn_import_export_relocate">
1284
- <form action="options-general.php?page=breadcrumb-navxt" method="post" enctype="multipart/form-data" id="bcn_admin_upload">
1285
- <?php wp_nonce_field('bcn_admin_upload');?>
1286
- <fieldset id="import_export" class="bcn_options">
1287
- <h3><?php _e('Import/Export/Reset Settings', 'breadcrumb_navxt'); ?></h3>
1288
- <p><?php _e('Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings.', 'breadcrumb_navxt');?></p>
1289
- <table class="form-table">
1290
- <tr valign="top">
1291
- <th scope="row">
1292
- <label for="bcn_admin_import_file"><?php _e('Settings File', 'breadcrumb_navxt'); ?></label>
1293
- </th>
1294
- <td>
1295
- <input type="file" name="bcn_admin_import_file" id="bcn_admin_import_file" size="32"/><br />
1296
- <span class="setting-description"><?php _e('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt'); ?></span>
1297
- </td>
1298
- </tr>
1299
- </table>
1300
- <p class="submit">
1301
- <input type="submit" class="button" name="bcn_admin_import" value="<?php _e('Import', 'breadcrumb_navxt') ?>" onclick="return bcn_confirm('import')" />
1302
- <input type="submit" class="button" name="bcn_admin_export" value="<?php _e('Export', 'breadcrumb_navxt') ?>" />
1303
- <input type="submit" class="button" name="bcn_admin_reset" value="<?php _e('Reset', 'breadcrumb_navxt') ?>" onclick="return bcn_confirm('reset')" />
1304
- </p>
1305
- </fieldset>
1306
- </form>
1307
- </div>
1308
- </div>
1309
- <?php
1310
- }
1311
- /**
1312
- * select_options
1313
- *
1314
- * Displays wordpress options as <seclect> options defaults to true/false
1315
- *
1316
- * @param (string) optionname name of wordpress options store
1317
- * @param (array) options array of names of options that can be selected
1318
- */
1319
- function select_options($optionname, $options)
1320
- {
1321
- $value = $this->breadcrumb_trail->opt[$optionname];
1322
- //First output the current value
1323
- if ($value)
1324
- {
1325
- printf('<option>%s</option>', $value);
1326
- }
1327
- //Now do the rest
1328
- foreach($options as $option)
1329
- {
1330
- //Don't want multiple occurance of the current value
1331
- if($option != $value)
1332
- {
1333
- printf('<option>%s</option>', $option);
1334
- }
1335
- }
1336
- }
1337
- /**
1338
- * add_option
1339
- *
1340
- * This inserts the value into the option name, WPMU safe
1341
- *
1342
- * @param (string) key name where to save the value in $value
1343
- * @param (mixed) value to insert into the options db
1344
- * @return (bool)
1345
- */
1346
- function add_option($key, $value)
1347
- {
1348
- return add_option($key, $value);
1349
- }
1350
- /**
1351
- * delete_option
1352
- *
1353
- * This removes the option name, WPMU safe
1354
- *
1355
- * @param (string) key name of the option to remove
1356
- * @return (bool)
1357
- */
1358
- function delete_option($key)
1359
- {
1360
- return delete_option($key);
1361
- }
1362
- /**
1363
- * update_option
1364
- *
1365
- * This updates the value into the option name, WPMU safe
1366
- *
1367
- * @param (string) key name where to save the value in $value
1368
- * @param (mixed) value to insert into the options db
1369
- * @return (bool)
1370
- */
1371
- function update_option($key, $value)
1372
- {
1373
- return update_option($key, $value);
1374
- }
1375
- /**
1376
- * get_option
1377
- *
1378
- * This grabs the the data from the db it is WPMU safe and can place the data
1379
- * in a HTML form safe manner.
1380
- *
1381
- * @param (string) key name of the wordpress option to get
1382
- * @param (bool) safe output for HTML forms (default: false)
1383
- * @return (mixed) value of option
1384
- */
1385
- function get_option($key, $safe = false)
1386
- {
1387
- $db_data = get_option($key);
1388
- if($safe)
1389
- {
1390
- //If we get an array, we should loop through all of its members
1391
- if(is_array($db_data))
1392
- {
1393
- //Loop through all the members
1394
- foreach($db_data as $key=>$item)
1395
- {
1396
- //We ignore anything but strings
1397
- if(is_string($item))
1398
- {
1399
- $db_data[$key] = htmlentities($item, ENT_COMPAT, 'UTF-8');
1400
- }
1401
- }
1402
- }
1403
- else
1404
- {
1405
- $db_data = htmlentities($db_data, ENT_COMPAT, 'UTF-8');
1406
- }
1407
- }
1408
- return $db_data;
1409
- }
1410
- /**
1411
- * notify
1412
- *
1413
- * Output a 'notify' box with a message after an event occurs
1414
- *
1415
- * @param $message string the message to deliver
1416
- * @param $error bool[optional] is the message an error?
1417
- */
1418
- function notify($message, $error = false)
1419
- {
1420
- //If the message is an error use the appropriate class
1421
- $class = $error ? 'error' : 'updated fade';
1422
- printf('<div class="%s"><p>%s</p></div>', $class, $message);
1423
- }
1424
-
1425
- /**
1426
- * callback function for admin_notices
1427
- *
1428
- * @return void
1429
- */
1430
- function notify_import_failure()
1431
- {
1432
- $this->notify(__('Importing settings from file failed.', 'breadcrumb_navxt'), true);
1433
- }
1434
-
1435
- /**
1436
- * callback function for admin_notices
1437
- *
1438
- * @return void
1439
- */
1440
- function notify_import_success()
1441
- {
1442
- $this->notify(__('The Breadcrumb NavXT settings were successfully imported from file.', 'breadcrumb_navxt'));
1443
- }
1444
-
1445
- /**
1446
- * callback function for admin_notices
1447
- *
1448
- * @return void
1449
- */
1450
- function notify_reset()
1451
- {
1452
- $this->notify(__('The Breadcrumb NavXT settings were reset to the default values.', 'breadcrumb_navxt'));
1453
- }
1454
- }
1455
- //Let's make an instance of our object takes care of everything
1456
- $bcn_admin = new bcn_admin;
1457
- /**
1458
- * A wrapper for the internal function in the class
1459
- *
1460
- * @param bool $return Whether to return or echo the trail. (optional)
1461
- * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
1462
- * @param bool $reverse Whether to reverse the output or not. (optional)
1463
- */
1464
- function bcn_display($return = false, $linked = true, $reverse = false)
1465
- {
1466
- global $bcn_admin;
1467
- return $bcn_admin->display($return, $linked, $reverse);
1468
- }
1469
- /**
1470
- * A wrapper for the internal function in the class
1471
- *
1472
- * @param bool $return Whether to return or echo the trail. (optional)
1473
- * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
1474
- * @param bool $reverse Whether to reverse the output or not. (optional)
1475
- */
1476
- function bcn_display_list($return = false, $linked = true, $reverse = false)
1477
- {
1478
- global $bcn_admin;
1479
- return $bcn_admin->display_list($return, $linked, $reverse);
1480
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ Plugin Name: Breadcrumb NavXT
4
+ Plugin URI: http://mtekk.weblogs.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.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
6
+ Version: 3.4.0
7
+ Author: John Havlik
8
+ Author URI: http://mtekk.weblogs.us/
9
+ */
10
+ /* Copyright 2007-2009 John Havlik (email : mtekkmonkey@gmail.com)
11
+
12
+ This program is free software; you can redistribute it and/or modify
13
+ it under the terms of the GNU General Public License as published by
14
+ the Free Software Foundation; either version 2 of the License, or
15
+ (at your option) any later version.
16
+
17
+ This program is distributed in the hope that it will be useful,
18
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
19
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
+ GNU General Public License for more details.
21
+
22
+ You should have received a copy of the GNU General Public License
23
+ along with this program; if not, write to the Free Software
24
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25
+ */
26
+ //Include the breadcrumb class
27
+ require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
28
+ //Include the supplemental functions
29
+ require_once(dirname(__FILE__) . '/breadcrumb_navxt_api.php');
30
+ /**
31
+ * The administrative interface class
32
+ *
33
+ * @since 3.0.0
34
+ */
35
+ class bcn_admin
36
+ {
37
+ /**
38
+ * local store for breadcrumb version
39
+ *
40
+ * Example: String '3.1.0'
41
+ *
42
+ * @var string
43
+ * @since 3.1.0
44
+ */
45
+ private $version = '3.4.0';
46
+
47
+ /**
48
+ * wether or not this administration page has contextual help
49
+ *
50
+ * @var bool
51
+ * @since 3.2
52
+ */
53
+ private $_has_contextual_help = false;
54
+
55
+ /**
56
+ * local store for the breadcrumb object
57
+ *
58
+ * @see bcn_admin()
59
+ * @var bcn_breadcrumb
60
+ * @since 3.0
61
+ */
62
+ public $breadcrumb_trail;
63
+ /**
64
+ * bcn_admin
65
+ *
66
+ * Administrative interface class default constructor
67
+ */
68
+ function bcn_admin()
69
+ {
70
+ //We'll let it fail fataly if the class isn't there as we depend on it
71
+ $this->breadcrumb_trail = new bcn_breadcrumb_trail;
72
+ //Installation Script hook
73
+ add_action('activate_breadcrumb-navxt/breadcrumb_navxt_admin.php', array($this, 'install'));
74
+ //Initilizes l10n domain
75
+ $this->local();
76
+ //WordPress Admin interface hook
77
+ add_action('admin_menu', array($this, 'add_page'));
78
+ //WordPress Hook for the widget
79
+ add_action('plugins_loaded', array($this, 'register_widget'));
80
+ //Admin Options update hook
81
+ if(isset($_POST['bcn_admin_options']))
82
+ {
83
+ //Temporarily add update function on init if form has been submitted
84
+ add_action('init', array($this, 'update'));
85
+ }
86
+ //Admin Options reset hook
87
+ if(isset($_POST['bcn_admin_reset']))
88
+ {
89
+ //Temporarily add reset function on init if reset form has been submitted
90
+ add_action('init', array($this, 'reset'));
91
+ }
92
+ //Admin Options export hook
93
+ else if(isset($_POST['bcn_admin_export']))
94
+ {
95
+ //Temporarily add export function on init if export form has been submitted
96
+ add_action('init', array($this, 'export'));
97
+ }
98
+ //Admin Options import hook
99
+ else if(isset($_FILES['bcn_admin_import_file']) && !empty($_FILES['bcn_admin_import_file']['name']))
100
+ {
101
+ //Temporarily add import function on init if import form has been submitted
102
+ add_action('init', array($this, 'import'));
103
+ }
104
+ //Admin Init Hook
105
+ add_action('admin_init', array($this, 'admin_init'));
106
+ }
107
+ /**
108
+ * admin initialisation callback function
109
+ *
110
+ * is bound to wpordpress action 'admin_init' on instantiation
111
+ *
112
+ * @since 3.2.0
113
+ * @return void
114
+ */
115
+ public function admin_init()
116
+ {
117
+ // Register options.
118
+ register_setting($option_group = 'bcn_admin', $option_name = 'bcn_options', $sanitize_callback = '');
119
+ //Add in the nice "settings" link to the plugins page
120
+ add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
121
+ //Add javascript enqeueing callback
122
+ add_action('wp_print_scripts', array($this, 'javascript'));
123
+ }
124
+ /**
125
+ * security
126
+ *
127
+ * Makes sure the current user can manage options to proceed
128
+ */
129
+ function security()
130
+ {
131
+ //If the user can not manage options we will die on them
132
+ if(!current_user_can('manage_options'))
133
+ {
134
+ _e('Insufficient privileges to proceed.', 'breadcrumb_navxt');
135
+ die();
136
+ }
137
+ }
138
+ /**
139
+ * install
140
+ *
141
+ * This sets up and upgrades the database settings, runs on every activation
142
+ */
143
+ function install()
144
+ {
145
+ //Call our little security function
146
+ $this->security();
147
+ //Initilize the options
148
+ $this->breadcrumb_trail = new bcn_breadcrumb_trail;
149
+ //Reduce db queries by saving this
150
+ $db_version = $this->get_option('bcn_version');
151
+ //If our version is not the same as in the db, time to update
152
+ if($db_version !== $this->version)
153
+ {
154
+ //Split up the db version into it's components
155
+ list($major, $minor, $release) = explode('.', $db_version);
156
+ //For upgrading from 2.x.x
157
+ if($major == 2)
158
+ {
159
+ //Delete old options
160
+ $delete_options = array
161
+ (
162
+ 'bcn_preserve', 'bcn_static_frontpage', 'bcn_url_blog',
163
+ 'bcn_home_display', 'bcn_home_link', 'bcn_title_home',
164
+ 'bcn_title_blog', 'bcn_separator', 'bcn_search_prefix',
165
+ 'bcn_search_suffix', 'bcn_author_prefix', 'bcn_author_suffix',
166
+ 'bcn_author_display', 'bcn_singleblogpost_prefix',
167
+ 'bcn_singleblogpost_suffix', 'bcn_page_prefix', 'bcn_page_suffix',
168
+ 'bcn_urltitle_prefix', 'bcn_urltitle_suffix',
169
+ 'bcn_archive_category_prefix', 'bcn_archive_category_suffix',
170
+ 'bcn_archive_date_prefix', 'bcn_archive_date_suffix',
171
+ 'bcn_archive_date_format', 'bcn_attachment_prefix',
172
+ 'bcn_attachment_suffix', 'bcn_archive_tag_prefix',
173
+ 'bcn_archive_tag_suffix', 'bcn_title_404', 'bcn_link_current_item',
174
+ 'bcn_current_item_urltitle', 'bcn_current_item_style_prefix',
175
+ 'bcn_current_item_style_suffix', 'bcn_posttitle_maxlen',
176
+ 'bcn_paged_display', 'bcn_paged_prefix', 'bcn_paged_suffix',
177
+ 'bcn_singleblogpost_taxonomy', 'bcn_singleblogpost_taxonomy_display',
178
+ 'bcn_singleblogpost_category_prefix', 'bcn_singleblogpost_category_suffix',
179
+ 'bcn_singleblogpost_tag_prefix', 'bcn_singleblogpost_tag_suffix'
180
+ );
181
+ foreach ($delete_options as $option)
182
+ {
183
+ $this->delete_option($option);
184
+ }
185
+ }
186
+ else if($major == 3 && $minor == 0)
187
+ {
188
+ //Update our internal settings
189
+ $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
190
+ $this->breadcrumb_trail->opt['search_anchor'] = __('<a title="Go to the first page of search results for %title%." href="%link%">','breadcrumb_navxt');
191
+ }
192
+ else if($major == 3 && $minor < 3)
193
+ {
194
+ //Update our internal settings
195
+ $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
196
+ $this->breadcrumb_trail->opt['blog_display'] = true;
197
+ }
198
+ else if($major == 3 && $minor < 4)
199
+ {
200
+ //Inline upgrade of the tag setting
201
+ if($this->breadcrumb_trail->opt['post_taxonomy_type'] === 'tag')
202
+ {
203
+ $this->breadcrumb_trail->opt['post_taxonomy_type'] = 'post_tag';
204
+ }
205
+ //Fix our tag settings
206
+ $this->breadcrumb_trail->opt['archive_post_tag_prefix'] = $this->breadcrumb_trail->opt['archive_tag_prefix'];
207
+ $this->breadcrumb_trail->opt['archive_post_tag_suffix'] = $this->breadcrumb_trail->opt['archive_tag_suffix'];
208
+ $this->breadcrumb_trail->opt['post_tag_prefix'] = $this->breadcrumb_trail->opt['tag_prefix'];
209
+ $this->breadcrumb_trail->opt['post_tag_suffix'] = $this->breadcrumb_trail->opt['tag_suffix'];
210
+ $this->breadcrumb_trail->opt['post_tag_anchor'] = $this->breadcrumb_trail->opt['tag_anchor'];
211
+ }
212
+ //Always have to update the version
213
+ $this->update_option('bcn_version', $this->version);
214
+ //Store the options
215
+ $this->add_option('bcn_options', $this->breadcrumb_trail->opt);
216
+ }
217
+ //Check if we have valid anchors
218
+ if($temp = $this->get_option('bcn_options'))
219
+ {
220
+ //Missing the blog anchor is a bug from 3.0.0/3.0.1 so we soft error that one
221
+ if(strlen($temp['blog_anchor']) == 0)
222
+ {
223
+ $temp['blog_anchor'] = $this->breadcrumb_trail->opt['blog_anchor'];
224
+ $this->update_option('bcn_options', $temp);
225
+ }
226
+ else if(strlen($temp['home_anchor']) == 0 ||
227
+ strlen($temp['blog_anchor']) == 0 ||
228
+ strlen($temp['page_anchor']) == 0 ||
229
+ strlen($temp['post_anchor']) == 0 ||
230
+ strlen($temp['tag_anchor']) == 0 ||
231
+ strlen($temp['date_anchor']) == 0 ||
232
+ strlen($temp['category_anchor']) == 0)
233
+ {
234
+ $this->delete_option('bcn_options');
235
+ $this->add_option('bcn_options', $this->breadcrumb_trail->opt);
236
+ }
237
+ }
238
+ }
239
+ /**
240
+ * reset
241
+ *
242
+ * Resets the options to the default values
243
+ */
244
+ function reset()
245
+ {
246
+ $this->security();
247
+ //Do a nonce check, prevent malicious link/form problems
248
+ check_admin_referer('bcn_admin_upload');
249
+ //Only needs this one line, will load in the hard coded default option values
250
+ $this->update_option('bcn_options', $this->breadcrumb_trail->opt);
251
+ //Reset successful, let the user know
252
+ add_action('admin_notices', array($this, 'notify_reset'));
253
+ }
254
+ /**
255
+ * export
256
+ *
257
+ * Exports the database settings to a XML document
258
+ */
259
+ function export()
260
+ {
261
+ $this->security();
262
+ //Do a nonce check, prevent malicious link/form problems
263
+ check_admin_referer('bcn_admin_upload');
264
+ //Update our internal settings
265
+ $this->breadcrumb_trail->opt = $this->get_option('bcn_options', true);
266
+ //Create a DOM document
267
+ $dom = new DOMDocument('1.0', 'UTF-8');
268
+ //Adds in newlines and tabs to the output
269
+ $dom->formatOutput = true;
270
+ //We're not using a DTD therefore we need to specify it as a standalone document
271
+ $dom->xmlStandalone = true;
272
+ //Add an element called options
273
+ $node = $dom->createElement('options');
274
+ $parnode = $dom->appendChild($node);
275
+ //Add a child element named plugin
276
+ $node = $dom->createElement('plugin');
277
+ $plugnode = $parnode->appendChild($node);
278
+ //Add some attributes that identify the plugin and version for the options export
279
+ $plugnode->setAttribute('name', 'breadcrumb_navxt');
280
+ $plugnode->setAttribute('version', $this->version);
281
+ //Change our headder to text/xml for direct save
282
+ header('Cache-Control: public');
283
+ //The next two will cause good browsers to download instead of displaying the file
284
+ header('Content-Description: File Transfer');
285
+ header('Content-disposition: attachemnt; filename=bcn_settings.xml');
286
+ header('Content-Type: text/xml');
287
+ //Loop through the options array
288
+ foreach($this->breadcrumb_trail->opt as $key=>$option)
289
+ {
290
+ //Add a option tag under the options tag, store the option value
291
+ $node = $dom->createElement('option', $option);
292
+ $newnode = $plugnode->appendChild($node);
293
+ //Change the tag's name to that of the stored option
294
+ $newnode->setAttribute('name', $key);
295
+ }
296
+ //Prepair the XML for output
297
+ $output = $dom->saveXML();
298
+ //Let the browser know how long the file is
299
+ header('Content-Length: ' . strlen($output)); // binary length
300
+ //Output the file
301
+ echo $output;
302
+ //Prevent WordPress from continuing on
303
+ die();
304
+ }
305
+ /**
306
+ * import
307
+ *
308
+ * Imports a XML options document
309
+ */
310
+ function import()
311
+ {
312
+ //Our quick and dirty error supressor
313
+ function error($errno, $errstr, $eerfile, $errline)
314
+ {
315
+ return true;
316
+ }
317
+ $this->security();
318
+ //Do a nonce check, prevent malicious link/form problems
319
+ check_admin_referer('bcn_admin_upload');
320
+ //Create a DOM document
321
+ $dom = new DOMDocument('1.0', 'UTF-8');
322
+ //We want to catch errors ourselves
323
+ set_error_handler('error');
324
+ //Load the user uploaded file, handle failure gracefully
325
+ if($dom->load($_FILES['bcn_admin_import_file']['tmp_name']))
326
+ {
327
+ //Have to use an xpath query otherwise we run into problems
328
+ $xpath = new DOMXPath($dom);
329
+ $option_sets = $xpath->query('plugin');
330
+ //Loop through all of the xpath query results
331
+ foreach($option_sets as $options)
332
+ {
333
+ //We only want to import options for Breadcrumb NavXT
334
+ if($options->getAttribute('name') === 'breadcrumb_navxt')
335
+ {
336
+ //Do a quick version check
337
+ list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
338
+ list($major, $minor, $release) = explode('.', $options->getAttribute('version'));
339
+ //We don't support using newer versioned option files in older releases
340
+ if($plug_major == $major && $plug_minor >= $minor)
341
+ {
342
+ //Loop around all of the options
343
+ foreach($options->getelementsByTagName('option') as $child)
344
+ {
345
+ //Place the option into the option array, DOMDocument decodes html entities for us
346
+ $this->breadcrumb_trail->opt[$child->getAttribute('name')] = $child->nodeValue;
347
+ }
348
+ }
349
+ }
350
+ }
351
+ //Commit the loaded options to the database
352
+ $this->update_option('bcn_options', $this->breadcrumb_trail->opt);
353
+ //Everything was successful, let the user know
354
+ add_action('admin_notices', array($this, 'notify_import_success'));
355
+ }
356
+ else
357
+ {
358
+ //Throw an error since we could not load the file for various reasons
359
+ add_action('admin_notices', array($this, 'notify_import_failure'));
360
+ }
361
+ //Reset to the default error handler after we're done
362
+ restore_error_handler();
363
+ }
364
+ /**
365
+ * update
366
+ *
367
+ * Updates the database settings from the webform
368
+ */
369
+ function update()
370
+ {
371
+ global $wp_taxonomies;
372
+ $this->security();
373
+ //Do a nonce check, prevent malicious link/form problems
374
+ check_admin_referer('bcn_admin-options');
375
+
376
+ //Grab the options from the from post
377
+ //Home page settings
378
+ $this->breadcrumb_trail->opt['home_display'] = str2bool(bcn_get('home_display', 'false'));
379
+ $this->breadcrumb_trail->opt['blog_display'] = str2bool(bcn_get('blog_display', 'false'));
380
+ $this->breadcrumb_trail->opt['home_title'] = bcn_get('home_title');
381
+ $this->breadcrumb_trail->opt['home_anchor'] = bcn_get('home_anchor', $this->breadcrumb_trail->opt['home_anchor']);
382
+ $this->breadcrumb_trail->opt['blog_anchor'] = bcn_get('blog_anchor', $this->breadcrumb_trail->opt['blog_anchor']);
383
+ $this->breadcrumb_trail->opt['home_prefix'] = bcn_get('home_prefix');
384
+ $this->breadcrumb_trail->opt['home_suffix'] = bcn_get('home_suffix');
385
+ $this->breadcrumb_trail->opt['separator'] = bcn_get('separator');
386
+ $this->breadcrumb_trail->opt['max_title_length'] = (int) bcn_get('max_title_length');
387
+ //Current item settings
388
+ $this->breadcrumb_trail->opt['current_item_linked'] = str2bool(bcn_get('current_item_linked', 'false'));
389
+ $this->breadcrumb_trail->opt['current_item_anchor'] = bcn_get('current_item_anchor', $this->breadcrumb_trail->opt['current_item_anchor']);
390
+ $this->breadcrumb_trail->opt['current_item_prefix'] = bcn_get('current_item_prefix');
391
+ $this->breadcrumb_trail->opt['current_item_suffix'] = bcn_get('current_item_suffix');
392
+ //Paged settings
393
+ $this->breadcrumb_trail->opt['paged_prefix'] = bcn_get('paged_prefix');
394
+ $this->breadcrumb_trail->opt['paged_suffix'] = bcn_get('paged_suffix');
395
+ $this->breadcrumb_trail->opt['paged_display'] = str2bool(bcn_get('paged_display', 'false'));
396
+ //Page settings
397
+ $this->breadcrumb_trail->opt['page_prefix'] = bcn_get('page_prefix');
398
+ $this->breadcrumb_trail->opt['page_suffix'] = bcn_get('page_suffix');
399
+ $this->breadcrumb_trail->opt['page_anchor'] = bcn_get('page_anchor', $this->breadcrumb_trail->opt['page_anchor']);
400
+ //Post related options
401
+ $this->breadcrumb_trail->opt['post_prefix'] = bcn_get('post_prefix');
402
+ $this->breadcrumb_trail->opt['post_suffix'] = bcn_get('post_suffix');
403
+ $this->breadcrumb_trail->opt['post_anchor'] = bcn_get('post_anchor', $this->breadcrumb_trail->opt['post_anchor']);
404
+ $this->breadcrumb_trail->opt['post_taxonomy_display'] = str2bool(bcn_get('post_taxonomy_display', 'false'));
405
+ $this->breadcrumb_trail->opt['post_taxonomy_type'] = bcn_get('post_taxonomy_type');
406
+ //Attachment settings
407
+ $this->breadcrumb_trail->opt['attachment_prefix'] = bcn_get('attachment_prefix');
408
+ $this->breadcrumb_trail->opt['attachment_suffix'] = bcn_get('attachment_suffix');
409
+ //404 page settings
410
+ $this->breadcrumb_trail->opt['404_prefix'] = bcn_get('404_prefix');
411
+ $this->breadcrumb_trail->opt['404_suffix'] = bcn_get('404_suffix');
412
+ $this->breadcrumb_trail->opt['404_title'] = bcn_get('404_title');
413
+ //Search page settings
414
+ $this->breadcrumb_trail->opt['search_prefix'] = bcn_get('search_prefix');
415
+ $this->breadcrumb_trail->opt['search_suffix'] = bcn_get('search_suffix');
416
+ $this->breadcrumb_trail->opt['search_anchor'] = bcn_get('search_anchor', $this->breadcrumb_trail->opt['search_anchor']);
417
+ //Tag settings
418
+ $this->breadcrumb_trail->opt['post_tag_prefix'] = bcn_get('post_tag_prefix');
419
+ $this->breadcrumb_trail->opt['post_tag_suffix'] = bcn_get('post_tag_suffix');
420
+ $this->breadcrumb_trail->opt['post_tag_anchor'] = bcn_get('post_tag_anchor', $this->breadcrumb_trail->opt['post_tag_anchor']);
421
+ //Author page settings
422
+ $this->breadcrumb_trail->opt['author_prefix'] = bcn_get('author_prefix');
423
+ $this->breadcrumb_trail->opt['author_suffix'] = bcn_get('author_suffix');
424
+ $this->breadcrumb_trail->opt['author_display'] = bcn_get('author_display');
425
+ //Category settings
426
+ $this->breadcrumb_trail->opt['category_prefix'] = bcn_get('category_prefix');
427
+ $this->breadcrumb_trail->opt['category_suffix'] = bcn_get('category_suffix');
428
+ $this->breadcrumb_trail->opt['category_anchor'] = bcn_get('category_anchor', $this->breadcrumb_trail->opt['category_anchor']);
429
+ //Archive settings
430
+ $this->breadcrumb_trail->opt['archive_category_prefix'] = bcn_get('archive_category_prefix');
431
+ $this->breadcrumb_trail->opt['archive_category_suffix'] = bcn_get('archive_category_suffix');
432
+ $this->breadcrumb_trail->opt['archive_post_tag_prefix'] = bcn_get('archive_post_tag_prefix');
433
+ $this->breadcrumb_trail->opt['archive_post_tag_suffix'] = bcn_get('archive_post_tag_suffix');
434
+ //Archive by date settings
435
+ $this->breadcrumb_trail->opt['date_anchor'] = bcn_get('date_anchor', $this->breadcrumb_trail->opt['date_anchor']);
436
+ $this->breadcrumb_trail->opt['archive_date_prefix'] = bcn_get('archive_date_prefix');
437
+ $this->breadcrumb_trail->opt['archive_date_suffix'] = bcn_get('archive_date_suffix');
438
+ //Loop through all of the taxonomies in the array
439
+ foreach($wp_taxonomies as $taxonomy)
440
+ {
441
+ //We only want custom taxonomies
442
+ if($taxonomy->object_type == 'post' && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
443
+ {
444
+ $this->breadcrumb_trail->opt[$taxonomy->name . '_prefix'] = bcn_get($taxonomy->name . '_prefix');
445
+ $this->breadcrumb_trail->opt[$taxonomy->name . '_suffix'] = bcn_get($taxonomy->name . '_suffix');
446
+ $this->breadcrumb_trail->opt[$taxonomy->name . '_anchor'] = bcn_get($taxonomy->name . '_anchor', $this->breadcrumb_trail->opt['post_tag_anchor']);
447
+ $this->breadcrumb_trail->opt['archive_' . $taxonomy->name . '_prefix'] = bcn_get('archive_' . $taxonomy->name . '_prefix');
448
+ $this->breadcrumb_trail->opt['archive_' . $taxonomy->name . '_suffix'] = bcn_get('archive_' . $taxonomy->name . '_suffix');
449
+ }
450
+ }
451
+ //Commit the option changes
452
+ $this->update_option('bcn_options', $this->breadcrumb_trail->opt);
453
+ }
454
+ /**
455
+ * display
456
+ *
457
+ * Outputs the breadcrumb trail
458
+ *
459
+ * @param (bool) $return Whether to return or echo the trail.
460
+ * @param (bool) $linked Whether to allow hyperlinks in the trail or not.
461
+ * @param (bool) $reverse Whether to reverse the output or not.
462
+ */
463
+ function display($return = false, $linked = true, $reverse = false)
464
+ {
465
+ //Update our internal settings
466
+ $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
467
+ //Generate the breadcrumb trail
468
+ $this->breadcrumb_trail->fill();
469
+ return $this->breadcrumb_trail->display($return, $linked, $reverse);
470
+ }
471
+ /**
472
+ * display_list
473
+ *
474
+ * Outputs the breadcrumb trail
475
+ *
476
+ * @since 3.2.0
477
+ * @param (bool) $return Whether to return or echo the trail.
478
+ * @param (bool) $linked Whether to allow hyperlinks in the trail or not.
479
+ * @param (bool) $reverse Whether to reverse the output or not.
480
+ */
481
+ function display_list($return = false, $linked = true, $reverse = false)
482
+ {
483
+ //Update our internal settings
484
+ $this->breadcrumb_trail->opt = $this->get_option('bcn_options');
485
+ //Generate the breadcrumb trail
486
+ $this->breadcrumb_trail->fill();
487
+ return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
488
+ }
489
+ /**
490
+ * widget
491
+ *
492
+ * The sidebar widget
493
+ */
494
+ function widget($args)
495
+ {
496
+ extract($args);
497
+ //Manditory before widget junk
498
+ echo $before_widget;
499
+ //Display the breadcrumb trial
500
+ if($this->breadcrumb_trail->trail[0] != NULL)
501
+ {
502
+ $this->breadcrumb_trail->display();
503
+ }
504
+ else
505
+ {
506
+ $this->display();
507
+ }
508
+ //Manditory after widget junk
509
+ echo $after_widget;
510
+ }
511
+ /**
512
+ * register_widget
513
+ *
514
+ * Registers the sidebar widget
515
+ */
516
+ function register_widget()
517
+ {
518
+ register_sidebar_widget('Breadcrumb NavXT', array($this, 'widget'));
519
+ }
520
+ /**
521
+ * filter_plugin_actions
522
+ *
523
+ * Places in a link to the settings page in the plugins listing entry
524
+ *
525
+ * @param (array) $links An array of links that are output in the listing
526
+ * @param (string) $file The file that is currently in processing
527
+ * @return (array) Array of links that are output in the listing.
528
+ */
529
+ function filter_plugin_actions($links, $file)
530
+ {
531
+ static $this_plugin;
532
+ if(!$this_plugin)
533
+ {
534
+ $this_plugin = plugin_basename(__FILE__);
535
+ }
536
+ //Make sure we are adding only for Breadcrumb NavXT
537
+ if($file == $this_plugin)
538
+ {
539
+ //Setup the link string
540
+ $settings_link = '<a href="options-general.php?page=breadcrumb-navxt">' . __('Settings') . '</a>';
541
+ //Add it to the end of the array to better integrate into the WP 2.8 plugins page
542
+ $links[] = $settings_link;
543
+ }
544
+ return $links;
545
+ }
546
+ /**
547
+ * javascript
548
+ *
549
+ * Enqueues JS dependencies (jquery) for the tabs
550
+ *
551
+ * @see admin_init()
552
+ * @return void
553
+ */
554
+ function javascript()
555
+ {
556
+ //Enqueue ui-tabs
557
+ wp_enqueue_script('jquery-ui-tabs');
558
+ }
559
+ /**
560
+ * local
561
+ *
562
+ * Initilizes localization textdomain for translations (if applicable)
563
+ *
564
+ * normally there is no need to load it because it is already loaded with
565
+ * the breadcrumb class. if not, then it will be loaded.
566
+ *
567
+ * @return void
568
+ */
569
+ function local()
570
+ {
571
+ // the global and the check might become obsolete in
572
+ // further wordpress versions
573
+ // @see https://core.trac.wordpress.org/ticket/10527
574
+ global $l10n;
575
+ $domain = 'breadcrumb_navxt';
576
+ if (!isset( $l10n[$domain] ))
577
+ {
578
+ load_plugin_textdomain($domain, false, 'breadcrumb-navxt/languages');
579
+ }
580
+ }
581
+ /**
582
+ * add_page
583
+ *
584
+ * Adds the adminpage the menue and the nice little settings link
585
+ *
586
+ * @return void
587
+ */
588
+ function add_page()
589
+ {
590
+ // check capability of user to manage options (access control)
591
+ if(current_user_can('manage_options'))
592
+ {
593
+ //Add the submenu page to "settings" menu
594
+ $hookname = add_submenu_page('options-general.php', __('Breadcrumb NavXT Settings', 'breadcrumb_navxt'), 'Breadcrumb NavXT', 'manage_options', 'breadcrumb-navxt', array($this, 'admin_panel'));
595
+ //Register admin_head-$hookname callback
596
+ add_action('admin_head-'.$hookname, array($this, 'admin_head'));
597
+ //Register Help Output
598
+ add_action('contextual_help', array($this, 'contextual_help'), 10, 2);
599
+ }
600
+ }
601
+
602
+ /**
603
+ * contextual_help action hook function
604
+ *
605
+ * @param string $contextual_help
606
+ * @param string $screen
607
+ * @return string
608
+ */
609
+ function contextual_help($contextual_help, $screen)
610
+ {
611
+ // add contextual help on current screen
612
+ if ($screen == 'settings_page_breadcrumb-navxt')
613
+ {
614
+ $contextual_help = $this->_get_contextual_help();
615
+ $this->_has_contextual_help = true;
616
+ }
617
+ return $contextual_help;
618
+ }
619
+
620
+ /**
621
+ * get contextual help
622
+ *
623
+ * @return string
624
+ */
625
+ private function _get_contextual_help()
626
+ {
627
+ $t = $this->_get_help_text();
628
+ $t = sprintf('<div class="metabox-prefs">%s</div>', $t);
629
+ $title = __('Breadcrumb NavXT Settings', 'breadcrumb_navxt');
630
+ $t = sprintf('<h5>%s</h5>%s', sprintf(__('Get help with "%s"'), $title), $t);
631
+ return $t;
632
+ }
633
+
634
+ /**
635
+ * get help text
636
+ *
637
+ * @return string
638
+ */
639
+ private function _get_help_text()
640
+ {
641
+ return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
642
+ '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>');
643
+ }
644
+
645
+ /**
646
+ * admin_head
647
+ *
648
+ * Adds in the JavaScript and CSS for the tabs in the adminsitrative
649
+ * interface
650
+ *
651
+ */
652
+ function admin_head()
653
+ {
654
+ // print style and script element (should go into head element)
655
+ ?>
656
+ <style type="text/css">
657
+ /**
658
+ * Tabbed Admin Page (CSS)
659
+ *
660
+ * @see Breadcrumb NavXT (Wordpress Plugin)
661
+ * @author Tom Klingenberg
662
+ * @colordef #c6d9e9 light-blue (older tabs border color, obsolete)
663
+ * @colordef #dfdfdf light-grey (tabs border color)
664
+ * @colordef #f9f9f9 very-light-grey (admin standard background color)
665
+ * @colordef #fff white (active tab background color)
666
+ */
667
+ #hasadmintabs ul.ui-tabs-nav {border-bottom:1px solid #dfdfdf; font-size:12px; height:29px; list-style-image:none; list-style-position:outside; list-style-type:none; margin:13px 0 0; overflow:visible; padding:0 0 0 8px;}
668
+ #hasadmintabs ul.ui-tabs-nav li {display:block; float:left; line-height:200%; list-style-image:none; list-style-position:outside; list-style-type:none; margin:0; padding:0; position:relative; text-align:center; white-space:nowrap; width:auto;}
669
+ #hasadmintabs ul.ui-tabs-nav li a {background:transparent none no-repeat scroll 0 50%; border-bottom:1px solid #dfdfdf; display:block; float:left; line-height:28px; padding:1px 13px 0; position:relative; text-decoration:none;}
670
+ #hasadmintabs ul.ui-tabs-nav li.ui-tabs-selected a{-moz-border-radius-topleft:4px; -moz-border-radius-topright:4px;border:1px solid #dfdfdf; border-bottom-color:#f9f9f9; color:#333333; font-weight:normal; padding:0 12px;}
671
+ #hasadmintabs ul.ui-tabs-nav a:focus, a:active {outline-color:-moz-use-text-color; outline-style:none; outline-width:medium;}
672
+ #screen-options-wrap p.submit {margin:0; padding:0;}
673
+ </style>
674
+ <script type="text/javascript">
675
+ /* <![CDATA[ */
676
+ /**
677
+ * Breadcrumb NavXT Admin Page (javascript/jQuery)
678
+ *
679
+ * unobtrusive approach to add tabbed forms into
680
+ * the wordpress admin panel and various other
681
+ * stuff that needs javascript with the Admin Panel.
682
+ *
683
+ * @see Breadcrumb NavXT (Wordpress Plugin)
684
+ * @author Tom Klingenberg
685
+ * @author John Havlik
686
+ * @uses jQuery
687
+ * @uses jQuery.ui.tabs
688
+ */
689
+ jQuery(function()
690
+ {
691
+ bcn_context_init();
692
+ bcn_tabulator_init();
693
+ });
694
+ function bcn_confirm(type)
695
+ {
696
+ if(type == 'reset'){
697
+ var answer = confirm("<?php _e('All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?', 'breadcrumb_navxt'); ?>");
698
+ }
699
+ else{
700
+ var answer = confirm("<?php _e('All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?', 'breadcrumb_navxt'); ?>");
701
+ }
702
+ if(answer)
703
+ return true;
704
+ else
705
+ return false;
706
+ }
707
+ /**
708
+ * Tabulator Bootup
709
+ */
710
+ function bcn_tabulator_init(){
711
+ /* if this is not the breadcrumb admin page, quit */
712
+ if (!jQuery("#hasadmintabs").length) return;
713
+ /* init markup for tabs */
714
+ jQuery('#hasadmintabs').prepend("<ul><\/ul>");
715
+ jQuery('#hasadmintabs > fieldset').each(function(i){
716
+ id = jQuery(this).attr('id');
717
+ caption = jQuery(this).find('h3').text();
718
+ jQuery('#hasadmintabs > ul').append('<li><a href="#'+id+'"><span>'+caption+"<\/span><\/a><\/li>");
719
+ jQuery(this).find('h3').hide();
720
+ });
721
+ /* init the tabs plugin */
722
+ var jquiver = undefined == jQuery.ui ? [0,0,0] : undefined == jQuery.ui.version ? [0,1,0] : jQuery.ui.version.split('.');
723
+ switch(true){
724
+ // tabs plugin has been fixed to work on the parent element again.
725
+ case jquiver[0] >= 1 && jquiver[1] >= 7:
726
+ jQuery("#hasadmintabs").tabs();
727
+ break;
728
+ // tabs plugin has bug and needs to work on ul directly.
729
+ default:
730
+ jQuery("#hasadmintabs > ul").tabs();
731
+ }
732
+ /* handler for opening the last tab after submit (compability version) */
733
+ jQuery('#hasadmintabs ul a').click(function(i){
734
+ var form = jQuery('#bcn_admin_options');
735
+ var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
736
+ // an older bug pops up with some jQuery version(s), which makes it
737
+ // necessary to set the form's action attribute by standard javascript
738
+ // node access:
739
+ form.get(0).setAttribute("action", action);
740
+ });
741
+ }
742
+ /**
743
+ * context screen options for import/export
744
+ */
745
+ function bcn_context_init(){
746
+ if (!jQuery("#bcn_import_export_relocate").length) return;
747
+ var jqver = undefined == jQuery.fn.jquery ? [0,0,0] : jQuery.fn.jquery.split('.');
748
+ jQuery('#screen-meta').prepend(
749
+ '<div id="screen-options-wrap" class="hidden"></div>'
750
+ );
751
+ jQuery('#screen-meta-links').append(
752
+ '<div id="screen-options-link-wrap" class="hide-if-no-js screen-meta-toggle">' +
753
+ '<a class="show-settings" id="show-settings-link" href="#screen-options"><?php printf('%s/%s/%s', __('Import', 'breadcrumb_navxt'), __('Export', 'breadcrumb_navxt'), __('Reset', 'breadcrumb_navxt')); ?></a>' +
754
+ '</div>'
755
+ );
756
+ // jQuery Version below 1.3 (common for WP 2.7) needs some other style-classes
757
+ // and jQuery events
758
+ if (jqver[0] <= 1 && jqver[1] < 3){
759
+ // hide-if-no-js for WP 2.8, not for WP 2.7
760
+ jQuery('#screen-options-link-wrap').removeClass('hide-if-no-js');
761
+ // screen settings tab (WP 2.7 legacy)
762
+ jQuery('#show-settings-link').click(function () {
763
+ if ( ! jQuery('#screen-options-wrap').hasClass('screen-options-open') ) {
764
+ jQuery('#contextual-help-link-wrap').addClass('invisible');
765
+ }
766
+ jQuery('#screen-options-wrap').slideToggle('fast', function(){
767
+ if ( jQuery(this).hasClass('screen-options-open') ) {
768
+ jQuery('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
769
+ jQuery('#contextual-help-link-wrap').removeClass('invisible');
770
+ jQuery(this).removeClass('screen-options-open');
771
+ } else {
772
+ jQuery('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
773
+ jQuery(this).addClass('screen-options-open');
774
+ }
775
+ });
776
+ return false;
777
+ });
778
+ }
779
+ var code = jQuery('#bcn_import_export_relocate').html();
780
+ jQuery('#bcn_import_export_relocate').html('');
781
+ code = code.replace(/h3>/gi, 'h5>');
782
+ jQuery('#screen-options-wrap').prepend(code);
783
+ }
784
+ /* ]]> */
785
+ </script>
786
+ <?php
787
+ } //function admin_head()
788
+
789
+ /**
790
+ * admin_panel
791
+ *
792
+ * The administrative panel for Breadcrumb NavXT
793
+ *
794
+ */
795
+ function admin_panel()
796
+ {
797
+ global $wp_taxonomies;
798
+ $this->security();
799
+ //Update our internal options array, use form safe function
800
+ $this->breadcrumb_trail->opt = $this->get_option('bcn_options', true);
801
+ ?>
802
+ <div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
803
+ <p<?php if ($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
804
+ print $this->_get_help_text();
805
+ ?></p>
806
+ <form action="options-general.php?page=breadcrumb-navxt" method="post" id="bcn_admin_options">
807
+ <?php
808
+ settings_fields('bcn_admin');
809
+ ?>
810
+ <div id="hasadmintabs">
811
+ <fieldset id="general" class="bcn_options">
812
+ <h3><?php _e('General', 'breadcrumb_navxt'); ?></h3>
813
+ <table class="form-table">
814
+ <tr valign="top">
815
+ <th scope="row">
816
+ <label for="separator"><?php _e('Breadcrumb Separator', 'breadcrumb_navxt'); ?></label>
817
+ </th>
818
+ <td>
819
+ <input type="text" name="separator" id="separator" value="<?php echo $this->breadcrumb_trail->opt['separator']; ?>" size="32" /><br />
820
+ <span class="setting-description"><?php _e('Placed in between each breadcrumb.', 'breadcrumb_navxt'); ?></span>
821
+ </td>
822
+ </tr>
823
+ <tr valign="top">
824
+ <th scope="row">
825
+ <label for="max_title_length"><?php _e('Breadcrumb Max Title Length', 'breadcrumb_navxt'); ?></label>
826
+ </th>
827
+ <td>
828
+ <input type="text" name="max_title_length" id="max_title_length" value="<?php echo $this->breadcrumb_trail->opt['max_title_length'];?>" size="10" />
829
+ </td>
830
+ </tr>
831
+ <tr valign="top">
832
+ <th scope="row">
833
+ <?php _e('Home Breadcrumb', 'breadcrumb_navxt'); ?>
834
+ </th>
835
+ <td>
836
+ <label>
837
+ <input name="home_display" type="checkbox" id="home_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['home_display']); ?> />
838
+ <?php _e('Place the home breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
839
+ </label><br />
840
+ <ul>
841
+ <li>
842
+ <label for="home_title">
843
+ <?php _e('Home Title: ','breadcrumb_navxt');?>
844
+ <input type="text" name="home_title" id="home_title" value="<?php echo $this->breadcrumb_trail->opt['home_title']; ?>" size="20" />
845
+ </label>
846
+ </li>
847
+ </ul>
848
+ </td>
849
+ </tr>
850
+ <tr valign="top">
851
+ <th scope="row">
852
+ <label for="blog_display"><?php _e('Blog Breadcrumb', 'breadcrumb_navxt'); ?></label>
853
+ </th>
854
+ <td>
855
+ <label>
856
+ <input name="blog_display" <?php if($this->get_option('show_on_front') !== "page"){echo 'disabled="disabled" class="disabled"';} ?> type="checkbox" id="blog_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['blog_display']); ?> />
857
+ <?php _e('Place the blog breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
858
+ </label>
859
+ </td>
860
+ </tr>
861
+ <tr valign="top">
862
+ <th scope="row">
863
+ <label for="home_prefix"><?php _e('Home Prefix', 'breadcrumb_navxt'); ?></label>
864
+ </th>
865
+ <td>
866
+ <input type="text" name="home_prefix" id="home_prefix" value="<?php echo $this->breadcrumb_trail->opt['home_prefix']; ?>" size="32" />
867
+ </td>
868
+ </tr>
869
+ <tr valign="top">
870
+ <th scope="row">
871
+ <label for="home_suffix"><?php _e('Home Suffix', 'breadcrumb_navxt'); ?></label>
872
+ </th>
873
+ <td>
874
+ <input type="text" name="home_suffix" id="home_suffix" value="<?php echo $this->breadcrumb_trail->opt['home_suffix']; ?>" size="32" />
875
+ </td>
876
+ </tr>
877
+ <tr valign="top">
878
+ <th scope="row">
879
+ <label for="home_anchor"><?php _e('Home Anchor', 'breadcrumb_navxt'); ?></label>
880
+ </th>
881
+ <td>
882
+ <input type="text" name="home_anchor" id="home_anchor" value="<?php echo $this->breadcrumb_trail->opt['home_anchor']; ?>" size="60" /><br />
883
+ <span class="setting-description"><?php _e('The anchor template for the home breadcrumb.', 'breadcrumb_navxt'); ?></span>
884
+ </td>
885
+ </tr>
886
+ <tr valign="top">
887
+ <th scope="row">
888
+ <label for="blog_anchor"><?php _e('Blog Anchor', 'breadcrumb_navxt'); ?></label>
889
+ </th>
890
+ <td>
891
  <input type="text" <?php if($this->get_option('show_on_front') !== "page"){echo 'disabled="disabled" class="disabled"';} ?> name="blog_anchor" id="blog_anchor" value="<?php echo $this->breadcrumb_trail->opt['blog_anchor']; ?>" size="60" /><br />
892
+ <span class="setting-description"><?php _e('The anchor template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb_navxt'); ?></span>
893
+ </td>
894
+ </tr>
895
+ </table>
896
+ </fieldset>
897
+ <fieldset id="current" class="bcn_options">
898
+ <h3><?php _e('Current Item', 'breadcrumb_navxt'); ?></h3>
899
+ <table class="form-table">
900
+ <tr valign="top">
901
+ <th scope="row">
902
+ <label for="current_item_linked"><?php _e('Link Current Item', 'breadcrumb_navxt'); ?></label>
903
+ </th>
904
+ <td>
905
+ <label>
906
+ <input name="current_item_linked" type="checkbox" id="current_item_linked" value="true" <?php checked(true, $this->breadcrumb_trail->opt['current_item_linked']); ?> />
907
+ <?php _e('Yes'); ?>
908
+ </label>
909
+ </td>
910
+ </tr>
911
+ <tr valign="top">
912
+ <th scope="row">
913
+ <label for="current_item_prefix"><?php _e('Current Item Prefix', 'breadcrumb_navxt'); ?></label>
914
+ </th>
915
+ <td>
916
+ <input type="text" name="current_item_prefix" id="current_item_prefix" value="<?php echo $this->breadcrumb_trail->opt['current_item_prefix']; ?>" size="32" /><br />
917
+ <span class="setting-description"><?php _e('This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb.', 'breadcrumb_navxt'); ?></span>
918
+ </td>
919
+ </tr>
920
+ <tr valign="top">
921
+ <th scope="row">
922
+ <label for="current_item_suffix"><?php _e('Current Item Suffix', 'breadcrumb_navxt'); ?></label>
923
+ </th>
924
+ <td>
925
+ <input type="text" name="current_item_suffix" id="current_item_suffix" value="<?php echo $this->breadcrumb_trail->opt['current_item_suffix']; ?>" size="32" /><br />
926
+ <span class="setting-description"><?php _e('This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb.', 'breadcrumb_navxt'); ?></span>
927
+ </td>
928
+ </tr>
929
+ <tr valign="top">
930
+ <th scope="row">
931
+ <label for="current_item_anchor"><?php _e('Current Item Anchor', 'breadcrumb_navxt'); ?></label>
932
+ </th>
933
+ <td>
934
+ <input type="text" name="current_item_anchor" id="current_item_anchor" value="<?php echo $this->breadcrumb_trail->opt['current_item_anchor']; ?>" size="60" /><br />
935
+ <span class="setting-description"><?php _e('The anchor template for current item breadcrumbs.', 'breadcrumb_navxt'); ?></span>
936
+ </td>
937
+ </tr>
938
+ <tr valign="top">
939
+ <th scope="row">
940
+ <label for="paged_display"><?php _e('Paged Breadcrumb', 'breadcrumb_navxt'); ?></label>
941
+ </th>
942
+ <td>
943
+ <label>
944
+ <input name="paged_display" type="checkbox" id="paged_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['paged_display']); ?> />
945
+ <?php _e('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb_navxt'); ?>
946
+ </label><br />
947
+ <span class="setting-description"><?php _e('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb_navxt'); ?></span>
948
+ </td>
949
+ </tr>
950
+ <tr valign="top">
951
+ <th scope="row">
952
+ <label for="paged_prefix"><?php _e('Paged Prefix', 'breadcrumb_navxt'); ?></label>
953
+ </th>
954
+ <td>
955
+ <input type="text" name="paged_prefix" id="paged_prefix" value="<?php echo $this->breadcrumb_trail->opt['paged_prefix']; ?>" size="32" />
956
+ </td>
957
+ </tr>
958
+ <tr valign="top">
959
+ <th scope="row">
960
+ <label for="paged_suffix"><?php _e('Paged Suffix', 'breadcrumb_navxt'); ?></label>
961
+ </th>
962
+ <td>
963
+ <input type="text" name="paged_suffix" id="paged_suffix" value="<?php echo $this->breadcrumb_trail->opt['paged_suffix']; ?>" size="32" />
964
+ </td>
965
+ </tr>
966
+ </table>
967
+ </fieldset>
968
+ <fieldset id="single" class="bcn_options">
969
+ <h3><?php _e('Posts &amp; Pages', 'breadcrumb_navxt'); ?></h3>
970
+ <table class="form-table">
971
+ <tr valign="top">
972
+ <th scope="row">
973
+ <label for="post_prefix"><?php _e('Post Prefix', 'breadcrumb_navxt'); ?></label>
974
+ </th>
975
+ <td>
976
+ <input type="text" name="post_prefix" id="post_prefix" value="<?php echo $this->breadcrumb_trail->opt['post_prefix']; ?>" size="32" />
977
+ </td>
978
+ </tr>
979
+ <tr valign="top">
980
+ <th scope="row">
981
+ <label for="post_suffix"><?php _e('Post Suffix', 'breadcrumb_navxt'); ?></label>
982
+ </th>
983
+ <td>
984
+ <input type="text" name="post_suffix" id="post_suffix" value="<?php echo $this->breadcrumb_trail->opt['post_suffix']; ?>" size="32" />
985
+ </td>
986
+ </tr>
987
+ <tr valign="top">
988
+ <th scope="row">
989
+ <label for="post_anchor"><?php _e('Post Anchor', 'breadcrumb_navxt'); ?></label>
990
+ </th>
991
+ <td>
992
+ <input type="text" name="post_anchor" id="post_anchor" value="<?php echo $this->breadcrumb_trail->opt['post_anchor']; ?>" size="60" /><br />
993
+ <span class="setting-description"><?php _e('The anchor template for post breadcrumbs.', 'breadcrumb_navxt'); ?></span>
994
+ </td>
995
+ </tr>
996
+ <tr valign="top">
997
+ <th scope="row">
998
+ <?php _e('Post Taxonomy Display', 'breadcrumb_navxt'); ?>
999
+ </th>
1000
+ <td>
1001
+ <label for="post_taxonomy_display">
1002
+ <input name="post_taxonomy_display" type="checkbox" id="post_taxonomy_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['post_taxonomy_display']); ?> />
1003
+ <?php _e('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb_navxt'); ?>
1004
+ </label>
1005
+ </td>
1006
+ </tr>
1007
+ <tr valign="top">
1008
+ <th scope="row">
1009
+ <?php _e('Post Taxonomy', 'breadcrumb_navxt'); ?>
1010
+ </th>
1011
+ <td>
1012
+ <label>
1013
+ <input name="post_taxonomy_type" type="radio" value="category" class="togx" <?php checked('category', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
1014
+ <?php _e('Categories'); ?>
1015
+ </label>
1016
+ <br/>
1017
+ <label>
1018
+ <input name="post_taxonomy_type" type="radio" value="date" class="togx" <?php checked('date', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
1019
+ <?php _e('Dates'); ?>
1020
+ </label>
1021
+ <br/>
1022
+ <label>
1023
+ <input name="post_taxonomy_type" type="radio" value="post_tag" class="togx" <?php checked('post_tag', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
1024
+ <?php _e('Tags'); ?>
1025
+ </label>
1026
+ <br/>
1027
+ <?php
1028
+ //Loop through all of the taxonomies in the array
1029
+ foreach($wp_taxonomies as $taxonomy)
1030
+ {
1031
+ //We only want custom taxonomies
1032
+ if($taxonomy->object_type == 'post' && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
1033
+ {
1034
+ ?>
1035
+ <label>
1036
+ <input name="post_taxonomy_type" type="radio" value="<?php echo $taxonomy->name; ?>" class="togx" <?php checked($taxonomy->name, $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
1037
+ <?php echo ucwords(__($taxonomy->label)); ?>
1038
+ </label>
1039
+ <br/>
1040
+ <?
1041
+ }
1042
+ }
1043
+ ?>
1044
+ <span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb_navxt'); ?></span>
1045
+ </td>
1046
+ </tr>
1047
+ <tr valign="top">
1048
+ <th scope="row">
1049
+ <label for="page_prefix"><?php _e('Page Prefix', 'breadcrumb_navxt'); ?></label>
1050
+ </th>
1051
+ <td>
1052
+ <input type="text" name="page_prefix" id="page_prefix" value="<?php echo $this->breadcrumb_trail->opt['page_prefix']; ?>" size="32" />
1053
+ </td>
1054
+ </tr>
1055
+ <tr valign="top">
1056
+ <th scope="row">
1057
+ <label for="page_suffix"><?php _e('Page Suffix', 'breadcrumb_navxt'); ?></label>
1058
+ </th>
1059
+ <td>
1060
+ <input type="text" name="page_suffix" id="page_suffix" value="<?php echo $this->breadcrumb_trail->opt['page_suffix']; ?>" size="32" />
1061
+ </td>
1062
+ </tr>
1063
+ <tr valign="top">
1064
+ <th scope="row">
1065
+ <label for="page_anchor"><?php _e('Page Anchor', 'breadcrumb_navxt'); ?></label>
1066
+ </th>
1067
+ <td>
1068
+ <input type="text" name="page_anchor" id="page_anchor" value="<?php echo $this->breadcrumb_trail->opt['page_anchor']; ?>" size="60" /><br />
1069
+ <span class="setting-description"><?php _e('The anchor template for page breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1070
+ </td>
1071
+ </tr>
1072
+ <tr valign="top">
1073
+ <th scope="row">
1074
+ <label for="attachment_prefix"><?php _e('Attachment Prefix', 'breadcrumb_navxt'); ?></label>
1075
+ </th>
1076
+ <td>
1077
+ <input type="text" name="attachment_prefix" id="attachment_prefix" value="<?php echo $this->breadcrumb_trail->opt['attachment_prefix']; ?>" size="32" />
1078
+ </td>
1079
+ </tr>
1080
+ <tr valign="top">
1081
+ <th scope="row">
1082
+ <label for="attachment_suffix"><?php _e('Attachment Suffix', 'breadcrumb_navxt'); ?></label>
1083
+ </th>
1084
+ <td>
1085
+ <input type="text" name="attachment_suffix" id="attachment_suffix" value="<?php echo $this->breadcrumb_trail->opt['attachment_suffix']; ?>" size="32" />
1086
+ </td>
1087
+ </tr>
1088
+ </table>
1089
+ </fieldset>
1090
+ <fieldset id="category" class="bcn_options">
1091
+ <h3><?php _e('Categories', 'breadcrumb_navxt'); ?></h3>
1092
+ <table class="form-table">
1093
+ <tr valign="top">
1094
+ <th scope="row">
1095
+ <label for="category_prefix"><?php _e('Category Prefix', 'breadcrumb_navxt'); ?></label>
1096
+ </th>
1097
+ <td>
1098
+ <input type="text" name="category_prefix" id="category_prefix" value="<?php echo $this->breadcrumb_trail->opt['category_prefix']; ?>" size="32" /><br />
1099
+ <span class="setting-description"><?php _e('Applied before the anchor on all category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1100
+ </td>
1101
+ </tr>
1102
+ <tr valign="top">
1103
+ <th scope="row">
1104
+ <label for="category_suffix"><?php _e('Category Suffix', 'breadcrumb_navxt'); ?></label>
1105
+ </th>
1106
+ <td>
1107
+ <input type="text" name="category_suffix" id="category_suffix" value="<?php echo $this->breadcrumb_trail->opt['category_suffix']; ?>" size="32" /><br />
1108
+ <span class="setting-description"><?php _e('Applied after the anchor on all category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1109
+ </td>
1110
+ </tr>
1111
+ <tr valign="top">
1112
+ <th scope="row">
1113
+ <label for="category_anchor"><?php _e('Category Anchor', 'breadcrumb_navxt'); ?></label>
1114
+ </th>
1115
+ <td>
1116
+ <input type="text" name="category_anchor" id="category_anchor" value="<?php echo $this->breadcrumb_trail->opt['category_anchor']; ?>" size="60" /><br />
1117
+ <span class="setting-description"><?php _e('The anchor template for category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1118
+ </td>
1119
+ </tr>
1120
+ <tr valign="top">
1121
+ <th scope="row">
1122
+ <label for="archive_category_prefix"><?php _e('Archive by Category Prefix', 'breadcrumb_navxt'); ?></label>
1123
+ </th>
1124
+ <td>
1125
+ <input type="text" name="archive_category_prefix" id="archive_category_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_category_prefix']; ?>" size="32" /><br />
1126
+ <span class="setting-description"><?php _e('Applied before the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'); ?></span>
1127
+ </td>
1128
+ </tr>
1129
+ <tr valign="top">
1130
+ <th scope="row">
1131
+ <label for="archive_category_suffix"><?php _e('Archive by Category Suffix', 'breadcrumb_navxt'); ?></label>
1132
+ </th>
1133
+ <td>
1134
+ <input type="text" name="archive_category_suffix" id="archive_category_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_category_suffix']; ?>" size="32" /><br />
1135
+ <span class="setting-description"><?php _e('Applied after the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'); ?></span>
1136
+ </td>
1137
+ </tr>
1138
+ </table>
1139
+ </fieldset>
1140
+ <fieldset id="post_tag" class="bcn_options">
1141
+ <h3><?php _e('Tags', 'breadcrumb_navxt'); ?></h3>
1142
+ <table class="form-table">
1143
+ <tr valign="top">
1144
+ <th scope="row">
1145
+ <label for="post_tag_prefix"><?php _e('Tag Prefix', 'breadcrumb_navxt'); ?></label>
1146
+ </th>
1147
+ <td>
1148
+ <input type="text" name="post_tag_prefix" id="post_tag_prefix" value="<?php echo $this->breadcrumb_trail->opt['post_tag_prefix']; ?>" size="32" /><br />
1149
+ <span class="setting-description"><?php _e('Applied before the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1150
+ </td>
1151
+ </tr>
1152
+ <tr valign="top">
1153
+ <th scope="row">
1154
+ <label for="post_tag_suffix"><?php _e('Tag Suffix', 'breadcrumb_navxt'); ?></label>
1155
+ </th>
1156
+ <td>
1157
+ <input type="text" name="post_tag_suffix" id="post_tag_suffix" value="<?php echo $this->breadcrumb_trail->opt['post_tag_suffix']; ?>" size="32" /><br />
1158
+ <span class="setting-description"><?php _e('Applied after the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1159
+ </td>
1160
+ </tr>
1161
+ <tr valign="top">
1162
+ <th scope="row">
1163
+ <label for="post_tag_anchor"><?php _e('Tag Anchor', 'breadcrumb_navxt'); ?></label>
1164
+ </th>
1165
+ <td>
1166
+ <input type="text" name="post_tag_anchor" id="post_tag_anchor" value="<?php echo $this->breadcrumb_trail->opt['post_tag_anchor']; ?>" size="60" /><br />
1167
+ <span class="setting-description"><?php _e('The anchor template for tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1168
+ </td>
1169
+ </tr>
1170
+ <tr valign="top">
1171
+ <th scope="row">
1172
+ <label for="archive_post_tag_prefix"><?php _e('Archive by Tag Prefix', 'breadcrumb_navxt'); ?></label>
1173
+ </th>
1174
+ <td>
1175
+ <input type="text" name="archive_post_tag_prefix" id="archive_post_tag_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_post_tag_prefix']; ?>" size="32" /><br />
1176
+ <span class="setting-description"><?php _e('Applied before the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'); ?></span>
1177
+ </td>
1178
+ </tr>
1179
+ <tr valign="top">
1180
+ <th scope="row">
1181
+ <label for="archive_post_tag_suffix"><?php _e('Archive by Tag Suffix', 'breadcrumb_navxt'); ?></label>
1182
+ </th>
1183
+ <td>
1184
+ <input type="text" name="archive_post_tag_suffix" id="archive_post_tag_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_post_tag_suffix']; ?>" size="32" /><br />
1185
+ <span class="setting-description"><?php _e('Applied after the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'); ?></span>
1186
+ </td>
1187
+ </tr>
1188
+ </table>
1189
+ </fieldset>
1190
+ <?php
1191
+ //Loop through all of the taxonomies in the array
1192
+ foreach($wp_taxonomies as $taxonomy)
1193
+ {
1194
+ //We only want custom taxonomies
1195
+ if($taxonomy->object_type == 'post' && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
1196
+ {
1197
+ ?>
1198
+ <fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options">
1199
+ <h3><?php echo ucwords(__($taxonomy->label)); ?></h3>
1200
+ <table class="form-table">
1201
+ <tr valign="top">
1202
+ <th scope="row">
1203
+ <label for="<?php echo $taxonomy->name; ?>_prefix"><?php printf(__('%s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
1204
+ </th>
1205
+ <td>
1206
+ <input type="text" name="<?php echo $taxonomy->name; ?>_prefix" id="<?php echo $taxonomy->name; ?>_prefix" value="<?php echo $this->breadcrumb_trail->opt[$taxonomy->name . '_prefix']; ?>" size="32" /><br />
1207
+ <span class="setting-description"><?php printf(__('Applied before the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
1208
+ </td>
1209
+ </tr>
1210
+ <tr valign="top">
1211
+ <th scope="row">
1212
+ <label for="<?php echo $taxonomy->name; ?>_suffix"><?php printf(__('%s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
1213
+ </th>
1214
+ <td>
1215
+ <input type="text" name="<?php echo $taxonomy->name; ?>_suffix" id="<?php echo $taxonomy->name; ?>_suffix" value="<?php echo $this->breadcrumb_trail->opt[$taxonomy->name . '_suffix']; ?>" size="32" /><br />
1216
+ <span class="setting-description"><?php printf(__('Applied after the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
1217
+ </td>
1218
+ </tr>
1219
+ <tr valign="top">
1220
+ <th scope="row">
1221
+ <label for="<?php echo $taxonomy->name; ?>_anchor"><?php printf(__('%s Anchor', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
1222
+ </th>
1223
+ <td>
1224
+ <input type="text" name="<?php echo $taxonomy->name; ?>_anchor" id="<?php echo $taxonomy->name; ?>_anchor" value="<?php echo $this->breadcrumb_trail->opt[$taxonomy->name . '_anchor']; ?>" size="60" /><br />
1225
+ <span class="setting-description"><?php printf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
1226
+ </td>
1227
+ </tr>
1228
+ <tr valign="top">
1229
+ <th scope="row">
1230
+ <label for="archive_<?php echo $taxonomy->name; ?>_prefix"><?php printf(__('Archive by %s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
1231
+ </th>
1232
+ <td>
1233
+ <input type="text" name="archive_<?php echo $taxonomy->name; ?>_prefix" id="archive_<?php echo $taxonomy->name; ?>_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_' . $taxonomy->name . '_prefix']; ?>" size="32" /><br />
1234
+ <span class="setting-description"><?php printf(__('Applied before the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
1235
+ </td>
1236
+ </tr>
1237
+ <tr valign="top">
1238
+ <th scope="row">
1239
+ <label for="archive_<?php echo $taxonomy->name; ?>_suffix"><?php printf(__('Archive by %s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
1240
+ </th>
1241
+ <td>
1242
+ <input type="text" name="archive_<?php echo $taxonomy->name; ?>_suffix" id="archive_<?php echo $taxonomy->name; ?>_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_' . $taxonomy->name . '_suffix']; ?>" size="32" /><br />
1243
+ <span class="setting-description"><?php printf(__('Applied after the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
1244
+ </td>
1245
+ </tr>
1246
+ </table>
1247
+ </fieldset>
1248
+ <?
1249
+ }
1250
+ }
1251
+ ?>
1252
+ <fieldset id="date" class="bcn_options">
1253
+ <h3><?php _e('Date Archives', 'breadcrumb_navxt'); ?></h3>
1254
+ <table class="form-table">
1255
+ <tr valign="top">
1256
+ <th scope="row">
1257
+ <label for="archive_date_prefix"><?php _e('Archive by Date Prefix', 'breadcrumb_navxt'); ?></label>
1258
+ </th>
1259
+ <td>
1260
+ <input type="text" name="archive_date_prefix" id="archive_date_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_date_prefix']; ?>" size="32" /><br />
1261
+ <span class="setting-description"><?php _e('Applied before the anchor on all date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1262
+ </td>
1263
+ </tr>
1264
+ <tr valign="top">
1265
+ <th scope="row">
1266
+ <label for="archive_date_suffix"><?php _e('Archive by Date Suffix', 'breadcrumb_navxt'); ?></label>
1267
+ </th>
1268
+ <td>
1269
+ <input type="text" name="archive_date_suffix" id="archive_date_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_date_suffix']; ?>" size="32" /><br />
1270
+ <span class="setting-description"><?php _e('Applied after the anchor on all date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1271
+ </td>
1272
+ </tr>
1273
+ <tr valign="top">
1274
+ <th scope="row">
1275
+ <label for="date_anchor"><?php _e('Date Anchor', 'breadcrumb_navxt'); ?></label>
1276
+ </th>
1277
+ <td>
1278
+ <input type="text" name="date_anchor" id="date_anchor" value="<?php echo $this->breadcrumb_trail->opt['date_anchor']; ?>" size="60" /><br />
1279
+ <span class="setting-description"><?php _e('The anchor template for date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
1280
+ </td>
1281
+ </tr>
1282
+ </table>
1283
+ </fieldset>
1284
+ <fieldset id="miscellaneous" class="bcn_options">
1285
+ <h3><?php _e('Miscellaneous', 'breadcrumb_navxt'); ?></h3>
1286
+ <table class="form-table">
1287
+ <tr valign="top">
1288
+ <th scope="row">
1289
+ <label for="author_prefix"><?php _e('Author Prefix', 'breadcrumb_navxt'); ?></label>
1290
+ </th>
1291
+ <td>
1292
+ <input type="text" name="author_prefix" id="author_prefix" value="<?php echo $this->breadcrumb_trail->opt['author_prefix']; ?>" size="32" />
1293
+ </td>
1294
+ </tr>
1295
+ <tr valign="top">
1296
+ <th scope="row">
1297
+ <label for="author_suffix"><?php _e('Author Suffix', 'breadcrumb_navxt'); ?></label>
1298
+ </th>
1299
+ <td>
1300
+ <input type="text" name="author_suffix" id="author_suffix" value="<?php echo $this->breadcrumb_trail->opt['author_suffix']; ?>" size="32" />
1301
+ </td>
1302
+ </tr>
1303
+ <tr valign="top">
1304
+ <th scope="row">
1305
+ <label for="author_display"><?php _e('Author Display Format', 'breadcrumb_navxt'); ?></label>
1306
+ </th>
1307
+ <td>
1308
+ <select name="author_display" id="author_display">
1309
+ <?php $this->select_options('author_display', array("display_name", "nickname", "first_name", "last_name")); ?>
1310
+ </select><br />
1311
+ <span class="setting-description"><?php _e('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'); ?></span>
1312
+ </td>
1313
+ </tr>
1314
+ <tr valign="top">
1315
+ <th scope="row">
1316
+ <label for="search_prefix"><?php _e('Search Prefix', 'breadcrumb_navxt'); ?></label>
1317
+ </th>
1318
+ <td>
1319
+ <input type="text" name="search_prefix" id="search_prefix" value="<?php echo $this->breadcrumb_trail->opt['search_prefix']; ?>" size="32" />
1320
+ </td>
1321
+ </tr>
1322
+ <tr valign="top">
1323
+ <th scope="row">
1324
+ <label for="search_suffix"><?php _e('Search Suffix', 'breadcrumb_navxt'); ?></label>
1325
+ </th>
1326
+ <td>
1327
+ <input type="text" name="search_suffix" id="search_suffix" value="<?php echo $this->breadcrumb_trail->opt['search_suffix']; ?>" size="32" />
1328
+ </td>
1329
+ </tr>
1330
+ <tr valign="top">
1331
+ <th scope="row">
1332
+ <label for="search_anchor"><?php _e('Search Anchor', 'breadcrumb_navxt'); ?></label>
1333
+ </th>
1334
+ <td>
1335
+ <input type="text" name="search_anchor" id="search_anchor" value="<?php echo $this->breadcrumb_trail->opt['search_anchor']; ?>" size="60" /><br />
1336
+ <span class="setting-description"><?php _e('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb_navxt'); ?></span>
1337
+ </td>
1338
+ </tr>
1339
+ <tr valign="top">
1340
+ <th scope="row">
1341
+ <label for="id404_title"><?php _e('404 Title', 'breadcrumb_navxt'); ?></label>
1342
+ </th>
1343
+ <td>
1344
+ <input type="text" name="404_title" id="id404_title" value="<?php echo $this->breadcrumb_trail->opt['404_title']; ?>" size="32" />
1345
+ </td>
1346
+ </tr>
1347
+ <tr valign="top">
1348
+ <th scope="row">
1349
+ <label for="id404_prefix"><?php _e('404 Prefix', 'breadcrumb_navxt'); ?></label>
1350
+ </th>
1351
+ <td>
1352
+ <input type="text" name="404_prefix" id="id404_prefix" value="<?php echo $this->breadcrumb_trail->opt['404_prefix']; ?>" size="32" />
1353
+ </td>
1354
+ </tr>
1355
+ <tr valign="top">
1356
+ <th scope="row">
1357
+ <label for="id404_suffix"><?php _e('404 Suffix', 'breadcrumb_navxt'); ?></label>
1358
+ </th>
1359
+ <td>
1360
+ <input type="text" name="404_suffix" id="id404_suffix" value="<?php echo $this->breadcrumb_trail->opt['404_suffix']; ?>" size="32" />
1361
+ </td>
1362
+ </tr>
1363
+ </table>
1364
+ </fieldset>
1365
+ </div>
1366
+ <p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php _e('Save Changes') ?>" /></p>
1367
+ </form>
1368
+ <div id="bcn_import_export_relocate">
1369
+ <form action="options-general.php?page=breadcrumb-navxt" method="post" enctype="multipart/form-data" id="bcn_admin_upload">
1370
+ <?php wp_nonce_field('bcn_admin_upload');?>
1371
+ <fieldset id="import_export" class="bcn_options">
1372
+ <h3><?php _e('Import/Export/Reset Settings', 'breadcrumb_navxt'); ?></h3>
1373
+ <p><?php _e('Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings.', 'breadcrumb_navxt');?></p>
1374
+ <table class="form-table">
1375
+ <tr valign="top">
1376
+ <th scope="row">
1377
+ <label for="bcn_admin_import_file"><?php _e('Settings File', 'breadcrumb_navxt'); ?></label>
1378
+ </th>
1379
+ <td>
1380
+ <input type="file" name="bcn_admin_import_file" id="bcn_admin_import_file" size="32"/><br />
1381
+ <span class="setting-description"><?php _e('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt'); ?></span>
1382
+ </td>
1383
+ </tr>
1384
+ </table>
1385
+ <p class="submit">
1386
+ <input type="submit" class="button" name="bcn_admin_import" value="<?php _e('Import', 'breadcrumb_navxt') ?>" onclick="return bcn_confirm('import')" />
1387
+ <input type="submit" class="button" name="bcn_admin_export" value="<?php _e('Export', 'breadcrumb_navxt') ?>" />
1388
+ <input type="submit" class="button" name="bcn_admin_reset" value="<?php _e('Reset', 'breadcrumb_navxt') ?>" onclick="return bcn_confirm('reset')" />
1389
+ </p>
1390
+ </fieldset>
1391
+ </form>
1392
+ </div>
1393
+ </div>
1394
+ <?php
1395
+ }
1396
+ /**
1397
+ * select_options
1398
+ *
1399
+ * Displays wordpress options as <seclect> options defaults to true/false
1400
+ *
1401
+ * @param string $optionname name of wordpress options store
1402
+ * @param array $options array of names of options that can be selected
1403
+ * @param array $exclude[optional] array of names in $options array to be excluded
1404
+ */
1405
+ function select_options($optionname, $options, $exclude = array())
1406
+ {
1407
+ $value = $this->breadcrumb_trail->opt[$optionname];
1408
+ //First output the current value
1409
+ if($value)
1410
+ {
1411
+ printf('<option>%s</option>', $value);
1412
+ }
1413
+ //Now do the rest
1414
+ foreach($options as $option)
1415
+ {
1416
+ //Don't want multiple occurance of the current value
1417
+ if($option != $value && !in_array($option, $exclude))
1418
+ {
1419
+ printf('<option>%s</option>', $option);
1420
+ }
1421
+ }
1422
+ }
1423
+ /**
1424
+ * add_option
1425
+ *
1426
+ * This inserts the value into the option name, WPMU safe
1427
+ *
1428
+ * @param (string) key name where to save the value in $value
1429
+ * @param (mixed) value to insert into the options db
1430
+ * @return (bool)
1431
+ */
1432
+ function add_option($key, $value)
1433
+ {
1434
+ return add_option($key, $value);
1435
+ }
1436
+ /**
1437
+ * delete_option
1438
+ *
1439
+ * This removes the option name, WPMU safe
1440
+ *
1441
+ * @param (string) key name of the option to remove
1442
+ * @return (bool)
1443
+ */
1444
+ function delete_option($key)
1445
+ {
1446
+ return delete_option($key);
1447
+ }
1448
+ /**
1449
+ * update_option
1450
+ *
1451
+ * This updates the value into the option name, WPMU safe
1452
+ *
1453
+ * @param (string) key name where to save the value in $value
1454
+ * @param (mixed) value to insert into the options db
1455
+ * @return (bool)
1456
+ */
1457
+ function update_option($key, $value)
1458
+ {
1459
+ return update_option($key, $value);
1460
+ }
1461
+ /**
1462
+ * get_option
1463
+ *
1464
+ * This grabs the the data from the db it is WPMU safe and can place the data
1465
+ * in a HTML form safe manner.
1466
+ *
1467
+ * @param (string) key name of the wordpress option to get
1468
+ * @param (bool) safe output for HTML forms (default: false)
1469
+ * @return (mixed) value of option
1470
+ */
1471
+ function get_option($key, $safe = false)
1472
+ {
1473
+ $db_data = get_option($key);
1474
+ if($safe)
1475
+ {
1476
+ //If we get an array, we should loop through all of its members
1477
+ if(is_array($db_data))
1478
+ {
1479
+ //Loop through all the members
1480
+ foreach($db_data as $key=>$item)
1481
+ {
1482
+ //We ignore anything but strings
1483
+ if(is_string($item))
1484
+ {
1485
+ $db_data[$key] = htmlentities($item, ENT_COMPAT, 'UTF-8');
1486
+ }
1487
+ }
1488
+ }
1489
+ else
1490
+ {
1491
+ $db_data = htmlentities($db_data, ENT_COMPAT, 'UTF-8');
1492
+ }
1493
+ }
1494
+ return $db_data;
1495
+ }
1496
+ /**
1497
+ * notify
1498
+ *
1499
+ * Output a 'notify' box with a message after an event occurs
1500
+ *
1501
+ * @param $message string the message to deliver
1502
+ * @param $error bool[optional] is the message an error?
1503
+ */
1504
+ function notify($message, $error = false)
1505
+ {
1506
+ //If the message is an error use the appropriate class
1507
+ $class = $error ? 'error' : 'updated fade';
1508
+ printf('<div class="%s"><p>%s</p></div>', $class, $message);
1509
+ }
1510
+
1511
+ /**
1512
+ * callback function for admin_notices
1513
+ *
1514
+ * @return void
1515
+ */
1516
+ function notify_import_failure()
1517
+ {
1518
+ $this->notify(__('Importing settings from file failed.', 'breadcrumb_navxt'), true);
1519
+ }
1520
+
1521
+ /**
1522
+ * callback function for admin_notices
1523
+ *
1524
+ * @return void
1525
+ */
1526
+ function notify_import_success()
1527
+ {
1528
+ $this->notify(__('The Breadcrumb NavXT settings were successfully imported from file.', 'breadcrumb_navxt'));
1529
+ }
1530
+
1531
+ /**
1532
+ * callback function for admin_notices
1533
+ *
1534
+ * @return void
1535
+ */
1536
+ function notify_reset()
1537
+ {
1538
+ $this->notify(__('The Breadcrumb NavXT settings were reset to the default values.', 'breadcrumb_navxt'));
1539
+ }
1540
+ }
1541
+ //Let's make an instance of our object takes care of everything
1542
+ $bcn_admin = new bcn_admin;
1543
+ /**
1544
+ * A wrapper for the internal function in the class
1545
+ *
1546
+ * @param bool $return Whether to return or echo the trail. (optional)
1547
+ * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
1548
+ * @param bool $reverse Whether to reverse the output or not. (optional)
1549
+ */
1550
+ function bcn_display($return = false, $linked = true, $reverse = false)
1551
+ {
1552
+ global $bcn_admin;
1553
+ return $bcn_admin->display($return, $linked, $reverse);
1554
+ }
1555
+ /**
1556
+ * A wrapper for the internal function in the class
1557
+ *
1558
+ * @param bool $return Whether to return or echo the trail. (optional)
1559
+ * @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
1560
+ * @param bool $reverse Whether to reverse the output or not. (optional)
1561
+ */
1562
+ function bcn_display_list($return = false, $linked = true, $reverse = false)
1563
+ {
1564
+ global $bcn_admin;
1565
+ return $bcn_admin->display_list($return, $linked, $reverse);
1566
+ }
breadcrumb_navxt_class.php CHANGED
@@ -16,6 +16,7 @@
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
 
19
  //The breadcrumb class
20
  class bcn_breadcrumb
21
  {
@@ -62,6 +63,7 @@ class bcn_breadcrumb
62
  *
63
  * @param string $template the anchor template to use
64
  * @param string $url the url to replace the %link% tag in the anchor
 
65
  */
66
  function set_anchor($template, $url)
67
  {
@@ -128,7 +130,7 @@ class bcn_breadcrumb
128
  class bcn_breadcrumb_trail
129
  {
130
  //Our member variables
131
- public $version = '3.3.0';
132
  //An array of breadcrumbs
133
  public $trail = array();
134
  //The options
@@ -214,11 +216,11 @@ class bcn_breadcrumb_trail
214
  'search_anchor' => __('<a title="Go to the first page of search results for %title%." href="%link%">', 'breadcrumb_navxt'),
215
  //Tag related stuff
216
  //The prefix for tag breadcrumbs, place on all page elements and inside of current_item prefix
217
- 'tag_prefix' => '',
218
  //The suffix for tag breadcrumbs, place on all page elements and inside of current_item suffix
219
- 'tag_suffix' => '',
220
  //The anchor template for tag breadcrumbs, two keywords are available %link% and %title%
221
- 'tag_anchor' => __('<a title="Go to the %title% tag archives." href="%link%">', 'breadcrumb_navxt'),
222
  //Author page stuff
223
  //The prefix for author breadcrumbs, place on all page elements and inside of current_item prefix
224
  'author_prefix' => __('Articles by: ', 'breadcrumb_navxt'),
@@ -241,9 +243,9 @@ class bcn_breadcrumb_trail
241
  //Suffix for category archives, place inside of both the current_item suffix and the category_suffix
242
  'archive_category_suffix' => '&#39;',
243
  //Prefix for tag archives, place inside of the current_item prefix
244
- 'archive_tag_prefix' => __('Archive by tag &#39;', 'breadcrumb_navxt'),
245
  //Suffix for tag archives, place inside of the current_item suffix
246
- 'archive_tag_suffix' => '&#39;',
247
  'date_anchor' => __('<a title="Go to the %title% archives." href="%link%">', 'breadcrumb_navxt'),
248
  //Prefix for date archives, place inside of the current_item prefix
249
  'archive_date_prefix' => '',
@@ -369,7 +371,7 @@ class bcn_breadcrumb_trail
369
  //Make sure the id is valid, and that we won't end up spinning in a loop
370
  if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
371
  {
372
- //If valid, recursivly call this function
373
  $this->page_parents($parent->post_parent, $frontpage);
374
  }
375
  }
@@ -406,68 +408,77 @@ class bcn_breadcrumb_trail
406
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
407
  if($this->opt['post_taxonomy_display'])
408
  {
409
- //Figure out which taxonomy is desired
410
- if($this->opt['post_taxonomy_type'] == 'category')
 
 
 
 
 
411
  {
412
- //Fills the temp object to get the categories
413
- $bcn_object = get_the_category($id);
414
- //Now find which one has a parent, pick the first one that does
415
- $i = 0;
416
- $bcn_use_category = 0;
417
- foreach($bcn_object as $object)
418
  {
419
- //We want the first category hiearchy
420
- if($object->category_parent > 0 && $bcn_use_category == 0)
 
421
  {
422
- $bcn_use_category = $i;
423
- //We found our first category hiearchy, can exit loop now
424
- break;
 
 
 
 
425
  }
426
- $i++;
 
427
  }
428
- //Fill out the category hiearchy
429
- $this->category_parents($bcn_object[$bcn_use_category]->term_id);
430
  }
 
431
  else
432
  {
433
- $this->post_tags($id);
434
  }
435
  }
436
  }
437
  /**
438
- * post_tag
439
  *
440
  * A Breadcrumb Trail Filling Function
441
  *
442
- * This functions fills a breadcrumb for the tags of a post
443
- * @param int $id The id of the post to find the tags for.
 
444
  *
445
- * @TODO Need to implement this cleaner, possibly a recursive object
446
  */
447
- function post_tags($id)
448
  {
449
  //Add new breadcrumb to the trail
450
  $this->trail[] = new bcn_breadcrumb();
451
  //Figure out where we placed the crumb, make a nice pointer to it
452
  $bcn_breadcrumb = &$this->trail[count($this->trail) - 1];
453
- //Fills a temporary object with the tags for the post
454
- $bcn_object = get_the_tags($id);
455
  //Only process if we have tags
456
  if(is_array($bcn_object))
457
  {
458
  $is_first = true;
459
- //Loop through all of the tag results
460
- foreach($bcn_object as $tag)
461
  {
462
  //Run through a filter for good measure
463
- $tag->name = apply_filters('get_tag', $tag->name);
464
- //Everything but the first tag needs a comma separator
465
  if($is_first == false)
466
  {
467
  $bcn_breadcrumb->title .= ', ';
468
  }
469
  //This is a bit hackish, but it compiles the tag anchor and appends it to the current breadcrumb title
470
- $bcn_breadcrumb->title .= $this->opt['tag_prefix'] . str_replace('%title%', $tag->name, str_replace('%link%', get_tag_link($tag->term_id), $this->opt['tag_anchor'])) . $tag->name . '</a>' . $this->opt['tag_suffix'];
 
471
  $is_first = false;
472
  }
473
  }
@@ -478,75 +489,81 @@ class bcn_breadcrumb_trail
478
  }
479
  }
480
  /**
481
- * category_parents
482
  *
483
  * A Breadcrumb Trail Filling Function
484
  *
485
- * This recursive functions fills the trail with breadcrumbs for parent categories.
486
- * @param int $id The id of the parent category.
 
487
  */
488
- function category_parents($id)
489
  {
490
  global $post;
491
  //Get the current category object, filter applied within this call
492
- $category = &get_category($id);
493
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
494
- $breadcrumb = $this->add(new bcn_breadcrumb($category->cat_name, $this->opt['category_prefix'], $this->opt['category_suffix']));
495
- //Figure out the anchor for the first category
496
- $breadcrumb->set_anchor($this->opt['category_anchor'], get_category_link($id));
497
  //Make sure the id is valid, and that we won't end up spinning in a loop
498
- if($category->category_parent && $category->category_parent != $id)
499
  {
500
- //Figure out the rest of the category hiearchy via recursion
501
- $this->category_parents($category->category_parent);
502
  }
503
  }
504
  /**
505
- * do_archive_by_category
506
  *
507
  * A Breadcrumb Trail Filling Function
508
  *
509
- * This functions fills a breadcrumb for a category archive.
510
  */
511
- function do_archive_by_category()
512
  {
513
  global $wp_query;
514
- //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
515
- $breadcrumb = $this->add(new bcn_breadcrumb(single_cat_title('', false), $this->opt['category_prefix'] . $this->opt['archive_category_prefix'],
516
- $this->opt['archive_category_suffix'] . $this->opt['category_suffix']));
517
  //Simmilar to using $post, but for things $post doesn't cover
518
- $category = $wp_query->get_queried_object();
 
 
 
 
 
519
  //If we're paged, let's link to the first page
520
  if(is_paged() && $this->opt['paged_display'])
521
  {
522
  //Figure out the anchor for current category
523
- $breadcrumb->set_anchor($this->opt['category_anchor'], get_category_link($category->cat_ID));
524
  }
525
  //Get parents of current category
526
- if($category->category_parent)
527
  {
528
- $this->category_parents($category->category_parent);
529
  }
530
  }
531
  /**
532
- * do_archive_by_tag
533
  *
534
  * A Breadcrumb Trail Filling Function
535
  *
536
- * This functions fills a breadcrumb for a tag archive.
537
  */
538
- function do_archive_by_tag()
539
  {
540
  global $wp_query;
 
 
 
 
541
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
542
- $breadcrumb = $this->add(new bcn_breadcrumb(single_tag_title('', false), $this->opt['archive_tag_prefix'], $this->opt['archive_tag_suffix']));
 
543
  //If we're paged, let's link to the first page
544
  if(is_paged() && $this->opt['paged_display'])
545
  {
546
- //Simmilar to using $post, but for things $post doesn't cover
547
- $tag = $wp_query->get_queried_object();
548
  //Figure out the anchor for current category
549
- $breadcrumb->set_anchor($this->opt['tag_anchor'], get_tag_link($tag->term_id));
550
  }
551
  }
552
  /**
@@ -560,24 +577,24 @@ class bcn_breadcrumb_trail
560
  {
561
  global $wp_query;
562
  //First deal with the day breadcrumb
563
- if(is_day())
564
  {
565
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
566
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('d'), $this->opt['archive_date_prefix'], $this->opt['archive_date_suffix']));
567
  //If we're paged, let's link to the first page
568
- if(is_paged() && $this->opt['paged_display'])
569
  {
570
  //Deal with the anchor
571
- $breadcrumb->set_anchor($this->opt['date_anchor'], get_day_link(get_the_time('Y'), get_the_time('m'), $bcn_breadcrumb->title));
572
  }
573
  }
574
  //Now deal with the month breadcrumb
575
- if(is_month() || is_day())
576
  {
577
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
578
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('F'), $this->opt['archive_date_prefix'], $this->opt['archive_date_suffix']));
579
  //If we're paged, or not in the archive by month let's link to the first archive by month page
580
- if(is_day() || (is_month() && is_paged() && $this->opt['paged_display']))
581
  {
582
  //Deal with the anchor
583
  $breadcrumb->set_anchor($this->opt['date_anchor'], get_month_link(get_the_time('Y'), get_the_time('m')));
@@ -586,7 +603,7 @@ class bcn_breadcrumb_trail
586
  //Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
587
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('Y'), $this->opt['archive_date_prefix'], $this->opt['archive_date_suffix']));
588
  //If we're paged, or not in the archive by year let's link to the first archive by year page
589
- if(is_day() || is_month() || (is_paged() && $this->opt['paged_display']))
590
  {
591
  //Deal with the anchor
592
  $breadcrumb->set_anchor($this->opt['date_anchor'], get_year_link(get_the_time('Y')));
@@ -753,20 +770,29 @@ class bcn_breadcrumb_trail
753
  {
754
  $this->do_author();
755
  }
756
- //For category based archives
757
- else if(is_archive() && is_category())
758
- {
759
- $this->do_archive_by_category();
760
- }
761
- //For date based archives
762
- else if(is_archive() && is_date())
763
- {
764
- $this->do_archive_by_date();
765
- }
766
- //For tag based archives
767
- else if(is_archive() && is_tag())
768
  {
769
- $this->do_archive_by_tag();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
770
  }
771
  //For 404 pages
772
  else if(is_404())
@@ -909,20 +935,27 @@ class bcn_breadcrumb_trail
909
  //The main compiling loop
910
  foreach($this->trail as $key=>$breadcrumb)
911
  {
912
- $trail_str .= '<li>';
913
  //Trim titles, if needed
914
  if($this->opt['max_title_length'] > 0)
915
  {
916
  //Trim the breadcrumb's title
917
  $breadcrumb->title_trim($this->opt['max_title_length']);
918
  }
 
 
 
 
 
919
  //If we are on the current item there are some things that must be done
920
  if($key === 0)
921
  {
922
  $this->current_item($breadcrumb);
 
 
923
  }
924
  //Place in the breadcrumb's assembled elements
925
- $trail_str .= $breadcrumb->assemble($linked);
926
  $trail_str .= "</li>\n";
927
  }
928
  //Should we return or echo the assembled trail?
16
  along with this program; if not, write to the Free Software
17
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
  */
19
+
20
  //The breadcrumb class
21
  class bcn_breadcrumb
22
  {
63
  *
64
  * @param string $template the anchor template to use
65
  * @param string $url the url to replace the %link% tag in the anchor
66
+ *
67
  */
68
  function set_anchor($template, $url)
69
  {
130
  class bcn_breadcrumb_trail
131
  {
132
  //Our member variables
133
+ public $version = '3.4.0';
134
  //An array of breadcrumbs
135
  public $trail = array();
136
  //The options
216
  'search_anchor' => __('<a title="Go to the first page of search results for %title%." href="%link%">', 'breadcrumb_navxt'),
217
  //Tag related stuff
218
  //The prefix for tag breadcrumbs, place on all page elements and inside of current_item prefix
219
+ 'post_tag_prefix' => '',
220
  //The suffix for tag breadcrumbs, place on all page elements and inside of current_item suffix
221
+ 'post_tag_suffix' => '',
222
  //The anchor template for tag breadcrumbs, two keywords are available %link% and %title%
223
+ 'post_tag_anchor' => __('<a title="Go to the %title% tag archives." href="%link%">', 'breadcrumb_navxt'),
224
  //Author page stuff
225
  //The prefix for author breadcrumbs, place on all page elements and inside of current_item prefix
226
  'author_prefix' => __('Articles by: ', 'breadcrumb_navxt'),
243
  //Suffix for category archives, place inside of both the current_item suffix and the category_suffix
244
  'archive_category_suffix' => '&#39;',
245
  //Prefix for tag archives, place inside of the current_item prefix
246
+ 'archive_post_tag_prefix' => __('Archive by tag &#39;', 'breadcrumb_navxt'),
247
  //Suffix for tag archives, place inside of the current_item suffix
248
+ 'archive_post_tag_suffix' => '&#39;',
249
  'date_anchor' => __('<a title="Go to the %title% archives." href="%link%">', 'breadcrumb_navxt'),
250
  //Prefix for date archives, place inside of the current_item prefix
251
  'archive_date_prefix' => '',
371
  //Make sure the id is valid, and that we won't end up spinning in a loop
372
  if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
373
  {
374
+ //If valid, recursively call this function
375
  $this->page_parents($parent->post_parent, $frontpage);
376
  }
377
  }
408
  //Check to see if breadcrumbs for the taxonomy of the post needs to be generated
409
  if($this->opt['post_taxonomy_display'])
410
  {
411
+ //Check if we have a date 'taxonomy' request
412
+ if($this->opt['post_taxonomy_type'] == 'date')
413
+ {
414
+ $this->do_archive_by_date();
415
+ }
416
+ //Handle all hierarchical taxonomies, including categories
417
+ else if(is_taxonomy_hierarchical($this->opt['post_taxonomy_type']))
418
  {
419
+ //Fill a temporary object with the terms
420
+ $bcn_object = get_the_terms($id, $this->opt['post_taxonomy_type']);
421
+ if(is_array($bcn_object))
 
 
 
422
  {
423
+ //Now find which one has a parent, pick the first one that does
424
+ $bcn_use_term = key($bcn_object);
425
+ foreach($bcn_object as $key=>$object)
426
  {
427
+ //We want the first term hiearchy
428
+ if($object->parent > 0)
429
+ {
430
+ $bcn_use_term = $key;
431
+ //We found our first term hiearchy, can exit loop now
432
+ break;
433
+ }
434
  }
435
+ //Fill out the term hiearchy
436
+ $this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['post_taxonomy_type']);
437
  }
 
 
438
  }
439
+ //Handle the rest of the taxonomies, including tags
440
  else
441
  {
442
+ $this->post_terms($id, $this->opt['post_taxonomy_type']);
443
  }
444
  }
445
  }
446
  /**
447
+ * post_terms
448
  *
449
  * A Breadcrumb Trail Filling Function
450
  *
451
+ * This functions fills a breadcrumb for the terms of a post
452
+ * @param int $id The id of the post to find the terms for.
453
+ * @param string $taxonomy The name of the taxonomy that the term belongs to
454
  *
455
+ * @TODO Need to implement this cleaner, fix up the entire tag_ thing, as this is now generic
456
  */
457
+ function post_terms($id, $taxonomy)
458
  {
459
  //Add new breadcrumb to the trail
460
  $this->trail[] = new bcn_breadcrumb();
461
  //Figure out where we placed the crumb, make a nice pointer to it
462
  $bcn_breadcrumb = &$this->trail[count($this->trail) - 1];
463
+ //Fills a temporary object with the terms for the post
464
+ $bcn_object = get_the_terms($id, $taxonomy);
465
  //Only process if we have tags
466
  if(is_array($bcn_object))
467
  {
468
  $is_first = true;
469
+ //Loop through all of the term results
470
+ foreach($bcn_object as $term)
471
  {
472
  //Run through a filter for good measure
473
+ $term->name = apply_filters("get_$taxonomy", $term->name);
474
+ //Everything but the first term needs a comma separator
475
  if($is_first == false)
476
  {
477
  $bcn_breadcrumb->title .= ', ';
478
  }
479
  //This is a bit hackish, but it compiles the tag anchor and appends it to the current breadcrumb title
480
+ $bcn_breadcrumb->title .= $this->opt[$taxonomy . '_prefix'] . str_replace('%title%', $term->name, $this->opt[$taxonomy . '_anchor']) .
481
+ $term->name . '</a>' . $this->opt[$taxonomy . '_suffix'];
482
  $is_first = false;
483
  }
484
  }
489
  }
490
  }
491
  /**
492
+ * term_parents
493
  *
494
  * A Breadcrumb Trail Filling Function
495
  *
496
+ * This recursive functions fills the trail with breadcrumbs for parent terms.
497
+ * @param int $id The id of the term.
498
+ * @param string $taxonomy The name of the taxonomy that the term belongs to
499
  */
500
+ function term_parents($id, $taxonomy)
501
  {
502
  global $post;
503
  //Get the current category object, filter applied within this call
504
+ $term = &get_term($id, $taxonomy);
505
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
506
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt[$taxonomy . '_prefix'], $this->opt[$taxonomy . '_suffix']));
507
+ //Figure out the anchor for the term
508
+ $breadcrumb->set_anchor($this->opt[$taxonomy . '_anchor'], get_term_link($term, $taxonomy));
509
  //Make sure the id is valid, and that we won't end up spinning in a loop
510
+ if($term->parent && $term->parent != $id)
511
  {
512
+ //Figure out the rest of the term hiearchy via recursion
513
+ $this->term_parents($term->parent, $taxonomy);
514
  }
515
  }
516
  /**
517
+ * do_archive_by_term_hierarchical
518
  *
519
  * A Breadcrumb Trail Filling Function
520
  *
521
+ * This functions fills a breadcrumb for a hierarchical taxonomy (e.g. category) archive.
522
  */
523
+ function do_archive_by_term_hierarchical()
524
  {
525
  global $wp_query;
 
 
 
526
  //Simmilar to using $post, but for things $post doesn't cover
527
+ $term = $wp_query->get_queried_object();
528
+ //Run through a filter for good measure
529
+ $term->name = apply_filters('get_' . $term->taxonomy, $term->name);
530
+ //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
531
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt[$term->taxonomy . '_prefix'] . $this->opt['archive_' . $term->taxonomy . '_prefix'],
532
+ $this->opt['archive_' . $term->taxonomy . '_suffix'] . $this->opt[$term->taxonomy . '_suffix']));
533
  //If we're paged, let's link to the first page
534
  if(is_paged() && $this->opt['paged_display'])
535
  {
536
  //Figure out the anchor for current category
537
+ $breadcrumb->set_anchor($this->opt[$term->taxonomy . '_anchor'], get_term_link($term->term_id, $term->taxonomy));
538
  }
539
  //Get parents of current category
540
+ if($term->parent)
541
  {
542
+ $this->term_parents($term->parent, $term->taxonomy);
543
  }
544
  }
545
  /**
546
+ * do_archive_by_term
547
  *
548
  * A Breadcrumb Trail Filling Function
549
  *
550
+ * This functions fills a breadcrumb for a flat taxonomy (e.g. tag) archive.
551
  */
552
+ function do_archive_by_term_flat()
553
  {
554
  global $wp_query;
555
+ //Simmilar to using $post, but for things $post doesn't cover
556
+ $term = $wp_query->get_queried_object();
557
+ //Run through a filter for good measure
558
+ $term->name = apply_filters('get_' . $term->taxonomy, $term->name);
559
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
560
+ $breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['archive_' . $term->taxonomy . '_prefix'] . $this->opt[$term->taxonomy . '_prefix'],
561
+ $this->opt[$term->taxonomy . '_suffix'] . $this->opt['archive_' . $term->taxonomy . '_suffix']));
562
  //If we're paged, let's link to the first page
563
  if(is_paged() && $this->opt['paged_display'])
564
  {
 
 
565
  //Figure out the anchor for current category
566
+ $breadcrumb->set_anchor($this->opt[$term->taxonomy . '_anchor'], get_term_link($term->term_id, $term->taxonomy));
567
  }
568
  }
569
  /**
577
  {
578
  global $wp_query;
579
  //First deal with the day breadcrumb
580
+ if(is_day() || is_single())
581
  {
582
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
583
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('d'), $this->opt['archive_date_prefix'], $this->opt['archive_date_suffix']));
584
  //If we're paged, let's link to the first page
585
+ if(is_paged() && $this->opt['paged_display'] || is_single())
586
  {
587
  //Deal with the anchor
588
+ $breadcrumb->set_anchor($this->opt['date_anchor'], get_day_link(get_the_time('Y'), get_the_time('m'), get_the_time('d')));
589
  }
590
  }
591
  //Now deal with the month breadcrumb
592
+ if(is_month() || is_day() || is_single())
593
  {
594
  //Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
595
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('F'), $this->opt['archive_date_prefix'], $this->opt['archive_date_suffix']));
596
  //If we're paged, or not in the archive by month let's link to the first archive by month page
597
+ if(is_day() || is_single() || (is_month() && is_paged() && $this->opt['paged_display']))
598
  {
599
  //Deal with the anchor
600
  $breadcrumb->set_anchor($this->opt['date_anchor'], get_month_link(get_the_time('Y'), get_the_time('m')));
603
  //Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
604
  $breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('Y'), $this->opt['archive_date_prefix'], $this->opt['archive_date_suffix']));
605
  //If we're paged, or not in the archive by year let's link to the first archive by year page
606
+ if(is_day() || is_month() || is_single() || (is_paged() && $this->opt['paged_display']))
607
  {
608
  //Deal with the anchor
609
  $breadcrumb->set_anchor($this->opt['date_anchor'], get_year_link(get_the_time('Y')));
770
  {
771
  $this->do_author();
772
  }
773
+ //For archives
774
+ else if(is_archive())
 
 
 
 
 
 
 
 
 
 
775
  {
776
+ //For taxonomy based archives, had to add the two specifics in to overcome WordPress bug
777
+ if(is_tax() || is_category() || is_tag())
778
+ {
779
+ $term = $wp_query->get_queried_object();
780
+ //For hierarchical taxonomy based archives
781
+ if(is_taxonomy_hierarchical($term->taxonomy))
782
+ {
783
+ $this->do_archive_by_term_hierarchical();
784
+ }
785
+ //For flat taxonomy based archives
786
+ else
787
+ {
788
+ $this->do_archive_by_term_flat();
789
+ }
790
+ }
791
+ //For date based archives
792
+ else
793
+ {
794
+ $this->do_archive_by_date();
795
+ }
796
  }
797
  //For 404 pages
798
  else if(is_404())
935
  //The main compiling loop
936
  foreach($this->trail as $key=>$breadcrumb)
937
  {
938
+ $trail_str .= '<li';
939
  //Trim titles, if needed
940
  if($this->opt['max_title_length'] > 0)
941
  {
942
  //Trim the breadcrumb's title
943
  $breadcrumb->title_trim($this->opt['max_title_length']);
944
  }
945
+ //On the first run we need to add in a class for the home breadcrumb
946
+ if($trail_str === '<li')
947
+ {
948
+ $trail_str .= ' class="home" ';
949
+ }
950
  //If we are on the current item there are some things that must be done
951
  if($key === 0)
952
  {
953
  $this->current_item($breadcrumb);
954
+ //Add in a class for current_item
955
+ $trail_str .= ' class="current_item" ';
956
  }
957
  //Place in the breadcrumb's assembled elements
958
+ $trail_str .= '>' . $breadcrumb->assemble($linked);
959
  $trail_str .= "</li>\n";
960
  }
961
  //Should we return or echo the assembled trail?
languages/breadcrumb-navxt.pot CHANGED
@@ -7,7 +7,7 @@ msgid ""
7
  msgstr ""
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
10
- "POT-Creation-Date: 2009-07-28 00:49+0000\n"
11
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -15,508 +15,566 @@ msgstr ""
15
  "Content-Type: text/plain; charset=CHARSET\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
 
18
- #: breadcrumb_navxt_admin.php:145
19
  msgid "Insufficient privileges to proceed."
20
  msgstr ""
21
 
22
- #: breadcrumb_navxt_admin.php:201 breadcrumb_navxt_class.php:214
23
  msgid ""
24
  "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
25
  "%\">"
26
  msgstr ""
27
 
28
- #: breadcrumb_navxt_admin.php:537
29
  msgid "Settings"
30
  msgstr ""
31
 
32
- #: breadcrumb_navxt_admin.php:580 breadcrumb_navxt_admin.php:617
33
- #: breadcrumb_navxt_admin.php:793
34
  msgid "Breadcrumb NavXT Settings"
35
  msgstr ""
36
 
37
- #: breadcrumb_navxt_admin.php:619
38
  #, php-format
39
  msgid "Get help with \"%s\""
40
  msgstr ""
41
 
42
- #: breadcrumb_navxt_admin.php:631
43
  #, php-format
44
  msgid ""
45
  "Tips for the settings are located below select options. Please refer to the %"
46
  "sdocumentation%s for more information."
47
  msgstr ""
48
 
49
- #: breadcrumb_navxt_admin.php:632
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr ""
52
 
53
- #: breadcrumb_navxt_admin.php:687
54
  msgid ""
55
  "All of your current Breadcrumb NavXT settings will be overwritten with the "
56
  "default values. Are you sure you want to continue?"
57
  msgstr ""
58
 
59
- #: breadcrumb_navxt_admin.php:690
60
  msgid ""
61
  "All of your current Breadcrumb NavXT settings will be overwritten with the "
62
  "imported values. Are you sure you want to continue?"
63
  msgstr ""
64
 
65
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_admin.php:1293
66
  msgid "Import"
67
  msgstr ""
68
 
69
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_admin.php:1294
70
  msgid "Export"
71
  msgstr ""
72
 
73
- #: breadcrumb_navxt_admin.php:743 breadcrumb_navxt_admin.php:1295
74
  msgid "Reset"
75
  msgstr ""
76
 
77
- #: breadcrumb_navxt_admin.php:803
78
  msgid "General"
79
  msgstr ""
80
 
81
- #: breadcrumb_navxt_admin.php:807
82
  msgid "Breadcrumb Separator"
83
  msgstr ""
84
 
85
- #: breadcrumb_navxt_admin.php:811
86
  msgid "Placed in between each breadcrumb."
87
  msgstr ""
88
 
89
- #: breadcrumb_navxt_admin.php:816
90
  msgid "Breadcrumb Max Title Length"
91
  msgstr ""
92
 
93
- #: breadcrumb_navxt_admin.php:824
94
  msgid "Home Breadcrumb"
95
  msgstr ""
96
 
97
- #: breadcrumb_navxt_admin.php:829
98
  msgid "Place the home breadcrumb in the trail."
99
  msgstr ""
100
 
101
- #: breadcrumb_navxt_admin.php:834
102
  msgid "Home Title: "
103
  msgstr ""
104
 
105
- #: breadcrumb_navxt_admin.php:843
106
  msgid "Blog Breadcrumb"
107
  msgstr ""
108
 
109
- #: breadcrumb_navxt_admin.php:848
110
  msgid "Place the blog breadcrumb in the trail."
111
  msgstr ""
112
 
113
- #: breadcrumb_navxt_admin.php:854
114
  msgid "Home Prefix"
115
  msgstr ""
116
 
117
- #: breadcrumb_navxt_admin.php:862
118
  msgid "Home Suffix"
119
  msgstr ""
120
 
121
- #: breadcrumb_navxt_admin.php:870
122
  msgid "Home Anchor"
123
  msgstr ""
124
 
125
- #: breadcrumb_navxt_admin.php:874
126
  msgid "The anchor template for the home breadcrumb."
127
  msgstr ""
128
 
129
- #: breadcrumb_navxt_admin.php:879
130
  msgid "Blog Anchor"
131
  msgstr ""
132
 
133
- #: breadcrumb_navxt_admin.php:883
134
  msgid ""
135
  "The anchor template for the blog breadcrumb, used only in static front page "
136
  "environments."
137
  msgstr ""
138
 
139
- #: breadcrumb_navxt_admin.php:889
140
  msgid "Current Item"
141
  msgstr ""
142
 
143
- #: breadcrumb_navxt_admin.php:893
144
  msgid "Link Current Item"
145
  msgstr ""
146
 
147
- #: breadcrumb_navxt_admin.php:898
148
  msgid "Yes"
149
  msgstr ""
150
 
151
- #: breadcrumb_navxt_admin.php:904
152
  msgid "Current Item Prefix"
153
  msgstr ""
154
 
155
- #: breadcrumb_navxt_admin.php:908
156
  msgid ""
157
  "This is always placed in front of the last breadcrumb in the trail, before "
158
  "any other prefixes for that breadcrumb."
159
  msgstr ""
160
 
161
- #: breadcrumb_navxt_admin.php:913
162
  msgid "Current Item Suffix"
163
  msgstr ""
164
 
165
- #: breadcrumb_navxt_admin.php:917
166
  msgid ""
167
  "This is always placed after the last breadcrumb in the trail, and after any "
168
  "other prefixes for that breadcrumb."
169
  msgstr ""
170
 
171
- #: breadcrumb_navxt_admin.php:922
172
  msgid "Current Item Anchor"
173
  msgstr ""
174
 
175
- #: breadcrumb_navxt_admin.php:926
176
  msgid "The anchor template for current item breadcrumbs."
177
  msgstr ""
178
 
179
- #: breadcrumb_navxt_admin.php:931
180
  msgid "Paged Breadcrumb"
181
  msgstr ""
182
 
183
- #: breadcrumb_navxt_admin.php:936
184
  msgid "Include the paged breadcrumb in the breadcrumb trail."
185
  msgstr ""
186
 
187
- #: breadcrumb_navxt_admin.php:938
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:943
194
  msgid "Paged Prefix"
195
  msgstr ""
196
 
197
- #: breadcrumb_navxt_admin.php:951
198
  msgid "Paged Suffix"
199
  msgstr ""
200
 
201
- #: breadcrumb_navxt_admin.php:960
202
  msgid "Posts &amp; Pages"
203
  msgstr ""
204
 
205
- #: breadcrumb_navxt_admin.php:964
206
  msgid "Post Prefix"
207
  msgstr ""
208
 
209
- #: breadcrumb_navxt_admin.php:972
210
  msgid "Post Suffix"
211
  msgstr ""
212
 
213
- #: breadcrumb_navxt_admin.php:980
214
  msgid "Post Anchor"
215
  msgstr ""
216
 
217
- #: breadcrumb_navxt_admin.php:984
218
  msgid "The anchor template for post breadcrumbs."
219
  msgstr ""
220
 
221
- #: breadcrumb_navxt_admin.php:989
222
  msgid "Post Taxonomy Display"
223
  msgstr ""
224
 
225
- #: breadcrumb_navxt_admin.php:994
226
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
227
  msgstr ""
228
 
229
- #: breadcrumb_navxt_admin.php:1000
230
  msgid "Post Taxonomy"
231
  msgstr ""
232
 
233
- #: breadcrumb_navxt_admin.php:1005 breadcrumb_navxt_admin.php:1060
234
  msgid "Categories"
235
  msgstr ""
236
 
237
- #: breadcrumb_navxt_admin.php:1010 breadcrumb_navxt_admin.php:1110
 
 
 
 
238
  msgid "Tags"
239
  msgstr ""
240
 
241
- #: breadcrumb_navxt_admin.php:1013
242
  msgid "The taxonomy which the breadcrumb trail will show."
243
  msgstr ""
244
 
245
- #: breadcrumb_navxt_admin.php:1018
246
  msgid "Page Prefix"
247
  msgstr ""
248
 
249
- #: breadcrumb_navxt_admin.php:1026
250
  msgid "Page Suffix"
251
  msgstr ""
252
 
253
- #: breadcrumb_navxt_admin.php:1034
254
  msgid "Page Anchor"
255
  msgstr ""
256
 
257
- #: breadcrumb_navxt_admin.php:1038
258
  msgid "The anchor template for page breadcrumbs."
259
  msgstr ""
260
 
261
- #: breadcrumb_navxt_admin.php:1043
262
  msgid "Attachment Prefix"
263
  msgstr ""
264
 
265
- #: breadcrumb_navxt_admin.php:1051
266
  msgid "Attachment Suffix"
267
  msgstr ""
268
 
269
- #: breadcrumb_navxt_admin.php:1064
270
  msgid "Category Prefix"
271
  msgstr ""
272
 
273
- #: breadcrumb_navxt_admin.php:1068
274
  msgid "Applied before the anchor on all category breadcrumbs."
275
  msgstr ""
276
 
277
- #: breadcrumb_navxt_admin.php:1073
278
  msgid "Category Suffix"
279
  msgstr ""
280
 
281
- #: breadcrumb_navxt_admin.php:1077
282
  msgid "Applied after the anchor on all category breadcrumbs."
283
  msgstr ""
284
 
285
- #: breadcrumb_navxt_admin.php:1082
286
  msgid "Category Anchor"
287
  msgstr ""
288
 
289
- #: breadcrumb_navxt_admin.php:1086
290
  msgid "The anchor template for category breadcrumbs."
291
  msgstr ""
292
 
293
- #: breadcrumb_navxt_admin.php:1091
294
  msgid "Archive by Category Prefix"
295
  msgstr ""
296
 
297
- #: breadcrumb_navxt_admin.php:1095
298
  msgid ""
299
  "Applied before the title of the current item breadcrumb on an archive by "
300
  "cateogry page."
301
  msgstr ""
302
 
303
- #: breadcrumb_navxt_admin.php:1100
304
  msgid "Archive by Category Suffix"
305
  msgstr ""
306
 
307
- #: breadcrumb_navxt_admin.php:1104
308
  msgid ""
309
  "Applied after the title of the current item breadcrumb on an archive by "
310
  "cateogry page."
311
  msgstr ""
312
 
313
- #: breadcrumb_navxt_admin.php:1114
314
  msgid "Tag Prefix"
315
  msgstr ""
316
 
317
- #: breadcrumb_navxt_admin.php:1118
318
  msgid "Applied before the anchor on all tag breadcrumbs."
319
  msgstr ""
320
 
321
- #: breadcrumb_navxt_admin.php:1123
322
  msgid "Tag Suffix"
323
  msgstr ""
324
 
325
- #: breadcrumb_navxt_admin.php:1127
326
  msgid "Applied after the anchor on all tag breadcrumbs."
327
  msgstr ""
328
 
329
- #: breadcrumb_navxt_admin.php:1132
330
  msgid "Tag Anchor"
331
  msgstr ""
332
 
333
- #: breadcrumb_navxt_admin.php:1136
334
  msgid "The anchor template for tag breadcrumbs."
335
  msgstr ""
336
 
337
- #: breadcrumb_navxt_admin.php:1141
338
  msgid "Archive by Tag Prefix"
339
  msgstr ""
340
 
341
- #: breadcrumb_navxt_admin.php:1145
342
  msgid ""
343
  "Applied before the title of the current item breadcrumb on an archive by tag "
344
  "page."
345
  msgstr ""
346
 
347
- #: breadcrumb_navxt_admin.php:1150
348
  msgid "Archive by Tag Suffix"
349
  msgstr ""
350
 
351
- #: breadcrumb_navxt_admin.php:1154
352
  msgid ""
353
  "Applied after the title of the current item breadcrumb on an archive by tag "
354
  "page."
355
  msgstr ""
356
 
357
- #: breadcrumb_navxt_admin.php:1160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  msgid "Date Archives"
359
  msgstr ""
360
 
361
- #: breadcrumb_navxt_admin.php:1164
362
  msgid "Archive by Date Prefix"
363
  msgstr ""
364
 
365
- #: breadcrumb_navxt_admin.php:1168
366
  msgid "Applied before the anchor on all date breadcrumbs."
367
  msgstr ""
368
 
369
- #: breadcrumb_navxt_admin.php:1173
370
  msgid "Archive by Date Suffix"
371
  msgstr ""
372
 
373
- #: breadcrumb_navxt_admin.php:1177
374
  msgid "Applied after the anchor on all date breadcrumbs."
375
  msgstr ""
376
 
377
- #: breadcrumb_navxt_admin.php:1182
378
  msgid "Date Anchor"
379
  msgstr ""
380
 
381
- #: breadcrumb_navxt_admin.php:1186
382
  msgid "The anchor template for date breadcrumbs."
383
  msgstr ""
384
 
385
- #: breadcrumb_navxt_admin.php:1192
386
  msgid "Miscellaneous"
387
  msgstr ""
388
 
389
- #: breadcrumb_navxt_admin.php:1196
390
  msgid "Author Prefix"
391
  msgstr ""
392
 
393
- #: breadcrumb_navxt_admin.php:1204
394
  msgid "Author Suffix"
395
  msgstr ""
396
 
397
- #: breadcrumb_navxt_admin.php:1212
398
  msgid "Author Display Format"
399
  msgstr ""
400
 
401
- #: breadcrumb_navxt_admin.php:1218
402
  msgid ""
403
  "display_name uses the name specified in \"Display name publicly as\" under "
404
  "the user profile the others correspond to options in the user profile."
405
  msgstr ""
406
 
407
- #: breadcrumb_navxt_admin.php:1223
408
  msgid "Search Prefix"
409
  msgstr ""
410
 
411
- #: breadcrumb_navxt_admin.php:1231
412
  msgid "Search Suffix"
413
  msgstr ""
414
 
415
- #: breadcrumb_navxt_admin.php:1239
416
  msgid "Search Anchor"
417
  msgstr ""
418
 
419
- #: breadcrumb_navxt_admin.php:1243
420
  msgid ""
421
  "The anchor template for search breadcrumbs, used only when the search "
422
  "results span several pages."
423
  msgstr ""
424
 
425
- #: breadcrumb_navxt_admin.php:1248
426
  msgid "404 Title"
427
  msgstr ""
428
 
429
- #: breadcrumb_navxt_admin.php:1256
430
  msgid "404 Prefix"
431
  msgstr ""
432
 
433
- #: breadcrumb_navxt_admin.php:1264
434
  msgid "404 Suffix"
435
  msgstr ""
436
 
437
- #: breadcrumb_navxt_admin.php:1273
438
  msgid "Save Changes"
439
  msgstr ""
440
 
441
- #: breadcrumb_navxt_admin.php:1279
442
  msgid "Import/Export/Reset Settings"
443
  msgstr ""
444
 
445
- #: breadcrumb_navxt_admin.php:1280
446
  msgid ""
447
  "Import Breadcrumb NavXT settings from a XML file, export the current "
448
  "settings to a XML file, or reset to the default Breadcrumb NavXT settings."
449
  msgstr ""
450
 
451
- #: breadcrumb_navxt_admin.php:1284
452
  msgid "Settings File"
453
  msgstr ""
454
 
455
- #: breadcrumb_navxt_admin.php:1288
456
  msgid "Select a XML settings file to upload and import settings from."
457
  msgstr ""
458
 
459
- #: breadcrumb_navxt_admin.php:1424
460
  msgid "Importing settings from file failed."
461
  msgstr ""
462
 
463
- #: breadcrumb_navxt_admin.php:1434
464
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
465
  msgstr ""
466
 
467
- #: breadcrumb_navxt_admin.php:1444
468
  msgid "The Breadcrumb NavXT settings were reset to the default values."
469
  msgstr ""
470
 
471
- #: breadcrumb_navxt_class.php:147
472
  msgid "Blog"
473
  msgstr ""
474
 
475
- #: breadcrumb_navxt_class.php:149 breadcrumb_navxt_class.php:153
476
- #: breadcrumb_navxt_class.php:177 breadcrumb_navxt_class.php:191
477
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
478
  msgstr ""
479
 
480
- #: breadcrumb_navxt_class.php:166
481
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
482
  msgstr ""
483
 
484
- #: breadcrumb_navxt_class.php:207
485
  msgid "404"
486
  msgstr ""
487
 
488
- #: breadcrumb_navxt_class.php:210
489
  msgid "Search results for &#39;"
490
  msgstr ""
491
 
492
- #: breadcrumb_navxt_class.php:221
493
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
494
  msgstr ""
495
 
496
- #: breadcrumb_navxt_class.php:224
497
  msgid "Articles by: "
498
  msgstr ""
499
 
500
- #: breadcrumb_navxt_class.php:228
501
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
502
  msgstr ""
503
 
504
- #: breadcrumb_navxt_class.php:237
505
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
506
  msgstr ""
507
 
508
- #: breadcrumb_navxt_class.php:240
509
  msgid "Archive by category &#39;"
510
  msgstr ""
511
 
512
- #: breadcrumb_navxt_class.php:244
513
  msgid "Archive by tag &#39;"
514
  msgstr ""
515
 
516
- #: breadcrumb_navxt_class.php:247
517
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
518
  msgstr ""
519
 
520
- #: breadcrumb_navxt_class.php:477
521
  msgid "Untagged"
522
  msgstr ""
7
  msgstr ""
8
  "Project-Id-Version: PACKAGE VERSION\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
10
+ "POT-Creation-Date: 2009-12-05 22:23+0000\n"
11
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "Content-Type: text/plain; charset=CHARSET\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
 
18
+ #: breadcrumb_navxt_admin.php:134
19
  msgid "Insufficient privileges to proceed."
20
  msgstr ""
21
 
22
+ #: breadcrumb_navxt_admin.php:190 breadcrumb_navxt_class.php:216
23
  msgid ""
24
  "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
25
  "%\">"
26
  msgstr ""
27
 
28
+ #: breadcrumb_navxt_admin.php:540
29
  msgid "Settings"
30
  msgstr ""
31
 
32
+ #: breadcrumb_navxt_admin.php:594 breadcrumb_navxt_admin.php:629
33
+ #: breadcrumb_navxt_admin.php:802
34
  msgid "Breadcrumb NavXT Settings"
35
  msgstr ""
36
 
37
+ #: breadcrumb_navxt_admin.php:630
38
  #, php-format
39
  msgid "Get help with \"%s\""
40
  msgstr ""
41
 
42
+ #: breadcrumb_navxt_admin.php:641
43
  #, php-format
44
  msgid ""
45
  "Tips for the settings are located below select options. Please refer to the %"
46
  "sdocumentation%s for more information."
47
  msgstr ""
48
 
49
+ #: breadcrumb_navxt_admin.php:642
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr ""
52
 
53
+ #: breadcrumb_navxt_admin.php:697
54
  msgid ""
55
  "All of your current Breadcrumb NavXT settings will be overwritten with the "
56
  "default values. Are you sure you want to continue?"
57
  msgstr ""
58
 
59
+ #: breadcrumb_navxt_admin.php:700
60
  msgid ""
61
  "All of your current Breadcrumb NavXT settings will be overwritten with the "
62
  "imported values. Are you sure you want to continue?"
63
  msgstr ""
64
 
65
+ #: breadcrumb_navxt_admin.php:753 breadcrumb_navxt_admin.php:1386
66
  msgid "Import"
67
  msgstr ""
68
 
69
+ #: breadcrumb_navxt_admin.php:753 breadcrumb_navxt_admin.php:1387
70
  msgid "Export"
71
  msgstr ""
72
 
73
+ #: breadcrumb_navxt_admin.php:753 breadcrumb_navxt_admin.php:1388
74
  msgid "Reset"
75
  msgstr ""
76
 
77
+ #: breadcrumb_navxt_admin.php:812
78
  msgid "General"
79
  msgstr ""
80
 
81
+ #: breadcrumb_navxt_admin.php:816
82
  msgid "Breadcrumb Separator"
83
  msgstr ""
84
 
85
+ #: breadcrumb_navxt_admin.php:820
86
  msgid "Placed in between each breadcrumb."
87
  msgstr ""
88
 
89
+ #: breadcrumb_navxt_admin.php:825
90
  msgid "Breadcrumb Max Title Length"
91
  msgstr ""
92
 
93
+ #: breadcrumb_navxt_admin.php:833
94
  msgid "Home Breadcrumb"
95
  msgstr ""
96
 
97
+ #: breadcrumb_navxt_admin.php:838
98
  msgid "Place the home breadcrumb in the trail."
99
  msgstr ""
100
 
101
+ #: breadcrumb_navxt_admin.php:843
102
  msgid "Home Title: "
103
  msgstr ""
104
 
105
+ #: breadcrumb_navxt_admin.php:852
106
  msgid "Blog Breadcrumb"
107
  msgstr ""
108
 
109
+ #: breadcrumb_navxt_admin.php:857
110
  msgid "Place the blog breadcrumb in the trail."
111
  msgstr ""
112
 
113
+ #: breadcrumb_navxt_admin.php:863
114
  msgid "Home Prefix"
115
  msgstr ""
116
 
117
+ #: breadcrumb_navxt_admin.php:871
118
  msgid "Home Suffix"
119
  msgstr ""
120
 
121
+ #: breadcrumb_navxt_admin.php:879
122
  msgid "Home Anchor"
123
  msgstr ""
124
 
125
+ #: breadcrumb_navxt_admin.php:883
126
  msgid "The anchor template for the home breadcrumb."
127
  msgstr ""
128
 
129
+ #: breadcrumb_navxt_admin.php:888
130
  msgid "Blog Anchor"
131
  msgstr ""
132
 
133
+ #: breadcrumb_navxt_admin.php:892
134
  msgid ""
135
  "The anchor template for the blog breadcrumb, used only in static front page "
136
  "environments."
137
  msgstr ""
138
 
139
+ #: breadcrumb_navxt_admin.php:898
140
  msgid "Current Item"
141
  msgstr ""
142
 
143
+ #: breadcrumb_navxt_admin.php:902
144
  msgid "Link Current Item"
145
  msgstr ""
146
 
147
+ #: breadcrumb_navxt_admin.php:907
148
  msgid "Yes"
149
  msgstr ""
150
 
151
+ #: breadcrumb_navxt_admin.php:913
152
  msgid "Current Item Prefix"
153
  msgstr ""
154
 
155
+ #: breadcrumb_navxt_admin.php:917
156
  msgid ""
157
  "This is always placed in front of the last breadcrumb in the trail, before "
158
  "any other prefixes for that breadcrumb."
159
  msgstr ""
160
 
161
+ #: breadcrumb_navxt_admin.php:922
162
  msgid "Current Item Suffix"
163
  msgstr ""
164
 
165
+ #: breadcrumb_navxt_admin.php:926
166
  msgid ""
167
  "This is always placed after the last breadcrumb in the trail, and after any "
168
  "other prefixes for that breadcrumb."
169
  msgstr ""
170
 
171
+ #: breadcrumb_navxt_admin.php:931
172
  msgid "Current Item Anchor"
173
  msgstr ""
174
 
175
+ #: breadcrumb_navxt_admin.php:935
176
  msgid "The anchor template for current item breadcrumbs."
177
  msgstr ""
178
 
179
+ #: breadcrumb_navxt_admin.php:940
180
  msgid "Paged Breadcrumb"
181
  msgstr ""
182
 
183
+ #: breadcrumb_navxt_admin.php:945
184
  msgid "Include the paged breadcrumb in the breadcrumb trail."
185
  msgstr ""
186
 
187
+ #: breadcrumb_navxt_admin.php:947
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:952
194
  msgid "Paged Prefix"
195
  msgstr ""
196
 
197
+ #: breadcrumb_navxt_admin.php:960
198
  msgid "Paged Suffix"
199
  msgstr ""
200
 
201
+ #: breadcrumb_navxt_admin.php:969
202
  msgid "Posts &amp; Pages"
203
  msgstr ""
204
 
205
+ #: breadcrumb_navxt_admin.php:973
206
  msgid "Post Prefix"
207
  msgstr ""
208
 
209
+ #: breadcrumb_navxt_admin.php:981
210
  msgid "Post Suffix"
211
  msgstr ""
212
 
213
+ #: breadcrumb_navxt_admin.php:989
214
  msgid "Post Anchor"
215
  msgstr ""
216
 
217
+ #: breadcrumb_navxt_admin.php:993
218
  msgid "The anchor template for post breadcrumbs."
219
  msgstr ""
220
 
221
+ #: breadcrumb_navxt_admin.php:998
222
  msgid "Post Taxonomy Display"
223
  msgstr ""
224
 
225
+ #: breadcrumb_navxt_admin.php:1003
226
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
227
  msgstr ""
228
 
229
+ #: breadcrumb_navxt_admin.php:1009
230
  msgid "Post Taxonomy"
231
  msgstr ""
232
 
233
+ #: breadcrumb_navxt_admin.php:1014 breadcrumb_navxt_admin.php:1091
234
  msgid "Categories"
235
  msgstr ""
236
 
237
+ #: breadcrumb_navxt_admin.php:1019
238
+ msgid "Dates"
239
+ msgstr ""
240
+
241
+ #: breadcrumb_navxt_admin.php:1024 breadcrumb_navxt_admin.php:1141
242
  msgid "Tags"
243
  msgstr ""
244
 
245
+ #: breadcrumb_navxt_admin.php:1044
246
  msgid "The taxonomy which the breadcrumb trail will show."
247
  msgstr ""
248
 
249
+ #: breadcrumb_navxt_admin.php:1049
250
  msgid "Page Prefix"
251
  msgstr ""
252
 
253
+ #: breadcrumb_navxt_admin.php:1057
254
  msgid "Page Suffix"
255
  msgstr ""
256
 
257
+ #: breadcrumb_navxt_admin.php:1065
258
  msgid "Page Anchor"
259
  msgstr ""
260
 
261
+ #: breadcrumb_navxt_admin.php:1069
262
  msgid "The anchor template for page breadcrumbs."
263
  msgstr ""
264
 
265
+ #: breadcrumb_navxt_admin.php:1074
266
  msgid "Attachment Prefix"
267
  msgstr ""
268
 
269
+ #: breadcrumb_navxt_admin.php:1082
270
  msgid "Attachment Suffix"
271
  msgstr ""
272
 
273
+ #: breadcrumb_navxt_admin.php:1095
274
  msgid "Category Prefix"
275
  msgstr ""
276
 
277
+ #: breadcrumb_navxt_admin.php:1099
278
  msgid "Applied before the anchor on all category breadcrumbs."
279
  msgstr ""
280
 
281
+ #: breadcrumb_navxt_admin.php:1104
282
  msgid "Category Suffix"
283
  msgstr ""
284
 
285
+ #: breadcrumb_navxt_admin.php:1108
286
  msgid "Applied after the anchor on all category breadcrumbs."
287
  msgstr ""
288
 
289
+ #: breadcrumb_navxt_admin.php:1113
290
  msgid "Category Anchor"
291
  msgstr ""
292
 
293
+ #: breadcrumb_navxt_admin.php:1117
294
  msgid "The anchor template for category breadcrumbs."
295
  msgstr ""
296
 
297
+ #: breadcrumb_navxt_admin.php:1122
298
  msgid "Archive by Category Prefix"
299
  msgstr ""
300
 
301
+ #: breadcrumb_navxt_admin.php:1126
302
  msgid ""
303
  "Applied before the title of the current item breadcrumb on an archive by "
304
  "cateogry page."
305
  msgstr ""
306
 
307
+ #: breadcrumb_navxt_admin.php:1131
308
  msgid "Archive by Category Suffix"
309
  msgstr ""
310
 
311
+ #: breadcrumb_navxt_admin.php:1135
312
  msgid ""
313
  "Applied after the title of the current item breadcrumb on an archive by "
314
  "cateogry page."
315
  msgstr ""
316
 
317
+ #: breadcrumb_navxt_admin.php:1145
318
  msgid "Tag Prefix"
319
  msgstr ""
320
 
321
+ #: breadcrumb_navxt_admin.php:1149
322
  msgid "Applied before the anchor on all tag breadcrumbs."
323
  msgstr ""
324
 
325
+ #: breadcrumb_navxt_admin.php:1154
326
  msgid "Tag Suffix"
327
  msgstr ""
328
 
329
+ #: breadcrumb_navxt_admin.php:1158
330
  msgid "Applied after the anchor on all tag breadcrumbs."
331
  msgstr ""
332
 
333
+ #: breadcrumb_navxt_admin.php:1163
334
  msgid "Tag Anchor"
335
  msgstr ""
336
 
337
+ #: breadcrumb_navxt_admin.php:1167
338
  msgid "The anchor template for tag breadcrumbs."
339
  msgstr ""
340
 
341
+ #: breadcrumb_navxt_admin.php:1172
342
  msgid "Archive by Tag Prefix"
343
  msgstr ""
344
 
345
+ #: breadcrumb_navxt_admin.php:1176
346
  msgid ""
347
  "Applied before the title of the current item breadcrumb on an archive by tag "
348
  "page."
349
  msgstr ""
350
 
351
+ #: breadcrumb_navxt_admin.php:1181
352
  msgid "Archive by Tag Suffix"
353
  msgstr ""
354
 
355
+ #: breadcrumb_navxt_admin.php:1185
356
  msgid ""
357
  "Applied after the title of the current item breadcrumb on an archive by tag "
358
  "page."
359
  msgstr ""
360
 
361
+ #: breadcrumb_navxt_admin.php:1203
362
+ #, php-format
363
+ msgid "%s Prefix"
364
+ msgstr ""
365
+
366
+ #: breadcrumb_navxt_admin.php:1207
367
+ #, php-format
368
+ msgid "Applied before the anchor on all %s breadcrumbs."
369
+ msgstr ""
370
+
371
+ #: breadcrumb_navxt_admin.php:1212
372
+ #, php-format
373
+ msgid "%s Suffix"
374
+ msgstr ""
375
+
376
+ #: breadcrumb_navxt_admin.php:1216
377
+ #, php-format
378
+ msgid "Applied after the anchor on all %s breadcrumbs."
379
+ msgstr ""
380
+
381
+ #: breadcrumb_navxt_admin.php:1221
382
+ #, php-format
383
+ msgid "%s Anchor"
384
+ msgstr ""
385
+
386
+ #: breadcrumb_navxt_admin.php:1225
387
+ #, php-format
388
+ msgid "The anchor template for %s breadcrumbs."
389
+ msgstr ""
390
+
391
+ #: breadcrumb_navxt_admin.php:1230
392
+ #, php-format
393
+ msgid "Archive by %s Prefix"
394
+ msgstr ""
395
+
396
+ #: breadcrumb_navxt_admin.php:1234
397
+ #, php-format
398
+ msgid ""
399
+ "Applied before the title of the current item breadcrumb on an archive by %s "
400
+ "page."
401
+ msgstr ""
402
+
403
+ #: breadcrumb_navxt_admin.php:1239
404
+ #, php-format
405
+ msgid "Archive by %s Suffix"
406
+ msgstr ""
407
+
408
+ #: breadcrumb_navxt_admin.php:1243
409
+ #, php-format
410
+ msgid ""
411
+ "Applied after the title of the current item breadcrumb on an archive by %s "
412
+ "page."
413
+ msgstr ""
414
+
415
+ #: breadcrumb_navxt_admin.php:1253
416
  msgid "Date Archives"
417
  msgstr ""
418
 
419
+ #: breadcrumb_navxt_admin.php:1257
420
  msgid "Archive by Date Prefix"
421
  msgstr ""
422
 
423
+ #: breadcrumb_navxt_admin.php:1261
424
  msgid "Applied before the anchor on all date breadcrumbs."
425
  msgstr ""
426
 
427
+ #: breadcrumb_navxt_admin.php:1266
428
  msgid "Archive by Date Suffix"
429
  msgstr ""
430
 
431
+ #: breadcrumb_navxt_admin.php:1270
432
  msgid "Applied after the anchor on all date breadcrumbs."
433
  msgstr ""
434
 
435
+ #: breadcrumb_navxt_admin.php:1275
436
  msgid "Date Anchor"
437
  msgstr ""
438
 
439
+ #: breadcrumb_navxt_admin.php:1279
440
  msgid "The anchor template for date breadcrumbs."
441
  msgstr ""
442
 
443
+ #: breadcrumb_navxt_admin.php:1285
444
  msgid "Miscellaneous"
445
  msgstr ""
446
 
447
+ #: breadcrumb_navxt_admin.php:1289
448
  msgid "Author Prefix"
449
  msgstr ""
450
 
451
+ #: breadcrumb_navxt_admin.php:1297
452
  msgid "Author Suffix"
453
  msgstr ""
454
 
455
+ #: breadcrumb_navxt_admin.php:1305
456
  msgid "Author Display Format"
457
  msgstr ""
458
 
459
+ #: breadcrumb_navxt_admin.php:1311
460
  msgid ""
461
  "display_name uses the name specified in \"Display name publicly as\" under "
462
  "the user profile the others correspond to options in the user profile."
463
  msgstr ""
464
 
465
+ #: breadcrumb_navxt_admin.php:1316
466
  msgid "Search Prefix"
467
  msgstr ""
468
 
469
+ #: breadcrumb_navxt_admin.php:1324
470
  msgid "Search Suffix"
471
  msgstr ""
472
 
473
+ #: breadcrumb_navxt_admin.php:1332
474
  msgid "Search Anchor"
475
  msgstr ""
476
 
477
+ #: breadcrumb_navxt_admin.php:1336
478
  msgid ""
479
  "The anchor template for search breadcrumbs, used only when the search "
480
  "results span several pages."
481
  msgstr ""
482
 
483
+ #: breadcrumb_navxt_admin.php:1341
484
  msgid "404 Title"
485
  msgstr ""
486
 
487
+ #: breadcrumb_navxt_admin.php:1349
488
  msgid "404 Prefix"
489
  msgstr ""
490
 
491
+ #: breadcrumb_navxt_admin.php:1357
492
  msgid "404 Suffix"
493
  msgstr ""
494
 
495
+ #: breadcrumb_navxt_admin.php:1366
496
  msgid "Save Changes"
497
  msgstr ""
498
 
499
+ #: breadcrumb_navxt_admin.php:1372
500
  msgid "Import/Export/Reset Settings"
501
  msgstr ""
502
 
503
+ #: breadcrumb_navxt_admin.php:1373
504
  msgid ""
505
  "Import Breadcrumb NavXT settings from a XML file, export the current "
506
  "settings to a XML file, or reset to the default Breadcrumb NavXT settings."
507
  msgstr ""
508
 
509
+ #: breadcrumb_navxt_admin.php:1377
510
  msgid "Settings File"
511
  msgstr ""
512
 
513
+ #: breadcrumb_navxt_admin.php:1381
514
  msgid "Select a XML settings file to upload and import settings from."
515
  msgstr ""
516
 
517
+ #: breadcrumb_navxt_admin.php:1518
518
  msgid "Importing settings from file failed."
519
  msgstr ""
520
 
521
+ #: breadcrumb_navxt_admin.php:1528
522
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
523
  msgstr ""
524
 
525
+ #: breadcrumb_navxt_admin.php:1538
526
  msgid "The Breadcrumb NavXT settings were reset to the default values."
527
  msgstr ""
528
 
529
+ #: breadcrumb_navxt_class.php:149
530
  msgid "Blog"
531
  msgstr ""
532
 
533
+ #: breadcrumb_navxt_class.php:151 breadcrumb_navxt_class.php:155
534
+ #: breadcrumb_navxt_class.php:179 breadcrumb_navxt_class.php:193
535
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
536
  msgstr ""
537
 
538
+ #: breadcrumb_navxt_class.php:168
539
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
540
  msgstr ""
541
 
542
+ #: breadcrumb_navxt_class.php:209
543
  msgid "404"
544
  msgstr ""
545
 
546
+ #: breadcrumb_navxt_class.php:212
547
  msgid "Search results for &#39;"
548
  msgstr ""
549
 
550
+ #: breadcrumb_navxt_class.php:223
551
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
552
  msgstr ""
553
 
554
+ #: breadcrumb_navxt_class.php:226
555
  msgid "Articles by: "
556
  msgstr ""
557
 
558
+ #: breadcrumb_navxt_class.php:230
559
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
560
  msgstr ""
561
 
562
+ #: breadcrumb_navxt_class.php:239
563
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
564
  msgstr ""
565
 
566
+ #: breadcrumb_navxt_class.php:242
567
  msgid "Archive by category &#39;"
568
  msgstr ""
569
 
570
+ #: breadcrumb_navxt_class.php:246
571
  msgid "Archive by tag &#39;"
572
  msgstr ""
573
 
574
+ #: breadcrumb_navxt_class.php:249
575
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
576
  msgstr ""
577
 
578
+ #: breadcrumb_navxt_class.php:488
579
  msgid "Untagged"
580
  msgstr ""
languages/breadcrumb_navxt-de_DE.mo CHANGED
Binary file
languages/breadcrumb_navxt-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2009-04-24 03:05+0000\n"
6
- "PO-Revision-Date: 2009-04-26 18:10+0100\n"
7
  "Last-Translator: mot <artnorm@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,12 +14,12 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
- #: breadcrumb_navxt_admin.php:134
18
  msgid "Insufficient privileges to proceed."
19
  msgstr "Es fehlen Berechtigungen um fortzufahren."
20
 
21
- #: breadcrumb_navxt_admin.php:190
22
- #: breadcrumb_navxt_class.php:165
23
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
24
  msgstr "<a title=\"Zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\">"
25
 
@@ -27,468 +27,490 @@ msgstr "<a title=\"Zur ersten Seite der Suchergebnisse für %title%.\" href=\"%l
27
  msgid "Settings"
28
  msgstr "Einstellungen"
29
 
30
- #: breadcrumb_navxt_admin.php:632
31
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
32
- msgstr "Alle Breadcrumb NavXT Einstellungen werden mit den Standardwerten überschrieben. Fortfahren?"
33
-
34
- #: breadcrumb_navxt_admin.php:636
35
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
36
- msgstr "Alle Breadcrumb NavXT Einstellungen werden mit den importierten Werten überschrieben. Fortfahren?"
37
-
38
- #: breadcrumb_navxt_admin.php:699
39
- msgid "Warning, your version of Breadcrumb NavXT does not match the version supported by this administrative interface. As a result, settings may not work as expected."
40
- msgstr "Warnung: Deine Version von Breadcrumb NavXT stimmt nicht mit den unterstützen Versionen von diesem Administrations-Interface überein. Dies kann zu Fehlfunktionen führen."
41
-
42
- #: breadcrumb_navxt_admin.php:700
43
- msgid "Your Breadcrumb NavXT Administration interface version is "
44
- msgstr "Die Breadcrumb NavXT Administrations-Interface Version ist "
45
-
46
- #: breadcrumb_navxt_admin.php:701
47
- msgid "Your Breadcrumb NavXT version is "
48
- msgstr "Die Breadcrumb NavXT Version ist "
49
-
50
- #: breadcrumb_navxt_admin.php:705
51
  msgid "Breadcrumb NavXT Settings"
52
  msgstr "Breadcrumb NavXT Einstellungen"
53
 
54
- #: breadcrumb_navxt_admin.php:707
 
 
 
 
 
55
  #, php-format
56
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
57
  msgstr "Tipps zu einzelnen Einstellungen befinden sich meist unter oder bei den Eingabefeldern. Weitere Informationen hält die %sOnline-Dokumentation%s (Englisch) bereit."
58
 
59
- #: breadcrumb_navxt_admin.php:708
60
  msgid "Go to the Breadcrumb NavXT online documentation"
61
  msgstr "Zur Breadcrumb NavXT Online-Dokumentation (englisch)"
62
 
63
- #: breadcrumb_navxt_admin.php:718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  msgid "General"
65
  msgstr "Allgemein"
66
 
67
- #: breadcrumb_navxt_admin.php:722
68
  msgid "Breadcrumb Separator"
69
  msgstr "Breadcrumb Trennsymbol"
70
 
71
- #: breadcrumb_navxt_admin.php:726
72
  msgid "Placed in between each breadcrumb."
73
  msgstr "Wird zwischen jedem Breadcrumb angezeigt."
74
 
75
- #: breadcrumb_navxt_admin.php:731
76
  msgid "Breadcrumb Max Title Length"
77
  msgstr "Maximale Länge eines Titels"
78
 
79
- #: breadcrumb_navxt_admin.php:739
80
  msgid "Home Breadcrumb"
81
  msgstr "Home-Breadcrumb"
82
 
83
- #: breadcrumb_navxt_admin.php:744
84
  msgid "Place the home breadcrumb in the trail."
85
  msgstr "Soll dargestellt werden."
86
 
87
- #: breadcrumb_navxt_admin.php:749
88
  msgid "Home Title: "
89
  msgstr "Titel:"
90
 
91
- #: breadcrumb_navxt_admin.php:758
 
 
 
 
 
 
 
 
92
  msgid "Home Prefix"
93
  msgstr "Home-Prefix"
94
 
95
- #: breadcrumb_navxt_admin.php:766
96
  msgid "Home Suffix"
97
  msgstr "Home-Suffix"
98
 
99
- #: breadcrumb_navxt_admin.php:774
100
  msgid "Home Anchor"
101
  msgstr "Home-Link"
102
 
103
- #: breadcrumb_navxt_admin.php:778
104
  msgid "The anchor template for the home breadcrumb."
105
  msgstr "Vorlage für den Link des Home-Breadcrumb."
106
 
107
- #: breadcrumb_navxt_admin.php:783
108
  msgid "Blog Anchor"
109
  msgstr "Blog-Link"
110
 
111
- #: breadcrumb_navxt_admin.php:787
112
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
113
  msgstr "Vorlage für den Link des Blog-Breadcrumbs, wird nur verwendet wenn eine \"statische Seite\" als Startseite verwendet wird."
114
 
115
- #: breadcrumb_navxt_admin.php:793
116
  msgid "Current Item"
117
  msgstr "Aktuelles Element"
118
 
119
- #: breadcrumb_navxt_admin.php:797
120
  msgid "Link Current Item"
121
  msgstr "Aktuelles Element verlinken"
122
 
123
- #: breadcrumb_navxt_admin.php:802
124
  msgid "Yes"
125
  msgstr "Ja"
126
 
127
- #: breadcrumb_navxt_admin.php:808
128
  msgid "Current Item Prefix"
129
  msgstr "Aktuelles Elementen-Prefix"
130
 
131
- #: breadcrumb_navxt_admin.php:812
132
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
133
  msgstr "Wird immer vor dem letzten Breadcrumb dargestellt und zwar vor allen anderen Prefix(en) für dieses Breadcrumb."
134
 
135
- #: breadcrumb_navxt_admin.php:817
136
  msgid "Current Item Suffix"
137
  msgstr "Aktuelles Elementen-Suffix"
138
 
139
- #: breadcrumb_navxt_admin.php:821
140
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
141
  msgstr "Analog zum Prefix wird auch das Suffix immer hinter dem letzten Breadcrumb inkl. Prefix(en) dargestellt."
142
 
143
- #: breadcrumb_navxt_admin.php:826
144
  msgid "Current Item Anchor"
145
  msgstr "Aktuelles-Element-Link"
146
 
147
- #: breadcrumb_navxt_admin.php:830
148
  msgid "The anchor template for current item breadcrumbs."
149
  msgstr "Vorlage für den Link des aktuellen Elements."
150
 
151
- #: breadcrumb_navxt_admin.php:835
152
  msgid "Paged Breadcrumb"
153
  msgstr "Seitenzahlen Breadcrumb"
154
 
155
- #: breadcrumb_navxt_admin.php:840
156
  msgid "Include the paged breadcrumb in the breadcrumb trail."
157
  msgstr "Seitenzahlen Breadcrumb soll in der Aufreihung gezeigt werden."
158
 
159
- #: breadcrumb_navxt_admin.php:842
160
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
161
  msgstr "Zeigt an, dass die Leserin sich auf einer anderen als der ersten Seite befindet, falls Mehrseitigkeit unterstützt wird (funktioniert bei beiden Typen, Beitrag und Seite)."
162
 
163
- #: breadcrumb_navxt_admin.php:847
164
  msgid "Paged Prefix"
165
  msgstr "Seitenzahlen-Prefix"
166
 
167
- #: breadcrumb_navxt_admin.php:855
168
  msgid "Paged Suffix"
169
  msgstr "Seitenzahlen-Suffix"
170
 
171
- #: breadcrumb_navxt_admin.php:864
172
  msgid "Posts &amp; Pages"
173
  msgstr "Beiträge &amp; Seiten"
174
 
175
- #: breadcrumb_navxt_admin.php:868
176
  msgid "Post Prefix"
177
  msgstr "Beitrags-Prefix"
178
 
179
- #: breadcrumb_navxt_admin.php:876
180
  msgid "Post Suffix"
181
  msgstr "Beitrags-Suffix"
182
 
183
- #: breadcrumb_navxt_admin.php:884
184
  msgid "Post Anchor"
185
  msgstr "Beitrags-Link"
186
 
187
- #: breadcrumb_navxt_admin.php:888
188
  msgid "The anchor template for post breadcrumbs."
189
  msgstr "Vorlage für den Link des Beitrag-Breadcrumbs."
190
 
191
- #: breadcrumb_navxt_admin.php:893
192
  msgid "Post Taxonomy Display"
193
  msgstr "Beitrags-Klassifizierung"
194
 
195
- #: breadcrumb_navxt_admin.php:898
196
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
197
  msgstr "Klassifizierung soll vor dem Beitrag in der Aufreihung dargestellt werden."
198
 
199
- #: breadcrumb_navxt_admin.php:904
200
  msgid "Post Taxonomy"
201
  msgstr "Klassifizierung des Beitrages"
202
 
203
- #: breadcrumb_navxt_admin.php:909
204
- #: breadcrumb_navxt_admin.php:964
205
  msgid "Categories"
206
  msgstr "Kategorien"
207
 
208
- #: breadcrumb_navxt_admin.php:914
209
- #: breadcrumb_navxt_admin.php:1014
210
  msgid "Tags"
211
  msgstr "Tags"
212
 
213
- #: breadcrumb_navxt_admin.php:917
214
  msgid "The taxonomy which the breadcrumb trail will show."
215
  msgstr "Art der Klassifizierung, die die Aufreihung der Breadcrumbs nutzen wird. Hier ist eine Entscheidung zu treffen, da nicht beides - Kategorie und Tags - gleichzeitig angezeigt werden kann."
216
 
217
- #: breadcrumb_navxt_admin.php:922
218
  msgid "Page Prefix"
219
  msgstr "Seiten-Prefix"
220
 
221
- #: breadcrumb_navxt_admin.php:930
222
  msgid "Page Suffix"
223
  msgstr "Seiten-Suffix"
224
 
225
- #: breadcrumb_navxt_admin.php:938
226
  msgid "Page Anchor"
227
  msgstr "Seiten-Link"
228
 
229
- #: breadcrumb_navxt_admin.php:942
230
  msgid "The anchor template for page breadcrumbs."
231
  msgstr "Vorlage für den Link des Seiten-Breadcrumbs."
232
 
233
- #: breadcrumb_navxt_admin.php:947
234
  msgid "Attachment Prefix"
235
  msgstr "Anhangs-Prefix"
236
 
237
- #: breadcrumb_navxt_admin.php:955
238
  msgid "Attachment Suffix"
239
  msgstr "Anhangs-Suffix"
240
 
241
- #: breadcrumb_navxt_admin.php:968
242
  msgid "Category Prefix"
243
  msgstr "Kategorie-Prefix"
244
 
245
- #: breadcrumb_navxt_admin.php:972
246
  msgid "Applied before the anchor on all category breadcrumbs."
247
  msgstr "Wir vor dem Link von allen Kategorien-Breadcrumbs dargestellt."
248
 
249
- #: breadcrumb_navxt_admin.php:977
250
  msgid "Category Suffix"
251
  msgstr "Kategorie-Suffix"
252
 
253
- #: breadcrumb_navxt_admin.php:981
254
  msgid "Applied after the anchor on all category breadcrumbs."
255
  msgstr "Wir nach dem Link von allen Kategorien-Breadcrumbs dargestellt."
256
 
257
- #: breadcrumb_navxt_admin.php:986
258
  msgid "Category Anchor"
259
  msgstr "Kategorie-Link"
260
 
261
- #: breadcrumb_navxt_admin.php:990
262
  msgid "The anchor template for category breadcrumbs."
263
  msgstr "Vorlage für den Link des Kategorien-Breadcrumbs."
264
 
265
- #: breadcrumb_navxt_admin.php:995
266
  msgid "Archive by Category Prefix"
267
  msgstr "Archiv-Prefix (Kategorien)"
268
 
269
- #: breadcrumb_navxt_admin.php:999
270
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
271
  msgstr "Wir vor dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
272
 
273
- #: breadcrumb_navxt_admin.php:1004
274
  msgid "Archive by Category Suffix"
275
  msgstr "Archiv-Suffix (Kategorien)"
276
 
277
- #: breadcrumb_navxt_admin.php:1008
278
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
279
  msgstr "Wird nach dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
280
 
281
- #: breadcrumb_navxt_admin.php:1018
282
  msgid "Tag Prefix"
283
  msgstr "Tag-Prefix"
284
 
285
- #: breadcrumb_navxt_admin.php:1022
286
  msgid "Applied before the anchor on all tag breadcrumbs."
287
  msgstr "Wird vor dem Link der Tag-Breadcrumbs dargestellt."
288
 
289
- #: breadcrumb_navxt_admin.php:1027
290
  msgid "Tag Suffix"
291
  msgstr "Tag-Suffix"
292
 
293
- #: breadcrumb_navxt_admin.php:1031
294
  msgid "Applied after the anchor on all tag breadcrumbs."
295
  msgstr "Wird nach dem Link der Tag-Breadcrumbs dargestellt."
296
 
297
- #: breadcrumb_navxt_admin.php:1036
298
  msgid "Tag Anchor"
299
  msgstr "Tag-Link"
300
 
301
- #: breadcrumb_navxt_admin.php:1040
302
  msgid "The anchor template for tag breadcrumbs."
303
  msgstr "Vorlage für den Link des Tag-Breadcrumbs."
304
 
305
- #: breadcrumb_navxt_admin.php:1045
306
  msgid "Archive by Tag Prefix"
307
  msgstr "Archiv-Prefix (Tag)"
308
 
309
- #: breadcrumb_navxt_admin.php:1049
310
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
311
  msgstr "Wird vor dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
312
 
313
- #: breadcrumb_navxt_admin.php:1054
314
  msgid "Archive by Tag Suffix"
315
  msgstr "Archiv-Suffix (Tag)"
316
 
317
- #: breadcrumb_navxt_admin.php:1058
318
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
319
  msgstr "Wird nach dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
320
 
321
- #: breadcrumb_navxt_admin.php:1064
322
  msgid "Date Archives"
323
  msgstr "Archiv (Datum)"
324
 
325
- #: breadcrumb_navxt_admin.php:1068
326
  msgid "Archive by Date Prefix"
327
  msgstr "Archiv-Suffix (Datum)"
328
 
329
- #: breadcrumb_navxt_admin.php:1072
330
  msgid "Applied before the anchor on all date breadcrumbs."
331
  msgstr "Wird vor dem Link der Datums-Breadcrumbs angezeigt."
332
 
333
- #: breadcrumb_navxt_admin.php:1077
334
  msgid "Archive by Date Suffix"
335
  msgstr "Archiv-Suffix (Datum)"
336
 
337
- #: breadcrumb_navxt_admin.php:1081
338
  msgid "Applied after the anchor on all date breadcrumbs."
339
  msgstr "Wird nach dem Link der Datums-Archiv-Breadcrumbs angezeigt."
340
 
341
- #: breadcrumb_navxt_admin.php:1086
342
  msgid "Date Anchor"
343
  msgstr "Datums-Link"
344
 
345
- #: breadcrumb_navxt_admin.php:1090
346
  msgid "The anchor template for date breadcrumbs."
347
  msgstr "Vorlage für den Link der Datums-Breadcrumbs."
348
 
349
- #: breadcrumb_navxt_admin.php:1096
350
  msgid "Miscellaneous"
351
  msgstr "Verschiedenes"
352
 
353
- #: breadcrumb_navxt_admin.php:1100
354
  msgid "Author Prefix"
355
  msgstr "Autor-Prefix"
356
 
357
- #: breadcrumb_navxt_admin.php:1108
358
  msgid "Author Suffix"
359
  msgstr "Autor-Suffix"
360
 
361
- #: breadcrumb_navxt_admin.php:1116
362
  msgid "Author Display Format"
363
  msgstr "Autoren-Darstellung"
364
 
365
- #: breadcrumb_navxt_admin.php:1122
366
  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."
367
  msgstr "display_name steht für die Darstellung, die der Benutzer in seinem Profil gewählt hat, die anderen Optionen korrespondieren zu den Werten im Benutzerprofil."
368
 
369
- #: breadcrumb_navxt_admin.php:1127
370
  msgid "Search Prefix"
371
  msgstr "Suche-Prefix"
372
 
373
- #: breadcrumb_navxt_admin.php:1135
374
  msgid "Search Suffix"
375
  msgstr "Suche-Suffix"
376
 
377
- #: breadcrumb_navxt_admin.php:1143
378
  msgid "Search Anchor"
379
  msgstr "Suche-Link"
380
 
381
- #: breadcrumb_navxt_admin.php:1147
382
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
383
  msgstr "Vorlage für den Link der Suche-Breadcrumbs. Wird nur benutzt, falls die Suchergebnisse über mehrere Seiten laufen."
384
 
385
- #: breadcrumb_navxt_admin.php:1152
386
  msgid "404 Title"
387
  msgstr "404-Titel"
388
 
389
- #: breadcrumb_navxt_admin.php:1160
390
  msgid "404 Prefix"
391
  msgstr "404-Prefix"
392
 
393
- #: breadcrumb_navxt_admin.php:1168
394
  msgid "404 Suffix"
395
  msgstr "404-Suffix"
396
 
397
- #: breadcrumb_navxt_admin.php:1177
398
  msgid "Save Changes"
399
  msgstr "Änderungen speichern"
400
 
401
- #: breadcrumb_navxt_admin.php:1182
402
  msgid "Import/Export/Reset Settings"
403
  msgstr "Import/Export/Zurücksetzen von Einstellungen"
404
 
405
- #: breadcrumb_navxt_admin.php:1183
406
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
407
  msgstr "Breadcrumb NavXT Einstellungen aus einer XML-Datei importieren, die aktuellen Einstellungen in eine XML-Datei exportieren oder die Einstellungen auf Standardwerte zurücksetzen."
408
 
409
- #: breadcrumb_navxt_admin.php:1187
410
  msgid "Settings File"
411
  msgstr "Datei mit Einstellungen"
412
 
413
- #: breadcrumb_navxt_admin.php:1191
414
  msgid "Select a XML settings file to upload and import settings from."
415
  msgstr "Wähle eine XML-Datei zum hochladen, aus der die Einstellungen importiert werden können."
416
 
417
- #: breadcrumb_navxt_admin.php:1196
418
- msgid "Import"
419
- msgstr "Import"
420
-
421
- #: breadcrumb_navxt_admin.php:1197
422
- msgid "Export"
423
- msgstr "Export"
424
-
425
- #: breadcrumb_navxt_admin.php:1198
426
- msgid "Reset"
427
- msgstr "Zurücksetzen"
428
-
429
- #: breadcrumb_navxt_admin.php:1327
430
  msgid "Importing settings from file failed."
431
  msgstr "Datei-Import ist fehlgeschlagen."
432
 
433
- #: breadcrumb_navxt_admin.php:1331
434
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
435
  msgstr "Breadcrumb NavXT Einstellungen wurden erfolgreich importiert."
436
 
437
- #: breadcrumb_navxt_admin.php:1335
438
  msgid "The Breadcrumb NavXT settings were reset to the default values."
439
  msgstr "Breadcrumb NavXT Einstellungen wurden erfolgreich zurückgesetzt."
440
 
441
- #: breadcrumb_navxt_class.php:100
442
  msgid "Blog"
443
  msgstr "Blog"
444
 
445
- #: breadcrumb_navxt_class.php:102
446
- #: breadcrumb_navxt_class.php:104
447
- #: breadcrumb_navxt_class.php:128
448
- #: breadcrumb_navxt_class.php:142
449
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
450
  msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">"
451
 
452
- #: breadcrumb_navxt_class.php:117
453
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
454
  msgstr "<a title=\"Lade aktuelle Seite neu.\" href=\"%link%\">"
455
 
456
- #: breadcrumb_navxt_class.php:158
457
  msgid "404"
458
  msgstr "404"
459
 
460
- #: breadcrumb_navxt_class.php:161
461
  msgid "Search results for &#39;"
462
  msgstr "Suchergebnisse für &#39;"
463
 
464
- #: breadcrumb_navxt_class.php:172
465
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
466
  msgstr "<a title=\"Zum %title% Tag-Archiv.\" href=\"%link%\">"
467
 
468
- #: breadcrumb_navxt_class.php:175
469
  msgid "Articles by: "
470
  msgstr "Artikel von:"
471
 
472
- #: breadcrumb_navxt_class.php:186
 
 
 
 
473
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
474
  msgstr "<a title=\"Zum %title% Kategorie Archiv.\" href=\"%link%\">"
475
 
476
- #: breadcrumb_navxt_class.php:189
477
  msgid "Archive by category &#39;"
478
  msgstr "Archiv nach Kategorie &#39;"
479
 
480
- #: breadcrumb_navxt_class.php:193
481
  msgid "Archive by tag &#39;"
482
  msgstr "Archiv nach Tag &#39;"
483
 
484
- #: breadcrumb_navxt_class.php:196
485
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
486
  msgstr "<a title=\"Gehe zu %title% Archiv.\" href=\"%link%\">"
487
 
488
- #: breadcrumb_navxt_class.php:464
489
  msgid "Untagged"
490
  msgstr "Ohne Tags"
491
 
 
 
 
 
 
 
 
 
 
 
 
 
492
  #~ msgid "Leave the home breadcrumb out of the trail."
493
  #~ msgstr "Soll nicht dargestellt werden."
494
 
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2009-07-28 00:49+0000\n"
6
+ "PO-Revision-Date: 2009-07-29 17:41+0100\n"
7
  "Last-Translator: mot <artnorm@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
+ #: breadcrumb_navxt_admin.php:145
18
  msgid "Insufficient privileges to proceed."
19
  msgstr "Es fehlen Berechtigungen um fortzufahren."
20
 
21
+ #: breadcrumb_navxt_admin.php:201
22
+ #: breadcrumb_navxt_class.php:214
23
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
24
  msgstr "<a title=\"Zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\">"
25
 
27
  msgid "Settings"
28
  msgstr "Einstellungen"
29
 
30
+ #: breadcrumb_navxt_admin.php:580
31
+ #: breadcrumb_navxt_admin.php:617
32
+ #: breadcrumb_navxt_admin.php:793
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  msgid "Breadcrumb NavXT Settings"
34
  msgstr "Breadcrumb NavXT Einstellungen"
35
 
36
+ #: breadcrumb_navxt_admin.php:619
37
+ #, php-format
38
+ msgid "Get help with \"%s\""
39
+ msgstr "Hilfe für \"%s\""
40
+
41
+ #: breadcrumb_navxt_admin.php:631
42
  #, php-format
43
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
44
  msgstr "Tipps zu einzelnen Einstellungen befinden sich meist unter oder bei den Eingabefeldern. Weitere Informationen hält die %sOnline-Dokumentation%s (Englisch) bereit."
45
 
46
+ #: breadcrumb_navxt_admin.php:632
47
  msgid "Go to the Breadcrumb NavXT online documentation"
48
  msgstr "Zur Breadcrumb NavXT Online-Dokumentation (englisch)"
49
 
50
+ #: breadcrumb_navxt_admin.php:687
51
+ msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
52
+ msgstr "Alle Breadcrumb NavXT Einstellungen werden mit den Standardwerten überschrieben. Fortfahren?"
53
+
54
+ #: breadcrumb_navxt_admin.php:690
55
+ msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
56
+ msgstr "Alle Breadcrumb NavXT Einstellungen werden mit den importierten Werten überschrieben. Fortfahren?"
57
+
58
+ #: breadcrumb_navxt_admin.php:743
59
+ #: breadcrumb_navxt_admin.php:1293
60
+ msgid "Import"
61
+ msgstr "Import"
62
+
63
+ #: breadcrumb_navxt_admin.php:743
64
+ #: breadcrumb_navxt_admin.php:1294
65
+ msgid "Export"
66
+ msgstr "Export"
67
+
68
+ #: breadcrumb_navxt_admin.php:743
69
+ #: breadcrumb_navxt_admin.php:1295
70
+ msgid "Reset"
71
+ msgstr "Zurücksetzen"
72
+
73
+ #: breadcrumb_navxt_admin.php:803
74
  msgid "General"
75
  msgstr "Allgemein"
76
 
77
+ #: breadcrumb_navxt_admin.php:807
78
  msgid "Breadcrumb Separator"
79
  msgstr "Breadcrumb Trennsymbol"
80
 
81
+ #: breadcrumb_navxt_admin.php:811
82
  msgid "Placed in between each breadcrumb."
83
  msgstr "Wird zwischen jedem Breadcrumb angezeigt."
84
 
85
+ #: breadcrumb_navxt_admin.php:816
86
  msgid "Breadcrumb Max Title Length"
87
  msgstr "Maximale Länge eines Titels"
88
 
89
+ #: breadcrumb_navxt_admin.php:824
90
  msgid "Home Breadcrumb"
91
  msgstr "Home-Breadcrumb"
92
 
93
+ #: breadcrumb_navxt_admin.php:829
94
  msgid "Place the home breadcrumb in the trail."
95
  msgstr "Soll dargestellt werden."
96
 
97
+ #: breadcrumb_navxt_admin.php:834
98
  msgid "Home Title: "
99
  msgstr "Titel:"
100
 
101
+ #: breadcrumb_navxt_admin.php:843
102
+ msgid "Blog Breadcrumb"
103
+ msgstr "Blog-Breadcrumb"
104
+
105
+ #: breadcrumb_navxt_admin.php:848
106
+ msgid "Place the blog breadcrumb in the trail."
107
+ msgstr "Blog-Breqadcrumb soll angezeigt werden."
108
+
109
+ #: breadcrumb_navxt_admin.php:854
110
  msgid "Home Prefix"
111
  msgstr "Home-Prefix"
112
 
113
+ #: breadcrumb_navxt_admin.php:862
114
  msgid "Home Suffix"
115
  msgstr "Home-Suffix"
116
 
117
+ #: breadcrumb_navxt_admin.php:870
118
  msgid "Home Anchor"
119
  msgstr "Home-Link"
120
 
121
+ #: breadcrumb_navxt_admin.php:874
122
  msgid "The anchor template for the home breadcrumb."
123
  msgstr "Vorlage für den Link des Home-Breadcrumb."
124
 
125
+ #: breadcrumb_navxt_admin.php:879
126
  msgid "Blog Anchor"
127
  msgstr "Blog-Link"
128
 
129
+ #: breadcrumb_navxt_admin.php:883
130
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
131
  msgstr "Vorlage für den Link des Blog-Breadcrumbs, wird nur verwendet wenn eine \"statische Seite\" als Startseite verwendet wird."
132
 
133
+ #: breadcrumb_navxt_admin.php:889
134
  msgid "Current Item"
135
  msgstr "Aktuelles Element"
136
 
137
+ #: breadcrumb_navxt_admin.php:893
138
  msgid "Link Current Item"
139
  msgstr "Aktuelles Element verlinken"
140
 
141
+ #: breadcrumb_navxt_admin.php:898
142
  msgid "Yes"
143
  msgstr "Ja"
144
 
145
+ #: breadcrumb_navxt_admin.php:904
146
  msgid "Current Item Prefix"
147
  msgstr "Aktuelles Elementen-Prefix"
148
 
149
+ #: breadcrumb_navxt_admin.php:908
150
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
151
  msgstr "Wird immer vor dem letzten Breadcrumb dargestellt und zwar vor allen anderen Prefix(en) für dieses Breadcrumb."
152
 
153
+ #: breadcrumb_navxt_admin.php:913
154
  msgid "Current Item Suffix"
155
  msgstr "Aktuelles Elementen-Suffix"
156
 
157
+ #: breadcrumb_navxt_admin.php:917
158
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
159
  msgstr "Analog zum Prefix wird auch das Suffix immer hinter dem letzten Breadcrumb inkl. Prefix(en) dargestellt."
160
 
161
+ #: breadcrumb_navxt_admin.php:922
162
  msgid "Current Item Anchor"
163
  msgstr "Aktuelles-Element-Link"
164
 
165
+ #: breadcrumb_navxt_admin.php:926
166
  msgid "The anchor template for current item breadcrumbs."
167
  msgstr "Vorlage für den Link des aktuellen Elements."
168
 
169
+ #: breadcrumb_navxt_admin.php:931
170
  msgid "Paged Breadcrumb"
171
  msgstr "Seitenzahlen Breadcrumb"
172
 
173
+ #: breadcrumb_navxt_admin.php:936
174
  msgid "Include the paged breadcrumb in the breadcrumb trail."
175
  msgstr "Seitenzahlen Breadcrumb soll in der Aufreihung gezeigt werden."
176
 
177
+ #: breadcrumb_navxt_admin.php:938
178
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
179
  msgstr "Zeigt an, dass die Leserin sich auf einer anderen als der ersten Seite befindet, falls Mehrseitigkeit unterstützt wird (funktioniert bei beiden Typen, Beitrag und Seite)."
180
 
181
+ #: breadcrumb_navxt_admin.php:943
182
  msgid "Paged Prefix"
183
  msgstr "Seitenzahlen-Prefix"
184
 
185
+ #: breadcrumb_navxt_admin.php:951
186
  msgid "Paged Suffix"
187
  msgstr "Seitenzahlen-Suffix"
188
 
189
+ #: breadcrumb_navxt_admin.php:960
190
  msgid "Posts &amp; Pages"
191
  msgstr "Beiträge &amp; Seiten"
192
 
193
+ #: breadcrumb_navxt_admin.php:964
194
  msgid "Post Prefix"
195
  msgstr "Beitrags-Prefix"
196
 
197
+ #: breadcrumb_navxt_admin.php:972
198
  msgid "Post Suffix"
199
  msgstr "Beitrags-Suffix"
200
 
201
+ #: breadcrumb_navxt_admin.php:980
202
  msgid "Post Anchor"
203
  msgstr "Beitrags-Link"
204
 
205
+ #: breadcrumb_navxt_admin.php:984
206
  msgid "The anchor template for post breadcrumbs."
207
  msgstr "Vorlage für den Link des Beitrag-Breadcrumbs."
208
 
209
+ #: breadcrumb_navxt_admin.php:989
210
  msgid "Post Taxonomy Display"
211
  msgstr "Beitrags-Klassifizierung"
212
 
213
+ #: breadcrumb_navxt_admin.php:994
214
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
215
  msgstr "Klassifizierung soll vor dem Beitrag in der Aufreihung dargestellt werden."
216
 
217
+ #: breadcrumb_navxt_admin.php:1000
218
  msgid "Post Taxonomy"
219
  msgstr "Klassifizierung des Beitrages"
220
 
221
+ #: breadcrumb_navxt_admin.php:1005
222
+ #: breadcrumb_navxt_admin.php:1060
223
  msgid "Categories"
224
  msgstr "Kategorien"
225
 
226
+ #: breadcrumb_navxt_admin.php:1010
227
+ #: breadcrumb_navxt_admin.php:1110
228
  msgid "Tags"
229
  msgstr "Tags"
230
 
231
+ #: breadcrumb_navxt_admin.php:1013
232
  msgid "The taxonomy which the breadcrumb trail will show."
233
  msgstr "Art der Klassifizierung, die die Aufreihung der Breadcrumbs nutzen wird. Hier ist eine Entscheidung zu treffen, da nicht beides - Kategorie und Tags - gleichzeitig angezeigt werden kann."
234
 
235
+ #: breadcrumb_navxt_admin.php:1018
236
  msgid "Page Prefix"
237
  msgstr "Seiten-Prefix"
238
 
239
+ #: breadcrumb_navxt_admin.php:1026
240
  msgid "Page Suffix"
241
  msgstr "Seiten-Suffix"
242
 
243
+ #: breadcrumb_navxt_admin.php:1034
244
  msgid "Page Anchor"
245
  msgstr "Seiten-Link"
246
 
247
+ #: breadcrumb_navxt_admin.php:1038
248
  msgid "The anchor template for page breadcrumbs."
249
  msgstr "Vorlage für den Link des Seiten-Breadcrumbs."
250
 
251
+ #: breadcrumb_navxt_admin.php:1043
252
  msgid "Attachment Prefix"
253
  msgstr "Anhangs-Prefix"
254
 
255
+ #: breadcrumb_navxt_admin.php:1051
256
  msgid "Attachment Suffix"
257
  msgstr "Anhangs-Suffix"
258
 
259
+ #: breadcrumb_navxt_admin.php:1064
260
  msgid "Category Prefix"
261
  msgstr "Kategorie-Prefix"
262
 
263
+ #: breadcrumb_navxt_admin.php:1068
264
  msgid "Applied before the anchor on all category breadcrumbs."
265
  msgstr "Wir vor dem Link von allen Kategorien-Breadcrumbs dargestellt."
266
 
267
+ #: breadcrumb_navxt_admin.php:1073
268
  msgid "Category Suffix"
269
  msgstr "Kategorie-Suffix"
270
 
271
+ #: breadcrumb_navxt_admin.php:1077
272
  msgid "Applied after the anchor on all category breadcrumbs."
273
  msgstr "Wir nach dem Link von allen Kategorien-Breadcrumbs dargestellt."
274
 
275
+ #: breadcrumb_navxt_admin.php:1082
276
  msgid "Category Anchor"
277
  msgstr "Kategorie-Link"
278
 
279
+ #: breadcrumb_navxt_admin.php:1086
280
  msgid "The anchor template for category breadcrumbs."
281
  msgstr "Vorlage für den Link des Kategorien-Breadcrumbs."
282
 
283
+ #: breadcrumb_navxt_admin.php:1091
284
  msgid "Archive by Category Prefix"
285
  msgstr "Archiv-Prefix (Kategorien)"
286
 
287
+ #: breadcrumb_navxt_admin.php:1095
288
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
289
  msgstr "Wir vor dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
290
 
291
+ #: breadcrumb_navxt_admin.php:1100
292
  msgid "Archive by Category Suffix"
293
  msgstr "Archiv-Suffix (Kategorien)"
294
 
295
+ #: breadcrumb_navxt_admin.php:1104
296
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
297
  msgstr "Wird nach dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
298
 
299
+ #: breadcrumb_navxt_admin.php:1114
300
  msgid "Tag Prefix"
301
  msgstr "Tag-Prefix"
302
 
303
+ #: breadcrumb_navxt_admin.php:1118
304
  msgid "Applied before the anchor on all tag breadcrumbs."
305
  msgstr "Wird vor dem Link der Tag-Breadcrumbs dargestellt."
306
 
307
+ #: breadcrumb_navxt_admin.php:1123
308
  msgid "Tag Suffix"
309
  msgstr "Tag-Suffix"
310
 
311
+ #: breadcrumb_navxt_admin.php:1127
312
  msgid "Applied after the anchor on all tag breadcrumbs."
313
  msgstr "Wird nach dem Link der Tag-Breadcrumbs dargestellt."
314
 
315
+ #: breadcrumb_navxt_admin.php:1132
316
  msgid "Tag Anchor"
317
  msgstr "Tag-Link"
318
 
319
+ #: breadcrumb_navxt_admin.php:1136
320
  msgid "The anchor template for tag breadcrumbs."
321
  msgstr "Vorlage für den Link des Tag-Breadcrumbs."
322
 
323
+ #: breadcrumb_navxt_admin.php:1141
324
  msgid "Archive by Tag Prefix"
325
  msgstr "Archiv-Prefix (Tag)"
326
 
327
+ #: breadcrumb_navxt_admin.php:1145
328
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
329
  msgstr "Wird vor dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
330
 
331
+ #: breadcrumb_navxt_admin.php:1150
332
  msgid "Archive by Tag Suffix"
333
  msgstr "Archiv-Suffix (Tag)"
334
 
335
+ #: breadcrumb_navxt_admin.php:1154
336
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
337
  msgstr "Wird nach dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
338
 
339
+ #: breadcrumb_navxt_admin.php:1160
340
  msgid "Date Archives"
341
  msgstr "Archiv (Datum)"
342
 
343
+ #: breadcrumb_navxt_admin.php:1164
344
  msgid "Archive by Date Prefix"
345
  msgstr "Archiv-Suffix (Datum)"
346
 
347
+ #: breadcrumb_navxt_admin.php:1168
348
  msgid "Applied before the anchor on all date breadcrumbs."
349
  msgstr "Wird vor dem Link der Datums-Breadcrumbs angezeigt."
350
 
351
+ #: breadcrumb_navxt_admin.php:1173
352
  msgid "Archive by Date Suffix"
353
  msgstr "Archiv-Suffix (Datum)"
354
 
355
+ #: breadcrumb_navxt_admin.php:1177
356
  msgid "Applied after the anchor on all date breadcrumbs."
357
  msgstr "Wird nach dem Link der Datums-Archiv-Breadcrumbs angezeigt."
358
 
359
+ #: breadcrumb_navxt_admin.php:1182
360
  msgid "Date Anchor"
361
  msgstr "Datums-Link"
362
 
363
+ #: breadcrumb_navxt_admin.php:1186
364
  msgid "The anchor template for date breadcrumbs."
365
  msgstr "Vorlage für den Link der Datums-Breadcrumbs."
366
 
367
+ #: breadcrumb_navxt_admin.php:1192
368
  msgid "Miscellaneous"
369
  msgstr "Verschiedenes"
370
 
371
+ #: breadcrumb_navxt_admin.php:1196
372
  msgid "Author Prefix"
373
  msgstr "Autor-Prefix"
374
 
375
+ #: breadcrumb_navxt_admin.php:1204
376
  msgid "Author Suffix"
377
  msgstr "Autor-Suffix"
378
 
379
+ #: breadcrumb_navxt_admin.php:1212
380
  msgid "Author Display Format"
381
  msgstr "Autoren-Darstellung"
382
 
383
+ #: breadcrumb_navxt_admin.php:1218
384
  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."
385
  msgstr "display_name steht für die Darstellung, die der Benutzer in seinem Profil gewählt hat, die anderen Optionen korrespondieren zu den Werten im Benutzerprofil."
386
 
387
+ #: breadcrumb_navxt_admin.php:1223
388
  msgid "Search Prefix"
389
  msgstr "Suche-Prefix"
390
 
391
+ #: breadcrumb_navxt_admin.php:1231
392
  msgid "Search Suffix"
393
  msgstr "Suche-Suffix"
394
 
395
+ #: breadcrumb_navxt_admin.php:1239
396
  msgid "Search Anchor"
397
  msgstr "Suche-Link"
398
 
399
+ #: breadcrumb_navxt_admin.php:1243
400
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
401
  msgstr "Vorlage für den Link der Suche-Breadcrumbs. Wird nur benutzt, falls die Suchergebnisse über mehrere Seiten laufen."
402
 
403
+ #: breadcrumb_navxt_admin.php:1248
404
  msgid "404 Title"
405
  msgstr "404-Titel"
406
 
407
+ #: breadcrumb_navxt_admin.php:1256
408
  msgid "404 Prefix"
409
  msgstr "404-Prefix"
410
 
411
+ #: breadcrumb_navxt_admin.php:1264
412
  msgid "404 Suffix"
413
  msgstr "404-Suffix"
414
 
415
+ #: breadcrumb_navxt_admin.php:1273
416
  msgid "Save Changes"
417
  msgstr "Änderungen speichern"
418
 
419
+ #: breadcrumb_navxt_admin.php:1279
420
  msgid "Import/Export/Reset Settings"
421
  msgstr "Import/Export/Zurücksetzen von Einstellungen"
422
 
423
+ #: breadcrumb_navxt_admin.php:1280
424
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
425
  msgstr "Breadcrumb NavXT Einstellungen aus einer XML-Datei importieren, die aktuellen Einstellungen in eine XML-Datei exportieren oder die Einstellungen auf Standardwerte zurücksetzen."
426
 
427
+ #: breadcrumb_navxt_admin.php:1284
428
  msgid "Settings File"
429
  msgstr "Datei mit Einstellungen"
430
 
431
+ #: breadcrumb_navxt_admin.php:1288
432
  msgid "Select a XML settings file to upload and import settings from."
433
  msgstr "Wähle eine XML-Datei zum hochladen, aus der die Einstellungen importiert werden können."
434
 
435
+ #: breadcrumb_navxt_admin.php:1424
 
 
 
 
 
 
 
 
 
 
 
 
436
  msgid "Importing settings from file failed."
437
  msgstr "Datei-Import ist fehlgeschlagen."
438
 
439
+ #: breadcrumb_navxt_admin.php:1434
440
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
441
  msgstr "Breadcrumb NavXT Einstellungen wurden erfolgreich importiert."
442
 
443
+ #: breadcrumb_navxt_admin.php:1444
444
  msgid "The Breadcrumb NavXT settings were reset to the default values."
445
  msgstr "Breadcrumb NavXT Einstellungen wurden erfolgreich zurückgesetzt."
446
 
447
+ #: breadcrumb_navxt_class.php:147
448
  msgid "Blog"
449
  msgstr "Blog"
450
 
451
+ #: breadcrumb_navxt_class.php:149
452
+ #: breadcrumb_navxt_class.php:153
453
+ #: breadcrumb_navxt_class.php:177
454
+ #: breadcrumb_navxt_class.php:191
455
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
456
  msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">"
457
 
458
+ #: breadcrumb_navxt_class.php:166
459
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
460
  msgstr "<a title=\"Lade aktuelle Seite neu.\" href=\"%link%\">"
461
 
462
+ #: breadcrumb_navxt_class.php:207
463
  msgid "404"
464
  msgstr "404"
465
 
466
+ #: breadcrumb_navxt_class.php:210
467
  msgid "Search results for &#39;"
468
  msgstr "Suchergebnisse für &#39;"
469
 
470
+ #: breadcrumb_navxt_class.php:221
471
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
472
  msgstr "<a title=\"Zum %title% Tag-Archiv.\" href=\"%link%\">"
473
 
474
+ #: breadcrumb_navxt_class.php:224
475
  msgid "Articles by: "
476
  msgstr "Artikel von:"
477
 
478
+ #: breadcrumb_navxt_class.php:228
479
+ msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
480
+ msgstr "<a title=\"Zur ersten Seite für Biträge mit %title%.\" href=\"%link%\">"
481
+
482
+ #: breadcrumb_navxt_class.php:237
483
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
484
  msgstr "<a title=\"Zum %title% Kategorie Archiv.\" href=\"%link%\">"
485
 
486
+ #: breadcrumb_navxt_class.php:240
487
  msgid "Archive by category &#39;"
488
  msgstr "Archiv nach Kategorie &#39;"
489
 
490
+ #: breadcrumb_navxt_class.php:244
491
  msgid "Archive by tag &#39;"
492
  msgstr "Archiv nach Tag &#39;"
493
 
494
+ #: breadcrumb_navxt_class.php:247
495
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
496
  msgstr "<a title=\"Gehe zu %title% Archiv.\" href=\"%link%\">"
497
 
498
+ #: breadcrumb_navxt_class.php:477
499
  msgid "Untagged"
500
  msgstr "Ohne Tags"
501
 
502
+ #~ msgid ""
503
+ #~ "Warning, your version of Breadcrumb NavXT does not match the version "
504
+ #~ "supported by this administrative interface. As a result, settings may not "
505
+ #~ "work as expected."
506
+ #~ msgstr ""
507
+ #~ "Warnung: Deine Version von Breadcrumb NavXT stimmt nicht mit den "
508
+ #~ "unterstützen Versionen von diesem Administrations-Interface überein. Dies "
509
+ #~ "kann zu Fehlfunktionen führen."
510
+ #~ msgid "Your Breadcrumb NavXT Administration interface version is "
511
+ #~ msgstr "Die Breadcrumb NavXT Administrations-Interface Version ist "
512
+ #~ msgid "Your Breadcrumb NavXT version is "
513
+ #~ msgstr "Die Breadcrumb NavXT Version ist "
514
  #~ msgid "Leave the home breadcrumb out of the trail."
515
  #~ msgstr "Soll nicht dargestellt werden."
516
 
languages/breadcrumb_navxt-es_ES.mo CHANGED
Binary file
languages/breadcrumb_navxt-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2009-07-28 00:49+0000\n"
6
- "PO-Revision-Date: 2009-07-29 16:08-0600\n"
7
  "Last-Translator: Karin Sequen <karin.sequen@bumerang180.com>\n"
8
  "Language-Team: Karin Sequen || Bumerang180 <info@bumerang180.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,491 +14,545 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Country: GUATEMALA\n"
16
  ": \n"
17
- "X-Poedit-SourceCharset: iso-8859-1\n"
18
  "X-Poedit-SearchPath-0: C:/Documents and Settings/mtekk/My Documents/Aptana Studio/Breadcrumb NavXT/trunk\n"
19
 
20
- #: breadcrumb_navxt_admin.php:145
21
  msgid "Insufficient privileges to proceed."
22
  msgstr "No tiene privilegios para proceder."
23
 
24
- #: breadcrumb_navxt_admin.php:201
25
- #: breadcrumb_navxt_class.php:214
26
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
27
  msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
28
 
29
- #: breadcrumb_navxt_admin.php:537
30
  msgid "Settings"
31
  msgstr "Configuraciones"
32
 
33
- #: breadcrumb_navxt_admin.php:580
34
- #: breadcrumb_navxt_admin.php:617
35
- #: breadcrumb_navxt_admin.php:793
36
  msgid "Breadcrumb NavXT Settings"
37
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
38
 
39
- #: breadcrumb_navxt_admin.php:619
40
  #, php-format
41
  msgid "Get help with \"%s\""
42
  msgstr "Obtener ayuda con \"%s\""
43
 
44
- #: breadcrumb_navxt_admin.php:631
45
  #, php-format
46
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
47
  msgstr "Encontrará tips para las configuraciones debajo de cada opción. Por favor lea la %sdocumentación%s para más información (en inglés)."
48
 
49
- #: breadcrumb_navxt_admin.php:632
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
52
 
53
- #: breadcrumb_navxt_admin.php:687
54
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
55
  msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores predeterminados. ¿Seguro que desea continuar?"
56
 
57
- #: breadcrumb_navxt_admin.php:690
58
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
59
  msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores que se importen. ¿Seguro que desea continuar?"
60
 
61
- #: breadcrumb_navxt_admin.php:743
62
- #: breadcrumb_navxt_admin.php:1293
63
  msgid "Import"
64
  msgstr "Importar"
65
 
66
- #: breadcrumb_navxt_admin.php:743
67
- #: breadcrumb_navxt_admin.php:1294
68
  msgid "Export"
69
  msgstr "Exportar"
70
 
71
- #: breadcrumb_navxt_admin.php:743
72
- #: breadcrumb_navxt_admin.php:1295
73
  msgid "Reset"
74
  msgstr "Reiniciar"
75
 
76
- #: breadcrumb_navxt_admin.php:803
77
  msgid "General"
78
  msgstr "General"
79
 
80
- #: breadcrumb_navxt_admin.php:807
81
  msgid "Breadcrumb Separator"
82
  msgstr "Separador de Navegación"
83
 
84
- #: breadcrumb_navxt_admin.php:811
85
  msgid "Placed in between each breadcrumb."
86
  msgstr "Colocado en medio de cada opción de navegación."
87
 
88
- #: breadcrumb_navxt_admin.php:816
89
  msgid "Breadcrumb Max Title Length"
90
  msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
91
 
92
- #: breadcrumb_navxt_admin.php:824
93
  msgid "Home Breadcrumb"
94
  msgstr "Incluir Inicio"
95
 
96
- #: breadcrumb_navxt_admin.php:829
97
  msgid "Place the home breadcrumb in the trail."
98
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
99
 
100
- #: breadcrumb_navxt_admin.php:834
101
  msgid "Home Title: "
102
  msgstr "Título de Página de Inicio:"
103
 
104
- #: breadcrumb_navxt_admin.php:843
105
  msgid "Blog Breadcrumb"
106
  msgstr "Incluir Inicio (del Blog)"
107
 
108
- #: breadcrumb_navxt_admin.php:848
109
  msgid "Place the blog breadcrumb in the trail."
110
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
111
 
112
- #: breadcrumb_navxt_admin.php:854
113
  msgid "Home Prefix"
114
  msgstr "Prefijo de Inicio"
115
 
116
- #: breadcrumb_navxt_admin.php:862
117
  msgid "Home Suffix"
118
  msgstr "Sufijo de Inicio"
119
 
120
- #: breadcrumb_navxt_admin.php:870
121
  msgid "Home Anchor"
122
  msgstr "Vínculo a Inicio"
123
 
124
- #: breadcrumb_navxt_admin.php:874
125
  msgid "The anchor template for the home breadcrumb."
126
  msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
127
 
128
- #: breadcrumb_navxt_admin.php:879
129
  msgid "Blog Anchor"
130
  msgstr "Vínculo a Blog"
131
 
132
- #: breadcrumb_navxt_admin.php:883
133
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
134
  msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
135
 
136
- #: breadcrumb_navxt_admin.php:889
137
  msgid "Current Item"
138
  msgstr "Item Actual"
139
 
140
- #: breadcrumb_navxt_admin.php:893
141
  msgid "Link Current Item"
142
  msgstr "Incluir Vínculo a Item Actual"
143
 
144
- #: breadcrumb_navxt_admin.php:898
145
  msgid "Yes"
146
  msgstr "Sí"
147
 
148
- #: breadcrumb_navxt_admin.php:904
149
  msgid "Current Item Prefix"
150
  msgstr "Prefijo de Item Actual"
151
 
152
- #: breadcrumb_navxt_admin.php:908
153
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
154
  msgstr "Esto se coloca siempre antes de la última opción de la ruta de navegación, antes que cualquier otro prefijo para esa opción."
155
 
156
- #: breadcrumb_navxt_admin.php:913
157
  msgid "Current Item Suffix"
158
  msgstr "Sufijo de Item Actual"
159
 
160
- #: breadcrumb_navxt_admin.php:917
161
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
162
  msgstr "Esto se coloca siempre después del último item de la ruta de navegación y después de cualquier otro sufijo para ese item."
163
 
164
- #: breadcrumb_navxt_admin.php:922
165
  msgid "Current Item Anchor"
166
  msgstr "Vínculo a Item Actual"
167
 
168
- #: breadcrumb_navxt_admin.php:926
169
  msgid "The anchor template for current item breadcrumbs."
170
  msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
171
 
172
- #: breadcrumb_navxt_admin.php:931
173
  msgid "Paged Breadcrumb"
174
  msgstr "Ruta de Navegación Paginada"
175
 
176
- #: breadcrumb_navxt_admin.php:936
177
  msgid "Include the paged breadcrumb in the breadcrumb trail."
178
  msgstr "Incluir la navegación paginada en la ruta de navegación"
179
 
180
- #: breadcrumb_navxt_admin.php:938
181
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
182
  msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
183
 
184
- #: breadcrumb_navxt_admin.php:943
185
  msgid "Paged Prefix"
186
  msgstr "Prefijo para Paginado"
187
 
188
- #: breadcrumb_navxt_admin.php:951
189
  msgid "Paged Suffix"
190
  msgstr "Sufijo para Paginado"
191
 
192
- #: breadcrumb_navxt_admin.php:960
193
  msgid "Posts &amp; Pages"
194
  msgstr "Entradas &amp; Páginas"
195
 
196
- #: breadcrumb_navxt_admin.php:964
197
  msgid "Post Prefix"
198
  msgstr "Prefijo de Entrada"
199
 
200
- #: breadcrumb_navxt_admin.php:972
201
  msgid "Post Suffix"
202
  msgstr "Sufijo de Entrada"
203
 
204
- #: breadcrumb_navxt_admin.php:980
205
  msgid "Post Anchor"
206
  msgstr "Vínculo a Entrada"
207
 
208
- #: breadcrumb_navxt_admin.php:984
209
  msgid "The anchor template for post breadcrumbs."
210
  msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
211
 
212
- #: breadcrumb_navxt_admin.php:989
213
  msgid "Post Taxonomy Display"
214
  msgstr "Mostrar Clasificación de Entradas"
215
 
216
- #: breadcrumb_navxt_admin.php:994
217
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
218
  msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
219
 
220
- #: breadcrumb_navxt_admin.php:1000
221
  msgid "Post Taxonomy"
222
  msgstr "Clasificación de Entradas"
223
 
224
- #: breadcrumb_navxt_admin.php:1005
225
- #: breadcrumb_navxt_admin.php:1060
226
  msgid "Categories"
227
  msgstr "Categorías"
228
 
229
- #: breadcrumb_navxt_admin.php:1010
230
- #: breadcrumb_navxt_admin.php:1110
 
 
 
 
231
  msgid "Tags"
232
  msgstr "Etiquetas"
233
 
234
- #: breadcrumb_navxt_admin.php:1013
235
  msgid "The taxonomy which the breadcrumb trail will show."
236
  msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
237
 
238
- #: breadcrumb_navxt_admin.php:1018
239
  msgid "Page Prefix"
240
  msgstr "Prefijo de Página"
241
 
242
- #: breadcrumb_navxt_admin.php:1026
243
  msgid "Page Suffix"
244
  msgstr "Sufijo de Página"
245
 
246
- #: breadcrumb_navxt_admin.php:1034
247
  msgid "Page Anchor"
248
  msgstr "Vínculo a Página"
249
 
250
- #: breadcrumb_navxt_admin.php:1038
251
  msgid "The anchor template for page breadcrumbs."
252
  msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
253
 
254
- #: breadcrumb_navxt_admin.php:1043
255
  msgid "Attachment Prefix"
256
  msgstr "Prefijo de Archivo Adjunto"
257
 
258
- #: breadcrumb_navxt_admin.php:1051
259
  msgid "Attachment Suffix"
260
  msgstr "Sufijo de Archivo Adjunto"
261
 
262
- #: breadcrumb_navxt_admin.php:1064
263
  msgid "Category Prefix"
264
  msgstr "Prefijo de Categoría"
265
 
266
- #: breadcrumb_navxt_admin.php:1068
267
  msgid "Applied before the anchor on all category breadcrumbs."
268
  msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
269
 
270
- #: breadcrumb_navxt_admin.php:1073
271
  msgid "Category Suffix"
272
  msgstr "Sufijo de Categoría"
273
 
274
- #: breadcrumb_navxt_admin.php:1077
275
  msgid "Applied after the anchor on all category breadcrumbs."
276
  msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
277
 
278
- #: breadcrumb_navxt_admin.php:1082
279
  msgid "Category Anchor"
280
  msgstr "Vínculo a Categoría"
281
 
282
- #: breadcrumb_navxt_admin.php:1086
283
  msgid "The anchor template for category breadcrumbs."
284
  msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
285
 
286
- #: breadcrumb_navxt_admin.php:1091
287
  msgid "Archive by Category Prefix"
288
  msgstr "Prefijo de Archivo por Categoría"
289
 
290
- #: breadcrumb_navxt_admin.php:1095
291
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
292
  msgstr "Aplicado antes del título del item actual en un archivo por categoría."
293
 
294
- #: breadcrumb_navxt_admin.php:1100
295
  msgid "Archive by Category Suffix"
296
  msgstr "Sufijo de Archivo por Categoría"
297
 
298
- #: breadcrumb_navxt_admin.php:1104
299
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
300
  msgstr "Aplicado después del título del item actual en un archivo por categoría."
301
 
302
- #: breadcrumb_navxt_admin.php:1114
303
  msgid "Tag Prefix"
304
  msgstr "Prefijo de Etiqueta"
305
 
306
- #: breadcrumb_navxt_admin.php:1118
307
  msgid "Applied before the anchor on all tag breadcrumbs."
308
  msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
309
 
310
- #: breadcrumb_navxt_admin.php:1123
311
  msgid "Tag Suffix"
312
  msgstr "Sufijo de Etiqueta"
313
 
314
- #: breadcrumb_navxt_admin.php:1127
315
  msgid "Applied after the anchor on all tag breadcrumbs."
316
  msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
317
 
318
- #: breadcrumb_navxt_admin.php:1132
319
  msgid "Tag Anchor"
320
  msgstr "Vínculo a Etiqueta"
321
 
322
- #: breadcrumb_navxt_admin.php:1136
323
  msgid "The anchor template for tag breadcrumbs."
324
  msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
325
 
326
- #: breadcrumb_navxt_admin.php:1141
327
  msgid "Archive by Tag Prefix"
328
  msgstr "Prefijo de Archivo por Etiqueta"
329
 
330
- #: breadcrumb_navxt_admin.php:1145
331
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
332
  msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
333
 
334
- #: breadcrumb_navxt_admin.php:1150
335
  msgid "Archive by Tag Suffix"
336
  msgstr "Sufijo de Archivo por Etiqueta"
337
 
338
- #: breadcrumb_navxt_admin.php:1154
339
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
340
  msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
341
 
342
- #: breadcrumb_navxt_admin.php:1160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
343
  msgid "Date Archives"
344
  msgstr "Archivos por Fecha"
345
 
346
- #: breadcrumb_navxt_admin.php:1164
347
  msgid "Archive by Date Prefix"
348
  msgstr "Prefijo de Archivo por Fecha"
349
 
350
- #: breadcrumb_navxt_admin.php:1168
351
  msgid "Applied before the anchor on all date breadcrumbs."
352
  msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
353
 
354
- #: breadcrumb_navxt_admin.php:1173
355
  msgid "Archive by Date Suffix"
356
  msgstr "Sufijo de Archivo por Fecha"
357
 
358
- #: breadcrumb_navxt_admin.php:1177
359
  msgid "Applied after the anchor on all date breadcrumbs."
360
  msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
361
 
362
- #: breadcrumb_navxt_admin.php:1182
363
  msgid "Date Anchor"
364
  msgstr "Vínculo a Fecha"
365
 
366
- #: breadcrumb_navxt_admin.php:1186
367
  msgid "The anchor template for date breadcrumbs."
368
  msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
369
 
370
- #: breadcrumb_navxt_admin.php:1192
371
  msgid "Miscellaneous"
372
  msgstr "Misceláneos"
373
 
374
- #: breadcrumb_navxt_admin.php:1196
375
  msgid "Author Prefix"
376
  msgstr "Prefijo de Autor"
377
 
378
- #: breadcrumb_navxt_admin.php:1204
379
  msgid "Author Suffix"
380
  msgstr "Sufijo de Autor"
381
 
382
- #: breadcrumb_navxt_admin.php:1212
383
  msgid "Author Display Format"
384
  msgstr "Formato de Despliegue de Autor"
385
 
386
- #: breadcrumb_navxt_admin.php:1218
387
  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."
388
  msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
389
 
390
- #: breadcrumb_navxt_admin.php:1223
391
  msgid "Search Prefix"
392
  msgstr "Prefijo de Búsqueda"
393
 
394
- #: breadcrumb_navxt_admin.php:1231
395
  msgid "Search Suffix"
396
  msgstr "Sufijo de Búsqueda"
397
 
398
- #: breadcrumb_navxt_admin.php:1239
399
  msgid "Search Anchor"
400
  msgstr "Vínculo a Búsqueda"
401
 
402
- #: breadcrumb_navxt_admin.php:1243
403
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
404
  msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
405
 
406
- #: breadcrumb_navxt_admin.php:1248
407
  msgid "404 Title"
408
  msgstr "Título Error 404"
409
 
410
- #: breadcrumb_navxt_admin.php:1256
411
  msgid "404 Prefix"
412
  msgstr "Prefijo de Error 404"
413
 
414
- #: breadcrumb_navxt_admin.php:1264
415
  msgid "404 Suffix"
416
  msgstr "Sufijo de Error 404"
417
 
418
- #: breadcrumb_navxt_admin.php:1273
419
  msgid "Save Changes"
420
  msgstr "Grabar Cambios"
421
 
422
- #: breadcrumb_navxt_admin.php:1279
423
  msgid "Import/Export/Reset Settings"
424
  msgstr "Importar/Exportar/Reiniciar Ajustes"
425
 
426
- #: breadcrumb_navxt_admin.php:1280
427
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
428
  msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
429
 
430
- #: breadcrumb_navxt_admin.php:1284
431
  msgid "Settings File"
432
  msgstr "Archivo de Ajustes"
433
 
434
- #: breadcrumb_navxt_admin.php:1288
435
  msgid "Select a XML settings file to upload and import settings from."
436
  msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
437
 
438
- #: breadcrumb_navxt_admin.php:1424
439
  msgid "Importing settings from file failed."
440
  msgstr "Falló la importación de los ajustes desde el archivo."
441
 
442
- #: breadcrumb_navxt_admin.php:1434
443
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
444
  msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
445
 
446
- #: breadcrumb_navxt_admin.php:1444
447
  msgid "The Breadcrumb NavXT settings were reset to the default values."
448
  msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
449
 
450
- #: breadcrumb_navxt_class.php:147
451
  msgid "Blog"
452
  msgstr "Inicio"
453
 
454
- #: breadcrumb_navxt_class.php:149
455
- #: breadcrumb_navxt_class.php:153
456
- #: breadcrumb_navxt_class.php:177
457
- #: breadcrumb_navxt_class.php:191
458
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
459
  msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
460
 
461
- #: breadcrumb_navxt_class.php:166
462
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
463
  msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
464
 
465
- #: breadcrumb_navxt_class.php:207
466
  msgid "404"
467
  msgstr "Página no encontrada"
468
 
469
- #: breadcrumb_navxt_class.php:210
470
  msgid "Search results for &#39;"
471
  msgstr "Resultados de búsqueda para &#39;"
472
 
473
- #: breadcrumb_navxt_class.php:221
474
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
475
  msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
476
 
477
- #: breadcrumb_navxt_class.php:224
478
  msgid "Articles by: "
479
  msgstr "Artículos por: "
480
 
481
- #: breadcrumb_navxt_class.php:228
482
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
483
  msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
484
 
485
- #: breadcrumb_navxt_class.php:237
486
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
487
  msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
488
 
489
- #: breadcrumb_navxt_class.php:240
490
  msgid "Archive by category &#39;"
491
  msgstr "Archivo por Categoría &#39;"
492
 
493
- #: breadcrumb_navxt_class.php:244
494
  msgid "Archive by tag &#39;"
495
  msgstr "Archivo por Etiqueta &#39;"
496
 
497
- #: breadcrumb_navxt_class.php:247
498
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
499
  msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
500
 
501
- #: breadcrumb_navxt_class.php:477
502
  msgid "Untagged"
503
  msgstr "Sin etiqueta"
504
 
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2009-12-05 22:23+0000\n"
6
+ "PO-Revision-Date: 2009-12-07 09:42-0600\n"
7
  "Last-Translator: Karin Sequen <karin.sequen@bumerang180.com>\n"
8
  "Language-Team: Karin Sequen || Bumerang180 <info@bumerang180.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-Country: GUATEMALA\n"
16
  ": \n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
  "X-Poedit-SearchPath-0: C:/Documents and Settings/mtekk/My Documents/Aptana Studio/Breadcrumb NavXT/trunk\n"
19
 
20
+ #: breadcrumb_navxt_admin.php:134
21
  msgid "Insufficient privileges to proceed."
22
  msgstr "No tiene privilegios para proceder."
23
 
24
+ #: breadcrumb_navxt_admin.php:190
25
+ #: breadcrumb_navxt_class.php:216
26
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
27
  msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
28
 
29
+ #: breadcrumb_navxt_admin.php:540
30
  msgid "Settings"
31
  msgstr "Configuraciones"
32
 
33
+ #: breadcrumb_navxt_admin.php:594
34
+ #: breadcrumb_navxt_admin.php:629
35
+ #: breadcrumb_navxt_admin.php:802
36
  msgid "Breadcrumb NavXT Settings"
37
  msgstr "Opciones de Configuración de Breadcrumb NavXT"
38
 
39
+ #: breadcrumb_navxt_admin.php:630
40
  #, php-format
41
  msgid "Get help with \"%s\""
42
  msgstr "Obtener ayuda con \"%s\""
43
 
44
+ #: breadcrumb_navxt_admin.php:641
45
  #, php-format
46
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
47
  msgstr "Encontrará tips para las configuraciones debajo de cada opción. Por favor lea la %sdocumentación%s para más información (en inglés)."
48
 
49
+ #: breadcrumb_navxt_admin.php:642
50
  msgid "Go to the Breadcrumb NavXT online documentation"
51
  msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
52
 
53
+ #: breadcrumb_navxt_admin.php:697
54
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
55
  msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores predeterminados. ¿Seguro que desea continuar?"
56
 
57
+ #: breadcrumb_navxt_admin.php:700
58
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
59
  msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores que se importen. ¿Seguro que desea continuar?"
60
 
61
+ #: breadcrumb_navxt_admin.php:753
62
+ #: breadcrumb_navxt_admin.php:1386
63
  msgid "Import"
64
  msgstr "Importar"
65
 
66
+ #: breadcrumb_navxt_admin.php:753
67
+ #: breadcrumb_navxt_admin.php:1387
68
  msgid "Export"
69
  msgstr "Exportar"
70
 
71
+ #: breadcrumb_navxt_admin.php:753
72
+ #: breadcrumb_navxt_admin.php:1388
73
  msgid "Reset"
74
  msgstr "Reiniciar"
75
 
76
+ #: breadcrumb_navxt_admin.php:812
77
  msgid "General"
78
  msgstr "General"
79
 
80
+ #: breadcrumb_navxt_admin.php:816
81
  msgid "Breadcrumb Separator"
82
  msgstr "Separador de Navegación"
83
 
84
+ #: breadcrumb_navxt_admin.php:820
85
  msgid "Placed in between each breadcrumb."
86
  msgstr "Colocado en medio de cada opción de navegación."
87
 
88
+ #: breadcrumb_navxt_admin.php:825
89
  msgid "Breadcrumb Max Title Length"
90
  msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
91
 
92
+ #: breadcrumb_navxt_admin.php:833
93
  msgid "Home Breadcrumb"
94
  msgstr "Incluir Inicio"
95
 
96
+ #: breadcrumb_navxt_admin.php:838
97
  msgid "Place the home breadcrumb in the trail."
98
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
99
 
100
+ #: breadcrumb_navxt_admin.php:843
101
  msgid "Home Title: "
102
  msgstr "Título de Página de Inicio:"
103
 
104
+ #: breadcrumb_navxt_admin.php:852
105
  msgid "Blog Breadcrumb"
106
  msgstr "Incluir Inicio (del Blog)"
107
 
108
+ #: breadcrumb_navxt_admin.php:857
109
  msgid "Place the blog breadcrumb in the trail."
110
  msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
111
 
112
+ #: breadcrumb_navxt_admin.php:863
113
  msgid "Home Prefix"
114
  msgstr "Prefijo de Inicio"
115
 
116
+ #: breadcrumb_navxt_admin.php:871
117
  msgid "Home Suffix"
118
  msgstr "Sufijo de Inicio"
119
 
120
+ #: breadcrumb_navxt_admin.php:879
121
  msgid "Home Anchor"
122
  msgstr "Vínculo a Inicio"
123
 
124
+ #: breadcrumb_navxt_admin.php:883
125
  msgid "The anchor template for the home breadcrumb."
126
  msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
127
 
128
+ #: breadcrumb_navxt_admin.php:888
129
  msgid "Blog Anchor"
130
  msgstr "Vínculo a Blog"
131
 
132
+ #: breadcrumb_navxt_admin.php:892
133
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
134
  msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
135
 
136
+ #: breadcrumb_navxt_admin.php:898
137
  msgid "Current Item"
138
  msgstr "Item Actual"
139
 
140
+ #: breadcrumb_navxt_admin.php:902
141
  msgid "Link Current Item"
142
  msgstr "Incluir Vínculo a Item Actual"
143
 
144
+ #: breadcrumb_navxt_admin.php:907
145
  msgid "Yes"
146
  msgstr "Sí"
147
 
148
+ #: breadcrumb_navxt_admin.php:913
149
  msgid "Current Item Prefix"
150
  msgstr "Prefijo de Item Actual"
151
 
152
+ #: breadcrumb_navxt_admin.php:917
153
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
154
  msgstr "Esto se coloca siempre antes de la última opción de la ruta de navegación, antes que cualquier otro prefijo para esa opción."
155
 
156
+ #: breadcrumb_navxt_admin.php:922
157
  msgid "Current Item Suffix"
158
  msgstr "Sufijo de Item Actual"
159
 
160
+ #: breadcrumb_navxt_admin.php:926
161
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
162
  msgstr "Esto se coloca siempre después del último item de la ruta de navegación y después de cualquier otro sufijo para ese item."
163
 
164
+ #: breadcrumb_navxt_admin.php:931
165
  msgid "Current Item Anchor"
166
  msgstr "Vínculo a Item Actual"
167
 
168
+ #: breadcrumb_navxt_admin.php:935
169
  msgid "The anchor template for current item breadcrumbs."
170
  msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
171
 
172
+ #: breadcrumb_navxt_admin.php:940
173
  msgid "Paged Breadcrumb"
174
  msgstr "Ruta de Navegación Paginada"
175
 
176
+ #: breadcrumb_navxt_admin.php:945
177
  msgid "Include the paged breadcrumb in the breadcrumb trail."
178
  msgstr "Incluir la navegación paginada en la ruta de navegación"
179
 
180
+ #: breadcrumb_navxt_admin.php:947
181
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
182
  msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
183
 
184
+ #: breadcrumb_navxt_admin.php:952
185
  msgid "Paged Prefix"
186
  msgstr "Prefijo para Paginado"
187
 
188
+ #: breadcrumb_navxt_admin.php:960
189
  msgid "Paged Suffix"
190
  msgstr "Sufijo para Paginado"
191
 
192
+ #: breadcrumb_navxt_admin.php:969
193
  msgid "Posts &amp; Pages"
194
  msgstr "Entradas &amp; Páginas"
195
 
196
+ #: breadcrumb_navxt_admin.php:973
197
  msgid "Post Prefix"
198
  msgstr "Prefijo de Entrada"
199
 
200
+ #: breadcrumb_navxt_admin.php:981
201
  msgid "Post Suffix"
202
  msgstr "Sufijo de Entrada"
203
 
204
+ #: breadcrumb_navxt_admin.php:989
205
  msgid "Post Anchor"
206
  msgstr "Vínculo a Entrada"
207
 
208
+ #: breadcrumb_navxt_admin.php:993
209
  msgid "The anchor template for post breadcrumbs."
210
  msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
211
 
212
+ #: breadcrumb_navxt_admin.php:998
213
  msgid "Post Taxonomy Display"
214
  msgstr "Mostrar Clasificación de Entradas"
215
 
216
+ #: breadcrumb_navxt_admin.php:1003
217
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
218
  msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
219
 
220
+ #: breadcrumb_navxt_admin.php:1009
221
  msgid "Post Taxonomy"
222
  msgstr "Clasificación de Entradas"
223
 
224
+ #: breadcrumb_navxt_admin.php:1014
225
+ #: breadcrumb_navxt_admin.php:1091
226
  msgid "Categories"
227
  msgstr "Categorías"
228
 
229
+ #: breadcrumb_navxt_admin.php:1019
230
+ msgid "Dates"
231
+ msgstr "Fechas"
232
+
233
+ #: breadcrumb_navxt_admin.php:1024
234
+ #: breadcrumb_navxt_admin.php:1141
235
  msgid "Tags"
236
  msgstr "Etiquetas"
237
 
238
+ #: breadcrumb_navxt_admin.php:1044
239
  msgid "The taxonomy which the breadcrumb trail will show."
240
  msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
241
 
242
+ #: breadcrumb_navxt_admin.php:1049
243
  msgid "Page Prefix"
244
  msgstr "Prefijo de Página"
245
 
246
+ #: breadcrumb_navxt_admin.php:1057
247
  msgid "Page Suffix"
248
  msgstr "Sufijo de Página"
249
 
250
+ #: breadcrumb_navxt_admin.php:1065
251
  msgid "Page Anchor"
252
  msgstr "Vínculo a Página"
253
 
254
+ #: breadcrumb_navxt_admin.php:1069
255
  msgid "The anchor template for page breadcrumbs."
256
  msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
257
 
258
+ #: breadcrumb_navxt_admin.php:1074
259
  msgid "Attachment Prefix"
260
  msgstr "Prefijo de Archivo Adjunto"
261
 
262
+ #: breadcrumb_navxt_admin.php:1082
263
  msgid "Attachment Suffix"
264
  msgstr "Sufijo de Archivo Adjunto"
265
 
266
+ #: breadcrumb_navxt_admin.php:1095
267
  msgid "Category Prefix"
268
  msgstr "Prefijo de Categoría"
269
 
270
+ #: breadcrumb_navxt_admin.php:1099
271
  msgid "Applied before the anchor on all category breadcrumbs."
272
  msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
273
 
274
+ #: breadcrumb_navxt_admin.php:1104
275
  msgid "Category Suffix"
276
  msgstr "Sufijo de Categoría"
277
 
278
+ #: breadcrumb_navxt_admin.php:1108
279
  msgid "Applied after the anchor on all category breadcrumbs."
280
  msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
281
 
282
+ #: breadcrumb_navxt_admin.php:1113
283
  msgid "Category Anchor"
284
  msgstr "Vínculo a Categoría"
285
 
286
+ #: breadcrumb_navxt_admin.php:1117
287
  msgid "The anchor template for category breadcrumbs."
288
  msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
289
 
290
+ #: breadcrumb_navxt_admin.php:1122
291
  msgid "Archive by Category Prefix"
292
  msgstr "Prefijo de Archivo por Categoría"
293
 
294
+ #: breadcrumb_navxt_admin.php:1126
295
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
296
  msgstr "Aplicado antes del título del item actual en un archivo por categoría."
297
 
298
+ #: breadcrumb_navxt_admin.php:1131
299
  msgid "Archive by Category Suffix"
300
  msgstr "Sufijo de Archivo por Categoría"
301
 
302
+ #: breadcrumb_navxt_admin.php:1135
303
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
304
  msgstr "Aplicado después del título del item actual en un archivo por categoría."
305
 
306
+ #: breadcrumb_navxt_admin.php:1145
307
  msgid "Tag Prefix"
308
  msgstr "Prefijo de Etiqueta"
309
 
310
+ #: breadcrumb_navxt_admin.php:1149
311
  msgid "Applied before the anchor on all tag breadcrumbs."
312
  msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
313
 
314
+ #: breadcrumb_navxt_admin.php:1154
315
  msgid "Tag Suffix"
316
  msgstr "Sufijo de Etiqueta"
317
 
318
+ #: breadcrumb_navxt_admin.php:1158
319
  msgid "Applied after the anchor on all tag breadcrumbs."
320
  msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
321
 
322
+ #: breadcrumb_navxt_admin.php:1163
323
  msgid "Tag Anchor"
324
  msgstr "Vínculo a Etiqueta"
325
 
326
+ #: breadcrumb_navxt_admin.php:1167
327
  msgid "The anchor template for tag breadcrumbs."
328
  msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
329
 
330
+ #: breadcrumb_navxt_admin.php:1172
331
  msgid "Archive by Tag Prefix"
332
  msgstr "Prefijo de Archivo por Etiqueta"
333
 
334
+ #: breadcrumb_navxt_admin.php:1176
335
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
336
  msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
337
 
338
+ #: breadcrumb_navxt_admin.php:1181
339
  msgid "Archive by Tag Suffix"
340
  msgstr "Sufijo de Archivo por Etiqueta"
341
 
342
+ #: breadcrumb_navxt_admin.php:1185
343
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
344
  msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
345
 
346
+ #: breadcrumb_navxt_admin.php:1203
347
+ #, php-format
348
+ msgid "%s Prefix"
349
+ msgstr "Prefijo de %s"
350
+
351
+ #: breadcrumb_navxt_admin.php:1207
352
+ #, php-format
353
+ msgid "Applied before the anchor on all %s breadcrumbs."
354
+ msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
355
+
356
+ #: breadcrumb_navxt_admin.php:1212
357
+ #, php-format
358
+ msgid "%s Suffix"
359
+ msgstr "Sufijo de %s"
360
+
361
+ #: breadcrumb_navxt_admin.php:1216
362
+ #, php-format
363
+ msgid "Applied after the anchor on all %s breadcrumbs."
364
+ msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
365
+
366
+ #: breadcrumb_navxt_admin.php:1221
367
+ #, php-format
368
+ msgid "%s Anchor"
369
+ msgstr "Vínculo a %s"
370
+
371
+ #: breadcrumb_navxt_admin.php:1225
372
+ #, php-format
373
+ msgid "The anchor template for %s breadcrumbs."
374
+ msgstr "La plantilla de vínculo para los elementos de ruta de %s."
375
+
376
+ #: breadcrumb_navxt_admin.php:1230
377
+ #, php-format
378
+ msgid "Archive by %s Prefix"
379
+ msgstr "Archivo por Prefijo de %s"
380
+
381
+ #: breadcrumb_navxt_admin.php:1234
382
+ #, php-format
383
+ msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
384
+ msgstr "Aplicado antes del título del item actual en un archivo por página %s."
385
+
386
+ #: breadcrumb_navxt_admin.php:1239
387
+ #, php-format
388
+ msgid "Archive by %s Suffix"
389
+ msgstr "Archivo por Sufijo de %s"
390
+
391
+ #: breadcrumb_navxt_admin.php:1243
392
+ #, php-format
393
+ msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
394
+ msgstr "Aplicado después del título del item actual en un archivo por página %s."
395
+
396
+ #: breadcrumb_navxt_admin.php:1253
397
  msgid "Date Archives"
398
  msgstr "Archivos por Fecha"
399
 
400
+ #: breadcrumb_navxt_admin.php:1257
401
  msgid "Archive by Date Prefix"
402
  msgstr "Prefijo de Archivo por Fecha"
403
 
404
+ #: breadcrumb_navxt_admin.php:1261
405
  msgid "Applied before the anchor on all date breadcrumbs."
406
  msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
407
 
408
+ #: breadcrumb_navxt_admin.php:1266
409
  msgid "Archive by Date Suffix"
410
  msgstr "Sufijo de Archivo por Fecha"
411
 
412
+ #: breadcrumb_navxt_admin.php:1270
413
  msgid "Applied after the anchor on all date breadcrumbs."
414
  msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
415
 
416
+ #: breadcrumb_navxt_admin.php:1275
417
  msgid "Date Anchor"
418
  msgstr "Vínculo a Fecha"
419
 
420
+ #: breadcrumb_navxt_admin.php:1279
421
  msgid "The anchor template for date breadcrumbs."
422
  msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
423
 
424
+ #: breadcrumb_navxt_admin.php:1285
425
  msgid "Miscellaneous"
426
  msgstr "Misceláneos"
427
 
428
+ #: breadcrumb_navxt_admin.php:1289
429
  msgid "Author Prefix"
430
  msgstr "Prefijo de Autor"
431
 
432
+ #: breadcrumb_navxt_admin.php:1297
433
  msgid "Author Suffix"
434
  msgstr "Sufijo de Autor"
435
 
436
+ #: breadcrumb_navxt_admin.php:1305
437
  msgid "Author Display Format"
438
  msgstr "Formato de Despliegue de Autor"
439
 
440
+ #: breadcrumb_navxt_admin.php:1311
441
  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."
442
  msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
443
 
444
+ #: breadcrumb_navxt_admin.php:1316
445
  msgid "Search Prefix"
446
  msgstr "Prefijo de Búsqueda"
447
 
448
+ #: breadcrumb_navxt_admin.php:1324
449
  msgid "Search Suffix"
450
  msgstr "Sufijo de Búsqueda"
451
 
452
+ #: breadcrumb_navxt_admin.php:1332
453
  msgid "Search Anchor"
454
  msgstr "Vínculo a Búsqueda"
455
 
456
+ #: breadcrumb_navxt_admin.php:1336
457
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
458
  msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
459
 
460
+ #: breadcrumb_navxt_admin.php:1341
461
  msgid "404 Title"
462
  msgstr "Título Error 404"
463
 
464
+ #: breadcrumb_navxt_admin.php:1349
465
  msgid "404 Prefix"
466
  msgstr "Prefijo de Error 404"
467
 
468
+ #: breadcrumb_navxt_admin.php:1357
469
  msgid "404 Suffix"
470
  msgstr "Sufijo de Error 404"
471
 
472
+ #: breadcrumb_navxt_admin.php:1366
473
  msgid "Save Changes"
474
  msgstr "Grabar Cambios"
475
 
476
+ #: breadcrumb_navxt_admin.php:1372
477
  msgid "Import/Export/Reset Settings"
478
  msgstr "Importar/Exportar/Reiniciar Ajustes"
479
 
480
+ #: breadcrumb_navxt_admin.php:1373
481
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
482
  msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
483
 
484
+ #: breadcrumb_navxt_admin.php:1377
485
  msgid "Settings File"
486
  msgstr "Archivo de Ajustes"
487
 
488
+ #: breadcrumb_navxt_admin.php:1381
489
  msgid "Select a XML settings file to upload and import settings from."
490
  msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
491
 
492
+ #: breadcrumb_navxt_admin.php:1518
493
  msgid "Importing settings from file failed."
494
  msgstr "Falló la importación de los ajustes desde el archivo."
495
 
496
+ #: breadcrumb_navxt_admin.php:1528
497
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
498
  msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
499
 
500
+ #: breadcrumb_navxt_admin.php:1538
501
  msgid "The Breadcrumb NavXT settings were reset to the default values."
502
  msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
503
 
504
+ #: breadcrumb_navxt_class.php:149
505
  msgid "Blog"
506
  msgstr "Inicio"
507
 
508
+ #: breadcrumb_navxt_class.php:151
509
+ #: breadcrumb_navxt_class.php:155
510
+ #: breadcrumb_navxt_class.php:179
511
+ #: breadcrumb_navxt_class.php:193
512
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
513
  msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
514
 
515
+ #: breadcrumb_navxt_class.php:168
516
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
517
  msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
518
 
519
+ #: breadcrumb_navxt_class.php:209
520
  msgid "404"
521
  msgstr "Página no encontrada"
522
 
523
+ #: breadcrumb_navxt_class.php:212
524
  msgid "Search results for &#39;"
525
  msgstr "Resultados de búsqueda para &#39;"
526
 
527
+ #: breadcrumb_navxt_class.php:223
528
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
529
  msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
530
 
531
+ #: breadcrumb_navxt_class.php:226
532
  msgid "Articles by: "
533
  msgstr "Artículos por: "
534
 
535
+ #: breadcrumb_navxt_class.php:230
536
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
537
  msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
538
 
539
+ #: breadcrumb_navxt_class.php:239
540
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
541
  msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
542
 
543
+ #: breadcrumb_navxt_class.php:242
544
  msgid "Archive by category &#39;"
545
  msgstr "Archivo por Categoría &#39;"
546
 
547
+ #: breadcrumb_navxt_class.php:246
548
  msgid "Archive by tag &#39;"
549
  msgstr "Archivo por Etiqueta &#39;"
550
 
551
+ #: breadcrumb_navxt_class.php:249
552
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
553
  msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
554
 
555
+ #: breadcrumb_navxt_class.php:488
556
  msgid "Untagged"
557
  msgstr "Sin etiqueta"
558
 
languages/breadcrumb_navxt-fr_FR.mo CHANGED
Binary file
languages/breadcrumb_navxt-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: breadcrumb-navxt\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
- "POT-Creation-Date: 2009-01-22 15:21+0000\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Laurent Grabielle <infos@3w3t.com>\n"
8
  "Language-Team: 3w3t\n"
@@ -14,434 +14,562 @@ msgstr ""
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-SearchPath-0: D:\\3w3t.com\\wordpress2.6.3\\wp-content\\plugins\\breadcrumb-navxt\n"
18
 
19
- #: breadcrumb_navxt_admin.php:81
20
  msgid "Insufficient privileges to proceed."
21
  msgstr "Vos droits sont insuffisants pour cette fonction."
22
 
23
- #: breadcrumb_navxt_admin.php:316
 
 
 
 
 
24
  msgid "Settings"
25
  msgstr "Réglages"
26
 
27
- #: breadcrumb_navxt_admin.php:360
28
- msgid "Warning, your version of Breadcrumb NavXT does not match the version supported by this administrative interface. As a result, settings may not work as expected."
29
- msgstr "Attention !!! votre version de Breadcrumb NavXT ne correspond pas à la version supportée par votre interface d'administration. En conséquence les paramétrages pourraient ne pas fonctionner comme souhaité."
30
-
31
- #: breadcrumb_navxt_admin.php:361
32
- msgid "Your Breadcrumb NavXT Administration interface version is "
33
- msgstr "La version de votre interface d'Administration de Breadcrumb NavXT est "
34
-
35
- #: breadcrumb_navxt_admin.php:362
36
- msgid "Your Breadcrumb NavXT version is "
37
- msgstr "Votre version de Breadcrumb NavXT est "
38
-
39
- #: breadcrumb_navxt_admin.php:366
40
  msgid "Breadcrumb NavXT Settings"
41
  msgstr "Paramétrages de Breadcrumb NavXT"
42
 
43
- #: breadcrumb_navxt_admin.php:368
 
 
 
 
 
44
  #, php-format
45
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
46
  msgstr "Des explications pour le paramétrage sont affichées en dessous de chaque option. Veuillez vous référer à la %sdocumentation%s pour plus d'informations."
47
 
48
- #: breadcrumb_navxt_admin.php:369
49
- msgid "Go to the Breadcrumb NavXT online documentation."
50
  msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
51
 
52
- #: breadcrumb_navxt_admin.php:375
53
- msgid "General"
54
- msgstr "Général"
55
 
56
- #: breadcrumb_navxt_admin.php:379
57
- msgid "Home Breadcrumb"
58
- msgstr "Origine du fil d'ariane"
59
 
60
- #: breadcrumb_navxt_admin.php:385
61
- msgid "Leave the home breadcrumb out of the trail."
62
- msgstr "Ne pas inclure la page d'accueil dans le fil d'ariane."
 
63
 
64
- #: breadcrumb_navxt_admin.php:391
65
- msgid "Place the home breadcrumb in the trail."
66
- msgstr "Inclure la page d'accueil dans le fil d'ariane."
 
67
 
68
- #: breadcrumb_navxt_admin.php:396
69
- msgid "Home Title: "
70
- msgstr "Titre de la page d'accueil:"
 
71
 
72
- #: breadcrumb_navxt_admin.php:406
 
 
 
 
73
  msgid "Breadcrumb Separator"
74
  msgstr "Séparateur du fil d'ariane"
75
 
76
- #: breadcrumb_navxt_admin.php:410
77
  msgid "Placed in between each breadcrumb."
78
  msgstr "Placé entre chaque élément du fil d'ariane."
79
 
80
- #: breadcrumb_navxt_admin.php:415
81
  msgid "Breadcrumb Max Title Length"
82
  msgstr "Longueur maximum du titre "
83
 
84
- #: breadcrumb_navxt_admin.php:423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  msgid "Home Prefix"
86
  msgstr "Préfixe de la page d'accueil"
87
 
88
- #: breadcrumb_navxt_admin.php:431
89
  msgid "Home Suffix"
90
  msgstr "Suffixe de la page d'accueil"
91
 
92
- #: breadcrumb_navxt_admin.php:439
93
  msgid "Home Anchor"
94
  msgstr "Ancre pour la page d'accueil"
95
 
96
- #: breadcrumb_navxt_admin.php:443
97
  msgid "The anchor template for the home breadcrumb."
98
  msgstr "Modèle de l'ancre pour l'élement origine du fil d'ariane."
99
 
100
- #: breadcrumb_navxt_admin.php:452
101
  msgid "Blog Anchor"
102
  msgstr "Ancre pour le blog"
103
 
104
- #: breadcrumb_navxt_admin.php:456
105
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
106
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand l'accueil est une page statique."
107
 
108
- #: breadcrumb_navxt_admin.php:463
109
  msgid "Current Item"
110
  msgstr "Elément courant"
111
 
112
- #: breadcrumb_navxt_admin.php:467
113
  msgid "Link Current Item"
114
  msgstr "Faire un lien avec l'élément courant"
115
 
116
- #: breadcrumb_navxt_admin.php:472
117
  msgid "Yes"
118
  msgstr "Oui"
119
 
120
- #: breadcrumb_navxt_admin.php:478
121
  msgid "Current Item Prefix"
122
  msgstr "Préfixe pour l'élément courant"
123
 
124
- #: breadcrumb_navxt_admin.php:482
125
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
126
  msgstr "Toujours placé au début du dernier élément du fil d'ariane, avant tout autre préfixe."
127
 
128
- #: breadcrumb_navxt_admin.php:487
129
  msgid "Current Item Suffix"
130
  msgstr "Suffixe pour l'élément courant"
131
 
132
- #: breadcrumb_navxt_admin.php:491
133
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
134
  msgstr "Toujours placé en fin dernier élément du fil d'ariane, et après tout autre suffixe."
135
 
136
- #: breadcrumb_navxt_admin.php:496
137
  msgid "Current Item Anchor"
138
  msgstr "Ancre pour l'élément courant"
139
 
140
- #: breadcrumb_navxt_admin.php:500
141
  msgid "The anchor template for current item breadcrumbs."
142
  msgstr "Modèle de l'ancre pour l'élement courant du fil d'ariane."
143
 
144
- #: breadcrumb_navxt_admin.php:505
145
  msgid "Paged Breadcrumb"
146
- msgstr "Fil d'ariane avec pagination."
147
 
148
- #: breadcrumb_navxt_admin.php:510
149
  msgid "Include the paged breadcrumb in the breadcrumb trail."
150
  msgstr "Inclus la pagination dans le fil d'ariane."
151
 
152
- #: breadcrumb_navxt_admin.php:512
153
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
154
- msgstr "Indique que l'utilisateur se trouve dans une autre page/article que le première en pagination."
155
 
156
- #: breadcrumb_navxt_admin.php:517
157
  msgid "Paged Prefix"
158
  msgstr "Préfixe pour la pagination"
159
 
160
- #: breadcrumb_navxt_admin.php:525
161
  msgid "Paged Suffix"
162
  msgstr "Suffixe pour la pagination"
163
 
164
- #: breadcrumb_navxt_admin.php:534
165
  msgid "Posts &amp; Pages"
166
  msgstr "Articles &amp; Pages"
167
 
168
- #: breadcrumb_navxt_admin.php:538
169
  msgid "Post Prefix"
170
  msgstr "Préfixe des articles"
171
 
172
- #: breadcrumb_navxt_admin.php:546
173
  msgid "Post Suffix"
174
  msgstr "Suffixe des articles"
175
 
176
- #: breadcrumb_navxt_admin.php:554
177
  msgid "Post Anchor"
178
  msgstr "Ancre des articles"
179
 
180
- #: breadcrumb_navxt_admin.php:558
181
  msgid "The anchor template for post breadcrumbs."
182
  msgstr "Modèle de l'ancre pour le fil d'ariane des articles"
183
 
184
- #: breadcrumb_navxt_admin.php:563
185
  msgid "Post Taxonomy Display"
186
  msgstr "Affichage de la taxonomie des articles"
187
 
188
- #: breadcrumb_navxt_admin.php:568
189
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
190
  msgstr "Montrer la taxonomie dans le fil d'ariane."
191
 
192
- #: breadcrumb_navxt_admin.php:574
193
  msgid "Post Taxonomy"
194
  msgstr "Taxonomie des articles"
195
 
196
- #: breadcrumb_navxt_admin.php:580
197
- #: breadcrumb_navxt_admin.php:638
198
  msgid "Categories"
199
  msgstr "Catégories"
200
 
201
- #: breadcrumb_navxt_admin.php:586
202
- #: breadcrumb_navxt_admin.php:688
 
 
 
 
203
  msgid "Tags"
204
  msgstr "Tags"
205
 
206
- #: breadcrumb_navxt_admin.php:590
207
  msgid "The taxonomy which the breadcrumb trail will show."
208
  msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
209
 
210
- #: breadcrumb_navxt_admin.php:596
211
  msgid "Page Prefix"
212
  msgstr "Préfixe pour les pages"
213
 
214
- #: breadcrumb_navxt_admin.php:604
215
  msgid "Page Suffix"
216
  msgstr "Suffixe pour les pages"
217
 
218
- #: breadcrumb_navxt_admin.php:612
219
  msgid "Page Anchor"
220
  msgstr "Ancre des pages"
221
 
222
- #: breadcrumb_navxt_admin.php:616
223
  msgid "The anchor template for page breadcrumbs."
224
  msgstr "Modèle de l'ancre pour un élément page du fil d'ariane."
225
 
226
- #: breadcrumb_navxt_admin.php:621
227
  msgid "Attachment Prefix"
228
  msgstr "Préfixe pour les attachements"
229
 
230
- #: breadcrumb_navxt_admin.php:629
231
  msgid "Attachment Suffix"
232
  msgstr "Suffixe pour les attachements"
233
 
234
- #: breadcrumb_navxt_admin.php:642
235
- msgid "Archive by Category Prefix"
236
- msgstr "Préfixe pour les archives par catégorie"
237
-
238
- #: breadcrumb_navxt_admin.php:646
239
- msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
240
- msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par catégorie."
241
-
242
- #: breadcrumb_navxt_admin.php:651
243
- msgid "Archive by Category Suffix"
244
- msgstr "Suffixe pour les archive par catégorie"
245
-
246
- #: breadcrumb_navxt_admin.php:655
247
- msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
248
- msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par catégorie."
249
-
250
- #: breadcrumb_navxt_admin.php:660
251
  msgid "Category Prefix"
252
  msgstr "Préfixe pour catégorie"
253
 
254
- #: breadcrumb_navxt_admin.php:664
255
  msgid "Applied before the anchor on all category breadcrumbs."
256
  msgstr "Appliqué avant chaque ancre pour tous les éléments catégorie du fil d'ariane."
257
 
258
- #: breadcrumb_navxt_admin.php:669
259
  msgid "Category Suffix"
260
  msgstr "Suffixe pour catégorie"
261
 
262
- #: breadcrumb_navxt_admin.php:673
263
  msgid "Applied after the anchor on all category breadcrumbs."
264
  msgstr "Appliqué après chaque ancre pour tous les éléments catégorie du fil d'ariane."
265
 
266
- #: breadcrumb_navxt_admin.php:678
267
  msgid "Category Anchor"
268
  msgstr "Ancre pour les catégories"
269
 
270
- #: breadcrumb_navxt_admin.php:682
271
  msgid "The anchor template for category breadcrumbs."
272
  msgstr "Modèle de l'ancre pour les éléments catégorie du fil d'ariane"
273
 
274
- #: breadcrumb_navxt_admin.php:692
275
- msgid "Archive by Tag Prefix"
276
- msgstr "Préfixe pour archive par tag"
277
 
278
- #: breadcrumb_navxt_admin.php:696
279
- msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
280
- msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par tag."
281
 
282
- #: breadcrumb_navxt_admin.php:701
283
- msgid "Archive by Tag Suffix"
284
- msgstr "Suffixe pour archive par tag"
285
 
286
- #: breadcrumb_navxt_admin.php:705
287
- msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
288
- msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par tag."
289
 
290
- #: breadcrumb_navxt_admin.php:710
291
  msgid "Tag Prefix"
292
  msgstr "Préfixe pour les tag"
293
 
294
- #: breadcrumb_navxt_admin.php:714
295
  msgid "Applied before the anchor on all tag breadcrumbs."
296
  msgstr "Appliqué avant l'ancre de tous les éléments tag du fil d'ariane. "
297
 
298
- #: breadcrumb_navxt_admin.php:719
299
  msgid "Tag Suffix"
300
  msgstr "Suffixe pour les tags"
301
 
302
- #: breadcrumb_navxt_admin.php:723
303
  msgid "Applied after the anchor on all tag breadcrumbs."
304
  msgstr "Appliqué après l'ancre de tous les éléments tag du fil d'ariane. "
305
 
306
- #: breadcrumb_navxt_admin.php:728
307
  msgid "Tag Anchor"
308
  msgstr "Ancre pour les tags"
309
 
310
- #: breadcrumb_navxt_admin.php:732
311
  msgid "The anchor template for tag breadcrumbs."
312
  msgstr "Modèle de l'ancre pour les élément du fil d'ariane tag."
313
 
314
- #: breadcrumb_navxt_admin.php:738
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Date Archives"
316
  msgstr "Archives par date"
317
 
318
- #: breadcrumb_navxt_admin.php:742
319
  msgid "Archive by Date Prefix"
320
  msgstr "Préfixe pour les archives par date"
321
 
322
- #: breadcrumb_navxt_admin.php:746
323
  msgid "Applied before the anchor on all date breadcrumbs."
324
  msgstr "Appliqué avant l'ancre de chaque élément date du fil d'ariane."
325
 
326
- #: breadcrumb_navxt_admin.php:751
327
  msgid "Archive by Date Suffix"
328
  msgstr "Suffixe pour archive par date"
329
 
330
- #: breadcrumb_navxt_admin.php:755
331
  msgid "Applied after the anchor on all date breadcrumbs."
332
  msgstr "Appliqué après l'ancre de chaque élément date du fil d'ariane."
333
 
334
- #: breadcrumb_navxt_admin.php:760
335
  msgid "Date Anchor"
336
  msgstr "Ancre pour archive par date"
337
 
338
- #: breadcrumb_navxt_admin.php:764
339
  msgid "The anchor template for date breadcrumbs."
340
  msgstr "Modèle de l'ancre pour la date dans le fil d'ariane."
341
 
342
- #: breadcrumb_navxt_admin.php:770
343
  msgid "Miscellaneous"
344
  msgstr "Divers"
345
 
346
- #: breadcrumb_navxt_admin.php:774
347
  msgid "Author Prefix"
348
  msgstr "Préfixe pour auteur"
349
 
350
- #: breadcrumb_navxt_admin.php:782
351
  msgid "Author Suffix"
352
  msgstr "Suffixe pour auteur"
353
 
354
- #: breadcrumb_navxt_admin.php:790
355
  msgid "Author Display Format"
356
  msgstr "Format d'affichage de l'auteur"
357
 
358
- #: breadcrumb_navxt_admin.php:796
359
  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."
360
  msgstr "display_name utilise le nom spécifié \"Nom à afficher publiquement\" dans le profil utilisateur. Les autres choix correspondent aux différentes options disponibles dans profil utilisateur."
361
 
362
- #: breadcrumb_navxt_admin.php:801
363
  msgid "Search Prefix"
364
  msgstr "Préfixe pour la recherche"
365
 
366
- #: breadcrumb_navxt_admin.php:809
367
  msgid "Search Suffix"
368
  msgstr "Suffixe pour la recherche"
369
 
370
- #: breadcrumb_navxt_admin.php:817
371
  msgid "Search Anchor"
372
  msgstr "Ancre de recherche"
373
 
374
- #: breadcrumb_navxt_admin.php:821
375
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
376
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
377
 
378
- #: breadcrumb_navxt_admin.php:826
379
  msgid "404 Title"
380
  msgstr "Titre erreur 404"
381
 
382
- #: breadcrumb_navxt_admin.php:834
383
  msgid "404 Prefix"
384
  msgstr "Préfixe erreur 404"
385
 
386
- #: breadcrumb_navxt_admin.php:842
387
  msgid "404 Suffix"
388
  msgstr "Suffixe erreur 404"
389
 
390
- #: breadcrumb_navxt_admin.php:851
391
  msgid "Save Changes"
392
  msgstr "Sauvegarder les changements"
393
 
394
- #: breadcrumb_navxt_class.php:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
  msgid "Blog"
396
  msgstr "Accueil"
397
 
398
- #: breadcrumb_navxt_class.php:102
399
- #: breadcrumb_navxt_class.php:104
400
- #: breadcrumb_navxt_class.php:128
401
- #: breadcrumb_navxt_class.php:142
402
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
403
  msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">"
404
 
405
- #: breadcrumb_navxt_class.php:117
406
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
407
  msgstr "<a title=\"recharger la page courante. \" href=\"%link%\">"
408
 
409
- #: breadcrumb_navxt_class.php:158
410
  msgid "404"
411
  msgstr "404"
412
 
413
- #: breadcrumb_navxt_class.php:161
414
  msgid "Search results for &#39;"
415
  msgstr "Résultat de recherche pour &#39;"
416
 
417
- #: breadcrumb_navxt_class.php:165
418
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
419
- msgstr "<a title=\"Aller à la première page des résultats pour %title%.\" href=\"%link%\">"
420
-
421
- #: breadcrumb_navxt_class.php:172
422
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
423
  msgstr "<a title=\"Aller aux archives du tag %title%.\" href=\"%link%\">"
424
 
425
- #: breadcrumb_navxt_class.php:175
426
  msgid "Articles by: "
427
  msgstr "Articles par:"
428
 
429
- #: breadcrumb_navxt_class.php:186
 
 
 
 
430
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
431
  msgstr "<a title=\"Aller aux archives de la catégorie %title%.\" href=\"%link%\">"
432
 
433
- #: breadcrumb_navxt_class.php:189
434
  msgid "Archive by category &#39;"
435
  msgstr "Archive par categorie &#39;"
436
 
437
- #: breadcrumb_navxt_class.php:193
438
  msgid "Archive by tag &#39;"
439
  msgstr "Archive par tag &#39;"
440
 
441
- #: breadcrumb_navxt_class.php:196
442
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
443
  msgstr "<a title=\"Aller aux archives %title%.\" href=\"%link%\">"
444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
  #~ msgid "breadcrumb"
446
  #~ msgstr "fil d'ariane :"
447
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: breadcrumb-navxt\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-07 06:08+0100\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: Laurent Grabielle <infos@3w3t.com>\n"
8
  "Language-Team: 3w3t\n"
14
  "X-Poedit-SourceCharset: utf-8\n"
15
  "X-Poedit-KeywordsList: _e;__\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-SearchPath-0: D:\\3w3t.com\\wordpress\\wp-content\\plugins\\breadcrumb-navxt\n"
18
 
19
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:134
20
  msgid "Insufficient privileges to proceed."
21
  msgstr "Vos droits sont insuffisants pour cette fonction."
22
 
23
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:190
24
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:216
25
+ msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
26
+ msgstr "<a title=\"Aller à la première page des résultats pour %title%.\" href=\"%link%\">"
27
+
28
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:540
29
  msgid "Settings"
30
  msgstr "Réglages"
31
 
32
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:594
33
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:629
34
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:802
 
 
 
 
 
 
 
 
 
 
35
  msgid "Breadcrumb NavXT Settings"
36
  msgstr "Paramétrages de Breadcrumb NavXT"
37
 
38
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:630
39
+ #, php-format
40
+ msgid "Get help with \"%s\""
41
+ msgstr "Obtenir de l'aide avec \"%s\""
42
+
43
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:641
44
  #, php-format
45
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
46
  msgstr "Des explications pour le paramétrage sont affichées en dessous de chaque option. Veuillez vous référer à la %sdocumentation%s pour plus d'informations."
47
 
48
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:642
49
+ msgid "Go to the Breadcrumb NavXT online documentation"
50
  msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
51
 
52
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:697
53
+ msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
54
+ msgstr "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par les valeurs par défaut. Etes vous sûr de vouloir continuer?"
55
 
56
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:700
57
+ msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
58
+ msgstr "Tous vos paramétrages actuels de Breadcrumb NavXT vont être remplacés par les valeurs importées. Etes vous sûr de vouloir continuer?"
59
 
60
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:753
61
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1386
62
+ msgid "Import"
63
+ msgstr "Importation"
64
 
65
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:753
66
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1387
67
+ msgid "Export"
68
+ msgstr "Exportation"
69
 
70
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:753
71
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1388
72
+ msgid "Reset"
73
+ msgstr "Réinitialisation"
74
 
75
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:812
76
+ msgid "General"
77
+ msgstr "Général"
78
+
79
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:816
80
  msgid "Breadcrumb Separator"
81
  msgstr "Séparateur du fil d'ariane"
82
 
83
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:820
84
  msgid "Placed in between each breadcrumb."
85
  msgstr "Placé entre chaque élément du fil d'ariane."
86
 
87
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:825
88
  msgid "Breadcrumb Max Title Length"
89
  msgstr "Longueur maximum du titre "
90
 
91
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:833
92
+ msgid "Home Breadcrumb"
93
+ msgstr "Origine du fil d'ariane"
94
+
95
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:838
96
+ msgid "Place the home breadcrumb in the trail."
97
+ msgstr "Inclure la page d'accueil dans le fil d'ariane."
98
+
99
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:843
100
+ msgid "Home Title: "
101
+ msgstr "Titre de la page d'accueil:"
102
+
103
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:852
104
+ msgid "Blog Breadcrumb"
105
+ msgstr "Fil d'ariane du site"
106
+
107
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:857
108
+ msgid "Place the blog breadcrumb in the trail."
109
+ msgstr "Mettre le fil d'ariane du site en route. "
110
+
111
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:863
112
  msgid "Home Prefix"
113
  msgstr "Préfixe de la page d'accueil"
114
 
115
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:871
116
  msgid "Home Suffix"
117
  msgstr "Suffixe de la page d'accueil"
118
 
119
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:879
120
  msgid "Home Anchor"
121
  msgstr "Ancre pour la page d'accueil"
122
 
123
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:883
124
  msgid "The anchor template for the home breadcrumb."
125
  msgstr "Modèle de l'ancre pour l'élement origine du fil d'ariane."
126
 
127
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:888
128
  msgid "Blog Anchor"
129
  msgstr "Ancre pour le blog"
130
 
131
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:892
132
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
133
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand l'accueil est une page statique."
134
 
135
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:898
136
  msgid "Current Item"
137
  msgstr "Elément courant"
138
 
139
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:902
140
  msgid "Link Current Item"
141
  msgstr "Faire un lien avec l'élément courant"
142
 
143
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:907
144
  msgid "Yes"
145
  msgstr "Oui"
146
 
147
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:913
148
  msgid "Current Item Prefix"
149
  msgstr "Préfixe pour l'élément courant"
150
 
151
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:917
152
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
153
  msgstr "Toujours placé au début du dernier élément du fil d'ariane, avant tout autre préfixe."
154
 
155
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:922
156
  msgid "Current Item Suffix"
157
  msgstr "Suffixe pour l'élément courant"
158
 
159
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:926
160
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
161
  msgstr "Toujours placé en fin dernier élément du fil d'ariane, et après tout autre suffixe."
162
 
163
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:931
164
  msgid "Current Item Anchor"
165
  msgstr "Ancre pour l'élément courant"
166
 
167
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:935
168
  msgid "The anchor template for current item breadcrumbs."
169
  msgstr "Modèle de l'ancre pour l'élement courant du fil d'ariane."
170
 
171
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:940
172
  msgid "Paged Breadcrumb"
173
+ msgstr "Fil d'ariane avec pagination"
174
 
175
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:945
176
  msgid "Include the paged breadcrumb in the breadcrumb trail."
177
  msgstr "Inclus la pagination dans le fil d'ariane."
178
 
179
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:947
180
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
181
+ msgstr "Indique que l'utilisateur se trouve dans une autre page/article que la première lorsque la pagination est activée."
182
 
183
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:952
184
  msgid "Paged Prefix"
185
  msgstr "Préfixe pour la pagination"
186
 
187
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:960
188
  msgid "Paged Suffix"
189
  msgstr "Suffixe pour la pagination"
190
 
191
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:969
192
  msgid "Posts &amp; Pages"
193
  msgstr "Articles &amp; Pages"
194
 
195
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:973
196
  msgid "Post Prefix"
197
  msgstr "Préfixe des articles"
198
 
199
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:981
200
  msgid "Post Suffix"
201
  msgstr "Suffixe des articles"
202
 
203
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:989
204
  msgid "Post Anchor"
205
  msgstr "Ancre des articles"
206
 
207
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:993
208
  msgid "The anchor template for post breadcrumbs."
209
  msgstr "Modèle de l'ancre pour le fil d'ariane des articles"
210
 
211
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:998
212
  msgid "Post Taxonomy Display"
213
  msgstr "Affichage de la taxonomie des articles"
214
 
215
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1003
216
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
217
  msgstr "Montrer la taxonomie dans le fil d'ariane."
218
 
219
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1009
220
  msgid "Post Taxonomy"
221
  msgstr "Taxonomie des articles"
222
 
223
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1014
224
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1091
225
  msgid "Categories"
226
  msgstr "Catégories"
227
 
228
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1019
229
+ msgid "Dates"
230
+ msgstr "Dates"
231
+
232
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1024
233
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1141
234
  msgid "Tags"
235
  msgstr "Tags"
236
 
237
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1044
238
  msgid "The taxonomy which the breadcrumb trail will show."
239
  msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
240
 
241
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1049
242
  msgid "Page Prefix"
243
  msgstr "Préfixe pour les pages"
244
 
245
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1057
246
  msgid "Page Suffix"
247
  msgstr "Suffixe pour les pages"
248
 
249
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1065
250
  msgid "Page Anchor"
251
  msgstr "Ancre des pages"
252
 
253
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1069
254
  msgid "The anchor template for page breadcrumbs."
255
  msgstr "Modèle de l'ancre pour un élément page du fil d'ariane."
256
 
257
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1074
258
  msgid "Attachment Prefix"
259
  msgstr "Préfixe pour les attachements"
260
 
261
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1082
262
  msgid "Attachment Suffix"
263
  msgstr "Suffixe pour les attachements"
264
 
265
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1095
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  msgid "Category Prefix"
267
  msgstr "Préfixe pour catégorie"
268
 
269
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1099
270
  msgid "Applied before the anchor on all category breadcrumbs."
271
  msgstr "Appliqué avant chaque ancre pour tous les éléments catégorie du fil d'ariane."
272
 
273
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1104
274
  msgid "Category Suffix"
275
  msgstr "Suffixe pour catégorie"
276
 
277
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1108
278
  msgid "Applied after the anchor on all category breadcrumbs."
279
  msgstr "Appliqué après chaque ancre pour tous les éléments catégorie du fil d'ariane."
280
 
281
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1113
282
  msgid "Category Anchor"
283
  msgstr "Ancre pour les catégories"
284
 
285
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1117
286
  msgid "The anchor template for category breadcrumbs."
287
  msgstr "Modèle de l'ancre pour les éléments catégorie du fil d'ariane"
288
 
289
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1122
290
+ msgid "Archive by Category Prefix"
291
+ msgstr "Préfixe pour les archives par catégorie"
292
 
293
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1126
294
+ msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
295
+ msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par catégorie."
296
 
297
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1131
298
+ msgid "Archive by Category Suffix"
299
+ msgstr "Suffixe pour les archive par catégorie"
300
 
301
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1135
302
+ msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
303
+ msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par catégorie."
304
 
305
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1145
306
  msgid "Tag Prefix"
307
  msgstr "Préfixe pour les tag"
308
 
309
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1149
310
  msgid "Applied before the anchor on all tag breadcrumbs."
311
  msgstr "Appliqué avant l'ancre de tous les éléments tag du fil d'ariane. "
312
 
313
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1154
314
  msgid "Tag Suffix"
315
  msgstr "Suffixe pour les tags"
316
 
317
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1158
318
  msgid "Applied after the anchor on all tag breadcrumbs."
319
  msgstr "Appliqué après l'ancre de tous les éléments tag du fil d'ariane. "
320
 
321
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1163
322
  msgid "Tag Anchor"
323
  msgstr "Ancre pour les tags"
324
 
325
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1167
326
  msgid "The anchor template for tag breadcrumbs."
327
  msgstr "Modèle de l'ancre pour les élément du fil d'ariane tag."
328
 
329
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1172
330
+ msgid "Archive by Tag Prefix"
331
+ msgstr "Préfixe pour archive par tag"
332
+
333
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1176
334
+ msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
335
+ msgstr "Appliqué avant chaque item du fil d'ariane sur une page d'archive par tag."
336
+
337
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1181
338
+ msgid "Archive by Tag Suffix"
339
+ msgstr "Suffixe pour archive par tag"
340
+
341
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1185
342
+ msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
343
+ msgstr "Appliqué après chaque item du fil d'ariane sur une page d'archive par tag."
344
+
345
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1203
346
+ #, php-format
347
+ msgid "%s Prefix"
348
+ msgstr "Préfixe des %s"
349
+
350
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1207
351
+ #, php-format
352
+ msgid "Applied before the anchor on all %s breadcrumbs."
353
+ msgstr "Appliqué avant l'ancre de tous les éléments %s du fil d'ariane. "
354
+
355
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1212
356
+ #, php-format
357
+ msgid "%s Suffix"
358
+ msgstr "Suffixe des %s"
359
+
360
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1216
361
+ #, php-format
362
+ msgid "Applied after the anchor on all %s breadcrumbs."
363
+ msgstr "Appliqué après l'ancre de tous les éléments %s du fil d'ariane. "
364
+
365
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1221
366
+ #, php-format
367
+ msgid "%s Anchor"
368
+ msgstr "Ancre des %s"
369
+
370
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1225
371
+ #, php-format
372
+ msgid "The anchor template for %s breadcrumbs."
373
+ msgstr "Modèle de l'ancre pour le fil d'ariane des %s."
374
+
375
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1230
376
+ #, php-format
377
+ msgid "Archive by %s Prefix"
378
+ msgstr "Préfixe pour archive par %s"
379
+
380
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1234
381
+ #, php-format
382
+ msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
383
+ msgstr "Appliqué avant le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
384
+
385
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1239
386
+ #, php-format
387
+ msgid "Archive by %s Suffix"
388
+ msgstr "Suffixe pour archive par %s"
389
+
390
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1243
391
+ #, php-format
392
+ msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
393
+ msgstr "Appliqué après le titre de l'item courant du fil d'ariane sur une page d'archive par %s."
394
+
395
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1253
396
  msgid "Date Archives"
397
  msgstr "Archives par date"
398
 
399
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1257
400
  msgid "Archive by Date Prefix"
401
  msgstr "Préfixe pour les archives par date"
402
 
403
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1261
404
  msgid "Applied before the anchor on all date breadcrumbs."
405
  msgstr "Appliqué avant l'ancre de chaque élément date du fil d'ariane."
406
 
407
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1266
408
  msgid "Archive by Date Suffix"
409
  msgstr "Suffixe pour archive par date"
410
 
411
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1270
412
  msgid "Applied after the anchor on all date breadcrumbs."
413
  msgstr "Appliqué après l'ancre de chaque élément date du fil d'ariane."
414
 
415
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1275
416
  msgid "Date Anchor"
417
  msgstr "Ancre pour archive par date"
418
 
419
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1279
420
  msgid "The anchor template for date breadcrumbs."
421
  msgstr "Modèle de l'ancre pour la date dans le fil d'ariane."
422
 
423
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1285
424
  msgid "Miscellaneous"
425
  msgstr "Divers"
426
 
427
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1289
428
  msgid "Author Prefix"
429
  msgstr "Préfixe pour auteur"
430
 
431
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1297
432
  msgid "Author Suffix"
433
  msgstr "Suffixe pour auteur"
434
 
435
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1305
436
  msgid "Author Display Format"
437
  msgstr "Format d'affichage de l'auteur"
438
 
439
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1311
440
  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."
441
  msgstr "display_name utilise le nom spécifié \"Nom à afficher publiquement\" dans le profil utilisateur. Les autres choix correspondent aux différentes options disponibles dans profil utilisateur."
442
 
443
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1316
444
  msgid "Search Prefix"
445
  msgstr "Préfixe pour la recherche"
446
 
447
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1324
448
  msgid "Search Suffix"
449
  msgstr "Suffixe pour la recherche"
450
 
451
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1332
452
  msgid "Search Anchor"
453
  msgstr "Ancre de recherche"
454
 
455
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1336
456
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
457
  msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
458
 
459
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1341
460
  msgid "404 Title"
461
  msgstr "Titre erreur 404"
462
 
463
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1349
464
  msgid "404 Prefix"
465
  msgstr "Préfixe erreur 404"
466
 
467
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1357
468
  msgid "404 Suffix"
469
  msgstr "Suffixe erreur 404"
470
 
471
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1366
472
  msgid "Save Changes"
473
  msgstr "Sauvegarder les changements"
474
 
475
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1372
476
+ msgid "Import/Export/Reset Settings"
477
+ msgstr "Importation/Exportation/Reinitialisation des paramétrages"
478
+
479
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1373
480
+ msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
481
+ msgstr "Importer les paramétrages de Breadcrumb NavXT depuis un fichier XML, exporter les paramétrages actuels vers un fichier XML, ou réinitialiser par les valeurs par défaut de Breadcrumb NavXT."
482
+
483
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1377
484
+ msgid "Settings File"
485
+ msgstr "Fichier de paramétrages"
486
+
487
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1381
488
+ msgid "Select a XML settings file to upload and import settings from."
489
+ msgstr "Selectionner un fichier XML à télécharger à partir duquel les paramétrages seront importés."
490
+
491
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1518
492
+ msgid "Importing settings from file failed."
493
+ msgstr "L'importation des paramétrages depuis le fichier a échoué."
494
+
495
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1528
496
+ msgid "The Breadcrumb NavXT settings were successfully imported from file."
497
+ msgstr "Les paramétrages de Breadcrumb NavXT ont été importés depuis le fichier avec succès."
498
+
499
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_admin.php:1538
500
+ msgid "The Breadcrumb NavXT settings were reset to the default values."
501
+ msgstr "Les paramétrages de Breadcrumb NavXT ont été réinitialisés avec les valeurs par défaut."
502
+
503
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:149
504
  msgid "Blog"
505
  msgstr "Accueil"
506
 
507
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:151
508
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:155
509
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:179
510
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:193
511
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
512
  msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">"
513
 
514
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:168
515
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
516
  msgstr "<a title=\"recharger la page courante. \" href=\"%link%\">"
517
 
518
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:209
519
  msgid "404"
520
  msgstr "404"
521
 
522
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:212
523
  msgid "Search results for &#39;"
524
  msgstr "Résultat de recherche pour &#39;"
525
 
526
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:223
 
 
 
 
527
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
528
  msgstr "<a title=\"Aller aux archives du tag %title%.\" href=\"%link%\">"
529
 
530
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:226
531
  msgid "Articles by: "
532
  msgstr "Articles par:"
533
 
534
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:230
535
+ msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
536
+ msgstr "<a title=\"Aller à la première page des articles par %title%.\" href=\"%link%\">"
537
+
538
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:239
539
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
540
  msgstr "<a title=\"Aller aux archives de la catégorie %title%.\" href=\"%link%\">"
541
 
542
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:242
543
  msgid "Archive by category &#39;"
544
  msgstr "Archive par categorie &#39;"
545
 
546
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:246
547
  msgid "Archive by tag &#39;"
548
  msgstr "Archive par tag &#39;"
549
 
550
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:249
551
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
552
  msgstr "<a title=\"Aller aux archives %title%.\" href=\"%link%\">"
553
 
554
+ #: D:\3w3t.com\wordpress\wp-content\plugins\breadcrumb-navxt/breadcrumb_navxt_class.php:488
555
+ msgid "Untagged"
556
+ msgstr "Marquage enlevé"
557
+
558
+ #~ msgid ""
559
+ #~ "Warning, your version of Breadcrumb NavXT does not match the version "
560
+ #~ "supported by this administrative interface. As a result, settings may not "
561
+ #~ "work as expected."
562
+ #~ msgstr ""
563
+ #~ "Attention !!! votre version de Breadcrumb NavXT ne correspond pas à la "
564
+ #~ "version supportée par votre interface d'administration. En conséquence "
565
+ #~ "les paramétrages pourraient ne pas fonctionner comme souhaité."
566
+ #~ msgid "Your Breadcrumb NavXT Administration interface version is "
567
+ #~ msgstr ""
568
+ #~ "La version de votre interface d'Administration de Breadcrumb NavXT est "
569
+ #~ msgid "Your Breadcrumb NavXT version is "
570
+ #~ msgstr "Votre version de Breadcrumb NavXT est "
571
+ #~ msgid "Leave the home breadcrumb out of the trail."
572
+ #~ msgstr "Ne pas inclure la page d'accueil dans le fil d'ariane."
573
  #~ msgid "breadcrumb"
574
  #~ msgstr "fil d'ariane :"
575
 
languages/breadcrumb_navxt-it_IT.mo ADDED
Binary file
languages/breadcrumb_navxt-it_IT.po ADDED
@@ -0,0 +1,557 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # This file is put in the public domain.
3
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: \n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
9
+ "POT-Creation-Date: 2009-12-05 22:23+0000\n"
10
+ "PO-Revision-Date: 2009-12-06 02:56+0100\n"
11
+ "Last-Translator: Luca Camellini <luccame@gmail.com>\n"
12
+ "Language-Team: \n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Poedit-Language: Italian\n"
17
+ "X-Poedit-Country: ITALY\n"
18
+
19
+ #: breadcrumb_navxt_admin.php:134
20
+ msgid "Insufficient privileges to proceed."
21
+ msgstr "Permessi insufficienti per procedere"
22
+
23
+ #: breadcrumb_navxt_admin.php:190
24
+ #: breadcrumb_navxt_class.php:216
25
+ msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
26
+ msgstr "<a title=\"Vai alla prima pagina dei risultati della ricerca per %title%.\" href=\"%link%\">"
27
+
28
+ #: breadcrumb_navxt_admin.php:540
29
+ msgid "Settings"
30
+ msgstr "Impostazioni"
31
+
32
+ #: breadcrumb_navxt_admin.php:594
33
+ #: breadcrumb_navxt_admin.php:629
34
+ #: breadcrumb_navxt_admin.php:802
35
+ msgid "Breadcrumb NavXT Settings"
36
+ msgstr "Impostazioni di Breadcrumb NavXT"
37
+
38
+ #: breadcrumb_navxt_admin.php:630
39
+ #, php-format
40
+ msgid "Get help with \"%s\""
41
+ msgstr "Trova aiuto per \"%s\""
42
+
43
+ #: breadcrumb_navxt_admin.php:641
44
+ #, php-format
45
+ msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
46
+ msgstr "I suggerimenti per le impostazioni sono posizionati sotto le opzioni. Si prega di fare riferimento alla %sdocumentazione%s per maggiori informazioni."
47
+
48
+ #: breadcrumb_navxt_admin.php:642
49
+ msgid "Go to the Breadcrumb NavXT online documentation"
50
+ msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
51
+
52
+ #: breadcrumb_navxt_admin.php:697
53
+ msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
54
+ msgstr "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte con i valori predefiniti. Sei sicuro di voler continuare?"
55
+
56
+ #: breadcrumb_navxt_admin.php:700
57
+ msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
58
+ msgstr "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte con i valori importati. Sei sicuro di voler continuare?"
59
+
60
+ #: breadcrumb_navxt_admin.php:753
61
+ #: breadcrumb_navxt_admin.php:1386
62
+ msgid "Import"
63
+ msgstr "Importa"
64
+
65
+ #: breadcrumb_navxt_admin.php:753
66
+ #: breadcrumb_navxt_admin.php:1387
67
+ msgid "Export"
68
+ msgstr "Esporta"
69
+
70
+ #: breadcrumb_navxt_admin.php:753
71
+ #: breadcrumb_navxt_admin.php:1388
72
+ msgid "Reset"
73
+ msgstr "Reimposta"
74
+
75
+ #: breadcrumb_navxt_admin.php:812
76
+ msgid "General"
77
+ msgstr "Generale"
78
+
79
+ #: breadcrumb_navxt_admin.php:816
80
+ msgid "Breadcrumb Separator"
81
+ msgstr "Separatore delle breadcrumb"
82
+
83
+ #: breadcrumb_navxt_admin.php:820
84
+ msgid "Placed in between each breadcrumb."
85
+ msgstr "Inserito tra ogni breadcrumb."
86
+
87
+ #: breadcrumb_navxt_admin.php:825
88
+ msgid "Breadcrumb Max Title Length"
89
+ msgstr "Lunghezza massima titolo delle breadcrumb"
90
+
91
+ #: breadcrumb_navxt_admin.php:833
92
+ msgid "Home Breadcrumb"
93
+ msgstr "Breadcrumb della Home Page"
94
+
95
+ #: breadcrumb_navxt_admin.php:838
96
+ msgid "Place the home breadcrumb in the trail."
97
+ msgstr "Inserisci la Breadcrumb per la Home Page nel percorso."
98
+
99
+ #: breadcrumb_navxt_admin.php:843
100
+ msgid "Home Title: "
101
+ msgstr "Titolo Home:"
102
+
103
+ #: breadcrumb_navxt_admin.php:852
104
+ msgid "Blog Breadcrumb"
105
+ msgstr "Breadcrumb del Blog"
106
+
107
+ #: breadcrumb_navxt_admin.php:857
108
+ msgid "Place the blog breadcrumb in the trail."
109
+ msgstr "Inserisci la Breadcrumb per il Blog nel percorso."
110
+
111
+ #: breadcrumb_navxt_admin.php:863
112
+ msgid "Home Prefix"
113
+ msgstr "Prefisso Home"
114
+
115
+ #: breadcrumb_navxt_admin.php:871
116
+ msgid "Home Suffix"
117
+ msgstr "Suffisso Home"
118
+
119
+ #: breadcrumb_navxt_admin.php:879
120
+ msgid "Home Anchor"
121
+ msgstr "Collegamento Home"
122
+
123
+ #: breadcrumb_navxt_admin.php:883
124
+ msgid "The anchor template for the home breadcrumb."
125
+ msgstr "Template collegamento per la Home Breadcrumb."
126
+
127
+ #: breadcrumb_navxt_admin.php:888
128
+ msgid "Blog Anchor"
129
+ msgstr "Collegamento Blog"
130
+
131
+ #: breadcrumb_navxt_admin.php:892
132
+ msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
133
+ msgstr "Template collegamento per la Blog Breadcrumb, usato solo in ambienti con pagina iniziale statica."
134
+
135
+ #: breadcrumb_navxt_admin.php:898
136
+ msgid "Current Item"
137
+ msgstr "Voce corrente"
138
+
139
+ #: breadcrumb_navxt_admin.php:902
140
+ msgid "Link Current Item"
141
+ msgstr "Collegamento voce corrente"
142
+
143
+ #: breadcrumb_navxt_admin.php:907
144
+ msgid "Yes"
145
+ msgstr "S&igrave;"
146
+
147
+ #: breadcrumb_navxt_admin.php:913
148
+ msgid "Current Item Prefix"
149
+ msgstr "Prefisso voce corrente"
150
+
151
+ #: breadcrumb_navxt_admin.php:917
152
+ msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
153
+ msgstr "Questo &egrave; sempre inserito davanti all'ultima breadcrumb del percorso, prima di qualsiasi altro prefisso della breadcrumb."
154
+
155
+ #: breadcrumb_navxt_admin.php:922
156
+ msgid "Current Item Suffix"
157
+ msgstr "Suffisso della voce corrente"
158
+
159
+ #: breadcrumb_navxt_admin.php:926
160
+ msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
161
+ msgstr "Questo è sempre inserito dopo l'ultima breadcrumb del percorso, e dopo qualsiasi altro suffisso della breadcrumb."
162
+
163
+ #: breadcrumb_navxt_admin.php:931
164
+ msgid "Current Item Anchor"
165
+ msgstr "Collegamento della voce corrente"
166
+
167
+ #: breadcrumb_navxt_admin.php:935
168
+ msgid "The anchor template for current item breadcrumbs."
169
+ msgstr "Template collegamento per le breadcrumb della voce corrente."
170
+
171
+ #: breadcrumb_navxt_admin.php:940
172
+ msgid "Paged Breadcrumb"
173
+ msgstr "Breadcrumb paginata"
174
+
175
+ #: breadcrumb_navxt_admin.php:945
176
+ msgid "Include the paged breadcrumb in the breadcrumb trail."
177
+ msgstr "Includi la breadcrumb paginata nel percorso."
178
+
179
+ #: breadcrumb_navxt_admin.php:947
180
+ msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
181
+ msgstr "Indica che l'utente si trova su una pagina diversa dalla prima negli elenchi di pagine o articoli."
182
+
183
+ #: breadcrumb_navxt_admin.php:952
184
+ msgid "Paged Prefix"
185
+ msgstr "Prefisso paginato"
186
+
187
+ #: breadcrumb_navxt_admin.php:960
188
+ msgid "Paged Suffix"
189
+ msgstr "Suffisso paginato"
190
+
191
+ #: breadcrumb_navxt_admin.php:969
192
+ msgid "Posts &amp; Pages"
193
+ msgstr "Articoli &amp; Pagine"
194
+
195
+ #: breadcrumb_navxt_admin.php:973
196
+ msgid "Post Prefix"
197
+ msgstr "Prefisso Articolo"
198
+
199
+ #: breadcrumb_navxt_admin.php:981
200
+ msgid "Post Suffix"
201
+ msgstr "Suffisso Articolo"
202
+
203
+ #: breadcrumb_navxt_admin.php:989
204
+ msgid "Post Anchor"
205
+ msgstr "Collegamento Articolo"
206
+
207
+ #: breadcrumb_navxt_admin.php:993
208
+ msgid "The anchor template for post breadcrumbs."
209
+ msgstr "Template collegamento per le breadcrumb di articoli."
210
+
211
+ #: breadcrumb_navxt_admin.php:998
212
+ msgid "Post Taxonomy Display"
213
+ msgstr "Visualizzazione Tassonomia Articolo"
214
+
215
+ #: breadcrumb_navxt_admin.php:1003
216
+ msgid "Show the taxonomy leading to a post in the breadcrumb trail."
217
+ msgstr "Mostra la tassonomia che riconduce ad un articolo nel percorso di breadcrumb."
218
+
219
+ #: breadcrumb_navxt_admin.php:1009
220
+ msgid "Post Taxonomy"
221
+ msgstr "Tassonomia Articolo"
222
+
223
+ #: breadcrumb_navxt_admin.php:1014
224
+ #: breadcrumb_navxt_admin.php:1091
225
+ msgid "Categories"
226
+ msgstr "Categorie"
227
+
228
+ #: breadcrumb_navxt_admin.php:1019
229
+ msgid "Dates"
230
+ msgstr "Date"
231
+
232
+ #: breadcrumb_navxt_admin.php:1024
233
+ #: breadcrumb_navxt_admin.php:1141
234
+ msgid "Tags"
235
+ msgstr "Tags"
236
+
237
+ #: breadcrumb_navxt_admin.php:1044
238
+ msgid "The taxonomy which the breadcrumb trail will show."
239
+ msgstr "La tassonomia che sar&agrave; mostrata nel percorso di breadcrumb."
240
+
241
+ #: breadcrumb_navxt_admin.php:1049
242
+ msgid "Page Prefix"
243
+ msgstr "Prefisso Pagina"
244
+
245
+ #: breadcrumb_navxt_admin.php:1057
246
+ msgid "Page Suffix"
247
+ msgstr "Suffisso Pagina"
248
+
249
+ #: breadcrumb_navxt_admin.php:1065
250
+ msgid "Page Anchor"
251
+ msgstr "Collegamento Pagina"
252
+
253
+ #: breadcrumb_navxt_admin.php:1069
254
+ msgid "The anchor template for page breadcrumbs."
255
+ msgstr "Template collegamento per le breadcrumb di pagine."
256
+
257
+ #: breadcrumb_navxt_admin.php:1074
258
+ msgid "Attachment Prefix"
259
+ msgstr "Prefisso Allegato"
260
+
261
+ #: breadcrumb_navxt_admin.php:1082
262
+ msgid "Attachment Suffix"
263
+ msgstr "Suffisso Allegato"
264
+
265
+ #: breadcrumb_navxt_admin.php:1095
266
+ msgid "Category Prefix"
267
+ msgstr "Prefisso Categoria"
268
+
269
+ #: breadcrumb_navxt_admin.php:1099
270
+ msgid "Applied before the anchor on all category breadcrumbs."
271
+ msgstr "Applicato prima del collegamento per tutte le breadcrumbs di categorie."
272
+
273
+ #: breadcrumb_navxt_admin.php:1104
274
+ msgid "Category Suffix"
275
+ msgstr "Suffisso Categoria"
276
+
277
+ #: breadcrumb_navxt_admin.php:1108
278
+ msgid "Applied after the anchor on all category breadcrumbs."
279
+ msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di categorie."
280
+
281
+ #: breadcrumb_navxt_admin.php:1113
282
+ msgid "Category Anchor"
283
+ msgstr "Collegamento Categoria"
284
+
285
+ #: breadcrumb_navxt_admin.php:1117
286
+ msgid "The anchor template for category breadcrumbs."
287
+ msgstr "Template collegamento per le breadcrumb di categorie."
288
+
289
+ #: breadcrumb_navxt_admin.php:1122
290
+ msgid "Archive by Category Prefix"
291
+ msgstr "Prefisso Archivio per categoria"
292
+
293
+ #: breadcrumb_navxt_admin.php:1126
294
+ msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
295
+ msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
296
+
297
+ #: breadcrumb_navxt_admin.php:1131
298
+ msgid "Archive by Category Suffix"
299
+ msgstr "Suffisso Archivio per categoria"
300
+
301
+ #: breadcrumb_navxt_admin.php:1135
302
+ msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
303
+ msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
304
+
305
+ #: breadcrumb_navxt_admin.php:1145
306
+ msgid "Tag Prefix"
307
+ msgstr "Prefisso Tag"
308
+
309
+ #: breadcrumb_navxt_admin.php:1149
310
+ msgid "Applied before the anchor on all tag breadcrumbs."
311
+ msgstr "Applicato prima del collegamento per tutte le breadcrumbs di tag."
312
+
313
+ #: breadcrumb_navxt_admin.php:1154
314
+ msgid "Tag Suffix"
315
+ msgstr "Suffisso Tag"
316
+
317
+ #: breadcrumb_navxt_admin.php:1158
318
+ msgid "Applied after the anchor on all tag breadcrumbs."
319
+ msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di tag."
320
+
321
+ #: breadcrumb_navxt_admin.php:1163
322
+ msgid "Tag Anchor"
323
+ msgstr "Collegamento Tag"
324
+
325
+ #: breadcrumb_navxt_admin.php:1167
326
+ msgid "The anchor template for tag breadcrumbs."
327
+ msgstr "Template collegamento per le breadcrumb di tag."
328
+
329
+ #: breadcrumb_navxt_admin.php:1172
330
+ msgid "Archive by Tag Prefix"
331
+ msgstr "Prefisso Archivio per tag"
332
+
333
+ #: breadcrumb_navxt_admin.php:1176
334
+ msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
335
+ msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
336
+
337
+ #: breadcrumb_navxt_admin.php:1181
338
+ msgid "Archive by Tag Suffix"
339
+ msgstr "Suffisso Archivio per tag"
340
+
341
+ #: breadcrumb_navxt_admin.php:1185
342
+ msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
343
+ msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
344
+
345
+ #: breadcrumb_navxt_admin.php:1203
346
+ #, php-format
347
+ msgid "%s Prefix"
348
+ msgstr "Prefisso %s "
349
+
350
+ #: breadcrumb_navxt_admin.php:1207
351
+ #, php-format
352
+ msgid "Applied before the anchor on all %s breadcrumbs."
353
+ msgstr "Applicato prima del collegamento per tutte le breadcrumbs di %s."
354
+
355
+ #: breadcrumb_navxt_admin.php:1212
356
+ #, php-format
357
+ msgid "%s Suffix"
358
+ msgstr "Suffisso %s"
359
+
360
+ #: breadcrumb_navxt_admin.php:1216
361
+ #, php-format
362
+ msgid "Applied after the anchor on all %s breadcrumbs."
363
+ msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di %s."
364
+
365
+ #: breadcrumb_navxt_admin.php:1221
366
+ #, php-format
367
+ msgid "%s Anchor"
368
+ msgstr "Collegamento %s"
369
+
370
+ #: breadcrumb_navxt_admin.php:1225
371
+ #, php-format
372
+ msgid "The anchor template for %s breadcrumbs."
373
+ msgstr "Template collegamento per le breadcrumb di %s."
374
+
375
+ #: breadcrumb_navxt_admin.php:1230
376
+ #, php-format
377
+ msgid "Archive by %s Prefix"
378
+ msgstr "Prefisso Archivio per %s"
379
+
380
+ #: breadcrumb_navxt_admin.php:1234
381
+ #, php-format
382
+ msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
383
+ msgstr "Applicato prima del titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
384
+
385
+ #: breadcrumb_navxt_admin.php:1239
386
+ #, php-format
387
+ msgid "Archive by %s Suffix"
388
+ msgstr "Suffisso Archivio per %s"
389
+
390
+ #: breadcrumb_navxt_admin.php:1243
391
+ #, php-format
392
+ msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
393
+ msgstr "Applicato dopo il titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
394
+
395
+ #: breadcrumb_navxt_admin.php:1253
396
+ msgid "Date Archives"
397
+ msgstr "Archivi per Data"
398
+
399
+ #: breadcrumb_navxt_admin.php:1257
400
+ msgid "Archive by Date Prefix"
401
+ msgstr "Prefisso Archivi per Data"
402
+
403
+ #: breadcrumb_navxt_admin.php:1261
404
+ msgid "Applied before the anchor on all date breadcrumbs."
405
+ msgstr "Applicato prima del collegamento per tutte le breadcrumbs per data."
406
+
407
+ #: breadcrumb_navxt_admin.php:1266
408
+ msgid "Archive by Date Suffix"
409
+ msgstr "Suffisso Archivi per Data"
410
+
411
+ #: breadcrumb_navxt_admin.php:1270
412
+ msgid "Applied after the anchor on all date breadcrumbs."
413
+ msgstr "Applicato dopo il collegamento per tutte le breadcrumbs per data."
414
+
415
+ #: breadcrumb_navxt_admin.php:1275
416
+ msgid "Date Anchor"
417
+ msgstr "Collegameto Date"
418
+
419
+ #: breadcrumb_navxt_admin.php:1279
420
+ msgid "The anchor template for date breadcrumbs."
421
+ msgstr "Template collegamento per le breadcrumb per data."
422
+
423
+ #: breadcrumb_navxt_admin.php:1285
424
+ msgid "Miscellaneous"
425
+ msgstr "Varie"
426
+
427
+ #: breadcrumb_navxt_admin.php:1289
428
+ msgid "Author Prefix"
429
+ msgstr "Prefisso Autore"
430
+
431
+ #: breadcrumb_navxt_admin.php:1297
432
+ msgid "Author Suffix"
433
+ msgstr "Suffisso Autore"
434
+
435
+ #: breadcrumb_navxt_admin.php:1305
436
+ msgid "Author Display Format"
437
+ msgstr "Formato visualizzazione autore"
438
+
439
+ #: breadcrumb_navxt_admin.php:1311
440
+ 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."
441
+ msgstr "display_name usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
442
+
443
+ #: breadcrumb_navxt_admin.php:1316
444
+ msgid "Search Prefix"
445
+ msgstr "Prefisso Ricerca"
446
+
447
+ #: breadcrumb_navxt_admin.php:1324
448
+ msgid "Search Suffix"
449
+ msgstr "Suffisso Ricerca"
450
+
451
+ #: breadcrumb_navxt_admin.php:1332
452
+ msgid "Search Anchor"
453
+ msgstr "Collegamento Ricerca"
454
+
455
+ #: breadcrumb_navxt_admin.php:1336
456
+ msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
457
+ msgstr "Template collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce pi&ugrave; pagine di risultati."
458
+
459
+ #: breadcrumb_navxt_admin.php:1341
460
+ msgid "404 Title"
461
+ msgstr "Titolo 404"
462
+
463
+ #: breadcrumb_navxt_admin.php:1349
464
+ msgid "404 Prefix"
465
+ msgstr "Prefisso 404"
466
+
467
+ #: breadcrumb_navxt_admin.php:1357
468
+ msgid "404 Suffix"
469
+ msgstr "Suffisso 404"
470
+
471
+ #: breadcrumb_navxt_admin.php:1366
472
+ msgid "Save Changes"
473
+ msgstr "Salva modifiche"
474
+
475
+ #: breadcrumb_navxt_admin.php:1372
476
+ msgid "Import/Export/Reset Settings"
477
+ msgstr "Importa/Esporta/Azzera impostazioni"
478
+
479
+ #: breadcrumb_navxt_admin.php:1373
480
+ msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
481
+ msgstr "Importa le impostazioni di Breadcrumb NavXT da un file XML, esporta le impostazioni attuali su un file XML, o reimposta le opzioni predefinite."
482
+
483
+ #: breadcrumb_navxt_admin.php:1377
484
+ msgid "Settings File"
485
+ msgstr "File delle impostazioni"
486
+
487
+ #: breadcrumb_navxt_admin.php:1381
488
+ msgid "Select a XML settings file to upload and import settings from."
489
+ msgstr "Seleziona un file XML da caricare per importare le impostazioni."
490
+
491
+ #: breadcrumb_navxt_admin.php:1518
492
+ msgid "Importing settings from file failed."
493
+ msgstr "Importazione delle impostazioni dal file fallita."
494
+
495
+ #: breadcrumb_navxt_admin.php:1528
496
+ msgid "The Breadcrumb NavXT settings were successfully imported from file."
497
+ msgstr "Le impostazioni di Breadcrumb NavXT sono state correttamente importate dal file."
498
+
499
+ #: breadcrumb_navxt_admin.php:1538
500
+ msgid "The Breadcrumb NavXT settings were reset to the default values."
501
+ msgstr "Le impostazioni di Breadcrumb NavXT sono state azzerate ai valori predefiniti."
502
+
503
+ #: breadcrumb_navxt_class.php:149
504
+ msgid "Blog"
505
+ msgstr "Blog"
506
+
507
+ #: breadcrumb_navxt_class.php:151
508
+ #: breadcrumb_navxt_class.php:155
509
+ #: breadcrumb_navxt_class.php:179
510
+ #: breadcrumb_navxt_class.php:193
511
+ msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
512
+ msgstr "<a title=\"Vai a %title%.\" href=\"%link%\">"
513
+
514
+ #: breadcrumb_navxt_class.php:168
515
+ msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
516
+ msgstr "<a title=\"Ricarica la pagina corrente.\" href=\"%link%\">"
517
+
518
+ #: breadcrumb_navxt_class.php:209
519
+ msgid "404"
520
+ msgstr "404"
521
+
522
+ #: breadcrumb_navxt_class.php:212
523
+ msgid "Search results for &#39;"
524
+ msgstr "Risultati della ricerca per &#39;"
525
+
526
+ #: breadcrumb_navxt_class.php:223
527
+ msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
528
+ msgstr "<a title=\"Vai agli archivi del tag %title%.\" href=\"%link%\">"
529
+
530
+ #: breadcrumb_navxt_class.php:226
531
+ msgid "Articles by: "
532
+ msgstr "Articoli di: "
533
+
534
+ #: breadcrumb_navxt_class.php:230
535
+ msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
536
+ msgstr "<a title=\"Vai alla prima pagina degli articoli per %title%.\" href=\"%link%\">"
537
+
538
+ #: breadcrumb_navxt_class.php:239
539
+ msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
540
+ msgstr "<a title=\"Vai agli archivi della categoria %title%.\" href=\"%link%\">"
541
+
542
+ #: breadcrumb_navxt_class.php:242
543
+ msgid "Archive by category &#39;"
544
+ msgstr "Archivio della categoria &#39;"
545
+
546
+ #: breadcrumb_navxt_class.php:246
547
+ msgid "Archive by tag &#39;"
548
+ msgstr "Archivio del tag &#39;"
549
+
550
+ #: breadcrumb_navxt_class.php:249
551
+ msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
552
+ msgstr "<a title=\"Vai agli archivi %title%.\" href=\"%link%\">"
553
+
554
+ #: breadcrumb_navxt_class.php:488
555
+ msgid "Untagged"
556
+ msgstr "Non taggato"
557
+
languages/breadcrumb_navxt-ru_RU.mo CHANGED
Binary file
languages/breadcrumb_navxt-ru_RU.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Breadcrumb NavXT 3.3.0\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-28 09:51+0700\n"
6
- "PO-Revision-Date: \n"
7
  "Last-Translator: Yuri Gribov <grib69@gmail.com>\n"
8
  "Language-Team: www.wp-ru.ru <grib69@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -18,488 +18,566 @@ msgstr ""
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
- #: ../breadcrumb_navxt_admin.php:145
22
  msgid "Insufficient privileges to proceed."
23
  msgstr "Недостаточно прав для продолжения."
24
 
25
- #: ../breadcrumb_navxt_admin.php:201
26
- #: ../breadcrumb_navxt_class.php:214
27
- msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
 
28
  msgstr "<a title=\"Перейти к первой странице резултатов поиска &#39;%title%&#39;.\" href=\"%link%\">"
29
 
30
- #: ../breadcrumb_navxt_admin.php:537
31
  msgid "Settings"
32
  msgstr "Настройки"
33
 
34
- #: ../breadcrumb_navxt_admin.php:580
35
- #: ../breadcrumb_navxt_admin.php:617
36
- #: ../breadcrumb_navxt_admin.php:793
37
  msgid "Breadcrumb NavXT Settings"
38
  msgstr "Настройки Breadcrumb NavXT"
39
 
40
- #: ../breadcrumb_navxt_admin.php:619
41
  #, php-format
42
  msgid "Get help with \"%s\""
43
  msgstr "Получить помощь по \"%s\""
44
 
45
- #: ../breadcrumb_navxt_admin.php:631
46
  #, php-format
47
- msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
 
 
48
  msgstr "Подсказки по настройкам находятся под каждым полем ввода. За более подробными инструкциями, обратитесь на сайт плагина в раздел %sдокументации%s"
49
 
50
- #: ../breadcrumb_navxt_admin.php:632
51
  msgid "Go to the Breadcrumb NavXT online documentation"
52
  msgstr "Перейти на сайт с документацией Breadcrumb NavXT"
53
 
54
- #: ../breadcrumb_navxt_admin.php:687
55
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
 
 
56
  msgstr "Все текущие настройки Breadcrumb NavXT будут перезаписаны настройками по умолчанию. Вы уверены что хотите продолжить?"
57
 
58
- #: ../breadcrumb_navxt_admin.php:690
59
- msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
 
 
60
  msgstr "Все текущие настройки Breadcrumb NavXT будут перезаписаны импортируемыми настройками. Вы уверены что хотите продолжить?"
61
 
62
- #: ../breadcrumb_navxt_admin.php:743
63
- #: ../breadcrumb_navxt_admin.php:1293
64
  msgid "Import"
65
  msgstr "Импорт"
66
 
67
- #: ../breadcrumb_navxt_admin.php:743
68
- #: ../breadcrumb_navxt_admin.php:1294
69
  msgid "Export"
70
  msgstr "Экспорт"
71
 
72
- #: ../breadcrumb_navxt_admin.php:743
73
- #: ../breadcrumb_navxt_admin.php:1295
74
  msgid "Reset"
75
- msgstr "Обнулить"
76
 
77
- #: ../breadcrumb_navxt_admin.php:803
78
  msgid "General"
79
  msgstr "Общие"
80
 
81
- #: ../breadcrumb_navxt_admin.php:807
82
  msgid "Breadcrumb Separator"
83
  msgstr "Разделитель"
84
 
85
- #: ../breadcrumb_navxt_admin.php:811
86
  msgid "Placed in between each breadcrumb."
87
  msgstr "Устанавливается между ссылками."
88
 
89
- #: ../breadcrumb_navxt_admin.php:816
90
  msgid "Breadcrumb Max Title Length"
91
  msgstr "Максимальная длинна"
92
 
93
- #: ../breadcrumb_navxt_admin.php:824
94
  msgid "Home Breadcrumb"
95
  msgstr "Домашняя ссылка"
96
 
97
- #: ../breadcrumb_navxt_admin.php:829
98
  msgid "Place the home breadcrumb in the trail."
99
  msgstr "Включить домашнюю ссылку"
100
 
101
- #: ../breadcrumb_navxt_admin.php:834
102
  msgid "Home Title: "
103
  msgstr "Название ссылки: "
104
 
105
- #: ../breadcrumb_navxt_admin.php:843
106
  msgid "Blog Breadcrumb"
107
  msgstr "Ссылка на блог"
108
 
109
- #: ../breadcrumb_navxt_admin.php:848
110
  msgid "Place the blog breadcrumb in the trail."
111
  msgstr "Включить ссылку на блог"
112
 
113
- #: ../breadcrumb_navxt_admin.php:854
114
  msgid "Home Prefix"
115
  msgstr "Префикс домашней ссылки"
116
 
117
- #: ../breadcrumb_navxt_admin.php:862
118
  msgid "Home Suffix"
119
  msgstr "Суффикс домашней ссылки"
120
 
121
- #: ../breadcrumb_navxt_admin.php:870
122
  msgid "Home Anchor"
123
  msgstr "Текст домашней ссылки"
124
 
125
- #: ../breadcrumb_navxt_admin.php:874
126
  msgid "The anchor template for the home breadcrumb."
127
  msgstr "Шаблон текста домашней ссылки."
128
 
129
- #: ../breadcrumb_navxt_admin.php:879
130
  msgid "Blog Anchor"
131
  msgstr "Текст ссылки блога"
132
 
133
- #: ../breadcrumb_navxt_admin.php:883
134
- msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
 
 
135
  msgstr "Шаблон текста ссылки для блога, используется только в переменных статичных страниц."
136
 
137
- #: ../breadcrumb_navxt_admin.php:889
138
  msgid "Current Item"
139
  msgstr "Текущая позиция"
140
 
141
- #: ../breadcrumb_navxt_admin.php:893
142
  msgid "Link Current Item"
143
  msgstr "Отображать ссылку на текущую позицию"
144
 
145
- #: ../breadcrumb_navxt_admin.php:898
146
  msgid "Yes"
147
  msgstr "Да"
148
 
149
- #: ../breadcrumb_navxt_admin.php:904
150
  msgid "Current Item Prefix"
151
  msgstr "Префикс текущей позиции"
152
 
153
- #: ../breadcrumb_navxt_admin.php:908
154
- msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
 
 
155
  msgstr "Всегда будет отображаться перед последним пунктом в цепочке ссылок, перед любыми другими префиксами."
156
 
157
- #: ../breadcrumb_navxt_admin.php:913
158
  msgid "Current Item Suffix"
159
  msgstr "Суффикс текущей позиции"
160
 
161
- #: ../breadcrumb_navxt_admin.php:917
162
- msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
 
 
163
  msgstr "Всегда будет отображаться после последнего пункта в цепочке ссылок и после любых других преффиксов в цепочке."
164
 
165
- #: ../breadcrumb_navxt_admin.php:922
166
  msgid "Current Item Anchor"
167
  msgstr "Текст ссылки текущей позиции"
168
 
169
- #: ../breadcrumb_navxt_admin.php:926
170
  msgid "The anchor template for current item breadcrumbs."
171
  msgstr "Шаблон текста ссылки на текущую позицию"
172
 
173
- #: ../breadcrumb_navxt_admin.php:931
174
  msgid "Paged Breadcrumb"
175
  msgstr "Поддержка постраничной разметки"
176
 
177
- #: ../breadcrumb_navxt_admin.php:936
178
  msgid "Include the paged breadcrumb in the breadcrumb trail."
179
  msgstr "Включает поддержку разметки записей на страницы."
180
 
181
- #: ../breadcrumb_navxt_admin.php:938
182
- msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
 
 
183
  msgstr "Будет указываться, что посетитель находится на конкретной странице, если запись или статья сделаны с многостраничной разметкой."
184
 
185
- #: ../breadcrumb_navxt_admin.php:943
186
  msgid "Paged Prefix"
187
  msgstr "Префикс страницы"
188
 
189
- #: ../breadcrumb_navxt_admin.php:951
190
  msgid "Paged Suffix"
191
  msgstr "Суффикс страницы"
192
 
193
- #: ../breadcrumb_navxt_admin.php:960
194
  msgid "Posts &amp; Pages"
195
  msgstr "Записи / Страницы"
196
 
197
- #: ../breadcrumb_navxt_admin.php:964
198
  msgid "Post Prefix"
199
  msgstr "Префикс для записи"
200
 
201
- #: ../breadcrumb_navxt_admin.php:972
202
  msgid "Post Suffix"
203
  msgstr "Суффикс для записи"
204
 
205
- #: ../breadcrumb_navxt_admin.php:980
206
  msgid "Post Anchor"
207
  msgstr "Текст ссылки для записей"
208
 
209
- #: ../breadcrumb_navxt_admin.php:984
210
  msgid "The anchor template for post breadcrumbs."
211
  msgstr "Шаблон текста ссылки для записи."
212
 
213
- #: ../breadcrumb_navxt_admin.php:989
214
  msgid "Post Taxonomy Display"
215
  msgstr "Показывать варианты путей"
216
 
217
- #: ../breadcrumb_navxt_admin.php:994
218
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
219
  msgstr "Показывать все варианты путей ведущие к записи."
220
 
221
- #: ../breadcrumb_navxt_admin.php:1000
222
  msgid "Post Taxonomy"
223
  msgstr "Вариант пути"
224
 
225
- #: ../breadcrumb_navxt_admin.php:1005
226
- #: ../breadcrumb_navxt_admin.php:1060
227
  msgid "Categories"
228
  msgstr "Рубрики"
229
 
230
- #: ../breadcrumb_navxt_admin.php:1010
231
- #: ../breadcrumb_navxt_admin.php:1110
 
 
 
232
  msgid "Tags"
233
  msgstr "Метки"
234
 
235
- #: ../breadcrumb_navxt_admin.php:1013
236
  msgid "The taxonomy which the breadcrumb trail will show."
237
- msgstr "В вариантах путей к записи можно отображать рубрики или метки."
238
 
239
- #: ../breadcrumb_navxt_admin.php:1018
240
  msgid "Page Prefix"
241
  msgstr "Префикс для статьи"
242
 
243
- #: ../breadcrumb_navxt_admin.php:1026
244
  msgid "Page Suffix"
245
  msgstr "Суффикс для статьи"
246
 
247
- #: ../breadcrumb_navxt_admin.php:1034
248
  msgid "Page Anchor"
249
  msgstr "Текст ссылки для статьи"
250
 
251
- #: ../breadcrumb_navxt_admin.php:1038
252
  msgid "The anchor template for page breadcrumbs."
253
  msgstr "Шаблон текста ссылки для статей."
254
 
255
- #: ../breadcrumb_navxt_admin.php:1043
256
  msgid "Attachment Prefix"
257
  msgstr "Префикс для аттачментов"
258
 
259
- #: ../breadcrumb_navxt_admin.php:1051
260
  msgid "Attachment Suffix"
261
  msgstr "Суффикс для аттачментов"
262
 
263
- #: ../breadcrumb_navxt_admin.php:1064
264
  msgid "Category Prefix"
265
  msgstr "Префикс рубрики"
266
 
267
- #: ../breadcrumb_navxt_admin.php:1068
268
  msgid "Applied before the anchor on all category breadcrumbs."
269
  msgstr "Добавляется перед текстом ссылки для всех рубрик."
270
 
271
- #: ../breadcrumb_navxt_admin.php:1073
272
  msgid "Category Suffix"
273
  msgstr "Суффикс рубрики"
274
 
275
- #: ../breadcrumb_navxt_admin.php:1077
276
  msgid "Applied after the anchor on all category breadcrumbs."
277
  msgstr "Добавляется после текста ссылки для всех рубрик."
278
 
279
- #: ../breadcrumb_navxt_admin.php:1082
280
  msgid "Category Anchor"
281
  msgstr "Текст ссылки для рубрик"
282
 
283
- #: ../breadcrumb_navxt_admin.php:1086
284
  msgid "The anchor template for category breadcrumbs."
285
  msgstr "Шаблон текста ссылок для рубрик."
286
 
287
- #: ../breadcrumb_navxt_admin.php:1091
288
  msgid "Archive by Category Prefix"
289
  msgstr "Префикс архива рубрик"
290
 
291
- #: ../breadcrumb_navxt_admin.php:1095
292
- msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
 
 
293
  msgstr "Отображаемый текст перед названием рубрики, при нахождении в архиве рубрик."
294
 
295
- #: ../breadcrumb_navxt_admin.php:1100
296
  msgid "Archive by Category Suffix"
297
  msgstr "Суффикс архива рубрик"
298
 
299
- #: ../breadcrumb_navxt_admin.php:1104
300
- msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
 
 
301
  msgstr "Отображаемый текст после названия рубрики, при нахождении в архиве рубрик."
302
 
303
- #: ../breadcrumb_navxt_admin.php:1114
304
  msgid "Tag Prefix"
305
  msgstr "Префикс для меток"
306
 
307
- #: ../breadcrumb_navxt_admin.php:1118
308
  msgid "Applied before the anchor on all tag breadcrumbs."
309
  msgstr "Будет отображаться перед именем метки."
310
 
311
- #: ../breadcrumb_navxt_admin.php:1123
312
  msgid "Tag Suffix"
313
  msgstr "Суффикс для меток"
314
 
315
- #: ../breadcrumb_navxt_admin.php:1127
316
  msgid "Applied after the anchor on all tag breadcrumbs."
317
  msgstr "Будет отображаться после имени метки."
318
 
319
- #: ../breadcrumb_navxt_admin.php:1132
320
  msgid "Tag Anchor"
321
  msgstr "Текст ссылки для метки"
322
 
323
- #: ../breadcrumb_navxt_admin.php:1136
324
  msgid "The anchor template for tag breadcrumbs."
325
  msgstr "Шаблон текста ссылок для меток."
326
 
327
- #: ../breadcrumb_navxt_admin.php:1141
328
  msgid "Archive by Tag Prefix"
329
  msgstr "Префикс для архива меток"
330
 
331
- #: ../breadcrumb_navxt_admin.php:1145
332
- msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
 
 
333
  msgstr "Будет отображаться перед названием текущей метки, при нахождении на странице архива меток."
334
 
335
- #: ../breadcrumb_navxt_admin.php:1150
336
  msgid "Archive by Tag Suffix"
337
  msgstr "Суффикс для архива меток"
338
 
339
- #: ../breadcrumb_navxt_admin.php:1154
340
- msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
 
 
341
  msgstr "Будет отображаться после названия метки, при нахождении на странице архива меток."
342
 
343
- #: ../breadcrumb_navxt_admin.php:1160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  msgid "Date Archives"
345
  msgstr "Архив по дате"
346
 
347
- #: ../breadcrumb_navxt_admin.php:1164
348
  msgid "Archive by Date Prefix"
349
  msgstr "Префикс для архива по дате"
350
 
351
- #: ../breadcrumb_navxt_admin.php:1168
352
  msgid "Applied before the anchor on all date breadcrumbs."
353
  msgstr "Будет отображатьсе перед каждой календарной датой в архиве."
354
 
355
- #: ../breadcrumb_navxt_admin.php:1173
356
  msgid "Archive by Date Suffix"
357
  msgstr "Суффикс для архива по дате"
358
 
359
- #: ../breadcrumb_navxt_admin.php:1177
360
  msgid "Applied after the anchor on all date breadcrumbs."
361
  msgstr "Будет отображаться после каждой календарной датой в архиве."
362
 
363
- #: ../breadcrumb_navxt_admin.php:1182
364
  msgid "Date Anchor"
365
  msgstr "Текст ссылки для даты."
366
 
367
- #: ../breadcrumb_navxt_admin.php:1186
368
  msgid "The anchor template for date breadcrumbs."
369
  msgstr "Шаблон текста ссылок для календарных дат."
370
 
371
- #: ../breadcrumb_navxt_admin.php:1192
372
  msgid "Miscellaneous"
373
  msgstr "Остальное"
374
 
375
- #: ../breadcrumb_navxt_admin.php:1196
376
  msgid "Author Prefix"
377
  msgstr "Префикс для автора"
378
 
379
- #: ../breadcrumb_navxt_admin.php:1204
380
  msgid "Author Suffix"
381
  msgstr "Суффикс для автора"
382
 
383
- #: ../breadcrumb_navxt_admin.php:1212
384
  msgid "Author Display Format"
385
  msgstr "Как отображать автора"
386
 
387
- #: ../breadcrumb_navxt_admin.php:1218
388
- 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."
 
 
389
  msgstr "display_name отобразит имя автора так, как указано в профиле, в настройке \"Отображаемое публично имя\"."
390
 
391
- #: ../breadcrumb_navxt_admin.php:1223
392
  msgid "Search Prefix"
393
  msgstr "Префикс для поиска"
394
 
395
- #: ../breadcrumb_navxt_admin.php:1231
396
  msgid "Search Suffix"
397
  msgstr "Суффикс для поиска"
398
 
399
- #: ../breadcrumb_navxt_admin.php:1239
400
  msgid "Search Anchor"
401
  msgstr "Текст ссылки для страницы поиска"
402
 
403
- #: ../breadcrumb_navxt_admin.php:1243
404
- msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
 
 
405
  msgstr "Шаблон текста ссылки для страницы результата поиска. Используется только в случае, если результат поиска выводится на нескольких страницах."
406
 
407
- #: ../breadcrumb_navxt_admin.php:1248
408
  msgid "404 Title"
409
  msgstr "Заголовок 404"
410
 
411
- #: ../breadcrumb_navxt_admin.php:1256
412
  msgid "404 Prefix"
413
  msgstr "Префикс 404"
414
 
415
- #: ../breadcrumb_navxt_admin.php:1264
416
  msgid "404 Suffix"
417
  msgstr "Суффикс 404"
418
 
419
- #: ../breadcrumb_navxt_admin.php:1273
420
  msgid "Save Changes"
421
  msgstr "Сохранить изменения"
422
 
423
- #: ../breadcrumb_navxt_admin.php:1279
424
  msgid "Import/Export/Reset Settings"
425
  msgstr "Настройки Импорта/Экспорта/Обнуления"
426
 
427
- #: ../breadcrumb_navxt_admin.php:1280
428
- msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
 
 
429
  msgstr "Здесь можно осуществить импорт настроек Breadcrumb NavXT из XML файла, экспорт текущих настроек в XML файл или сбросить все настройки, на настройки по умолчанию."
430
 
431
- #: ../breadcrumb_navxt_admin.php:1284
432
  msgid "Settings File"
433
  msgstr "Файл настроек"
434
 
435
- #: ../breadcrumb_navxt_admin.php:1288
436
  msgid "Select a XML settings file to upload and import settings from."
437
  msgstr "Выберите XML файл с настройками и импортируйте его."
438
 
439
- #: ../breadcrumb_navxt_admin.php:1424
440
  msgid "Importing settings from file failed."
441
  msgstr "Ошибка импорта настроек из файла."
442
 
443
- #: ../breadcrumb_navxt_admin.php:1434
444
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
445
  msgstr "Импорт настроек Breadcrumb NavXT из файла успешно осуществлен."
446
 
447
- #: ../breadcrumb_navxt_admin.php:1444
448
  msgid "The Breadcrumb NavXT settings were reset to the default values."
449
  msgstr "Все настройки Breadcrumb NavXT сброшены на настройки по умолчанию."
450
 
451
- #: ../breadcrumb_navxt_class.php:147
452
  msgid "Blog"
453
  msgstr "Блог"
454
 
455
- #: ../breadcrumb_navxt_class.php:149
456
- #: ../breadcrumb_navxt_class.php:153
457
- #: ../breadcrumb_navxt_class.php:177
458
- #: ../breadcrumb_navxt_class.php:191
459
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
460
  msgstr "<a title=\"Перейти на &#39;%title%&#39;.\" href=\"%link%\">"
461
 
462
- #: ../breadcrumb_navxt_class.php:166
463
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
464
  msgstr "<a title=\"Обновить текущую страницу.\" href=\"%link%\">"
465
 
466
- #: ../breadcrumb_navxt_class.php:207
467
  msgid "404"
468
- msgstr "404"
469
 
470
- #: ../breadcrumb_navxt_class.php:210
471
  msgid "Search results for &#39;"
472
  msgstr "Результат поиска для &#39;"
473
 
474
- #: ../breadcrumb_navxt_class.php:221
475
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
476
  msgstr "<a title=\"Перейти к метке &#39;%title%&#39;.\" href=\"%link%\">"
477
 
478
- #: ../breadcrumb_navxt_class.php:224
479
  msgid "Articles by: "
480
  msgstr "Опубликовал(а): "
481
 
482
- #: ../breadcrumb_navxt_class.php:228
483
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
484
  msgstr "<a title=\"Перейти к первой странице записи &#39;%title%&#39;.\" href=\"%link%\">"
485
 
486
- #: ../breadcrumb_navxt_class.php:237
487
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
488
  msgstr "<a title=\"Перейти к рубрике &#39;%title%&#39;.\" href=\"%link%\">"
489
 
490
- #: ../breadcrumb_navxt_class.php:240
491
  msgid "Archive by category &#39;"
492
  msgstr "Архив рубрики &#39;"
493
 
494
- #: ../breadcrumb_navxt_class.php:244
495
  msgid "Archive by tag &#39;"
496
  msgstr "Архив метки &#39;"
497
 
498
- #: ../breadcrumb_navxt_class.php:247
499
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
500
  msgstr "<a title=\"Перейти к архиву за %title%.\" href=\"%link%\">"
501
 
502
- #: ../breadcrumb_navxt_class.php:477
503
  msgid "Untagged"
504
  msgstr "Без меток"
505
-
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Breadcrumb NavXT 3.4.0\n"
4
+ "Report-Msgid-Bugs-To: http://www.wp-ru.ru/ <grib69@gmail.com>\n"
5
+ "POT-Creation-Date: 2009-12-05 22:23+0000\n"
6
+ "PO-Revision-Date: 2009-12-09 09:48+0700\n"
7
  "Last-Translator: Yuri Gribov <grib69@gmail.com>\n"
8
  "Language-Team: www.wp-ru.ru <grib69@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
  "X-Poedit-SearchPath-1: ..\n"
20
 
21
+ #: breadcrumb_navxt_admin.php:134
22
  msgid "Insufficient privileges to proceed."
23
  msgstr "Недостаточно прав для продолжения."
24
 
25
+ #: breadcrumb_navxt_admin.php:190 breadcrumb_navxt_class.php:216
26
+ msgid ""
27
+ "<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
28
+ "%\">"
29
  msgstr "<a title=\"Перейти к первой странице резултатов поиска &#39;%title%&#39;.\" href=\"%link%\">"
30
 
31
+ #: breadcrumb_navxt_admin.php:540
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
+ #: breadcrumb_navxt_admin.php:594 breadcrumb_navxt_admin.php:629
36
+ #: breadcrumb_navxt_admin.php:802
 
37
  msgid "Breadcrumb NavXT Settings"
38
  msgstr "Настройки Breadcrumb NavXT"
39
 
40
+ #: breadcrumb_navxt_admin.php:630
41
  #, php-format
42
  msgid "Get help with \"%s\""
43
  msgstr "Получить помощь по \"%s\""
44
 
45
+ #: breadcrumb_navxt_admin.php:641
46
  #, php-format
47
+ msgid ""
48
+ "Tips for the settings are located below select options. Please refer to the %"
49
+ "sdocumentation%s for more information."
50
  msgstr "Подсказки по настройкам находятся под каждым полем ввода. За более подробными инструкциями, обратитесь на сайт плагина в раздел %sдокументации%s"
51
 
52
+ #: breadcrumb_navxt_admin.php:642
53
  msgid "Go to the Breadcrumb NavXT online documentation"
54
  msgstr "Перейти на сайт с документацией Breadcrumb NavXT"
55
 
56
+ #: breadcrumb_navxt_admin.php:697
57
+ msgid ""
58
+ "All of your current Breadcrumb NavXT settings will be overwritten with the "
59
+ "default values. Are you sure you want to continue?"
60
  msgstr "Все текущие настройки Breadcrumb NavXT будут перезаписаны настройками по умолчанию. Вы уверены что хотите продолжить?"
61
 
62
+ #: breadcrumb_navxt_admin.php:700
63
+ msgid ""
64
+ "All of your current Breadcrumb NavXT settings will be overwritten with the "
65
+ "imported values. Are you sure you want to continue?"
66
  msgstr "Все текущие настройки Breadcrumb NavXT будут перезаписаны импортируемыми настройками. Вы уверены что хотите продолжить?"
67
 
68
+ #: breadcrumb_navxt_admin.php:753 breadcrumb_navxt_admin.php:1386
 
69
  msgid "Import"
70
  msgstr "Импорт"
71
 
72
+ #: breadcrumb_navxt_admin.php:753 breadcrumb_navxt_admin.php:1387
 
73
  msgid "Export"
74
  msgstr "Экспорт"
75
 
76
+ #: breadcrumb_navxt_admin.php:753 breadcrumb_navxt_admin.php:1388
 
77
  msgid "Reset"
78
+ msgstr "Сбросить"
79
 
80
+ #: breadcrumb_navxt_admin.php:812
81
  msgid "General"
82
  msgstr "Общие"
83
 
84
+ #: breadcrumb_navxt_admin.php:816
85
  msgid "Breadcrumb Separator"
86
  msgstr "Разделитель"
87
 
88
+ #: breadcrumb_navxt_admin.php:820
89
  msgid "Placed in between each breadcrumb."
90
  msgstr "Устанавливается между ссылками."
91
 
92
+ #: breadcrumb_navxt_admin.php:825
93
  msgid "Breadcrumb Max Title Length"
94
  msgstr "Максимальная длинна"
95
 
96
+ #: breadcrumb_navxt_admin.php:833
97
  msgid "Home Breadcrumb"
98
  msgstr "Домашняя ссылка"
99
 
100
+ #: breadcrumb_navxt_admin.php:838
101
  msgid "Place the home breadcrumb in the trail."
102
  msgstr "Включить домашнюю ссылку"
103
 
104
+ #: breadcrumb_navxt_admin.php:843
105
  msgid "Home Title: "
106
  msgstr "Название ссылки: "
107
 
108
+ #: breadcrumb_navxt_admin.php:852
109
  msgid "Blog Breadcrumb"
110
  msgstr "Ссылка на блог"
111
 
112
+ #: breadcrumb_navxt_admin.php:857
113
  msgid "Place the blog breadcrumb in the trail."
114
  msgstr "Включить ссылку на блог"
115
 
116
+ #: breadcrumb_navxt_admin.php:863
117
  msgid "Home Prefix"
118
  msgstr "Префикс домашней ссылки"
119
 
120
+ #: breadcrumb_navxt_admin.php:871
121
  msgid "Home Suffix"
122
  msgstr "Суффикс домашней ссылки"
123
 
124
+ #: breadcrumb_navxt_admin.php:879
125
  msgid "Home Anchor"
126
  msgstr "Текст домашней ссылки"
127
 
128
+ #: breadcrumb_navxt_admin.php:883
129
  msgid "The anchor template for the home breadcrumb."
130
  msgstr "Шаблон текста домашней ссылки."
131
 
132
+ #: breadcrumb_navxt_admin.php:888
133
  msgid "Blog Anchor"
134
  msgstr "Текст ссылки блога"
135
 
136
+ #: breadcrumb_navxt_admin.php:892
137
+ msgid ""
138
+ "The anchor template for the blog breadcrumb, used only in static front page "
139
+ "environments."
140
  msgstr "Шаблон текста ссылки для блога, используется только в переменных статичных страниц."
141
 
142
+ #: breadcrumb_navxt_admin.php:898
143
  msgid "Current Item"
144
  msgstr "Текущая позиция"
145
 
146
+ #: breadcrumb_navxt_admin.php:902
147
  msgid "Link Current Item"
148
  msgstr "Отображать ссылку на текущую позицию"
149
 
150
+ #: breadcrumb_navxt_admin.php:907
151
  msgid "Yes"
152
  msgstr "Да"
153
 
154
+ #: breadcrumb_navxt_admin.php:913
155
  msgid "Current Item Prefix"
156
  msgstr "Префикс текущей позиции"
157
 
158
+ #: breadcrumb_navxt_admin.php:917
159
+ msgid ""
160
+ "This is always placed in front of the last breadcrumb in the trail, before "
161
+ "any other prefixes for that breadcrumb."
162
  msgstr "Всегда будет отображаться перед последним пунктом в цепочке ссылок, перед любыми другими префиксами."
163
 
164
+ #: breadcrumb_navxt_admin.php:922
165
  msgid "Current Item Suffix"
166
  msgstr "Суффикс текущей позиции"
167
 
168
+ #: breadcrumb_navxt_admin.php:926
169
+ msgid ""
170
+ "This is always placed after the last breadcrumb in the trail, and after any "
171
+ "other prefixes for that breadcrumb."
172
  msgstr "Всегда будет отображаться после последнего пункта в цепочке ссылок и после любых других преффиксов в цепочке."
173
 
174
+ #: breadcrumb_navxt_admin.php:931
175
  msgid "Current Item Anchor"
176
  msgstr "Текст ссылки текущей позиции"
177
 
178
+ #: breadcrumb_navxt_admin.php:935
179
  msgid "The anchor template for current item breadcrumbs."
180
  msgstr "Шаблон текста ссылки на текущую позицию"
181
 
182
+ #: breadcrumb_navxt_admin.php:940
183
  msgid "Paged Breadcrumb"
184
  msgstr "Поддержка постраничной разметки"
185
 
186
+ #: breadcrumb_navxt_admin.php:945
187
  msgid "Include the paged breadcrumb in the breadcrumb trail."
188
  msgstr "Включает поддержку разметки записей на страницы."
189
 
190
+ #: breadcrumb_navxt_admin.php:947
191
+ msgid ""
192
+ "Indicates that the user is on a page other than the first on paginated posts/"
193
+ "pages."
194
  msgstr "Будет указываться, что посетитель находится на конкретной странице, если запись или статья сделаны с многостраничной разметкой."
195
 
196
+ #: breadcrumb_navxt_admin.php:952
197
  msgid "Paged Prefix"
198
  msgstr "Префикс страницы"
199
 
200
+ #: breadcrumb_navxt_admin.php:960
201
  msgid "Paged Suffix"
202
  msgstr "Суффикс страницы"
203
 
204
+ #: breadcrumb_navxt_admin.php:969
205
  msgid "Posts &amp; Pages"
206
  msgstr "Записи / Страницы"
207
 
208
+ #: breadcrumb_navxt_admin.php:973
209
  msgid "Post Prefix"
210
  msgstr "Префикс для записи"
211
 
212
+ #: breadcrumb_navxt_admin.php:981
213
  msgid "Post Suffix"
214
  msgstr "Суффикс для записи"
215
 
216
+ #: breadcrumb_navxt_admin.php:989
217
  msgid "Post Anchor"
218
  msgstr "Текст ссылки для записей"
219
 
220
+ #: breadcrumb_navxt_admin.php:993
221
  msgid "The anchor template for post breadcrumbs."
222
  msgstr "Шаблон текста ссылки для записи."
223
 
224
+ #: breadcrumb_navxt_admin.php:998
225
  msgid "Post Taxonomy Display"
226
  msgstr "Показывать варианты путей"
227
 
228
+ #: breadcrumb_navxt_admin.php:1003
229
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
230
  msgstr "Показывать все варианты путей ведущие к записи."
231
 
232
+ #: breadcrumb_navxt_admin.php:1009
233
  msgid "Post Taxonomy"
234
  msgstr "Вариант пути"
235
 
236
+ #: breadcrumb_navxt_admin.php:1014 breadcrumb_navxt_admin.php:1091
 
237
  msgid "Categories"
238
  msgstr "Рубрики"
239
 
240
+ #: breadcrumb_navxt_admin.php:1019
241
+ msgid "Dates"
242
+ msgstr "Даты"
243
+
244
+ #: breadcrumb_navxt_admin.php:1024 breadcrumb_navxt_admin.php:1141
245
  msgid "Tags"
246
  msgstr "Метки"
247
 
248
+ #: breadcrumb_navxt_admin.php:1044
249
  msgid "The taxonomy which the breadcrumb trail will show."
250
+ msgstr "В вариантах путей к записи можно отображать рубрики, даты или метки."
251
 
252
+ #: breadcrumb_navxt_admin.php:1049
253
  msgid "Page Prefix"
254
  msgstr "Префикс для статьи"
255
 
256
+ #: breadcrumb_navxt_admin.php:1057
257
  msgid "Page Suffix"
258
  msgstr "Суффикс для статьи"
259
 
260
+ #: breadcrumb_navxt_admin.php:1065
261
  msgid "Page Anchor"
262
  msgstr "Текст ссылки для статьи"
263
 
264
+ #: breadcrumb_navxt_admin.php:1069
265
  msgid "The anchor template for page breadcrumbs."
266
  msgstr "Шаблон текста ссылки для статей."
267
 
268
+ #: breadcrumb_navxt_admin.php:1074
269
  msgid "Attachment Prefix"
270
  msgstr "Префикс для аттачментов"
271
 
272
+ #: breadcrumb_navxt_admin.php:1082
273
  msgid "Attachment Suffix"
274
  msgstr "Суффикс для аттачментов"
275
 
276
+ #: breadcrumb_navxt_admin.php:1095
277
  msgid "Category Prefix"
278
  msgstr "Префикс рубрики"
279
 
280
+ #: breadcrumb_navxt_admin.php:1099
281
  msgid "Applied before the anchor on all category breadcrumbs."
282
  msgstr "Добавляется перед текстом ссылки для всех рубрик."
283
 
284
+ #: breadcrumb_navxt_admin.php:1104
285
  msgid "Category Suffix"
286
  msgstr "Суффикс рубрики"
287
 
288
+ #: breadcrumb_navxt_admin.php:1108
289
  msgid "Applied after the anchor on all category breadcrumbs."
290
  msgstr "Добавляется после текста ссылки для всех рубрик."
291
 
292
+ #: breadcrumb_navxt_admin.php:1113
293
  msgid "Category Anchor"
294
  msgstr "Текст ссылки для рубрик"
295
 
296
+ #: breadcrumb_navxt_admin.php:1117
297
  msgid "The anchor template for category breadcrumbs."
298
  msgstr "Шаблон текста ссылок для рубрик."
299
 
300
+ #: breadcrumb_navxt_admin.php:1122
301
  msgid "Archive by Category Prefix"
302
  msgstr "Префикс архива рубрик"
303
 
304
+ #: breadcrumb_navxt_admin.php:1126
305
+ msgid ""
306
+ "Applied before the title of the current item breadcrumb on an archive by "
307
+ "cateogry page."
308
  msgstr "Отображаемый текст перед названием рубрики, при нахождении в архиве рубрик."
309
 
310
+ #: breadcrumb_navxt_admin.php:1131
311
  msgid "Archive by Category Suffix"
312
  msgstr "Суффикс архива рубрик"
313
 
314
+ #: breadcrumb_navxt_admin.php:1135
315
+ msgid ""
316
+ "Applied after the title of the current item breadcrumb on an archive by "
317
+ "cateogry page."
318
  msgstr "Отображаемый текст после названия рубрики, при нахождении в архиве рубрик."
319
 
320
+ #: breadcrumb_navxt_admin.php:1145
321
  msgid "Tag Prefix"
322
  msgstr "Префикс для меток"
323
 
324
+ #: breadcrumb_navxt_admin.php:1149
325
  msgid "Applied before the anchor on all tag breadcrumbs."
326
  msgstr "Будет отображаться перед именем метки."
327
 
328
+ #: breadcrumb_navxt_admin.php:1154
329
  msgid "Tag Suffix"
330
  msgstr "Суффикс для меток"
331
 
332
+ #: breadcrumb_navxt_admin.php:1158
333
  msgid "Applied after the anchor on all tag breadcrumbs."
334
  msgstr "Будет отображаться после имени метки."
335
 
336
+ #: breadcrumb_navxt_admin.php:1163
337
  msgid "Tag Anchor"
338
  msgstr "Текст ссылки для метки"
339
 
340
+ #: breadcrumb_navxt_admin.php:1167
341
  msgid "The anchor template for tag breadcrumbs."
342
  msgstr "Шаблон текста ссылок для меток."
343
 
344
+ #: breadcrumb_navxt_admin.php:1172
345
  msgid "Archive by Tag Prefix"
346
  msgstr "Префикс для архива меток"
347
 
348
+ #: breadcrumb_navxt_admin.php:1176
349
+ msgid ""
350
+ "Applied before the title of the current item breadcrumb on an archive by tag "
351
+ "page."
352
  msgstr "Будет отображаться перед названием текущей метки, при нахождении на странице архива меток."
353
 
354
+ #: breadcrumb_navxt_admin.php:1181
355
  msgid "Archive by Tag Suffix"
356
  msgstr "Суффикс для архива меток"
357
 
358
+ #: breadcrumb_navxt_admin.php:1185
359
+ msgid ""
360
+ "Applied after the title of the current item breadcrumb on an archive by tag "
361
+ "page."
362
  msgstr "Будет отображаться после названия метки, при нахождении на странице архива меток."
363
 
364
+ #: breadcrumb_navxt_admin.php:1203
365
+ #, php-format
366
+ msgid "%s Prefix"
367
+ msgstr "%s префикс"
368
+
369
+ #: breadcrumb_navxt_admin.php:1207
370
+ #, php-format
371
+ msgid "Applied before the anchor on all %s breadcrumbs."
372
+ msgstr "Будет отображаться перед всеми текстами ссылок %s"
373
+
374
+ #: breadcrumb_navxt_admin.php:1212
375
+ #, php-format
376
+ msgid "%s Suffix"
377
+ msgstr "%s суффикс"
378
+
379
+ #: breadcrumb_navxt_admin.php:1216
380
+ #, php-format
381
+ msgid "Applied after the anchor on all %s breadcrumbs."
382
+ msgstr "Будет отображаться после всех текстов ссылок %s"
383
+
384
+ #: breadcrumb_navxt_admin.php:1221
385
+ #, php-format
386
+ msgid "%s Anchor"
387
+ msgstr "%s текст ссылки"
388
+
389
+ #: breadcrumb_navxt_admin.php:1225
390
+ #, php-format
391
+ msgid "The anchor template for %s breadcrumbs."
392
+ msgstr "Шаблон текста ссылок для %s"
393
+
394
+ #: breadcrumb_navxt_admin.php:1230
395
+ #, php-format
396
+ msgid "Archive by %s Prefix"
397
+ msgstr "Префикс архива по %s"
398
+
399
+ #: breadcrumb_navxt_admin.php:1234
400
+ #, php-format
401
+ msgid ""
402
+ "Applied before the title of the current item breadcrumb on an archive by %s "
403
+ "page."
404
+ msgstr ""
405
+
406
+ #: breadcrumb_navxt_admin.php:1239
407
+ #, php-format
408
+ msgid "Archive by %s Suffix"
409
+ msgstr "Суффикс архива по %s"
410
+
411
+ #: breadcrumb_navxt_admin.php:1243
412
+ #, php-format
413
+ msgid ""
414
+ "Applied after the title of the current item breadcrumb on an archive by %s "
415
+ "page."
416
+ msgstr ""
417
+
418
+ #: breadcrumb_navxt_admin.php:1253
419
  msgid "Date Archives"
420
  msgstr "Архив по дате"
421
 
422
+ #: breadcrumb_navxt_admin.php:1257
423
  msgid "Archive by Date Prefix"
424
  msgstr "Префикс для архива по дате"
425
 
426
+ #: breadcrumb_navxt_admin.php:1261
427
  msgid "Applied before the anchor on all date breadcrumbs."
428
  msgstr "Будет отображатьсе перед каждой календарной датой в архиве."
429
 
430
+ #: breadcrumb_navxt_admin.php:1266
431
  msgid "Archive by Date Suffix"
432
  msgstr "Суффикс для архива по дате"
433
 
434
+ #: breadcrumb_navxt_admin.php:1270
435
  msgid "Applied after the anchor on all date breadcrumbs."
436
  msgstr "Будет отображаться после каждой календарной датой в архиве."
437
 
438
+ #: breadcrumb_navxt_admin.php:1275
439
  msgid "Date Anchor"
440
  msgstr "Текст ссылки для даты."
441
 
442
+ #: breadcrumb_navxt_admin.php:1279
443
  msgid "The anchor template for date breadcrumbs."
444
  msgstr "Шаблон текста ссылок для календарных дат."
445
 
446
+ #: breadcrumb_navxt_admin.php:1285
447
  msgid "Miscellaneous"
448
  msgstr "Остальное"
449
 
450
+ #: breadcrumb_navxt_admin.php:1289
451
  msgid "Author Prefix"
452
  msgstr "Префикс для автора"
453
 
454
+ #: breadcrumb_navxt_admin.php:1297
455
  msgid "Author Suffix"
456
  msgstr "Суффикс для автора"
457
 
458
+ #: breadcrumb_navxt_admin.php:1305
459
  msgid "Author Display Format"
460
  msgstr "Как отображать автора"
461
 
462
+ #: breadcrumb_navxt_admin.php:1311
463
+ msgid ""
464
+ "display_name uses the name specified in \"Display name publicly as\" under "
465
+ "the user profile the others correspond to options in the user profile."
466
  msgstr "display_name отобразит имя автора так, как указано в профиле, в настройке \"Отображаемое публично имя\"."
467
 
468
+ #: breadcrumb_navxt_admin.php:1316
469
  msgid "Search Prefix"
470
  msgstr "Префикс для поиска"
471
 
472
+ #: breadcrumb_navxt_admin.php:1324
473
  msgid "Search Suffix"
474
  msgstr "Суффикс для поиска"
475
 
476
+ #: breadcrumb_navxt_admin.php:1332
477
  msgid "Search Anchor"
478
  msgstr "Текст ссылки для страницы поиска"
479
 
480
+ #: breadcrumb_navxt_admin.php:1336
481
+ msgid ""
482
+ "The anchor template for search breadcrumbs, used only when the search "
483
+ "results span several pages."
484
  msgstr "Шаблон текста ссылки для страницы результата поиска. Используется только в случае, если результат поиска выводится на нескольких страницах."
485
 
486
+ #: breadcrumb_navxt_admin.php:1341
487
  msgid "404 Title"
488
  msgstr "Заголовок 404"
489
 
490
+ #: breadcrumb_navxt_admin.php:1349
491
  msgid "404 Prefix"
492
  msgstr "Префикс 404"
493
 
494
+ #: breadcrumb_navxt_admin.php:1357
495
  msgid "404 Suffix"
496
  msgstr "Суффикс 404"
497
 
498
+ #: breadcrumb_navxt_admin.php:1366
499
  msgid "Save Changes"
500
  msgstr "Сохранить изменения"
501
 
502
+ #: breadcrumb_navxt_admin.php:1372
503
  msgid "Import/Export/Reset Settings"
504
  msgstr "Настройки Импорта/Экспорта/Обнуления"
505
 
506
+ #: breadcrumb_navxt_admin.php:1373
507
+ msgid ""
508
+ "Import Breadcrumb NavXT settings from a XML file, export the current "
509
+ "settings to a XML file, or reset to the default Breadcrumb NavXT settings."
510
  msgstr "Здесь можно осуществить импорт настроек Breadcrumb NavXT из XML файла, экспорт текущих настроек в XML файл или сбросить все настройки, на настройки по умолчанию."
511
 
512
+ #: breadcrumb_navxt_admin.php:1377
513
  msgid "Settings File"
514
  msgstr "Файл настроек"
515
 
516
+ #: breadcrumb_navxt_admin.php:1381
517
  msgid "Select a XML settings file to upload and import settings from."
518
  msgstr "Выберите XML файл с настройками и импортируйте его."
519
 
520
+ #: breadcrumb_navxt_admin.php:1518
521
  msgid "Importing settings from file failed."
522
  msgstr "Ошибка импорта настроек из файла."
523
 
524
+ #: breadcrumb_navxt_admin.php:1528
525
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
526
  msgstr "Импорт настроек Breadcrumb NavXT из файла успешно осуществлен."
527
 
528
+ #: breadcrumb_navxt_admin.php:1538
529
  msgid "The Breadcrumb NavXT settings were reset to the default values."
530
  msgstr "Все настройки Breadcrumb NavXT сброшены на настройки по умолчанию."
531
 
532
+ #: breadcrumb_navxt_class.php:149
533
  msgid "Blog"
534
  msgstr "Блог"
535
 
536
+ #: breadcrumb_navxt_class.php:151 breadcrumb_navxt_class.php:155
537
+ #: breadcrumb_navxt_class.php:179 breadcrumb_navxt_class.php:193
 
 
538
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
539
  msgstr "<a title=\"Перейти на &#39;%title%&#39;.\" href=\"%link%\">"
540
 
541
+ #: breadcrumb_navxt_class.php:168
542
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
543
  msgstr "<a title=\"Обновить текущую страницу.\" href=\"%link%\">"
544
 
545
+ #: breadcrumb_navxt_class.php:209
546
  msgid "404"
547
+ msgstr ""
548
 
549
+ #: breadcrumb_navxt_class.php:212
550
  msgid "Search results for &#39;"
551
  msgstr "Результат поиска для &#39;"
552
 
553
+ #: breadcrumb_navxt_class.php:223
554
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
555
  msgstr "<a title=\"Перейти к метке &#39;%title%&#39;.\" href=\"%link%\">"
556
 
557
+ #: breadcrumb_navxt_class.php:226
558
  msgid "Articles by: "
559
  msgstr "Опубликовал(а): "
560
 
561
+ #: breadcrumb_navxt_class.php:230
562
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
563
  msgstr "<a title=\"Перейти к первой странице записи &#39;%title%&#39;.\" href=\"%link%\">"
564
 
565
+ #: breadcrumb_navxt_class.php:239
566
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
567
  msgstr "<a title=\"Перейти к рубрике &#39;%title%&#39;.\" href=\"%link%\">"
568
 
569
+ #: breadcrumb_navxt_class.php:242
570
  msgid "Archive by category &#39;"
571
  msgstr "Архив рубрики &#39;"
572
 
573
+ #: breadcrumb_navxt_class.php:246
574
  msgid "Archive by tag &#39;"
575
  msgstr "Архив метки &#39;"
576
 
577
+ #: breadcrumb_navxt_class.php:249
578
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
579
  msgstr "<a title=\"Перейти к архиву за %title%.\" href=\"%link%\">"
580
 
581
+ #: breadcrumb_navxt_class.php:488
582
  msgid "Untagged"
583
  msgstr "Без меток"
 
languages/breadcrumb_navxt-sv_SE.mo CHANGED
Binary file
languages/breadcrumb_navxt-sv_SE.po CHANGED
@@ -1,9 +1,9 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-27 19:53-0600\n"
6
- "PO-Revision-Date: 2009-07-28 12:12+0100\n"
7
  "Last-Translator: Patrik Spathon <patrik@patrikspathon.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -14,724 +14,542 @@ msgstr ""
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
- #: C:\Users\John\Documents\Aptana
18
- #: Studio\Breadcrumb
19
- #: NavXT\trunk/breadcrumb_navxt_admin.php:145
20
  msgid "Insufficient privileges to proceed."
21
  msgstr "Otillräcklig privilegier för att fortsätta."
22
 
23
- #: C:\Users\John\Documents\Aptana
24
- #: Studio\Breadcrumb
25
- #: NavXT\trunk/breadcrumb_navxt_admin.php:201
26
- #: NavXT\trunk/breadcrumb_navxt_class.php:214
27
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
28
  msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
29
 
30
- #: C:\Users\John\Documents\Aptana
31
- #: Studio\Breadcrumb
32
- #: NavXT\trunk/breadcrumb_navxt_admin.php:537
33
  msgid "Settings"
34
  msgstr "Inställningar"
35
 
36
- #: C:\Users\John\Documents\Aptana
37
- #: Studio\Breadcrumb
38
- #: NavXT\trunk/breadcrumb_navxt_admin.php:580
39
- #: NavXT\trunk/breadcrumb_navxt_admin.php:617
40
- #: NavXT\trunk/breadcrumb_navxt_admin.php:793
41
  msgid "Breadcrumb NavXT Settings"
42
  msgstr "Breadcrumb NavXT Inställningar"
43
 
44
- #: C:\Users\John\Documents\Aptana
45
- #: Studio\Breadcrumb
46
- #: NavXT\trunk/breadcrumb_navxt_admin.php:619
47
  #, php-format
48
  msgid "Get help with \"%s\""
49
  msgstr "Få hjälp med \"%s\""
50
 
51
- #: C:\Users\John\Documents\Aptana
52
- #: Studio\Breadcrumb
53
- #: NavXT\trunk/breadcrumb_navxt_admin.php:631
54
  #, php-format
55
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
56
  msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
57
 
58
- #: C:\Users\John\Documents\Aptana
59
- #: Studio\Breadcrumb
60
- #: NavXT\trunk/breadcrumb_navxt_admin.php:632
61
  msgid "Go to the Breadcrumb NavXT online documentation"
62
  msgstr "Gå till Breadcrumb NavXT online dokumentation"
63
 
64
- #: C:\Users\John\Documents\Aptana
65
- #: Studio\Breadcrumb
66
- #: NavXT\trunk/breadcrumb_navxt_admin.php:687
67
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
68
  msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med standardvärden. Är du säker på att du vill fortsätta?"
69
 
70
- #: C:\Users\John\Documents\Aptana
71
- #: Studio\Breadcrumb
72
- #: NavXT\trunk/breadcrumb_navxt_admin.php:690
73
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
74
  msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med importerade värden. Är du säker på att du vill fortsätta?"
75
 
76
- #: C:\Users\John\Documents\Aptana
77
- #: Studio\Breadcrumb
78
- #: NavXT\trunk/breadcrumb_navxt_admin.php:743
79
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1293
80
  msgid "Import"
81
  msgstr "Importera"
82
 
83
- #: C:\Users\John\Documents\Aptana
84
- #: Studio\Breadcrumb
85
- #: NavXT\trunk/breadcrumb_navxt_admin.php:743
86
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1294
87
  msgid "Export"
88
  msgstr "Exportera"
89
 
90
- #: C:\Users\John\Documents\Aptana
91
- #: Studio\Breadcrumb
92
- #: NavXT\trunk/breadcrumb_navxt_admin.php:743
93
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1295
94
  msgid "Reset"
95
  msgstr "Återställ"
96
 
97
- #: C:\Users\John\Documents\Aptana
98
- #: Studio\Breadcrumb
99
- #: NavXT\trunk/breadcrumb_navxt_admin.php:803
100
  msgid "General"
101
  msgstr "Allmänt"
102
 
103
- #: C:\Users\John\Documents\Aptana
104
- #: Studio\Breadcrumb
105
- #: NavXT\trunk/breadcrumb_navxt_admin.php:807
106
  msgid "Breadcrumb Separator"
107
  msgstr "Breadcrumb separator"
108
 
109
- #: C:\Users\John\Documents\Aptana
110
- #: Studio\Breadcrumb
111
- #: NavXT\trunk/breadcrumb_navxt_admin.php:811
112
  msgid "Placed in between each breadcrumb."
113
  msgstr "Placeras i mellan varje breadcrumb."
114
 
115
- #: C:\Users\John\Documents\Aptana
116
- #: Studio\Breadcrumb
117
- #: NavXT\trunk/breadcrumb_navxt_admin.php:816
118
  msgid "Breadcrumb Max Title Length"
119
  msgstr "Breadcrumb max titel längd"
120
 
121
- #: C:\Users\John\Documents\Aptana
122
- #: Studio\Breadcrumb
123
- #: NavXT\trunk/breadcrumb_navxt_admin.php:824
124
  msgid "Home Breadcrumb"
125
  msgstr "Hem Breadcrumb"
126
 
127
- #: C:\Users\John\Documents\Aptana
128
- #: Studio\Breadcrumb
129
- #: NavXT\trunk/breadcrumb_navxt_admin.php:829
130
  msgid "Place the home breadcrumb in the trail."
131
  msgstr "Placera hem breadcrumb i spåret."
132
 
133
- #: C:\Users\John\Documents\Aptana
134
- #: Studio\Breadcrumb
135
- #: NavXT\trunk/breadcrumb_navxt_admin.php:834
136
  msgid "Home Title: "
137
  msgstr "Hem titel: "
138
 
139
- #: C:\Users\John\Documents\Aptana
140
- #: Studio\Breadcrumb
141
- #: NavXT\trunk/breadcrumb_navxt_admin.php:843
142
  msgid "Blog Breadcrumb"
143
  msgstr "Blogg breadcrumb"
144
 
145
- #: C:\Users\John\Documents\Aptana
146
- #: Studio\Breadcrumb
147
- #: NavXT\trunk/breadcrumb_navxt_admin.php:848
148
  msgid "Place the blog breadcrumb in the trail."
149
  msgstr "Placera blogg breadcrumb i spåret."
150
 
151
- #: C:\Users\John\Documents\Aptana
152
- #: Studio\Breadcrumb
153
- #: NavXT\trunk/breadcrumb_navxt_admin.php:854
154
  msgid "Home Prefix"
155
  msgstr "Hem Prefix"
156
 
157
- #: C:\Users\John\Documents\Aptana
158
- #: Studio\Breadcrumb
159
- #: NavXT\trunk/breadcrumb_navxt_admin.php:862
160
  msgid "Home Suffix"
161
  msgstr "hem Suffix"
162
 
163
- #: C:\Users\John\Documents\Aptana
164
- #: Studio\Breadcrumb
165
- #: NavXT\trunk/breadcrumb_navxt_admin.php:870
166
  msgid "Home Anchor"
167
  msgstr "Hem Länk "
168
 
169
- #: C:\Users\John\Documents\Aptana
170
- #: Studio\Breadcrumb
171
- #: NavXT\trunk/breadcrumb_navxt_admin.php:874
172
  msgid "The anchor template for the home breadcrumb."
173
  msgstr "Länk mall för hem breadcrumb."
174
 
175
- #: C:\Users\John\Documents\Aptana
176
- #: Studio\Breadcrumb
177
- #: NavXT\trunk/breadcrumb_navxt_admin.php:879
178
  msgid "Blog Anchor"
179
  msgstr "Blogg länk"
180
 
181
- #: C:\Users\John\Documents\Aptana
182
- #: Studio\Breadcrumb
183
- #: NavXT\trunk/breadcrumb_navxt_admin.php:883
184
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
185
  msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
186
 
187
- #: C:\Users\John\Documents\Aptana
188
- #: Studio\Breadcrumb
189
- #: NavXT\trunk/breadcrumb_navxt_admin.php:889
190
  msgid "Current Item"
191
  msgstr "Nuvarande punkt"
192
 
193
- #: C:\Users\John\Documents\Aptana
194
- #: Studio\Breadcrumb
195
- #: NavXT\trunk/breadcrumb_navxt_admin.php:893
196
  msgid "Link Current Item"
197
  msgstr "Länk Nuvarande punkt"
198
 
199
- #: C:\Users\John\Documents\Aptana
200
- #: Studio\Breadcrumb
201
- #: NavXT\trunk/breadcrumb_navxt_admin.php:898
202
  msgid "Yes"
203
  msgstr "Ja"
204
 
205
- #: C:\Users\John\Documents\Aptana
206
- #: Studio\Breadcrumb
207
- #: NavXT\trunk/breadcrumb_navxt_admin.php:904
208
  msgid "Current Item Prefix"
209
  msgstr "Nuvarande punkt Prefix"
210
 
211
- #: C:\Users\John\Documents\Aptana
212
- #: Studio\Breadcrumb
213
- #: NavXT\trunk/breadcrumb_navxt_admin.php:908
214
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
215
  msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
216
 
217
- #: C:\Users\John\Documents\Aptana
218
- #: Studio\Breadcrumb
219
- #: NavXT\trunk/breadcrumb_navxt_admin.php:913
220
  msgid "Current Item Suffix"
221
  msgstr "Nuvarande punkt Suffix"
222
 
223
- #: C:\Users\John\Documents\Aptana
224
- #: Studio\Breadcrumb
225
- #: NavXT\trunk/breadcrumb_navxt_admin.php:917
226
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
227
  msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
228
 
229
- #: C:\Users\John\Documents\Aptana
230
- #: Studio\Breadcrumb
231
- #: NavXT\trunk/breadcrumb_navxt_admin.php:922
232
  msgid "Current Item Anchor"
233
  msgstr "Nuvarande punkt Länk"
234
 
235
- #: C:\Users\John\Documents\Aptana
236
- #: Studio\Breadcrumb
237
- #: NavXT\trunk/breadcrumb_navxt_admin.php:926
238
  msgid "The anchor template for current item breadcrumbs."
239
  msgstr "Länk mall för nuvarande punkt breadcrumbs."
240
 
241
- #: C:\Users\John\Documents\Aptana
242
- #: Studio\Breadcrumb
243
- #: NavXT\trunk/breadcrumb_navxt_admin.php:931
244
  msgid "Paged Breadcrumb"
245
  msgstr ""
246
 
247
- #: C:\Users\John\Documents\Aptana
248
- #: Studio\Breadcrumb
249
- #: NavXT\trunk/breadcrumb_navxt_admin.php:936
250
  msgid "Include the paged breadcrumb in the breadcrumb trail."
251
  msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
252
 
253
- #: C:\Users\John\Documents\Aptana
254
- #: Studio\Breadcrumb
255
- #: NavXT\trunk/breadcrumb_navxt_admin.php:938
256
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
257
  msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
258
 
259
- #: C:\Users\John\Documents\Aptana
260
- #: Studio\Breadcrumb
261
- #: NavXT\trunk/breadcrumb_navxt_admin.php:943
262
  msgid "Paged Prefix"
263
  msgstr ""
264
 
265
- #: C:\Users\John\Documents\Aptana
266
- #: Studio\Breadcrumb
267
- #: NavXT\trunk/breadcrumb_navxt_admin.php:951
268
  msgid "Paged Suffix"
269
  msgstr ""
270
 
271
- #: C:\Users\John\Documents\Aptana
272
- #: Studio\Breadcrumb
273
- #: NavXT\trunk/breadcrumb_navxt_admin.php:960
274
  msgid "Posts &amp; Pages"
275
  msgstr "Inlägg &amp; Sidor"
276
 
277
- #: C:\Users\John\Documents\Aptana
278
- #: Studio\Breadcrumb
279
- #: NavXT\trunk/breadcrumb_navxt_admin.php:964
280
  msgid "Post Prefix"
281
  msgstr "Inläggs Prefix"
282
 
283
- #: C:\Users\John\Documents\Aptana
284
- #: Studio\Breadcrumb
285
- #: NavXT\trunk/breadcrumb_navxt_admin.php:972
286
  msgid "Post Suffix"
287
  msgstr "Inläggs Suffix"
288
 
289
- #: C:\Users\John\Documents\Aptana
290
- #: Studio\Breadcrumb
291
- #: NavXT\trunk/breadcrumb_navxt_admin.php:980
292
  msgid "Post Anchor"
293
  msgstr "Inläggs Länk"
294
 
295
- #: C:\Users\John\Documents\Aptana
296
- #: Studio\Breadcrumb
297
- #: NavXT\trunk/breadcrumb_navxt_admin.php:984
298
  msgid "The anchor template for post breadcrumbs."
299
  msgstr "Länk mall för inläggs breadcrumbs."
300
 
301
- #: C:\Users\John\Documents\Aptana
302
- #: Studio\Breadcrumb
303
- #: NavXT\trunk/breadcrumb_navxt_admin.php:989
304
  msgid "Post Taxonomy Display"
305
  msgstr "Inläggs taxonomi visning"
306
 
307
- #: C:\Users\John\Documents\Aptana
308
- #: Studio\Breadcrumb
309
- #: NavXT\trunk/breadcrumb_navxt_admin.php:994
310
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
311
  msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
312
 
313
- #: C:\Users\John\Documents\Aptana
314
- #: Studio\Breadcrumb
315
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1000
316
  msgid "Post Taxonomy"
317
  msgstr "Inäggs taxonomi"
318
 
319
- #: C:\Users\John\Documents\Aptana
320
- #: Studio\Breadcrumb
321
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1005
322
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1060
323
  msgid "Categories"
324
  msgstr "Kategorier"
325
 
326
- #: C:\Users\John\Documents\Aptana
327
- #: Studio\Breadcrumb
328
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1010
329
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1110
 
 
330
  msgid "Tags"
331
  msgstr "Taggar"
332
 
333
- #: C:\Users\John\Documents\Aptana
334
- #: Studio\Breadcrumb
335
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1013
336
  msgid "The taxonomy which the breadcrumb trail will show."
337
  msgstr "Den taxonomi som breadcrumb kommer att visa."
338
 
339
- #: C:\Users\John\Documents\Aptana
340
- #: Studio\Breadcrumb
341
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1018
342
  msgid "Page Prefix"
343
  msgstr "Sido Prefix"
344
 
345
- #: C:\Users\John\Documents\Aptana
346
- #: Studio\Breadcrumb
347
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1026
348
  msgid "Page Suffix"
349
  msgstr "Sido Suffix"
350
 
351
- #: C:\Users\John\Documents\Aptana
352
- #: Studio\Breadcrumb
353
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1034
354
  msgid "Page Anchor"
355
  msgstr "Sido Länk"
356
 
357
- #: C:\Users\John\Documents\Aptana
358
- #: Studio\Breadcrumb
359
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1038
360
  msgid "The anchor template for page breadcrumbs."
361
  msgstr "Länk mall för sido breadcrumbs."
362
 
363
- #: C:\Users\John\Documents\Aptana
364
- #: Studio\Breadcrumb
365
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1043
366
  msgid "Attachment Prefix"
367
  msgstr ""
368
 
369
- #: C:\Users\John\Documents\Aptana
370
- #: Studio\Breadcrumb
371
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1051
372
  msgid "Attachment Suffix"
373
  msgstr ""
374
 
375
- #: C:\Users\John\Documents\Aptana
376
- #: Studio\Breadcrumb
377
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1064
378
  msgid "Category Prefix"
379
  msgstr "Kategori prefix"
380
 
381
- #: C:\Users\John\Documents\Aptana
382
- #: Studio\Breadcrumb
383
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1068
384
  msgid "Applied before the anchor on all category breadcrumbs."
385
  msgstr "Tillämpad innan länken på alla kategori breadcrumb"
386
 
387
- #: C:\Users\John\Documents\Aptana
388
- #: Studio\Breadcrumb
389
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1073
390
  msgid "Category Suffix"
391
  msgstr "Kategori Suffix"
392
 
393
- #: C:\Users\John\Documents\Aptana
394
- #: Studio\Breadcrumb
395
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1077
396
  msgid "Applied after the anchor on all category breadcrumbs."
397
  msgstr "Tillämpad efter länken på alla kategori breadcrumb"
398
 
399
- #: C:\Users\John\Documents\Aptana
400
- #: Studio\Breadcrumb
401
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1082
402
  msgid "Category Anchor"
403
  msgstr "Kategori länk"
404
 
405
- #: C:\Users\John\Documents\Aptana
406
- #: Studio\Breadcrumb
407
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1086
408
  msgid "The anchor template for category breadcrumbs."
409
  msgstr "länk mall för kategori breadcrumbs"
410
 
411
- #: C:\Users\John\Documents\Aptana
412
- #: Studio\Breadcrumb
413
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1091
414
  msgid "Archive by Category Prefix"
415
  msgstr "Arkiv av kategori prefix"
416
 
417
- #: C:\Users\John\Documents\Aptana
418
- #: Studio\Breadcrumb
419
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1095
420
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
421
  msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
422
 
423
- #: C:\Users\John\Documents\Aptana
424
- #: Studio\Breadcrumb
425
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1100
426
  msgid "Archive by Category Suffix"
427
  msgstr "Arkiv av Kategori Suffix"
428
 
429
- #: C:\Users\John\Documents\Aptana
430
- #: Studio\Breadcrumb
431
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1104
432
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
433
  msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
434
 
435
- #: C:\Users\John\Documents\Aptana
436
- #: Studio\Breadcrumb
437
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1114
438
  msgid "Tag Prefix"
439
  msgstr "Tagg Prefix"
440
 
441
- #: C:\Users\John\Documents\Aptana
442
- #: Studio\Breadcrumb
443
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1118
444
  msgid "Applied before the anchor on all tag breadcrumbs."
445
  msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
446
 
447
- #: C:\Users\John\Documents\Aptana
448
- #: Studio\Breadcrumb
449
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1123
450
  msgid "Tag Suffix"
451
  msgstr "Tag Suffix"
452
 
453
- #: C:\Users\John\Documents\Aptana
454
- #: Studio\Breadcrumb
455
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1127
456
  msgid "Applied after the anchor on all tag breadcrumbs."
457
  msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
458
 
459
- #: C:\Users\John\Documents\Aptana
460
- #: Studio\Breadcrumb
461
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1132
462
  msgid "Tag Anchor"
463
  msgstr "Tagg Länk"
464
 
465
- #: C:\Users\John\Documents\Aptana
466
- #: Studio\Breadcrumb
467
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1136
468
  msgid "The anchor template for tag breadcrumbs."
469
  msgstr "Länk mall för tagg breadcrumbs."
470
 
471
- #: C:\Users\John\Documents\Aptana
472
- #: Studio\Breadcrumb
473
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1141
474
  msgid "Archive by Tag Prefix"
475
  msgstr "Arkiv av Tagg Prefix"
476
 
477
- #: C:\Users\John\Documents\Aptana
478
- #: Studio\Breadcrumb
479
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1145
480
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
481
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
482
 
483
- #: C:\Users\John\Documents\Aptana
484
- #: Studio\Breadcrumb
485
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1150
486
  msgid "Archive by Tag Suffix"
487
  msgstr "Arkiv av Tagg Suffix"
488
 
489
- #: C:\Users\John\Documents\Aptana
490
- #: Studio\Breadcrumb
491
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1154
492
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
493
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
494
 
495
- #: C:\Users\John\Documents\Aptana
496
- #: Studio\Breadcrumb
497
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "Date Archives"
499
  msgstr "Datum Arkiv"
500
 
501
- #: C:\Users\John\Documents\Aptana
502
- #: Studio\Breadcrumb
503
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1164
504
  msgid "Archive by Date Prefix"
505
  msgstr "Arkiv av datum Prefix"
506
 
507
- #: C:\Users\John\Documents\Aptana
508
- #: Studio\Breadcrumb
509
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1168
510
  msgid "Applied before the anchor on all date breadcrumbs."
511
  msgstr "Tillämpad innan länken på alla datum breadcrumbs."
512
 
513
- #: C:\Users\John\Documents\Aptana
514
- #: Studio\Breadcrumb
515
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1173
516
  msgid "Archive by Date Suffix"
517
  msgstr "Arkiv av daum suffix"
518
 
519
- #: C:\Users\John\Documents\Aptana
520
- #: Studio\Breadcrumb
521
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1177
522
  msgid "Applied after the anchor on all date breadcrumbs."
523
  msgstr "Tillämpad efter länken på alla datum breadcrumbs."
524
 
525
- #: C:\Users\John\Documents\Aptana
526
- #: Studio\Breadcrumb
527
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1182
528
  msgid "Date Anchor"
529
  msgstr "Datum länk"
530
 
531
- #: C:\Users\John\Documents\Aptana
532
- #: Studio\Breadcrumb
533
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1186
534
  msgid "The anchor template for date breadcrumbs."
535
  msgstr "Länk mall för datum breadcrumbs."
536
 
537
- #: C:\Users\John\Documents\Aptana
538
- #: Studio\Breadcrumb
539
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1192
540
  msgid "Miscellaneous"
541
  msgstr "Diverse"
542
 
543
- #: C:\Users\John\Documents\Aptana
544
- #: Studio\Breadcrumb
545
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1196
546
  msgid "Author Prefix"
547
  msgstr "Författar Prefix"
548
 
549
- #: C:\Users\John\Documents\Aptana
550
- #: Studio\Breadcrumb
551
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1204
552
  msgid "Author Suffix"
553
  msgstr "Författar Suffix"
554
 
555
- #: C:\Users\John\Documents\Aptana
556
- #: Studio\Breadcrumb
557
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1212
558
  msgid "Author Display Format"
559
  msgstr "Författar visnings format"
560
 
561
- #: C:\Users\John\Documents\Aptana
562
- #: Studio\Breadcrumb
563
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1218
564
  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."
565
  msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
566
 
567
- #: C:\Users\John\Documents\Aptana
568
- #: Studio\Breadcrumb
569
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1223
570
  msgid "Search Prefix"
571
  msgstr "Sök Prefix"
572
 
573
- #: C:\Users\John\Documents\Aptana
574
- #: Studio\Breadcrumb
575
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1231
576
  msgid "Search Suffix"
577
  msgstr "Sök Suffix"
578
 
579
- #: C:\Users\John\Documents\Aptana
580
- #: Studio\Breadcrumb
581
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1239
582
  msgid "Search Anchor"
583
  msgstr "Sök Länk"
584
 
585
- #: C:\Users\John\Documents\Aptana
586
- #: Studio\Breadcrumb
587
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1243
588
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
589
  msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
590
 
591
- #: C:\Users\John\Documents\Aptana
592
- #: Studio\Breadcrumb
593
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1248
594
  msgid "404 Title"
595
  msgstr "404 Titel"
596
 
597
- #: C:\Users\John\Documents\Aptana
598
- #: Studio\Breadcrumb
599
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1256
600
  msgid "404 Prefix"
601
  msgstr "404 Prefix"
602
 
603
- #: C:\Users\John\Documents\Aptana
604
- #: Studio\Breadcrumb
605
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1264
606
  msgid "404 Suffix"
607
  msgstr "404 Suffix"
608
 
609
- #: C:\Users\John\Documents\Aptana
610
- #: Studio\Breadcrumb
611
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1273
612
  msgid "Save Changes"
613
  msgstr "Spara ändringar"
614
 
615
- #: C:\Users\John\Documents\Aptana
616
- #: Studio\Breadcrumb
617
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1279
618
  msgid "Import/Export/Reset Settings"
619
  msgstr "Importera/Exportera/Återställ inställningar"
620
 
621
- #: C:\Users\John\Documents\Aptana
622
- #: Studio\Breadcrumb
623
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1280
624
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
625
  msgstr "Importera Breadcrumb NavXT inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard Breadcrumb NavXT inställningar."
626
 
627
- #: C:\Users\John\Documents\Aptana
628
- #: Studio\Breadcrumb
629
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1284
630
  msgid "Settings File"
631
  msgstr "Inställnings fil"
632
 
633
- #: C:\Users\John\Documents\Aptana
634
- #: Studio\Breadcrumb
635
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1288
636
  msgid "Select a XML settings file to upload and import settings from."
637
  msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
638
 
639
- #: C:\Users\John\Documents\Aptana
640
- #: Studio\Breadcrumb
641
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1424
642
  msgid "Importing settings from file failed."
643
  msgstr "Importering av inställningar från fil misslyckades."
644
 
645
- #: C:\Users\John\Documents\Aptana
646
- #: Studio\Breadcrumb
647
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1434
648
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
649
  msgstr "Breadcrumb NavXT inställningarna importerades framgångsrikt från fil."
650
 
651
- #: C:\Users\John\Documents\Aptana
652
- #: Studio\Breadcrumb
653
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1444
654
  msgid "The Breadcrumb NavXT settings were reset to the default values."
655
  msgstr "Breadcrumb NavXT inställningarna återställdes till standardvärdena"
656
 
657
- #: C:\Users\John\Documents\Aptana
658
- #: Studio\Breadcrumb
659
- #: NavXT\trunk/breadcrumb_navxt_class.php:147
660
  msgid "Blog"
661
  msgstr "Blogg"
662
 
663
- #: C:\Users\John\Documents\Aptana
664
- #: Studio\Breadcrumb
665
- #: NavXT\trunk/breadcrumb_navxt_class.php:149
666
- #: NavXT\trunk/breadcrumb_navxt_class.php:153
667
- #: NavXT\trunk/breadcrumb_navxt_class.php:177
668
- #: NavXT\trunk/breadcrumb_navxt_class.php:191
669
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
670
  msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
671
 
672
- #: C:\Users\John\Documents\Aptana
673
- #: Studio\Breadcrumb
674
- #: NavXT\trunk/breadcrumb_navxt_class.php:166
675
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
676
  msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
677
 
678
- #: C:\Users\John\Documents\Aptana
679
- #: Studio\Breadcrumb
680
- #: NavXT\trunk/breadcrumb_navxt_class.php:207
681
  msgid "404"
682
  msgstr "404"
683
 
684
- #: C:\Users\John\Documents\Aptana
685
- #: Studio\Breadcrumb
686
- #: NavXT\trunk/breadcrumb_navxt_class.php:210
687
  msgid "Search results for &#39;"
688
  msgstr "Sök resultat för &#39;"
689
 
690
- #: C:\Users\John\Documents\Aptana
691
- #: Studio\Breadcrumb
692
- #: NavXT\trunk/breadcrumb_navxt_class.php:221
693
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
694
  msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
695
 
696
- #: C:\Users\John\Documents\Aptana
697
- #: Studio\Breadcrumb
698
- #: NavXT\trunk/breadcrumb_navxt_class.php:224
699
  msgid "Articles by: "
700
  msgstr "Artiklar av:"
701
 
702
- #: C:\Users\John\Documents\Aptana
703
- #: Studio\Breadcrumb
704
- #: NavXT\trunk/breadcrumb_navxt_class.php:228
705
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
706
  msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
707
 
708
- #: C:\Users\John\Documents\Aptana
709
- #: Studio\Breadcrumb
710
- #: NavXT\trunk/breadcrumb_navxt_class.php:237
711
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
712
  msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
713
 
714
- #: C:\Users\John\Documents\Aptana
715
- #: Studio\Breadcrumb
716
- #: NavXT\trunk/breadcrumb_navxt_class.php:240
717
  msgid "Archive by category &#39;"
718
  msgstr "Arkiv av kategorin &#39;"
719
 
720
- #: C:\Users\John\Documents\Aptana
721
- #: Studio\Breadcrumb
722
- #: NavXT\trunk/breadcrumb_navxt_class.php:244
723
  msgid "Archive by tag &#39;"
724
  msgstr "Arkiv av tagg &#39;"
725
 
726
- #: C:\Users\John\Documents\Aptana
727
- #: Studio\Breadcrumb
728
- #: NavXT\trunk/breadcrumb_navxt_class.php:247
729
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
730
  msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
731
 
732
- #: C:\Users\John\Documents\Aptana
733
- #: Studio\Breadcrumb
734
- #: NavXT\trunk/breadcrumb_navxt_class.php:477
735
  msgid "Untagged"
736
  msgstr "Otaggad"
737
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
5
+ "POT-Creation-Date: 2009-12-05 22:23+0000\n"
6
+ "PO-Revision-Date: 2009-12-09 14:57+0100\n"
7
  "Last-Translator: Patrik Spathon <patrik@patrikspathon.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
16
 
17
+ #: breadcrumb_navxt_admin.php:134
 
 
18
  msgid "Insufficient privileges to proceed."
19
  msgstr "Otillräcklig privilegier för att fortsätta."
20
 
21
+ #: breadcrumb_navxt_admin.php:190
22
+ #: breadcrumb_navxt_class.php:216
 
 
23
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
24
  msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
25
 
26
+ #: breadcrumb_navxt_admin.php:540
 
 
27
  msgid "Settings"
28
  msgstr "Inställningar"
29
 
30
+ #: breadcrumb_navxt_admin.php:594
31
+ #: breadcrumb_navxt_admin.php:629
32
+ #: breadcrumb_navxt_admin.php:802
 
 
33
  msgid "Breadcrumb NavXT Settings"
34
  msgstr "Breadcrumb NavXT Inställningar"
35
 
36
+ #: breadcrumb_navxt_admin.php:630
 
 
37
  #, php-format
38
  msgid "Get help with \"%s\""
39
  msgstr "Få hjälp med \"%s\""
40
 
41
+ #: breadcrumb_navxt_admin.php:641
 
 
42
  #, php-format
43
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
44
  msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
45
 
46
+ #: breadcrumb_navxt_admin.php:642
 
 
47
  msgid "Go to the Breadcrumb NavXT online documentation"
48
  msgstr "Gå till Breadcrumb NavXT online dokumentation"
49
 
50
+ #: breadcrumb_navxt_admin.php:697
 
 
51
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
52
  msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med standardvärden. Är du säker på att du vill fortsätta?"
53
 
54
+ #: breadcrumb_navxt_admin.php:700
 
 
55
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
56
  msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med importerade värden. Är du säker på att du vill fortsätta?"
57
 
58
+ #: breadcrumb_navxt_admin.php:753
59
+ #: breadcrumb_navxt_admin.php:1386
 
 
60
  msgid "Import"
61
  msgstr "Importera"
62
 
63
+ #: breadcrumb_navxt_admin.php:753
64
+ #: breadcrumb_navxt_admin.php:1387
 
 
65
  msgid "Export"
66
  msgstr "Exportera"
67
 
68
+ #: breadcrumb_navxt_admin.php:753
69
+ #: breadcrumb_navxt_admin.php:1388
 
 
70
  msgid "Reset"
71
  msgstr "Återställ"
72
 
73
+ #: breadcrumb_navxt_admin.php:812
 
 
74
  msgid "General"
75
  msgstr "Allmänt"
76
 
77
+ #: breadcrumb_navxt_admin.php:816
 
 
78
  msgid "Breadcrumb Separator"
79
  msgstr "Breadcrumb separator"
80
 
81
+ #: breadcrumb_navxt_admin.php:820
 
 
82
  msgid "Placed in between each breadcrumb."
83
  msgstr "Placeras i mellan varje breadcrumb."
84
 
85
+ #: breadcrumb_navxt_admin.php:825
 
 
86
  msgid "Breadcrumb Max Title Length"
87
  msgstr "Breadcrumb max titel längd"
88
 
89
+ #: breadcrumb_navxt_admin.php:833
 
 
90
  msgid "Home Breadcrumb"
91
  msgstr "Hem Breadcrumb"
92
 
93
+ #: breadcrumb_navxt_admin.php:838
 
 
94
  msgid "Place the home breadcrumb in the trail."
95
  msgstr "Placera hem breadcrumb i spåret."
96
 
97
+ #: breadcrumb_navxt_admin.php:843
 
 
98
  msgid "Home Title: "
99
  msgstr "Hem titel: "
100
 
101
+ #: breadcrumb_navxt_admin.php:852
 
 
102
  msgid "Blog Breadcrumb"
103
  msgstr "Blogg breadcrumb"
104
 
105
+ #: breadcrumb_navxt_admin.php:857
 
 
106
  msgid "Place the blog breadcrumb in the trail."
107
  msgstr "Placera blogg breadcrumb i spåret."
108
 
109
+ #: breadcrumb_navxt_admin.php:863
 
 
110
  msgid "Home Prefix"
111
  msgstr "Hem Prefix"
112
 
113
+ #: breadcrumb_navxt_admin.php:871
 
 
114
  msgid "Home Suffix"
115
  msgstr "hem Suffix"
116
 
117
+ #: breadcrumb_navxt_admin.php:879
 
 
118
  msgid "Home Anchor"
119
  msgstr "Hem Länk "
120
 
121
+ #: breadcrumb_navxt_admin.php:883
 
 
122
  msgid "The anchor template for the home breadcrumb."
123
  msgstr "Länk mall för hem breadcrumb."
124
 
125
+ #: breadcrumb_navxt_admin.php:888
 
 
126
  msgid "Blog Anchor"
127
  msgstr "Blogg länk"
128
 
129
+ #: breadcrumb_navxt_admin.php:892
 
 
130
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
131
  msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
132
 
133
+ #: breadcrumb_navxt_admin.php:898
 
 
134
  msgid "Current Item"
135
  msgstr "Nuvarande punkt"
136
 
137
+ #: breadcrumb_navxt_admin.php:902
 
 
138
  msgid "Link Current Item"
139
  msgstr "Länk Nuvarande punkt"
140
 
141
+ #: breadcrumb_navxt_admin.php:907
 
 
142
  msgid "Yes"
143
  msgstr "Ja"
144
 
145
+ #: breadcrumb_navxt_admin.php:913
 
 
146
  msgid "Current Item Prefix"
147
  msgstr "Nuvarande punkt Prefix"
148
 
149
+ #: breadcrumb_navxt_admin.php:917
 
 
150
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
151
  msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
152
 
153
+ #: breadcrumb_navxt_admin.php:922
 
 
154
  msgid "Current Item Suffix"
155
  msgstr "Nuvarande punkt Suffix"
156
 
157
+ #: breadcrumb_navxt_admin.php:926
 
 
158
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
159
  msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
160
 
161
+ #: breadcrumb_navxt_admin.php:931
 
 
162
  msgid "Current Item Anchor"
163
  msgstr "Nuvarande punkt Länk"
164
 
165
+ #: breadcrumb_navxt_admin.php:935
 
 
166
  msgid "The anchor template for current item breadcrumbs."
167
  msgstr "Länk mall för nuvarande punkt breadcrumbs."
168
 
169
+ #: breadcrumb_navxt_admin.php:940
 
 
170
  msgid "Paged Breadcrumb"
171
  msgstr ""
172
 
173
+ #: breadcrumb_navxt_admin.php:945
 
 
174
  msgid "Include the paged breadcrumb in the breadcrumb trail."
175
  msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
176
 
177
+ #: breadcrumb_navxt_admin.php:947
 
 
178
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
179
  msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
180
 
181
+ #: breadcrumb_navxt_admin.php:952
 
 
182
  msgid "Paged Prefix"
183
  msgstr ""
184
 
185
+ #: breadcrumb_navxt_admin.php:960
 
 
186
  msgid "Paged Suffix"
187
  msgstr ""
188
 
189
+ #: breadcrumb_navxt_admin.php:969
 
 
190
  msgid "Posts &amp; Pages"
191
  msgstr "Inlägg &amp; Sidor"
192
 
193
+ #: breadcrumb_navxt_admin.php:973
 
 
194
  msgid "Post Prefix"
195
  msgstr "Inläggs Prefix"
196
 
197
+ #: breadcrumb_navxt_admin.php:981
 
 
198
  msgid "Post Suffix"
199
  msgstr "Inläggs Suffix"
200
 
201
+ #: breadcrumb_navxt_admin.php:989
 
 
202
  msgid "Post Anchor"
203
  msgstr "Inläggs Länk"
204
 
205
+ #: breadcrumb_navxt_admin.php:993
 
 
206
  msgid "The anchor template for post breadcrumbs."
207
  msgstr "Länk mall för inläggs breadcrumbs."
208
 
209
+ #: breadcrumb_navxt_admin.php:998
 
 
210
  msgid "Post Taxonomy Display"
211
  msgstr "Inläggs taxonomi visning"
212
 
213
+ #: breadcrumb_navxt_admin.php:1003
 
 
214
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
215
  msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
216
 
217
+ #: breadcrumb_navxt_admin.php:1009
 
 
218
  msgid "Post Taxonomy"
219
  msgstr "Inäggs taxonomi"
220
 
221
+ #: breadcrumb_navxt_admin.php:1014
222
+ #: breadcrumb_navxt_admin.php:1091
 
 
223
  msgid "Categories"
224
  msgstr "Kategorier"
225
 
226
+ #: breadcrumb_navxt_admin.php:1019
227
+ msgid "Dates"
228
+ msgstr "Datum"
229
+
230
+ #: breadcrumb_navxt_admin.php:1024
231
+ #: breadcrumb_navxt_admin.php:1141
232
  msgid "Tags"
233
  msgstr "Taggar"
234
 
235
+ #: breadcrumb_navxt_admin.php:1044
 
 
236
  msgid "The taxonomy which the breadcrumb trail will show."
237
  msgstr "Den taxonomi som breadcrumb kommer att visa."
238
 
239
+ #: breadcrumb_navxt_admin.php:1049
 
 
240
  msgid "Page Prefix"
241
  msgstr "Sido Prefix"
242
 
243
+ #: breadcrumb_navxt_admin.php:1057
 
 
244
  msgid "Page Suffix"
245
  msgstr "Sido Suffix"
246
 
247
+ #: breadcrumb_navxt_admin.php:1065
 
 
248
  msgid "Page Anchor"
249
  msgstr "Sido Länk"
250
 
251
+ #: breadcrumb_navxt_admin.php:1069
 
 
252
  msgid "The anchor template for page breadcrumbs."
253
  msgstr "Länk mall för sido breadcrumbs."
254
 
255
+ #: breadcrumb_navxt_admin.php:1074
 
 
256
  msgid "Attachment Prefix"
257
  msgstr ""
258
 
259
+ #: breadcrumb_navxt_admin.php:1082
 
 
260
  msgid "Attachment Suffix"
261
  msgstr ""
262
 
263
+ #: breadcrumb_navxt_admin.php:1095
 
 
264
  msgid "Category Prefix"
265
  msgstr "Kategori prefix"
266
 
267
+ #: breadcrumb_navxt_admin.php:1099
 
 
268
  msgid "Applied before the anchor on all category breadcrumbs."
269
  msgstr "Tillämpad innan länken på alla kategori breadcrumb"
270
 
271
+ #: breadcrumb_navxt_admin.php:1104
 
 
272
  msgid "Category Suffix"
273
  msgstr "Kategori Suffix"
274
 
275
+ #: breadcrumb_navxt_admin.php:1108
 
 
276
  msgid "Applied after the anchor on all category breadcrumbs."
277
  msgstr "Tillämpad efter länken på alla kategori breadcrumb"
278
 
279
+ #: breadcrumb_navxt_admin.php:1113
 
 
280
  msgid "Category Anchor"
281
  msgstr "Kategori länk"
282
 
283
+ #: breadcrumb_navxt_admin.php:1117
 
 
284
  msgid "The anchor template for category breadcrumbs."
285
  msgstr "länk mall för kategori breadcrumbs"
286
 
287
+ #: breadcrumb_navxt_admin.php:1122
 
 
288
  msgid "Archive by Category Prefix"
289
  msgstr "Arkiv av kategori prefix"
290
 
291
+ #: breadcrumb_navxt_admin.php:1126
 
 
292
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
293
  msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
294
 
295
+ #: breadcrumb_navxt_admin.php:1131
 
 
296
  msgid "Archive by Category Suffix"
297
  msgstr "Arkiv av Kategori Suffix"
298
 
299
+ #: breadcrumb_navxt_admin.php:1135
 
 
300
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
301
  msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
302
 
303
+ #: breadcrumb_navxt_admin.php:1145
 
 
304
  msgid "Tag Prefix"
305
  msgstr "Tagg Prefix"
306
 
307
+ #: breadcrumb_navxt_admin.php:1149
 
 
308
  msgid "Applied before the anchor on all tag breadcrumbs."
309
  msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
310
 
311
+ #: breadcrumb_navxt_admin.php:1154
 
 
312
  msgid "Tag Suffix"
313
  msgstr "Tag Suffix"
314
 
315
+ #: breadcrumb_navxt_admin.php:1158
 
 
316
  msgid "Applied after the anchor on all tag breadcrumbs."
317
  msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
318
 
319
+ #: breadcrumb_navxt_admin.php:1163
 
 
320
  msgid "Tag Anchor"
321
  msgstr "Tagg Länk"
322
 
323
+ #: breadcrumb_navxt_admin.php:1167
 
 
324
  msgid "The anchor template for tag breadcrumbs."
325
  msgstr "Länk mall för tagg breadcrumbs."
326
 
327
+ #: breadcrumb_navxt_admin.php:1172
 
 
328
  msgid "Archive by Tag Prefix"
329
  msgstr "Arkiv av Tagg Prefix"
330
 
331
+ #: breadcrumb_navxt_admin.php:1176
 
 
332
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
333
  msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
334
 
335
+ #: breadcrumb_navxt_admin.php:1181
 
 
336
  msgid "Archive by Tag Suffix"
337
  msgstr "Arkiv av Tagg Suffix"
338
 
339
+ #: breadcrumb_navxt_admin.php:1185
 
 
340
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
341
  msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
342
 
343
+ #: breadcrumb_navxt_admin.php:1203
344
+ #, php-format
345
+ msgid "%s Prefix"
346
+ msgstr "%s Prefix"
347
+
348
+ #: breadcrumb_navxt_admin.php:1207
349
+ #, php-format
350
+ msgid "Applied before the anchor on all %s breadcrumbs."
351
+ msgstr "Tillämpad innan länken på alla %s breadcrumbs."
352
+
353
+ #: breadcrumb_navxt_admin.php:1212
354
+ #, php-format
355
+ msgid "%s Suffix"
356
+ msgstr "%s Suffix"
357
+
358
+ #: breadcrumb_navxt_admin.php:1216
359
+ #, php-format
360
+ msgid "Applied after the anchor on all %s breadcrumbs."
361
+ msgstr "Tillämpad efter länken på alla %s breadcrumbs."
362
+
363
+ #: breadcrumb_navxt_admin.php:1221
364
+ #, php-format
365
+ msgid "%s Anchor"
366
+ msgstr "%s Länk"
367
+
368
+ #: breadcrumb_navxt_admin.php:1225
369
+ #, php-format
370
+ msgid "The anchor template for %s breadcrumbs."
371
+ msgstr "Länk mall för %s breadcrumbs."
372
+
373
+ #: breadcrumb_navxt_admin.php:1230
374
+ #, php-format
375
+ msgid "Archive by %s Prefix"
376
+ msgstr "Arkiv av %s Prefix"
377
+
378
+ #: breadcrumb_navxt_admin.php:1234
379
+ #, php-format
380
+ msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
381
+ msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
382
+
383
+ #: breadcrumb_navxt_admin.php:1239
384
+ #, php-format
385
+ msgid "Archive by %s Suffix"
386
+ msgstr "Arkiv av %s Suffix"
387
+
388
+ #: breadcrumb_navxt_admin.php:1243
389
+ #, php-format
390
+ msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
391
+ msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
392
+
393
+ #: breadcrumb_navxt_admin.php:1253
394
  msgid "Date Archives"
395
  msgstr "Datum Arkiv"
396
 
397
+ #: breadcrumb_navxt_admin.php:1257
 
 
398
  msgid "Archive by Date Prefix"
399
  msgstr "Arkiv av datum Prefix"
400
 
401
+ #: breadcrumb_navxt_admin.php:1261
 
 
402
  msgid "Applied before the anchor on all date breadcrumbs."
403
  msgstr "Tillämpad innan länken på alla datum breadcrumbs."
404
 
405
+ #: breadcrumb_navxt_admin.php:1266
 
 
406
  msgid "Archive by Date Suffix"
407
  msgstr "Arkiv av daum suffix"
408
 
409
+ #: breadcrumb_navxt_admin.php:1270
 
 
410
  msgid "Applied after the anchor on all date breadcrumbs."
411
  msgstr "Tillämpad efter länken på alla datum breadcrumbs."
412
 
413
+ #: breadcrumb_navxt_admin.php:1275
 
 
414
  msgid "Date Anchor"
415
  msgstr "Datum länk"
416
 
417
+ #: breadcrumb_navxt_admin.php:1279
 
 
418
  msgid "The anchor template for date breadcrumbs."
419
  msgstr "Länk mall för datum breadcrumbs."
420
 
421
+ #: breadcrumb_navxt_admin.php:1285
 
 
422
  msgid "Miscellaneous"
423
  msgstr "Diverse"
424
 
425
+ #: breadcrumb_navxt_admin.php:1289
 
 
426
  msgid "Author Prefix"
427
  msgstr "Författar Prefix"
428
 
429
+ #: breadcrumb_navxt_admin.php:1297
 
 
430
  msgid "Author Suffix"
431
  msgstr "Författar Suffix"
432
 
433
+ #: breadcrumb_navxt_admin.php:1305
 
 
434
  msgid "Author Display Format"
435
  msgstr "Författar visnings format"
436
 
437
+ #: breadcrumb_navxt_admin.php:1311
 
 
438
  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."
439
  msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
440
 
441
+ #: breadcrumb_navxt_admin.php:1316
 
 
442
  msgid "Search Prefix"
443
  msgstr "Sök Prefix"
444
 
445
+ #: breadcrumb_navxt_admin.php:1324
 
 
446
  msgid "Search Suffix"
447
  msgstr "Sök Suffix"
448
 
449
+ #: breadcrumb_navxt_admin.php:1332
 
 
450
  msgid "Search Anchor"
451
  msgstr "Sök Länk"
452
 
453
+ #: breadcrumb_navxt_admin.php:1336
 
 
454
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
455
  msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
456
 
457
+ #: breadcrumb_navxt_admin.php:1341
 
 
458
  msgid "404 Title"
459
  msgstr "404 Titel"
460
 
461
+ #: breadcrumb_navxt_admin.php:1349
 
 
462
  msgid "404 Prefix"
463
  msgstr "404 Prefix"
464
 
465
+ #: breadcrumb_navxt_admin.php:1357
 
 
466
  msgid "404 Suffix"
467
  msgstr "404 Suffix"
468
 
469
+ #: breadcrumb_navxt_admin.php:1366
 
 
470
  msgid "Save Changes"
471
  msgstr "Spara ändringar"
472
 
473
+ #: breadcrumb_navxt_admin.php:1372
 
 
474
  msgid "Import/Export/Reset Settings"
475
  msgstr "Importera/Exportera/Återställ inställningar"
476
 
477
+ #: breadcrumb_navxt_admin.php:1373
 
 
478
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
479
  msgstr "Importera Breadcrumb NavXT inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard Breadcrumb NavXT inställningar."
480
 
481
+ #: breadcrumb_navxt_admin.php:1377
 
 
482
  msgid "Settings File"
483
  msgstr "Inställnings fil"
484
 
485
+ #: breadcrumb_navxt_admin.php:1381
 
 
486
  msgid "Select a XML settings file to upload and import settings from."
487
  msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
488
 
489
+ #: breadcrumb_navxt_admin.php:1518
 
 
490
  msgid "Importing settings from file failed."
491
  msgstr "Importering av inställningar från fil misslyckades."
492
 
493
+ #: breadcrumb_navxt_admin.php:1528
 
 
494
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
495
  msgstr "Breadcrumb NavXT inställningarna importerades framgångsrikt från fil."
496
 
497
+ #: breadcrumb_navxt_admin.php:1538
 
 
498
  msgid "The Breadcrumb NavXT settings were reset to the default values."
499
  msgstr "Breadcrumb NavXT inställningarna återställdes till standardvärdena"
500
 
501
+ #: breadcrumb_navxt_class.php:149
 
 
502
  msgid "Blog"
503
  msgstr "Blogg"
504
 
505
+ #: breadcrumb_navxt_class.php:151
506
+ #: breadcrumb_navxt_class.php:155
507
+ #: breadcrumb_navxt_class.php:179
508
+ #: breadcrumb_navxt_class.php:193
 
 
509
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
510
  msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
511
 
512
+ #: breadcrumb_navxt_class.php:168
 
 
513
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
514
  msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
515
 
516
+ #: breadcrumb_navxt_class.php:209
 
 
517
  msgid "404"
518
  msgstr "404"
519
 
520
+ #: breadcrumb_navxt_class.php:212
 
 
521
  msgid "Search results for &#39;"
522
  msgstr "Sök resultat för &#39;"
523
 
524
+ #: breadcrumb_navxt_class.php:223
 
 
525
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
526
  msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
527
 
528
+ #: breadcrumb_navxt_class.php:226
 
 
529
  msgid "Articles by: "
530
  msgstr "Artiklar av:"
531
 
532
+ #: breadcrumb_navxt_class.php:230
 
 
533
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
534
  msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
535
 
536
+ #: breadcrumb_navxt_class.php:239
 
 
537
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
538
  msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
539
 
540
+ #: breadcrumb_navxt_class.php:242
 
 
541
  msgid "Archive by category &#39;"
542
  msgstr "Arkiv av kategorin &#39;"
543
 
544
+ #: breadcrumb_navxt_class.php:246
 
 
545
  msgid "Archive by tag &#39;"
546
  msgstr "Arkiv av tagg &#39;"
547
 
548
+ #: breadcrumb_navxt_class.php:249
 
 
549
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
550
  msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
551
 
552
+ #: breadcrumb_navxt_class.php:488
 
 
553
  msgid "Untagged"
554
  msgstr "Otaggad"
555
 
languages/breadcrumb_navxt.mo CHANGED
Binary file
languages/breadcrumb_navxt.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2009-07-27 19:53-0600\n"
6
- "PO-Revision-Date: 2009-07-27 19:53-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,722 +16,798 @@ msgstr ""
16
 
17
  #: C:\Users\John\Documents\Aptana
18
  #: Studio\Breadcrumb
19
- #: NavXT\trunk/breadcrumb_navxt_admin.php:145
20
  msgid "Insufficient privileges to proceed."
21
  msgstr ""
22
 
23
  #: C:\Users\John\Documents\Aptana
24
  #: Studio\Breadcrumb
25
- #: NavXT\trunk/breadcrumb_navxt_admin.php:201
26
- #: NavXT\trunk/breadcrumb_navxt_class.php:214
27
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
28
  msgstr ""
29
 
30
  #: C:\Users\John\Documents\Aptana
31
  #: Studio\Breadcrumb
32
- #: NavXT\trunk/breadcrumb_navxt_admin.php:537
33
  msgid "Settings"
34
  msgstr ""
35
 
36
  #: C:\Users\John\Documents\Aptana
37
  #: Studio\Breadcrumb
38
- #: NavXT\trunk/breadcrumb_navxt_admin.php:580
39
- #: NavXT\trunk/breadcrumb_navxt_admin.php:617
40
- #: NavXT\trunk/breadcrumb_navxt_admin.php:793
41
  msgid "Breadcrumb NavXT Settings"
42
  msgstr ""
43
 
44
  #: C:\Users\John\Documents\Aptana
45
  #: Studio\Breadcrumb
46
- #: NavXT\trunk/breadcrumb_navxt_admin.php:619
47
  #, php-format
48
  msgid "Get help with \"%s\""
49
  msgstr ""
50
 
51
  #: C:\Users\John\Documents\Aptana
52
  #: Studio\Breadcrumb
53
- #: NavXT\trunk/breadcrumb_navxt_admin.php:631
54
  #, php-format
55
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
56
  msgstr ""
57
 
58
  #: C:\Users\John\Documents\Aptana
59
  #: Studio\Breadcrumb
60
- #: NavXT\trunk/breadcrumb_navxt_admin.php:632
61
  msgid "Go to the Breadcrumb NavXT online documentation"
62
  msgstr ""
63
 
64
  #: C:\Users\John\Documents\Aptana
65
  #: Studio\Breadcrumb
66
- #: NavXT\trunk/breadcrumb_navxt_admin.php:687
67
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
68
  msgstr ""
69
 
70
  #: C:\Users\John\Documents\Aptana
71
  #: Studio\Breadcrumb
72
- #: NavXT\trunk/breadcrumb_navxt_admin.php:690
73
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
74
  msgstr ""
75
 
76
  #: C:\Users\John\Documents\Aptana
77
  #: Studio\Breadcrumb
78
- #: NavXT\trunk/breadcrumb_navxt_admin.php:743
79
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1293
80
  msgid "Import"
81
  msgstr ""
82
 
83
  #: C:\Users\John\Documents\Aptana
84
  #: Studio\Breadcrumb
85
- #: NavXT\trunk/breadcrumb_navxt_admin.php:743
86
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1294
87
  msgid "Export"
88
  msgstr ""
89
 
90
  #: C:\Users\John\Documents\Aptana
91
  #: Studio\Breadcrumb
92
- #: NavXT\trunk/breadcrumb_navxt_admin.php:743
93
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1295
94
  msgid "Reset"
95
  msgstr ""
96
 
97
  #: C:\Users\John\Documents\Aptana
98
  #: Studio\Breadcrumb
99
- #: NavXT\trunk/breadcrumb_navxt_admin.php:803
100
  msgid "General"
101
  msgstr ""
102
 
103
  #: C:\Users\John\Documents\Aptana
104
  #: Studio\Breadcrumb
105
- #: NavXT\trunk/breadcrumb_navxt_admin.php:807
106
  msgid "Breadcrumb Separator"
107
  msgstr ""
108
 
109
  #: C:\Users\John\Documents\Aptana
110
  #: Studio\Breadcrumb
111
- #: NavXT\trunk/breadcrumb_navxt_admin.php:811
112
  msgid "Placed in between each breadcrumb."
113
  msgstr ""
114
 
115
  #: C:\Users\John\Documents\Aptana
116
  #: Studio\Breadcrumb
117
- #: NavXT\trunk/breadcrumb_navxt_admin.php:816
118
  msgid "Breadcrumb Max Title Length"
119
  msgstr ""
120
 
121
  #: C:\Users\John\Documents\Aptana
122
  #: Studio\Breadcrumb
123
- #: NavXT\trunk/breadcrumb_navxt_admin.php:824
124
  msgid "Home Breadcrumb"
125
  msgstr ""
126
 
127
  #: C:\Users\John\Documents\Aptana
128
  #: Studio\Breadcrumb
129
- #: NavXT\trunk/breadcrumb_navxt_admin.php:829
130
  msgid "Place the home breadcrumb in the trail."
131
  msgstr ""
132
 
133
  #: C:\Users\John\Documents\Aptana
134
  #: Studio\Breadcrumb
135
- #: NavXT\trunk/breadcrumb_navxt_admin.php:834
136
  msgid "Home Title: "
137
  msgstr ""
138
 
139
  #: C:\Users\John\Documents\Aptana
140
  #: Studio\Breadcrumb
141
- #: NavXT\trunk/breadcrumb_navxt_admin.php:843
142
  msgid "Blog Breadcrumb"
143
  msgstr ""
144
 
145
  #: C:\Users\John\Documents\Aptana
146
  #: Studio\Breadcrumb
147
- #: NavXT\trunk/breadcrumb_navxt_admin.php:848
148
  msgid "Place the blog breadcrumb in the trail."
149
  msgstr ""
150
 
151
  #: C:\Users\John\Documents\Aptana
152
  #: Studio\Breadcrumb
153
- #: NavXT\trunk/breadcrumb_navxt_admin.php:854
154
  msgid "Home Prefix"
155
  msgstr ""
156
 
157
  #: C:\Users\John\Documents\Aptana
158
  #: Studio\Breadcrumb
159
- #: NavXT\trunk/breadcrumb_navxt_admin.php:862
160
  msgid "Home Suffix"
161
  msgstr ""
162
 
163
  #: C:\Users\John\Documents\Aptana
164
  #: Studio\Breadcrumb
165
- #: NavXT\trunk/breadcrumb_navxt_admin.php:870
166
  msgid "Home Anchor"
167
  msgstr ""
168
 
169
  #: C:\Users\John\Documents\Aptana
170
  #: Studio\Breadcrumb
171
- #: NavXT\trunk/breadcrumb_navxt_admin.php:874
172
  msgid "The anchor template for the home breadcrumb."
173
  msgstr ""
174
 
175
  #: C:\Users\John\Documents\Aptana
176
  #: Studio\Breadcrumb
177
- #: NavXT\trunk/breadcrumb_navxt_admin.php:879
178
  msgid "Blog Anchor"
179
  msgstr ""
180
 
181
  #: C:\Users\John\Documents\Aptana
182
  #: Studio\Breadcrumb
183
- #: NavXT\trunk/breadcrumb_navxt_admin.php:883
184
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
185
  msgstr ""
186
 
187
  #: C:\Users\John\Documents\Aptana
188
  #: Studio\Breadcrumb
189
- #: NavXT\trunk/breadcrumb_navxt_admin.php:889
190
  msgid "Current Item"
191
  msgstr ""
192
 
193
  #: C:\Users\John\Documents\Aptana
194
  #: Studio\Breadcrumb
195
- #: NavXT\trunk/breadcrumb_navxt_admin.php:893
196
  msgid "Link Current Item"
197
  msgstr ""
198
 
199
  #: C:\Users\John\Documents\Aptana
200
  #: Studio\Breadcrumb
201
- #: NavXT\trunk/breadcrumb_navxt_admin.php:898
202
  msgid "Yes"
203
  msgstr ""
204
 
205
  #: C:\Users\John\Documents\Aptana
206
  #: Studio\Breadcrumb
207
- #: NavXT\trunk/breadcrumb_navxt_admin.php:904
208
  msgid "Current Item Prefix"
209
  msgstr ""
210
 
211
  #: C:\Users\John\Documents\Aptana
212
  #: Studio\Breadcrumb
213
- #: NavXT\trunk/breadcrumb_navxt_admin.php:908
214
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
215
  msgstr ""
216
 
217
  #: C:\Users\John\Documents\Aptana
218
  #: Studio\Breadcrumb
219
- #: NavXT\trunk/breadcrumb_navxt_admin.php:913
220
  msgid "Current Item Suffix"
221
  msgstr ""
222
 
223
  #: C:\Users\John\Documents\Aptana
224
  #: Studio\Breadcrumb
225
- #: NavXT\trunk/breadcrumb_navxt_admin.php:917
226
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
227
  msgstr ""
228
 
229
  #: C:\Users\John\Documents\Aptana
230
  #: Studio\Breadcrumb
231
- #: NavXT\trunk/breadcrumb_navxt_admin.php:922
232
  msgid "Current Item Anchor"
233
  msgstr ""
234
 
235
  #: C:\Users\John\Documents\Aptana
236
  #: Studio\Breadcrumb
237
- #: NavXT\trunk/breadcrumb_navxt_admin.php:926
238
  msgid "The anchor template for current item breadcrumbs."
239
  msgstr ""
240
 
241
  #: C:\Users\John\Documents\Aptana
242
  #: Studio\Breadcrumb
243
- #: NavXT\trunk/breadcrumb_navxt_admin.php:931
244
  msgid "Paged Breadcrumb"
245
  msgstr ""
246
 
247
  #: C:\Users\John\Documents\Aptana
248
  #: Studio\Breadcrumb
249
- #: NavXT\trunk/breadcrumb_navxt_admin.php:936
250
  msgid "Include the paged breadcrumb in the breadcrumb trail."
251
  msgstr ""
252
 
253
  #: C:\Users\John\Documents\Aptana
254
  #: Studio\Breadcrumb
255
- #: NavXT\trunk/breadcrumb_navxt_admin.php:938
256
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
257
  msgstr ""
258
 
259
  #: C:\Users\John\Documents\Aptana
260
  #: Studio\Breadcrumb
261
- #: NavXT\trunk/breadcrumb_navxt_admin.php:943
262
  msgid "Paged Prefix"
263
  msgstr ""
264
 
265
  #: C:\Users\John\Documents\Aptana
266
  #: Studio\Breadcrumb
267
- #: NavXT\trunk/breadcrumb_navxt_admin.php:951
268
  msgid "Paged Suffix"
269
  msgstr ""
270
 
271
  #: C:\Users\John\Documents\Aptana
272
  #: Studio\Breadcrumb
273
- #: NavXT\trunk/breadcrumb_navxt_admin.php:960
274
  msgid "Posts &amp; Pages"
275
  msgstr ""
276
 
277
  #: C:\Users\John\Documents\Aptana
278
  #: Studio\Breadcrumb
279
- #: NavXT\trunk/breadcrumb_navxt_admin.php:964
280
  msgid "Post Prefix"
281
  msgstr ""
282
 
283
  #: C:\Users\John\Documents\Aptana
284
  #: Studio\Breadcrumb
285
- #: NavXT\trunk/breadcrumb_navxt_admin.php:972
286
  msgid "Post Suffix"
287
  msgstr ""
288
 
289
  #: C:\Users\John\Documents\Aptana
290
  #: Studio\Breadcrumb
291
- #: NavXT\trunk/breadcrumb_navxt_admin.php:980
292
  msgid "Post Anchor"
293
  msgstr ""
294
 
295
  #: C:\Users\John\Documents\Aptana
296
  #: Studio\Breadcrumb
297
- #: NavXT\trunk/breadcrumb_navxt_admin.php:984
298
  msgid "The anchor template for post breadcrumbs."
299
  msgstr ""
300
 
301
  #: C:\Users\John\Documents\Aptana
302
  #: Studio\Breadcrumb
303
- #: NavXT\trunk/breadcrumb_navxt_admin.php:989
304
  msgid "Post Taxonomy Display"
305
  msgstr ""
306
 
307
  #: C:\Users\John\Documents\Aptana
308
  #: Studio\Breadcrumb
309
- #: NavXT\trunk/breadcrumb_navxt_admin.php:994
310
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
311
  msgstr ""
312
 
313
  #: C:\Users\John\Documents\Aptana
314
  #: Studio\Breadcrumb
315
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1000
316
  msgid "Post Taxonomy"
317
  msgstr ""
318
 
319
  #: C:\Users\John\Documents\Aptana
320
  #: Studio\Breadcrumb
321
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1005
322
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1060
323
  msgid "Categories"
324
  msgstr ""
325
 
326
  #: C:\Users\John\Documents\Aptana
327
  #: Studio\Breadcrumb
328
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1010
329
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1110
 
 
 
 
 
 
330
  msgid "Tags"
331
  msgstr ""
332
 
333
  #: C:\Users\John\Documents\Aptana
334
  #: Studio\Breadcrumb
335
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1013
336
  msgid "The taxonomy which the breadcrumb trail will show."
337
  msgstr ""
338
 
339
  #: C:\Users\John\Documents\Aptana
340
  #: Studio\Breadcrumb
341
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1018
342
  msgid "Page Prefix"
343
  msgstr ""
344
 
345
  #: C:\Users\John\Documents\Aptana
346
  #: Studio\Breadcrumb
347
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1026
348
  msgid "Page Suffix"
349
  msgstr ""
350
 
351
  #: C:\Users\John\Documents\Aptana
352
  #: Studio\Breadcrumb
353
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1034
354
  msgid "Page Anchor"
355
  msgstr ""
356
 
357
  #: C:\Users\John\Documents\Aptana
358
  #: Studio\Breadcrumb
359
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1038
360
  msgid "The anchor template for page breadcrumbs."
361
  msgstr ""
362
 
363
  #: C:\Users\John\Documents\Aptana
364
  #: Studio\Breadcrumb
365
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1043
366
  msgid "Attachment Prefix"
367
  msgstr ""
368
 
369
  #: C:\Users\John\Documents\Aptana
370
  #: Studio\Breadcrumb
371
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1051
372
  msgid "Attachment Suffix"
373
  msgstr ""
374
 
375
  #: C:\Users\John\Documents\Aptana
376
  #: Studio\Breadcrumb
377
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1064
378
  msgid "Category Prefix"
379
  msgstr ""
380
 
381
  #: C:\Users\John\Documents\Aptana
382
  #: Studio\Breadcrumb
383
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1068
384
  msgid "Applied before the anchor on all category breadcrumbs."
385
  msgstr ""
386
 
387
  #: C:\Users\John\Documents\Aptana
388
  #: Studio\Breadcrumb
389
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1073
390
  msgid "Category Suffix"
391
  msgstr ""
392
 
393
  #: C:\Users\John\Documents\Aptana
394
  #: Studio\Breadcrumb
395
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1077
396
  msgid "Applied after the anchor on all category breadcrumbs."
397
  msgstr ""
398
 
399
  #: C:\Users\John\Documents\Aptana
400
  #: Studio\Breadcrumb
401
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1082
402
  msgid "Category Anchor"
403
  msgstr ""
404
 
405
  #: C:\Users\John\Documents\Aptana
406
  #: Studio\Breadcrumb
407
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1086
408
  msgid "The anchor template for category breadcrumbs."
409
  msgstr ""
410
 
411
  #: C:\Users\John\Documents\Aptana
412
  #: Studio\Breadcrumb
413
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1091
414
  msgid "Archive by Category Prefix"
415
  msgstr ""
416
 
417
  #: C:\Users\John\Documents\Aptana
418
  #: Studio\Breadcrumb
419
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1095
420
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
421
  msgstr ""
422
 
423
  #: C:\Users\John\Documents\Aptana
424
  #: Studio\Breadcrumb
425
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1100
426
  msgid "Archive by Category Suffix"
427
  msgstr ""
428
 
429
  #: C:\Users\John\Documents\Aptana
430
  #: Studio\Breadcrumb
431
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1104
432
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
433
  msgstr ""
434
 
435
  #: C:\Users\John\Documents\Aptana
436
  #: Studio\Breadcrumb
437
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1114
438
  msgid "Tag Prefix"
439
  msgstr ""
440
 
441
  #: C:\Users\John\Documents\Aptana
442
  #: Studio\Breadcrumb
443
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1118
444
  msgid "Applied before the anchor on all tag breadcrumbs."
445
  msgstr ""
446
 
447
  #: C:\Users\John\Documents\Aptana
448
  #: Studio\Breadcrumb
449
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1123
450
  msgid "Tag Suffix"
451
  msgstr ""
452
 
453
  #: C:\Users\John\Documents\Aptana
454
  #: Studio\Breadcrumb
455
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1127
456
  msgid "Applied after the anchor on all tag breadcrumbs."
457
  msgstr ""
458
 
459
  #: C:\Users\John\Documents\Aptana
460
  #: Studio\Breadcrumb
461
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1132
462
  msgid "Tag Anchor"
463
  msgstr ""
464
 
465
  #: C:\Users\John\Documents\Aptana
466
  #: Studio\Breadcrumb
467
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1136
468
  msgid "The anchor template for tag breadcrumbs."
469
  msgstr ""
470
 
471
  #: C:\Users\John\Documents\Aptana
472
  #: Studio\Breadcrumb
473
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1141
474
  msgid "Archive by Tag Prefix"
475
  msgstr ""
476
 
477
  #: C:\Users\John\Documents\Aptana
478
  #: Studio\Breadcrumb
479
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1145
480
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
481
  msgstr ""
482
 
483
  #: C:\Users\John\Documents\Aptana
484
  #: Studio\Breadcrumb
485
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1150
486
  msgid "Archive by Tag Suffix"
487
  msgstr ""
488
 
489
  #: C:\Users\John\Documents\Aptana
490
  #: Studio\Breadcrumb
491
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1154
492
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
493
  msgstr ""
494
 
495
  #: C:\Users\John\Documents\Aptana
496
  #: Studio\Breadcrumb
497
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
498
  msgid "Date Archives"
499
  msgstr ""
500
 
501
  #: C:\Users\John\Documents\Aptana
502
  #: Studio\Breadcrumb
503
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1164
504
  msgid "Archive by Date Prefix"
505
  msgstr ""
506
 
507
  #: C:\Users\John\Documents\Aptana
508
  #: Studio\Breadcrumb
509
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1168
510
  msgid "Applied before the anchor on all date breadcrumbs."
511
  msgstr ""
512
 
513
  #: C:\Users\John\Documents\Aptana
514
  #: Studio\Breadcrumb
515
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1173
516
  msgid "Archive by Date Suffix"
517
  msgstr ""
518
 
519
  #: C:\Users\John\Documents\Aptana
520
  #: Studio\Breadcrumb
521
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1177
522
  msgid "Applied after the anchor on all date breadcrumbs."
523
  msgstr ""
524
 
525
  #: C:\Users\John\Documents\Aptana
526
  #: Studio\Breadcrumb
527
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1182
528
  msgid "Date Anchor"
529
  msgstr ""
530
 
531
  #: C:\Users\John\Documents\Aptana
532
  #: Studio\Breadcrumb
533
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1186
534
  msgid "The anchor template for date breadcrumbs."
535
  msgstr ""
536
 
537
  #: C:\Users\John\Documents\Aptana
538
  #: Studio\Breadcrumb
539
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1192
540
  msgid "Miscellaneous"
541
  msgstr ""
542
 
543
  #: C:\Users\John\Documents\Aptana
544
  #: Studio\Breadcrumb
545
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1196
546
  msgid "Author Prefix"
547
  msgstr ""
548
 
549
  #: C:\Users\John\Documents\Aptana
550
  #: Studio\Breadcrumb
551
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1204
552
  msgid "Author Suffix"
553
  msgstr ""
554
 
555
  #: C:\Users\John\Documents\Aptana
556
  #: Studio\Breadcrumb
557
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1212
558
  msgid "Author Display Format"
559
  msgstr ""
560
 
561
  #: C:\Users\John\Documents\Aptana
562
  #: Studio\Breadcrumb
563
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1218
564
  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."
565
  msgstr ""
566
 
567
  #: C:\Users\John\Documents\Aptana
568
  #: Studio\Breadcrumb
569
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1223
570
  msgid "Search Prefix"
571
  msgstr ""
572
 
573
  #: C:\Users\John\Documents\Aptana
574
  #: Studio\Breadcrumb
575
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1231
576
  msgid "Search Suffix"
577
  msgstr ""
578
 
579
  #: C:\Users\John\Documents\Aptana
580
  #: Studio\Breadcrumb
581
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1239
582
  msgid "Search Anchor"
583
  msgstr ""
584
 
585
  #: C:\Users\John\Documents\Aptana
586
  #: Studio\Breadcrumb
587
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1243
588
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
589
  msgstr ""
590
 
591
  #: C:\Users\John\Documents\Aptana
592
  #: Studio\Breadcrumb
593
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1248
594
  msgid "404 Title"
595
  msgstr ""
596
 
597
  #: C:\Users\John\Documents\Aptana
598
  #: Studio\Breadcrumb
599
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1256
600
  msgid "404 Prefix"
601
  msgstr ""
602
 
603
  #: C:\Users\John\Documents\Aptana
604
  #: Studio\Breadcrumb
605
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1264
606
  msgid "404 Suffix"
607
  msgstr ""
608
 
609
  #: C:\Users\John\Documents\Aptana
610
  #: Studio\Breadcrumb
611
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1273
612
  msgid "Save Changes"
613
  msgstr ""
614
 
615
  #: C:\Users\John\Documents\Aptana
616
  #: Studio\Breadcrumb
617
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1279
618
  msgid "Import/Export/Reset Settings"
619
  msgstr ""
620
 
621
  #: C:\Users\John\Documents\Aptana
622
  #: Studio\Breadcrumb
623
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1280
624
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
625
  msgstr ""
626
 
627
  #: C:\Users\John\Documents\Aptana
628
  #: Studio\Breadcrumb
629
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1284
630
  msgid "Settings File"
631
  msgstr ""
632
 
633
  #: C:\Users\John\Documents\Aptana
634
  #: Studio\Breadcrumb
635
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1288
636
  msgid "Select a XML settings file to upload and import settings from."
637
  msgstr ""
638
 
639
  #: C:\Users\John\Documents\Aptana
640
  #: Studio\Breadcrumb
641
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1424
642
  msgid "Importing settings from file failed."
643
  msgstr ""
644
 
645
  #: C:\Users\John\Documents\Aptana
646
  #: Studio\Breadcrumb
647
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1434
648
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
649
  msgstr ""
650
 
651
  #: C:\Users\John\Documents\Aptana
652
  #: Studio\Breadcrumb
653
- #: NavXT\trunk/breadcrumb_navxt_admin.php:1444
654
  msgid "The Breadcrumb NavXT settings were reset to the default values."
655
  msgstr ""
656
 
657
  #: C:\Users\John\Documents\Aptana
658
  #: Studio\Breadcrumb
659
- #: NavXT\trunk/breadcrumb_navxt_class.php:147
660
  msgid "Blog"
661
  msgstr ""
662
 
663
  #: C:\Users\John\Documents\Aptana
664
  #: Studio\Breadcrumb
665
- #: NavXT\trunk/breadcrumb_navxt_class.php:149
666
- #: NavXT\trunk/breadcrumb_navxt_class.php:153
667
- #: NavXT\trunk/breadcrumb_navxt_class.php:177
668
- #: NavXT\trunk/breadcrumb_navxt_class.php:191
669
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
670
  msgstr ""
671
 
672
  #: C:\Users\John\Documents\Aptana
673
  #: Studio\Breadcrumb
674
- #: NavXT\trunk/breadcrumb_navxt_class.php:166
675
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
676
  msgstr ""
677
 
678
  #: C:\Users\John\Documents\Aptana
679
  #: Studio\Breadcrumb
680
- #: NavXT\trunk/breadcrumb_navxt_class.php:207
681
  msgid "404"
682
  msgstr ""
683
 
684
  #: C:\Users\John\Documents\Aptana
685
  #: Studio\Breadcrumb
686
- #: NavXT\trunk/breadcrumb_navxt_class.php:210
687
  msgid "Search results for &#39;"
688
  msgstr ""
689
 
690
  #: C:\Users\John\Documents\Aptana
691
  #: Studio\Breadcrumb
692
- #: NavXT\trunk/breadcrumb_navxt_class.php:221
693
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
694
  msgstr ""
695
 
696
  #: C:\Users\John\Documents\Aptana
697
  #: Studio\Breadcrumb
698
- #: NavXT\trunk/breadcrumb_navxt_class.php:224
699
  msgid "Articles by: "
700
  msgstr ""
701
 
702
  #: C:\Users\John\Documents\Aptana
703
  #: Studio\Breadcrumb
704
- #: NavXT\trunk/breadcrumb_navxt_class.php:228
705
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
706
  msgstr ""
707
 
708
  #: C:\Users\John\Documents\Aptana
709
  #: Studio\Breadcrumb
710
- #: NavXT\trunk/breadcrumb_navxt_class.php:237
711
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
712
  msgstr ""
713
 
714
  #: C:\Users\John\Documents\Aptana
715
  #: Studio\Breadcrumb
716
- #: NavXT\trunk/breadcrumb_navxt_class.php:240
717
  msgid "Archive by category &#39;"
718
  msgstr ""
719
 
720
  #: C:\Users\John\Documents\Aptana
721
  #: Studio\Breadcrumb
722
- #: NavXT\trunk/breadcrumb_navxt_class.php:244
723
  msgid "Archive by tag &#39;"
724
  msgstr ""
725
 
726
  #: C:\Users\John\Documents\Aptana
727
  #: Studio\Breadcrumb
728
- #: NavXT\trunk/breadcrumb_navxt_class.php:247
729
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
730
  msgstr ""
731
 
732
  #: C:\Users\John\Documents\Aptana
733
  #: Studio\Breadcrumb
734
- #: NavXT\trunk/breadcrumb_navxt_class.php:477
735
  msgid "Untagged"
736
  msgstr ""
737
 
2
  msgstr ""
3
  "Project-Id-Version: Breadcrumb NavXT\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2009-12-05 16:20-0600\n"
6
+ "PO-Revision-Date: 2009-12-05 16:20-0600\n"
7
  "Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
8
  "Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
9
  "MIME-Version: 1.0\n"
16
 
17
  #: C:\Users\John\Documents\Aptana
18
  #: Studio\Breadcrumb
19
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:134
20
  msgid "Insufficient privileges to proceed."
21
  msgstr ""
22
 
23
  #: C:\Users\John\Documents\Aptana
24
  #: Studio\Breadcrumb
25
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:190
26
+ #: NavXT\trunk/breadcrumb_navxt_class.php:216
27
  msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
28
  msgstr ""
29
 
30
  #: C:\Users\John\Documents\Aptana
31
  #: Studio\Breadcrumb
32
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:540
33
  msgid "Settings"
34
  msgstr ""
35
 
36
  #: C:\Users\John\Documents\Aptana
37
  #: Studio\Breadcrumb
38
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:594
39
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:629
40
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:802
41
  msgid "Breadcrumb NavXT Settings"
42
  msgstr ""
43
 
44
  #: C:\Users\John\Documents\Aptana
45
  #: Studio\Breadcrumb
46
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:630
47
  #, php-format
48
  msgid "Get help with \"%s\""
49
  msgstr ""
50
 
51
  #: C:\Users\John\Documents\Aptana
52
  #: Studio\Breadcrumb
53
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:641
54
  #, php-format
55
  msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
56
  msgstr ""
57
 
58
  #: C:\Users\John\Documents\Aptana
59
  #: Studio\Breadcrumb
60
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:642
61
  msgid "Go to the Breadcrumb NavXT online documentation"
62
  msgstr ""
63
 
64
  #: C:\Users\John\Documents\Aptana
65
  #: Studio\Breadcrumb
66
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:697
67
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
68
  msgstr ""
69
 
70
  #: C:\Users\John\Documents\Aptana
71
  #: Studio\Breadcrumb
72
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:700
73
  msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
74
  msgstr ""
75
 
76
  #: C:\Users\John\Documents\Aptana
77
  #: Studio\Breadcrumb
78
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:753
79
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1386
80
  msgid "Import"
81
  msgstr ""
82
 
83
  #: C:\Users\John\Documents\Aptana
84
  #: Studio\Breadcrumb
85
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:753
86
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1387
87
  msgid "Export"
88
  msgstr ""
89
 
90
  #: C:\Users\John\Documents\Aptana
91
  #: Studio\Breadcrumb
92
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:753
93
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1388
94
  msgid "Reset"
95
  msgstr ""
96
 
97
  #: C:\Users\John\Documents\Aptana
98
  #: Studio\Breadcrumb
99
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:812
100
  msgid "General"
101
  msgstr ""
102
 
103
  #: C:\Users\John\Documents\Aptana
104
  #: Studio\Breadcrumb
105
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:816
106
  msgid "Breadcrumb Separator"
107
  msgstr ""
108
 
109
  #: C:\Users\John\Documents\Aptana
110
  #: Studio\Breadcrumb
111
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:820
112
  msgid "Placed in between each breadcrumb."
113
  msgstr ""
114
 
115
  #: C:\Users\John\Documents\Aptana
116
  #: Studio\Breadcrumb
117
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:825
118
  msgid "Breadcrumb Max Title Length"
119
  msgstr ""
120
 
121
  #: C:\Users\John\Documents\Aptana
122
  #: Studio\Breadcrumb
123
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:833
124
  msgid "Home Breadcrumb"
125
  msgstr ""
126
 
127
  #: C:\Users\John\Documents\Aptana
128
  #: Studio\Breadcrumb
129
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:838
130
  msgid "Place the home breadcrumb in the trail."
131
  msgstr ""
132
 
133
  #: C:\Users\John\Documents\Aptana
134
  #: Studio\Breadcrumb
135
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:843
136
  msgid "Home Title: "
137
  msgstr ""
138
 
139
  #: C:\Users\John\Documents\Aptana
140
  #: Studio\Breadcrumb
141
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:852
142
  msgid "Blog Breadcrumb"
143
  msgstr ""
144
 
145
  #: C:\Users\John\Documents\Aptana
146
  #: Studio\Breadcrumb
147
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:857
148
  msgid "Place the blog breadcrumb in the trail."
149
  msgstr ""
150
 
151
  #: C:\Users\John\Documents\Aptana
152
  #: Studio\Breadcrumb
153
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:863
154
  msgid "Home Prefix"
155
  msgstr ""
156
 
157
  #: C:\Users\John\Documents\Aptana
158
  #: Studio\Breadcrumb
159
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:871
160
  msgid "Home Suffix"
161
  msgstr ""
162
 
163
  #: C:\Users\John\Documents\Aptana
164
  #: Studio\Breadcrumb
165
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:879
166
  msgid "Home Anchor"
167
  msgstr ""
168
 
169
  #: C:\Users\John\Documents\Aptana
170
  #: Studio\Breadcrumb
171
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:883
172
  msgid "The anchor template for the home breadcrumb."
173
  msgstr ""
174
 
175
  #: C:\Users\John\Documents\Aptana
176
  #: Studio\Breadcrumb
177
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:888
178
  msgid "Blog Anchor"
179
  msgstr ""
180
 
181
  #: C:\Users\John\Documents\Aptana
182
  #: Studio\Breadcrumb
183
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:892
184
  msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
185
  msgstr ""
186
 
187
  #: C:\Users\John\Documents\Aptana
188
  #: Studio\Breadcrumb
189
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:898
190
  msgid "Current Item"
191
  msgstr ""
192
 
193
  #: C:\Users\John\Documents\Aptana
194
  #: Studio\Breadcrumb
195
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:902
196
  msgid "Link Current Item"
197
  msgstr ""
198
 
199
  #: C:\Users\John\Documents\Aptana
200
  #: Studio\Breadcrumb
201
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:907
202
  msgid "Yes"
203
  msgstr ""
204
 
205
  #: C:\Users\John\Documents\Aptana
206
  #: Studio\Breadcrumb
207
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:913
208
  msgid "Current Item Prefix"
209
  msgstr ""
210
 
211
  #: C:\Users\John\Documents\Aptana
212
  #: Studio\Breadcrumb
213
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:917
214
  msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
215
  msgstr ""
216
 
217
  #: C:\Users\John\Documents\Aptana
218
  #: Studio\Breadcrumb
219
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:922
220
  msgid "Current Item Suffix"
221
  msgstr ""
222
 
223
  #: C:\Users\John\Documents\Aptana
224
  #: Studio\Breadcrumb
225
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:926
226
  msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
227
  msgstr ""
228
 
229
  #: C:\Users\John\Documents\Aptana
230
  #: Studio\Breadcrumb
231
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:931
232
  msgid "Current Item Anchor"
233
  msgstr ""
234
 
235
  #: C:\Users\John\Documents\Aptana
236
  #: Studio\Breadcrumb
237
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:935
238
  msgid "The anchor template for current item breadcrumbs."
239
  msgstr ""
240
 
241
  #: C:\Users\John\Documents\Aptana
242
  #: Studio\Breadcrumb
243
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:940
244
  msgid "Paged Breadcrumb"
245
  msgstr ""
246
 
247
  #: C:\Users\John\Documents\Aptana
248
  #: Studio\Breadcrumb
249
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:945
250
  msgid "Include the paged breadcrumb in the breadcrumb trail."
251
  msgstr ""
252
 
253
  #: C:\Users\John\Documents\Aptana
254
  #: Studio\Breadcrumb
255
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:947
256
  msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
257
  msgstr ""
258
 
259
  #: C:\Users\John\Documents\Aptana
260
  #: Studio\Breadcrumb
261
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:952
262
  msgid "Paged Prefix"
263
  msgstr ""
264
 
265
  #: C:\Users\John\Documents\Aptana
266
  #: Studio\Breadcrumb
267
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:960
268
  msgid "Paged Suffix"
269
  msgstr ""
270
 
271
  #: C:\Users\John\Documents\Aptana
272
  #: Studio\Breadcrumb
273
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:969
274
  msgid "Posts &amp; Pages"
275
  msgstr ""
276
 
277
  #: C:\Users\John\Documents\Aptana
278
  #: Studio\Breadcrumb
279
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:973
280
  msgid "Post Prefix"
281
  msgstr ""
282
 
283
  #: C:\Users\John\Documents\Aptana
284
  #: Studio\Breadcrumb
285
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:981
286
  msgid "Post Suffix"
287
  msgstr ""
288
 
289
  #: C:\Users\John\Documents\Aptana
290
  #: Studio\Breadcrumb
291
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:989
292
  msgid "Post Anchor"
293
  msgstr ""
294
 
295
  #: C:\Users\John\Documents\Aptana
296
  #: Studio\Breadcrumb
297
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:993
298
  msgid "The anchor template for post breadcrumbs."
299
  msgstr ""
300
 
301
  #: C:\Users\John\Documents\Aptana
302
  #: Studio\Breadcrumb
303
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:998
304
  msgid "Post Taxonomy Display"
305
  msgstr ""
306
 
307
  #: C:\Users\John\Documents\Aptana
308
  #: Studio\Breadcrumb
309
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1003
310
  msgid "Show the taxonomy leading to a post in the breadcrumb trail."
311
  msgstr ""
312
 
313
  #: C:\Users\John\Documents\Aptana
314
  #: Studio\Breadcrumb
315
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1009
316
  msgid "Post Taxonomy"
317
  msgstr ""
318
 
319
  #: C:\Users\John\Documents\Aptana
320
  #: Studio\Breadcrumb
321
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1014
322
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1091
323
  msgid "Categories"
324
  msgstr ""
325
 
326
  #: C:\Users\John\Documents\Aptana
327
  #: Studio\Breadcrumb
328
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1019
329
+ msgid "Dates"
330
+ msgstr ""
331
+
332
+ #: C:\Users\John\Documents\Aptana
333
+ #: Studio\Breadcrumb
334
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1024
335
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1141
336
  msgid "Tags"
337
  msgstr ""
338
 
339
  #: C:\Users\John\Documents\Aptana
340
  #: Studio\Breadcrumb
341
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1044
342
  msgid "The taxonomy which the breadcrumb trail will show."
343
  msgstr ""
344
 
345
  #: C:\Users\John\Documents\Aptana
346
  #: Studio\Breadcrumb
347
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1049
348
  msgid "Page Prefix"
349
  msgstr ""
350
 
351
  #: C:\Users\John\Documents\Aptana
352
  #: Studio\Breadcrumb
353
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1057
354
  msgid "Page Suffix"
355
  msgstr ""
356
 
357
  #: C:\Users\John\Documents\Aptana
358
  #: Studio\Breadcrumb
359
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1065
360
  msgid "Page Anchor"
361
  msgstr ""
362
 
363
  #: C:\Users\John\Documents\Aptana
364
  #: Studio\Breadcrumb
365
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1069
366
  msgid "The anchor template for page breadcrumbs."
367
  msgstr ""
368
 
369
  #: C:\Users\John\Documents\Aptana
370
  #: Studio\Breadcrumb
371
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1074
372
  msgid "Attachment Prefix"
373
  msgstr ""
374
 
375
  #: C:\Users\John\Documents\Aptana
376
  #: Studio\Breadcrumb
377
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1082
378
  msgid "Attachment Suffix"
379
  msgstr ""
380
 
381
  #: C:\Users\John\Documents\Aptana
382
  #: Studio\Breadcrumb
383
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1095
384
  msgid "Category Prefix"
385
  msgstr ""
386
 
387
  #: C:\Users\John\Documents\Aptana
388
  #: Studio\Breadcrumb
389
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1099
390
  msgid "Applied before the anchor on all category breadcrumbs."
391
  msgstr ""
392
 
393
  #: C:\Users\John\Documents\Aptana
394
  #: Studio\Breadcrumb
395
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1104
396
  msgid "Category Suffix"
397
  msgstr ""
398
 
399
  #: C:\Users\John\Documents\Aptana
400
  #: Studio\Breadcrumb
401
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1108
402
  msgid "Applied after the anchor on all category breadcrumbs."
403
  msgstr ""
404
 
405
  #: C:\Users\John\Documents\Aptana
406
  #: Studio\Breadcrumb
407
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1113
408
  msgid "Category Anchor"
409
  msgstr ""
410
 
411
  #: C:\Users\John\Documents\Aptana
412
  #: Studio\Breadcrumb
413
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1117
414
  msgid "The anchor template for category breadcrumbs."
415
  msgstr ""
416
 
417
  #: C:\Users\John\Documents\Aptana
418
  #: Studio\Breadcrumb
419
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1122
420
  msgid "Archive by Category Prefix"
421
  msgstr ""
422
 
423
  #: C:\Users\John\Documents\Aptana
424
  #: Studio\Breadcrumb
425
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1126
426
  msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
427
  msgstr ""
428
 
429
  #: C:\Users\John\Documents\Aptana
430
  #: Studio\Breadcrumb
431
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1131
432
  msgid "Archive by Category Suffix"
433
  msgstr ""
434
 
435
  #: C:\Users\John\Documents\Aptana
436
  #: Studio\Breadcrumb
437
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1135
438
  msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
439
  msgstr ""
440
 
441
  #: C:\Users\John\Documents\Aptana
442
  #: Studio\Breadcrumb
443
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1145
444
  msgid "Tag Prefix"
445
  msgstr ""
446
 
447
  #: C:\Users\John\Documents\Aptana
448
  #: Studio\Breadcrumb
449
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1149
450
  msgid "Applied before the anchor on all tag breadcrumbs."
451
  msgstr ""
452
 
453
  #: C:\Users\John\Documents\Aptana
454
  #: Studio\Breadcrumb
455
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1154
456
  msgid "Tag Suffix"
457
  msgstr ""
458
 
459
  #: C:\Users\John\Documents\Aptana
460
  #: Studio\Breadcrumb
461
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1158
462
  msgid "Applied after the anchor on all tag breadcrumbs."
463
  msgstr ""
464
 
465
  #: C:\Users\John\Documents\Aptana
466
  #: Studio\Breadcrumb
467
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1163
468
  msgid "Tag Anchor"
469
  msgstr ""
470
 
471
  #: C:\Users\John\Documents\Aptana
472
  #: Studio\Breadcrumb
473
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1167
474
  msgid "The anchor template for tag breadcrumbs."
475
  msgstr ""
476
 
477
  #: C:\Users\John\Documents\Aptana
478
  #: Studio\Breadcrumb
479
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1172
480
  msgid "Archive by Tag Prefix"
481
  msgstr ""
482
 
483
  #: C:\Users\John\Documents\Aptana
484
  #: Studio\Breadcrumb
485
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1176
486
  msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
487
  msgstr ""
488
 
489
  #: C:\Users\John\Documents\Aptana
490
  #: Studio\Breadcrumb
491
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1181
492
  msgid "Archive by Tag Suffix"
493
  msgstr ""
494
 
495
  #: C:\Users\John\Documents\Aptana
496
  #: Studio\Breadcrumb
497
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1185
498
  msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
499
  msgstr ""
500
 
501
  #: C:\Users\John\Documents\Aptana
502
  #: Studio\Breadcrumb
503
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1203
504
+ #, php-format
505
+ msgid "%s Prefix"
506
+ msgstr ""
507
+
508
+ #: C:\Users\John\Documents\Aptana
509
+ #: Studio\Breadcrumb
510
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1207
511
+ #, php-format
512
+ msgid "Applied before the anchor on all %s breadcrumbs."
513
+ msgstr ""
514
+
515
+ #: C:\Users\John\Documents\Aptana
516
+ #: Studio\Breadcrumb
517
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1212
518
+ #, php-format
519
+ msgid "%s Suffix"
520
+ msgstr ""
521
+
522
+ #: C:\Users\John\Documents\Aptana
523
+ #: Studio\Breadcrumb
524
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1216
525
+ #, php-format
526
+ msgid "Applied after the anchor on all %s breadcrumbs."
527
+ msgstr ""
528
+
529
+ #: C:\Users\John\Documents\Aptana
530
+ #: Studio\Breadcrumb
531
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1221
532
+ #, php-format
533
+ msgid "%s Anchor"
534
+ msgstr ""
535
+
536
+ #: C:\Users\John\Documents\Aptana
537
+ #: Studio\Breadcrumb
538
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1225
539
+ #, php-format
540
+ msgid "The anchor template for %s breadcrumbs."
541
+ msgstr ""
542
+
543
+ #: C:\Users\John\Documents\Aptana
544
+ #: Studio\Breadcrumb
545
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1230
546
+ #, php-format
547
+ msgid "Archive by %s Prefix"
548
+ msgstr ""
549
+
550
+ #: C:\Users\John\Documents\Aptana
551
+ #: Studio\Breadcrumb
552
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1234
553
+ #, php-format
554
+ msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
555
+ msgstr ""
556
+
557
+ #: C:\Users\John\Documents\Aptana
558
+ #: Studio\Breadcrumb
559
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1239
560
+ #, php-format
561
+ msgid "Archive by %s Suffix"
562
+ msgstr ""
563
+
564
+ #: C:\Users\John\Documents\Aptana
565
+ #: Studio\Breadcrumb
566
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1243
567
+ #, php-format
568
+ msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
569
+ msgstr ""
570
+
571
+ #: C:\Users\John\Documents\Aptana
572
+ #: Studio\Breadcrumb
573
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1253
574
  msgid "Date Archives"
575
  msgstr ""
576
 
577
  #: C:\Users\John\Documents\Aptana
578
  #: Studio\Breadcrumb
579
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1257
580
  msgid "Archive by Date Prefix"
581
  msgstr ""
582
 
583
  #: C:\Users\John\Documents\Aptana
584
  #: Studio\Breadcrumb
585
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1261
586
  msgid "Applied before the anchor on all date breadcrumbs."
587
  msgstr ""
588
 
589
  #: C:\Users\John\Documents\Aptana
590
  #: Studio\Breadcrumb
591
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1266
592
  msgid "Archive by Date Suffix"
593
  msgstr ""
594
 
595
  #: C:\Users\John\Documents\Aptana
596
  #: Studio\Breadcrumb
597
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1270
598
  msgid "Applied after the anchor on all date breadcrumbs."
599
  msgstr ""
600
 
601
  #: C:\Users\John\Documents\Aptana
602
  #: Studio\Breadcrumb
603
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1275
604
  msgid "Date Anchor"
605
  msgstr ""
606
 
607
  #: C:\Users\John\Documents\Aptana
608
  #: Studio\Breadcrumb
609
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1279
610
  msgid "The anchor template for date breadcrumbs."
611
  msgstr ""
612
 
613
  #: C:\Users\John\Documents\Aptana
614
  #: Studio\Breadcrumb
615
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1285
616
  msgid "Miscellaneous"
617
  msgstr ""
618
 
619
  #: C:\Users\John\Documents\Aptana
620
  #: Studio\Breadcrumb
621
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1289
622
  msgid "Author Prefix"
623
  msgstr ""
624
 
625
  #: C:\Users\John\Documents\Aptana
626
  #: Studio\Breadcrumb
627
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1297
628
  msgid "Author Suffix"
629
  msgstr ""
630
 
631
  #: C:\Users\John\Documents\Aptana
632
  #: Studio\Breadcrumb
633
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1305
634
  msgid "Author Display Format"
635
  msgstr ""
636
 
637
  #: C:\Users\John\Documents\Aptana
638
  #: Studio\Breadcrumb
639
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1311
640
  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."
641
  msgstr ""
642
 
643
  #: C:\Users\John\Documents\Aptana
644
  #: Studio\Breadcrumb
645
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1316
646
  msgid "Search Prefix"
647
  msgstr ""
648
 
649
  #: C:\Users\John\Documents\Aptana
650
  #: Studio\Breadcrumb
651
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1324
652
  msgid "Search Suffix"
653
  msgstr ""
654
 
655
  #: C:\Users\John\Documents\Aptana
656
  #: Studio\Breadcrumb
657
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1332
658
  msgid "Search Anchor"
659
  msgstr ""
660
 
661
  #: C:\Users\John\Documents\Aptana
662
  #: Studio\Breadcrumb
663
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1336
664
  msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
665
  msgstr ""
666
 
667
  #: C:\Users\John\Documents\Aptana
668
  #: Studio\Breadcrumb
669
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1341
670
  msgid "404 Title"
671
  msgstr ""
672
 
673
  #: C:\Users\John\Documents\Aptana
674
  #: Studio\Breadcrumb
675
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1349
676
  msgid "404 Prefix"
677
  msgstr ""
678
 
679
  #: C:\Users\John\Documents\Aptana
680
  #: Studio\Breadcrumb
681
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1357
682
  msgid "404 Suffix"
683
  msgstr ""
684
 
685
  #: C:\Users\John\Documents\Aptana
686
  #: Studio\Breadcrumb
687
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1366
688
  msgid "Save Changes"
689
  msgstr ""
690
 
691
  #: C:\Users\John\Documents\Aptana
692
  #: Studio\Breadcrumb
693
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1372
694
  msgid "Import/Export/Reset Settings"
695
  msgstr ""
696
 
697
  #: C:\Users\John\Documents\Aptana
698
  #: Studio\Breadcrumb
699
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1373
700
  msgid "Import Breadcrumb NavXT settings from a XML file, export the current settings to a XML file, or reset to the default Breadcrumb NavXT settings."
701
  msgstr ""
702
 
703
  #: C:\Users\John\Documents\Aptana
704
  #: Studio\Breadcrumb
705
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1377
706
  msgid "Settings File"
707
  msgstr ""
708
 
709
  #: C:\Users\John\Documents\Aptana
710
  #: Studio\Breadcrumb
711
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1381
712
  msgid "Select a XML settings file to upload and import settings from."
713
  msgstr ""
714
 
715
  #: C:\Users\John\Documents\Aptana
716
  #: Studio\Breadcrumb
717
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1518
718
  msgid "Importing settings from file failed."
719
  msgstr ""
720
 
721
  #: C:\Users\John\Documents\Aptana
722
  #: Studio\Breadcrumb
723
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1528
724
  msgid "The Breadcrumb NavXT settings were successfully imported from file."
725
  msgstr ""
726
 
727
  #: C:\Users\John\Documents\Aptana
728
  #: Studio\Breadcrumb
729
+ #: NavXT\trunk/breadcrumb_navxt_admin.php:1538
730
  msgid "The Breadcrumb NavXT settings were reset to the default values."
731
  msgstr ""
732
 
733
  #: C:\Users\John\Documents\Aptana
734
  #: Studio\Breadcrumb
735
+ #: NavXT\trunk/breadcrumb_navxt_class.php:149
736
  msgid "Blog"
737
  msgstr ""
738
 
739
  #: C:\Users\John\Documents\Aptana
740
  #: Studio\Breadcrumb
741
+ #: NavXT\trunk/breadcrumb_navxt_class.php:151
742
+ #: NavXT\trunk/breadcrumb_navxt_class.php:155
743
+ #: NavXT\trunk/breadcrumb_navxt_class.php:179
744
+ #: NavXT\trunk/breadcrumb_navxt_class.php:193
745
  msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
746
  msgstr ""
747
 
748
  #: C:\Users\John\Documents\Aptana
749
  #: Studio\Breadcrumb
750
+ #: NavXT\trunk/breadcrumb_navxt_class.php:168
751
  msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
752
  msgstr ""
753
 
754
  #: C:\Users\John\Documents\Aptana
755
  #: Studio\Breadcrumb
756
+ #: NavXT\trunk/breadcrumb_navxt_class.php:209
757
  msgid "404"
758
  msgstr ""
759
 
760
  #: C:\Users\John\Documents\Aptana
761
  #: Studio\Breadcrumb
762
+ #: NavXT\trunk/breadcrumb_navxt_class.php:212
763
  msgid "Search results for &#39;"
764
  msgstr ""
765
 
766
  #: C:\Users\John\Documents\Aptana
767
  #: Studio\Breadcrumb
768
+ #: NavXT\trunk/breadcrumb_navxt_class.php:223
769
  msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
770
  msgstr ""
771
 
772
  #: C:\Users\John\Documents\Aptana
773
  #: Studio\Breadcrumb
774
+ #: NavXT\trunk/breadcrumb_navxt_class.php:226
775
  msgid "Articles by: "
776
  msgstr ""
777
 
778
  #: C:\Users\John\Documents\Aptana
779
  #: Studio\Breadcrumb
780
+ #: NavXT\trunk/breadcrumb_navxt_class.php:230
781
  msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
782
  msgstr ""
783
 
784
  #: C:\Users\John\Documents\Aptana
785
  #: Studio\Breadcrumb
786
+ #: NavXT\trunk/breadcrumb_navxt_class.php:239
787
  msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
788
  msgstr ""
789
 
790
  #: C:\Users\John\Documents\Aptana
791
  #: Studio\Breadcrumb
792
+ #: NavXT\trunk/breadcrumb_navxt_class.php:242
793
  msgid "Archive by category &#39;"
794
  msgstr ""
795
 
796
  #: C:\Users\John\Documents\Aptana
797
  #: Studio\Breadcrumb
798
+ #: NavXT\trunk/breadcrumb_navxt_class.php:246
799
  msgid "Archive by tag &#39;"
800
  msgstr ""
801
 
802
  #: C:\Users\John\Documents\Aptana
803
  #: Studio\Breadcrumb
804
+ #: NavXT\trunk/breadcrumb_navxt_class.php:249
805
  msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
806
  msgstr ""
807
 
808
  #: C:\Users\John\Documents\Aptana
809
  #: Studio\Breadcrumb
810
+ #: NavXT\trunk/breadcrumb_navxt_class.php:488
811
  msgid "Untagged"
812
  msgstr ""
813
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: mtekk, hakre
3
  Tags: breadcrumb, navigation
4
  Requires at least: 2.6
5
- Tested up to: 2.8
6
- Stable tag: 3.3.0
7
  Adds breadcrumb navigation showing the visitor's path to their current location.
8
 
9
  == Description ==
@@ -21,6 +21,8 @@ Breadcrumb NavXT distributes with translations for the following languages:
21
  * Dutch by Stan Lenssen
22
  * Russian by Yuri Gribov
23
  * Swedish by Patrik Spathon
 
 
24
 
25
  Don't see your language on the list? Feel free to translate Breadcrumb NavXT and send John Havlik the translations.
26
 
@@ -30,6 +32,12 @@ Please visit [Breadcrumb NavXT's](http://mtekk.weblogs.us/code/breadcrumb-navxt/
30
 
31
  == Changelog ==
32
 
 
 
 
 
 
 
33
  = 3.3.0 =
34
  * Behavior change: The core plugin was removed, and administrative plugin renamed, direct class access still possible.
35
  * New feature: Ability to trim the title length for all breadcrumbs in the trail.
2
  Contributors: mtekk, hakre
3
  Tags: breadcrumb, navigation
4
  Requires at least: 2.6
5
+ Tested up to: 2.9
6
+ Stable tag: 3.4.0
7
  Adds breadcrumb navigation showing the visitor's path to their current location.
8
 
9
  == Description ==
21
  * Dutch by Stan Lenssen
22
  * Russian by Yuri Gribov
23
  * Swedish by Patrik Spathon
24
+ * Italian by Luca Camellini
25
+
26
 
27
  Don't see your language on the list? Feel free to translate Breadcrumb NavXT and send John Havlik the translations.
28
 
32
 
33
  == Changelog ==
34
 
35
+ = 3.4.0 =
36
+ * New feature: Proper support of custom taxonomies. category_parents and post_tags replaced with term_parents and post_terms.
37
+ * New feature: Ability to use date as post �taxonomy�.
38
+ * New feature: Translations for Italian now included thanks to Luca Camellini.
39
+ * Bug fix: Fixed permalink for day breadcrumbs.
40
+ * Bug fix: Flat taxonomy archive breadcrumbs now are surrounded by both the standard and archive prefix/suffix combination.
41
  = 3.3.0 =
42
  * Behavior change: The core plugin was removed, and administrative plugin renamed, direct class access still possible.
43
  * New feature: Ability to trim the title length for all breadcrumbs in the trail.
uninstall.php CHANGED
@@ -13,8 +13,8 @@
13
  * @see http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7#Uninstall_Plugin_API
14
  * @see http://trac.mu.wordpress.org/ticket/967
15
  *
16
- * this uninstall.php file is executed multiple times because
17
- * breadcrumb navxt (still) constsists of two plugins:
18
  *
19
  * 1.) breadcrumb_navxt_class.php / Core
20
  * 2.) breadcrumb_navxt_admin.php / Adminstration Interface
13
  * @see http://codex.wordpress.org/Migrating_Plugins_and_Themes_to_2.7#Uninstall_Plugin_API
14
  * @see http://trac.mu.wordpress.org/ticket/967
15
  *
16
+ * this uninstall.php file was executed multiple times because
17
+ * breadcrumb navxt (until 3.3) constsisted of two plugins:
18
  *
19
  * 1.) breadcrumb_navxt_class.php / Core
20
  * 2.) breadcrumb_navxt_admin.php / Adminstration Interface