Version Description
- New feature: Norwegian translations added props to Jan Rosvoldsve.
- Bug fix: Fixed line 591 and line 646 errors in multisite installs.
- Bug fix: Attachments will now obey the root page setting for their parent, regardless of the parents post type.
Download this release
Release Info
Developer | mtekk |
Plugin | Breadcrumb NavXT |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- breadcrumb_navxt_admin.php +24 -8
- breadcrumb_navxt_class.php +14 -6
- includes/mtekk_adminkit.php +1 -1
- includes/multibyte_supplicant.php +1 -1
- languages/breadcrumb-navxt-nb.mo +0 -0
- languages/breadcrumb-navxt-nb.po +709 -0
- languages/breadcrumb_navxt-es_ES.mo +0 -0
- languages/breadcrumb_navxt-es_ES.po +777 -0
- readme.txt +6 -2
breadcrumb_navxt_admin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 4.0.
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.us/
|
9 |
License: GPL2
|
@@ -11,7 +11,7 @@ TextDomain: breadcrumb_navxt
|
|
11 |
DomainPath: /languages/
|
12 |
|
13 |
*/
|
14 |
-
/* Copyright 2007-
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License as published by
|
@@ -61,7 +61,7 @@ if(!class_exists('mtekk_adminKit'))
|
|
61 |
*/
|
62 |
class bcn_admin extends mtekk_adminKit
|
63 |
{
|
64 |
-
protected $version = '4.0.
|
65 |
protected $full_name = 'Breadcrumb NavXT Settings';
|
66 |
protected $short_name = 'Breadcrumb NavXT';
|
67 |
protected $access_level = 'manage_options';
|
@@ -77,11 +77,10 @@ class bcn_admin extends mtekk_adminKit
|
|
77 |
{
|
78 |
//We'll let it fail fataly if the class isn't there as we depend on it
|
79 |
$this->breadcrumb_trail = new bcn_breadcrumb_trail;
|
80 |
-
//First make sure our defaults are safe
|
81 |
-
$this->find_posttypes($this->breadcrumb_trail->opt);
|
82 |
-
$this->find_taxonomies($this->breadcrumb_trail->opt);
|
83 |
//Grab defaults from the breadcrumb_trail object
|
84 |
$this->opt = $this->breadcrumb_trail->opt;
|
|
|
|
|
85 |
//We set the plugin basename here, could manually set it, but this is for demonstration purposes
|
86 |
//$this->plugin_basename = plugin_basename(__FILE__);
|
87 |
//Register the WordPress 2.8 Widget
|
@@ -102,6 +101,12 @@ class bcn_admin extends mtekk_adminKit
|
|
102 |
//We're going to make sure we run the parent's version of this function as well
|
103 |
parent::init();
|
104 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
/**
|
106 |
* Makes sure the current user can manage options to proceed
|
107 |
*/
|
@@ -176,6 +181,17 @@ class bcn_admin extends mtekk_adminKit
|
|
176 |
}
|
177 |
$opts = $this->breadcrumb_trail->opt;
|
178 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
//Add custom post types
|
180 |
$this->find_posttypes($opts);
|
181 |
//Add custom taxonomy types
|
@@ -367,8 +383,8 @@ class bcn_admin extends mtekk_adminKit
|
|
367 |
<table class="form-table">
|
368 |
<?php
|
369 |
$this->input_check(__('Link Current Item', 'breadcrumb_navxt'), 'bcurrent_item_linked', __('Yes'));
|
370 |
-
|
371 |
-
|
372 |
$this->input_check(__('Paged Breadcrumb', 'breadcrumb_navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb_navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb_navxt'));
|
373 |
$this->input_text(__('Paged Template', 'breadcrumb_navxt'), 'Hpaged_template', '64', false, __('The template for paged breadcrumbs.', 'breadcrumb_navxt'));
|
374 |
?>
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 4.0.1
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.us/
|
9 |
License: GPL2
|
11 |
DomainPath: /languages/
|
12 |
|
13 |
*/
|
14 |
+
/* Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
15 |
|
16 |
This program is free software; you can redistribute it and/or modify
|
17 |
it under the terms of the GNU General Public License as published by
|
61 |
*/
|
62 |
class bcn_admin extends mtekk_adminKit
|
63 |
{
|
64 |
+
protected $version = '4.0.1';
|
65 |
protected $full_name = 'Breadcrumb NavXT Settings';
|
66 |
protected $short_name = 'Breadcrumb NavXT';
|
67 |
protected $access_level = 'manage_options';
|
77 |
{
|
78 |
//We'll let it fail fataly if the class isn't there as we depend on it
|
79 |
$this->breadcrumb_trail = new bcn_breadcrumb_trail;
|
|
|
|
|
|
|
80 |
//Grab defaults from the breadcrumb_trail object
|
81 |
$this->opt = $this->breadcrumb_trail->opt;
|
82 |
+
//We need to add in the defaults for CPTs and custom taxonomies after all other plugins are loaded
|
83 |
+
add_action('wp_loaded', array($this, 'wp_loaded'));
|
84 |
//We set the plugin basename here, could manually set it, but this is for demonstration purposes
|
85 |
//$this->plugin_basename = plugin_basename(__FILE__);
|
86 |
//Register the WordPress 2.8 Widget
|
101 |
//We're going to make sure we run the parent's version of this function as well
|
102 |
parent::init();
|
103 |
}
|
104 |
+
function wp_loaded()
|
105 |
+
{
|
106 |
+
//First make sure our defaults are safe
|
107 |
+
$this->find_posttypes($this->opt);
|
108 |
+
$this->find_taxonomies($this->opt);
|
109 |
+
}
|
110 |
/**
|
111 |
* Makes sure the current user can manage options to proceed
|
112 |
*/
|
181 |
}
|
182 |
$opts = $this->breadcrumb_trail->opt;
|
183 |
}
|
184 |
+
if(version_compare($version, '4.0.1', '<'))
|
185 |
+
{
|
186 |
+
if(isset($opts['Hcurrent_item_template_no_anchor']))
|
187 |
+
{
|
188 |
+
unset($opts['Hcurrent_item_template_no_anchor']);
|
189 |
+
}
|
190 |
+
if(isset($opts['Hcurrent_item_template']))
|
191 |
+
{
|
192 |
+
unset($opts['Hcurrent_item_template']);
|
193 |
+
}
|
194 |
+
}
|
195 |
//Add custom post types
|
196 |
$this->find_posttypes($opts);
|
197 |
//Add custom taxonomy types
|
383 |
<table class="form-table">
|
384 |
<?php
|
385 |
$this->input_check(__('Link Current Item', 'breadcrumb_navxt'), 'bcurrent_item_linked', __('Yes'));
|
386 |
+
//$this->input_text(__('Current Item Template', 'breadcrumb_navxt'), 'Hcurrent_item_template', '64', false, __('The template for current item breadcrumbs.', 'breadcrumb_navxt'));
|
387 |
+
//$this->input_text(__('Current Item Template (Unlinked)', 'breadcrumb_navxt'), 'Hcurrent_item_template_no_anchor', '64', false, __('The template for current item breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb_navxt'));
|
388 |
$this->input_check(__('Paged Breadcrumb', 'breadcrumb_navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb_navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb_navxt'));
|
389 |
$this->input_text(__('Paged Template', 'breadcrumb_navxt'), 'Hpaged_template', '64', false, __('The template for paged breadcrumbs.', 'breadcrumb_navxt'));
|
390 |
?>
|
breadcrumb_navxt_class.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2007-
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
@@ -185,7 +185,7 @@ class bcn_breadcrumb
|
|
185 |
class bcn_breadcrumb_trail
|
186 |
{
|
187 |
//Our member variables
|
188 |
-
private $version = '4.0.
|
189 |
//An array of breadcrumbs
|
190 |
public $trail = array();
|
191 |
//The options
|
@@ -227,9 +227,9 @@ class bcn_breadcrumb_trail
|
|
227 |
//Current item options, really only applies to static pages and posts unless other current items are linked
|
228 |
'bcurrent_item_linked' => false,
|
229 |
//The breadcrumb template for current items, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
230 |
-
'Hcurrent_item_template' => __('<a title="Reload the current page." href="%link%">%htitle%</a>', 'breadcrumb_navxt'),
|
231 |
//The breadcrumb template for current items, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
232 |
-
'Hcurrent_item_template_no_anchor' => '%htitle%',
|
233 |
//Static page options
|
234 |
//The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
235 |
'Hpost_page_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb_navxt'),
|
@@ -788,8 +788,16 @@ class bcn_breadcrumb_trail
|
|
788 |
function do_root()
|
789 |
{
|
790 |
global $post, $wp_query, $wp_taxonomies, $current_site;
|
791 |
-
//
|
792 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
793 |
//We need to do special things for custom post types
|
794 |
if(is_singular() && !$this->is_builtin($type->post_type))
|
795 |
{
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
185 |
class bcn_breadcrumb_trail
|
186 |
{
|
187 |
//Our member variables
|
188 |
+
private $version = '4.0.1';
|
189 |
//An array of breadcrumbs
|
190 |
public $trail = array();
|
191 |
//The options
|
227 |
//Current item options, really only applies to static pages and posts unless other current items are linked
|
228 |
'bcurrent_item_linked' => false,
|
229 |
//The breadcrumb template for current items, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
230 |
+
//'Hcurrent_item_template' => __('<a title="Reload the current page." href="%link%">%htitle%</a>', 'breadcrumb_navxt'),
|
231 |
//The breadcrumb template for current items, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
232 |
+
//'Hcurrent_item_template_no_anchor' => '%htitle%',
|
233 |
//Static page options
|
234 |
//The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
235 |
'Hpost_page_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb_navxt'),
|
788 |
function do_root()
|
789 |
{
|
790 |
global $post, $wp_query, $wp_taxonomies, $current_site;
|
791 |
+
//If this is an attachment then we need to change the queried object to the parent post
|
792 |
+
if(is_attachment())
|
793 |
+
{
|
794 |
+
$type = get_post($post->post_parent);
|
795 |
+
}
|
796 |
+
else
|
797 |
+
{
|
798 |
+
//Simmilar to using $post, but for things $post doesn't cover
|
799 |
+
$type = $wp_query->get_queried_object();
|
800 |
+
}
|
801 |
//We need to do special things for custom post types
|
802 |
if(is_singular() && !$this->is_builtin($type->post_type))
|
803 |
{
|
includes/mtekk_adminkit.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Copyright 2009-
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2009-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
4 |
|
5 |
This program is free software; you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
includes/multibyte_supplicant.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
A small library that adds in fallbacks for some of the PHP multibyte string
|
4 |
functions. Mainly inteneded to be used with Breadcrumb NavXT
|
5 |
|
6 |
-
Copyright 2009-
|
7 |
|
8 |
This program is free software; you can redistribute it and/or modify
|
9 |
it under the terms of the GNU General Public License as published by
|
3 |
A small library that adds in fallbacks for some of the PHP multibyte string
|
4 |
functions. Mainly inteneded to be used with Breadcrumb NavXT
|
5 |
|
6 |
+
Copyright 2009-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
7 |
|
8 |
This program is free software; you can redistribute it and/or modify
|
9 |
it under the terms of the GNU General Public License as published by
|
languages/breadcrumb-navxt-nb.mo
ADDED
Binary file
|
languages/breadcrumb-navxt-nb.po
ADDED
@@ -0,0 +1,709 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Breadcrumb NavXT in Norwegian (Bokmål)
|
2 |
+
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-01-04 03:02:27+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
+
|
13 |
+
#: breadcrumb_navxt_widget.php:32
|
14 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
15 |
+
msgstr "Legger til breadcrumbs-sti i din sidebar"
|
16 |
+
|
17 |
+
#: breadcrumb_navxt_widget.php:93
|
18 |
+
msgid "Title:"
|
19 |
+
msgstr "Tittel:"
|
20 |
+
|
21 |
+
#: breadcrumb_navxt_widget.php:97
|
22 |
+
msgid "Output trail as:"
|
23 |
+
msgstr "Skriv stiens utdata som:"
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_widget.php:99
|
26 |
+
msgid "List"
|
27 |
+
msgstr "Liste"
|
28 |
+
|
29 |
+
#: breadcrumb_navxt_widget.php:100
|
30 |
+
msgid "RDFa"
|
31 |
+
msgstr "RDFa"
|
32 |
+
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
+
msgid "Microformat"
|
35 |
+
msgstr "Mikroformat"
|
36 |
+
|
37 |
+
#: breadcrumb_navxt_widget.php:102
|
38 |
+
msgid "Plain"
|
39 |
+
msgstr "Ordinær"
|
40 |
+
|
41 |
+
#: breadcrumb_navxt_widget.php:107
|
42 |
+
msgid "Link the breadcrumbs"
|
43 |
+
msgstr "Lenke breadcrumbs"
|
44 |
+
|
45 |
+
#: breadcrumb_navxt_widget.php:109
|
46 |
+
msgid "Reverse the order of the trail"
|
47 |
+
msgstr "Reverser rekkefølgen på stien"
|
48 |
+
|
49 |
+
#: breadcrumb_navxt_widget.php:111
|
50 |
+
msgid "Hide the trail on the front page"
|
51 |
+
msgstr "Skjul stien på hovedsiden"
|
52 |
+
|
53 |
+
#: breadcrumb_navxt_admin.php:36
|
54 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
55 |
+
msgstr "Din PHP-versjon er for gammel. Vennligst oppgrader til en nyere versjon. Din versjon er %s, Breadcrumb NavXT krever %s"
|
56 |
+
|
57 |
+
#: breadcrumb_navxt_admin.php:113
|
58 |
+
msgid "Insufficient privileges to proceed."
|
59 |
+
msgstr "Utilstrekkelige rettigheter for å fortsette."
|
60 |
+
|
61 |
+
#: breadcrumb_navxt_admin.php:204
|
62 |
+
msgid "Tips for the settings are located below select options."
|
63 |
+
msgstr "Tips for innstillinger finnes under \"Velg alternativer\"."
|
64 |
+
|
65 |
+
#: breadcrumb_navxt_admin.php:205
|
66 |
+
msgid "Resources"
|
67 |
+
msgstr "Resurser"
|
68 |
+
|
69 |
+
#: breadcrumb_navxt_admin.php:206
|
70 |
+
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
71 |
+
msgstr "%sTutorials and How Tos%s: Det er flere guider, \"tutorials\" og \"how tos\" tilgjengelig på forfatterens hjemmeside."
|
72 |
+
|
73 |
+
#: breadcrumb_navxt_admin.php:206
|
74 |
+
msgid "Go to the Breadcrumb NavXT tag archive."
|
75 |
+
msgstr "Gå til Breadcrumb NavXT stikkordsarkiv."
|
76 |
+
|
77 |
+
#: breadcrumb_navxt_admin.php:207
|
78 |
+
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
79 |
+
msgstr "%sOnline Dokumentasjon%s: Dokumentasjon for mer avansert teknisk informasjon."
|
80 |
+
|
81 |
+
#: breadcrumb_navxt_admin.php:207
|
82 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
83 |
+
msgstr "Gå til Breadcrumb NavXT online dokumentasjon"
|
84 |
+
|
85 |
+
#: breadcrumb_navxt_admin.php:208
|
86 |
+
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
87 |
+
msgstr "%sRaporter en Bug%s: Hvis du tror du har funnet en bug, vennligst inkluder din WordPress-versjon og detaljer om hvordan reprodusere buggen."
|
88 |
+
|
89 |
+
#: breadcrumb_navxt_admin.php:208 breadcrumb_navxt_admin.php:211
|
90 |
+
msgid "Go to the Breadcrumb NavXT support post for your version."
|
91 |
+
msgstr "Gå til Breadcrumb NavXT support for din versjon."
|
92 |
+
|
93 |
+
#: breadcrumb_navxt_admin.php:209
|
94 |
+
msgid "Giving Back"
|
95 |
+
msgstr "Gi Tilbake"
|
96 |
+
|
97 |
+
#: breadcrumb_navxt_admin.php:210
|
98 |
+
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
99 |
+
msgstr "%sDonate%s: Liker Breadcrumb NavXT og ønsker å bidra til utviklingen? Vurder å spandere en øl på forfatteren."
|
100 |
+
|
101 |
+
#: breadcrumb_navxt_admin.php:210
|
102 |
+
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
103 |
+
msgstr "Gå til PayPal for å gi en donasjon til Breadcrumb NavXT."
|
104 |
+
|
105 |
+
#: breadcrumb_navxt_admin.php:211
|
106 |
+
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
107 |
+
msgstr "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
108 |
+
|
109 |
+
#: breadcrumb_navxt_admin.php:216 breadcrumb_navxt_admin.php:307
|
110 |
+
msgid "General"
|
111 |
+
msgstr "Generelt"
|
112 |
+
|
113 |
+
#: breadcrumb_navxt_admin.php:219
|
114 |
+
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
115 |
+
msgstr "For at innstillingene på denne siden skal gjelde må du enten bruke den medfølgende Breadcrumb NavXT widget, eller bruke en av kodeseksjonene nedenfor i temaet ditt."
|
116 |
+
|
117 |
+
#: breadcrumb_navxt_admin.php:220
|
118 |
+
msgid "Breadcrumb trail with separators"
|
119 |
+
msgstr "Breadcrumb-sti med skilletegn"
|
120 |
+
|
121 |
+
#: breadcrumb_navxt_admin.php:226
|
122 |
+
msgid "Breadcrumb trail in list form"
|
123 |
+
msgstr "Breadcrumb-sti i listeform"
|
124 |
+
|
125 |
+
#: breadcrumb_navxt_admin.php:235
|
126 |
+
msgid "Quick Start"
|
127 |
+
msgstr "Hurtig-Start"
|
128 |
+
|
129 |
+
#: breadcrumb_navxt_admin.php:238
|
130 |
+
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
131 |
+
msgstr "Bruker du koden fra Hurtig-Start seksjonen ovenfor, kan følgende CSS brukes som utgangspunkt for å style breadcrumb-stien."
|
132 |
+
|
133 |
+
#: breadcrumb_navxt_admin.php:250
|
134 |
+
msgid "Styling"
|
135 |
+
msgstr "Styling"
|
136 |
+
|
137 |
+
#: breadcrumb_navxt_admin.php:256
|
138 |
+
msgid "Import/Export/Reset"
|
139 |
+
msgstr "Import/Eksport/Tilbakestille Innstillinger"
|
140 |
+
|
141 |
+
#: breadcrumb_navxt_admin.php:280 includes/mtekk_adminkit.php:765
|
142 |
+
msgid "Import"
|
143 |
+
msgstr "Import"
|
144 |
+
|
145 |
+
#: breadcrumb_navxt_admin.php:281 includes/mtekk_adminkit.php:766
|
146 |
+
msgid "Export"
|
147 |
+
msgstr "Eksport"
|
148 |
+
|
149 |
+
#: breadcrumb_navxt_admin.php:282 includes/mtekk_adminkit.php:767
|
150 |
+
msgid "Reset"
|
151 |
+
msgstr "Tilbakestille"
|
152 |
+
|
153 |
+
#: breadcrumb_navxt_admin.php:295
|
154 |
+
msgid "Breadcrumb NavXT Settings"
|
155 |
+
msgstr "Breadcrumb NavXT Innstillinger"
|
156 |
+
|
157 |
+
#: breadcrumb_navxt_admin.php:310
|
158 |
+
msgid "Breadcrumb Separator"
|
159 |
+
msgstr "Breadcrumb Skilletegn"
|
160 |
+
|
161 |
+
#: breadcrumb_navxt_admin.php:310
|
162 |
+
msgid "Placed in between each breadcrumb."
|
163 |
+
msgstr "Settes inn mellom hver breadcrumb."
|
164 |
+
|
165 |
+
#: breadcrumb_navxt_admin.php:311
|
166 |
+
msgid "Breadcrumb Max Title Length"
|
167 |
+
msgstr "Breadcrumb Max Tittellengde"
|
168 |
+
|
169 |
+
#: breadcrumb_navxt_admin.php:315
|
170 |
+
msgid "Home Breadcrumb"
|
171 |
+
msgstr "Hjem Breadcrumb"
|
172 |
+
|
173 |
+
#: breadcrumb_navxt_admin.php:320
|
174 |
+
msgid "Place the home breadcrumb in the trail."
|
175 |
+
msgstr "Sett inn hjem-breadcrumb i stien."
|
176 |
+
|
177 |
+
#: breadcrumb_navxt_admin.php:325
|
178 |
+
msgid "Home Title: "
|
179 |
+
msgstr "Hjem-Tittel:"
|
180 |
+
|
181 |
+
#: breadcrumb_navxt_admin.php:333
|
182 |
+
msgid "Home Template"
|
183 |
+
msgstr "Hjem-Mal"
|
184 |
+
|
185 |
+
#: breadcrumb_navxt_admin.php:333
|
186 |
+
msgid "The template for the home breadcrumb."
|
187 |
+
msgstr "Mal for hjem-breadcrumb."
|
188 |
+
|
189 |
+
#: breadcrumb_navxt_admin.php:334
|
190 |
+
msgid "Home Template (Unlinked)"
|
191 |
+
msgstr "Hjem-Mal (ulenket)"
|
192 |
+
|
193 |
+
#: breadcrumb_navxt_admin.php:334
|
194 |
+
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
195 |
+
msgstr "Mal for hjem-breadcrumb, brukes når breadcrumb ikke er lenket."
|
196 |
+
|
197 |
+
#: breadcrumb_navxt_admin.php:335
|
198 |
+
msgid "Blog Breadcrumb"
|
199 |
+
msgstr "Blogg Breadcrumb"
|
200 |
+
|
201 |
+
#: breadcrumb_navxt_admin.php:335
|
202 |
+
msgid "Place the blog breadcrumb in the trail."
|
203 |
+
msgstr "Sett inn blogg-breadcrumb i stien."
|
204 |
+
|
205 |
+
#: breadcrumb_navxt_admin.php:336
|
206 |
+
msgid "Blog Template"
|
207 |
+
msgstr "Blogg-Mal"
|
208 |
+
|
209 |
+
#: breadcrumb_navxt_admin.php:336
|
210 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
211 |
+
msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside."
|
212 |
+
|
213 |
+
#: breadcrumb_navxt_admin.php:337
|
214 |
+
msgid "Blog Template (Unlinked)"
|
215 |
+
msgstr "Blogg-Mal (ulenket)"
|
216 |
+
|
217 |
+
#: breadcrumb_navxt_admin.php:337
|
218 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
219 |
+
msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside og når breadcrumb ikke er lenket."
|
220 |
+
|
221 |
+
#: breadcrumb_navxt_admin.php:341
|
222 |
+
msgid "Main Site Breadcrumb"
|
223 |
+
msgstr "Hovedsidens Breadcrumb"
|
224 |
+
|
225 |
+
#: breadcrumb_navxt_admin.php:346
|
226 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
227 |
+
msgstr "Sett inn hovedsidens hjem-breadcrumb i stien i et multisite-oppsett."
|
228 |
+
|
229 |
+
#: breadcrumb_navxt_admin.php:351
|
230 |
+
msgid "Main Site Home Title: "
|
231 |
+
msgstr "Hovedsidens Hjem-Tittel:"
|
232 |
+
|
233 |
+
#: breadcrumb_navxt_admin.php:360
|
234 |
+
msgid "Main Site Home Template"
|
235 |
+
msgstr "Hovedsidens Hjem-Mal"
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:360
|
238 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
239 |
+
msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett."
|
240 |
+
|
241 |
+
#: breadcrumb_navxt_admin.php:361
|
242 |
+
msgid "Main Site Home Template (Unlinked)"
|
243 |
+
msgstr "Hovedsidens Hjem-Mal (ulenket)"
|
244 |
+
|
245 |
+
#: breadcrumb_navxt_admin.php:361
|
246 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
247 |
+
msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett og når breadcrumb ikke er lenket."
|
248 |
+
|
249 |
+
#: breadcrumb_navxt_admin.php:366
|
250 |
+
msgid "Current Item"
|
251 |
+
msgstr "Aktuelle Element"
|
252 |
+
|
253 |
+
#: breadcrumb_navxt_admin.php:369
|
254 |
+
msgid "Link Current Item"
|
255 |
+
msgstr "Lenke Aktuelle Element"
|
256 |
+
|
257 |
+
#: breadcrumb_navxt_admin.php:369
|
258 |
+
msgid "Yes"
|
259 |
+
msgstr "Ja"
|
260 |
+
|
261 |
+
#: breadcrumb_navxt_admin.php:370
|
262 |
+
msgid "Current Item Template"
|
263 |
+
msgstr "Aktuelle Element Mal"
|
264 |
+
|
265 |
+
#: breadcrumb_navxt_admin.php:370
|
266 |
+
msgid "The template for current item breadcrumbs."
|
267 |
+
msgstr "Mal for aktuelle element breadcrumbs."
|
268 |
+
|
269 |
+
#: breadcrumb_navxt_admin.php:371
|
270 |
+
msgid "Current Item Template (Unlinked)"
|
271 |
+
msgstr "Aktuelle Element Mal (ulenket)"
|
272 |
+
|
273 |
+
#: breadcrumb_navxt_admin.php:371
|
274 |
+
msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
|
275 |
+
msgstr "Mal for aktuelle element breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
276 |
+
|
277 |
+
#: breadcrumb_navxt_admin.php:372
|
278 |
+
msgid "Paged Breadcrumb"
|
279 |
+
msgstr "Sidebestemt Breadcrumb"
|
280 |
+
|
281 |
+
#: breadcrumb_navxt_admin.php:372
|
282 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
283 |
+
msgstr "Inkluder sidebestemt breadcrumb i stien."
|
284 |
+
|
285 |
+
#: breadcrumb_navxt_admin.php:372
|
286 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
287 |
+
msgstr "Indikerer at brukeren er på en annen side enn den første i paginerte innlegg eller sider."
|
288 |
+
|
289 |
+
#: breadcrumb_navxt_admin.php:373
|
290 |
+
msgid "Paged Template"
|
291 |
+
msgstr "Sidebestemt-Mal"
|
292 |
+
|
293 |
+
#: breadcrumb_navxt_admin.php:373
|
294 |
+
msgid "The template for paged breadcrumbs."
|
295 |
+
msgstr "Mal for sidebestemt breadcrumbs."
|
296 |
+
|
297 |
+
#: breadcrumb_navxt_admin.php:378
|
298 |
+
msgid "Posts & Pages"
|
299 |
+
msgstr "Innlegg & Sider"
|
300 |
+
|
301 |
+
#: breadcrumb_navxt_admin.php:381
|
302 |
+
msgid "Post Template"
|
303 |
+
msgstr "Innlegg-Mal"
|
304 |
+
|
305 |
+
#: breadcrumb_navxt_admin.php:381
|
306 |
+
msgid "The template for post breadcrumbs."
|
307 |
+
msgstr "Mal for innlegg-breadcrumbs."
|
308 |
+
|
309 |
+
#: breadcrumb_navxt_admin.php:382
|
310 |
+
msgid "Post Template (Unlinked)"
|
311 |
+
msgstr "Innlegg-Mal (ulenket)"
|
312 |
+
|
313 |
+
#: breadcrumb_navxt_admin.php:382
|
314 |
+
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
315 |
+
msgstr "Mal for innlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
316 |
+
|
317 |
+
#: breadcrumb_navxt_admin.php:383
|
318 |
+
msgid "Post Taxonomy Display"
|
319 |
+
msgstr "Innleggsgruppe Visning"
|
320 |
+
|
321 |
+
#: breadcrumb_navxt_admin.php:383
|
322 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
323 |
+
msgstr "Vis gruppenavnet som peker til et innlegg i stien."
|
324 |
+
|
325 |
+
#: breadcrumb_navxt_admin.php:387
|
326 |
+
msgid "Post Taxonomy"
|
327 |
+
msgstr "Innleggsgruppe"
|
328 |
+
|
329 |
+
#: breadcrumb_navxt_admin.php:391
|
330 |
+
msgid "Categories"
|
331 |
+
msgstr "Kategorier"
|
332 |
+
|
333 |
+
#: breadcrumb_navxt_admin.php:392 breadcrumb_navxt_admin.php:490
|
334 |
+
msgid "Dates"
|
335 |
+
msgstr "Datoer"
|
336 |
+
|
337 |
+
#: breadcrumb_navxt_admin.php:393
|
338 |
+
msgid "Tags"
|
339 |
+
msgstr "Stikkord"
|
340 |
+
|
341 |
+
#: breadcrumb_navxt_admin.php:394 breadcrumb_navxt_admin.php:491
|
342 |
+
msgid "Pages"
|
343 |
+
msgstr "Sider"
|
344 |
+
|
345 |
+
#: breadcrumb_navxt_admin.php:405 breadcrumb_navxt_admin.php:502
|
346 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
347 |
+
msgstr "Gruppenavnet som breadcrumb-stien vil vise."
|
348 |
+
|
349 |
+
#: breadcrumb_navxt_admin.php:409
|
350 |
+
msgid "Page Template"
|
351 |
+
msgstr "Side-Mal"
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:409
|
354 |
+
msgid "The template for page breadcrumbs."
|
355 |
+
msgstr "Mal for side-breadcrumbs."
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:410
|
358 |
+
msgid "Page Template (Unlinked)"
|
359 |
+
msgstr "Side-Mal (ulenket)"
|
360 |
+
|
361 |
+
#: breadcrumb_navxt_admin.php:410
|
362 |
+
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
363 |
+
msgstr "Mal for side-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
364 |
+
|
365 |
+
#: breadcrumb_navxt_admin.php:411
|
366 |
+
msgid "Attachment Template"
|
367 |
+
msgstr "Vedlegg-Mal"
|
368 |
+
|
369 |
+
#: breadcrumb_navxt_admin.php:411
|
370 |
+
msgid "The template for attachment breadcrumbs."
|
371 |
+
msgstr "Mal for vedlegg-breadcrumbs."
|
372 |
+
|
373 |
+
#: breadcrumb_navxt_admin.php:412
|
374 |
+
msgid "Attachment Template (Unlinked)"
|
375 |
+
msgstr "Vedlegg-Mal (ulenket)"
|
376 |
+
|
377 |
+
#: breadcrumb_navxt_admin.php:412
|
378 |
+
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
379 |
+
msgstr "Mal for vedlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
380 |
+
|
381 |
+
#: breadcrumb_navxt_admin.php:427 breadcrumb_navxt_admin.php:600
|
382 |
+
#: breadcrumb_navxt_class.php:56 breadcrumb_navxt_class.php:205
|
383 |
+
#: breadcrumb_navxt_class.php:213 breadcrumb_navxt_class.php:219
|
384 |
+
#: breadcrumb_navxt_class.php:235 breadcrumb_navxt_class.php:247
|
385 |
+
#: breadcrumb_navxt_class.php:259
|
386 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
387 |
+
msgstr "<a title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a>"
|
388 |
+
|
389 |
+
#: breadcrumb_navxt_admin.php:428 breadcrumb_navxt_admin.php:601
|
390 |
+
msgid "%htitle%"
|
391 |
+
msgstr "%htitle%"
|
392 |
+
|
393 |
+
#: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
|
394 |
+
msgid "%s Template"
|
395 |
+
msgstr "%s Mal"
|
396 |
+
|
397 |
+
#: breadcrumb_navxt_admin.php:465 breadcrumb_navxt_admin.php:541
|
398 |
+
msgid "The template for %s breadcrumbs."
|
399 |
+
msgstr "Mal for %s-breadcrumbs."
|
400 |
+
|
401 |
+
#: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
|
402 |
+
msgid "%s Template (Unlinked)"
|
403 |
+
msgstr "%s Mal (ulenket)"
|
404 |
+
|
405 |
+
#: breadcrumb_navxt_admin.php:466 breadcrumb_navxt_admin.php:542
|
406 |
+
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
407 |
+
msgstr "Mal for %s-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
408 |
+
|
409 |
+
#: breadcrumb_navxt_admin.php:471
|
410 |
+
msgid "%s Root Page"
|
411 |
+
msgstr "%s Rot-siden"
|
412 |
+
|
413 |
+
#: breadcrumb_navxt_admin.php:474
|
414 |
+
msgid "— Select —"
|
415 |
+
msgstr "— Velg —"
|
416 |
+
|
417 |
+
#: breadcrumb_navxt_admin.php:478
|
418 |
+
msgid "%s Archive Display"
|
419 |
+
msgstr "%s Arkiv Visning"
|
420 |
+
|
421 |
+
#: breadcrumb_navxt_admin.php:478
|
422 |
+
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
423 |
+
msgstr "Vis breadcrumb for %s type innleggsarkiv i breadcrumb-stien."
|
424 |
+
|
425 |
+
#: breadcrumb_navxt_admin.php:482
|
426 |
+
msgid "%s Taxonomy Display"
|
427 |
+
msgstr "%s Gruppenavn Visning"
|
428 |
+
|
429 |
+
#: breadcrumb_navxt_admin.php:482
|
430 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
431 |
+
msgstr "Vis gruppenavnet som peker til en %s i breadcrumb-stien."
|
432 |
+
|
433 |
+
#: breadcrumb_navxt_admin.php:486
|
434 |
+
msgid "%s Taxonomy"
|
435 |
+
msgstr "%s Gruppenavn"
|
436 |
+
|
437 |
+
#: breadcrumb_navxt_admin.php:512
|
438 |
+
msgid "Categories & Tags"
|
439 |
+
msgstr "Kategorier & Stikkord"
|
440 |
+
|
441 |
+
#: breadcrumb_navxt_admin.php:515
|
442 |
+
msgid "Category Template"
|
443 |
+
msgstr "Kategori-Mal"
|
444 |
+
|
445 |
+
#: breadcrumb_navxt_admin.php:515
|
446 |
+
msgid "The template for category breadcrumbs."
|
447 |
+
msgstr "Mal for kategori-breadcrumbs."
|
448 |
+
|
449 |
+
#: breadcrumb_navxt_admin.php:516
|
450 |
+
msgid "Category Template (Unlinked)"
|
451 |
+
msgstr "Kategori-Mal (ulenket)"
|
452 |
+
|
453 |
+
#: breadcrumb_navxt_admin.php:516
|
454 |
+
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
455 |
+
msgstr "Mal for kategori-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
456 |
+
|
457 |
+
#: breadcrumb_navxt_admin.php:517
|
458 |
+
msgid "Tag Template"
|
459 |
+
msgstr "Stikkord-Mal"
|
460 |
+
|
461 |
+
#: breadcrumb_navxt_admin.php:517
|
462 |
+
msgid "The template for tag breadcrumbs."
|
463 |
+
msgstr "Mal for stikkord-breadcrumbs."
|
464 |
+
|
465 |
+
#: breadcrumb_navxt_admin.php:518
|
466 |
+
msgid "Tag Template (Unlinked)"
|
467 |
+
msgstr "Stikkord-Mal (ulenket)"
|
468 |
+
|
469 |
+
#: breadcrumb_navxt_admin.php:518
|
470 |
+
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
471 |
+
msgstr "Mal for stikkord-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
472 |
+
|
473 |
+
#: breadcrumb_navxt_admin.php:551
|
474 |
+
msgid "Miscellaneous"
|
475 |
+
msgstr "Diverse"
|
476 |
+
|
477 |
+
#: breadcrumb_navxt_admin.php:554
|
478 |
+
msgid "Author Template"
|
479 |
+
msgstr "Forfatter-Mal"
|
480 |
+
|
481 |
+
#: breadcrumb_navxt_admin.php:554
|
482 |
+
msgid "The template for author breadcrumbs."
|
483 |
+
msgstr "Mal for forfatter-breadcrumbs."
|
484 |
+
|
485 |
+
#: breadcrumb_navxt_admin.php:555
|
486 |
+
msgid "Author Template (Unlinked)"
|
487 |
+
msgstr "Forfatter-Mal (ulenket)"
|
488 |
+
|
489 |
+
#: breadcrumb_navxt_admin.php:555
|
490 |
+
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
491 |
+
msgstr "Mal for forfatter-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
492 |
+
|
493 |
+
#: breadcrumb_navxt_admin.php:556
|
494 |
+
msgid "Author Display Format"
|
495 |
+
msgstr "Forfatter Visningsformat"
|
496 |
+
|
497 |
+
#: breadcrumb_navxt_admin.php:556
|
498 |
+
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
499 |
+
msgstr "display_name bruker navnet som er valgt under \"Vis navn offentlig som\" i brukerprofilen."
|
500 |
+
|
501 |
+
#: breadcrumb_navxt_admin.php:557
|
502 |
+
msgid "Date Template"
|
503 |
+
msgstr "Dato-Mal"
|
504 |
+
|
505 |
+
#: breadcrumb_navxt_admin.php:557
|
506 |
+
msgid "The template for date breadcrumbs."
|
507 |
+
msgstr "Mal for dato-breadcrumbs."
|
508 |
+
|
509 |
+
#: breadcrumb_navxt_admin.php:558
|
510 |
+
msgid "Date Template (Unlinked)"
|
511 |
+
msgstr "Dato-Mal (ulenket)"
|
512 |
+
|
513 |
+
#: breadcrumb_navxt_admin.php:558
|
514 |
+
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
515 |
+
msgstr "Mal for dato-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
516 |
+
|
517 |
+
#: breadcrumb_navxt_admin.php:559
|
518 |
+
msgid "Search Template"
|
519 |
+
msgstr "Søk-Mal"
|
520 |
+
|
521 |
+
#: breadcrumb_navxt_admin.php:559
|
522 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
523 |
+
msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider."
|
524 |
+
|
525 |
+
#: breadcrumb_navxt_admin.php:560
|
526 |
+
msgid "Search Template (Unlinked)"
|
527 |
+
msgstr "Søk-Mal (ulenket)"
|
528 |
+
|
529 |
+
#: breadcrumb_navxt_admin.php:560
|
530 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
531 |
+
msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider og breadcrumb ikke er lenket."
|
532 |
+
|
533 |
+
#: breadcrumb_navxt_admin.php:561
|
534 |
+
msgid "404 Title"
|
535 |
+
msgstr "404 Tittel"
|
536 |
+
|
537 |
+
#: breadcrumb_navxt_admin.php:562
|
538 |
+
msgid "404 Template"
|
539 |
+
msgstr "404 Mal"
|
540 |
+
|
541 |
+
#: breadcrumb_navxt_admin.php:562
|
542 |
+
msgid "The template for 404 breadcrumbs."
|
543 |
+
msgstr "Mal for 404-breadcrumbs."
|
544 |
+
|
545 |
+
#: breadcrumb_navxt_admin.php:567
|
546 |
+
msgid "Save Changes"
|
547 |
+
msgstr "Lagre endringer"
|
548 |
+
|
549 |
+
#: includes/mtekk_adminkit.php:201
|
550 |
+
msgid "Settings"
|
551 |
+
msgstr "Innstillinger"
|
552 |
+
|
553 |
+
#: includes/mtekk_adminkit.php:271
|
554 |
+
msgid "Your settings are out of date."
|
555 |
+
msgstr "Dine innstillinger er utdaterte."
|
556 |
+
|
557 |
+
#: includes/mtekk_adminkit.php:271
|
558 |
+
msgid "Migrate the settings now."
|
559 |
+
msgstr "Utfør innstillingene nå."
|
560 |
+
|
561 |
+
#: includes/mtekk_adminkit.php:271
|
562 |
+
msgid "Migrate now."
|
563 |
+
msgstr "Utfør nå."
|
564 |
+
|
565 |
+
#: includes/mtekk_adminkit.php:279
|
566 |
+
msgid "Your plugin install is incomplete."
|
567 |
+
msgstr "Installasjonen av plugin er ufullstendig."
|
568 |
+
|
569 |
+
#: includes/mtekk_adminkit.php:279
|
570 |
+
msgid "Load default settings now."
|
571 |
+
msgstr "Last inn standard innstillinger nå."
|
572 |
+
|
573 |
+
#: includes/mtekk_adminkit.php:279
|
574 |
+
msgid "Complete now."
|
575 |
+
msgstr "Fullfør nå."
|
576 |
+
|
577 |
+
#: includes/mtekk_adminkit.php:287
|
578 |
+
msgid "Your plugin settings are invalid."
|
579 |
+
msgstr "Dine plugin-innstillinger er ugyldige."
|
580 |
+
|
581 |
+
#: includes/mtekk_adminkit.php:287
|
582 |
+
msgid "Attempt to fix settings now."
|
583 |
+
msgstr "Forsøk å ordne innstillinger nå."
|
584 |
+
|
585 |
+
#: includes/mtekk_adminkit.php:287
|
586 |
+
msgid "Fix now."
|
587 |
+
msgstr "Ordne nå."
|
588 |
+
|
589 |
+
#: includes/mtekk_adminkit.php:463
|
590 |
+
msgid "Settings successfully saved."
|
591 |
+
msgstr "Innstillinger ble lagret."
|
592 |
+
|
593 |
+
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
594 |
+
msgid "Undo the options save."
|
595 |
+
msgstr "Angre lagring av alternativer."
|
596 |
+
|
597 |
+
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
598 |
+
#: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
|
599 |
+
#: includes/mtekk_adminkit.php:614
|
600 |
+
msgid "Undo"
|
601 |
+
msgstr "Angre"
|
602 |
+
|
603 |
+
#: includes/mtekk_adminkit.php:468
|
604 |
+
msgid "Some settings were not saved."
|
605 |
+
msgstr "Noen innstillinger ble ikke lagret."
|
606 |
+
|
607 |
+
#: includes/mtekk_adminkit.php:469
|
608 |
+
msgid "The following settings were not saved:"
|
609 |
+
msgstr "Følgende innstillinger ble ikke lagret:"
|
610 |
+
|
611 |
+
#: includes/mtekk_adminkit.php:474
|
612 |
+
msgid "Please include this message in your %sbug report%s."
|
613 |
+
msgstr "Vær vennlig å inkludere denne meldingen i din %sbug-rapport%s."
|
614 |
+
|
615 |
+
#: includes/mtekk_adminkit.php:474
|
616 |
+
msgid "Go to the %s support post for your version."
|
617 |
+
msgstr "Gå til %s support for din versjon."
|
618 |
+
|
619 |
+
#: includes/mtekk_adminkit.php:573
|
620 |
+
msgid "Settings successfully imported from the uploaded file."
|
621 |
+
msgstr "Import av innstillinger fra fil var vellykket."
|
622 |
+
|
623 |
+
#: includes/mtekk_adminkit.php:573
|
624 |
+
msgid "Undo the options import."
|
625 |
+
msgstr "Angre import av alternativer."
|
626 |
+
|
627 |
+
#: includes/mtekk_adminkit.php:578
|
628 |
+
msgid "Importing settings from file failed."
|
629 |
+
msgstr "Importering av innstillinger fra fil mislyktes."
|
630 |
+
|
631 |
+
#: includes/mtekk_adminkit.php:597
|
632 |
+
msgid "Settings successfully reset to the default values."
|
633 |
+
msgstr "Innstillinger ble tilbakestilt til standardverdiene."
|
634 |
+
|
635 |
+
#: includes/mtekk_adminkit.php:597
|
636 |
+
msgid "Undo the options reset."
|
637 |
+
msgstr "Angre tilbakestilling av alternativer."
|
638 |
+
|
639 |
+
#: includes/mtekk_adminkit.php:614
|
640 |
+
msgid "Settings successfully undid the last operation."
|
641 |
+
msgstr "Innstillinger gjorde om siste handling."
|
642 |
+
|
643 |
+
#: includes/mtekk_adminkit.php:614
|
644 |
+
msgid "Undo the last undo operation."
|
645 |
+
msgstr "Angre siste angre-handling."
|
646 |
+
|
647 |
+
#: includes/mtekk_adminkit.php:649
|
648 |
+
msgid "Settings successfully migrated."
|
649 |
+
msgstr "Innstillingene ble utført."
|
650 |
+
|
651 |
+
#: includes/mtekk_adminkit.php:656
|
652 |
+
msgid "Default settings successfully installed."
|
653 |
+
msgstr "Standard innstillinger ble installert."
|
654 |
+
|
655 |
+
#: includes/mtekk_adminkit.php:757
|
656 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
657 |
+
msgstr "Importere innstillinger fra en XML-fil, eksportere nåværende innstillinger til en XML-fil, eller tilbakestille til standard innstillinger."
|
658 |
+
|
659 |
+
#: includes/mtekk_adminkit.php:760
|
660 |
+
msgid "Settings File"
|
661 |
+
msgstr "Innstillinger Fil"
|
662 |
+
|
663 |
+
#: includes/mtekk_adminkit.php:763
|
664 |
+
msgid "Select a XML settings file to upload and import settings from."
|
665 |
+
msgstr "Velg en XML-fil å laste opp og importere innstillinger fra."
|
666 |
+
|
667 |
+
#: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
|
668 |
+
msgid "Home"
|
669 |
+
msgstr "Hjem"
|
670 |
+
|
671 |
+
#: breadcrumb_navxt_class.php:230
|
672 |
+
msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
|
673 |
+
msgstr "<a title=\"Last inn nåværende side på nytt.\" href=\"%link%\">%htitle%</a>"
|
674 |
+
|
675 |
+
#: breadcrumb_navxt_class.php:242
|
676 |
+
msgid "Page %htitle%"
|
677 |
+
msgstr "Side %htitle%"
|
678 |
+
|
679 |
+
#: breadcrumb_navxt_class.php:266
|
680 |
+
msgid "404"
|
681 |
+
msgstr "404"
|
682 |
+
|
683 |
+
#: breadcrumb_navxt_class.php:269
|
684 |
+
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>'"
|
685 |
+
msgstr "Søkeresultat for '<a title=\"Gå til første side i søkeresultatet for %title%.\" href=\"%link%\">%htitle%</a>'"
|
686 |
+
|
687 |
+
#: breadcrumb_navxt_class.php:271
|
688 |
+
msgid "Search results for '%htitle%'"
|
689 |
+
msgstr "Søkeresultat for '%htitle%'"
|
690 |
+
|
691 |
+
#: breadcrumb_navxt_class.php:274
|
692 |
+
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
|
693 |
+
msgstr "<a title=\"Gå til %title% stikkordsarkiv.\" href=\"%link%\">%htitle%</a>"
|
694 |
+
|
695 |
+
#: breadcrumb_navxt_class.php:279
|
696 |
+
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
|
697 |
+
msgstr "Artikler av: <a title=\"Gå til første side med innlegg av %title%.\" href=\"%link%\">%htitle%</a>"
|
698 |
+
|
699 |
+
#: breadcrumb_navxt_class.php:281
|
700 |
+
msgid "Articles by: %htitle%"
|
701 |
+
msgstr "Artikler av: %htitle%"
|
702 |
+
|
703 |
+
#: breadcrumb_navxt_class.php:286
|
704 |
+
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
|
705 |
+
msgstr "<a title=\"Gå til %title% kategoriarkiv.\" href=\"%link%\">%htitle%</a>"
|
706 |
+
|
707 |
+
#: breadcrumb_navxt_class.php:290
|
708 |
+
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
|
709 |
+
msgstr "<a title=\"Gå til %title% arkiv.\" href=\"%link%\">%htitle%</a>"
|
languages/breadcrumb_navxt-es_ES.mo
ADDED
Binary file
|
languages/breadcrumb_navxt-es_ES.po
ADDED
@@ -0,0 +1,777 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
5 |
+
"POT-Creation-Date: 2011-02-09 17:37:49+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-02-19 16:54-0600\n"
|
7 |
+
"Last-Translator: Karin Sequen <karin.sequen@bumerang180.com>\n"
|
8 |
+
"Language-Team: Karin Sequen || Bumerang180 <info@bumerang180.com>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Spanish\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_es\n"
|
14 |
+
"X-Poedit-Basepath: .\n"
|
15 |
+
"X-Poedit-Country: GUATEMALA\n"
|
16 |
+
": \n"
|
17 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
+
"X-Poedit-SearchPath-0: C:/Documents and Settings/mtekk/My Documents/Aptana Studio/Breadcrumb NavXT/trunk\n"
|
19 |
+
|
20 |
+
#: breadcrumb_navxt_widget.php:24
|
21 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
22 |
+
msgstr "Agrega una ruta de navegación en su barra lateral"
|
23 |
+
|
24 |
+
#: breadcrumb_navxt_widget.php:85
|
25 |
+
msgid "Title:"
|
26 |
+
msgstr "Título:"
|
27 |
+
|
28 |
+
#: breadcrumb_navxt_widget.php:89
|
29 |
+
msgid "Output trail as:"
|
30 |
+
msgstr "Mostrar ruta como:"
|
31 |
+
|
32 |
+
#: breadcrumb_navxt_widget.php:91
|
33 |
+
msgid "List"
|
34 |
+
msgstr "Lista"
|
35 |
+
|
36 |
+
#: breadcrumb_navxt_widget.php:92
|
37 |
+
msgid "RDFa"
|
38 |
+
msgstr "RDFa"
|
39 |
+
|
40 |
+
#: breadcrumb_navxt_widget.php:93
|
41 |
+
msgid "Microformat"
|
42 |
+
msgstr "Microformato"
|
43 |
+
|
44 |
+
#: breadcrumb_navxt_widget.php:94
|
45 |
+
msgid "Plain"
|
46 |
+
msgstr "Texto plano"
|
47 |
+
|
48 |
+
#: breadcrumb_navxt_widget.php:99
|
49 |
+
msgid "Link the breadcrumbs"
|
50 |
+
msgstr "Enlace a la Ruta"
|
51 |
+
|
52 |
+
#: breadcrumb_navxt_widget.php:101
|
53 |
+
msgid "Reverse the order of the trail"
|
54 |
+
msgstr "Invertir el orden de la ruta"
|
55 |
+
|
56 |
+
#: breadcrumb_navxt_widget.php:103
|
57 |
+
msgid "Hide the trail on the front page"
|
58 |
+
msgstr "Ocultar la ruta de la página principal"
|
59 |
+
|
60 |
+
#: mtekk_admin_class.php:59
|
61 |
+
msgid "Undo"
|
62 |
+
msgstr "Deshacer"
|
63 |
+
|
64 |
+
#: mtekk_admin_class.php:67
|
65 |
+
#: mtekk_admin_class.php:191
|
66 |
+
msgid "Migrate now."
|
67 |
+
msgstr "Migrar ahora."
|
68 |
+
|
69 |
+
#: mtekk_admin_class.php:164
|
70 |
+
msgid "Settings"
|
71 |
+
msgstr "Configuraciones"
|
72 |
+
|
73 |
+
#: mtekk_admin_class.php:191
|
74 |
+
msgid "Your settings are out of date."
|
75 |
+
msgstr "Sus ajustes están desactualizados."
|
76 |
+
|
77 |
+
#: mtekk_admin_class.php:191
|
78 |
+
msgid "Migrate the settings now."
|
79 |
+
msgstr "Migrar los ajustes ahora."
|
80 |
+
|
81 |
+
#: mtekk_admin_class.php:198
|
82 |
+
msgid "Your plugin install is incomplete."
|
83 |
+
msgstr "La instalación del plugin no se ha completado."
|
84 |
+
|
85 |
+
#: mtekk_admin_class.php:198
|
86 |
+
msgid "Load default settings now."
|
87 |
+
msgstr "Cargar los ajustes predeterminados ahora."
|
88 |
+
|
89 |
+
#: mtekk_admin_class.php:198
|
90 |
+
msgid "Complete now."
|
91 |
+
msgstr "Completar ahora."
|
92 |
+
|
93 |
+
#: mtekk_admin_class.php:311
|
94 |
+
msgid "Settings successfully imported from the uploaded file."
|
95 |
+
msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
|
96 |
+
|
97 |
+
#: mtekk_admin_class.php:311
|
98 |
+
msgid "Undo the options import."
|
99 |
+
msgstr "Deshacer importación de opciones."
|
100 |
+
|
101 |
+
#: mtekk_admin_class.php:316
|
102 |
+
msgid "Importing settings from file failed."
|
103 |
+
msgstr "Falló la importación de los ajustes desde el archivo."
|
104 |
+
|
105 |
+
#: mtekk_admin_class.php:335
|
106 |
+
msgid "Settings successfully reset to the default values."
|
107 |
+
msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
|
108 |
+
|
109 |
+
#: mtekk_admin_class.php:335
|
110 |
+
msgid "Undo the options reset."
|
111 |
+
msgstr "Deshacer reinicio de opciones."
|
112 |
+
|
113 |
+
#: mtekk_admin_class.php:352
|
114 |
+
msgid "Settings successfully undid the last operation."
|
115 |
+
msgstr "Se deshizo exitosamente la operación anterior."
|
116 |
+
|
117 |
+
#: mtekk_admin_class.php:352
|
118 |
+
msgid "Undo the last undo operation."
|
119 |
+
msgstr "Deshacer la última operación de \"deshacer\""
|
120 |
+
|
121 |
+
#: mtekk_admin_class.php:387
|
122 |
+
msgid "Settings successfully migrated."
|
123 |
+
msgstr "Ajustes migrados exitosamente."
|
124 |
+
|
125 |
+
#: mtekk_admin_class.php:394
|
126 |
+
msgid "Default settings successfully installed."
|
127 |
+
msgstr "Los ajustes predeterminados se instalaron exitosamente."
|
128 |
+
|
129 |
+
#: mtekk_admin_class.php:425
|
130 |
+
msgid "Get help with \"%s\""
|
131 |
+
msgstr "Obtener ayuda con \"%s\""
|
132 |
+
|
133 |
+
#: mtekk_admin_class.php:495
|
134 |
+
msgid "Import/Export/Reset Settings"
|
135 |
+
msgstr "Importar/Exportar/Reiniciar Ajustes"
|
136 |
+
|
137 |
+
#: mtekk_admin_class.php:496
|
138 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
139 |
+
msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
|
140 |
+
|
141 |
+
#: mtekk_admin_class.php:499
|
142 |
+
msgid "Settings File"
|
143 |
+
msgstr "Archivo de Ajustes"
|
144 |
+
|
145 |
+
#: mtekk_admin_class.php:502
|
146 |
+
msgid "Select a XML settings file to upload and import settings from."
|
147 |
+
msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
|
148 |
+
|
149 |
+
#: mtekk_admin_class.php:504
|
150 |
+
#: breadcrumb_navxt_admin.php:423
|
151 |
+
msgid "Import"
|
152 |
+
msgstr "Importar"
|
153 |
+
|
154 |
+
#: mtekk_admin_class.php:505
|
155 |
+
#: breadcrumb_navxt_admin.php:423
|
156 |
+
msgid "Export"
|
157 |
+
msgstr "Exportar"
|
158 |
+
|
159 |
+
#: mtekk_admin_class.php:506
|
160 |
+
#: breadcrumb_navxt_admin.php:423
|
161 |
+
msgid "Reset"
|
162 |
+
msgstr "Reiniciar"
|
163 |
+
|
164 |
+
#: breadcrumb_navxt_admin.php:35
|
165 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
166 |
+
msgstr "Su versión de PHP es obsoleta, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
|
167 |
+
|
168 |
+
#: breadcrumb_navxt_admin.php:112
|
169 |
+
msgid "Insufficient privileges to proceed."
|
170 |
+
msgstr "No tiene privilegios para proceder."
|
171 |
+
|
172 |
+
#: breadcrumb_navxt_admin.php:217
|
173 |
+
#: breadcrumb_navxt_class.php:207
|
174 |
+
msgid "Home"
|
175 |
+
msgstr "Inicio"
|
176 |
+
|
177 |
+
#: breadcrumb_navxt_admin.php:219
|
178 |
+
#: breadcrumb_navxt_admin.php:580
|
179 |
+
#: breadcrumb_navxt_admin.php:773
|
180 |
+
#: breadcrumb_navxt_class.php:130
|
181 |
+
#: breadcrumb_navxt_class.php:209
|
182 |
+
#: breadcrumb_navxt_class.php:219
|
183 |
+
#: breadcrumb_navxt_class.php:223
|
184 |
+
#: breadcrumb_navxt_class.php:247
|
185 |
+
#: breadcrumb_navxt_class.php:263
|
186 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
187 |
+
msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">"
|
188 |
+
|
189 |
+
#: breadcrumb_navxt_admin.php:304
|
190 |
+
msgid "Settings successfully saved."
|
191 |
+
msgstr "Ajustes guardados exitosamente."
|
192 |
+
|
193 |
+
#: breadcrumb_navxt_admin.php:304
|
194 |
+
#: breadcrumb_navxt_admin.php:309
|
195 |
+
msgid "Undo the options save."
|
196 |
+
msgstr "Deshacer modificación de opciones."
|
197 |
+
|
198 |
+
#: breadcrumb_navxt_admin.php:309
|
199 |
+
msgid "Some settings were not saved."
|
200 |
+
msgstr "Algunos ajustes no fueron grabados."
|
201 |
+
|
202 |
+
#: breadcrumb_navxt_admin.php:310
|
203 |
+
msgid "The following settings were not saved:"
|
204 |
+
msgstr "Los siguientes ajustes no fueron grabados:"
|
205 |
+
|
206 |
+
#: breadcrumb_navxt_admin.php:315
|
207 |
+
msgid "Please include this message in your %sbug report%s."
|
208 |
+
msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
|
209 |
+
|
210 |
+
#: breadcrumb_navxt_admin.php:315
|
211 |
+
#: breadcrumb_navxt_admin.php:339
|
212 |
+
msgid "Go to the Breadcrumb NavXT support post for your version."
|
213 |
+
msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
|
214 |
+
|
215 |
+
#: breadcrumb_navxt_admin.php:337
|
216 |
+
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
217 |
+
msgstr "Encontrará tips para las configuraciones debajo de cada opción. Por favor lea la %sdocumentación%s para más información (en inglés)."
|
218 |
+
|
219 |
+
#: breadcrumb_navxt_admin.php:338
|
220 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
221 |
+
msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
|
222 |
+
|
223 |
+
#: breadcrumb_navxt_admin.php:339
|
224 |
+
msgid "If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug when you %sreport the issue%s."
|
225 |
+
msgstr "Si piensa que ha encontrado un bug, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el bug cuando %sreporte el problema%s."
|
226 |
+
|
227 |
+
#: breadcrumb_navxt_admin.php:340
|
228 |
+
msgid "Quick Start Information"
|
229 |
+
msgstr "Información para Inicio Rápido"
|
230 |
+
|
231 |
+
#: breadcrumb_navxt_admin.php:340
|
232 |
+
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
233 |
+
msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
|
234 |
+
|
235 |
+
#: breadcrumb_navxt_admin.php:341
|
236 |
+
msgid "Breadcrumb trail with separators"
|
237 |
+
msgstr "Ruta de Navegación con Separadores"
|
238 |
+
|
239 |
+
#: breadcrumb_navxt_admin.php:342
|
240 |
+
msgid "Breadcrumb trail in list form"
|
241 |
+
msgstr "Ruta de Navegación como Listado"
|
242 |
+
|
243 |
+
#: breadcrumb_navxt_admin.php:445
|
244 |
+
msgid "Breadcrumb NavXT Settings"
|
245 |
+
msgstr "Opciones de Configuración de Breadcrumb NavXT"
|
246 |
+
|
247 |
+
#: breadcrumb_navxt_admin.php:453
|
248 |
+
msgid "General"
|
249 |
+
msgstr "General"
|
250 |
+
|
251 |
+
#: breadcrumb_navxt_admin.php:456
|
252 |
+
msgid "Breadcrumb Separator"
|
253 |
+
msgstr "Separador de Navegación"
|
254 |
+
|
255 |
+
#: breadcrumb_navxt_admin.php:456
|
256 |
+
msgid "Placed in between each breadcrumb."
|
257 |
+
msgstr "Colocado en medio de cada opción de navegación."
|
258 |
+
|
259 |
+
#: breadcrumb_navxt_admin.php:457
|
260 |
+
msgid "Breadcrumb Max Title Length"
|
261 |
+
msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
|
262 |
+
|
263 |
+
#: breadcrumb_navxt_admin.php:461
|
264 |
+
msgid "Home Breadcrumb"
|
265 |
+
msgstr "Incluir Inicio"
|
266 |
+
|
267 |
+
#: breadcrumb_navxt_admin.php:466
|
268 |
+
msgid "Place the home breadcrumb in the trail."
|
269 |
+
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
270 |
+
|
271 |
+
#: breadcrumb_navxt_admin.php:471
|
272 |
+
msgid "Home Title: "
|
273 |
+
msgstr "Título de Página de Inicio:"
|
274 |
+
|
275 |
+
#: breadcrumb_navxt_admin.php:479
|
276 |
+
msgid "Home Prefix"
|
277 |
+
msgstr "Prefijo de Inicio"
|
278 |
+
|
279 |
+
#: breadcrumb_navxt_admin.php:480
|
280 |
+
msgid "Home Suffix"
|
281 |
+
msgstr "Sufijo de Inicio"
|
282 |
+
|
283 |
+
#: breadcrumb_navxt_admin.php:481
|
284 |
+
msgid "Home Anchor"
|
285 |
+
msgstr "Vínculo a Inicio"
|
286 |
+
|
287 |
+
#: breadcrumb_navxt_admin.php:481
|
288 |
+
msgid "The anchor template for the home breadcrumb."
|
289 |
+
msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
|
290 |
+
|
291 |
+
#: breadcrumb_navxt_admin.php:482
|
292 |
+
msgid "Blog Breadcrumb"
|
293 |
+
msgstr "Incluir Inicio (del Blog)"
|
294 |
+
|
295 |
+
#: breadcrumb_navxt_admin.php:482
|
296 |
+
msgid "Place the blog breadcrumb in the trail."
|
297 |
+
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
298 |
+
|
299 |
+
#: breadcrumb_navxt_admin.php:483
|
300 |
+
msgid "Blog Anchor"
|
301 |
+
msgstr "Vínculo a Blog"
|
302 |
+
|
303 |
+
#: breadcrumb_navxt_admin.php:483
|
304 |
+
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
305 |
+
msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
|
306 |
+
|
307 |
+
#: breadcrumb_navxt_admin.php:487
|
308 |
+
msgid "Main Site Breadcrumb"
|
309 |
+
msgstr "Ruta del Sitio Principal"
|
310 |
+
|
311 |
+
#: breadcrumb_navxt_admin.php:492
|
312 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
313 |
+
msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
|
314 |
+
|
315 |
+
#: breadcrumb_navxt_admin.php:497
|
316 |
+
msgid "Main Site Home Title: "
|
317 |
+
msgstr "Título de Página de Inicio del Sitio Principal: "
|
318 |
+
|
319 |
+
#: breadcrumb_navxt_admin.php:506
|
320 |
+
msgid "Main Site Home Prefix"
|
321 |
+
msgstr "Prefijo de Inicio del Sitio Principal"
|
322 |
+
|
323 |
+
#: breadcrumb_navxt_admin.php:506
|
324 |
+
#: breadcrumb_navxt_admin.php:507
|
325 |
+
msgid "Used for the main site home breadcrumb in an multisite setup"
|
326 |
+
msgstr "Utilizado para el sitio principal de breadcrumb en una configuración para múltiples blogs"
|
327 |
+
|
328 |
+
#: breadcrumb_navxt_admin.php:507
|
329 |
+
msgid "Main Site Home Suffix"
|
330 |
+
msgstr "Sufijo de Inicio del Sitio Principal"
|
331 |
+
|
332 |
+
#: breadcrumb_navxt_admin.php:508
|
333 |
+
msgid "Main Site Home Anchor"
|
334 |
+
msgstr "Vínculo a Inicio del Sitio Principal"
|
335 |
+
|
336 |
+
#: breadcrumb_navxt_admin.php:508
|
337 |
+
msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
|
338 |
+
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
|
339 |
+
|
340 |
+
#: breadcrumb_navxt_admin.php:513
|
341 |
+
msgid "Current Item"
|
342 |
+
msgstr "Item Actual"
|
343 |
+
|
344 |
+
#: breadcrumb_navxt_admin.php:516
|
345 |
+
msgid "Link Current Item"
|
346 |
+
msgstr "Incluir Vínculo a Item Actual"
|
347 |
+
|
348 |
+
#: breadcrumb_navxt_admin.php:516
|
349 |
+
msgid "Yes"
|
350 |
+
msgstr "Sí"
|
351 |
+
|
352 |
+
#: breadcrumb_navxt_admin.php:517
|
353 |
+
msgid "Current Item Prefix"
|
354 |
+
msgstr "Prefijo de Item Actual"
|
355 |
+
|
356 |
+
#: breadcrumb_navxt_admin.php:517
|
357 |
+
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
358 |
+
msgstr "Esto se coloca siempre antes de la última opción de la ruta de navegación, antes que cualquier otro prefijo para esa opción."
|
359 |
+
|
360 |
+
#: breadcrumb_navxt_admin.php:518
|
361 |
+
msgid "Current Item Suffix"
|
362 |
+
msgstr "Sufijo de Item Actual"
|
363 |
+
|
364 |
+
#: breadcrumb_navxt_admin.php:518
|
365 |
+
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
366 |
+
msgstr "Esto se coloca siempre después del último item de la ruta de navegación y después de cualquier otro sufijo para ese item."
|
367 |
+
|
368 |
+
#: breadcrumb_navxt_admin.php:519
|
369 |
+
msgid "Current Item Anchor"
|
370 |
+
msgstr "Vínculo a Item Actual"
|
371 |
+
|
372 |
+
#: breadcrumb_navxt_admin.php:519
|
373 |
+
msgid "The anchor template for current item breadcrumbs."
|
374 |
+
msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
|
375 |
+
|
376 |
+
#: breadcrumb_navxt_admin.php:520
|
377 |
+
msgid "Paged Breadcrumb"
|
378 |
+
msgstr "Ruta de Navegación Paginada"
|
379 |
+
|
380 |
+
#: breadcrumb_navxt_admin.php:520
|
381 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
382 |
+
msgstr "Incluir la navegación paginada en la ruta de navegación"
|
383 |
+
|
384 |
+
#: breadcrumb_navxt_admin.php:520
|
385 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
386 |
+
msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
|
387 |
+
|
388 |
+
#: breadcrumb_navxt_admin.php:521
|
389 |
+
msgid "Paged Prefix"
|
390 |
+
msgstr "Prefijo para Paginado"
|
391 |
+
|
392 |
+
#: breadcrumb_navxt_admin.php:522
|
393 |
+
msgid "Paged Suffix"
|
394 |
+
msgstr "Sufijo para Paginado"
|
395 |
+
|
396 |
+
#: breadcrumb_navxt_admin.php:527
|
397 |
+
msgid "Posts & Pages"
|
398 |
+
msgstr "Entradas & Páginas"
|
399 |
+
|
400 |
+
#: breadcrumb_navxt_admin.php:530
|
401 |
+
msgid "Post Prefix"
|
402 |
+
msgstr "Prefijo de Entrada"
|
403 |
+
|
404 |
+
#: breadcrumb_navxt_admin.php:531
|
405 |
+
msgid "Post Suffix"
|
406 |
+
msgstr "Sufijo de Entrada"
|
407 |
+
|
408 |
+
#: breadcrumb_navxt_admin.php:532
|
409 |
+
msgid "Post Anchor"
|
410 |
+
msgstr "Vínculo a Entrada"
|
411 |
+
|
412 |
+
#: breadcrumb_navxt_admin.php:532
|
413 |
+
msgid "The anchor template for post breadcrumbs."
|
414 |
+
msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
|
415 |
+
|
416 |
+
#: breadcrumb_navxt_admin.php:533
|
417 |
+
msgid "Post Taxonomy Display"
|
418 |
+
msgstr "Mostrar Clasificación de Entradas"
|
419 |
+
|
420 |
+
#: breadcrumb_navxt_admin.php:533
|
421 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
422 |
+
msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
|
423 |
+
|
424 |
+
#: breadcrumb_navxt_admin.php:537
|
425 |
+
msgid "Post Taxonomy"
|
426 |
+
msgstr "Clasificación de Entradas"
|
427 |
+
|
428 |
+
#: breadcrumb_navxt_admin.php:541
|
429 |
+
#: breadcrumb_navxt_admin.php:663
|
430 |
+
msgid "Categories"
|
431 |
+
msgstr "Categorías"
|
432 |
+
|
433 |
+
#: breadcrumb_navxt_admin.php:542
|
434 |
+
#: breadcrumb_navxt_admin.php:641
|
435 |
+
msgid "Dates"
|
436 |
+
msgstr "Fechas"
|
437 |
+
|
438 |
+
#: breadcrumb_navxt_admin.php:543
|
439 |
+
#: breadcrumb_navxt_admin.php:675
|
440 |
+
msgid "Tags"
|
441 |
+
msgstr "Etiquetas"
|
442 |
+
|
443 |
+
#: breadcrumb_navxt_admin.php:544
|
444 |
+
#: breadcrumb_navxt_admin.php:642
|
445 |
+
msgid "Pages"
|
446 |
+
msgstr "Páginas"
|
447 |
+
|
448 |
+
#: breadcrumb_navxt_admin.php:555
|
449 |
+
#: breadcrumb_navxt_admin.php:653
|
450 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
451 |
+
msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
|
452 |
+
|
453 |
+
#: breadcrumb_navxt_admin.php:559
|
454 |
+
msgid "Page Prefix"
|
455 |
+
msgstr "Prefijo de Página"
|
456 |
+
|
457 |
+
#: breadcrumb_navxt_admin.php:560
|
458 |
+
msgid "Page Suffix"
|
459 |
+
msgstr "Sufijo de Página"
|
460 |
+
|
461 |
+
#: breadcrumb_navxt_admin.php:561
|
462 |
+
msgid "Page Anchor"
|
463 |
+
msgstr "Vínculo a Página"
|
464 |
+
|
465 |
+
#: breadcrumb_navxt_admin.php:561
|
466 |
+
msgid "The anchor template for page breadcrumbs."
|
467 |
+
msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
|
468 |
+
|
469 |
+
#: breadcrumb_navxt_admin.php:562
|
470 |
+
msgid "Attachment Prefix"
|
471 |
+
msgstr "Prefijo de Archivo Adjunto"
|
472 |
+
|
473 |
+
#: breadcrumb_navxt_admin.php:563
|
474 |
+
msgid "Attachment Suffix"
|
475 |
+
msgstr "Sufijo de Archivo Adjunto"
|
476 |
+
|
477 |
+
#: breadcrumb_navxt_admin.php:616
|
478 |
+
#: breadcrumb_navxt_admin.php:708
|
479 |
+
msgid "%s Prefix"
|
480 |
+
msgstr "Prefijo de %s"
|
481 |
+
|
482 |
+
#: breadcrumb_navxt_admin.php:617
|
483 |
+
#: breadcrumb_navxt_admin.php:709
|
484 |
+
msgid "%s Suffix"
|
485 |
+
msgstr "Sufijo de %s"
|
486 |
+
|
487 |
+
#: breadcrumb_navxt_admin.php:618
|
488 |
+
#: breadcrumb_navxt_admin.php:710
|
489 |
+
msgid "%s Anchor"
|
490 |
+
msgstr "Vínculo a %s"
|
491 |
+
|
492 |
+
#: breadcrumb_navxt_admin.php:618
|
493 |
+
#: breadcrumb_navxt_admin.php:710
|
494 |
+
msgid "The anchor template for %s breadcrumbs."
|
495 |
+
msgstr "La plantilla de vínculo para los elementos de ruta de %s."
|
496 |
+
|
497 |
+
#: breadcrumb_navxt_admin.php:623
|
498 |
+
msgid "%s Root Page"
|
499 |
+
msgstr "%s Página Raíz"
|
500 |
+
|
501 |
+
#: breadcrumb_navxt_admin.php:626
|
502 |
+
msgid "— Select —"
|
503 |
+
msgstr "— Seleccione —"
|
504 |
+
|
505 |
+
#: breadcrumb_navxt_admin.php:633
|
506 |
+
msgid "%s Taxonomy Display"
|
507 |
+
msgstr "%s Despliegue de Clasificación"
|
508 |
+
|
509 |
+
#: breadcrumb_navxt_admin.php:633
|
510 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
511 |
+
msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
|
512 |
+
|
513 |
+
#: breadcrumb_navxt_admin.php:637
|
514 |
+
msgid "%s Taxonomy"
|
515 |
+
msgstr "%s Clasificación"
|
516 |
+
|
517 |
+
#: breadcrumb_navxt_admin.php:666
|
518 |
+
msgid "Category Prefix"
|
519 |
+
msgstr "Prefijo de Categoría"
|
520 |
+
|
521 |
+
#: breadcrumb_navxt_admin.php:666
|
522 |
+
msgid "Applied before the anchor on all category breadcrumbs."
|
523 |
+
msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
|
524 |
+
|
525 |
+
#: breadcrumb_navxt_admin.php:667
|
526 |
+
msgid "Category Suffix"
|
527 |
+
msgstr "Sufijo de Categoría"
|
528 |
+
|
529 |
+
#: breadcrumb_navxt_admin.php:667
|
530 |
+
msgid "Applied after the anchor on all category breadcrumbs."
|
531 |
+
msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
|
532 |
+
|
533 |
+
#: breadcrumb_navxt_admin.php:668
|
534 |
+
msgid "Category Anchor"
|
535 |
+
msgstr "Vínculo a Categoría"
|
536 |
+
|
537 |
+
#: breadcrumb_navxt_admin.php:668
|
538 |
+
msgid "The anchor template for category breadcrumbs."
|
539 |
+
msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
|
540 |
+
|
541 |
+
#: breadcrumb_navxt_admin.php:669
|
542 |
+
msgid "Archive by Category Prefix"
|
543 |
+
msgstr "Prefijo de Archivo por Categoría"
|
544 |
+
|
545 |
+
#: breadcrumb_navxt_admin.php:669
|
546 |
+
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
547 |
+
msgstr "Aplicado antes del título del item actual en un archivo por categoría."
|
548 |
+
|
549 |
+
#: breadcrumb_navxt_admin.php:670
|
550 |
+
msgid "Archive by Category Suffix"
|
551 |
+
msgstr "Sufijo de Archivo por Categoría"
|
552 |
+
|
553 |
+
#: breadcrumb_navxt_admin.php:670
|
554 |
+
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
555 |
+
msgstr "Aplicado después del título del item actual en un archivo por categoría."
|
556 |
+
|
557 |
+
#: breadcrumb_navxt_admin.php:678
|
558 |
+
msgid "Tag Prefix"
|
559 |
+
msgstr "Prefijo de Etiqueta"
|
560 |
+
|
561 |
+
#: breadcrumb_navxt_admin.php:678
|
562 |
+
msgid "Applied before the anchor on all tag breadcrumbs."
|
563 |
+
msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
|
564 |
+
|
565 |
+
#: breadcrumb_navxt_admin.php:679
|
566 |
+
msgid "Tag Suffix"
|
567 |
+
msgstr "Sufijo de Etiqueta"
|
568 |
+
|
569 |
+
#: breadcrumb_navxt_admin.php:679
|
570 |
+
msgid "Applied after the anchor on all tag breadcrumbs."
|
571 |
+
msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
|
572 |
+
|
573 |
+
#: breadcrumb_navxt_admin.php:680
|
574 |
+
msgid "Tag Anchor"
|
575 |
+
msgstr "Vínculo a Etiqueta"
|
576 |
+
|
577 |
+
#: breadcrumb_navxt_admin.php:680
|
578 |
+
msgid "The anchor template for tag breadcrumbs."
|
579 |
+
msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
|
580 |
+
|
581 |
+
#: breadcrumb_navxt_admin.php:681
|
582 |
+
msgid "Archive by Tag Prefix"
|
583 |
+
msgstr "Prefijo de Archivo por Etiqueta"
|
584 |
+
|
585 |
+
#: breadcrumb_navxt_admin.php:681
|
586 |
+
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
587 |
+
msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
|
588 |
+
|
589 |
+
#: breadcrumb_navxt_admin.php:682
|
590 |
+
msgid "Archive by Tag Suffix"
|
591 |
+
msgstr "Sufijo de Archivo por Etiqueta"
|
592 |
+
|
593 |
+
#: breadcrumb_navxt_admin.php:682
|
594 |
+
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
595 |
+
msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
|
596 |
+
|
597 |
+
#: breadcrumb_navxt_admin.php:708
|
598 |
+
msgid "Applied before the anchor on all %s breadcrumbs."
|
599 |
+
msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
|
600 |
+
|
601 |
+
#: breadcrumb_navxt_admin.php:709
|
602 |
+
msgid "Applied after the anchor on all %s breadcrumbs."
|
603 |
+
msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
|
604 |
+
|
605 |
+
#: breadcrumb_navxt_admin.php:711
|
606 |
+
msgid "Archive by %s Prefix"
|
607 |
+
msgstr "Archivo por Prefijo de %s"
|
608 |
+
|
609 |
+
#: breadcrumb_navxt_admin.php:711
|
610 |
+
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
611 |
+
msgstr "Aplicado antes del título del item actual en un archivo por página %s."
|
612 |
+
|
613 |
+
#: breadcrumb_navxt_admin.php:712
|
614 |
+
msgid "Archive by %s Suffix"
|
615 |
+
msgstr "Archivo por Sufijo de %s"
|
616 |
+
|
617 |
+
#: breadcrumb_navxt_admin.php:712
|
618 |
+
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
619 |
+
msgstr "Aplicado después del título del item actual en un archivo por página %s."
|
620 |
+
|
621 |
+
#: breadcrumb_navxt_admin.php:721
|
622 |
+
msgid "Date Archives"
|
623 |
+
msgstr "Archivos por Fecha"
|
624 |
+
|
625 |
+
#: breadcrumb_navxt_admin.php:724
|
626 |
+
msgid "Date Anchor"
|
627 |
+
msgstr "Vínculo a Fecha"
|
628 |
+
|
629 |
+
#: breadcrumb_navxt_admin.php:724
|
630 |
+
msgid "The anchor template for date breadcrumbs."
|
631 |
+
msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
|
632 |
+
|
633 |
+
#: breadcrumb_navxt_admin.php:725
|
634 |
+
msgid "Archive by Date Prefix"
|
635 |
+
msgstr "Prefijo de Archivo por Fecha"
|
636 |
+
|
637 |
+
#: breadcrumb_navxt_admin.php:725
|
638 |
+
msgid "Applied before the anchor on all date breadcrumbs."
|
639 |
+
msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
|
640 |
+
|
641 |
+
#: breadcrumb_navxt_admin.php:726
|
642 |
+
msgid "Archive by Date Suffix"
|
643 |
+
msgstr "Sufijo de Archivo por Fecha"
|
644 |
+
|
645 |
+
#: breadcrumb_navxt_admin.php:726
|
646 |
+
msgid "Applied after the anchor on all date breadcrumbs."
|
647 |
+
msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
|
648 |
+
|
649 |
+
#: breadcrumb_navxt_admin.php:731
|
650 |
+
msgid "Miscellaneous"
|
651 |
+
msgstr "Misceláneos"
|
652 |
+
|
653 |
+
#: breadcrumb_navxt_admin.php:734
|
654 |
+
msgid "Author Prefix"
|
655 |
+
msgstr "Prefijo de Autor"
|
656 |
+
|
657 |
+
#: breadcrumb_navxt_admin.php:735
|
658 |
+
msgid "Author Suffix"
|
659 |
+
msgstr "Sufijo de Autor"
|
660 |
+
|
661 |
+
#: breadcrumb_navxt_admin.php:736
|
662 |
+
msgid "Author Display Format"
|
663 |
+
msgstr "Formato de Despliegue de Autor"
|
664 |
+
|
665 |
+
#: breadcrumb_navxt_admin.php:736
|
666 |
+
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
667 |
+
msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
|
668 |
+
|
669 |
+
#: breadcrumb_navxt_admin.php:737
|
670 |
+
msgid "Search Prefix"
|
671 |
+
msgstr "Prefijo de Búsqueda"
|
672 |
+
|
673 |
+
#: breadcrumb_navxt_admin.php:738
|
674 |
+
msgid "Search Suffix"
|
675 |
+
msgstr "Sufijo de Búsqueda"
|
676 |
+
|
677 |
+
#: breadcrumb_navxt_admin.php:739
|
678 |
+
msgid "Search Anchor"
|
679 |
+
msgstr "Vínculo a Búsqueda"
|
680 |
+
|
681 |
+
#: breadcrumb_navxt_admin.php:739
|
682 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
683 |
+
msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
|
684 |
+
|
685 |
+
#: breadcrumb_navxt_admin.php:740
|
686 |
+
msgid "404 Title"
|
687 |
+
msgstr "Título Error 404"
|
688 |
+
|
689 |
+
#: breadcrumb_navxt_admin.php:741
|
690 |
+
msgid "404 Prefix"
|
691 |
+
msgstr "Prefijo de Error 404"
|
692 |
+
|
693 |
+
#: breadcrumb_navxt_admin.php:742
|
694 |
+
msgid "404 Suffix"
|
695 |
+
msgstr "Sufijo de Error 404"
|
696 |
+
|
697 |
+
#: breadcrumb_navxt_admin.php:747
|
698 |
+
msgid "Save Changes"
|
699 |
+
msgstr "Grabar Cambios"
|
700 |
+
|
701 |
+
#: breadcrumb_navxt_class.php:217
|
702 |
+
msgid "Blog"
|
703 |
+
msgstr "Inicio"
|
704 |
+
|
705 |
+
#: breadcrumb_navxt_class.php:236
|
706 |
+
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
707 |
+
msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">"
|
708 |
+
|
709 |
+
#: breadcrumb_navxt_class.php:281
|
710 |
+
msgid "404"
|
711 |
+
msgstr "Página no encontrada"
|
712 |
+
|
713 |
+
#: breadcrumb_navxt_class.php:284
|
714 |
+
msgid "Search results for '"
|
715 |
+
msgstr "Resultados de búsqueda para '"
|
716 |
+
|
717 |
+
#: breadcrumb_navxt_class.php:288
|
718 |
+
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
719 |
+
msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
|
720 |
+
|
721 |
+
#: breadcrumb_navxt_class.php:295
|
722 |
+
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
723 |
+
msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">"
|
724 |
+
|
725 |
+
#: breadcrumb_navxt_class.php:298
|
726 |
+
msgid "Articles by: "
|
727 |
+
msgstr "Artículos por: "
|
728 |
+
|
729 |
+
#: breadcrumb_navxt_class.php:302
|
730 |
+
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
731 |
+
msgstr "<a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">"
|
732 |
+
|
733 |
+
#: breadcrumb_navxt_class.php:311
|
734 |
+
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
735 |
+
msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">"
|
736 |
+
|
737 |
+
#: breadcrumb_navxt_class.php:314
|
738 |
+
msgid "Archive by category '"
|
739 |
+
msgstr "Archivo por Categoría '"
|
740 |
+
|
741 |
+
#: breadcrumb_navxt_class.php:318
|
742 |
+
msgid "Archive by tag '"
|
743 |
+
msgstr "Archivo por Etiqueta '"
|
744 |
+
|
745 |
+
#: breadcrumb_navxt_class.php:321
|
746 |
+
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
747 |
+
msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
|
748 |
+
|
749 |
+
#~ msgid "Un"
|
750 |
+
#~ msgstr "Des"
|
751 |
+
#~ msgid "Untagged"
|
752 |
+
#~ msgstr "Sin etiqueta"
|
753 |
+
#~ msgid ""
|
754 |
+
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
755 |
+
#~ "the default values. Are you sure you want to continue?"
|
756 |
+
#~ msgstr ""
|
757 |
+
#~ "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los "
|
758 |
+
#~ "valores predeterminados. ¿Seguro que desea continuar?"
|
759 |
+
#~ msgid ""
|
760 |
+
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
761 |
+
#~ "the imported values. Are you sure you want to continue?"
|
762 |
+
#~ msgstr ""
|
763 |
+
#~ "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los "
|
764 |
+
#~ "valores que se importen. ¿Seguro que desea continuar?"
|
765 |
+
#~ msgid ""
|
766 |
+
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
767 |
+
#~ "supported by this administrative interface. As a result, settings may not "
|
768 |
+
#~ "work as expected."
|
769 |
+
#~ msgstr ""
|
770 |
+
#~ "Advertencia, la versión de Breadcrumb NavXT que usted posee no es "
|
771 |
+
#~ "compatible con la versión proveída por la iinterfaz de administración. "
|
772 |
+
#~ "Como resultado, las configuraciones pueden no funcionar apropiadamente."
|
773 |
+
#~ msgid "Your Breadcrumb NavXT Administration interface version is "
|
774 |
+
#~ msgstr "La versión de su interfaz de Administración Breadcrumb NavXT es "
|
775 |
+
#~ msgid "Your Breadcrumb NavXT version is "
|
776 |
+
#~ msgstr "La versión de Breadcrubm NavXT que posee es "
|
777 |
+
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: mtekk, hakre
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 3.3
|
7 |
-
Stable tag: 4.0.
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|
10 |
== Description ==
|
@@ -33,6 +33,10 @@ Don't see your language on the list? Feel free to translate Breadcrumb NavXT and
|
|
33 |
Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
|
34 |
|
35 |
== Changelog ==
|
|
|
|
|
|
|
|
|
36 |
= 4.0.0 =
|
37 |
* Behavior change: Prefix, suffix, and anchor settings have been replaced with templates for all breadcrumb types.
|
38 |
* Behavior change: `bcn_display_nested` function was removed from the main plugin. Will appear in a supplementary plugin.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 3.3.1
|
7 |
+
Stable tag: 4.0.1
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|
10 |
== Description ==
|
33 |
Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
|
34 |
|
35 |
== Changelog ==
|
36 |
+
= 4.0.1 =
|
37 |
+
* New feature: Norwegian translations added props to Jan Rosvoldsve.
|
38 |
+
* Bug fix: Fixed line 591 and line 646 errors in multisite installs.
|
39 |
+
* Bug fix: Attachments will now obey the root page setting for their parent, regardless of the parent�s post type.
|
40 |
= 4.0.0 =
|
41 |
* Behavior change: Prefix, suffix, and anchor settings have been replaced with templates for all breadcrumb types.
|
42 |
* Behavior change: `bcn_display_nested` function was removed from the main plugin. Will appear in a supplementary plugin.
|