Version Description
- New feature: Added actions
bcn_before_fill
andbcn_after_fill
, see documentation for more information. - New feature: Widget rewritten to use the WordPress 2.8 Widget API, now multi-widget capable.
- New feature: Widget output can be in list form, can be in reversed order, and can be unlinked.
- Bug fix: Fixed issue where the current tab was forgotten after a save in the settings page.
- Bug fix: Fixed various WP API issues with WordPress 3.0.
- Bug fix: Fixed title trimming so that it works properly with multi-byte characters.
Download this release
Release Info
Developer | mtekk |
Plugin | Breadcrumb NavXT |
Version | 3.5.0 |
Comparing to | |
See all releases |
Code changes from version 3.4.1 to 3.5.0
- .plugin +0 -1
- breadcrumb_navxt_admin.php +248 -1139
- breadcrumb_navxt_api.php +0 -73
- breadcrumb_navxt_class.php +43 -25
- breadcrumb_navxt_widget.php +79 -0
- languages/breadcrumb-navxt.pot +197 -162
- languages/breadcrumb_navxt-es_ES.mo +0 -0
- languages/breadcrumb_navxt-es_ES.po +195 -164
- languages/breadcrumb_navxt-it_IT.mo +0 -0
- languages/breadcrumb_navxt-it_IT.po +201 -167
- languages/breadcrumb_navxt-sv_SE.mo +0 -0
- languages/breadcrumb_navxt-sv_SE.po +195 -162
- languages/breadcrumb_navxt.mo +0 -0
- languages/breadcrumb_navxt.po +210 -435
- mtekk_admin_class.php +537 -0
- readme.txt +10 -3
.plugin
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
breadcrumb-navxt
|
|
breadcrumb_navxt_admin.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.weblogs.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.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 3.
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.weblogs.us/
|
9 |
*/
|
10 |
-
/* Copyright 2007-
|
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
|
@@ -23,41 +23,45 @@ Author URI: http://mtekk.weblogs.us/
|
|
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
|
29 |
-
require_once(dirname(__FILE__) . '/
|
|
|
|
|
|
|
|
|
|
|
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.1';
|
46 |
-
|
47 |
-
/**
|
48 |
-
* wether or not this administration page has contextual help
|
49 |
-
*
|
50 |
-
* @var bool
|
51 |
-
* @since 3.2
|
52 |
*/
|
53 |
-
|
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 |
/**
|
@@ -69,40 +73,14 @@ class 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 |
-
//
|
73 |
-
|
74 |
-
//
|
75 |
-
|
76 |
-
//WordPress
|
77 |
-
add_action('
|
78 |
-
//
|
79 |
-
|
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
|
@@ -112,12 +90,10 @@ class bcn_admin
|
|
112 |
* @since 3.2.0
|
113 |
* @return void
|
114 |
*/
|
115 |
-
|
116 |
{
|
117 |
-
//
|
118 |
-
|
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 |
}
|
@@ -129,7 +105,7 @@ class bcn_admin
|
|
129 |
function security()
|
130 |
{
|
131 |
//If the user can not manage options we will die on them
|
132 |
-
if(!current_user_can(
|
133 |
{
|
134 |
_e('Insufficient privileges to proceed.', 'breadcrumb_navxt');
|
135 |
die();
|
@@ -142,10 +118,9 @@ class bcn_admin
|
|
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
|
@@ -153,72 +128,56 @@ class bcn_admin
|
|
153 |
{
|
154 |
//Split up the db version into it's components
|
155 |
list($major, $minor, $release) = explode('.', $db_version);
|
156 |
-
|
157 |
-
|
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 |
-
|
189 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
190 |
-
//Update our internal settings
|
191 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
192 |
-
$this->breadcrumb_trail->opt['search_anchor'] = __('<a title="Go to the first page of search results for %title%." href="%link%">','breadcrumb_navxt');
|
193 |
}
|
194 |
else if($major == 3 && $minor < 3)
|
195 |
{
|
196 |
-
|
197 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
198 |
-
//Update our internal settings
|
199 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
200 |
-
$this->breadcrumb_trail->opt['blog_display'] = true;
|
201 |
}
|
202 |
else if($major == 3 && $minor < 4)
|
203 |
{
|
204 |
-
//Update our internal settings
|
205 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
206 |
//Inline upgrade of the tag setting
|
207 |
-
if($
|
208 |
{
|
209 |
-
$
|
210 |
}
|
211 |
//Fix our tag settings
|
212 |
-
$
|
213 |
-
$
|
214 |
-
$
|
215 |
-
$
|
216 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
}
|
218 |
//Always have to update the version
|
219 |
$this->update_option('bcn_version', $this->version);
|
220 |
//Store the options
|
221 |
-
$this->add_option('bcn_options', $
|
222 |
}
|
223 |
//Check if we have valid anchors
|
224 |
if($temp = $this->get_option('bcn_options'))
|
@@ -243,325 +202,48 @@ class bcn_admin
|
|
243 |
}
|
244 |
}
|
245 |
/**
|
246 |
-
*
|
247 |
*
|
248 |
-
*
|
249 |
-
*/
|
250 |
-
function uninstall()
|
251 |
-
{
|
252 |
-
//Call our little security function
|
253 |
-
$this->security();
|
254 |
-
//Remove the option array setting
|
255 |
-
$this->delete_option('bcn_options');
|
256 |
-
//Remove the version setting
|
257 |
-
$this->delete_option('bcn_version');
|
258 |
-
}
|
259 |
-
/**
|
260 |
-
* reset
|
261 |
-
*
|
262 |
-
* Resets the options to the default values
|
263 |
-
*/
|
264 |
-
function reset()
|
265 |
-
{
|
266 |
-
$this->security();
|
267 |
-
//Do a nonce check, prevent malicious link/form problems
|
268 |
-
check_admin_referer('bcn_admin_upload');
|
269 |
-
//Only needs this one line, will load in the hard coded default option values
|
270 |
-
$this->update_option('bcn_options', $this->breadcrumb_trail->opt);
|
271 |
-
//Reset successful, let the user know
|
272 |
-
add_action('admin_notices', array($this, 'notify_reset'));
|
273 |
-
}
|
274 |
-
/**
|
275 |
-
* export
|
276 |
-
*
|
277 |
-
* Exports the database settings to a XML document
|
278 |
-
*/
|
279 |
-
function export()
|
280 |
-
{
|
281 |
-
$this->security();
|
282 |
-
//Do a nonce check, prevent malicious link/form problems
|
283 |
-
check_admin_referer('bcn_admin_upload');
|
284 |
-
//Update our internal settings
|
285 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options', true);
|
286 |
-
//Create a DOM document
|
287 |
-
$dom = new DOMDocument('1.0', 'UTF-8');
|
288 |
-
//Adds in newlines and tabs to the output
|
289 |
-
$dom->formatOutput = true;
|
290 |
-
//We're not using a DTD therefore we need to specify it as a standalone document
|
291 |
-
$dom->xmlStandalone = true;
|
292 |
-
//Add an element called options
|
293 |
-
$node = $dom->createElement('options');
|
294 |
-
$parnode = $dom->appendChild($node);
|
295 |
-
//Add a child element named plugin
|
296 |
-
$node = $dom->createElement('plugin');
|
297 |
-
$plugnode = $parnode->appendChild($node);
|
298 |
-
//Add some attributes that identify the plugin and version for the options export
|
299 |
-
$plugnode->setAttribute('name', 'breadcrumb_navxt');
|
300 |
-
$plugnode->setAttribute('version', $this->version);
|
301 |
-
//Change our headder to text/xml for direct save
|
302 |
-
header('Cache-Control: public');
|
303 |
-
//The next two will cause good browsers to download instead of displaying the file
|
304 |
-
header('Content-Description: File Transfer');
|
305 |
-
header('Content-disposition: attachemnt; filename=bcn_settings.xml');
|
306 |
-
header('Content-Type: text/xml');
|
307 |
-
//Loop through the options array
|
308 |
-
foreach($this->breadcrumb_trail->opt as $key=>$option)
|
309 |
-
{
|
310 |
-
//Add a option tag under the options tag, store the option value
|
311 |
-
$node = $dom->createElement('option', $option);
|
312 |
-
$newnode = $plugnode->appendChild($node);
|
313 |
-
//Change the tag's name to that of the stored option
|
314 |
-
$newnode->setAttribute('name', $key);
|
315 |
-
}
|
316 |
-
//Prepair the XML for output
|
317 |
-
$output = $dom->saveXML();
|
318 |
-
//Let the browser know how long the file is
|
319 |
-
header('Content-Length: ' . strlen($output)); // binary length
|
320 |
-
//Output the file
|
321 |
-
echo $output;
|
322 |
-
//Prevent WordPress from continuing on
|
323 |
-
die();
|
324 |
-
}
|
325 |
-
/**
|
326 |
-
* import
|
327 |
-
*
|
328 |
-
* Imports a XML options document
|
329 |
*/
|
330 |
-
function
|
331 |
{
|
332 |
-
|
333 |
-
|
334 |
-
{
|
335 |
-
return true;
|
336 |
-
}
|
337 |
$this->security();
|
338 |
//Do a nonce check, prevent malicious link/form problems
|
339 |
-
check_admin_referer('
|
340 |
-
//
|
341 |
-
$
|
342 |
-
//
|
343 |
-
|
344 |
-
//Load the user uploaded file, handle failure gracefully
|
345 |
-
if($dom->load($_FILES['bcn_admin_import_file']['tmp_name']))
|
346 |
{
|
347 |
-
//
|
348 |
-
$
|
349 |
-
|
350 |
-
|
351 |
-
|
|
|
|
|
352 |
{
|
353 |
-
//
|
354 |
-
if($
|
355 |
{
|
356 |
-
//Do
|
357 |
-
|
358 |
-
list($major, $minor, $release) = explode('.', $options->getAttribute('version'));
|
359 |
-
//We don't support using newer versioned option files in older releases
|
360 |
-
if($plug_major == $major && $plug_minor >= $minor)
|
361 |
-
{
|
362 |
-
//Loop around all of the options
|
363 |
-
foreach($options->getelementsByTagName('option') as $child)
|
364 |
-
{
|
365 |
-
//Place the option into the option array, DOMDocument decodes html entities for us
|
366 |
-
$this->breadcrumb_trail->opt[$child->getAttribute('name')] = $child->nodeValue;
|
367 |
-
}
|
368 |
-
}
|
369 |
}
|
370 |
}
|
371 |
-
//
|
372 |
-
|
373 |
-
//Everything was successful, let the user know
|
374 |
-
add_action('admin_notices', array($this, 'notify_import_success'));
|
375 |
-
}
|
376 |
-
else
|
377 |
-
{
|
378 |
-
//Throw an error since we could not load the file for various reasons
|
379 |
-
add_action('admin_notices', array($this, 'notify_import_failure'));
|
380 |
-
}
|
381 |
-
//Reset to the default error handler after we're done
|
382 |
-
restore_error_handler();
|
383 |
-
}
|
384 |
-
/**
|
385 |
-
* update
|
386 |
-
*
|
387 |
-
* Updates the database settings from the webform
|
388 |
-
*/
|
389 |
-
function update()
|
390 |
-
{
|
391 |
-
global $wp_taxonomies;
|
392 |
-
$this->security();
|
393 |
-
//Do a nonce check, prevent malicious link/form problems
|
394 |
-
check_admin_referer('bcn_admin-options');
|
395 |
-
|
396 |
-
//Grab the options from the from post
|
397 |
-
//Home page settings
|
398 |
-
$this->breadcrumb_trail->opt['home_display'] = str2bool(bcn_get('home_display', 'false'));
|
399 |
-
$this->breadcrumb_trail->opt['blog_display'] = str2bool(bcn_get('blog_display', 'false'));
|
400 |
-
$this->breadcrumb_trail->opt['home_title'] = bcn_get('home_title');
|
401 |
-
$this->breadcrumb_trail->opt['home_anchor'] = bcn_get('home_anchor', $this->breadcrumb_trail->opt['home_anchor']);
|
402 |
-
$this->breadcrumb_trail->opt['blog_anchor'] = bcn_get('blog_anchor', $this->breadcrumb_trail->opt['blog_anchor']);
|
403 |
-
$this->breadcrumb_trail->opt['home_prefix'] = bcn_get('home_prefix');
|
404 |
-
$this->breadcrumb_trail->opt['home_suffix'] = bcn_get('home_suffix');
|
405 |
-
$this->breadcrumb_trail->opt['separator'] = bcn_get('separator');
|
406 |
-
$this->breadcrumb_trail->opt['max_title_length'] = (int) bcn_get('max_title_length');
|
407 |
-
//Current item settings
|
408 |
-
$this->breadcrumb_trail->opt['current_item_linked'] = str2bool(bcn_get('current_item_linked', 'false'));
|
409 |
-
$this->breadcrumb_trail->opt['current_item_anchor'] = bcn_get('current_item_anchor', $this->breadcrumb_trail->opt['current_item_anchor']);
|
410 |
-
$this->breadcrumb_trail->opt['current_item_prefix'] = bcn_get('current_item_prefix');
|
411 |
-
$this->breadcrumb_trail->opt['current_item_suffix'] = bcn_get('current_item_suffix');
|
412 |
-
//Paged settings
|
413 |
-
$this->breadcrumb_trail->opt['paged_prefix'] = bcn_get('paged_prefix');
|
414 |
-
$this->breadcrumb_trail->opt['paged_suffix'] = bcn_get('paged_suffix');
|
415 |
-
$this->breadcrumb_trail->opt['paged_display'] = str2bool(bcn_get('paged_display', 'false'));
|
416 |
-
//Page settings
|
417 |
-
$this->breadcrumb_trail->opt['page_prefix'] = bcn_get('page_prefix');
|
418 |
-
$this->breadcrumb_trail->opt['page_suffix'] = bcn_get('page_suffix');
|
419 |
-
$this->breadcrumb_trail->opt['page_anchor'] = bcn_get('page_anchor', $this->breadcrumb_trail->opt['page_anchor']);
|
420 |
-
//Post related options
|
421 |
-
$this->breadcrumb_trail->opt['post_prefix'] = bcn_get('post_prefix');
|
422 |
-
$this->breadcrumb_trail->opt['post_suffix'] = bcn_get('post_suffix');
|
423 |
-
$this->breadcrumb_trail->opt['post_anchor'] = bcn_get('post_anchor', $this->breadcrumb_trail->opt['post_anchor']);
|
424 |
-
$this->breadcrumb_trail->opt['post_taxonomy_display'] = str2bool(bcn_get('post_taxonomy_display', 'false'));
|
425 |
-
$this->breadcrumb_trail->opt['post_taxonomy_type'] = bcn_get('post_taxonomy_type');
|
426 |
-
//Attachment settings
|
427 |
-
$this->breadcrumb_trail->opt['attachment_prefix'] = bcn_get('attachment_prefix');
|
428 |
-
$this->breadcrumb_trail->opt['attachment_suffix'] = bcn_get('attachment_suffix');
|
429 |
-
//404 page settings
|
430 |
-
$this->breadcrumb_trail->opt['404_prefix'] = bcn_get('404_prefix');
|
431 |
-
$this->breadcrumb_trail->opt['404_suffix'] = bcn_get('404_suffix');
|
432 |
-
$this->breadcrumb_trail->opt['404_title'] = bcn_get('404_title');
|
433 |
-
//Search page settings
|
434 |
-
$this->breadcrumb_trail->opt['search_prefix'] = bcn_get('search_prefix');
|
435 |
-
$this->breadcrumb_trail->opt['search_suffix'] = bcn_get('search_suffix');
|
436 |
-
$this->breadcrumb_trail->opt['search_anchor'] = bcn_get('search_anchor', $this->breadcrumb_trail->opt['search_anchor']);
|
437 |
-
//Tag settings
|
438 |
-
$this->breadcrumb_trail->opt['post_tag_prefix'] = bcn_get('post_tag_prefix');
|
439 |
-
$this->breadcrumb_trail->opt['post_tag_suffix'] = bcn_get('post_tag_suffix');
|
440 |
-
$this->breadcrumb_trail->opt['post_tag_anchor'] = bcn_get('post_tag_anchor', $this->breadcrumb_trail->opt['post_tag_anchor']);
|
441 |
-
//Author page settings
|
442 |
-
$this->breadcrumb_trail->opt['author_prefix'] = bcn_get('author_prefix');
|
443 |
-
$this->breadcrumb_trail->opt['author_suffix'] = bcn_get('author_suffix');
|
444 |
-
$this->breadcrumb_trail->opt['author_display'] = bcn_get('author_display');
|
445 |
-
//Category settings
|
446 |
-
$this->breadcrumb_trail->opt['category_prefix'] = bcn_get('category_prefix');
|
447 |
-
$this->breadcrumb_trail->opt['category_suffix'] = bcn_get('category_suffix');
|
448 |
-
$this->breadcrumb_trail->opt['category_anchor'] = bcn_get('category_anchor', $this->breadcrumb_trail->opt['category_anchor']);
|
449 |
-
//Archive settings
|
450 |
-
$this->breadcrumb_trail->opt['archive_category_prefix'] = bcn_get('archive_category_prefix');
|
451 |
-
$this->breadcrumb_trail->opt['archive_category_suffix'] = bcn_get('archive_category_suffix');
|
452 |
-
$this->breadcrumb_trail->opt['archive_post_tag_prefix'] = bcn_get('archive_post_tag_prefix');
|
453 |
-
$this->breadcrumb_trail->opt['archive_post_tag_suffix'] = bcn_get('archive_post_tag_suffix');
|
454 |
-
//Archive by date settings
|
455 |
-
$this->breadcrumb_trail->opt['date_anchor'] = bcn_get('date_anchor', $this->breadcrumb_trail->opt['date_anchor']);
|
456 |
-
$this->breadcrumb_trail->opt['archive_date_prefix'] = bcn_get('archive_date_prefix');
|
457 |
-
$this->breadcrumb_trail->opt['archive_date_suffix'] = bcn_get('archive_date_suffix');
|
458 |
-
//Loop through all of the taxonomies in the array
|
459 |
-
foreach($wp_taxonomies as $taxonomy)
|
460 |
-
{
|
461 |
-
//We only want custom taxonomies
|
462 |
-
if($taxonomy->object_type == 'post' && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
463 |
{
|
464 |
-
$this->
|
465 |
-
$this->breadcrumb_trail->opt[$taxonomy->name . '_suffix'] = bcn_get($taxonomy->name . '_suffix');
|
466 |
-
$this->breadcrumb_trail->opt[$taxonomy->name . '_anchor'] = bcn_get($taxonomy->name . '_anchor', $this->breadcrumb_trail->opt['post_tag_anchor']);
|
467 |
-
$this->breadcrumb_trail->opt['archive_' . $taxonomy->name . '_prefix'] = bcn_get('archive_' . $taxonomy->name . '_prefix');
|
468 |
-
$this->breadcrumb_trail->opt['archive_' . $taxonomy->name . '_suffix'] = bcn_get('archive_' . $taxonomy->name . '_suffix');
|
469 |
}
|
470 |
}
|
471 |
//Commit the option changes
|
472 |
-
$this->update_option('bcn_options', $this->
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
*
|
477 |
-
* Outputs the breadcrumb trail
|
478 |
-
*
|
479 |
-
* @param (bool) $return Whether to return or echo the trail.
|
480 |
-
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
481 |
-
* @param (bool) $reverse Whether to reverse the output or not.
|
482 |
-
*/
|
483 |
-
function display($return = false, $linked = true, $reverse = false)
|
484 |
-
{
|
485 |
-
//Update our internal settings
|
486 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
487 |
-
//Generate the breadcrumb trail
|
488 |
-
$this->breadcrumb_trail->fill();
|
489 |
-
return $this->breadcrumb_trail->display($return, $linked, $reverse);
|
490 |
-
}
|
491 |
-
/**
|
492 |
-
* display_list
|
493 |
-
*
|
494 |
-
* Outputs the breadcrumb trail
|
495 |
-
*
|
496 |
-
* @since 3.2.0
|
497 |
-
* @param (bool) $return Whether to return or echo the trail.
|
498 |
-
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
499 |
-
* @param (bool) $reverse Whether to reverse the output or not.
|
500 |
-
*/
|
501 |
-
function display_list($return = false, $linked = true, $reverse = false)
|
502 |
-
{
|
503 |
-
//Update our internal settings
|
504 |
-
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
505 |
-
//Generate the breadcrumb trail
|
506 |
-
$this->breadcrumb_trail->fill();
|
507 |
-
return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
|
508 |
-
}
|
509 |
-
/**
|
510 |
-
* widget
|
511 |
-
*
|
512 |
-
* The sidebar widget
|
513 |
-
*/
|
514 |
-
function widget($args)
|
515 |
-
{
|
516 |
-
extract($args);
|
517 |
-
//Manditory before widget junk
|
518 |
-
echo $before_widget;
|
519 |
-
//Display the breadcrumb trial
|
520 |
-
if($this->breadcrumb_trail->trail[0] != NULL)
|
521 |
-
{
|
522 |
-
$this->breadcrumb_trail->display();
|
523 |
-
}
|
524 |
-
else
|
525 |
-
{
|
526 |
-
$this->display();
|
527 |
-
}
|
528 |
-
//Manditory after widget junk
|
529 |
-
echo $after_widget;
|
530 |
-
}
|
531 |
-
/**
|
532 |
-
* register_widget
|
533 |
-
*
|
534 |
-
* Registers the sidebar widget
|
535 |
-
*/
|
536 |
-
function register_widget()
|
537 |
-
{
|
538 |
-
register_sidebar_widget('Breadcrumb NavXT', array($this, 'widget'));
|
539 |
-
}
|
540 |
-
/**
|
541 |
-
* filter_plugin_actions
|
542 |
-
*
|
543 |
-
* Places in a link to the settings page in the plugins listing entry
|
544 |
-
*
|
545 |
-
* @param (array) $links An array of links that are output in the listing
|
546 |
-
* @param (string) $file The file that is currently in processing
|
547 |
-
* @return (array) Array of links that are output in the listing.
|
548 |
-
*/
|
549 |
-
function filter_plugin_actions($links, $file)
|
550 |
-
{
|
551 |
-
static $this_plugin;
|
552 |
-
if(!$this_plugin)
|
553 |
-
{
|
554 |
-
$this_plugin = plugin_basename(__FILE__);
|
555 |
-
}
|
556 |
-
//Make sure we are adding only for Breadcrumb NavXT
|
557 |
-
if($file == $this_plugin)
|
558 |
-
{
|
559 |
-
//Setup the link string
|
560 |
-
$settings_link = '<a href="options-general.php?page=breadcrumb-navxt">' . __('Settings') . '</a>';
|
561 |
-
//Add it to the end of the array to better integrate into the WP 2.8 plugins page
|
562 |
-
$links[] = $settings_link;
|
563 |
-
}
|
564 |
-
return $links;
|
565 |
}
|
566 |
/**
|
567 |
* javascript
|
@@ -576,92 +258,16 @@ class bcn_admin
|
|
576 |
//Enqueue ui-tabs
|
577 |
wp_enqueue_script('jquery-ui-tabs');
|
578 |
}
|
579 |
-
/**
|
580 |
-
* local
|
581 |
-
*
|
582 |
-
* Initilizes localization textdomain for translations (if applicable)
|
583 |
-
*
|
584 |
-
* normally there is no need to load it because it is already loaded with
|
585 |
-
* the breadcrumb class. if not, then it will be loaded.
|
586 |
-
*
|
587 |
-
* @return void
|
588 |
-
*/
|
589 |
-
function local()
|
590 |
-
{
|
591 |
-
// the global and the check might become obsolete in
|
592 |
-
// further wordpress versions
|
593 |
-
// @see https://core.trac.wordpress.org/ticket/10527
|
594 |
-
global $l10n;
|
595 |
-
$domain = 'breadcrumb_navxt';
|
596 |
-
if (!isset( $l10n[$domain] ))
|
597 |
-
{
|
598 |
-
load_plugin_textdomain($domain, false, 'breadcrumb-navxt/languages');
|
599 |
-
}
|
600 |
-
}
|
601 |
-
/**
|
602 |
-
* add_page
|
603 |
-
*
|
604 |
-
* Adds the adminpage the menue and the nice little settings link
|
605 |
-
*
|
606 |
-
* @return void
|
607 |
-
*/
|
608 |
-
function add_page()
|
609 |
-
{
|
610 |
-
// check capability of user to manage options (access control)
|
611 |
-
if(current_user_can('manage_options'))
|
612 |
-
{
|
613 |
-
//Add the submenu page to "settings" menu
|
614 |
-
$hookname = add_submenu_page('options-general.php', __('Breadcrumb NavXT Settings', 'breadcrumb_navxt'), 'Breadcrumb NavXT', 'manage_options', 'breadcrumb-navxt', array($this, 'admin_panel'));
|
615 |
-
//Register admin_head-$hookname callback
|
616 |
-
add_action('admin_head-'.$hookname, array($this, 'admin_head'));
|
617 |
-
//Register Help Output
|
618 |
-
add_action('contextual_help', array($this, 'contextual_help'), 10, 2);
|
619 |
-
}
|
620 |
-
}
|
621 |
-
|
622 |
-
/**
|
623 |
-
* contextual_help action hook function
|
624 |
-
*
|
625 |
-
* @param string $contextual_help
|
626 |
-
* @param string $screen
|
627 |
-
* @return string
|
628 |
-
*/
|
629 |
-
function contextual_help($contextual_help, $screen)
|
630 |
-
{
|
631 |
-
// add contextual help on current screen
|
632 |
-
if ($screen == 'settings_page_breadcrumb-navxt')
|
633 |
-
{
|
634 |
-
$contextual_help = $this->_get_contextual_help();
|
635 |
-
$this->_has_contextual_help = true;
|
636 |
-
}
|
637 |
-
return $contextual_help;
|
638 |
-
}
|
639 |
-
|
640 |
-
/**
|
641 |
-
* get contextual help
|
642 |
-
*
|
643 |
-
* @return string
|
644 |
-
*/
|
645 |
-
private function _get_contextual_help()
|
646 |
-
{
|
647 |
-
$t = $this->_get_help_text();
|
648 |
-
$t = sprintf('<div class="metabox-prefs">%s</div>', $t);
|
649 |
-
$title = __('Breadcrumb NavXT Settings', 'breadcrumb_navxt');
|
650 |
-
$t = sprintf('<h5>%s</h5>%s', sprintf(__('Get help with "%s"'), $title), $t);
|
651 |
-
return $t;
|
652 |
-
}
|
653 |
-
|
654 |
/**
|
655 |
* get help text
|
656 |
*
|
657 |
* @return string
|
658 |
*/
|
659 |
-
|
660 |
{
|
661 |
return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
|
662 |
'<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>');
|
663 |
}
|
664 |
-
|
665 |
/**
|
666 |
* admin_head
|
667 |
*
|
@@ -728,7 +334,6 @@ class bcn_admin
|
|
728 |
* Tabulator Bootup
|
729 |
*/
|
730 |
function bcn_tabulator_init(){
|
731 |
-
/* if this is not the breadcrumb admin page, quit */
|
732 |
if (!jQuery("#hasadmintabs").length) return;
|
733 |
/* init markup for tabs */
|
734 |
jQuery('#hasadmintabs').prepend("<ul><\/ul>");
|
@@ -739,19 +344,10 @@ class bcn_admin
|
|
739 |
jQuery(this).find('h3').hide();
|
740 |
});
|
741 |
/* init the tabs plugin */
|
742 |
-
|
743 |
-
switch(true){
|
744 |
-
// tabs plugin has been fixed to work on the parent element again.
|
745 |
-
case jquiver[0] >= 1 && jquiver[1] >= 7:
|
746 |
-
jQuery("#hasadmintabs").tabs();
|
747 |
-
break;
|
748 |
-
// tabs plugin has bug and needs to work on ul directly.
|
749 |
-
default:
|
750 |
-
jQuery("#hasadmintabs > ul").tabs();
|
751 |
-
}
|
752 |
/* handler for opening the last tab after submit (compability version) */
|
753 |
jQuery('#hasadmintabs ul a').click(function(i){
|
754 |
-
var form = jQuery('#
|
755 |
var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
|
756 |
// an older bug pops up with some jQuery version(s), which makes it
|
757 |
// necessary to set the form's action attribute by standard javascript
|
@@ -764,7 +360,6 @@ class bcn_admin
|
|
764 |
*/
|
765 |
function bcn_context_init(){
|
766 |
if (!jQuery("#bcn_import_export_relocate").length) return;
|
767 |
-
var jqver = undefined == jQuery.fn.jquery ? [0,0,0] : jQuery.fn.jquery.split('.');
|
768 |
jQuery('#screen-meta').prepend(
|
769 |
'<div id="screen-options-wrap" class="hidden"></div>'
|
770 |
);
|
@@ -773,29 +368,6 @@ class bcn_admin
|
|
773 |
'<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>' +
|
774 |
'</div>'
|
775 |
);
|
776 |
-
// jQuery Version below 1.3 (common for WP 2.7) needs some other style-classes
|
777 |
-
// and jQuery events
|
778 |
-
if (jqver[0] <= 1 && jqver[1] < 3){
|
779 |
-
// hide-if-no-js for WP 2.8, not for WP 2.7
|
780 |
-
jQuery('#screen-options-link-wrap').removeClass('hide-if-no-js');
|
781 |
-
// screen settings tab (WP 2.7 legacy)
|
782 |
-
jQuery('#show-settings-link').click(function () {
|
783 |
-
if ( ! jQuery('#screen-options-wrap').hasClass('screen-options-open') ) {
|
784 |
-
jQuery('#contextual-help-link-wrap').addClass('invisible');
|
785 |
-
}
|
786 |
-
jQuery('#screen-options-wrap').slideToggle('fast', function(){
|
787 |
-
if ( jQuery(this).hasClass('screen-options-open') ) {
|
788 |
-
jQuery('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
|
789 |
-
jQuery('#contextual-help-link-wrap').removeClass('invisible');
|
790 |
-
jQuery(this).removeClass('screen-options-open');
|
791 |
-
} else {
|
792 |
-
jQuery('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
|
793 |
-
jQuery(this).addClass('screen-options-open');
|
794 |
-
}
|
795 |
-
});
|
796 |
-
return false;
|
797 |
-
});
|
798 |
-
}
|
799 |
var code = jQuery('#bcn_import_export_relocate').html();
|
800 |
jQuery('#bcn_import_export_relocate').html('');
|
801 |
code = code.replace(/h3>/gi, 'h5>');
|
@@ -805,406 +377,137 @@ class bcn_admin
|
|
805 |
</script>
|
806 |
<?php
|
807 |
} //function admin_head()
|
808 |
-
|
809 |
/**
|
810 |
-
*
|
811 |
*
|
812 |
-
* The administrative
|
813 |
*
|
814 |
*/
|
815 |
-
function
|
816 |
{
|
817 |
global $wp_taxonomies;
|
818 |
$this->security();
|
819 |
-
//
|
820 |
-
$this->
|
821 |
-
?>
|
822 |
<div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
|
823 |
-
<p<?php if
|
824 |
-
print $this->_get_help_text();
|
825 |
?></p>
|
826 |
-
<form action="options-general.php?page=
|
827 |
-
<?php
|
828 |
-
settings_fields('bcn_admin');
|
829 |
-
?>
|
830 |
<div id="hasadmintabs">
|
831 |
<fieldset id="general" class="bcn_options">
|
832 |
<h3><?php _e('General', 'breadcrumb_navxt'); ?></h3>
|
833 |
<table class="form-table">
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
<td>
|
839 |
-
<input type="text" name="separator" id="separator" value="<?php echo $this->breadcrumb_trail->opt['separator']; ?>" size="32" /><br />
|
840 |
-
<span class="setting-description"><?php _e('Placed in between each breadcrumb.', 'breadcrumb_navxt'); ?></span>
|
841 |
-
</td>
|
842 |
-
</tr>
|
843 |
-
<tr valign="top">
|
844 |
-
<th scope="row">
|
845 |
-
<label for="max_title_length"><?php _e('Breadcrumb Max Title Length', 'breadcrumb_navxt'); ?></label>
|
846 |
-
</th>
|
847 |
-
<td>
|
848 |
-
<input type="text" name="max_title_length" id="max_title_length" value="<?php echo $this->breadcrumb_trail->opt['max_title_length'];?>" size="10" />
|
849 |
-
</td>
|
850 |
-
</tr>
|
851 |
<tr valign="top">
|
852 |
<th scope="row">
|
853 |
<?php _e('Home Breadcrumb', 'breadcrumb_navxt'); ?>
|
854 |
</th>
|
855 |
<td>
|
856 |
<label>
|
857 |
-
<input name="home_display" type="checkbox" id="home_display" value="true" <?php checked(true, $this->
|
858 |
<?php _e('Place the home breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
|
859 |
</label><br />
|
860 |
<ul>
|
861 |
<li>
|
862 |
<label for="home_title">
|
863 |
<?php _e('Home Title: ','breadcrumb_navxt');?>
|
864 |
-
<input type="text" name="home_title" id="home_title" value="<?php echo $this->
|
865 |
</label>
|
866 |
</li>
|
867 |
</ul>
|
868 |
</td>
|
869 |
</tr>
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
<?php _e('Place the blog breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
|
878 |
-
</label>
|
879 |
-
</td>
|
880 |
-
</tr>
|
881 |
-
<tr valign="top">
|
882 |
-
<th scope="row">
|
883 |
-
<label for="home_prefix"><?php _e('Home Prefix', 'breadcrumb_navxt'); ?></label>
|
884 |
-
</th>
|
885 |
-
<td>
|
886 |
-
<input type="text" name="home_prefix" id="home_prefix" value="<?php echo $this->breadcrumb_trail->opt['home_prefix']; ?>" size="32" />
|
887 |
-
</td>
|
888 |
-
</tr>
|
889 |
-
<tr valign="top">
|
890 |
-
<th scope="row">
|
891 |
-
<label for="home_suffix"><?php _e('Home Suffix', 'breadcrumb_navxt'); ?></label>
|
892 |
-
</th>
|
893 |
-
<td>
|
894 |
-
<input type="text" name="home_suffix" id="home_suffix" value="<?php echo $this->breadcrumb_trail->opt['home_suffix']; ?>" size="32" />
|
895 |
-
</td>
|
896 |
-
</tr>
|
897 |
-
<tr valign="top">
|
898 |
-
<th scope="row">
|
899 |
-
<label for="home_anchor"><?php _e('Home Anchor', 'breadcrumb_navxt'); ?></label>
|
900 |
-
</th>
|
901 |
-
<td>
|
902 |
-
<input type="text" name="home_anchor" id="home_anchor" value="<?php echo $this->breadcrumb_trail->opt['home_anchor']; ?>" size="60" /><br />
|
903 |
-
<span class="setting-description"><?php _e('The anchor template for the home breadcrumb.', 'breadcrumb_navxt'); ?></span>
|
904 |
-
</td>
|
905 |
-
</tr>
|
906 |
-
<tr valign="top">
|
907 |
-
<th scope="row">
|
908 |
-
<label for="blog_anchor"><?php _e('Blog Anchor', 'breadcrumb_navxt'); ?></label>
|
909 |
-
</th>
|
910 |
-
<td>
|
911 |
-
<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 />
|
912 |
-
<span class="setting-description"><?php _e('The anchor template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb_navxt'); ?></span>
|
913 |
-
</td>
|
914 |
-
</tr>
|
915 |
</table>
|
916 |
</fieldset>
|
917 |
<fieldset id="current" class="bcn_options">
|
918 |
<h3><?php _e('Current Item', 'breadcrumb_navxt'); ?></h3>
|
919 |
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
920 |
<tr valign="top">
|
921 |
<th scope="row">
|
922 |
-
|
923 |
-
</th>
|
924 |
-
<td>
|
925 |
-
<label>
|
926 |
-
<input name="current_item_linked" type="checkbox" id="current_item_linked" value="true" <?php checked(true, $this->breadcrumb_trail->opt['current_item_linked']); ?> />
|
927 |
-
<?php _e('Yes'); ?>
|
928 |
-
</label>
|
929 |
-
</td>
|
930 |
-
</tr>
|
931 |
-
<tr valign="top">
|
932 |
-
<th scope="row">
|
933 |
-
<label for="current_item_prefix"><?php _e('Current Item Prefix', 'breadcrumb_navxt'); ?></label>
|
934 |
-
</th>
|
935 |
-
<td>
|
936 |
-
<input type="text" name="current_item_prefix" id="current_item_prefix" value="<?php echo $this->breadcrumb_trail->opt['current_item_prefix']; ?>" size="32" /><br />
|
937 |
-
<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>
|
938 |
-
</td>
|
939 |
-
</tr>
|
940 |
-
<tr valign="top">
|
941 |
-
<th scope="row">
|
942 |
-
<label for="current_item_suffix"><?php _e('Current Item Suffix', 'breadcrumb_navxt'); ?></label>
|
943 |
-
</th>
|
944 |
-
<td>
|
945 |
-
<input type="text" name="current_item_suffix" id="current_item_suffix" value="<?php echo $this->breadcrumb_trail->opt['current_item_suffix']; ?>" size="32" /><br />
|
946 |
-
<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>
|
947 |
-
</td>
|
948 |
-
</tr>
|
949 |
-
<tr valign="top">
|
950 |
-
<th scope="row">
|
951 |
-
<label for="current_item_anchor"><?php _e('Current Item Anchor', 'breadcrumb_navxt'); ?></label>
|
952 |
-
</th>
|
953 |
-
<td>
|
954 |
-
<input type="text" name="current_item_anchor" id="current_item_anchor" value="<?php echo $this->breadcrumb_trail->opt['current_item_anchor']; ?>" size="60" /><br />
|
955 |
-
<span class="setting-description"><?php _e('The anchor template for current item breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
956 |
-
</td>
|
957 |
-
</tr>
|
958 |
-
<tr valign="top">
|
959 |
-
<th scope="row">
|
960 |
-
<label for="paged_display"><?php _e('Paged Breadcrumb', 'breadcrumb_navxt'); ?></label>
|
961 |
</th>
|
962 |
<td>
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
<th scope="row">
|
980 |
-
<label for="paged_suffix"><?php _e('Paged Suffix', 'breadcrumb_navxt'); ?></label>
|
981 |
-
</th>
|
982 |
-
<td>
|
983 |
-
<input type="text" name="paged_suffix" id="paged_suffix" value="<?php echo $this->breadcrumb_trail->opt['paged_suffix']; ?>" size="32" />
|
984 |
-
</td>
|
985 |
-
</tr>
|
986 |
-
</table>
|
987 |
-
</fieldset>
|
988 |
-
<fieldset id="single" class="bcn_options">
|
989 |
-
<h3><?php _e('Posts & Pages', 'breadcrumb_navxt'); ?></h3>
|
990 |
-
<table class="form-table">
|
991 |
-
<tr valign="top">
|
992 |
-
<th scope="row">
|
993 |
-
<label for="post_prefix"><?php _e('Post Prefix', 'breadcrumb_navxt'); ?></label>
|
994 |
-
</th>
|
995 |
-
<td>
|
996 |
-
<input type="text" name="post_prefix" id="post_prefix" value="<?php echo $this->breadcrumb_trail->opt['post_prefix']; ?>" size="32" />
|
997 |
-
</td>
|
998 |
-
</tr>
|
999 |
-
<tr valign="top">
|
1000 |
-
<th scope="row">
|
1001 |
-
<label for="post_suffix"><?php _e('Post Suffix', 'breadcrumb_navxt'); ?></label>
|
1002 |
-
</th>
|
1003 |
-
<td>
|
1004 |
-
<input type="text" name="post_suffix" id="post_suffix" value="<?php echo $this->breadcrumb_trail->opt['post_suffix']; ?>" size="32" />
|
1005 |
-
</td>
|
1006 |
-
</tr>
|
1007 |
-
<tr valign="top">
|
1008 |
-
<th scope="row">
|
1009 |
-
<label for="post_anchor"><?php _e('Post Anchor', 'breadcrumb_navxt'); ?></label>
|
1010 |
-
</th>
|
1011 |
-
<td>
|
1012 |
-
<input type="text" name="post_anchor" id="post_anchor" value="<?php echo $this->breadcrumb_trail->opt['post_anchor']; ?>" size="60" /><br />
|
1013 |
-
<span class="setting-description"><?php _e('The anchor template for post breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1014 |
-
</td>
|
1015 |
-
</tr>
|
1016 |
-
<tr valign="top">
|
1017 |
-
<th scope="row">
|
1018 |
-
<?php _e('Post Taxonomy Display', 'breadcrumb_navxt'); ?>
|
1019 |
-
</th>
|
1020 |
-
<td>
|
1021 |
-
<label for="post_taxonomy_display">
|
1022 |
-
<input name="post_taxonomy_display" type="checkbox" id="post_taxonomy_display" value="true" <?php checked(true, $this->breadcrumb_trail->opt['post_taxonomy_display']); ?> />
|
1023 |
-
<?php _e('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb_navxt'); ?>
|
1024 |
-
</label>
|
1025 |
-
</td>
|
1026 |
-
</tr>
|
1027 |
-
<tr valign="top">
|
1028 |
-
<th scope="row">
|
1029 |
-
<?php _e('Post Taxonomy', 'breadcrumb_navxt'); ?>
|
1030 |
-
</th>
|
1031 |
-
<td>
|
1032 |
-
<label>
|
1033 |
-
<input name="post_taxonomy_type" type="radio" value="category" class="togx" <?php checked('category', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
|
1034 |
-
<?php _e('Categories'); ?>
|
1035 |
-
</label>
|
1036 |
-
<br/>
|
1037 |
-
<label>
|
1038 |
-
<input name="post_taxonomy_type" type="radio" value="date" class="togx" <?php checked('date', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
|
1039 |
-
<?php _e('Dates'); ?>
|
1040 |
-
</label>
|
1041 |
-
<br/>
|
1042 |
-
<label>
|
1043 |
-
<input name="post_taxonomy_type" type="radio" value="post_tag" class="togx" <?php checked('post_tag', $this->breadcrumb_trail->opt['post_taxonomy_type']); ?> />
|
1044 |
-
<?php _e('Tags'); ?>
|
1045 |
-
</label>
|
1046 |
-
<br/>
|
1047 |
-
<?php
|
1048 |
-
//Loop through all of the taxonomies in the array
|
1049 |
-
foreach($wp_taxonomies as $taxonomy)
|
1050 |
-
{
|
1051 |
-
//We only want custom taxonomies
|
1052 |
-
if($taxonomy->object_type == 'post' && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
1053 |
-
{
|
1054 |
-
?>
|
1055 |
-
<label>
|
1056 |
-
<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']); ?> />
|
1057 |
-
<?php echo ucwords(__($taxonomy->label)); ?>
|
1058 |
-
</label>
|
1059 |
-
<br/>
|
1060 |
-
<?php
|
1061 |
-
}
|
1062 |
-
}
|
1063 |
-
?>
|
1064 |
-
<span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb_navxt'); ?></span>
|
1065 |
-
</td>
|
1066 |
-
</tr>
|
1067 |
-
<tr valign="top">
|
1068 |
-
<th scope="row">
|
1069 |
-
<label for="page_prefix"><?php _e('Page Prefix', 'breadcrumb_navxt'); ?></label>
|
1070 |
-
</th>
|
1071 |
-
<td>
|
1072 |
-
<input type="text" name="page_prefix" id="page_prefix" value="<?php echo $this->breadcrumb_trail->opt['page_prefix']; ?>" size="32" />
|
1073 |
-
</td>
|
1074 |
-
</tr>
|
1075 |
-
<tr valign="top">
|
1076 |
-
<th scope="row">
|
1077 |
-
<label for="page_suffix"><?php _e('Page Suffix', 'breadcrumb_navxt'); ?></label>
|
1078 |
-
</th>
|
1079 |
-
<td>
|
1080 |
-
<input type="text" name="page_suffix" id="page_suffix" value="<?php echo $this->breadcrumb_trail->opt['page_suffix']; ?>" size="32" />
|
1081 |
-
</td>
|
1082 |
-
</tr>
|
1083 |
-
<tr valign="top">
|
1084 |
-
<th scope="row">
|
1085 |
-
<label for="page_anchor"><?php _e('Page Anchor', 'breadcrumb_navxt'); ?></label>
|
1086 |
-
</th>
|
1087 |
-
<td>
|
1088 |
-
<input type="text" name="page_anchor" id="page_anchor" value="<?php echo $this->breadcrumb_trail->opt['page_anchor']; ?>" size="60" /><br />
|
1089 |
-
<span class="setting-description"><?php _e('The anchor template for page breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1090 |
-
</td>
|
1091 |
-
</tr>
|
1092 |
-
<tr valign="top">
|
1093 |
-
<th scope="row">
|
1094 |
-
<label for="attachment_prefix"><?php _e('Attachment Prefix', 'breadcrumb_navxt'); ?></label>
|
1095 |
-
</th>
|
1096 |
-
<td>
|
1097 |
-
<input type="text" name="attachment_prefix" id="attachment_prefix" value="<?php echo $this->breadcrumb_trail->opt['attachment_prefix']; ?>" size="32" />
|
1098 |
-
</td>
|
1099 |
-
</tr>
|
1100 |
-
<tr valign="top">
|
1101 |
-
<th scope="row">
|
1102 |
-
<label for="attachment_suffix"><?php _e('Attachment Suffix', 'breadcrumb_navxt'); ?></label>
|
1103 |
-
</th>
|
1104 |
-
<td>
|
1105 |
-
<input type="text" name="attachment_suffix" id="attachment_suffix" value="<?php echo $this->breadcrumb_trail->opt['attachment_suffix']; ?>" size="32" />
|
1106 |
</td>
|
1107 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1108 |
</table>
|
1109 |
</fieldset>
|
1110 |
<fieldset id="category" class="bcn_options">
|
1111 |
<h3><?php _e('Categories', 'breadcrumb_navxt'); ?></h3>
|
1112 |
<table class="form-table">
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
</td>
|
1121 |
-
</tr>
|
1122 |
-
<tr valign="top">
|
1123 |
-
<th scope="row">
|
1124 |
-
<label for="category_suffix"><?php _e('Category Suffix', 'breadcrumb_navxt'); ?></label>
|
1125 |
-
</th>
|
1126 |
-
<td>
|
1127 |
-
<input type="text" name="category_suffix" id="category_suffix" value="<?php echo $this->breadcrumb_trail->opt['category_suffix']; ?>" size="32" /><br />
|
1128 |
-
<span class="setting-description"><?php _e('Applied after the anchor on all category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1129 |
-
</td>
|
1130 |
-
</tr>
|
1131 |
-
<tr valign="top">
|
1132 |
-
<th scope="row">
|
1133 |
-
<label for="category_anchor"><?php _e('Category Anchor', 'breadcrumb_navxt'); ?></label>
|
1134 |
-
</th>
|
1135 |
-
<td>
|
1136 |
-
<input type="text" name="category_anchor" id="category_anchor" value="<?php echo $this->breadcrumb_trail->opt['category_anchor']; ?>" size="60" /><br />
|
1137 |
-
<span class="setting-description"><?php _e('The anchor template for category breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1138 |
-
</td>
|
1139 |
-
</tr>
|
1140 |
-
<tr valign="top">
|
1141 |
-
<th scope="row">
|
1142 |
-
<label for="archive_category_prefix"><?php _e('Archive by Category Prefix', 'breadcrumb_navxt'); ?></label>
|
1143 |
-
</th>
|
1144 |
-
<td>
|
1145 |
-
<input type="text" name="archive_category_prefix" id="archive_category_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_category_prefix']; ?>" size="32" /><br />
|
1146 |
-
<span class="setting-description"><?php _e('Applied before the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'); ?></span>
|
1147 |
-
</td>
|
1148 |
-
</tr>
|
1149 |
-
<tr valign="top">
|
1150 |
-
<th scope="row">
|
1151 |
-
<label for="archive_category_suffix"><?php _e('Archive by Category Suffix', 'breadcrumb_navxt'); ?></label>
|
1152 |
-
</th>
|
1153 |
-
<td>
|
1154 |
-
<input type="text" name="archive_category_suffix" id="archive_category_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_category_suffix']; ?>" size="32" /><br />
|
1155 |
-
<span class="setting-description"><?php _e('Applied after the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'); ?></span>
|
1156 |
-
</td>
|
1157 |
-
</tr>
|
1158 |
</table>
|
1159 |
</fieldset>
|
1160 |
<fieldset id="post_tag" class="bcn_options">
|
1161 |
<h3><?php _e('Tags', 'breadcrumb_navxt'); ?></h3>
|
1162 |
<table class="form-table">
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
</td>
|
1171 |
-
</tr>
|
1172 |
-
<tr valign="top">
|
1173 |
-
<th scope="row">
|
1174 |
-
<label for="post_tag_suffix"><?php _e('Tag Suffix', 'breadcrumb_navxt'); ?></label>
|
1175 |
-
</th>
|
1176 |
-
<td>
|
1177 |
-
<input type="text" name="post_tag_suffix" id="post_tag_suffix" value="<?php echo $this->breadcrumb_trail->opt['post_tag_suffix']; ?>" size="32" /><br />
|
1178 |
-
<span class="setting-description"><?php _e('Applied after the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1179 |
-
</td>
|
1180 |
-
</tr>
|
1181 |
-
<tr valign="top">
|
1182 |
-
<th scope="row">
|
1183 |
-
<label for="post_tag_anchor"><?php _e('Tag Anchor', 'breadcrumb_navxt'); ?></label>
|
1184 |
-
</th>
|
1185 |
-
<td>
|
1186 |
-
<input type="text" name="post_tag_anchor" id="post_tag_anchor" value="<?php echo $this->breadcrumb_trail->opt['post_tag_anchor']; ?>" size="60" /><br />
|
1187 |
-
<span class="setting-description"><?php _e('The anchor template for tag breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1188 |
-
</td>
|
1189 |
-
</tr>
|
1190 |
-
<tr valign="top">
|
1191 |
-
<th scope="row">
|
1192 |
-
<label for="archive_post_tag_prefix"><?php _e('Archive by Tag Prefix', 'breadcrumb_navxt'); ?></label>
|
1193 |
-
</th>
|
1194 |
-
<td>
|
1195 |
-
<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 />
|
1196 |
-
<span class="setting-description"><?php _e('Applied before the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'); ?></span>
|
1197 |
-
</td>
|
1198 |
-
</tr>
|
1199 |
-
<tr valign="top">
|
1200 |
-
<th scope="row">
|
1201 |
-
<label for="archive_post_tag_suffix"><?php _e('Archive by Tag Suffix', 'breadcrumb_navxt'); ?></label>
|
1202 |
-
</th>
|
1203 |
-
<td>
|
1204 |
-
<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 />
|
1205 |
-
<span class="setting-description"><?php _e('Applied after the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'); ?></span>
|
1206 |
-
</td>
|
1207 |
-
</tr>
|
1208 |
</table>
|
1209 |
</fieldset>
|
1210 |
<?php
|
@@ -1212,57 +515,31 @@ class bcn_admin
|
|
1212 |
foreach($wp_taxonomies as $taxonomy)
|
1213 |
{
|
1214 |
//We only want custom taxonomies
|
1215 |
-
if($taxonomy->object_type == 'post' && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
1216 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1217 |
?>
|
1218 |
<fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options">
|
1219 |
<h3><?php echo ucwords(__($taxonomy->label)); ?></h3>
|
1220 |
<table class="form-table">
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
</td>
|
1229 |
-
</tr>
|
1230 |
-
<tr valign="top">
|
1231 |
-
<th scope="row">
|
1232 |
-
<label for="<?php echo $taxonomy->name; ?>_suffix"><?php printf(__('%s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
|
1233 |
-
</th>
|
1234 |
-
<td>
|
1235 |
-
<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 />
|
1236 |
-
<span class="setting-description"><?php printf(__('Applied after the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
|
1237 |
-
</td>
|
1238 |
-
</tr>
|
1239 |
-
<tr valign="top">
|
1240 |
-
<th scope="row">
|
1241 |
-
<label for="<?php echo $taxonomy->name; ?>_anchor"><?php printf(__('%s Anchor', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
|
1242 |
-
</th>
|
1243 |
-
<td>
|
1244 |
-
<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 />
|
1245 |
-
<span class="setting-description"><?php printf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))); ?></span>
|
1246 |
-
</td>
|
1247 |
-
</tr>
|
1248 |
-
<tr valign="top">
|
1249 |
-
<th scope="row">
|
1250 |
-
<label for="archive_<?php echo $taxonomy->name; ?>_prefix"><?php printf(__('Archive by %s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
|
1251 |
-
</th>
|
1252 |
-
<td>
|
1253 |
-
<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 />
|
1254 |
-
<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>
|
1255 |
-
</td>
|
1256 |
-
</tr>
|
1257 |
-
<tr valign="top">
|
1258 |
-
<th scope="row">
|
1259 |
-
<label for="archive_<?php echo $taxonomy->name; ?>_suffix"><?php printf(__('Archive by %s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))); ?></label>
|
1260 |
-
</th>
|
1261 |
-
<td>
|
1262 |
-
<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 />
|
1263 |
-
<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>
|
1264 |
-
</td>
|
1265 |
-
</tr>
|
1266 |
</table>
|
1267 |
</fieldset>
|
1268 |
<?php
|
@@ -1272,174 +549,37 @@ class bcn_admin
|
|
1272 |
<fieldset id="date" class="bcn_options">
|
1273 |
<h3><?php _e('Date Archives', 'breadcrumb_navxt'); ?></h3>
|
1274 |
<table class="form-table">
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
<input type="text" name="archive_date_prefix" id="archive_date_prefix" value="<?php echo $this->breadcrumb_trail->opt['archive_date_prefix']; ?>" size="32" /><br />
|
1281 |
-
<span class="setting-description"><?php _e('Applied before the anchor on all date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1282 |
-
</td>
|
1283 |
-
</tr>
|
1284 |
-
<tr valign="top">
|
1285 |
-
<th scope="row">
|
1286 |
-
<label for="archive_date_suffix"><?php _e('Archive by Date Suffix', 'breadcrumb_navxt'); ?></label>
|
1287 |
-
</th>
|
1288 |
-
<td>
|
1289 |
-
<input type="text" name="archive_date_suffix" id="archive_date_suffix" value="<?php echo $this->breadcrumb_trail->opt['archive_date_suffix']; ?>" size="32" /><br />
|
1290 |
-
<span class="setting-description"><?php _e('Applied after the anchor on all date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1291 |
-
</td>
|
1292 |
-
</tr>
|
1293 |
-
<tr valign="top">
|
1294 |
-
<th scope="row">
|
1295 |
-
<label for="date_anchor"><?php _e('Date Anchor', 'breadcrumb_navxt'); ?></label>
|
1296 |
-
</th>
|
1297 |
-
<td>
|
1298 |
-
<input type="text" name="date_anchor" id="date_anchor" value="<?php echo $this->breadcrumb_trail->opt['date_anchor']; ?>" size="60" /><br />
|
1299 |
-
<span class="setting-description"><?php _e('The anchor template for date breadcrumbs.', 'breadcrumb_navxt'); ?></span>
|
1300 |
-
</td>
|
1301 |
-
</tr>
|
1302 |
</table>
|
1303 |
</fieldset>
|
1304 |
<fieldset id="miscellaneous" class="bcn_options">
|
1305 |
<h3><?php _e('Miscellaneous', 'breadcrumb_navxt'); ?></h3>
|
1306 |
<table class="form-table">
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
<td>
|
1320 |
-
<input type="text" name="author_suffix" id="author_suffix" value="<?php echo $this->breadcrumb_trail->opt['author_suffix']; ?>" size="32" />
|
1321 |
-
</td>
|
1322 |
-
</tr>
|
1323 |
-
<tr valign="top">
|
1324 |
-
<th scope="row">
|
1325 |
-
<label for="author_display"><?php _e('Author Display Format', 'breadcrumb_navxt'); ?></label>
|
1326 |
-
</th>
|
1327 |
-
<td>
|
1328 |
-
<select name="author_display" id="author_display">
|
1329 |
-
<?php $this->select_options('author_display', array("display_name", "nickname", "first_name", "last_name")); ?>
|
1330 |
-
</select><br />
|
1331 |
-
<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>
|
1332 |
-
</td>
|
1333 |
-
</tr>
|
1334 |
-
<tr valign="top">
|
1335 |
-
<th scope="row">
|
1336 |
-
<label for="search_prefix"><?php _e('Search Prefix', 'breadcrumb_navxt'); ?></label>
|
1337 |
-
</th>
|
1338 |
-
<td>
|
1339 |
-
<input type="text" name="search_prefix" id="search_prefix" value="<?php echo $this->breadcrumb_trail->opt['search_prefix']; ?>" size="32" />
|
1340 |
-
</td>
|
1341 |
-
</tr>
|
1342 |
-
<tr valign="top">
|
1343 |
-
<th scope="row">
|
1344 |
-
<label for="search_suffix"><?php _e('Search Suffix', 'breadcrumb_navxt'); ?></label>
|
1345 |
-
</th>
|
1346 |
-
<td>
|
1347 |
-
<input type="text" name="search_suffix" id="search_suffix" value="<?php echo $this->breadcrumb_trail->opt['search_suffix']; ?>" size="32" />
|
1348 |
-
</td>
|
1349 |
-
</tr>
|
1350 |
-
<tr valign="top">
|
1351 |
-
<th scope="row">
|
1352 |
-
<label for="search_anchor"><?php _e('Search Anchor', 'breadcrumb_navxt'); ?></label>
|
1353 |
-
</th>
|
1354 |
-
<td>
|
1355 |
-
<input type="text" name="search_anchor" id="search_anchor" value="<?php echo $this->breadcrumb_trail->opt['search_anchor']; ?>" size="60" /><br />
|
1356 |
-
<span class="setting-description"><?php _e('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb_navxt'); ?></span>
|
1357 |
-
</td>
|
1358 |
-
</tr>
|
1359 |
-
<tr valign="top">
|
1360 |
-
<th scope="row">
|
1361 |
-
<label for="id404_title"><?php _e('404 Title', 'breadcrumb_navxt'); ?></label>
|
1362 |
-
</th>
|
1363 |
-
<td>
|
1364 |
-
<input type="text" name="404_title" id="id404_title" value="<?php echo $this->breadcrumb_trail->opt['404_title']; ?>" size="32" />
|
1365 |
-
</td>
|
1366 |
-
</tr>
|
1367 |
-
<tr valign="top">
|
1368 |
-
<th scope="row">
|
1369 |
-
<label for="id404_prefix"><?php _e('404 Prefix', 'breadcrumb_navxt'); ?></label>
|
1370 |
-
</th>
|
1371 |
-
<td>
|
1372 |
-
<input type="text" name="404_prefix" id="id404_prefix" value="<?php echo $this->breadcrumb_trail->opt['404_prefix']; ?>" size="32" />
|
1373 |
-
</td>
|
1374 |
-
</tr>
|
1375 |
-
<tr valign="top">
|
1376 |
-
<th scope="row">
|
1377 |
-
<label for="id404_suffix"><?php _e('404 Suffix', 'breadcrumb_navxt'); ?></label>
|
1378 |
-
</th>
|
1379 |
-
<td>
|
1380 |
-
<input type="text" name="404_suffix" id="id404_suffix" value="<?php echo $this->breadcrumb_trail->opt['404_suffix']; ?>" size="32" />
|
1381 |
-
</td>
|
1382 |
-
</tr>
|
1383 |
</table>
|
1384 |
</fieldset>
|
1385 |
</div>
|
1386 |
-
<p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php
|
1387 |
</form>
|
1388 |
-
|
1389 |
-
<form action="options-general.php?page=breadcrumb-navxt" method="post" enctype="multipart/form-data" id="bcn_admin_upload">
|
1390 |
-
<?php wp_nonce_field('bcn_admin_upload');?>
|
1391 |
-
<fieldset id="import_export" class="bcn_options">
|
1392 |
-
<h3><?php _e('Import/Export/Reset Settings', 'breadcrumb_navxt'); ?></h3>
|
1393 |
-
<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>
|
1394 |
-
<table class="form-table">
|
1395 |
-
<tr valign="top">
|
1396 |
-
<th scope="row">
|
1397 |
-
<label for="bcn_admin_import_file"><?php _e('Settings File', 'breadcrumb_navxt'); ?></label>
|
1398 |
-
</th>
|
1399 |
-
<td>
|
1400 |
-
<input type="file" name="bcn_admin_import_file" id="bcn_admin_import_file" size="32"/><br />
|
1401 |
-
<span class="setting-description"><?php _e('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt'); ?></span>
|
1402 |
-
</td>
|
1403 |
-
</tr>
|
1404 |
-
</table>
|
1405 |
-
<p class="submit">
|
1406 |
-
<input type="submit" class="button" name="bcn_admin_import" value="<?php _e('Import', 'breadcrumb_navxt') ?>" onclick="return bcn_confirm('import')" />
|
1407 |
-
<input type="submit" class="button" name="bcn_admin_export" value="<?php _e('Export', 'breadcrumb_navxt') ?>" />
|
1408 |
-
<input type="submit" class="button" name="bcn_admin_reset" value="<?php _e('Reset', 'breadcrumb_navxt') ?>" onclick="return bcn_confirm('reset')" />
|
1409 |
-
</p>
|
1410 |
-
</fieldset>
|
1411 |
-
</form>
|
1412 |
-
</div>
|
1413 |
</div>
|
1414 |
<?php
|
1415 |
}
|
1416 |
-
/**
|
1417 |
-
* select_options
|
1418 |
-
*
|
1419 |
-
* Displays wordpress options as <seclect> options defaults to true/false
|
1420 |
-
*
|
1421 |
-
* @param string $optionname name of wordpress options store
|
1422 |
-
* @param array $options array of names of options that can be selected
|
1423 |
-
* @param array $exclude[optional] array of names in $options array to be excluded
|
1424 |
-
*/
|
1425 |
-
function select_options($optionname, $options, $exclude = array())
|
1426 |
-
{
|
1427 |
-
$value = $this->breadcrumb_trail->opt[$optionname];
|
1428 |
-
//First output the current value
|
1429 |
-
if($value)
|
1430 |
-
{
|
1431 |
-
printf('<option>%s</option>', $value);
|
1432 |
-
}
|
1433 |
-
//Now do the rest
|
1434 |
-
foreach($options as $option)
|
1435 |
-
{
|
1436 |
-
//Don't want multiple occurance of the current value
|
1437 |
-
if($option != $value && !in_array($option, $exclude))
|
1438 |
-
{
|
1439 |
-
printf('<option>%s</option>', $option);
|
1440 |
-
}
|
1441 |
-
}
|
1442 |
-
}
|
1443 |
/**
|
1444 |
* add_option
|
1445 |
*
|
@@ -1485,77 +625,46 @@ class bcn_admin
|
|
1485 |
* in a HTML form safe manner.
|
1486 |
*
|
1487 |
* @param (string) key name of the wordpress option to get
|
1488 |
-
* @param (bool) safe output for HTML forms (default: false)
|
1489 |
* @return (mixed) value of option
|
1490 |
*/
|
1491 |
-
function get_option($key
|
1492 |
{
|
1493 |
-
|
1494 |
-
if($safe)
|
1495 |
-
{
|
1496 |
-
//If we get an array, we should loop through all of its members
|
1497 |
-
if(is_array($db_data))
|
1498 |
-
{
|
1499 |
-
//Loop through all the members
|
1500 |
-
foreach($db_data as $key=>$item)
|
1501 |
-
{
|
1502 |
-
//We ignore anything but strings
|
1503 |
-
if(is_string($item))
|
1504 |
-
{
|
1505 |
-
$db_data[$key] = htmlentities($item, ENT_COMPAT, 'UTF-8');
|
1506 |
-
}
|
1507 |
-
}
|
1508 |
-
}
|
1509 |
-
else
|
1510 |
-
{
|
1511 |
-
$db_data = htmlentities($db_data, ENT_COMPAT, 'UTF-8');
|
1512 |
-
}
|
1513 |
-
}
|
1514 |
-
return $db_data;
|
1515 |
}
|
1516 |
/**
|
1517 |
-
*
|
1518 |
*
|
1519 |
-
*
|
1520 |
*
|
1521 |
-
* @param
|
1522 |
-
* @param
|
|
|
1523 |
*/
|
1524 |
-
function
|
1525 |
-
{
|
1526 |
-
//If the message is an error use the appropriate class
|
1527 |
-
$class = $error ? 'error' : 'updated fade';
|
1528 |
-
printf('<div class="%s"><p>%s</p></div>', $class, $message);
|
1529 |
-
}
|
1530 |
-
|
1531 |
-
/**
|
1532 |
-
* callback function for admin_notices
|
1533 |
-
*
|
1534 |
-
* @return void
|
1535 |
-
*/
|
1536 |
-
function notify_import_failure()
|
1537 |
{
|
1538 |
-
|
|
|
|
|
|
|
|
|
1539 |
}
|
1540 |
-
|
1541 |
/**
|
1542 |
-
*
|
1543 |
*
|
1544 |
-
*
|
1545 |
-
*/
|
1546 |
-
function notify_import_success()
|
1547 |
-
{
|
1548 |
-
$this->notify(__('The Breadcrumb NavXT settings were successfully imported from file.', 'breadcrumb_navxt'));
|
1549 |
-
}
|
1550 |
-
|
1551 |
-
/**
|
1552 |
-
* callback function for admin_notices
|
1553 |
*
|
1554 |
-
* @
|
1555 |
-
|
1556 |
-
|
|
|
|
|
|
|
1557 |
{
|
1558 |
-
|
|
|
|
|
|
|
|
|
1559 |
}
|
1560 |
}
|
1561 |
//Let's make an instance of our object takes care of everything
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.weblogs.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.weblogs.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 3.5.0
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.weblogs.us/
|
9 |
*/
|
10 |
+
/* Copyright 2007-2010 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
|
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 |
+
//Do a PHP version check
|
27 |
+
$phpVersion = explode('.', phpversion());
|
28 |
+
if($phpVersion[0] < 5)
|
29 |
+
{
|
30 |
+
sprintf(__('Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s', 'breadcrumb_navxt'), phpversion(), '5.0.0');
|
31 |
+
die();
|
32 |
+
}
|
33 |
//Include the breadcrumb class
|
34 |
require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
|
35 |
+
//Include the WP 2.8+ widget class
|
36 |
+
require_once(dirname(__FILE__) . '/breadcrumb_navxt_widget.php');
|
37 |
+
//Include admin base class
|
38 |
+
if(!class_exists('mtekk_admin'))
|
39 |
+
{
|
40 |
+
require_once(dirname(__FILE__) . '/mtekk_admin_class.php');
|
41 |
+
}
|
42 |
/**
|
43 |
* The administrative interface class
|
44 |
*
|
|
|
45 |
*/
|
46 |
+
class bcn_admin extends mtekk_admin
|
47 |
{
|
48 |
/**
|
49 |
* local store for breadcrumb version
|
50 |
*
|
|
|
|
|
51 |
* @var string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
*/
|
53 |
+
protected $version = '3.5.0';
|
54 |
+
protected $full_name = 'Breadcrumb NavXT Settings';
|
55 |
+
protected $short_name = 'Breadcrumb NavXT';
|
56 |
+
protected $access_level = 'manage_options';
|
57 |
+
protected $identifier = 'breadcrumb_navxt';
|
58 |
+
protected $unique_prefix = 'bcn';
|
59 |
+
protected $plugin_basename = 'breadcrumb-navxt/breadcrumb_navxt_admin.php';
|
60 |
/**
|
61 |
* local store for the breadcrumb object
|
62 |
*
|
63 |
* @see bcn_admin()
|
64 |
* @var bcn_breadcrumb
|
|
|
65 |
*/
|
66 |
public $breadcrumb_trail;
|
67 |
/**
|
73 |
{
|
74 |
//We'll let it fail fataly if the class isn't there as we depend on it
|
75 |
$this->breadcrumb_trail = new bcn_breadcrumb_trail;
|
76 |
+
//Sync up our option array (not with db however)
|
77 |
+
$this->opt = $this->breadcrumb_trail->opt;
|
78 |
+
//We set the plugin basename here, could manually set it, but this is for demonstration purposes
|
79 |
+
//$this->plugin_base = plugin_basename(__FILE__);
|
80 |
+
//Register the WordPress 2.8 Widget
|
81 |
+
add_action('widgets_init', create_function('', 'return register_widget("'. $this->unique_prefix . '_widget");'));
|
82 |
+
//We're going to make sure we load the parent's constructor
|
83 |
+
parent::__construct();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
}
|
85 |
/**
|
86 |
* admin initialisation callback function
|
90 |
* @since 3.2.0
|
91 |
* @return void
|
92 |
*/
|
93 |
+
function init()
|
94 |
{
|
95 |
+
//We're going to make sure we run the parent's version of this function as well
|
96 |
+
parent::init();
|
|
|
|
|
97 |
//Add javascript enqeueing callback
|
98 |
add_action('wp_print_scripts', array($this, 'javascript'));
|
99 |
}
|
105 |
function security()
|
106 |
{
|
107 |
//If the user can not manage options we will die on them
|
108 |
+
if(!current_user_can($this->access_level))
|
109 |
{
|
110 |
_e('Insufficient privileges to proceed.', 'breadcrumb_navxt');
|
111 |
die();
|
118 |
*/
|
119 |
function install()
|
120 |
{
|
121 |
+
global $wp_taxonomies;
|
122 |
//Call our little security function
|
123 |
$this->security();
|
|
|
|
|
124 |
//Reduce db queries by saving this
|
125 |
$db_version = $this->get_option('bcn_version');
|
126 |
//If our version is not the same as in the db, time to update
|
128 |
{
|
129 |
//Split up the db version into it's components
|
130 |
list($major, $minor, $release) = explode('.', $db_version);
|
131 |
+
$opts = $this->get_option('bcn_options');
|
132 |
+
//Upgrading from 3.0
|
133 |
+
if($major == 3 && $minor == 0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
{
|
135 |
+
$opts['search_anchor'] = __('<a title="Go to the first page of search results for %title%." href="%link%">','breadcrumb_navxt');
|
|
|
|
|
|
|
|
|
136 |
}
|
137 |
else if($major == 3 && $minor < 3)
|
138 |
{
|
139 |
+
$opts['blog_display'] = true;
|
|
|
|
|
|
|
|
|
140 |
}
|
141 |
else if($major == 3 && $minor < 4)
|
142 |
{
|
|
|
|
|
143 |
//Inline upgrade of the tag setting
|
144 |
+
if($opts['post_taxonomy_type'] === 'tag')
|
145 |
{
|
146 |
+
$opts['post_taxonomy_type'] = 'post_tag';
|
147 |
}
|
148 |
//Fix our tag settings
|
149 |
+
$opts['archive_post_tag_prefix'] = $this->breadcrumb_trail->opt['archive_tag_prefix'];
|
150 |
+
$opts['archive_post_tag_suffix'] = $this->breadcrumb_trail->opt['archive_tag_suffix'];
|
151 |
+
$opts['post_tag_prefix'] = $this->breadcrumb_trail->opt['tag_prefix'];
|
152 |
+
$opts['post_tag_suffix'] = $this->breadcrumb_trail->opt['tag_suffix'];
|
153 |
+
$opts['post_tag_anchor'] = $this->breadcrumb_trail->opt['tag_anchor'];
|
154 |
+
}
|
155 |
+
//If it was never installed, copy over default settings
|
156 |
+
else if(!$opts)
|
157 |
+
{
|
158 |
+
$opts = $this->opt;
|
159 |
+
}
|
160 |
+
//We'll add our custom taxonomy stuff at this time
|
161 |
+
foreach($wp_taxonomies as $taxonomy)
|
162 |
+
{
|
163 |
+
//We only want custom taxonomies
|
164 |
+
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
165 |
+
{
|
166 |
+
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
167 |
+
if(!array_key_exists($taxonomy->name . '_anchor', $opts))
|
168 |
+
{
|
169 |
+
$opts[$taxonomy->name . '_prefix'] = '';
|
170 |
+
$opts[$taxonomy->name . '_suffix'] = '';
|
171 |
+
$opts[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">'), 'breadcrumb_navxt');
|
172 |
+
$opts['archive_' . $taxonomy->name . '_prefix'] = '';
|
173 |
+
$opts['archive_' . $taxonomy->name . '_suffix'] = '';
|
174 |
+
}
|
175 |
+
}
|
176 |
}
|
177 |
//Always have to update the version
|
178 |
$this->update_option('bcn_version', $this->version);
|
179 |
//Store the options
|
180 |
+
$this->add_option('bcn_options', $opts);
|
181 |
}
|
182 |
//Check if we have valid anchors
|
183 |
if($temp = $this->get_option('bcn_options'))
|
202 |
}
|
203 |
}
|
204 |
/**
|
205 |
+
* ops_update
|
206 |
*
|
207 |
+
* Updates the database settings from the webform
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
*/
|
209 |
+
function opts_update()
|
210 |
{
|
211 |
+
global $wp_taxonomies;
|
212 |
+
//Do some security related thigns as we are not using the normal WP settings API
|
|
|
|
|
|
|
213 |
$this->security();
|
214 |
//Do a nonce check, prevent malicious link/form problems
|
215 |
+
check_admin_referer('bcn_options-options');
|
216 |
+
//Grab our incomming array (the data is dirty)
|
217 |
+
$input = $_POST['bcn_options'];
|
218 |
+
//Loop through all of the existing options (avoids random setting injection)
|
219 |
+
foreach($this->opt as $option => $value)
|
|
|
|
|
220 |
{
|
221 |
+
//Handle all of our boolean options first
|
222 |
+
if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
|
223 |
+
{
|
224 |
+
$this->opt[$option] = isset($input[$option]);
|
225 |
+
}
|
226 |
+
//Now handle anything that can't be blank
|
227 |
+
else if(strpos($option, 'anchor') > 0)
|
228 |
{
|
229 |
+
//Only save a new anchor if not blank
|
230 |
+
if(isset($input[$option]))
|
231 |
{
|
232 |
+
//Do excess slash removal sanitation
|
233 |
+
$this->opt[$option] = stripslashes($input[$option]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
}
|
235 |
}
|
236 |
+
//Now everything else
|
237 |
+
else
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
{
|
239 |
+
$this->opt[$option] = stripslashes($input[$option]);
|
|
|
|
|
|
|
|
|
240 |
}
|
241 |
}
|
242 |
//Commit the option changes
|
243 |
+
$this->update_option('bcn_options', $this->opt);
|
244 |
+
//Let the user know everything went ok
|
245 |
+
$this->message['updated fade'][] = __('Settings successfully saved.', $this->identifier);
|
246 |
+
add_action('admin_notices', array($this, 'message'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
}
|
248 |
/**
|
249 |
* javascript
|
258 |
//Enqueue ui-tabs
|
259 |
wp_enqueue_script('jquery-ui-tabs');
|
260 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
/**
|
262 |
* get help text
|
263 |
*
|
264 |
* @return string
|
265 |
*/
|
266 |
+
protected function _get_help_text()
|
267 |
{
|
268 |
return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
|
269 |
'<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.weblogs.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>');
|
270 |
}
|
|
|
271 |
/**
|
272 |
* admin_head
|
273 |
*
|
334 |
* Tabulator Bootup
|
335 |
*/
|
336 |
function bcn_tabulator_init(){
|
|
|
337 |
if (!jQuery("#hasadmintabs").length) return;
|
338 |
/* init markup for tabs */
|
339 |
jQuery('#hasadmintabs').prepend("<ul><\/ul>");
|
344 |
jQuery(this).find('h3').hide();
|
345 |
});
|
346 |
/* init the tabs plugin */
|
347 |
+
jQuery("#hasadmintabs").tabs();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
/* handler for opening the last tab after submit (compability version) */
|
349 |
jQuery('#hasadmintabs ul a').click(function(i){
|
350 |
+
var form = jQuery('#bcn_admin-options');
|
351 |
var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
|
352 |
// an older bug pops up with some jQuery version(s), which makes it
|
353 |
// necessary to set the form's action attribute by standard javascript
|
360 |
*/
|
361 |
function bcn_context_init(){
|
362 |
if (!jQuery("#bcn_import_export_relocate").length) return;
|
|
|
363 |
jQuery('#screen-meta').prepend(
|
364 |
'<div id="screen-options-wrap" class="hidden"></div>'
|
365 |
);
|
368 |
'<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>' +
|
369 |
'</div>'
|
370 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
var code = jQuery('#bcn_import_export_relocate').html();
|
372 |
jQuery('#bcn_import_export_relocate').html('');
|
373 |
code = code.replace(/h3>/gi, 'h5>');
|
377 |
</script>
|
378 |
<?php
|
379 |
} //function admin_head()
|
|
|
380 |
/**
|
381 |
+
* admin_page
|
382 |
*
|
383 |
+
* The administrative page for Breadcrumb NavXT
|
384 |
*
|
385 |
*/
|
386 |
+
function admin_page()
|
387 |
{
|
388 |
global $wp_taxonomies;
|
389 |
$this->security();
|
390 |
+
//Grab the current settings from the DB
|
391 |
+
$this->opt = $this->get_option('bcn_options');?>
|
|
|
392 |
<div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
|
393 |
+
<p<?php if($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
|
394 |
+
print $this->_get_help_text();
|
395 |
?></p>
|
396 |
+
<form action="options-general.php?page=breadcrumb_navxt" method="post" id="bcn_admin-options">
|
397 |
+
<?php settings_fields('bcn_options');?>
|
|
|
|
|
398 |
<div id="hasadmintabs">
|
399 |
<fieldset id="general" class="bcn_options">
|
400 |
<h3><?php _e('General', 'breadcrumb_navxt'); ?></h3>
|
401 |
<table class="form-table">
|
402 |
+
<?php
|
403 |
+
$this->input_text(__('Breadcrumb Separator', 'breadcrumb_navxt'), 'separator', '32', false, __('Placed in between each breadcrumb.', 'breadcrumb_navxt'));
|
404 |
+
$this->input_text(__('Breadcrumb Max Title Length', 'breadcrumb_navxt'), 'max_title_length', '10');
|
405 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
406 |
<tr valign="top">
|
407 |
<th scope="row">
|
408 |
<?php _e('Home Breadcrumb', 'breadcrumb_navxt'); ?>
|
409 |
</th>
|
410 |
<td>
|
411 |
<label>
|
412 |
+
<input name="bcn_options[home_display]" type="checkbox" id="home_display" value="true" <?php checked(true, $this->opt['home_display']); ?> />
|
413 |
<?php _e('Place the home breadcrumb in the trail.', 'breadcrumb_navxt'); ?>
|
414 |
</label><br />
|
415 |
<ul>
|
416 |
<li>
|
417 |
<label for="home_title">
|
418 |
<?php _e('Home Title: ','breadcrumb_navxt');?>
|
419 |
+
<input type="text" name="bcn_options[home_title]" id="home_title" value="<?php echo htmlentities($this->opt['home_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
|
420 |
</label>
|
421 |
</li>
|
422 |
</ul>
|
423 |
</td>
|
424 |
</tr>
|
425 |
+
<?php
|
426 |
+
$this->input_check(__('Blog Breadcrumb', 'breadcrumb_navxt'), 'blog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb_navxt'), ($this->get_option('show_on_front') !== "page"));
|
427 |
+
$this->input_text(__('Home Prefix', 'breadcrumb_navxt'), 'home_prefix', '32');
|
428 |
+
$this->input_text(__('Home Suffix', 'breadcrumb_navxt'), 'home_suffix', '32');
|
429 |
+
$this->input_text(__('Home Anchor', 'breadcrumb_navxt'), 'home_anchor', '64', false, __('The anchor template for the home breadcrumb.', 'breadcrumb_navxt'));
|
430 |
+
$this->input_text(__('Blog Anchor', 'breadcrumb_navxt'), 'blog_anchor', '64', ($this->get_option('show_on_front') !== "page"), __('The anchor template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb_navxt'));
|
431 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
</table>
|
433 |
</fieldset>
|
434 |
<fieldset id="current" class="bcn_options">
|
435 |
<h3><?php _e('Current Item', 'breadcrumb_navxt'); ?></h3>
|
436 |
<table class="form-table">
|
437 |
+
<?php
|
438 |
+
$this->input_check(__('Link Current Item', 'breadcrumb_navxt'), 'current_item_linked', __('Yes'));
|
439 |
+
$this->input_text(__('Current Item Prefix', 'breadcrumb_navxt'), 'current_item_prefix', '32', false, __('This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb.', 'breadcrumb_navxt'));
|
440 |
+
$this->input_text(__('Current Item Suffix', 'breadcrumb_navxt'), 'current_item_suffix', '32', false, __('This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb.', 'breadcrumb_navxt'));
|
441 |
+
$this->input_text(__('Current Item Anchor', 'breadcrumb_navxt'), 'current_item_anchor', '64', false, __('The anchor template for current item breadcrumbs.', 'breadcrumb_navxt'));
|
442 |
+
$this->input_check(__('Paged Breadcrumb', 'breadcrumb_navxt'), 'paged_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'));
|
443 |
+
$this->input_text(__('Paged Prefix', 'breadcrumb_navxt'), 'paged_prefix', '32');
|
444 |
+
$this->input_text(__('Paged Suffix', 'breadcrumb_navxt'), 'paged_suffix', '32');
|
445 |
+
?>
|
446 |
+
</table>
|
447 |
+
</fieldset>
|
448 |
+
<fieldset id="single" class="bcn_options">
|
449 |
+
<h3><?php _e('Posts & Pages', 'breadcrumb_navxt'); ?></h3>
|
450 |
+
<table class="form-table">
|
451 |
+
<?php
|
452 |
+
$this->input_text(__('Post Prefix', 'breadcrumb_navxt'), 'post_prefix', '32');
|
453 |
+
$this->input_text(__('Post Suffix', 'breadcrumb_navxt'), 'post_suffix', '32');
|
454 |
+
$this->input_text(__('Post Anchor', 'breadcrumb_navxt'), 'post_anchor', '64', false, __('The anchor template for post breadcrumbs.', 'breadcrumb_navxt'));
|
455 |
+
$this->input_check(__('Post Taxonomy Display', 'breadcrumb_navxt'), 'post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb_navxt'));
|
456 |
+
?>
|
457 |
<tr valign="top">
|
458 |
<th scope="row">
|
459 |
+
<?php _e('Post Taxonomy', 'breadcrumb_navxt'); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
460 |
</th>
|
461 |
<td>
|
462 |
+
<?php
|
463 |
+
$this->input_radio('post_taxonomy_type', 'category', __('Categories'));
|
464 |
+
$this->input_radio('post_taxonomy_type', 'date', __('Dates'));
|
465 |
+
$this->input_radio('post_taxonomy_type', 'post_tag', __('Tags'));
|
466 |
+
$this->input_radio('post_taxonomy_type', 'page', __('Pages'));
|
467 |
+
//Loop through all of the taxonomies in the array
|
468 |
+
foreach($wp_taxonomies as $taxonomy)
|
469 |
+
{
|
470 |
+
//We only want custom taxonomies
|
471 |
+
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
472 |
+
{
|
473 |
+
$this->input_radio('post_taxonomy_type', $taxonomy->name, ucwords(__($taxonomy->label)));
|
474 |
+
}
|
475 |
+
}
|
476 |
+
?>
|
477 |
+
<span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb_navxt'); ?></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
478 |
</td>
|
479 |
</tr>
|
480 |
+
<?php
|
481 |
+
$this->input_text(__('Page Prefix', 'breadcrumb_navxt'), 'page_prefix', '32');
|
482 |
+
$this->input_text(__('Page Suffix', 'breadcrumb_navxt'), 'page_suffix', '32');
|
483 |
+
$this->input_text(__('Page Anchor', 'breadcrumb_navxt'), 'page_anchor', '64', false, __('The anchor template for page breadcrumbs.', 'breadcrumb_navxt'));
|
484 |
+
$this->input_text(__('Attachment Prefix', 'breadcrumb_navxt'), 'attachment_prefix', '32');
|
485 |
+
$this->input_text(__('Attachment Suffix', 'breadcrumb_navxt'), 'attachment_suffix', '32');
|
486 |
+
?>
|
487 |
</table>
|
488 |
</fieldset>
|
489 |
<fieldset id="category" class="bcn_options">
|
490 |
<h3><?php _e('Categories', 'breadcrumb_navxt'); ?></h3>
|
491 |
<table class="form-table">
|
492 |
+
<?php
|
493 |
+
$this->input_text(__('Category Prefix', 'breadcrumb_navxt'), 'category_prefix', '32', false, __('Applied before the anchor on all category breadcrumbs.', 'breadcrumb_navxt'));
|
494 |
+
$this->input_text(__('Category Suffix', 'breadcrumb_navxt'), 'category_suffix', '32', false, __('Applied after the anchor on all category breadcrumbs.', 'breadcrumb_navxt'));
|
495 |
+
$this->input_text(__('Category Anchor', 'breadcrumb_navxt'), 'category_anchor', '64', false, __('The anchor template for category breadcrumbs.', 'breadcrumb_navxt'));
|
496 |
+
$this->input_text(__('Archive by Category Prefix', 'breadcrumb_navxt'), 'archive_category_prefix', '32', false, __('Applied before the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'));
|
497 |
+
$this->input_text(__('Archive by Category Suffix', 'breadcrumb_navxt'), 'archive_category_suffix', '32', false, __('Applied after the title of the current item breadcrumb on an archive by cateogry page.', 'breadcrumb_navxt'));
|
498 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
499 |
</table>
|
500 |
</fieldset>
|
501 |
<fieldset id="post_tag" class="bcn_options">
|
502 |
<h3><?php _e('Tags', 'breadcrumb_navxt'); ?></h3>
|
503 |
<table class="form-table">
|
504 |
+
<?php
|
505 |
+
$this->input_text(__('Tag Prefix', 'breadcrumb_navxt'), 'post_tag_prefix', '32', false, __('Applied before the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'));
|
506 |
+
$this->input_text(__('Tag Suffix', 'breadcrumb_navxt'), 'post_tag_suffix', '32', false, __('Applied after the anchor on all tag breadcrumbs.', 'breadcrumb_navxt'));
|
507 |
+
$this->input_text(__('Tag Anchor', 'breadcrumb_navxt'), 'post_tag_anchor', '64', false, __('The anchor template for tag breadcrumbs.', 'breadcrumb_navxt'));
|
508 |
+
$this->input_text(__('Archive by Tag Prefix', 'breadcrumb_navxt'), 'archive_post_tag_prefix', '32', false, __('Applied before the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'));
|
509 |
+
$this->input_text(__('Archive by Tag Suffix', 'breadcrumb_navxt'), 'archive_post_tag_suffix', '32', false, __('Applied after the title of the current item breadcrumb on an archive by tag page.', 'breadcrumb_navxt'));
|
510 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
511 |
</table>
|
512 |
</fieldset>
|
513 |
<?php
|
515 |
foreach($wp_taxonomies as $taxonomy)
|
516 |
{
|
517 |
//We only want custom taxonomies
|
518 |
+
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
519 |
{
|
520 |
+
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
521 |
+
if(!array_key_exists($taxonomy->name . '_anchor', $this->opt))
|
522 |
+
{
|
523 |
+
//Add the necessary option array members
|
524 |
+
$this->opt[$taxonomy->name . '_prefix'] = '';
|
525 |
+
$this->opt[$taxonomy->name . '_suffix'] = '';
|
526 |
+
$this->opt[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', ucwords(__($taxonomy->label))), 'breadcrumb_navxt');
|
527 |
+
$this->opt['archive_' . $taxonomy->name . '_prefix'] = '';
|
528 |
+
$this->opt['archive_' . $taxonomy->name . '_suffix'] = '';
|
529 |
+
//Let's make sure that the newly available options are "registered" in our db
|
530 |
+
$this->update_option('bcn_options', $this->opt);
|
531 |
+
}
|
532 |
?>
|
533 |
<fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options">
|
534 |
<h3><?php echo ucwords(__($taxonomy->label)); ?></h3>
|
535 |
<table class="form-table">
|
536 |
+
<?php
|
537 |
+
$this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
|
538 |
+
$this->input_text(sprintf(__('%s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), $taxonomy->name . '_suffix', '32', false, sprintf(__('Applied after the anchor on all %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
|
539 |
+
$this->input_text(sprintf(__('%s Anchor', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), $taxonomy->name . '_anchor', '64', false, sprintf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
|
540 |
+
$this->input_text(sprintf(__('Archive by %s Prefix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), 'archive_' . $taxonomy->name . '_prefix', '32', false, sprintf(__('Applied before the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
|
541 |
+
$this->input_text(sprintf(__('Archive by %s Suffix', 'breadcrumb_navxt'), ucwords(__($taxonomy->label))), 'archive_' . $taxonomy->name . '_suffix', '32', false, sprintf(__('Applied after the title of the current item breadcrumb on an archive by %s page.', 'breadcrumb_navxt'), strtolower(__($taxonomy->label))));
|
542 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
</table>
|
544 |
</fieldset>
|
545 |
<?php
|
549 |
<fieldset id="date" class="bcn_options">
|
550 |
<h3><?php _e('Date Archives', 'breadcrumb_navxt'); ?></h3>
|
551 |
<table class="form-table">
|
552 |
+
<?php
|
553 |
+
$this->input_text(__('Date Anchor', 'breadcrumb_navxt'), 'date_anchor', '64', false, __('The anchor template for date breadcrumbs.', 'breadcrumb_navxt'));
|
554 |
+
$this->input_text(__('Archive by Date Prefix', 'breadcrumb_navxt'), 'archive_date_prefix', '32', false, __('Applied before the anchor on all date breadcrumbs.', 'breadcrumb_navxt'));
|
555 |
+
$this->input_text(__('Archive by Date Suffix', 'breadcrumb_navxt'), 'archive_date_suffix', '32', false, __('Applied after the anchor on all date breadcrumbs.', 'breadcrumb_navxt'));
|
556 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
</table>
|
558 |
</fieldset>
|
559 |
<fieldset id="miscellaneous" class="bcn_options">
|
560 |
<h3><?php _e('Miscellaneous', 'breadcrumb_navxt'); ?></h3>
|
561 |
<table class="form-table">
|
562 |
+
<?php
|
563 |
+
$this->input_text(__('Author Prefix', 'breadcrumb_navxt'), 'author_prefix', '32');
|
564 |
+
$this->input_text(__('Author Suffix', 'breadcrumb_navxt'), 'author_suffix', '32');
|
565 |
+
$this->input_text(__('Archive by Date Suffix', 'breadcrumb_navxt'), 'archive_date_suffix', '32', false, __('Applied after the anchor on all date breadcrumbs.', 'breadcrumb_navxt'));
|
566 |
+
$this->input_select(__('Author Display Format', 'breadcrumb_navxt'), 'author_name', array("display_name", "nickname", "first_name", "last_name"), false, __('display_name uses the name specified in "Display name publicly as" under the user profile the others correspond to options in the user profile.', 'breadcrumb_navxt'));
|
567 |
+
$this->input_text(__('Search Prefix', 'breadcrumb_navxt'), 'search_prefix', '32');
|
568 |
+
$this->input_text(__('Search Suffix', 'breadcrumb_navxt'), 'search_suffix', '32');
|
569 |
+
$this->input_text(__('Search Anchor', 'breadcrumb_navxt'), 'search_anchor', '64', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb_navxt'));
|
570 |
+
$this->input_text(__('404 Title', 'breadcrumb_navxt'), '404_title', '32');
|
571 |
+
$this->input_text(__('404 Prefix', 'breadcrumb_navxt'), '404_prefix', '32');
|
572 |
+
$this->input_text(__('404 Suffix', 'breadcrumb_navxt'), '404_suffix', '32');
|
573 |
+
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
</table>
|
575 |
</fieldset>
|
576 |
</div>
|
577 |
+
<p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
|
578 |
</form>
|
579 |
+
<?php $this->import_form(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
580 |
</div>
|
581 |
<?php
|
582 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
/**
|
584 |
* add_option
|
585 |
*
|
625 |
* in a HTML form safe manner.
|
626 |
*
|
627 |
* @param (string) key name of the wordpress option to get
|
|
|
628 |
* @return (mixed) value of option
|
629 |
*/
|
630 |
+
function get_option($key)
|
631 |
{
|
632 |
+
return get_option($key);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
633 |
}
|
634 |
/**
|
635 |
+
* display
|
636 |
*
|
637 |
+
* Outputs the breadcrumb trail
|
638 |
*
|
639 |
+
* @param (bool) $return Whether to return or echo the trail.
|
640 |
+
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
641 |
+
* @param (bool) $reverse Whether to reverse the output or not.
|
642 |
*/
|
643 |
+
function display($return = false, $linked = true, $reverse = false)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
644 |
{
|
645 |
+
//Grab the current settings from the DB
|
646 |
+
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
647 |
+
//Generate the breadcrumb trail
|
648 |
+
$this->breadcrumb_trail->fill();
|
649 |
+
return $this->breadcrumb_trail->display($return, $linked, $reverse);
|
650 |
}
|
|
|
651 |
/**
|
652 |
+
* display_list
|
653 |
*
|
654 |
+
* Outputs the breadcrumb trail
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
*
|
656 |
+
* @since 3.2.0
|
657 |
+
* @param (bool) $return Whether to return or echo the trail.
|
658 |
+
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
659 |
+
* @param (bool) $reverse Whether to reverse the output or not.
|
660 |
+
*/
|
661 |
+
function display_list($return = false, $linked = true, $reverse = false)
|
662 |
{
|
663 |
+
//Grab the current settings from the DB
|
664 |
+
$this->breadcrumb_trail->opt = $this->get_option('bcn_options');
|
665 |
+
//Generate the breadcrumb trail
|
666 |
+
$this->breadcrumb_trail->fill();
|
667 |
+
return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
|
668 |
}
|
669 |
}
|
670 |
//Let's make an instance of our object takes care of everything
|
breadcrumb_navxt_api.php
DELETED
@@ -1,73 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Breadcrumb NavXT - API
|
4 |
-
*
|
5 |
-
* Functions inside the global Namespace used by Breadcrumb NavXT
|
6 |
-
*
|
7 |
-
* @author John Havlik
|
8 |
-
* @author Tom Klingenberg
|
9 |
-
*
|
10 |
-
*/
|
11 |
-
/**
|
12 |
-
* str2bool converts string of "true" to true and "false" to false
|
13 |
-
*
|
14 |
-
* Probably could be moved to bcn_get_option, we'll see
|
15 |
-
*
|
16 |
-
* @param string $input
|
17 |
-
* @return bool
|
18 |
-
*/
|
19 |
-
//Safely add this in just incase someone else makes one with the same name
|
20 |
-
if(!function_exists('str2bool'))
|
21 |
-
{
|
22 |
-
function str2bool($input)
|
23 |
-
{
|
24 |
-
if($input === "true")
|
25 |
-
{
|
26 |
-
return true;
|
27 |
-
}
|
28 |
-
else
|
29 |
-
{
|
30 |
-
return false;
|
31 |
-
}
|
32 |
-
}
|
33 |
-
}
|
34 |
-
|
35 |
-
/**
|
36 |
-
* bcn_get
|
37 |
-
*
|
38 |
-
* Administration input complex, replaces the broken WordPress one
|
39 |
-
* Based off of the suggestions and code of Tom Klingenberg
|
40 |
-
*
|
41 |
-
* Removes Faulty Adding Slashes and Preserves leading and trailing spaces
|
42 |
-
*
|
43 |
-
* Wordpress adds slashes to Request Variables by Default (before
|
44 |
-
* removing those added by PHP) - This re-invents the wheel
|
45 |
-
* and mimicks all the problems with magic_quotes_gpc.
|
46 |
-
* The faulty adding slashes is done in wp-settings.php.
|
47 |
-
*
|
48 |
-
* Therefore the plugin needs to unslash the slashed potential
|
49 |
-
* unslahsed-phpslashed data again. This is done in this function.
|
50 |
-
*
|
51 |
-
* @param (string) varname name of the post variable
|
52 |
-
* @param (string) default deftaul value (optional)
|
53 |
-
* @return (string) unescaped post data
|
54 |
-
* @note WP-Version 2.3.3, wp-settings.php #259ff
|
55 |
-
*/
|
56 |
-
function bcn_get($varname, $default = "")
|
57 |
-
{
|
58 |
-
//Import variable from post-request
|
59 |
-
$bcn_value = $_POST[$varname];
|
60 |
-
|
61 |
-
//If null kick out early (handle default values as well)
|
62 |
-
if($bcn_value == "")
|
63 |
-
{
|
64 |
-
return $default;
|
65 |
-
}
|
66 |
-
|
67 |
-
//Remove by faulty-wordpress-code added slashes
|
68 |
-
$bcn_value = stripslashes($bcn_value);
|
69 |
-
|
70 |
-
//Return unslashed value
|
71 |
-
return $bcn_value;
|
72 |
-
}
|
73 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
@@ -82,17 +82,17 @@ class bcn_breadcrumb
|
|
82 |
function title_trim($max_length)
|
83 |
{
|
84 |
//Make sure that we are not making it longer with that ellipse
|
85 |
-
if((
|
86 |
{
|
87 |
//Trim the title
|
88 |
-
$this->title =
|
89 |
//Make sure we can split at a space, but we want to limmit to cutting at max an additional 25%
|
90 |
-
if(
|
91 |
{
|
92 |
//Don't split mid word
|
93 |
-
while(
|
94 |
{
|
95 |
-
$this->title =
|
96 |
}
|
97 |
}
|
98 |
//Remove the whitespace at the end and add the hellip
|
@@ -130,7 +130,7 @@ class bcn_breadcrumb
|
|
130 |
class bcn_breadcrumb_trail
|
131 |
{
|
132 |
//Our member variables
|
133 |
-
public $version = '3.
|
134 |
//An array of breadcrumbs
|
135 |
public $trail = array();
|
136 |
//The options
|
@@ -228,8 +228,8 @@ class bcn_breadcrumb_trail
|
|
228 |
'author_suffix' => '',
|
229 |
//The anchor template for author breadcrumbs, two keywords are available %link% and %title%
|
230 |
'author_anchor' => __('<a title="Go to the first page of posts by %title%." href="%link%">', 'breadcrumb_navxt'),
|
231 |
-
//Which of the various WordPress display types should the author
|
232 |
-
'
|
233 |
//Category stuff
|
234 |
//The prefix for category breadcrumbs, place on all page elements and inside of current_item prefix
|
235 |
'category_prefix' => '',
|
@@ -277,12 +277,12 @@ class bcn_breadcrumb_trail
|
|
277 |
{
|
278 |
global $s;
|
279 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
280 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(
|
281 |
//If we're paged, let's link to the first page
|
282 |
if(is_paged() && $this->opt['paged_display'])
|
283 |
{
|
284 |
//Figure out the hyperlink for the anchor
|
285 |
-
$url = get_settings('home'). '?s=' . str_replace(' ', '+',
|
286 |
//Figure out the anchor for the search
|
287 |
$breadcrumb->set_anchor($this->opt['search_anchor'], $url);
|
288 |
}
|
@@ -299,17 +299,15 @@ class bcn_breadcrumb_trail
|
|
299 |
global $post;
|
300 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
301 |
$this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['attachment_prefix'], $this->opt['attachment_suffix']);
|
302 |
-
//Get the parent page/post of the attachment
|
303 |
-
$parent_id = $post->post_parent;
|
304 |
//Get the parent's information
|
305 |
-
$parent = get_post($
|
306 |
//We need to treat post and page attachment hierachy differently
|
307 |
if($parent->post_type == 'page')
|
308 |
{
|
309 |
//Grab the page on front ID for page_parents
|
310 |
$frontpage = get_option('page_on_front');
|
311 |
//Place the rest of the page hierachy
|
312 |
-
$this->page_parents($
|
313 |
}
|
314 |
else
|
315 |
{
|
@@ -317,9 +315,9 @@ class bcn_breadcrumb_trail
|
|
317 |
$breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_title', $parent->post_title),
|
318 |
$this->opt['post_prefix'], $this->opt['post_suffix']));
|
319 |
//Assign the anchor properties
|
320 |
-
$breadcrumb->set_anchor($this->opt['post_anchor'], get_permalink($
|
321 |
//Handle the post's taxonomy
|
322 |
-
$this->post_taxonomy($
|
323 |
}
|
324 |
}
|
325 |
/**
|
@@ -334,15 +332,15 @@ class bcn_breadcrumb_trail
|
|
334 |
global $author;
|
335 |
//Get the Author name, note it is an object
|
336 |
$curauth = (isset($_GET['author_name'])) ? get_userdatabylogin($author_name) : get_userdata(intval($author));
|
337 |
-
//Setup array of valid
|
338 |
-
$
|
339 |
//This translation allows us to easily select the display type later on
|
340 |
-
$
|
341 |
//Make sure user picks only safe values
|
342 |
-
if(in_array($
|
343 |
{
|
344 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
345 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_author', $curauth->$
|
346 |
$this->opt['author_prefix'], $this->opt['author_suffix']));
|
347 |
if(is_paged() && $this->opt['paged_display'])
|
348 |
{
|
@@ -405,6 +403,7 @@ class bcn_breadcrumb_trail
|
|
405 |
*/
|
406 |
function post_taxonomy($id)
|
407 |
{
|
|
|
408 |
//Check to see if breadcrumbs for the taxonomy of the post needs to be generated
|
409 |
if($this->opt['post_taxonomy_display'])
|
410 |
{
|
@@ -436,6 +435,17 @@ class bcn_breadcrumb_trail
|
|
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 |
{
|
@@ -730,6 +740,8 @@ class bcn_breadcrumb_trail
|
|
730 |
//Exit early since we have breadcrumbs in the trail
|
731 |
return null;
|
732 |
}
|
|
|
|
|
733 |
//Do specific opperations for the various page types
|
734 |
//Check if this isn't the first of a multi paged item
|
735 |
if(is_paged() && $this->opt['paged_display'])
|
@@ -804,6 +816,8 @@ class bcn_breadcrumb_trail
|
|
804 |
{
|
805 |
$this->do_home();
|
806 |
}
|
|
|
|
|
807 |
}
|
808 |
/**
|
809 |
* order
|
@@ -945,14 +959,18 @@ class bcn_breadcrumb_trail
|
|
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);
|
1 |
<?php
|
2 |
/*
|
3 |
+
Copyright 2007-2010 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
|
82 |
function title_trim($max_length)
|
83 |
{
|
84 |
//Make sure that we are not making it longer with that ellipse
|
85 |
+
if((mb_strlen($this->title) + 3) > $max_length)
|
86 |
{
|
87 |
//Trim the title
|
88 |
+
$this->title = mb_substr($this->title, 0, $max_length - 1);
|
89 |
//Make sure we can split at a space, but we want to limmit to cutting at max an additional 25%
|
90 |
+
if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
|
91 |
{
|
92 |
//Don't split mid word
|
93 |
+
while(mb_substr($this->title,-1) != ' ')
|
94 |
{
|
95 |
+
$this->title = mb_substr($this->title, 0, -1);
|
96 |
}
|
97 |
}
|
98 |
//Remove the whitespace at the end and add the hellip
|
130 |
class bcn_breadcrumb_trail
|
131 |
{
|
132 |
//Our member variables
|
133 |
+
public $version = '3.5.0';
|
134 |
//An array of breadcrumbs
|
135 |
public $trail = array();
|
136 |
//The options
|
228 |
'author_suffix' => '',
|
229 |
//The anchor template for author breadcrumbs, two keywords are available %link% and %title%
|
230 |
'author_anchor' => __('<a title="Go to the first page of posts by %title%." href="%link%">', 'breadcrumb_navxt'),
|
231 |
+
//Which of the various WordPress display types should the author breadcrumb display
|
232 |
+
'author_name' => 'display_name',
|
233 |
//Category stuff
|
234 |
//The prefix for category breadcrumbs, place on all page elements and inside of current_item prefix
|
235 |
'category_prefix' => '',
|
277 |
{
|
278 |
global $s;
|
279 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
280 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(esc_html($s), $this->opt['search_prefix'], $this->opt['search_suffix']));
|
281 |
//If we're paged, let's link to the first page
|
282 |
if(is_paged() && $this->opt['paged_display'])
|
283 |
{
|
284 |
//Figure out the hyperlink for the anchor
|
285 |
+
$url = get_settings('home'). '?s=' . str_replace(' ', '+', esc_html($s));
|
286 |
//Figure out the anchor for the search
|
287 |
$breadcrumb->set_anchor($this->opt['search_anchor'], $url);
|
288 |
}
|
299 |
global $post;
|
300 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
301 |
$this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['attachment_prefix'], $this->opt['attachment_suffix']);
|
|
|
|
|
302 |
//Get the parent's information
|
303 |
+
$parent = get_post($post->post_parent);
|
304 |
//We need to treat post and page attachment hierachy differently
|
305 |
if($parent->post_type == 'page')
|
306 |
{
|
307 |
//Grab the page on front ID for page_parents
|
308 |
$frontpage = get_option('page_on_front');
|
309 |
//Place the rest of the page hierachy
|
310 |
+
$this->page_parents($post->post_parent, $frontpage);
|
311 |
}
|
312 |
else
|
313 |
{
|
315 |
$breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_title', $parent->post_title),
|
316 |
$this->opt['post_prefix'], $this->opt['post_suffix']));
|
317 |
//Assign the anchor properties
|
318 |
+
$breadcrumb->set_anchor($this->opt['post_anchor'], get_permalink($post->post_parent));
|
319 |
//Handle the post's taxonomy
|
320 |
+
$this->post_taxonomy($post->post_parent);
|
321 |
}
|
322 |
}
|
323 |
/**
|
332 |
global $author;
|
333 |
//Get the Author name, note it is an object
|
334 |
$curauth = (isset($_GET['author_name'])) ? get_userdatabylogin($author_name) : get_userdata(intval($author));
|
335 |
+
//Setup array of valid author_name values
|
336 |
+
$valid_author_name = array('display_name', 'nickname', 'first_name', 'last_name');
|
337 |
//This translation allows us to easily select the display type later on
|
338 |
+
$author_name = $this->opt['author_name'];
|
339 |
//Make sure user picks only safe values
|
340 |
+
if(in_array($author_name, $valid_author_name))
|
341 |
{
|
342 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
343 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_author', $curauth->$author_name),
|
344 |
$this->opt['author_prefix'], $this->opt['author_suffix']));
|
345 |
if(is_paged() && $this->opt['paged_display'])
|
346 |
{
|
403 |
*/
|
404 |
function post_taxonomy($id)
|
405 |
{
|
406 |
+
global $post;
|
407 |
//Check to see if breadcrumbs for the taxonomy of the post needs to be generated
|
408 |
if($this->opt['post_taxonomy_display'])
|
409 |
{
|
435 |
$this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['post_taxonomy_type']);
|
436 |
}
|
437 |
}
|
438 |
+
//Handle the use of pages as the 'taxonomy'
|
439 |
+
else if($this->opt['post_taxonomy_type'] == 'page')
|
440 |
+
{
|
441 |
+
//Done with the current item, now on to the parents
|
442 |
+
$bcn_frontpage = get_option('page_on_front');
|
443 |
+
//If there is a parent page let's find it
|
444 |
+
if($post->post_parent && $id != $post->post_parent && $bcn_frontpage != $post->post_parent)
|
445 |
+
{
|
446 |
+
$this->page_parents($post->post_parent, $bcn_frontpage);
|
447 |
+
}
|
448 |
+
}
|
449 |
//Handle the rest of the taxonomies, including tags
|
450 |
else
|
451 |
{
|
740 |
//Exit early since we have breadcrumbs in the trail
|
741 |
return null;
|
742 |
}
|
743 |
+
//Do any actions if necessary, we past through the current object instance to keep life simple
|
744 |
+
do_action('bcn_before_fill', $this);
|
745 |
//Do specific opperations for the various page types
|
746 |
//Check if this isn't the first of a multi paged item
|
747 |
if(is_paged() && $this->opt['paged_display'])
|
816 |
{
|
817 |
$this->do_home();
|
818 |
}
|
819 |
+
//Do any actions if necessary, we past through the current object instance to keep life simple
|
820 |
+
do_action('bcn_after_fill', $this);
|
821 |
}
|
822 |
/**
|
823 |
* order
|
959 |
//On the first run we need to add in a class for the home breadcrumb
|
960 |
if($trail_str === '<li')
|
961 |
{
|
962 |
+
$trail_str .= ' class="home';
|
963 |
+
if($key === 0)
|
964 |
+
{
|
965 |
+
$trail_str .= ' current_item"';
|
966 |
+
}
|
967 |
}
|
968 |
//If we are on the current item there are some things that must be done
|
969 |
+
else if($key === 0)
|
970 |
{
|
971 |
$this->current_item($breadcrumb);
|
972 |
//Add in a class for current_item
|
973 |
+
$trail_str .= ' class="current_item"';
|
974 |
}
|
975 |
//Place in the breadcrumb's assembled elements
|
976 |
$trail_str .= '>' . $breadcrumb->assemble($linked);
|
breadcrumb_navxt_widget.php
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Copyright 2009-2010 John Havlik (email : mtekkmonkey@gmail.com)
|
4 |
+
|
5 |
+
This program is free software; you can redistribute it and/or modify
|
6 |
+
it under the terms of the GNU General Public License as published by
|
7 |
+
the Free Software Foundation; either version 2 of the License, or
|
8 |
+
(at your option) any later version.
|
9 |
+
|
10 |
+
This program is distributed in the hope that it will be useful,
|
11 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
+
GNU General Public License for more details.
|
14 |
+
|
15 |
+
You should have received a copy of the GNU General Public License
|
16 |
+
along with this program; if not, write to the Free Software
|
17 |
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
18 |
+
*/
|
19 |
+
class bcn_widget extends WP_Widget
|
20 |
+
{
|
21 |
+
//Default constructor
|
22 |
+
function __construct()
|
23 |
+
{
|
24 |
+
$ops = array('classname' => 'widget_breadcrumb_navxt', 'description' => __('Adds a breadcrumb trail to your sidebar'));
|
25 |
+
//We're going to be a bit evil here and do things the PHP5 way
|
26 |
+
parent::__construct('bcn_widget', 'Breadcrumb NavXT', $ops);
|
27 |
+
}
|
28 |
+
function widget($args, $instance)
|
29 |
+
{
|
30 |
+
extract($args);
|
31 |
+
//Manditory before widget junk
|
32 |
+
echo $before_widget;
|
33 |
+
if(!empty($instance['title']))
|
34 |
+
{
|
35 |
+
echo $before_title . $instance['title'] . $after_title;
|
36 |
+
}
|
37 |
+
//We'll want to switch between the two breadcrumb output types
|
38 |
+
if($instance['list'] == true)
|
39 |
+
{
|
40 |
+
//Display the list output breadcrumb
|
41 |
+
echo '<ul class="breadcrumb_trail">';
|
42 |
+
bcn_display_list(false, $instance['linked'], $instance['reverse']);
|
43 |
+
echo '</ul>';
|
44 |
+
}
|
45 |
+
else
|
46 |
+
{
|
47 |
+
//Display the regular output breadcrumb
|
48 |
+
bcn_display(false, $instance['linked'], $instance['reverse']);
|
49 |
+
}
|
50 |
+
//Manditory after widget junk
|
51 |
+
echo $after_widget;
|
52 |
+
}
|
53 |
+
function update($new_instance, $old_instance)
|
54 |
+
{
|
55 |
+
//Filter out anything that could be invalid
|
56 |
+
$old_instance['title'] = strip_tags($new_instance['title']);
|
57 |
+
$old_instance['list'] = isset($new_instance['list']);
|
58 |
+
$old_instance['linked'] = isset($new_instance['linked']);
|
59 |
+
$old_instance['reverse'] = isset($new_instance['reverse']);
|
60 |
+
return $old_instance;
|
61 |
+
}
|
62 |
+
function form($instance)
|
63 |
+
{
|
64 |
+
$instance = wp_parse_args((array) $instance, array('title' => '', 'list' => false, 'linked' => true, 'reverse' => false));?>
|
65 |
+
<p>
|
66 |
+
<label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:'); ?></label>
|
67 |
+
<input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
|
68 |
+
</p>
|
69 |
+
<p>
|
70 |
+
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('list'); ?>" id="<?php echo $this->get_field_id('list'); ?>" value="true" <?php checked(true, $instance['list']);?> />
|
71 |
+
<label for="<?php echo $this->get_field_id('list'); ?>"> <?php _e('Output trail as a list'); ?></label><br />
|
72 |
+
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('linked'); ?>" id="<?php echo $this->get_field_id('linked'); ?>" value="true" <?php checked(true, $instance['linked']);?> />
|
73 |
+
<label for="<?php echo $this->get_field_id('linked'); ?>"> <?php _e('Link the breadcrumbs'); ?></label><br />
|
74 |
+
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('reverse'); ?>" id="<?php echo $this->get_field_id('reverse'); ?>" value="true" <?php checked(true, $instance['reverse']);?> />
|
75 |
+
<label for="<?php echo $this->get_field_id('reverse'); ?>"> <?php _e('Reverse the order of the trail'); ?></label><br />
|
76 |
+
</p>
|
77 |
+
<?php
|
78 |
+
}
|
79 |
+
}
|
languages/breadcrumb-navxt.pot
CHANGED
@@ -1,531 +1,507 @@
|
|
1 |
-
#
|
2 |
-
#
|
3 |
-
#
|
|
|
4 |
#
|
5 |
#, fuzzy
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
-
"Project-Id-Version:
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
10 |
-
"POT-Creation-Date:
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
-
"Content-Type: text/plain; charset=
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
|
18 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
msgid "Insufficient privileges to proceed."
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
29 |
-
msgid "Settings"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
50 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
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:
|
66 |
msgid "Import"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: breadcrumb_navxt_admin.php:
|
70 |
msgid "Export"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
74 |
msgid "Reset"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
78 |
msgid "General"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Breadcrumb Separator"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "Placed in between each breadcrumb."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Breadcrumb Max Title Length"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Home Breadcrumb"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "Place the home breadcrumb in the trail."
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Home Title: "
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "Blog Breadcrumb"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "Place the blog breadcrumb in the trail."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "Home Prefix"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Home Suffix"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "Home Anchor"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "The anchor template for the home breadcrumb."
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
130 |
msgid "Blog Anchor"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
140 |
msgid "Current Item"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: breadcrumb_navxt_admin.php:
|
144 |
msgid "Link Current Item"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: breadcrumb_navxt_admin.php:
|
148 |
msgid "Yes"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: breadcrumb_navxt_admin.php:
|
152 |
msgid "Current Item Prefix"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
162 |
msgid "Current Item Suffix"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
172 |
msgid "Current Item Anchor"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: breadcrumb_navxt_admin.php:
|
176 |
msgid "The anchor template for current item breadcrumbs."
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: breadcrumb_navxt_admin.php:
|
180 |
msgid "Paged Breadcrumb"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: breadcrumb_navxt_admin.php:
|
184 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
194 |
msgid "Paged Prefix"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Paged Suffix"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Posts & Pages"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "Post Prefix"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "Post Suffix"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
214 |
msgid "Post Anchor"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: breadcrumb_navxt_admin.php:
|
218 |
msgid "The anchor template for post breadcrumbs."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Post Taxonomy Display"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Post Taxonomy"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Categories"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
238 |
msgid "Dates"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Tags"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
246 |
msgid "The taxonomy which the breadcrumb trail will show."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Page Prefix"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "Page Suffix"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Page Anchor"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
msgid "The anchor template for page breadcrumbs."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: breadcrumb_navxt_admin.php:
|
266 |
msgid "Attachment Prefix"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: breadcrumb_navxt_admin.php:
|
270 |
msgid "Attachment Suffix"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: breadcrumb_navxt_admin.php:
|
274 |
msgid "Category Prefix"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: breadcrumb_navxt_admin.php:
|
278 |
msgid "Applied before the anchor on all category breadcrumbs."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Category Suffix"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "Applied after the anchor on all category breadcrumbs."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Category Anchor"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
294 |
msgid "The anchor template for category breadcrumbs."
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Archive by Category Prefix"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
308 |
msgid "Archive by Category Suffix"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
318 |
msgid "Tag Prefix"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Tag Suffix"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Tag Anchor"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "The anchor template for tag breadcrumbs."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Archive by Tag Prefix"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
352 |
msgid "Archive by Tag Suffix"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
362 |
#, php-format
|
363 |
msgid "%s Prefix"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: breadcrumb_navxt_admin.php:
|
367 |
#, php-format
|
368 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: breadcrumb_navxt_admin.php:
|
372 |
#, php-format
|
373 |
msgid "%s Suffix"
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: breadcrumb_navxt_admin.php:
|
377 |
#, php-format
|
378 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
#, php-format
|
383 |
msgid "%s Anchor"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: breadcrumb_navxt_admin.php:
|
387 |
#, php-format
|
388 |
msgid "The anchor template for %s breadcrumbs."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: breadcrumb_navxt_admin.php:
|
392 |
#, php-format
|
393 |
msgid "Archive by %s Prefix"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
404 |
#, php-format
|
405 |
msgid "Archive by %s Suffix"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
416 |
msgid "Date Archives"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: breadcrumb_navxt_admin.php:
|
420 |
-
msgid "
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: breadcrumb_navxt_admin.php:
|
424 |
-
msgid "
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: breadcrumb_navxt_admin.php:
|
428 |
-
msgid "Archive by Date
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: breadcrumb_navxt_admin.php:
|
432 |
-
msgid "Applied
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: breadcrumb_navxt_admin.php:
|
436 |
-
msgid "Date
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: breadcrumb_navxt_admin.php:
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: breadcrumb_navxt_admin.php:
|
444 |
msgid "Miscellaneous"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: breadcrumb_navxt_admin.php:
|
448 |
msgid "Author Prefix"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: breadcrumb_navxt_admin.php:
|
452 |
msgid "Author Suffix"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: breadcrumb_navxt_admin.php:
|
456 |
msgid "Author Display Format"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
466 |
msgid "Search Prefix"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "Search Suffix"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Search Anchor"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
484 |
msgid "404 Title"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: breadcrumb_navxt_admin.php:
|
488 |
msgid "404 Prefix"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: breadcrumb_navxt_admin.php:
|
492 |
msgid "404 Suffix"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: breadcrumb_navxt_admin.php:
|
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 ""
|
@@ -575,6 +551,65 @@ msgstr ""
|
|
575 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: breadcrumb_navxt_class.php:
|
579 |
msgid "Untagged"
|
580 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin by .
|
2 |
+
# Copyright (C) 2010
|
3 |
+
# This file is distributed under the same license as the package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
#
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: \n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
11 |
+
"POT-Creation-Date: 2010-05-09 01:08+0000\n"
|
12 |
+
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
+
#: breadcrumb_navxt_admin.php:30
|
20 |
+
#, php-format
|
21 |
+
msgid ""
|
22 |
+
"Your PHP version is too old, please upgrade to a newer version. Your version "
|
23 |
+
"is %s, this plugin requires %s"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: breadcrumb_navxt_admin.php:110
|
27 |
msgid "Insufficient privileges to proceed."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: breadcrumb_navxt_admin.php:135 breadcrumb_navxt_class.php:216
|
31 |
msgid ""
|
32 |
"<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
|
33 |
"%\">"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: breadcrumb_navxt_admin.php:249
|
37 |
+
msgid "Settings successfully saved."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: breadcrumb_navxt_admin.php:272
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
#, php-format
|
42 |
msgid ""
|
43 |
"Tips for the settings are located below select options. Please refer to the %"
|
44 |
"sdocumentation%s for more information."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: breadcrumb_navxt_admin.php:273
|
48 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: breadcrumb_navxt_admin.php:327
|
52 |
msgid ""
|
53 |
"All of your current Breadcrumb NavXT settings will be overwritten with the "
|
54 |
"default values. Are you sure you want to continue?"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:330
|
58 |
msgid ""
|
59 |
"All of your current Breadcrumb NavXT settings will be overwritten with the "
|
60 |
"imported values. Are you sure you want to continue?"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: breadcrumb_navxt_admin.php:381 mtekk_admin_class.php:403
|
64 |
msgid "Import"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: breadcrumb_navxt_admin.php:381 mtekk_admin_class.php:404
|
68 |
msgid "Export"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: breadcrumb_navxt_admin.php:381 mtekk_admin_class.php:405
|
72 |
msgid "Reset"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: breadcrumb_navxt_admin.php:405
|
76 |
+
msgid "Breadcrumb NavXT Settings"
|
77 |
+
msgstr ""
|
78 |
+
|
79 |
+
#: breadcrumb_navxt_admin.php:413
|
80 |
msgid "General"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: breadcrumb_navxt_admin.php:416
|
84 |
msgid "Breadcrumb Separator"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: breadcrumb_navxt_admin.php:416
|
88 |
msgid "Placed in between each breadcrumb."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: breadcrumb_navxt_admin.php:417
|
92 |
msgid "Breadcrumb Max Title Length"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: breadcrumb_navxt_admin.php:421
|
96 |
msgid "Home Breadcrumb"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: breadcrumb_navxt_admin.php:426
|
100 |
msgid "Place the home breadcrumb in the trail."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: breadcrumb_navxt_admin.php:431
|
104 |
msgid "Home Title: "
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: breadcrumb_navxt_admin.php:439
|
108 |
msgid "Blog Breadcrumb"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: breadcrumb_navxt_admin.php:439
|
112 |
msgid "Place the blog breadcrumb in the trail."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: breadcrumb_navxt_admin.php:440
|
116 |
msgid "Home Prefix"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: breadcrumb_navxt_admin.php:441
|
120 |
msgid "Home Suffix"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: breadcrumb_navxt_admin.php:442
|
124 |
msgid "Home Anchor"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: breadcrumb_navxt_admin.php:442
|
128 |
msgid "The anchor template for the home breadcrumb."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: breadcrumb_navxt_admin.php:443
|
132 |
msgid "Blog Anchor"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: breadcrumb_navxt_admin.php:443
|
136 |
msgid ""
|
137 |
"The anchor template for the blog breadcrumb, used only in static front page "
|
138 |
"environments."
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: breadcrumb_navxt_admin.php:448
|
142 |
msgid "Current Item"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: breadcrumb_navxt_admin.php:451
|
146 |
msgid "Link Current Item"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: breadcrumb_navxt_admin.php:451
|
150 |
msgid "Yes"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: breadcrumb_navxt_admin.php:452
|
154 |
msgid "Current Item Prefix"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: breadcrumb_navxt_admin.php:452
|
158 |
msgid ""
|
159 |
"This is always placed in front of the last breadcrumb in the trail, before "
|
160 |
"any other prefixes for that breadcrumb."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: breadcrumb_navxt_admin.php:453
|
164 |
msgid "Current Item Suffix"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: breadcrumb_navxt_admin.php:453
|
168 |
msgid ""
|
169 |
"This is always placed after the last breadcrumb in the trail, and after any "
|
170 |
"other prefixes for that breadcrumb."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: breadcrumb_navxt_admin.php:454
|
174 |
msgid "Current Item Anchor"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: breadcrumb_navxt_admin.php:454
|
178 |
msgid "The anchor template for current item breadcrumbs."
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: breadcrumb_navxt_admin.php:455
|
182 |
msgid "Paged Breadcrumb"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: breadcrumb_navxt_admin.php:455
|
186 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: breadcrumb_navxt_admin.php:455
|
190 |
msgid ""
|
191 |
"Indicates that the user is on a page other than the first on paginated posts/"
|
192 |
"pages."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: breadcrumb_navxt_admin.php:456
|
196 |
msgid "Paged Prefix"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: breadcrumb_navxt_admin.php:457
|
200 |
msgid "Paged Suffix"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: breadcrumb_navxt_admin.php:462
|
204 |
msgid "Posts & Pages"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: breadcrumb_navxt_admin.php:465
|
208 |
msgid "Post Prefix"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: breadcrumb_navxt_admin.php:466
|
212 |
msgid "Post Suffix"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: breadcrumb_navxt_admin.php:467
|
216 |
msgid "Post Anchor"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: breadcrumb_navxt_admin.php:467
|
220 |
msgid "The anchor template for post breadcrumbs."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: breadcrumb_navxt_admin.php:468
|
224 |
msgid "Post Taxonomy Display"
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: breadcrumb_navxt_admin.php:468
|
228 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: breadcrumb_navxt_admin.php:472
|
232 |
msgid "Post Taxonomy"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: breadcrumb_navxt_admin.php:476 breadcrumb_navxt_admin.php:503
|
236 |
msgid "Categories"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: breadcrumb_navxt_admin.php:477
|
240 |
msgid "Dates"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: breadcrumb_navxt_admin.php:478 breadcrumb_navxt_admin.php:515
|
244 |
msgid "Tags"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: breadcrumb_navxt_admin.php:479
|
248 |
+
msgid "Pages"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: breadcrumb_navxt_admin.php:490
|
252 |
msgid "The taxonomy which the breadcrumb trail will show."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: breadcrumb_navxt_admin.php:494
|
256 |
msgid "Page Prefix"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: breadcrumb_navxt_admin.php:495
|
260 |
msgid "Page Suffix"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: breadcrumb_navxt_admin.php:496
|
264 |
msgid "Page Anchor"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: breadcrumb_navxt_admin.php:496
|
268 |
msgid "The anchor template for page breadcrumbs."
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: breadcrumb_navxt_admin.php:497
|
272 |
msgid "Attachment Prefix"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: breadcrumb_navxt_admin.php:498
|
276 |
msgid "Attachment Suffix"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: breadcrumb_navxt_admin.php:506
|
280 |
msgid "Category Prefix"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: breadcrumb_navxt_admin.php:506
|
284 |
msgid "Applied before the anchor on all category breadcrumbs."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: breadcrumb_navxt_admin.php:507
|
288 |
msgid "Category Suffix"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: breadcrumb_navxt_admin.php:507
|
292 |
msgid "Applied after the anchor on all category breadcrumbs."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: breadcrumb_navxt_admin.php:508
|
296 |
msgid "Category Anchor"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: breadcrumb_navxt_admin.php:508
|
300 |
msgid "The anchor template for category breadcrumbs."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: breadcrumb_navxt_admin.php:509
|
304 |
msgid "Archive by Category Prefix"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: breadcrumb_navxt_admin.php:509
|
308 |
msgid ""
|
309 |
"Applied before the title of the current item breadcrumb on an archive by "
|
310 |
"cateogry page."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:510
|
314 |
msgid "Archive by Category Suffix"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:510
|
318 |
msgid ""
|
319 |
"Applied after the title of the current item breadcrumb on an archive by "
|
320 |
"cateogry page."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: breadcrumb_navxt_admin.php:518
|
324 |
msgid "Tag Prefix"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: breadcrumb_navxt_admin.php:518
|
328 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: breadcrumb_navxt_admin.php:519
|
332 |
msgid "Tag Suffix"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: breadcrumb_navxt_admin.php:519
|
336 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: breadcrumb_navxt_admin.php:520
|
340 |
msgid "Tag Anchor"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: breadcrumb_navxt_admin.php:520
|
344 |
msgid "The anchor template for tag breadcrumbs."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: breadcrumb_navxt_admin.php:521
|
348 |
msgid "Archive by Tag Prefix"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: breadcrumb_navxt_admin.php:521
|
352 |
msgid ""
|
353 |
"Applied before the title of the current item breadcrumb on an archive by tag "
|
354 |
"page."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: breadcrumb_navxt_admin.php:522
|
358 |
msgid "Archive by Tag Suffix"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: breadcrumb_navxt_admin.php:522
|
362 |
msgid ""
|
363 |
"Applied after the title of the current item breadcrumb on an archive by tag "
|
364 |
"page."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: breadcrumb_navxt_admin.php:550
|
368 |
#, php-format
|
369 |
msgid "%s Prefix"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:550
|
373 |
#, php-format
|
374 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: breadcrumb_navxt_admin.php:551
|
378 |
#, php-format
|
379 |
msgid "%s Suffix"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: breadcrumb_navxt_admin.php:551
|
383 |
#, php-format
|
384 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: breadcrumb_navxt_admin.php:552
|
388 |
#, php-format
|
389 |
msgid "%s Anchor"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:552
|
393 |
#, php-format
|
394 |
msgid "The anchor template for %s breadcrumbs."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: breadcrumb_navxt_admin.php:553
|
398 |
#, php-format
|
399 |
msgid "Archive by %s Prefix"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: breadcrumb_navxt_admin.php:553
|
403 |
#, php-format
|
404 |
msgid ""
|
405 |
"Applied before the title of the current item breadcrumb on an archive by %s "
|
406 |
"page."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: breadcrumb_navxt_admin.php:554
|
410 |
#, php-format
|
411 |
msgid "Archive by %s Suffix"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: breadcrumb_navxt_admin.php:554
|
415 |
#, php-format
|
416 |
msgid ""
|
417 |
"Applied after the title of the current item breadcrumb on an archive by %s "
|
418 |
"page."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: breadcrumb_navxt_admin.php:563
|
422 |
msgid "Date Archives"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: breadcrumb_navxt_admin.php:566
|
426 |
+
msgid "Date Anchor"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: breadcrumb_navxt_admin.php:566
|
430 |
+
msgid "The anchor template for date breadcrumbs."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: breadcrumb_navxt_admin.php:567
|
434 |
+
msgid "Archive by Date Prefix"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: breadcrumb_navxt_admin.php:567
|
438 |
+
msgid "Applied before the anchor on all date breadcrumbs."
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: breadcrumb_navxt_admin.php:568 breadcrumb_navxt_admin.php:578
|
442 |
+
msgid "Archive by Date Suffix"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: breadcrumb_navxt_admin.php:568 breadcrumb_navxt_admin.php:578
|
446 |
+
msgid "Applied after the anchor on all date breadcrumbs."
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: breadcrumb_navxt_admin.php:573
|
450 |
msgid "Miscellaneous"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: breadcrumb_navxt_admin.php:576
|
454 |
msgid "Author Prefix"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: breadcrumb_navxt_admin.php:577
|
458 |
msgid "Author Suffix"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: breadcrumb_navxt_admin.php:579
|
462 |
msgid "Author Display Format"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: breadcrumb_navxt_admin.php:579
|
466 |
msgid ""
|
467 |
"display_name uses the name specified in \"Display name publicly as\" under "
|
468 |
"the user profile the others correspond to options in the user profile."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: breadcrumb_navxt_admin.php:580
|
472 |
msgid "Search Prefix"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: breadcrumb_navxt_admin.php:581
|
476 |
msgid "Search Suffix"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: breadcrumb_navxt_admin.php:582
|
480 |
msgid "Search Anchor"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: breadcrumb_navxt_admin.php:582
|
484 |
msgid ""
|
485 |
"The anchor template for search breadcrumbs, used only when the search "
|
486 |
"results span several pages."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: breadcrumb_navxt_admin.php:583
|
490 |
msgid "404 Title"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: breadcrumb_navxt_admin.php:584
|
494 |
msgid "404 Prefix"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: breadcrumb_navxt_admin.php:585
|
498 |
msgid "404 Suffix"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: breadcrumb_navxt_admin.php:590
|
502 |
msgid "Save Changes"
|
503 |
msgstr ""
|
504 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
505 |
#: breadcrumb_navxt_class.php:149
|
506 |
msgid "Blog"
|
507 |
msgstr ""
|
551 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: breadcrumb_navxt_class.php:500
|
555 |
msgid "Untagged"
|
556 |
msgstr ""
|
557 |
+
|
558 |
+
#: breadcrumb_navxt_widget.php:24
|
559 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: breadcrumb_navxt_widget.php:66
|
563 |
+
msgid "Title:"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: breadcrumb_navxt_widget.php:71
|
567 |
+
msgid "Output trail as a list"
|
568 |
+
msgstr ""
|
569 |
+
|
570 |
+
#: breadcrumb_navxt_widget.php:73
|
571 |
+
msgid "Link the breadcrumbs"
|
572 |
+
msgstr ""
|
573 |
+
|
574 |
+
#: breadcrumb_navxt_widget.php:75
|
575 |
+
msgid "Reverse the order of the trail"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: mtekk_admin_class.php:137
|
579 |
+
msgid "Settings"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: mtekk_admin_class.php:259
|
583 |
+
msgid "Settings successfully imported from the uploaded file."
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: mtekk_admin_class.php:264
|
587 |
+
msgid "Importing settings from file failed."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: mtekk_admin_class.php:283
|
591 |
+
msgid "Settings successfully reset to the default values."
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: mtekk_admin_class.php:313
|
595 |
+
#, php-format
|
596 |
+
msgid "Get help with \"%s\""
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: mtekk_admin_class.php:394
|
600 |
+
msgid "Import/Export/Reset Settings"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: mtekk_admin_class.php:395
|
604 |
+
msgid ""
|
605 |
+
"Import settings from a XML file, export the current settings to a XML file, "
|
606 |
+
"or reset to the default settings."
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: mtekk_admin_class.php:398
|
610 |
+
msgid "Settings File"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: mtekk_admin_class.php:401
|
614 |
+
msgid "Select a XML settings file to upload and import settings from."
|
615 |
+
msgstr ""
|
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:
|
6 |
-
"PO-Revision-Date:
|
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"
|
@@ -17,490 +17,466 @@ msgstr ""
|
|
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:
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Insufficient privileges to proceed."
|
22 |
msgstr "No tiene privilegios para proceder."
|
23 |
|
24 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
30 |
-
msgid "Settings"
|
31 |
-
msgstr "
|
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:
|
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:
|
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:
|
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:
|
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:
|
62 |
-
#:
|
63 |
msgid "Import"
|
64 |
msgstr "Importar"
|
65 |
|
66 |
-
#: breadcrumb_navxt_admin.php:
|
67 |
-
#:
|
68 |
msgid "Export"
|
69 |
msgstr "Exportar"
|
70 |
|
71 |
-
#: breadcrumb_navxt_admin.php:
|
72 |
-
#:
|
73 |
msgid "Reset"
|
74 |
msgstr "Reiniciar"
|
75 |
|
76 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
77 |
msgid "General"
|
78 |
msgstr "General"
|
79 |
|
80 |
-
#: breadcrumb_navxt_admin.php:
|
81 |
msgid "Breadcrumb Separator"
|
82 |
msgstr "Separador de Navegación"
|
83 |
|
84 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
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:
|
93 |
msgid "Home Breadcrumb"
|
94 |
msgstr "Incluir Inicio"
|
95 |
|
96 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
101 |
msgid "Home Title: "
|
102 |
msgstr "Título de Página de Inicio:"
|
103 |
|
104 |
-
#: breadcrumb_navxt_admin.php:
|
105 |
msgid "Blog Breadcrumb"
|
106 |
msgstr "Incluir Inicio (del Blog)"
|
107 |
|
108 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
113 |
msgid "Home Prefix"
|
114 |
msgstr "Prefijo de Inicio"
|
115 |
|
116 |
-
#: breadcrumb_navxt_admin.php:
|
117 |
msgid "Home Suffix"
|
118 |
msgstr "Sufijo de Inicio"
|
119 |
|
120 |
-
#: breadcrumb_navxt_admin.php:
|
121 |
msgid "Home Anchor"
|
122 |
msgstr "Vínculo a Inicio"
|
123 |
|
124 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
129 |
msgid "Blog Anchor"
|
130 |
msgstr "Vínculo a Blog"
|
131 |
|
132 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
137 |
msgid "Current Item"
|
138 |
msgstr "Item Actual"
|
139 |
|
140 |
-
#: breadcrumb_navxt_admin.php:
|
141 |
msgid "Link Current Item"
|
142 |
msgstr "Incluir Vínculo a Item Actual"
|
143 |
|
144 |
-
#: breadcrumb_navxt_admin.php:
|
145 |
msgid "Yes"
|
146 |
msgstr "Sí"
|
147 |
|
148 |
-
#: breadcrumb_navxt_admin.php:
|
149 |
msgid "Current Item Prefix"
|
150 |
msgstr "Prefijo de Item Actual"
|
151 |
|
152 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
157 |
msgid "Current Item Suffix"
|
158 |
msgstr "Sufijo de Item Actual"
|
159 |
|
160 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
165 |
msgid "Current Item Anchor"
|
166 |
msgstr "Vínculo a Item Actual"
|
167 |
|
168 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
173 |
msgid "Paged Breadcrumb"
|
174 |
msgstr "Ruta de Navegación Paginada"
|
175 |
|
176 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
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:
|
185 |
msgid "Paged Prefix"
|
186 |
msgstr "Prefijo para Paginado"
|
187 |
|
188 |
-
#: breadcrumb_navxt_admin.php:
|
189 |
msgid "Paged Suffix"
|
190 |
msgstr "Sufijo para Paginado"
|
191 |
|
192 |
-
#: breadcrumb_navxt_admin.php:
|
193 |
msgid "Posts & Pages"
|
194 |
msgstr "Entradas & Páginas"
|
195 |
|
196 |
-
#: breadcrumb_navxt_admin.php:
|
197 |
msgid "Post Prefix"
|
198 |
msgstr "Prefijo de Entrada"
|
199 |
|
200 |
-
#: breadcrumb_navxt_admin.php:
|
201 |
msgid "Post Suffix"
|
202 |
msgstr "Sufijo de Entrada"
|
203 |
|
204 |
-
#: breadcrumb_navxt_admin.php:
|
205 |
msgid "Post Anchor"
|
206 |
msgstr "Vínculo a Entrada"
|
207 |
|
208 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
213 |
msgid "Post Taxonomy Display"
|
214 |
msgstr "Mostrar Clasificación de Entradas"
|
215 |
|
216 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
221 |
msgid "Post Taxonomy"
|
222 |
msgstr "Clasificación de Entradas"
|
223 |
|
224 |
-
#: breadcrumb_navxt_admin.php:
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Categories"
|
227 |
msgstr "Categorías"
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Dates"
|
231 |
msgstr "Fechas"
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
-
#: breadcrumb_navxt_admin.php:
|
235 |
msgid "Tags"
|
236 |
msgstr "Etiquetas"
|
237 |
|
238 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
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:
|
243 |
msgid "Page Prefix"
|
244 |
msgstr "Prefijo de Página"
|
245 |
|
246 |
-
#: breadcrumb_navxt_admin.php:
|
247 |
msgid "Page Suffix"
|
248 |
msgstr "Sufijo de Página"
|
249 |
|
250 |
-
#: breadcrumb_navxt_admin.php:
|
251 |
msgid "Page Anchor"
|
252 |
msgstr "Vínculo a Página"
|
253 |
|
254 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
259 |
msgid "Attachment Prefix"
|
260 |
msgstr "Prefijo de Archivo Adjunto"
|
261 |
|
262 |
-
#: breadcrumb_navxt_admin.php:
|
263 |
msgid "Attachment Suffix"
|
264 |
msgstr "Sufijo de Archivo Adjunto"
|
265 |
|
266 |
-
#: breadcrumb_navxt_admin.php:
|
267 |
msgid "Category Prefix"
|
268 |
msgstr "Prefijo de Categoría"
|
269 |
|
270 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
275 |
msgid "Category Suffix"
|
276 |
msgstr "Sufijo de Categoría"
|
277 |
|
278 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
283 |
msgid "Category Anchor"
|
284 |
msgstr "Vínculo a Categoría"
|
285 |
|
286 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
291 |
msgid "Archive by Category Prefix"
|
292 |
msgstr "Prefijo de Archivo por Categoría"
|
293 |
|
294 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
299 |
msgid "Archive by Category Suffix"
|
300 |
msgstr "Sufijo de Archivo por Categoría"
|
301 |
|
302 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
307 |
msgid "Tag Prefix"
|
308 |
msgstr "Prefijo de Etiqueta"
|
309 |
|
310 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
315 |
msgid "Tag Suffix"
|
316 |
msgstr "Sufijo de Etiqueta"
|
317 |
|
318 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
323 |
msgid "Tag Anchor"
|
324 |
msgstr "Vínculo a Etiqueta"
|
325 |
|
326 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
331 |
msgid "Archive by Tag Prefix"
|
332 |
msgstr "Prefijo de Archivo por Etiqueta"
|
333 |
|
334 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
339 |
msgid "Archive by Tag Suffix"
|
340 |
msgstr "Sufijo de Archivo por Etiqueta"
|
341 |
|
342 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
347 |
#, php-format
|
348 |
msgid "%s Prefix"
|
349 |
msgstr "Prefijo de %s"
|
350 |
|
351 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
357 |
#, php-format
|
358 |
msgid "%s Suffix"
|
359 |
msgstr "Sufijo de %s"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
367 |
#, php-format
|
368 |
msgid "%s Anchor"
|
369 |
msgstr "Vínculo a %s"
|
370 |
|
371 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
377 |
#, php-format
|
378 |
msgid "Archive by %s Prefix"
|
379 |
msgstr "Archivo por Prefijo de %s"
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
387 |
#, php-format
|
388 |
msgid "Archive by %s Suffix"
|
389 |
msgstr "Archivo por Sufijo de %s"
|
390 |
|
391 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
397 |
msgid "Date Archives"
|
398 |
msgstr "Archivos por Fecha"
|
399 |
|
400 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
msgid "Archive by Date Prefix"
|
402 |
msgstr "Prefijo de Archivo por Fecha"
|
403 |
|
404 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
|
|
409 |
msgid "Archive by Date Suffix"
|
410 |
msgstr "Sufijo de Archivo por Fecha"
|
411 |
|
412 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
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:
|
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:
|
429 |
msgid "Author Prefix"
|
430 |
msgstr "Prefijo de Autor"
|
431 |
|
432 |
-
#: breadcrumb_navxt_admin.php:
|
433 |
msgid "Author Suffix"
|
434 |
msgstr "Sufijo de Autor"
|
435 |
|
436 |
-
#: breadcrumb_navxt_admin.php:
|
437 |
msgid "Author Display Format"
|
438 |
msgstr "Formato de Despliegue de Autor"
|
439 |
|
440 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
445 |
msgid "Search Prefix"
|
446 |
msgstr "Prefijo de Búsqueda"
|
447 |
|
448 |
-
#: breadcrumb_navxt_admin.php:
|
449 |
msgid "Search Suffix"
|
450 |
msgstr "Sufijo de Búsqueda"
|
451 |
|
452 |
-
#: breadcrumb_navxt_admin.php:
|
453 |
msgid "Search Anchor"
|
454 |
msgstr "Vínculo a Búsqueda"
|
455 |
|
456 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
461 |
msgid "404 Title"
|
462 |
msgstr "Título Error 404"
|
463 |
|
464 |
-
#: breadcrumb_navxt_admin.php:
|
465 |
msgid "404 Prefix"
|
466 |
msgstr "Prefijo de Error 404"
|
467 |
|
468 |
-
#: breadcrumb_navxt_admin.php:
|
469 |
msgid "404 Suffix"
|
470 |
msgstr "Sufijo de Error 404"
|
471 |
|
472 |
-
#: breadcrumb_navxt_admin.php:
|
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"
|
@@ -552,10 +528,67 @@ msgstr "Archivo por Etiqueta '"
|
|
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:
|
556 |
msgid "Untagged"
|
557 |
msgstr "Sin etiqueta"
|
558 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
#~ msgid ""
|
560 |
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
561 |
#~ "supported by this administrative interface. As a result, settings may not "
|
@@ -570,6 +603,4 @@ msgstr "Sin etiqueta"
|
|
570 |
#~ msgstr "La versión de Breadcrubm NavXT que posee es "
|
571 |
#~ msgid "Go to the Breadcrumb NavXT online documentation."
|
572 |
#~ msgstr "Ir a la documentación en línea de Breadcrumb NavXT"
|
573 |
-
#~ msgid "Leave the home breadcrumb out of the trail."
|
574 |
-
#~ msgstr "Excluir la página de inicio en la ruta de navegación."
|
575 |
|
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: 2010-05-09 01:08+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-05-20 12:52-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"
|
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:30
|
21 |
+
#, php-format
|
22 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
23 |
+
msgstr "Su versión de PHP es anticuada, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_admin.php:110
|
26 |
msgid "Insufficient privileges to proceed."
|
27 |
msgstr "No tiene privilegios para proceder."
|
28 |
|
29 |
+
#: breadcrumb_navxt_admin.php:135
|
30 |
#: breadcrumb_navxt_class.php:216
|
31 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
32 |
msgstr "<a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">"
|
33 |
|
34 |
+
#: breadcrumb_navxt_admin.php:249
|
35 |
+
msgid "Settings successfully saved."
|
36 |
+
msgstr "Ajustes guardados exitosamente."
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
+
#: breadcrumb_navxt_admin.php:272
|
|
|
|
|
|
|
|
|
|
|
39 |
#, php-format
|
40 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
41 |
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)."
|
42 |
|
43 |
+
#: breadcrumb_navxt_admin.php:273
|
44 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
45 |
msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
|
46 |
|
47 |
+
#: breadcrumb_navxt_admin.php:327
|
48 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
|
49 |
msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores predeterminados. ¿Seguro que desea continuar?"
|
50 |
|
51 |
+
#: breadcrumb_navxt_admin.php:330
|
52 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
|
53 |
msgstr "Todos los ajustes actuales de Breacrumb NavXT se sustituirán por los valores que se importen. ¿Seguro que desea continuar?"
|
54 |
|
55 |
+
#: breadcrumb_navxt_admin.php:381
|
56 |
+
#: mtekk_admin_class.php:403
|
57 |
msgid "Import"
|
58 |
msgstr "Importar"
|
59 |
|
60 |
+
#: breadcrumb_navxt_admin.php:381
|
61 |
+
#: mtekk_admin_class.php:404
|
62 |
msgid "Export"
|
63 |
msgstr "Exportar"
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:381
|
66 |
+
#: mtekk_admin_class.php:405
|
67 |
msgid "Reset"
|
68 |
msgstr "Reiniciar"
|
69 |
|
70 |
+
#: breadcrumb_navxt_admin.php:405
|
71 |
+
msgid "Breadcrumb NavXT Settings"
|
72 |
+
msgstr "Opciones de Configuración de Breadcrumb NavXT"
|
73 |
+
|
74 |
+
#: breadcrumb_navxt_admin.php:413
|
75 |
msgid "General"
|
76 |
msgstr "General"
|
77 |
|
78 |
+
#: breadcrumb_navxt_admin.php:416
|
79 |
msgid "Breadcrumb Separator"
|
80 |
msgstr "Separador de Navegación"
|
81 |
|
82 |
+
#: breadcrumb_navxt_admin.php:416
|
83 |
msgid "Placed in between each breadcrumb."
|
84 |
msgstr "Colocado en medio de cada opción de navegación."
|
85 |
|
86 |
+
#: breadcrumb_navxt_admin.php:417
|
87 |
msgid "Breadcrumb Max Title Length"
|
88 |
msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
|
89 |
|
90 |
+
#: breadcrumb_navxt_admin.php:421
|
91 |
msgid "Home Breadcrumb"
|
92 |
msgstr "Incluir Inicio"
|
93 |
|
94 |
+
#: breadcrumb_navxt_admin.php:426
|
95 |
msgid "Place the home breadcrumb in the trail."
|
96 |
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
97 |
|
98 |
+
#: breadcrumb_navxt_admin.php:431
|
99 |
msgid "Home Title: "
|
100 |
msgstr "Título de Página de Inicio:"
|
101 |
|
102 |
+
#: breadcrumb_navxt_admin.php:439
|
103 |
msgid "Blog Breadcrumb"
|
104 |
msgstr "Incluir Inicio (del Blog)"
|
105 |
|
106 |
+
#: breadcrumb_navxt_admin.php:439
|
107 |
msgid "Place the blog breadcrumb in the trail."
|
108 |
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
109 |
|
110 |
+
#: breadcrumb_navxt_admin.php:440
|
111 |
msgid "Home Prefix"
|
112 |
msgstr "Prefijo de Inicio"
|
113 |
|
114 |
+
#: breadcrumb_navxt_admin.php:441
|
115 |
msgid "Home Suffix"
|
116 |
msgstr "Sufijo de Inicio"
|
117 |
|
118 |
+
#: breadcrumb_navxt_admin.php:442
|
119 |
msgid "Home Anchor"
|
120 |
msgstr "Vínculo a Inicio"
|
121 |
|
122 |
+
#: breadcrumb_navxt_admin.php:442
|
123 |
msgid "The anchor template for the home breadcrumb."
|
124 |
msgstr "Plantilla del vínculo para la página de inicio en la ruta de navegación."
|
125 |
|
126 |
+
#: breadcrumb_navxt_admin.php:443
|
127 |
msgid "Blog Anchor"
|
128 |
msgstr "Vínculo a Blog"
|
129 |
|
130 |
+
#: breadcrumb_navxt_admin.php:443
|
131 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
132 |
msgstr "Plantilla del vínculo al blog en la ruta de navegación, utilizado sólo en páginas estáticas."
|
133 |
|
134 |
+
#: breadcrumb_navxt_admin.php:448
|
135 |
msgid "Current Item"
|
136 |
msgstr "Item Actual"
|
137 |
|
138 |
+
#: breadcrumb_navxt_admin.php:451
|
139 |
msgid "Link Current Item"
|
140 |
msgstr "Incluir Vínculo a Item Actual"
|
141 |
|
142 |
+
#: breadcrumb_navxt_admin.php:451
|
143 |
msgid "Yes"
|
144 |
msgstr "Sí"
|
145 |
|
146 |
+
#: breadcrumb_navxt_admin.php:452
|
147 |
msgid "Current Item Prefix"
|
148 |
msgstr "Prefijo de Item Actual"
|
149 |
|
150 |
+
#: breadcrumb_navxt_admin.php:452
|
151 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
152 |
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."
|
153 |
|
154 |
+
#: breadcrumb_navxt_admin.php:453
|
155 |
msgid "Current Item Suffix"
|
156 |
msgstr "Sufijo de Item Actual"
|
157 |
|
158 |
+
#: breadcrumb_navxt_admin.php:453
|
159 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
160 |
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."
|
161 |
|
162 |
+
#: breadcrumb_navxt_admin.php:454
|
163 |
msgid "Current Item Anchor"
|
164 |
msgstr "Vínculo a Item Actual"
|
165 |
|
166 |
+
#: breadcrumb_navxt_admin.php:454
|
167 |
msgid "The anchor template for current item breadcrumbs."
|
168 |
msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
|
169 |
|
170 |
+
#: breadcrumb_navxt_admin.php:455
|
171 |
msgid "Paged Breadcrumb"
|
172 |
msgstr "Ruta de Navegación Paginada"
|
173 |
|
174 |
+
#: breadcrumb_navxt_admin.php:455
|
175 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
176 |
msgstr "Incluir la navegación paginada en la ruta de navegación"
|
177 |
|
178 |
+
#: breadcrumb_navxt_admin.php:455
|
179 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
180 |
msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
|
181 |
|
182 |
+
#: breadcrumb_navxt_admin.php:456
|
183 |
msgid "Paged Prefix"
|
184 |
msgstr "Prefijo para Paginado"
|
185 |
|
186 |
+
#: breadcrumb_navxt_admin.php:457
|
187 |
msgid "Paged Suffix"
|
188 |
msgstr "Sufijo para Paginado"
|
189 |
|
190 |
+
#: breadcrumb_navxt_admin.php:462
|
191 |
msgid "Posts & Pages"
|
192 |
msgstr "Entradas & Páginas"
|
193 |
|
194 |
+
#: breadcrumb_navxt_admin.php:465
|
195 |
msgid "Post Prefix"
|
196 |
msgstr "Prefijo de Entrada"
|
197 |
|
198 |
+
#: breadcrumb_navxt_admin.php:466
|
199 |
msgid "Post Suffix"
|
200 |
msgstr "Sufijo de Entrada"
|
201 |
|
202 |
+
#: breadcrumb_navxt_admin.php:467
|
203 |
msgid "Post Anchor"
|
204 |
msgstr "Vínculo a Entrada"
|
205 |
|
206 |
+
#: breadcrumb_navxt_admin.php:467
|
207 |
msgid "The anchor template for post breadcrumbs."
|
208 |
msgstr "Plantilla del vínculo para entradas en la ruta de navegación."
|
209 |
|
210 |
+
#: breadcrumb_navxt_admin.php:468
|
211 |
msgid "Post Taxonomy Display"
|
212 |
msgstr "Mostrar Clasificación de Entradas"
|
213 |
|
214 |
+
#: breadcrumb_navxt_admin.php:468
|
215 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
216 |
msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
|
217 |
|
218 |
+
#: breadcrumb_navxt_admin.php:472
|
219 |
msgid "Post Taxonomy"
|
220 |
msgstr "Clasificación de Entradas"
|
221 |
|
222 |
+
#: breadcrumb_navxt_admin.php:476
|
223 |
+
#: breadcrumb_navxt_admin.php:503
|
224 |
msgid "Categories"
|
225 |
msgstr "Categorías"
|
226 |
|
227 |
+
#: breadcrumb_navxt_admin.php:477
|
228 |
msgid "Dates"
|
229 |
msgstr "Fechas"
|
230 |
|
231 |
+
#: breadcrumb_navxt_admin.php:478
|
232 |
+
#: breadcrumb_navxt_admin.php:515
|
233 |
msgid "Tags"
|
234 |
msgstr "Etiquetas"
|
235 |
|
236 |
+
#: breadcrumb_navxt_admin.php:479
|
237 |
+
msgid "Pages"
|
238 |
+
msgstr "Páginas"
|
239 |
+
|
240 |
+
#: breadcrumb_navxt_admin.php:490
|
241 |
msgid "The taxonomy which the breadcrumb trail will show."
|
242 |
msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
|
243 |
|
244 |
+
#: breadcrumb_navxt_admin.php:494
|
245 |
msgid "Page Prefix"
|
246 |
msgstr "Prefijo de Página"
|
247 |
|
248 |
+
#: breadcrumb_navxt_admin.php:495
|
249 |
msgid "Page Suffix"
|
250 |
msgstr "Sufijo de Página"
|
251 |
|
252 |
+
#: breadcrumb_navxt_admin.php:496
|
253 |
msgid "Page Anchor"
|
254 |
msgstr "Vínculo a Página"
|
255 |
|
256 |
+
#: breadcrumb_navxt_admin.php:496
|
257 |
msgid "The anchor template for page breadcrumbs."
|
258 |
msgstr "Plantilla del vínculo para páginas en la ruta de navegación."
|
259 |
|
260 |
+
#: breadcrumb_navxt_admin.php:497
|
261 |
msgid "Attachment Prefix"
|
262 |
msgstr "Prefijo de Archivo Adjunto"
|
263 |
|
264 |
+
#: breadcrumb_navxt_admin.php:498
|
265 |
msgid "Attachment Suffix"
|
266 |
msgstr "Sufijo de Archivo Adjunto"
|
267 |
|
268 |
+
#: breadcrumb_navxt_admin.php:506
|
269 |
msgid "Category Prefix"
|
270 |
msgstr "Prefijo de Categoría"
|
271 |
|
272 |
+
#: breadcrumb_navxt_admin.php:506
|
273 |
msgid "Applied before the anchor on all category breadcrumbs."
|
274 |
msgstr "Aplicado antes del vínculo de todas las opciones de categoría en la ruta."
|
275 |
|
276 |
+
#: breadcrumb_navxt_admin.php:507
|
277 |
msgid "Category Suffix"
|
278 |
msgstr "Sufijo de Categoría"
|
279 |
|
280 |
+
#: breadcrumb_navxt_admin.php:507
|
281 |
msgid "Applied after the anchor on all category breadcrumbs."
|
282 |
msgstr "Aplicado después del vínculo de todas las opciones de categoría en la ruta."
|
283 |
|
284 |
+
#: breadcrumb_navxt_admin.php:508
|
285 |
msgid "Category Anchor"
|
286 |
msgstr "Vínculo a Categoría"
|
287 |
|
288 |
+
#: breadcrumb_navxt_admin.php:508
|
289 |
msgid "The anchor template for category breadcrumbs."
|
290 |
msgstr "Plantilla del vínculo para categorías en la ruta de navegación."
|
291 |
|
292 |
+
#: breadcrumb_navxt_admin.php:509
|
293 |
msgid "Archive by Category Prefix"
|
294 |
msgstr "Prefijo de Archivo por Categoría"
|
295 |
|
296 |
+
#: breadcrumb_navxt_admin.php:509
|
297 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
298 |
msgstr "Aplicado antes del título del item actual en un archivo por categoría."
|
299 |
|
300 |
+
#: breadcrumb_navxt_admin.php:510
|
301 |
msgid "Archive by Category Suffix"
|
302 |
msgstr "Sufijo de Archivo por Categoría"
|
303 |
|
304 |
+
#: breadcrumb_navxt_admin.php:510
|
305 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
306 |
msgstr "Aplicado después del título del item actual en un archivo por categoría."
|
307 |
|
308 |
+
#: breadcrumb_navxt_admin.php:518
|
309 |
msgid "Tag Prefix"
|
310 |
msgstr "Prefijo de Etiqueta"
|
311 |
|
312 |
+
#: breadcrumb_navxt_admin.php:518
|
313 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
314 |
msgstr "Aplicado antes del vínculo de todas las opciones de etiqueta en la ruta."
|
315 |
|
316 |
+
#: breadcrumb_navxt_admin.php:519
|
317 |
msgid "Tag Suffix"
|
318 |
msgstr "Sufijo de Etiqueta"
|
319 |
|
320 |
+
#: breadcrumb_navxt_admin.php:519
|
321 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
322 |
msgstr "Aplicado después del vínculo de todas las opciones de etiqueta en la ruta."
|
323 |
|
324 |
+
#: breadcrumb_navxt_admin.php:520
|
325 |
msgid "Tag Anchor"
|
326 |
msgstr "Vínculo a Etiqueta"
|
327 |
|
328 |
+
#: breadcrumb_navxt_admin.php:520
|
329 |
msgid "The anchor template for tag breadcrumbs."
|
330 |
msgstr "Plantilla del vínculo para etiquetas en la ruta de navegación."
|
331 |
|
332 |
+
#: breadcrumb_navxt_admin.php:521
|
333 |
msgid "Archive by Tag Prefix"
|
334 |
msgstr "Prefijo de Archivo por Etiqueta"
|
335 |
|
336 |
+
#: breadcrumb_navxt_admin.php:521
|
337 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
338 |
msgstr "Aplicado antes del título del item actual en un archivo por etiqueta."
|
339 |
|
340 |
+
#: breadcrumb_navxt_admin.php:522
|
341 |
msgid "Archive by Tag Suffix"
|
342 |
msgstr "Sufijo de Archivo por Etiqueta"
|
343 |
|
344 |
+
#: breadcrumb_navxt_admin.php:522
|
345 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
346 |
msgstr "Aplicado después del título del item actual en un archivo por etiqueta."
|
347 |
|
348 |
+
#: breadcrumb_navxt_admin.php:550
|
349 |
#, php-format
|
350 |
msgid "%s Prefix"
|
351 |
msgstr "Prefijo de %s"
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:550
|
354 |
#, php-format
|
355 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
356 |
msgstr "Aplicado antes del vínculo de todos los elementos de la ruta de %s."
|
357 |
|
358 |
+
#: breadcrumb_navxt_admin.php:551
|
359 |
#, php-format
|
360 |
msgid "%s Suffix"
|
361 |
msgstr "Sufijo de %s"
|
362 |
|
363 |
+
#: breadcrumb_navxt_admin.php:551
|
364 |
#, php-format
|
365 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
366 |
msgstr "Aplicado después del vínculo de todos los elementos de la ruta de %s."
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:552
|
369 |
#, php-format
|
370 |
msgid "%s Anchor"
|
371 |
msgstr "Vínculo a %s"
|
372 |
|
373 |
+
#: breadcrumb_navxt_admin.php:552
|
374 |
#, php-format
|
375 |
msgid "The anchor template for %s breadcrumbs."
|
376 |
msgstr "La plantilla de vínculo para los elementos de ruta de %s."
|
377 |
|
378 |
+
#: breadcrumb_navxt_admin.php:553
|
379 |
#, php-format
|
380 |
msgid "Archive by %s Prefix"
|
381 |
msgstr "Archivo por Prefijo de %s"
|
382 |
|
383 |
+
#: breadcrumb_navxt_admin.php:553
|
384 |
#, php-format
|
385 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
386 |
msgstr "Aplicado antes del título del item actual en un archivo por página %s."
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:554
|
389 |
#, php-format
|
390 |
msgid "Archive by %s Suffix"
|
391 |
msgstr "Archivo por Sufijo de %s"
|
392 |
|
393 |
+
#: breadcrumb_navxt_admin.php:554
|
394 |
#, php-format
|
395 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
396 |
msgstr "Aplicado después del título del item actual en un archivo por página %s."
|
397 |
|
398 |
+
#: breadcrumb_navxt_admin.php:563
|
399 |
msgid "Date Archives"
|
400 |
msgstr "Archivos por Fecha"
|
401 |
|
402 |
+
#: breadcrumb_navxt_admin.php:566
|
403 |
+
msgid "Date Anchor"
|
404 |
+
msgstr "Vínculo a Fecha"
|
405 |
+
|
406 |
+
#: breadcrumb_navxt_admin.php:566
|
407 |
+
msgid "The anchor template for date breadcrumbs."
|
408 |
+
msgstr "Plantilla del vínculo para fechas en la ruta de navegación."
|
409 |
+
|
410 |
+
#: breadcrumb_navxt_admin.php:567
|
411 |
msgid "Archive by Date Prefix"
|
412 |
msgstr "Prefijo de Archivo por Fecha"
|
413 |
|
414 |
+
#: breadcrumb_navxt_admin.php:567
|
415 |
msgid "Applied before the anchor on all date breadcrumbs."
|
416 |
msgstr "Aplicado antes del vínculo de todas las opciones de fecha en la ruta."
|
417 |
|
418 |
+
#: breadcrumb_navxt_admin.php:568
|
419 |
+
#: breadcrumb_navxt_admin.php:578
|
420 |
msgid "Archive by Date Suffix"
|
421 |
msgstr "Sufijo de Archivo por Fecha"
|
422 |
|
423 |
+
#: breadcrumb_navxt_admin.php:568
|
424 |
+
#: breadcrumb_navxt_admin.php:578
|
425 |
msgid "Applied after the anchor on all date breadcrumbs."
|
426 |
msgstr "Aplicado después del vínculo de todas las opciones de fecha en la ruta."
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:573
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
msgid "Miscellaneous"
|
430 |
msgstr "Misceláneos"
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:576
|
433 |
msgid "Author Prefix"
|
434 |
msgstr "Prefijo de Autor"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:577
|
437 |
msgid "Author Suffix"
|
438 |
msgstr "Sufijo de Autor"
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:579
|
441 |
msgid "Author Display Format"
|
442 |
msgstr "Formato de Despliegue de Autor"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:579
|
445 |
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."
|
446 |
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."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:580
|
449 |
msgid "Search Prefix"
|
450 |
msgstr "Prefijo de Búsqueda"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:581
|
453 |
msgid "Search Suffix"
|
454 |
msgstr "Sufijo de Búsqueda"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:582
|
457 |
msgid "Search Anchor"
|
458 |
msgstr "Vínculo a Búsqueda"
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:582
|
461 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
462 |
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."
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:583
|
465 |
msgid "404 Title"
|
466 |
msgstr "Título Error 404"
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:584
|
469 |
msgid "404 Prefix"
|
470 |
msgstr "Prefijo de Error 404"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:585
|
473 |
msgid "404 Suffix"
|
474 |
msgstr "Sufijo de Error 404"
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:590
|
477 |
msgid "Save Changes"
|
478 |
msgstr "Grabar Cambios"
|
479 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
#: breadcrumb_navxt_class.php:149
|
481 |
msgid "Blog"
|
482 |
msgstr "Inicio"
|
528 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
529 |
msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">"
|
530 |
|
531 |
+
#: breadcrumb_navxt_class.php:500
|
532 |
msgid "Untagged"
|
533 |
msgstr "Sin etiqueta"
|
534 |
|
535 |
+
#: breadcrumb_navxt_widget.php:24
|
536 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
537 |
+
msgstr "Agrega una ruta de navegación en su barra lateral"
|
538 |
+
|
539 |
+
#: breadcrumb_navxt_widget.php:66
|
540 |
+
msgid "Title:"
|
541 |
+
msgstr "Título:"
|
542 |
+
|
543 |
+
#: breadcrumb_navxt_widget.php:71
|
544 |
+
msgid "Output trail as a list"
|
545 |
+
msgstr "Mostrar ruta como una lista"
|
546 |
+
|
547 |
+
#: breadcrumb_navxt_widget.php:73
|
548 |
+
msgid "Link the breadcrumbs"
|
549 |
+
msgstr "Enlace a la Ruta"
|
550 |
+
|
551 |
+
#: breadcrumb_navxt_widget.php:75
|
552 |
+
msgid "Reverse the order of the trail"
|
553 |
+
msgstr "Invertir el orden de la ruta"
|
554 |
+
|
555 |
+
#: mtekk_admin_class.php:137
|
556 |
+
msgid "Settings"
|
557 |
+
msgstr "Configuraciones"
|
558 |
+
|
559 |
+
#: mtekk_admin_class.php:259
|
560 |
+
msgid "Settings successfully imported from the uploaded file."
|
561 |
+
msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
|
562 |
+
|
563 |
+
#: mtekk_admin_class.php:264
|
564 |
+
msgid "Importing settings from file failed."
|
565 |
+
msgstr "Falló la importación de los ajustes desde el archivo."
|
566 |
+
|
567 |
+
#: mtekk_admin_class.php:283
|
568 |
+
msgid "Settings successfully reset to the default values."
|
569 |
+
msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
|
570 |
+
|
571 |
+
#: mtekk_admin_class.php:313
|
572 |
+
#, php-format
|
573 |
+
msgid "Get help with \"%s\""
|
574 |
+
msgstr "Obtener ayuda con \"%s\""
|
575 |
+
|
576 |
+
#: mtekk_admin_class.php:394
|
577 |
+
msgid "Import/Export/Reset Settings"
|
578 |
+
msgstr "Importar/Exportar/Reiniciar Ajustes"
|
579 |
+
|
580 |
+
#: mtekk_admin_class.php:395
|
581 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
582 |
+
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."
|
583 |
+
|
584 |
+
#: mtekk_admin_class.php:398
|
585 |
+
msgid "Settings File"
|
586 |
+
msgstr "Archivo de Ajustes"
|
587 |
+
|
588 |
+
#: mtekk_admin_class.php:401
|
589 |
+
msgid "Select a XML settings file to upload and import settings from."
|
590 |
+
msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
|
591 |
+
|
592 |
#~ msgid ""
|
593 |
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
594 |
#~ "supported by this administrative interface. As a result, settings may not "
|
603 |
#~ msgstr "La versión de Breadcrubm NavXT que posee es "
|
604 |
#~ msgid "Go to the Breadcrumb NavXT online documentation."
|
605 |
#~ msgstr "Ir a la documentación en línea de Breadcrumb NavXT"
|
|
|
|
|
606 |
|
languages/breadcrumb_navxt-it_IT.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt-it_IT.po
CHANGED
@@ -1,505 +1,482 @@
|
|
1 |
-
#
|
2 |
-
#
|
3 |
-
#
|
|
|
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:
|
10 |
-
"PO-Revision-Date:
|
11 |
"Last-Translator: Luca Camellini <luccame@gmail.com>\n"
|
12 |
-
"Language-Team:
|
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:
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "Insufficient privileges to proceed."
|
21 |
msgstr "Permessi insufficienti per procedere"
|
22 |
|
23 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
61 |
-
#:
|
62 |
msgid "Import"
|
63 |
msgstr "Importa"
|
64 |
|
65 |
-
#: breadcrumb_navxt_admin.php:
|
66 |
-
#:
|
67 |
msgid "Export"
|
68 |
msgstr "Esporta"
|
69 |
|
70 |
-
#: breadcrumb_navxt_admin.php:
|
71 |
-
#:
|
72 |
msgid "Reset"
|
73 |
msgstr "Reimposta"
|
74 |
|
75 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
76 |
msgid "General"
|
77 |
msgstr "Generale"
|
78 |
|
79 |
-
#: breadcrumb_navxt_admin.php:
|
80 |
msgid "Breadcrumb Separator"
|
81 |
msgstr "Separatore delle breadcrumb"
|
82 |
|
83 |
-
#: breadcrumb_navxt_admin.php:
|
84 |
msgid "Placed in between each breadcrumb."
|
85 |
msgstr "Inserito tra ogni breadcrumb."
|
86 |
|
87 |
-
#: breadcrumb_navxt_admin.php:
|
88 |
msgid "Breadcrumb Max Title Length"
|
89 |
msgstr "Lunghezza massima titolo delle breadcrumb"
|
90 |
|
91 |
-
#: breadcrumb_navxt_admin.php:
|
92 |
msgid "Home Breadcrumb"
|
93 |
msgstr "Breadcrumb della Home Page"
|
94 |
|
95 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
100 |
msgid "Home Title: "
|
101 |
msgstr "Titolo Home:"
|
102 |
|
103 |
-
#: breadcrumb_navxt_admin.php:
|
104 |
msgid "Blog Breadcrumb"
|
105 |
msgstr "Breadcrumb del Blog"
|
106 |
|
107 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
112 |
msgid "Home Prefix"
|
113 |
msgstr "Prefisso Home"
|
114 |
|
115 |
-
#: breadcrumb_navxt_admin.php:
|
116 |
msgid "Home Suffix"
|
117 |
msgstr "Suffisso Home"
|
118 |
|
119 |
-
#: breadcrumb_navxt_admin.php:
|
120 |
msgid "Home Anchor"
|
121 |
msgstr "Collegamento Home"
|
122 |
|
123 |
-
#: breadcrumb_navxt_admin.php:
|
124 |
msgid "The anchor template for the home breadcrumb."
|
125 |
msgstr "Template collegamento per la Home Breadcrumb."
|
126 |
|
127 |
-
#: breadcrumb_navxt_admin.php:
|
128 |
msgid "Blog Anchor"
|
129 |
msgstr "Collegamento Blog"
|
130 |
|
131 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
136 |
msgid "Current Item"
|
137 |
msgstr "Voce corrente"
|
138 |
|
139 |
-
#: breadcrumb_navxt_admin.php:
|
140 |
msgid "Link Current Item"
|
141 |
msgstr "Collegamento voce corrente"
|
142 |
|
143 |
-
#: breadcrumb_navxt_admin.php:
|
144 |
msgid "Yes"
|
145 |
msgstr "Sì"
|
146 |
|
147 |
-
#: breadcrumb_navxt_admin.php:
|
148 |
msgid "Current Item Prefix"
|
149 |
msgstr "Prefisso voce corrente"
|
150 |
|
151 |
-
#: breadcrumb_navxt_admin.php:
|
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 è sempre inserito davanti all'ultima breadcrumb del percorso, prima di qualsiasi altro prefisso della breadcrumb."
|
154 |
|
155 |
-
#: breadcrumb_navxt_admin.php:
|
156 |
msgid "Current Item Suffix"
|
157 |
msgstr "Suffisso della voce corrente"
|
158 |
|
159 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
164 |
msgid "Current Item Anchor"
|
165 |
msgstr "Collegamento della voce corrente"
|
166 |
|
167 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
172 |
msgid "Paged Breadcrumb"
|
173 |
msgstr "Breadcrumb paginata"
|
174 |
|
175 |
-
#: breadcrumb_navxt_admin.php:
|
176 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
177 |
msgstr "Includi la breadcrumb paginata nel percorso."
|
178 |
|
179 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
184 |
msgid "Paged Prefix"
|
185 |
msgstr "Prefisso paginato"
|
186 |
|
187 |
-
#: breadcrumb_navxt_admin.php:
|
188 |
msgid "Paged Suffix"
|
189 |
msgstr "Suffisso paginato"
|
190 |
|
191 |
-
#: breadcrumb_navxt_admin.php:
|
192 |
msgid "Posts & Pages"
|
193 |
msgstr "Articoli & Pagine"
|
194 |
|
195 |
-
#: breadcrumb_navxt_admin.php:
|
196 |
msgid "Post Prefix"
|
197 |
msgstr "Prefisso Articolo"
|
198 |
|
199 |
-
#: breadcrumb_navxt_admin.php:
|
200 |
msgid "Post Suffix"
|
201 |
msgstr "Suffisso Articolo"
|
202 |
|
203 |
-
#: breadcrumb_navxt_admin.php:
|
204 |
msgid "Post Anchor"
|
205 |
msgstr "Collegamento Articolo"
|
206 |
|
207 |
-
#: breadcrumb_navxt_admin.php:
|
208 |
msgid "The anchor template for post breadcrumbs."
|
209 |
msgstr "Template collegamento per le breadcrumb di articoli."
|
210 |
|
211 |
-
#: breadcrumb_navxt_admin.php:
|
212 |
msgid "Post Taxonomy Display"
|
213 |
msgstr "Visualizzazione Tassonomia Articolo"
|
214 |
|
215 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
220 |
msgid "Post Taxonomy"
|
221 |
msgstr "Tassonomia Articolo"
|
222 |
|
223 |
-
#: breadcrumb_navxt_admin.php:
|
224 |
-
#: breadcrumb_navxt_admin.php:
|
225 |
msgid "Categories"
|
226 |
msgstr "Categorie"
|
227 |
|
228 |
-
#: breadcrumb_navxt_admin.php:
|
229 |
msgid "Dates"
|
230 |
msgstr "Date"
|
231 |
|
232 |
-
#: breadcrumb_navxt_admin.php:
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Tags"
|
235 |
msgstr "Tags"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
238 |
msgid "The taxonomy which the breadcrumb trail will show."
|
239 |
msgstr "La tassonomia che sarà mostrata nel percorso di breadcrumb."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Page Prefix"
|
243 |
msgstr "Prefisso Pagina"
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "Page Suffix"
|
247 |
msgstr "Suffisso Pagina"
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Page Anchor"
|
251 |
msgstr "Collegamento Pagina"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "The anchor template for page breadcrumbs."
|
255 |
msgstr "Template collegamento per le breadcrumb di pagine."
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Attachment Prefix"
|
259 |
msgstr "Prefisso Allegato"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
msgid "Attachment Suffix"
|
263 |
msgstr "Suffisso Allegato"
|
264 |
|
265 |
-
#: breadcrumb_navxt_admin.php:
|
266 |
msgid "Category Prefix"
|
267 |
msgstr "Prefisso Categoria"
|
268 |
|
269 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
274 |
msgid "Category Suffix"
|
275 |
msgstr "Suffisso Categoria"
|
276 |
|
277 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
282 |
msgid "Category Anchor"
|
283 |
msgstr "Collegamento Categoria"
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "The anchor template for category breadcrumbs."
|
287 |
msgstr "Template collegamento per le breadcrumb di categorie."
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Archive by Category Prefix"
|
291 |
msgstr "Prefisso Archivio per categoria"
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
298 |
msgid "Archive by Category Suffix"
|
299 |
msgstr "Suffisso Archivio per categoria"
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
306 |
msgid "Tag Prefix"
|
307 |
msgstr "Prefisso Tag"
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
314 |
msgid "Tag Suffix"
|
315 |
msgstr "Suffisso Tag"
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
322 |
msgid "Tag Anchor"
|
323 |
msgstr "Collegamento Tag"
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "The anchor template for tag breadcrumbs."
|
327 |
msgstr "Template collegamento per le breadcrumb di tag."
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Archive by Tag Prefix"
|
331 |
msgstr "Prefisso Archivio per tag"
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
338 |
msgid "Archive by Tag Suffix"
|
339 |
msgstr "Suffisso Archivio per tag"
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
346 |
#, php-format
|
347 |
msgid "%s Prefix"
|
348 |
msgstr "Prefisso %s "
|
349 |
|
350 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
356 |
#, php-format
|
357 |
msgid "%s Suffix"
|
358 |
msgstr "Suffisso %s"
|
359 |
|
360 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
366 |
#, php-format
|
367 |
msgid "%s Anchor"
|
368 |
msgstr "Collegamento %s"
|
369 |
|
370 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
376 |
#, php-format
|
377 |
msgid "Archive by %s Prefix"
|
378 |
msgstr "Prefisso Archivio per %s"
|
379 |
|
380 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
386 |
#, php-format
|
387 |
msgid "Archive by %s Suffix"
|
388 |
msgstr "Suffisso Archivio per %s"
|
389 |
|
390 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
396 |
msgid "Date Archives"
|
397 |
msgstr "Archivi per Data"
|
398 |
|
399 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
msgid "Archive by Date Prefix"
|
401 |
msgstr "Prefisso Archivi per Data"
|
402 |
|
403 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
|
|
408 |
msgid "Archive by Date Suffix"
|
409 |
msgstr "Suffisso Archivi per Data"
|
410 |
|
411 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
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:
|
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:
|
428 |
msgid "Author Prefix"
|
429 |
msgstr "Prefisso Autore"
|
430 |
|
431 |
-
#: breadcrumb_navxt_admin.php:
|
432 |
msgid "Author Suffix"
|
433 |
msgstr "Suffisso Autore"
|
434 |
|
435 |
-
#: breadcrumb_navxt_admin.php:
|
436 |
msgid "Author Display Format"
|
437 |
msgstr "Formato visualizzazione autore"
|
438 |
|
439 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
444 |
msgid "Search Prefix"
|
445 |
msgstr "Prefisso Ricerca"
|
446 |
|
447 |
-
#: breadcrumb_navxt_admin.php:
|
448 |
msgid "Search Suffix"
|
449 |
msgstr "Suffisso Ricerca"
|
450 |
|
451 |
-
#: breadcrumb_navxt_admin.php:
|
452 |
msgid "Search Anchor"
|
453 |
msgstr "Collegamento Ricerca"
|
454 |
|
455 |
-
#: breadcrumb_navxt_admin.php:
|
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ù pagine di risultati."
|
458 |
|
459 |
-
#: breadcrumb_navxt_admin.php:
|
460 |
msgid "404 Title"
|
461 |
msgstr "Titolo 404"
|
462 |
|
463 |
-
#: breadcrumb_navxt_admin.php:
|
464 |
msgid "404 Prefix"
|
465 |
msgstr "Prefisso 404"
|
466 |
|
467 |
-
#: breadcrumb_navxt_admin.php:
|
468 |
msgid "404 Suffix"
|
469 |
msgstr "Suffisso 404"
|
470 |
|
471 |
-
#: breadcrumb_navxt_admin.php:
|
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"
|
@@ -551,7 +528,64 @@ msgstr "Archivio del tag '"
|
|
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:
|
555 |
msgid "Untagged"
|
556 |
msgstr "Non taggato"
|
557 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of the WordPress plugin by .
|
2 |
+
# Copyright (C) 2010
|
3 |
+
# This file is distributed under the same license as the package.
|
4 |
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
5 |
#
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
+
"Project-Id-Version: breadcrumb-navxt\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
10 |
+
"POT-Creation-Date: 2010-05-09 01:08+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-05-10 22:03+0100\n"
|
12 |
"Last-Translator: Luca Camellini <luccame@gmail.com>\n"
|
13 |
+
"Language-Team: luccame <luccame@gmail.com>\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"X-Poedit-Language: Italian\n"
|
18 |
"X-Poedit-Country: ITALY\n"
|
19 |
|
20 |
+
#: breadcrumb_navxt_admin.php:30
|
21 |
+
#, php-format
|
22 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
23 |
+
msgstr "La versione di PHP in uso è obsoleta, si prega di eseguire l'aggiornamento ad una versione più recente. La tua versione è %s, questo plugin richiede la %s"
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_admin.php:110
|
26 |
msgid "Insufficient privileges to proceed."
|
27 |
msgstr "Permessi insufficienti per procedere"
|
28 |
|
29 |
+
#: breadcrumb_navxt_admin.php:135
|
30 |
#: breadcrumb_navxt_class.php:216
|
31 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
32 |
msgstr "<a title=\"Vai alla prima pagina dei risultati della ricerca per %title%.\" href=\"%link%\">"
|
33 |
|
34 |
+
#: breadcrumb_navxt_admin.php:249
|
35 |
+
msgid "Settings successfully saved."
|
36 |
+
msgstr "Impostazioni salvate correttamente."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
+
#: breadcrumb_navxt_admin.php:272
|
39 |
#, php-format
|
40 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
41 |
msgstr "I suggerimenti per le impostazioni sono posizionati sotto le opzioni. Si prega di fare riferimento alla %sdocumentazione%s per maggiori informazioni."
|
42 |
|
43 |
+
#: breadcrumb_navxt_admin.php:273
|
44 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
45 |
msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
|
46 |
|
47 |
+
#: breadcrumb_navxt_admin.php:327
|
48 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
|
49 |
msgstr "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte con i valori predefiniti. Sei sicuro di voler continuare?"
|
50 |
|
51 |
+
#: breadcrumb_navxt_admin.php:330
|
52 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
|
53 |
msgstr "Tutte le impostazioni attuali di Breadcrumb NavXT saranno sovrascritte con i valori importati. Sei sicuro di voler continuare?"
|
54 |
|
55 |
+
#: breadcrumb_navxt_admin.php:381
|
56 |
+
#: mtekk_admin_class.php:403
|
57 |
msgid "Import"
|
58 |
msgstr "Importa"
|
59 |
|
60 |
+
#: breadcrumb_navxt_admin.php:381
|
61 |
+
#: mtekk_admin_class.php:404
|
62 |
msgid "Export"
|
63 |
msgstr "Esporta"
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:381
|
66 |
+
#: mtekk_admin_class.php:405
|
67 |
msgid "Reset"
|
68 |
msgstr "Reimposta"
|
69 |
|
70 |
+
#: breadcrumb_navxt_admin.php:405
|
71 |
+
msgid "Breadcrumb NavXT Settings"
|
72 |
+
msgstr "Impostazioni di Breadcrumb NavXT"
|
73 |
+
|
74 |
+
#: breadcrumb_navxt_admin.php:413
|
75 |
msgid "General"
|
76 |
msgstr "Generale"
|
77 |
|
78 |
+
#: breadcrumb_navxt_admin.php:416
|
79 |
msgid "Breadcrumb Separator"
|
80 |
msgstr "Separatore delle breadcrumb"
|
81 |
|
82 |
+
#: breadcrumb_navxt_admin.php:416
|
83 |
msgid "Placed in between each breadcrumb."
|
84 |
msgstr "Inserito tra ogni breadcrumb."
|
85 |
|
86 |
+
#: breadcrumb_navxt_admin.php:417
|
87 |
msgid "Breadcrumb Max Title Length"
|
88 |
msgstr "Lunghezza massima titolo delle breadcrumb"
|
89 |
|
90 |
+
#: breadcrumb_navxt_admin.php:421
|
91 |
msgid "Home Breadcrumb"
|
92 |
msgstr "Breadcrumb della Home Page"
|
93 |
|
94 |
+
#: breadcrumb_navxt_admin.php:426
|
95 |
msgid "Place the home breadcrumb in the trail."
|
96 |
msgstr "Inserisci la Breadcrumb per la Home Page nel percorso."
|
97 |
|
98 |
+
#: breadcrumb_navxt_admin.php:431
|
99 |
msgid "Home Title: "
|
100 |
msgstr "Titolo Home:"
|
101 |
|
102 |
+
#: breadcrumb_navxt_admin.php:439
|
103 |
msgid "Blog Breadcrumb"
|
104 |
msgstr "Breadcrumb del Blog"
|
105 |
|
106 |
+
#: breadcrumb_navxt_admin.php:439
|
107 |
msgid "Place the blog breadcrumb in the trail."
|
108 |
msgstr "Inserisci la Breadcrumb per il Blog nel percorso."
|
109 |
|
110 |
+
#: breadcrumb_navxt_admin.php:440
|
111 |
msgid "Home Prefix"
|
112 |
msgstr "Prefisso Home"
|
113 |
|
114 |
+
#: breadcrumb_navxt_admin.php:441
|
115 |
msgid "Home Suffix"
|
116 |
msgstr "Suffisso Home"
|
117 |
|
118 |
+
#: breadcrumb_navxt_admin.php:442
|
119 |
msgid "Home Anchor"
|
120 |
msgstr "Collegamento Home"
|
121 |
|
122 |
+
#: breadcrumb_navxt_admin.php:442
|
123 |
msgid "The anchor template for the home breadcrumb."
|
124 |
msgstr "Template collegamento per la Home Breadcrumb."
|
125 |
|
126 |
+
#: breadcrumb_navxt_admin.php:443
|
127 |
msgid "Blog Anchor"
|
128 |
msgstr "Collegamento Blog"
|
129 |
|
130 |
+
#: breadcrumb_navxt_admin.php:443
|
131 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
132 |
msgstr "Template collegamento per la Blog Breadcrumb, usato solo in ambienti con pagina iniziale statica."
|
133 |
|
134 |
+
#: breadcrumb_navxt_admin.php:448
|
135 |
msgid "Current Item"
|
136 |
msgstr "Voce corrente"
|
137 |
|
138 |
+
#: breadcrumb_navxt_admin.php:451
|
139 |
msgid "Link Current Item"
|
140 |
msgstr "Collegamento voce corrente"
|
141 |
|
142 |
+
#: breadcrumb_navxt_admin.php:451
|
143 |
msgid "Yes"
|
144 |
msgstr "Sì"
|
145 |
|
146 |
+
#: breadcrumb_navxt_admin.php:452
|
147 |
msgid "Current Item Prefix"
|
148 |
msgstr "Prefisso voce corrente"
|
149 |
|
150 |
+
#: breadcrumb_navxt_admin.php:452
|
151 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
152 |
msgstr "Questo è sempre inserito davanti all'ultima breadcrumb del percorso, prima di qualsiasi altro prefisso della breadcrumb."
|
153 |
|
154 |
+
#: breadcrumb_navxt_admin.php:453
|
155 |
msgid "Current Item Suffix"
|
156 |
msgstr "Suffisso della voce corrente"
|
157 |
|
158 |
+
#: breadcrumb_navxt_admin.php:453
|
159 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
160 |
msgstr "Questo è sempre inserito dopo l'ultima breadcrumb del percorso, e dopo qualsiasi altro suffisso della breadcrumb."
|
161 |
|
162 |
+
#: breadcrumb_navxt_admin.php:454
|
163 |
msgid "Current Item Anchor"
|
164 |
msgstr "Collegamento della voce corrente"
|
165 |
|
166 |
+
#: breadcrumb_navxt_admin.php:454
|
167 |
msgid "The anchor template for current item breadcrumbs."
|
168 |
msgstr "Template collegamento per le breadcrumb della voce corrente."
|
169 |
|
170 |
+
#: breadcrumb_navxt_admin.php:455
|
171 |
msgid "Paged Breadcrumb"
|
172 |
msgstr "Breadcrumb paginata"
|
173 |
|
174 |
+
#: breadcrumb_navxt_admin.php:455
|
175 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
176 |
msgstr "Includi la breadcrumb paginata nel percorso."
|
177 |
|
178 |
+
#: breadcrumb_navxt_admin.php:455
|
179 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
180 |
msgstr "Indica che l'utente si trova su una pagina diversa dalla prima negli elenchi di pagine o articoli."
|
181 |
|
182 |
+
#: breadcrumb_navxt_admin.php:456
|
183 |
msgid "Paged Prefix"
|
184 |
msgstr "Prefisso paginato"
|
185 |
|
186 |
+
#: breadcrumb_navxt_admin.php:457
|
187 |
msgid "Paged Suffix"
|
188 |
msgstr "Suffisso paginato"
|
189 |
|
190 |
+
#: breadcrumb_navxt_admin.php:462
|
191 |
msgid "Posts & Pages"
|
192 |
msgstr "Articoli & Pagine"
|
193 |
|
194 |
+
#: breadcrumb_navxt_admin.php:465
|
195 |
msgid "Post Prefix"
|
196 |
msgstr "Prefisso Articolo"
|
197 |
|
198 |
+
#: breadcrumb_navxt_admin.php:466
|
199 |
msgid "Post Suffix"
|
200 |
msgstr "Suffisso Articolo"
|
201 |
|
202 |
+
#: breadcrumb_navxt_admin.php:467
|
203 |
msgid "Post Anchor"
|
204 |
msgstr "Collegamento Articolo"
|
205 |
|
206 |
+
#: breadcrumb_navxt_admin.php:467
|
207 |
msgid "The anchor template for post breadcrumbs."
|
208 |
msgstr "Template collegamento per le breadcrumb di articoli."
|
209 |
|
210 |
+
#: breadcrumb_navxt_admin.php:468
|
211 |
msgid "Post Taxonomy Display"
|
212 |
msgstr "Visualizzazione Tassonomia Articolo"
|
213 |
|
214 |
+
#: breadcrumb_navxt_admin.php:468
|
215 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
216 |
msgstr "Mostra la tassonomia che riconduce ad un articolo nel percorso di breadcrumb."
|
217 |
|
218 |
+
#: breadcrumb_navxt_admin.php:472
|
219 |
msgid "Post Taxonomy"
|
220 |
msgstr "Tassonomia Articolo"
|
221 |
|
222 |
+
#: breadcrumb_navxt_admin.php:476
|
223 |
+
#: breadcrumb_navxt_admin.php:503
|
224 |
msgid "Categories"
|
225 |
msgstr "Categorie"
|
226 |
|
227 |
+
#: breadcrumb_navxt_admin.php:477
|
228 |
msgid "Dates"
|
229 |
msgstr "Date"
|
230 |
|
231 |
+
#: breadcrumb_navxt_admin.php:478
|
232 |
+
#: breadcrumb_navxt_admin.php:515
|
233 |
msgid "Tags"
|
234 |
msgstr "Tags"
|
235 |
|
236 |
+
#: breadcrumb_navxt_admin.php:479
|
237 |
+
msgid "Pages"
|
238 |
+
msgstr "Pagine"
|
239 |
+
|
240 |
+
#: breadcrumb_navxt_admin.php:490
|
241 |
msgid "The taxonomy which the breadcrumb trail will show."
|
242 |
msgstr "La tassonomia che sarà mostrata nel percorso di breadcrumb."
|
243 |
|
244 |
+
#: breadcrumb_navxt_admin.php:494
|
245 |
msgid "Page Prefix"
|
246 |
msgstr "Prefisso Pagina"
|
247 |
|
248 |
+
#: breadcrumb_navxt_admin.php:495
|
249 |
msgid "Page Suffix"
|
250 |
msgstr "Suffisso Pagina"
|
251 |
|
252 |
+
#: breadcrumb_navxt_admin.php:496
|
253 |
msgid "Page Anchor"
|
254 |
msgstr "Collegamento Pagina"
|
255 |
|
256 |
+
#: breadcrumb_navxt_admin.php:496
|
257 |
msgid "The anchor template for page breadcrumbs."
|
258 |
msgstr "Template collegamento per le breadcrumb di pagine."
|
259 |
|
260 |
+
#: breadcrumb_navxt_admin.php:497
|
261 |
msgid "Attachment Prefix"
|
262 |
msgstr "Prefisso Allegato"
|
263 |
|
264 |
+
#: breadcrumb_navxt_admin.php:498
|
265 |
msgid "Attachment Suffix"
|
266 |
msgstr "Suffisso Allegato"
|
267 |
|
268 |
+
#: breadcrumb_navxt_admin.php:506
|
269 |
msgid "Category Prefix"
|
270 |
msgstr "Prefisso Categoria"
|
271 |
|
272 |
+
#: breadcrumb_navxt_admin.php:506
|
273 |
msgid "Applied before the anchor on all category breadcrumbs."
|
274 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di categorie."
|
275 |
|
276 |
+
#: breadcrumb_navxt_admin.php:507
|
277 |
msgid "Category Suffix"
|
278 |
msgstr "Suffisso Categoria"
|
279 |
|
280 |
+
#: breadcrumb_navxt_admin.php:507
|
281 |
msgid "Applied after the anchor on all category breadcrumbs."
|
282 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di categorie."
|
283 |
|
284 |
+
#: breadcrumb_navxt_admin.php:508
|
285 |
msgid "Category Anchor"
|
286 |
msgstr "Collegamento Categoria"
|
287 |
|
288 |
+
#: breadcrumb_navxt_admin.php:508
|
289 |
msgid "The anchor template for category breadcrumbs."
|
290 |
msgstr "Template collegamento per le breadcrumb di categorie."
|
291 |
|
292 |
+
#: breadcrumb_navxt_admin.php:509
|
293 |
msgid "Archive by Category Prefix"
|
294 |
msgstr "Prefisso Archivio per categoria"
|
295 |
|
296 |
+
#: breadcrumb_navxt_admin.php:509
|
297 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
298 |
msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
|
299 |
|
300 |
+
#: breadcrumb_navxt_admin.php:510
|
301 |
msgid "Archive by Category Suffix"
|
302 |
msgstr "Suffisso Archivio per categoria"
|
303 |
|
304 |
+
#: breadcrumb_navxt_admin.php:510
|
305 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
306 |
msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
|
307 |
|
308 |
+
#: breadcrumb_navxt_admin.php:518
|
309 |
msgid "Tag Prefix"
|
310 |
msgstr "Prefisso Tag"
|
311 |
|
312 |
+
#: breadcrumb_navxt_admin.php:518
|
313 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
314 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di tag."
|
315 |
|
316 |
+
#: breadcrumb_navxt_admin.php:519
|
317 |
msgid "Tag Suffix"
|
318 |
msgstr "Suffisso Tag"
|
319 |
|
320 |
+
#: breadcrumb_navxt_admin.php:519
|
321 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
322 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di tag."
|
323 |
|
324 |
+
#: breadcrumb_navxt_admin.php:520
|
325 |
msgid "Tag Anchor"
|
326 |
msgstr "Collegamento Tag"
|
327 |
|
328 |
+
#: breadcrumb_navxt_admin.php:520
|
329 |
msgid "The anchor template for tag breadcrumbs."
|
330 |
msgstr "Template collegamento per le breadcrumb di tag."
|
331 |
|
332 |
+
#: breadcrumb_navxt_admin.php:521
|
333 |
msgid "Archive by Tag Prefix"
|
334 |
msgstr "Prefisso Archivio per tag"
|
335 |
|
336 |
+
#: breadcrumb_navxt_admin.php:521
|
337 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
338 |
msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
|
339 |
|
340 |
+
#: breadcrumb_navxt_admin.php:522
|
341 |
msgid "Archive by Tag Suffix"
|
342 |
msgstr "Suffisso Archivio per tag"
|
343 |
|
344 |
+
#: breadcrumb_navxt_admin.php:522
|
345 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
346 |
msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
|
347 |
|
348 |
+
#: breadcrumb_navxt_admin.php:550
|
349 |
#, php-format
|
350 |
msgid "%s Prefix"
|
351 |
msgstr "Prefisso %s "
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:550
|
354 |
#, php-format
|
355 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
356 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di %s."
|
357 |
|
358 |
+
#: breadcrumb_navxt_admin.php:551
|
359 |
#, php-format
|
360 |
msgid "%s Suffix"
|
361 |
msgstr "Suffisso %s"
|
362 |
|
363 |
+
#: breadcrumb_navxt_admin.php:551
|
364 |
#, php-format
|
365 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
366 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di %s."
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:552
|
369 |
#, php-format
|
370 |
msgid "%s Anchor"
|
371 |
msgstr "Collegamento %s"
|
372 |
|
373 |
+
#: breadcrumb_navxt_admin.php:552
|
374 |
#, php-format
|
375 |
msgid "The anchor template for %s breadcrumbs."
|
376 |
msgstr "Template collegamento per le breadcrumb di %s."
|
377 |
|
378 |
+
#: breadcrumb_navxt_admin.php:553
|
379 |
#, php-format
|
380 |
msgid "Archive by %s Prefix"
|
381 |
msgstr "Prefisso Archivio per %s"
|
382 |
|
383 |
+
#: breadcrumb_navxt_admin.php:553
|
384 |
#, php-format
|
385 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
386 |
msgstr "Applicato prima del titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:554
|
389 |
#, php-format
|
390 |
msgid "Archive by %s Suffix"
|
391 |
msgstr "Suffisso Archivio per %s"
|
392 |
|
393 |
+
#: breadcrumb_navxt_admin.php:554
|
394 |
#, php-format
|
395 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
396 |
msgstr "Applicato dopo il titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
|
397 |
|
398 |
+
#: breadcrumb_navxt_admin.php:563
|
399 |
msgid "Date Archives"
|
400 |
msgstr "Archivi per Data"
|
401 |
|
402 |
+
#: breadcrumb_navxt_admin.php:566
|
403 |
+
msgid "Date Anchor"
|
404 |
+
msgstr "Collegameto Date"
|
405 |
+
|
406 |
+
#: breadcrumb_navxt_admin.php:566
|
407 |
+
msgid "The anchor template for date breadcrumbs."
|
408 |
+
msgstr "Template collegamento per le breadcrumb per data."
|
409 |
+
|
410 |
+
#: breadcrumb_navxt_admin.php:567
|
411 |
msgid "Archive by Date Prefix"
|
412 |
msgstr "Prefisso Archivi per Data"
|
413 |
|
414 |
+
#: breadcrumb_navxt_admin.php:567
|
415 |
msgid "Applied before the anchor on all date breadcrumbs."
|
416 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs per data."
|
417 |
|
418 |
+
#: breadcrumb_navxt_admin.php:568
|
419 |
+
#: breadcrumb_navxt_admin.php:578
|
420 |
msgid "Archive by Date Suffix"
|
421 |
msgstr "Suffisso Archivi per Data"
|
422 |
|
423 |
+
#: breadcrumb_navxt_admin.php:568
|
424 |
+
#: breadcrumb_navxt_admin.php:578
|
425 |
msgid "Applied after the anchor on all date breadcrumbs."
|
426 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs per data."
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:573
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
429 |
msgid "Miscellaneous"
|
430 |
msgstr "Varie"
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:576
|
433 |
msgid "Author Prefix"
|
434 |
msgstr "Prefisso Autore"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:577
|
437 |
msgid "Author Suffix"
|
438 |
msgstr "Suffisso Autore"
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:579
|
441 |
msgid "Author Display Format"
|
442 |
msgstr "Formato visualizzazione autore"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:579
|
445 |
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."
|
446 |
msgstr "display_name usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:580
|
449 |
msgid "Search Prefix"
|
450 |
msgstr "Prefisso Ricerca"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:581
|
453 |
msgid "Search Suffix"
|
454 |
msgstr "Suffisso Ricerca"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:582
|
457 |
msgid "Search Anchor"
|
458 |
msgstr "Collegamento Ricerca"
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:582
|
461 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
462 |
msgstr "Template collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce più pagine di risultati."
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:583
|
465 |
msgid "404 Title"
|
466 |
msgstr "Titolo 404"
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:584
|
469 |
msgid "404 Prefix"
|
470 |
msgstr "Prefisso 404"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:585
|
473 |
msgid "404 Suffix"
|
474 |
msgstr "Suffisso 404"
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:590
|
477 |
msgid "Save Changes"
|
478 |
msgstr "Salva modifiche"
|
479 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
#: breadcrumb_navxt_class.php:149
|
481 |
msgid "Blog"
|
482 |
msgstr "Blog"
|
528 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
529 |
msgstr "<a title=\"Vai agli archivi %title%.\" href=\"%link%\">"
|
530 |
|
531 |
+
#: breadcrumb_navxt_class.php:500
|
532 |
msgid "Untagged"
|
533 |
msgstr "Non taggato"
|
534 |
|
535 |
+
#: breadcrumb_navxt_widget.php:24
|
536 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
537 |
+
msgstr "Aggiunge una breadcrumb alla tua barra laterale"
|
538 |
+
|
539 |
+
#: breadcrumb_navxt_widget.php:66
|
540 |
+
msgid "Title:"
|
541 |
+
msgstr "Titolo:"
|
542 |
+
|
543 |
+
#: breadcrumb_navxt_widget.php:71
|
544 |
+
msgid "Output trail as a list"
|
545 |
+
msgstr "Mostra breadcrumb come lista"
|
546 |
+
|
547 |
+
#: breadcrumb_navxt_widget.php:73
|
548 |
+
msgid "Link the breadcrumbs"
|
549 |
+
msgstr "Collega le breadcrumb"
|
550 |
+
|
551 |
+
#: breadcrumb_navxt_widget.php:75
|
552 |
+
msgid "Reverse the order of the trail"
|
553 |
+
msgstr "Inverti l'ordine del percorso"
|
554 |
+
|
555 |
+
#: mtekk_admin_class.php:137
|
556 |
+
msgid "Settings"
|
557 |
+
msgstr "Impostazioni"
|
558 |
+
|
559 |
+
#: mtekk_admin_class.php:259
|
560 |
+
msgid "Settings successfully imported from the uploaded file."
|
561 |
+
msgstr "Impostazioni importate correttamente dal file caricato."
|
562 |
+
|
563 |
+
#: mtekk_admin_class.php:264
|
564 |
+
msgid "Importing settings from file failed."
|
565 |
+
msgstr "Importazione delle impostazioni dal file fallita."
|
566 |
+
|
567 |
+
#: mtekk_admin_class.php:283
|
568 |
+
msgid "Settings successfully reset to the default values."
|
569 |
+
msgstr "Impostazioni correttamente riportate ai valori predefiniti."
|
570 |
+
|
571 |
+
#: mtekk_admin_class.php:313
|
572 |
+
#, php-format
|
573 |
+
msgid "Get help with \"%s\""
|
574 |
+
msgstr "Trova aiuto per \"%s\""
|
575 |
+
|
576 |
+
#: mtekk_admin_class.php:394
|
577 |
+
msgid "Import/Export/Reset Settings"
|
578 |
+
msgstr "Importa/Esporta/Azzera impostazioni"
|
579 |
+
|
580 |
+
#: mtekk_admin_class.php:395
|
581 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
582 |
+
msgstr "Importa le impostazioni da un file XML, esporta le impostazioni attuali su un file XML, o reimposta le opzioni predefinite."
|
583 |
+
|
584 |
+
#: mtekk_admin_class.php:398
|
585 |
+
msgid "Settings File"
|
586 |
+
msgstr "File delle impostazioni"
|
587 |
+
|
588 |
+
#: mtekk_admin_class.php:401
|
589 |
+
msgid "Select a XML settings file to upload and import settings from."
|
590 |
+
msgstr "Seleziona un file XML da caricare per importare le impostazioni."
|
591 |
+
|
languages/breadcrumb_navxt-sv_SE.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt-sv_SE.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:
|
6 |
-
"PO-Revision-Date:
|
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,490 +14,466 @@ 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:
|
|
|
|
|
|
|
|
|
|
|
18 |
msgid "Insufficient privileges to proceed."
|
19 |
msgstr "Otillräcklig privilegier för att fortsätta."
|
20 |
|
21 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
27 |
-
msgid "Settings"
|
28 |
-
msgstr "
|
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:
|
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:
|
47 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
48 |
msgstr "Gå till Breadcrumb NavXT online dokumentation"
|
49 |
|
50 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
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:
|
59 |
-
#:
|
60 |
msgid "Import"
|
61 |
msgstr "Importera"
|
62 |
|
63 |
-
#: breadcrumb_navxt_admin.php:
|
64 |
-
#:
|
65 |
msgid "Export"
|
66 |
msgstr "Exportera"
|
67 |
|
68 |
-
#: breadcrumb_navxt_admin.php:
|
69 |
-
#:
|
70 |
msgid "Reset"
|
71 |
msgstr "Återställ"
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
74 |
msgid "General"
|
75 |
msgstr "Allmänt"
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
78 |
msgid "Breadcrumb Separator"
|
79 |
msgstr "Breadcrumb separator"
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Placed in between each breadcrumb."
|
83 |
msgstr "Placeras i mellan varje breadcrumb."
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "Breadcrumb Max Title Length"
|
87 |
msgstr "Breadcrumb max titel längd"
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Home Breadcrumb"
|
91 |
msgstr "Hem Breadcrumb"
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Place the home breadcrumb in the trail."
|
95 |
msgstr "Placera hem breadcrumb i spåret."
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "Home Title: "
|
99 |
msgstr "Hem titel: "
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Blog Breadcrumb"
|
103 |
msgstr "Blogg breadcrumb"
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "Place the blog breadcrumb in the trail."
|
107 |
msgstr "Placera blogg breadcrumb i spåret."
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "Home Prefix"
|
111 |
msgstr "Hem Prefix"
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "Home Suffix"
|
115 |
msgstr "hem Suffix"
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Home Anchor"
|
119 |
msgstr "Hem Länk "
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "The anchor template for the home breadcrumb."
|
123 |
msgstr "Länk mall för hem breadcrumb."
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "Blog Anchor"
|
127 |
msgstr "Blogg länk"
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
134 |
msgid "Current Item"
|
135 |
msgstr "Nuvarande punkt"
|
136 |
|
137 |
-
#: breadcrumb_navxt_admin.php:
|
138 |
msgid "Link Current Item"
|
139 |
msgstr "Länk Nuvarande punkt"
|
140 |
|
141 |
-
#: breadcrumb_navxt_admin.php:
|
142 |
msgid "Yes"
|
143 |
msgstr "Ja"
|
144 |
|
145 |
-
#: breadcrumb_navxt_admin.php:
|
146 |
msgid "Current Item Prefix"
|
147 |
msgstr "Nuvarande punkt Prefix"
|
148 |
|
149 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
154 |
msgid "Current Item Suffix"
|
155 |
msgstr "Nuvarande punkt Suffix"
|
156 |
|
157 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
162 |
msgid "Current Item Anchor"
|
163 |
msgstr "Nuvarande punkt Länk"
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
170 |
msgid "Paged Breadcrumb"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
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:
|
182 |
msgid "Paged Prefix"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: breadcrumb_navxt_admin.php:
|
186 |
msgid "Paged Suffix"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: breadcrumb_navxt_admin.php:
|
190 |
msgid "Posts & Pages"
|
191 |
msgstr "Inlägg & Sidor"
|
192 |
|
193 |
-
#: breadcrumb_navxt_admin.php:
|
194 |
msgid "Post Prefix"
|
195 |
msgstr "Inläggs Prefix"
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Post Suffix"
|
199 |
msgstr "Inläggs Suffix"
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Post Anchor"
|
203 |
msgstr "Inläggs Länk"
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "The anchor template for post breadcrumbs."
|
207 |
msgstr "Länk mall för inläggs breadcrumbs."
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "Post Taxonomy Display"
|
211 |
msgstr "Inläggs taxonomi visning"
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
218 |
msgid "Post Taxonomy"
|
219 |
msgstr "Inäggs taxonomi"
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
-
#: breadcrumb_navxt_admin.php:
|
223 |
msgid "Categories"
|
224 |
msgstr "Kategorier"
|
225 |
|
226 |
-
#: breadcrumb_navxt_admin.php:
|
227 |
msgid "Dates"
|
228 |
msgstr "Datum"
|
229 |
|
230 |
-
#: breadcrumb_navxt_admin.php:
|
231 |
-
#: breadcrumb_navxt_admin.php:
|
232 |
msgid "Tags"
|
233 |
msgstr "Taggar"
|
234 |
|
235 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
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:
|
240 |
msgid "Page Prefix"
|
241 |
msgstr "Sido Prefix"
|
242 |
|
243 |
-
#: breadcrumb_navxt_admin.php:
|
244 |
msgid "Page Suffix"
|
245 |
msgstr "Sido Suffix"
|
246 |
|
247 |
-
#: breadcrumb_navxt_admin.php:
|
248 |
msgid "Page Anchor"
|
249 |
msgstr "Sido Länk"
|
250 |
|
251 |
-
#: breadcrumb_navxt_admin.php:
|
252 |
msgid "The anchor template for page breadcrumbs."
|
253 |
msgstr "Länk mall för sido breadcrumbs."
|
254 |
|
255 |
-
#: breadcrumb_navxt_admin.php:
|
256 |
msgid "Attachment Prefix"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: breadcrumb_navxt_admin.php:
|
260 |
msgid "Attachment Suffix"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: breadcrumb_navxt_admin.php:
|
264 |
msgid "Category Prefix"
|
265 |
msgstr "Kategori prefix"
|
266 |
|
267 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
272 |
msgid "Category Suffix"
|
273 |
msgstr "Kategori Suffix"
|
274 |
|
275 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
280 |
msgid "Category Anchor"
|
281 |
msgstr "Kategori länk"
|
282 |
|
283 |
-
#: breadcrumb_navxt_admin.php:
|
284 |
msgid "The anchor template for category breadcrumbs."
|
285 |
msgstr "länk mall för kategori breadcrumbs"
|
286 |
|
287 |
-
#: breadcrumb_navxt_admin.php:
|
288 |
msgid "Archive by Category Prefix"
|
289 |
msgstr "Arkiv av kategori prefix"
|
290 |
|
291 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
296 |
msgid "Archive by Category Suffix"
|
297 |
msgstr "Arkiv av Kategori Suffix"
|
298 |
|
299 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
304 |
msgid "Tag Prefix"
|
305 |
msgstr "Tagg Prefix"
|
306 |
|
307 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
312 |
msgid "Tag Suffix"
|
313 |
msgstr "Tag Suffix"
|
314 |
|
315 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
320 |
msgid "Tag Anchor"
|
321 |
msgstr "Tagg Länk"
|
322 |
|
323 |
-
#: breadcrumb_navxt_admin.php:
|
324 |
msgid "The anchor template for tag breadcrumbs."
|
325 |
msgstr "Länk mall för tagg breadcrumbs."
|
326 |
|
327 |
-
#: breadcrumb_navxt_admin.php:
|
328 |
msgid "Archive by Tag Prefix"
|
329 |
msgstr "Arkiv av Tagg Prefix"
|
330 |
|
331 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
336 |
msgid "Archive by Tag Suffix"
|
337 |
msgstr "Arkiv av Tagg Suffix"
|
338 |
|
339 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
344 |
#, php-format
|
345 |
msgid "%s Prefix"
|
346 |
msgstr "%s Prefix"
|
347 |
|
348 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
354 |
#, php-format
|
355 |
msgid "%s Suffix"
|
356 |
msgstr "%s Suffix"
|
357 |
|
358 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
364 |
#, php-format
|
365 |
msgid "%s Anchor"
|
366 |
msgstr "%s Länk"
|
367 |
|
368 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
374 |
#, php-format
|
375 |
msgid "Archive by %s Prefix"
|
376 |
msgstr "Arkiv av %s Prefix"
|
377 |
|
378 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
384 |
#, php-format
|
385 |
msgid "Archive by %s Suffix"
|
386 |
msgstr "Arkiv av %s Suffix"
|
387 |
|
388 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
394 |
msgid "Date Archives"
|
395 |
msgstr "Datum Arkiv"
|
396 |
|
397 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
msgid "Archive by Date Prefix"
|
399 |
msgstr "Arkiv av datum Prefix"
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
|
|
406 |
msgid "Archive by Date Suffix"
|
407 |
msgstr "Arkiv av daum suffix"
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
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:
|
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:
|
426 |
msgid "Author Prefix"
|
427 |
msgstr "Författar Prefix"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Author Suffix"
|
431 |
msgstr "Författar Suffix"
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "Author Display Format"
|
435 |
msgstr "Författar visnings format"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
442 |
msgid "Search Prefix"
|
443 |
msgstr "Sök Prefix"
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "Search Suffix"
|
447 |
msgstr "Sök Suffix"
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Search Anchor"
|
451 |
msgstr "Sök Länk"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
458 |
msgid "404 Title"
|
459 |
msgstr "404 Titel"
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "404 Prefix"
|
463 |
msgstr "404 Prefix"
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "404 Suffix"
|
467 |
msgstr "404 Suffix"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
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"
|
@@ -549,7 +525,64 @@ msgstr "Arkiv av tagg '"
|
|
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:
|
553 |
msgid "Untagged"
|
554 |
msgstr "Otaggad"
|
555 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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: 2010-05-09 01:08+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-05-17 22:05+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:30
|
18 |
+
#, php-format
|
19 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
20 |
+
msgstr "Din PHP version är för gammal, varvänlig och uppgradera till en nyare version. Din version är %s, pluginet kräver %s"
|
21 |
+
|
22 |
+
#: breadcrumb_navxt_admin.php:110
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr "Otillräcklig privilegier för att fortsätta."
|
25 |
|
26 |
+
#: breadcrumb_navxt_admin.php:135
|
27 |
#: breadcrumb_navxt_class.php:216
|
28 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
29 |
msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
|
30 |
|
31 |
+
#: breadcrumb_navxt_admin.php:249
|
32 |
+
msgid "Settings successfully saved."
|
33 |
+
msgstr "Inställningarna sparade."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
+
#: breadcrumb_navxt_admin.php:272
|
36 |
#, php-format
|
37 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
38 |
msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
|
39 |
|
40 |
+
#: breadcrumb_navxt_admin.php:273
|
41 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
42 |
msgstr "Gå till Breadcrumb NavXT online dokumentation"
|
43 |
|
44 |
+
#: breadcrumb_navxt_admin.php:327
|
45 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
|
46 |
msgstr "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna med standardvärden. Är du säker på att du vill fortsätta?"
|
47 |
|
48 |
+
#: breadcrumb_navxt_admin.php:330
|
49 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
|
50 |
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?"
|
51 |
|
52 |
+
#: breadcrumb_navxt_admin.php:381
|
53 |
+
#: mtekk_admin_class.php:403
|
54 |
msgid "Import"
|
55 |
msgstr "Importera"
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:381
|
58 |
+
#: mtekk_admin_class.php:404
|
59 |
msgid "Export"
|
60 |
msgstr "Exportera"
|
61 |
|
62 |
+
#: breadcrumb_navxt_admin.php:381
|
63 |
+
#: mtekk_admin_class.php:405
|
64 |
msgid "Reset"
|
65 |
msgstr "Återställ"
|
66 |
|
67 |
+
#: breadcrumb_navxt_admin.php:405
|
68 |
+
msgid "Breadcrumb NavXT Settings"
|
69 |
+
msgstr "Breadcrumb NavXT Inställningar"
|
70 |
+
|
71 |
+
#: breadcrumb_navxt_admin.php:413
|
72 |
msgid "General"
|
73 |
msgstr "Allmänt"
|
74 |
|
75 |
+
#: breadcrumb_navxt_admin.php:416
|
76 |
msgid "Breadcrumb Separator"
|
77 |
msgstr "Breadcrumb separator"
|
78 |
|
79 |
+
#: breadcrumb_navxt_admin.php:416
|
80 |
msgid "Placed in between each breadcrumb."
|
81 |
msgstr "Placeras i mellan varje breadcrumb."
|
82 |
|
83 |
+
#: breadcrumb_navxt_admin.php:417
|
84 |
msgid "Breadcrumb Max Title Length"
|
85 |
msgstr "Breadcrumb max titel längd"
|
86 |
|
87 |
+
#: breadcrumb_navxt_admin.php:421
|
88 |
msgid "Home Breadcrumb"
|
89 |
msgstr "Hem Breadcrumb"
|
90 |
|
91 |
+
#: breadcrumb_navxt_admin.php:426
|
92 |
msgid "Place the home breadcrumb in the trail."
|
93 |
msgstr "Placera hem breadcrumb i spåret."
|
94 |
|
95 |
+
#: breadcrumb_navxt_admin.php:431
|
96 |
msgid "Home Title: "
|
97 |
msgstr "Hem titel: "
|
98 |
|
99 |
+
#: breadcrumb_navxt_admin.php:439
|
100 |
msgid "Blog Breadcrumb"
|
101 |
msgstr "Blogg breadcrumb"
|
102 |
|
103 |
+
#: breadcrumb_navxt_admin.php:439
|
104 |
msgid "Place the blog breadcrumb in the trail."
|
105 |
msgstr "Placera blogg breadcrumb i spåret."
|
106 |
|
107 |
+
#: breadcrumb_navxt_admin.php:440
|
108 |
msgid "Home Prefix"
|
109 |
msgstr "Hem Prefix"
|
110 |
|
111 |
+
#: breadcrumb_navxt_admin.php:441
|
112 |
msgid "Home Suffix"
|
113 |
msgstr "hem Suffix"
|
114 |
|
115 |
+
#: breadcrumb_navxt_admin.php:442
|
116 |
msgid "Home Anchor"
|
117 |
msgstr "Hem Länk "
|
118 |
|
119 |
+
#: breadcrumb_navxt_admin.php:442
|
120 |
msgid "The anchor template for the home breadcrumb."
|
121 |
msgstr "Länk mall för hem breadcrumb."
|
122 |
|
123 |
+
#: breadcrumb_navxt_admin.php:443
|
124 |
msgid "Blog Anchor"
|
125 |
msgstr "Blogg länk"
|
126 |
|
127 |
+
#: breadcrumb_navxt_admin.php:443
|
128 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
129 |
msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
|
130 |
|
131 |
+
#: breadcrumb_navxt_admin.php:448
|
132 |
msgid "Current Item"
|
133 |
msgstr "Nuvarande punkt"
|
134 |
|
135 |
+
#: breadcrumb_navxt_admin.php:451
|
136 |
msgid "Link Current Item"
|
137 |
msgstr "Länk Nuvarande punkt"
|
138 |
|
139 |
+
#: breadcrumb_navxt_admin.php:451
|
140 |
msgid "Yes"
|
141 |
msgstr "Ja"
|
142 |
|
143 |
+
#: breadcrumb_navxt_admin.php:452
|
144 |
msgid "Current Item Prefix"
|
145 |
msgstr "Nuvarande punkt Prefix"
|
146 |
|
147 |
+
#: breadcrumb_navxt_admin.php:452
|
148 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
149 |
msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
|
150 |
|
151 |
+
#: breadcrumb_navxt_admin.php:453
|
152 |
msgid "Current Item Suffix"
|
153 |
msgstr "Nuvarande punkt Suffix"
|
154 |
|
155 |
+
#: breadcrumb_navxt_admin.php:453
|
156 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
157 |
msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
|
158 |
|
159 |
+
#: breadcrumb_navxt_admin.php:454
|
160 |
msgid "Current Item Anchor"
|
161 |
msgstr "Nuvarande punkt Länk"
|
162 |
|
163 |
+
#: breadcrumb_navxt_admin.php:454
|
164 |
msgid "The anchor template for current item breadcrumbs."
|
165 |
msgstr "Länk mall för nuvarande punkt breadcrumbs."
|
166 |
|
167 |
+
#: breadcrumb_navxt_admin.php:455
|
168 |
msgid "Paged Breadcrumb"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: breadcrumb_navxt_admin.php:455
|
172 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
173 |
msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
|
174 |
|
175 |
+
#: breadcrumb_navxt_admin.php:455
|
176 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
177 |
msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
|
178 |
|
179 |
+
#: breadcrumb_navxt_admin.php:456
|
180 |
msgid "Paged Prefix"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: breadcrumb_navxt_admin.php:457
|
184 |
msgid "Paged Suffix"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: breadcrumb_navxt_admin.php:462
|
188 |
msgid "Posts & Pages"
|
189 |
msgstr "Inlägg & Sidor"
|
190 |
|
191 |
+
#: breadcrumb_navxt_admin.php:465
|
192 |
msgid "Post Prefix"
|
193 |
msgstr "Inläggs Prefix"
|
194 |
|
195 |
+
#: breadcrumb_navxt_admin.php:466
|
196 |
msgid "Post Suffix"
|
197 |
msgstr "Inläggs Suffix"
|
198 |
|
199 |
+
#: breadcrumb_navxt_admin.php:467
|
200 |
msgid "Post Anchor"
|
201 |
msgstr "Inläggs Länk"
|
202 |
|
203 |
+
#: breadcrumb_navxt_admin.php:467
|
204 |
msgid "The anchor template for post breadcrumbs."
|
205 |
msgstr "Länk mall för inläggs breadcrumbs."
|
206 |
|
207 |
+
#: breadcrumb_navxt_admin.php:468
|
208 |
msgid "Post Taxonomy Display"
|
209 |
msgstr "Inläggs taxonomi visning"
|
210 |
|
211 |
+
#: breadcrumb_navxt_admin.php:468
|
212 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
213 |
msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
|
214 |
|
215 |
+
#: breadcrumb_navxt_admin.php:472
|
216 |
msgid "Post Taxonomy"
|
217 |
msgstr "Inäggs taxonomi"
|
218 |
|
219 |
+
#: breadcrumb_navxt_admin.php:476
|
220 |
+
#: breadcrumb_navxt_admin.php:503
|
221 |
msgid "Categories"
|
222 |
msgstr "Kategorier"
|
223 |
|
224 |
+
#: breadcrumb_navxt_admin.php:477
|
225 |
msgid "Dates"
|
226 |
msgstr "Datum"
|
227 |
|
228 |
+
#: breadcrumb_navxt_admin.php:478
|
229 |
+
#: breadcrumb_navxt_admin.php:515
|
230 |
msgid "Tags"
|
231 |
msgstr "Taggar"
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:479
|
234 |
+
msgid "Pages"
|
235 |
+
msgstr "Sidor"
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:490
|
238 |
msgid "The taxonomy which the breadcrumb trail will show."
|
239 |
msgstr "Den taxonomi som breadcrumb kommer att visa."
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:494
|
242 |
msgid "Page Prefix"
|
243 |
msgstr "Sido Prefix"
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:495
|
246 |
msgid "Page Suffix"
|
247 |
msgstr "Sido Suffix"
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:496
|
250 |
msgid "Page Anchor"
|
251 |
msgstr "Sido Länk"
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:496
|
254 |
msgid "The anchor template for page breadcrumbs."
|
255 |
msgstr "Länk mall för sido breadcrumbs."
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:497
|
258 |
msgid "Attachment Prefix"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:498
|
262 |
msgid "Attachment Suffix"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:506
|
266 |
msgid "Category Prefix"
|
267 |
msgstr "Kategori prefix"
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:506
|
270 |
msgid "Applied before the anchor on all category breadcrumbs."
|
271 |
msgstr "Tillämpad innan länken på alla kategori breadcrumb"
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:507
|
274 |
msgid "Category Suffix"
|
275 |
msgstr "Kategori Suffix"
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:507
|
278 |
msgid "Applied after the anchor on all category breadcrumbs."
|
279 |
msgstr "Tillämpad efter länken på alla kategori breadcrumb"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:508
|
282 |
msgid "Category Anchor"
|
283 |
msgstr "Kategori länk"
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:508
|
286 |
msgid "The anchor template for category breadcrumbs."
|
287 |
msgstr "länk mall för kategori breadcrumbs"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:509
|
290 |
msgid "Archive by Category Prefix"
|
291 |
msgstr "Arkiv av kategori prefix"
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:509
|
294 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
295 |
msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:510
|
298 |
msgid "Archive by Category Suffix"
|
299 |
msgstr "Arkiv av Kategori Suffix"
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:510
|
302 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
303 |
msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:518
|
306 |
msgid "Tag Prefix"
|
307 |
msgstr "Tagg Prefix"
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:518
|
310 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
311 |
msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:519
|
314 |
msgid "Tag Suffix"
|
315 |
msgstr "Tag Suffix"
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:519
|
318 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
319 |
msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:520
|
322 |
msgid "Tag Anchor"
|
323 |
msgstr "Tagg Länk"
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:520
|
326 |
msgid "The anchor template for tag breadcrumbs."
|
327 |
msgstr "Länk mall för tagg breadcrumbs."
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:521
|
330 |
msgid "Archive by Tag Prefix"
|
331 |
msgstr "Arkiv av Tagg Prefix"
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:521
|
334 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
335 |
msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:522
|
338 |
msgid "Archive by Tag Suffix"
|
339 |
msgstr "Arkiv av Tagg Suffix"
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:522
|
342 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
343 |
msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:550
|
346 |
#, php-format
|
347 |
msgid "%s Prefix"
|
348 |
msgstr "%s Prefix"
|
349 |
|
350 |
+
#: breadcrumb_navxt_admin.php:550
|
351 |
#, php-format
|
352 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
353 |
msgstr "Tillämpad innan länken på alla %s breadcrumbs."
|
354 |
|
355 |
+
#: breadcrumb_navxt_admin.php:551
|
356 |
#, php-format
|
357 |
msgid "%s Suffix"
|
358 |
msgstr "%s Suffix"
|
359 |
|
360 |
+
#: breadcrumb_navxt_admin.php:551
|
361 |
#, php-format
|
362 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
363 |
msgstr "Tillämpad efter länken på alla %s breadcrumbs."
|
364 |
|
365 |
+
#: breadcrumb_navxt_admin.php:552
|
366 |
#, php-format
|
367 |
msgid "%s Anchor"
|
368 |
msgstr "%s Länk"
|
369 |
|
370 |
+
#: breadcrumb_navxt_admin.php:552
|
371 |
#, php-format
|
372 |
msgid "The anchor template for %s breadcrumbs."
|
373 |
msgstr "Länk mall för %s breadcrumbs."
|
374 |
|
375 |
+
#: breadcrumb_navxt_admin.php:553
|
376 |
#, php-format
|
377 |
msgid "Archive by %s Prefix"
|
378 |
msgstr "Arkiv av %s Prefix"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:553
|
381 |
#, php-format
|
382 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
383 |
msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
|
384 |
|
385 |
+
#: breadcrumb_navxt_admin.php:554
|
386 |
#, php-format
|
387 |
msgid "Archive by %s Suffix"
|
388 |
msgstr "Arkiv av %s Suffix"
|
389 |
|
390 |
+
#: breadcrumb_navxt_admin.php:554
|
391 |
#, php-format
|
392 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
393 |
msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
|
394 |
|
395 |
+
#: breadcrumb_navxt_admin.php:563
|
396 |
msgid "Date Archives"
|
397 |
msgstr "Datum Arkiv"
|
398 |
|
399 |
+
#: breadcrumb_navxt_admin.php:566
|
400 |
+
msgid "Date Anchor"
|
401 |
+
msgstr "Datum länk"
|
402 |
+
|
403 |
+
#: breadcrumb_navxt_admin.php:566
|
404 |
+
msgid "The anchor template for date breadcrumbs."
|
405 |
+
msgstr "Länk mall för datum breadcrumbs."
|
406 |
+
|
407 |
+
#: breadcrumb_navxt_admin.php:567
|
408 |
msgid "Archive by Date Prefix"
|
409 |
msgstr "Arkiv av datum Prefix"
|
410 |
|
411 |
+
#: breadcrumb_navxt_admin.php:567
|
412 |
msgid "Applied before the anchor on all date breadcrumbs."
|
413 |
msgstr "Tillämpad innan länken på alla datum breadcrumbs."
|
414 |
|
415 |
+
#: breadcrumb_navxt_admin.php:568
|
416 |
+
#: breadcrumb_navxt_admin.php:578
|
417 |
msgid "Archive by Date Suffix"
|
418 |
msgstr "Arkiv av daum suffix"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:568
|
421 |
+
#: breadcrumb_navxt_admin.php:578
|
422 |
msgid "Applied after the anchor on all date breadcrumbs."
|
423 |
msgstr "Tillämpad efter länken på alla datum breadcrumbs."
|
424 |
|
425 |
+
#: breadcrumb_navxt_admin.php:573
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
426 |
msgid "Miscellaneous"
|
427 |
msgstr "Diverse"
|
428 |
|
429 |
+
#: breadcrumb_navxt_admin.php:576
|
430 |
msgid "Author Prefix"
|
431 |
msgstr "Författar Prefix"
|
432 |
|
433 |
+
#: breadcrumb_navxt_admin.php:577
|
434 |
msgid "Author Suffix"
|
435 |
msgstr "Författar Suffix"
|
436 |
|
437 |
+
#: breadcrumb_navxt_admin.php:579
|
438 |
msgid "Author Display Format"
|
439 |
msgstr "Författar visnings format"
|
440 |
|
441 |
+
#: breadcrumb_navxt_admin.php:579
|
442 |
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."
|
443 |
msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
|
444 |
|
445 |
+
#: breadcrumb_navxt_admin.php:580
|
446 |
msgid "Search Prefix"
|
447 |
msgstr "Sök Prefix"
|
448 |
|
449 |
+
#: breadcrumb_navxt_admin.php:581
|
450 |
msgid "Search Suffix"
|
451 |
msgstr "Sök Suffix"
|
452 |
|
453 |
+
#: breadcrumb_navxt_admin.php:582
|
454 |
msgid "Search Anchor"
|
455 |
msgstr "Sök Länk"
|
456 |
|
457 |
+
#: breadcrumb_navxt_admin.php:582
|
458 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
459 |
msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
|
460 |
|
461 |
+
#: breadcrumb_navxt_admin.php:583
|
462 |
msgid "404 Title"
|
463 |
msgstr "404 Titel"
|
464 |
|
465 |
+
#: breadcrumb_navxt_admin.php:584
|
466 |
msgid "404 Prefix"
|
467 |
msgstr "404 Prefix"
|
468 |
|
469 |
+
#: breadcrumb_navxt_admin.php:585
|
470 |
msgid "404 Suffix"
|
471 |
msgstr "404 Suffix"
|
472 |
|
473 |
+
#: breadcrumb_navxt_admin.php:590
|
474 |
msgid "Save Changes"
|
475 |
msgstr "Spara ändringar"
|
476 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
#: breadcrumb_navxt_class.php:149
|
478 |
msgid "Blog"
|
479 |
msgstr "Blogg"
|
525 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
526 |
msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
|
527 |
|
528 |
+
#: breadcrumb_navxt_class.php:500
|
529 |
msgid "Untagged"
|
530 |
msgstr "Otaggad"
|
531 |
|
532 |
+
#: breadcrumb_navxt_widget.php:24
|
533 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
534 |
+
msgstr "Lägger till breadcrumb till din sidebar"
|
535 |
+
|
536 |
+
#: breadcrumb_navxt_widget.php:66
|
537 |
+
msgid "Title:"
|
538 |
+
msgstr "Titel:"
|
539 |
+
|
540 |
+
#: breadcrumb_navxt_widget.php:71
|
541 |
+
msgid "Output trail as a list"
|
542 |
+
msgstr "Skriv ut breadcrumb som en lista"
|
543 |
+
|
544 |
+
#: breadcrumb_navxt_widget.php:73
|
545 |
+
msgid "Link the breadcrumbs"
|
546 |
+
msgstr "Länka Breadcrumb"
|
547 |
+
|
548 |
+
#: breadcrumb_navxt_widget.php:75
|
549 |
+
msgid "Reverse the order of the trail"
|
550 |
+
msgstr "Omvänd ordning i breadcrumb"
|
551 |
+
|
552 |
+
#: mtekk_admin_class.php:137
|
553 |
+
msgid "Settings"
|
554 |
+
msgstr "Inställningar"
|
555 |
+
|
556 |
+
#: mtekk_admin_class.php:259
|
557 |
+
msgid "Settings successfully imported from the uploaded file."
|
558 |
+
msgstr "Inställningarna importerades framgångsrikt från filen."
|
559 |
+
|
560 |
+
#: mtekk_admin_class.php:264
|
561 |
+
msgid "Importing settings from file failed."
|
562 |
+
msgstr "Importering av inställningar från fil misslyckades."
|
563 |
+
|
564 |
+
#: mtekk_admin_class.php:283
|
565 |
+
msgid "Settings successfully reset to the default values."
|
566 |
+
msgstr "Inställningarna återställdes till standardvärdena."
|
567 |
+
|
568 |
+
#: mtekk_admin_class.php:313
|
569 |
+
#, php-format
|
570 |
+
msgid "Get help with \"%s\""
|
571 |
+
msgstr "Få hjälp med \"%s\""
|
572 |
+
|
573 |
+
#: mtekk_admin_class.php:394
|
574 |
+
msgid "Import/Export/Reset Settings"
|
575 |
+
msgstr "Importera/Exportera/Återställ inställningar"
|
576 |
+
|
577 |
+
#: mtekk_admin_class.php:395
|
578 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
579 |
+
msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
|
580 |
+
|
581 |
+
#: mtekk_admin_class.php:398
|
582 |
+
msgid "Settings File"
|
583 |
+
msgstr "Inställnings fil"
|
584 |
+
|
585 |
+
#: mtekk_admin_class.php:401
|
586 |
+
msgid "Select a XML settings file to upload and import settings from."
|
587 |
+
msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
|
588 |
+
|
languages/breadcrumb_navxt.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt.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:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
|
8 |
"Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -14,800 +14,575 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
|
16 |
|
17 |
-
#:
|
18 |
-
|
19 |
-
|
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 |
-
#:
|
31 |
-
|
32 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:540
|
33 |
-
msgid "Settings"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
-
#:
|
38 |
-
|
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 |
-
#:
|
45 |
-
|
46 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:630
|
47 |
-
#, php-format
|
48 |
-
msgid "Get help with \"%s\""
|
49 |
msgstr ""
|
50 |
|
51 |
-
#:
|
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 |
-
#:
|
59 |
-
#: Studio\Breadcrumb
|
60 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:642
|
61 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
77 |
-
#:
|
78 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:753
|
79 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1386
|
80 |
msgid "Import"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
-
#:
|
85 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:753
|
86 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1387
|
87 |
msgid "Export"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#:
|
91 |
-
#:
|
92 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:753
|
93 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1388
|
94 |
msgid "Reset"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#:
|
98 |
-
|
99 |
-
|
|
|
|
|
100 |
msgid "General"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#:
|
104 |
-
#: Studio\Breadcrumb
|
105 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:816
|
106 |
msgid "Breadcrumb Separator"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
-
#: Studio\Breadcrumb
|
111 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:820
|
112 |
msgid "Placed in between each breadcrumb."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#:
|
116 |
-
#: Studio\Breadcrumb
|
117 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:825
|
118 |
msgid "Breadcrumb Max Title Length"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#:
|
122 |
-
#: Studio\Breadcrumb
|
123 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:833
|
124 |
msgid "Home Breadcrumb"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#:
|
128 |
-
#: Studio\Breadcrumb
|
129 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:838
|
130 |
msgid "Place the home breadcrumb in the trail."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#:
|
134 |
-
#: Studio\Breadcrumb
|
135 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:843
|
136 |
msgid "Home Title: "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#:
|
140 |
-
#: Studio\Breadcrumb
|
141 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:852
|
142 |
msgid "Blog Breadcrumb"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#:
|
146 |
-
#: Studio\Breadcrumb
|
147 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:857
|
148 |
msgid "Place the blog breadcrumb in the trail."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#:
|
152 |
-
#: Studio\Breadcrumb
|
153 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:863
|
154 |
msgid "Home Prefix"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
-
#: Studio\Breadcrumb
|
159 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:871
|
160 |
msgid "Home Suffix"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#:
|
164 |
-
#: Studio\Breadcrumb
|
165 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:879
|
166 |
msgid "Home Anchor"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#:
|
170 |
-
#: Studio\Breadcrumb
|
171 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:883
|
172 |
msgid "The anchor template for the home breadcrumb."
|
173 |
msgstr ""
|
174 |
|
175 |
-
#:
|
176 |
-
#: Studio\Breadcrumb
|
177 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:888
|
178 |
msgid "Blog Anchor"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#:
|
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 |
-
#:
|
188 |
-
#: Studio\Breadcrumb
|
189 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:898
|
190 |
msgid "Current Item"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
-
#: Studio\Breadcrumb
|
195 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:902
|
196 |
msgid "Link Current Item"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#:
|
200 |
-
#: Studio\Breadcrumb
|
201 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:907
|
202 |
msgid "Yes"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#:
|
206 |
-
#: Studio\Breadcrumb
|
207 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:913
|
208 |
msgid "Current Item Prefix"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#:
|
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 |
-
#:
|
218 |
-
#: Studio\Breadcrumb
|
219 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:922
|
220 |
msgid "Current Item Suffix"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#:
|
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 |
-
#:
|
230 |
-
#: Studio\Breadcrumb
|
231 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:931
|
232 |
msgid "Current Item Anchor"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#:
|
236 |
-
#: Studio\Breadcrumb
|
237 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:935
|
238 |
msgid "The anchor template for current item breadcrumbs."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
-
#: Studio\Breadcrumb
|
243 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:940
|
244 |
msgid "Paged Breadcrumb"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
260 |
-
#: Studio\Breadcrumb
|
261 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:952
|
262 |
msgid "Paged Prefix"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
-
#: Studio\Breadcrumb
|
267 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:960
|
268 |
msgid "Paged Suffix"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#:
|
272 |
-
#: Studio\Breadcrumb
|
273 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:969
|
274 |
msgid "Posts & Pages"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
-
#: Studio\Breadcrumb
|
279 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:973
|
280 |
msgid "Post Prefix"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
-
#: Studio\Breadcrumb
|
285 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:981
|
286 |
msgid "Post Suffix"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#:
|
290 |
-
#: Studio\Breadcrumb
|
291 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:989
|
292 |
msgid "Post Anchor"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
-
#: Studio\Breadcrumb
|
297 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:993
|
298 |
msgid "The anchor template for post breadcrumbs."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
-
#: Studio\Breadcrumb
|
303 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:998
|
304 |
msgid "Post Taxonomy Display"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#:
|
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 |
-
#:
|
314 |
-
#: Studio\Breadcrumb
|
315 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1009
|
316 |
msgid "Post Taxonomy"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#:
|
320 |
-
#:
|
321 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1014
|
322 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1091
|
323 |
msgid "Categories"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#:
|
327 |
-
#: Studio\Breadcrumb
|
328 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1019
|
329 |
msgid "Dates"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#:
|
333 |
-
#:
|
334 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1024
|
335 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1141
|
336 |
msgid "Tags"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#:
|
340 |
-
|
341 |
-
|
|
|
|
|
342 |
msgid "The taxonomy which the breadcrumb trail will show."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#:
|
346 |
-
#: Studio\Breadcrumb
|
347 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1049
|
348 |
msgid "Page Prefix"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#:
|
352 |
-
#: Studio\Breadcrumb
|
353 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1057
|
354 |
msgid "Page Suffix"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#:
|
358 |
-
#: Studio\Breadcrumb
|
359 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1065
|
360 |
msgid "Page Anchor"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#:
|
364 |
-
#: Studio\Breadcrumb
|
365 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1069
|
366 |
msgid "The anchor template for page breadcrumbs."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#:
|
370 |
-
#: Studio\Breadcrumb
|
371 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1074
|
372 |
msgid "Attachment Prefix"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#:
|
376 |
-
#: Studio\Breadcrumb
|
377 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1082
|
378 |
msgid "Attachment Suffix"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#:
|
382 |
-
#: Studio\Breadcrumb
|
383 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1095
|
384 |
msgid "Category Prefix"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#:
|
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 |
-
#:
|
394 |
-
#: Studio\Breadcrumb
|
395 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1104
|
396 |
msgid "Category Suffix"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#:
|
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 |
-
#:
|
406 |
-
#: Studio\Breadcrumb
|
407 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1113
|
408 |
msgid "Category Anchor"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#:
|
412 |
-
#: Studio\Breadcrumb
|
413 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1117
|
414 |
msgid "The anchor template for category breadcrumbs."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#:
|
418 |
-
#: Studio\Breadcrumb
|
419 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1122
|
420 |
msgid "Archive by Category Prefix"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
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 |
-
#:
|
430 |
-
#: Studio\Breadcrumb
|
431 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1131
|
432 |
msgid "Archive by Category Suffix"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#:
|
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 |
-
#:
|
442 |
-
#: Studio\Breadcrumb
|
443 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1145
|
444 |
msgid "Tag Prefix"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#:
|
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 |
-
#:
|
454 |
-
#: Studio\Breadcrumb
|
455 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1154
|
456 |
msgid "Tag Suffix"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#:
|
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 |
-
#:
|
466 |
-
#: Studio\Breadcrumb
|
467 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1163
|
468 |
msgid "Tag Anchor"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#:
|
472 |
-
#: Studio\Breadcrumb
|
473 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1167
|
474 |
msgid "The anchor template for tag breadcrumbs."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#:
|
478 |
-
#: Studio\Breadcrumb
|
479 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1172
|
480 |
msgid "Archive by Tag Prefix"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#:
|
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 |
-
#:
|
490 |
-
#: Studio\Breadcrumb
|
491 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1181
|
492 |
msgid "Archive by Tag Suffix"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#:
|
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 |
-
#:
|
502 |
-
#: Studio\Breadcrumb
|
503 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1203
|
504 |
#, php-format
|
505 |
msgid "%s Prefix"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#:
|
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 |
-
#:
|
516 |
-
#: Studio\Breadcrumb
|
517 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1212
|
518 |
#, php-format
|
519 |
msgid "%s Suffix"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#:
|
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 |
-
#:
|
530 |
-
#: Studio\Breadcrumb
|
531 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1221
|
532 |
#, php-format
|
533 |
msgid "%s Anchor"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#:
|
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 |
-
#:
|
544 |
-
#: Studio\Breadcrumb
|
545 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1230
|
546 |
#, php-format
|
547 |
msgid "Archive by %s Prefix"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#:
|
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 |
-
#:
|
558 |
-
#: Studio\Breadcrumb
|
559 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1239
|
560 |
#, php-format
|
561 |
msgid "Archive by %s Suffix"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#:
|
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 |
-
#:
|
572 |
-
#: Studio\Breadcrumb
|
573 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1253
|
574 |
msgid "Date Archives"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#:
|
578 |
-
|
579 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1257
|
580 |
-
msgid "Archive by Date Prefix"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#:
|
584 |
-
|
585 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1261
|
586 |
-
msgid "Applied before the anchor on all date breadcrumbs."
|
587 |
msgstr ""
|
588 |
|
589 |
-
#:
|
590 |
-
|
591 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1266
|
592 |
-
msgid "Archive by Date Suffix"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#:
|
596 |
-
|
597 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1270
|
598 |
-
msgid "Applied after the anchor on all date breadcrumbs."
|
599 |
msgstr ""
|
600 |
|
601 |
-
#:
|
602 |
-
#:
|
603 |
-
|
604 |
-
msgid "Date Anchor"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
-
#:
|
609 |
-
|
610 |
-
msgid "The anchor template for date breadcrumbs."
|
611 |
msgstr ""
|
612 |
|
613 |
-
#:
|
614 |
-
#: Studio\Breadcrumb
|
615 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1285
|
616 |
msgid "Miscellaneous"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#:
|
620 |
-
#: Studio\Breadcrumb
|
621 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1289
|
622 |
msgid "Author Prefix"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#:
|
626 |
-
#: Studio\Breadcrumb
|
627 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1297
|
628 |
msgid "Author Suffix"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#:
|
632 |
-
#: Studio\Breadcrumb
|
633 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1305
|
634 |
msgid "Author Display Format"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#:
|
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 |
-
#:
|
644 |
-
#: Studio\Breadcrumb
|
645 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1316
|
646 |
msgid "Search Prefix"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#:
|
650 |
-
#: Studio\Breadcrumb
|
651 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1324
|
652 |
msgid "Search Suffix"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#:
|
656 |
-
#: Studio\Breadcrumb
|
657 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1332
|
658 |
msgid "Search Anchor"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#:
|
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 |
-
#:
|
668 |
-
#: Studio\Breadcrumb
|
669 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1341
|
670 |
msgid "404 Title"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#:
|
674 |
-
#: Studio\Breadcrumb
|
675 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1349
|
676 |
msgid "404 Prefix"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#:
|
680 |
-
#: Studio\Breadcrumb
|
681 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1357
|
682 |
msgid "404 Suffix"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#:
|
686 |
-
#: Studio\Breadcrumb
|
687 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1366
|
688 |
msgid "Save Changes"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#:
|
692 |
-
|
693 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1372
|
694 |
-
msgid "Import/Export/Reset Settings"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#:
|
698 |
-
#:
|
699 |
-
#:
|
700 |
-
|
|
|
701 |
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
-
|
705 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1377
|
706 |
-
msgid "Settings File"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#:
|
710 |
-
|
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 |
-
#:
|
716 |
-
|
717 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1518
|
718 |
-
msgid "Importing settings from file failed."
|
719 |
msgstr ""
|
720 |
|
721 |
-
#:
|
722 |
-
|
723 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1528
|
724 |
-
msgid "The Breadcrumb NavXT settings were successfully imported from file."
|
725 |
msgstr ""
|
726 |
|
727 |
-
#:
|
728 |
-
|
729 |
-
#: NavXT\trunk/breadcrumb_navxt_admin.php:1538
|
730 |
-
msgid "The Breadcrumb NavXT settings were reset to the default values."
|
731 |
msgstr ""
|
732 |
|
733 |
-
#:
|
734 |
-
|
735 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:149
|
736 |
-
msgid "Blog"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#:
|
740 |
-
|
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 |
-
#:
|
749 |
-
|
750 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:168
|
751 |
-
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#:
|
755 |
-
|
756 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:209
|
757 |
-
msgid "404"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#:
|
761 |
-
|
762 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:212
|
763 |
-
msgid "Search results for '"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#:
|
767 |
-
|
768 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:223
|
769 |
-
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#:
|
773 |
-
|
774 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:226
|
775 |
-
msgid "Articles by: "
|
776 |
msgstr ""
|
777 |
|
778 |
-
#:
|
779 |
-
|
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 |
-
#:
|
785 |
-
|
786 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:239
|
787 |
-
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#:
|
791 |
-
|
792 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:242
|
793 |
-
msgid "Archive by category '"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#:
|
797 |
-
|
798 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:246
|
799 |
-
msgid "Archive by tag '"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#:
|
803 |
-
|
804 |
-
#: NavXT\trunk/breadcrumb_navxt_class.php:249
|
805 |
-
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#:
|
809 |
-
|
810 |
-
|
811 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
msgstr ""
|
813 |
|
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: 2010-05-09 01:08+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-05-08 20:10-0600\n"
|
7 |
"Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
|
8 |
"Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SearchPath-0: C:\\Users\\John\\Documents\\Aptana Studio\\Breadcrumb NavXT\\trunk\n"
|
16 |
|
17 |
+
#: breadcrumb_navxt_admin.php:30
|
18 |
+
#, php-format
|
19 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: breadcrumb_navxt_admin.php:110
|
23 |
+
msgid "Insufficient privileges to proceed."
|
|
|
|
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: breadcrumb_navxt_admin.php:135
|
27 |
+
#: breadcrumb_navxt_class.php:216
|
28 |
+
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
|
|
|
|
|
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: breadcrumb_navxt_admin.php:249
|
32 |
+
msgid "Settings successfully saved."
|
|
|
|
|
|
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: breadcrumb_navxt_admin.php:272
|
|
|
|
|
36 |
#, php-format
|
37 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: breadcrumb_navxt_admin.php:273
|
|
|
|
|
41 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: breadcrumb_navxt_admin.php:327
|
|
|
|
|
45 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the default values. Are you sure you want to continue?"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: breadcrumb_navxt_admin.php:330
|
|
|
|
|
49 |
msgid "All of your current Breadcrumb NavXT settings will be overwritten with the imported values. Are you sure you want to continue?"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: breadcrumb_navxt_admin.php:381
|
53 |
+
#: mtekk_admin_class.php:403
|
|
|
|
|
54 |
msgid "Import"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:381
|
58 |
+
#: mtekk_admin_class.php:404
|
|
|
|
|
59 |
msgid "Export"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: breadcrumb_navxt_admin.php:381
|
63 |
+
#: mtekk_admin_class.php:405
|
|
|
|
|
64 |
msgid "Reset"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: breadcrumb_navxt_admin.php:405
|
68 |
+
msgid "Breadcrumb NavXT Settings"
|
69 |
+
msgstr ""
|
70 |
+
|
71 |
+
#: breadcrumb_navxt_admin.php:413
|
72 |
msgid "General"
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: breadcrumb_navxt_admin.php:416
|
|
|
|
|
76 |
msgid "Breadcrumb Separator"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: breadcrumb_navxt_admin.php:416
|
|
|
|
|
80 |
msgid "Placed in between each breadcrumb."
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: breadcrumb_navxt_admin.php:417
|
|
|
|
|
84 |
msgid "Breadcrumb Max Title Length"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: breadcrumb_navxt_admin.php:421
|
|
|
|
|
88 |
msgid "Home Breadcrumb"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: breadcrumb_navxt_admin.php:426
|
|
|
|
|
92 |
msgid "Place the home breadcrumb in the trail."
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: breadcrumb_navxt_admin.php:431
|
|
|
|
|
96 |
msgid "Home Title: "
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: breadcrumb_navxt_admin.php:439
|
|
|
|
|
100 |
msgid "Blog Breadcrumb"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: breadcrumb_navxt_admin.php:439
|
|
|
|
|
104 |
msgid "Place the blog breadcrumb in the trail."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: breadcrumb_navxt_admin.php:440
|
|
|
|
|
108 |
msgid "Home Prefix"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: breadcrumb_navxt_admin.php:441
|
|
|
|
|
112 |
msgid "Home Suffix"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: breadcrumb_navxt_admin.php:442
|
|
|
|
|
116 |
msgid "Home Anchor"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: breadcrumb_navxt_admin.php:442
|
|
|
|
|
120 |
msgid "The anchor template for the home breadcrumb."
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: breadcrumb_navxt_admin.php:443
|
|
|
|
|
124 |
msgid "Blog Anchor"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: breadcrumb_navxt_admin.php:443
|
|
|
|
|
128 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: breadcrumb_navxt_admin.php:448
|
|
|
|
|
132 |
msgid "Current Item"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: breadcrumb_navxt_admin.php:451
|
|
|
|
|
136 |
msgid "Link Current Item"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: breadcrumb_navxt_admin.php:451
|
|
|
|
|
140 |
msgid "Yes"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: breadcrumb_navxt_admin.php:452
|
|
|
|
|
144 |
msgid "Current Item Prefix"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: breadcrumb_navxt_admin.php:452
|
|
|
|
|
148 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: breadcrumb_navxt_admin.php:453
|
|
|
|
|
152 |
msgid "Current Item Suffix"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: breadcrumb_navxt_admin.php:453
|
|
|
|
|
156 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: breadcrumb_navxt_admin.php:454
|
|
|
|
|
160 |
msgid "Current Item Anchor"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: breadcrumb_navxt_admin.php:454
|
|
|
|
|
164 |
msgid "The anchor template for current item breadcrumbs."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: breadcrumb_navxt_admin.php:455
|
|
|
|
|
168 |
msgid "Paged Breadcrumb"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: breadcrumb_navxt_admin.php:455
|
|
|
|
|
172 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: breadcrumb_navxt_admin.php:455
|
|
|
|
|
176 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: breadcrumb_navxt_admin.php:456
|
|
|
|
|
180 |
msgid "Paged Prefix"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: breadcrumb_navxt_admin.php:457
|
|
|
|
|
184 |
msgid "Paged Suffix"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: breadcrumb_navxt_admin.php:462
|
|
|
|
|
188 |
msgid "Posts & Pages"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: breadcrumb_navxt_admin.php:465
|
|
|
|
|
192 |
msgid "Post Prefix"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: breadcrumb_navxt_admin.php:466
|
|
|
|
|
196 |
msgid "Post Suffix"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: breadcrumb_navxt_admin.php:467
|
|
|
|
|
200 |
msgid "Post Anchor"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: breadcrumb_navxt_admin.php:467
|
|
|
|
|
204 |
msgid "The anchor template for post breadcrumbs."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: breadcrumb_navxt_admin.php:468
|
|
|
|
|
208 |
msgid "Post Taxonomy Display"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: breadcrumb_navxt_admin.php:468
|
|
|
|
|
212 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: breadcrumb_navxt_admin.php:472
|
|
|
|
|
216 |
msgid "Post Taxonomy"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: breadcrumb_navxt_admin.php:476
|
220 |
+
#: breadcrumb_navxt_admin.php:503
|
|
|
|
|
221 |
msgid "Categories"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: breadcrumb_navxt_admin.php:477
|
|
|
|
|
225 |
msgid "Dates"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: breadcrumb_navxt_admin.php:478
|
229 |
+
#: breadcrumb_navxt_admin.php:515
|
|
|
|
|
230 |
msgid "Tags"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:479
|
234 |
+
msgid "Pages"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:490
|
238 |
msgid "The taxonomy which the breadcrumb trail will show."
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:494
|
|
|
|
|
242 |
msgid "Page Prefix"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:495
|
|
|
|
|
246 |
msgid "Page Suffix"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:496
|
|
|
|
|
250 |
msgid "Page Anchor"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:496
|
|
|
|
|
254 |
msgid "The anchor template for page breadcrumbs."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:497
|
|
|
|
|
258 |
msgid "Attachment Prefix"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:498
|
|
|
|
|
262 |
msgid "Attachment Suffix"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:506
|
|
|
|
|
266 |
msgid "Category Prefix"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:506
|
|
|
|
|
270 |
msgid "Applied before the anchor on all category breadcrumbs."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:507
|
|
|
|
|
274 |
msgid "Category Suffix"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:507
|
|
|
|
|
278 |
msgid "Applied after the anchor on all category breadcrumbs."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:508
|
|
|
|
|
282 |
msgid "Category Anchor"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:508
|
|
|
|
|
286 |
msgid "The anchor template for category breadcrumbs."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:509
|
|
|
|
|
290 |
msgid "Archive by Category Prefix"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:509
|
|
|
|
|
294 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:510
|
|
|
|
|
298 |
msgid "Archive by Category Suffix"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:510
|
|
|
|
|
302 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:518
|
|
|
|
|
306 |
msgid "Tag Prefix"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:518
|
|
|
|
|
310 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:519
|
|
|
|
|
314 |
msgid "Tag Suffix"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:519
|
|
|
|
|
318 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:520
|
|
|
|
|
322 |
msgid "Tag Anchor"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:520
|
|
|
|
|
326 |
msgid "The anchor template for tag breadcrumbs."
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:521
|
|
|
|
|
330 |
msgid "Archive by Tag Prefix"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:521
|
|
|
|
|
334 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:522
|
|
|
|
|
338 |
msgid "Archive by Tag Suffix"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:522
|
|
|
|
|
342 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:550
|
|
|
|
|
346 |
#, php-format
|
347 |
msgid "%s Prefix"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: breadcrumb_navxt_admin.php:550
|
|
|
|
|
351 |
#, php-format
|
352 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: breadcrumb_navxt_admin.php:551
|
|
|
|
|
356 |
#, php-format
|
357 |
msgid "%s Suffix"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: breadcrumb_navxt_admin.php:551
|
|
|
|
|
361 |
#, php-format
|
362 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: breadcrumb_navxt_admin.php:552
|
|
|
|
|
366 |
#, php-format
|
367 |
msgid "%s Anchor"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: breadcrumb_navxt_admin.php:552
|
|
|
|
|
371 |
#, php-format
|
372 |
msgid "The anchor template for %s breadcrumbs."
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: breadcrumb_navxt_admin.php:553
|
|
|
|
|
376 |
#, php-format
|
377 |
msgid "Archive by %s Prefix"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:553
|
|
|
|
|
381 |
#, php-format
|
382 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: breadcrumb_navxt_admin.php:554
|
|
|
|
|
386 |
#, php-format
|
387 |
msgid "Archive by %s Suffix"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: breadcrumb_navxt_admin.php:554
|
|
|
|
|
391 |
#, php-format
|
392 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: breadcrumb_navxt_admin.php:563
|
|
|
|
|
396 |
msgid "Date Archives"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: breadcrumb_navxt_admin.php:566
|
400 |
+
msgid "Date Anchor"
|
|
|
|
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: breadcrumb_navxt_admin.php:566
|
404 |
+
msgid "The anchor template for date breadcrumbs."
|
|
|
|
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: breadcrumb_navxt_admin.php:567
|
408 |
+
msgid "Archive by Date Prefix"
|
|
|
|
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: breadcrumb_navxt_admin.php:567
|
412 |
+
msgid "Applied before the anchor on all date breadcrumbs."
|
|
|
|
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: breadcrumb_navxt_admin.php:568
|
416 |
+
#: breadcrumb_navxt_admin.php:578
|
417 |
+
msgid "Archive by Date Suffix"
|
|
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:568
|
421 |
+
#: breadcrumb_navxt_admin.php:578
|
422 |
+
msgid "Applied after the anchor on all date breadcrumbs."
|
|
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: breadcrumb_navxt_admin.php:573
|
|
|
|
|
426 |
msgid "Miscellaneous"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: breadcrumb_navxt_admin.php:576
|
|
|
|
|
430 |
msgid "Author Prefix"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: breadcrumb_navxt_admin.php:577
|
|
|
|
|
434 |
msgid "Author Suffix"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: breadcrumb_navxt_admin.php:579
|
|
|
|
|
438 |
msgid "Author Display Format"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: breadcrumb_navxt_admin.php:579
|
|
|
|
|
442 |
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."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: breadcrumb_navxt_admin.php:580
|
|
|
|
|
446 |
msgid "Search Prefix"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: breadcrumb_navxt_admin.php:581
|
|
|
|
|
450 |
msgid "Search Suffix"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: breadcrumb_navxt_admin.php:582
|
|
|
|
|
454 |
msgid "Search Anchor"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: breadcrumb_navxt_admin.php:582
|
|
|
|
|
458 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: breadcrumb_navxt_admin.php:583
|
|
|
|
|
462 |
msgid "404 Title"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: breadcrumb_navxt_admin.php:584
|
|
|
|
|
466 |
msgid "404 Prefix"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: breadcrumb_navxt_admin.php:585
|
|
|
|
|
470 |
msgid "404 Suffix"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: breadcrumb_navxt_admin.php:590
|
|
|
|
|
474 |
msgid "Save Changes"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: breadcrumb_navxt_class.php:149
|
478 |
+
msgid "Blog"
|
|
|
|
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: breadcrumb_navxt_class.php:151
|
482 |
+
#: breadcrumb_navxt_class.php:155
|
483 |
+
#: breadcrumb_navxt_class.php:179
|
484 |
+
#: breadcrumb_navxt_class.php:193
|
485 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: breadcrumb_navxt_class.php:168
|
489 |
+
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
|
|
|
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: breadcrumb_navxt_class.php:209
|
493 |
+
msgid "404"
|
|
|
|
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: breadcrumb_navxt_class.php:212
|
497 |
+
msgid "Search results for '"
|
|
|
|
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: breadcrumb_navxt_class.php:223
|
501 |
+
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
|
|
|
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: breadcrumb_navxt_class.php:226
|
505 |
+
msgid "Articles by: "
|
|
|
|
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: breadcrumb_navxt_class.php:230
|
509 |
+
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
|
|
|
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: breadcrumb_navxt_class.php:239
|
513 |
+
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
|
|
|
|
|
|
|
|
|
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: breadcrumb_navxt_class.php:242
|
517 |
+
msgid "Archive by category '"
|
|
|
|
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: breadcrumb_navxt_class.php:246
|
521 |
+
msgid "Archive by tag '"
|
|
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: breadcrumb_navxt_class.php:249
|
525 |
+
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
|
|
|
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: breadcrumb_navxt_class.php:500
|
529 |
+
msgid "Untagged"
|
|
|
|
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: breadcrumb_navxt_widget.php:24
|
533 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
|
|
|
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: breadcrumb_navxt_widget.php:66
|
537 |
+
msgid "Title:"
|
|
|
|
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: breadcrumb_navxt_widget.php:71
|
541 |
+
msgid "Output trail as a list"
|
|
|
|
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: breadcrumb_navxt_widget.php:73
|
545 |
+
msgid "Link the breadcrumbs"
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: breadcrumb_navxt_widget.php:75
|
549 |
+
msgid "Reverse the order of the trail"
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: mtekk_admin_class.php:137
|
553 |
+
msgid "Settings"
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: mtekk_admin_class.php:259
|
557 |
+
msgid "Settings successfully imported from the uploaded file."
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: mtekk_admin_class.php:264
|
561 |
+
msgid "Importing settings from file failed."
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
+
#: mtekk_admin_class.php:283
|
565 |
+
msgid "Settings successfully reset to the default values."
|
566 |
+
msgstr ""
|
567 |
+
|
568 |
+
#: mtekk_admin_class.php:313
|
569 |
+
#, php-format
|
570 |
+
msgid "Get help with \"%s\""
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: mtekk_admin_class.php:394
|
574 |
+
msgid "Import/Export/Reset Settings"
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: mtekk_admin_class.php:395
|
578 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: mtekk_admin_class.php:398
|
582 |
+
msgid "Settings File"
|
583 |
+
msgstr ""
|
584 |
+
|
585 |
+
#: mtekk_admin_class.php:401
|
586 |
+
msgid "Select a XML settings file to upload and import settings from."
|
587 |
msgstr ""
|
588 |
|
mtekk_admin_class.php
ADDED
@@ -0,0 +1,537 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Copyright 2009-2010 John Havlik (email : mtekkmonkey@gmail.com)
|
4 |
+
|
5 |
+
This program is free software; you can redistribute it and/or modify
|
6 |
+
it under the terms of the GNU General Public License as published by
|
7 |
+
the Free Software Foundation; either version 2 of the License, or
|
8 |
+
(at your option) any later version.
|
9 |
+
|
10 |
+
This program is distributed in the hope that it will be useful,
|
11 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
+
GNU General Public License for more details.
|
14 |
+
|
15 |
+
You should have received a copy of the GNU General Public License
|
16 |
+
along with this program; if not, write to the Free Software
|
17 |
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
18 |
+
*/
|
19 |
+
abstract class mtekk_admin
|
20 |
+
{
|
21 |
+
protected $version;
|
22 |
+
protected $full_name;
|
23 |
+
protected $short_name;
|
24 |
+
protected $plugin_basename;
|
25 |
+
protected $access_level = 'manage_options';
|
26 |
+
protected $identifier;
|
27 |
+
protected $unique_prefix;
|
28 |
+
protected $opt = array();
|
29 |
+
protected $message;
|
30 |
+
/**
|
31 |
+
* wether or not this administration page has contextual help
|
32 |
+
*
|
33 |
+
* @var bool
|
34 |
+
*/
|
35 |
+
protected $_has_contextual_help = false;
|
36 |
+
function __construct()
|
37 |
+
{
|
38 |
+
//Admin Init Hook
|
39 |
+
add_action('admin_init', array($this, 'init'));
|
40 |
+
//WordPress Admin interface hook
|
41 |
+
add_action('admin_menu', array($this, 'add_page'));
|
42 |
+
//Installation Script hook
|
43 |
+
add_action('activate_' . $this->plugin_basename, array($this, 'install'));
|
44 |
+
//Initilizes l10n domain
|
45 |
+
$this->local();
|
46 |
+
}
|
47 |
+
function admin_url()
|
48 |
+
{
|
49 |
+
return admin_url('options-general.php?page=' .$this->identifier);
|
50 |
+
}
|
51 |
+
function init()
|
52 |
+
{
|
53 |
+
//Admin Options update hook
|
54 |
+
if(isset($_POST[$this->unique_prefix . '_admin_options']))
|
55 |
+
{
|
56 |
+
//Temporarily add update function on init if form has been submitted
|
57 |
+
$this->opts_update();
|
58 |
+
}
|
59 |
+
//Admin Options reset hook
|
60 |
+
if(isset($_POST[$this->unique_prefix . '_admin_reset']))
|
61 |
+
{
|
62 |
+
//Run the reset function on init if reset form has been submitted
|
63 |
+
$this->opts_reset();
|
64 |
+
}
|
65 |
+
//Admin Options export hook
|
66 |
+
else if(isset($_POST[$this->unique_prefix . '_admin_export']))
|
67 |
+
{
|
68 |
+
//Run the export function on init if export form has been submitted
|
69 |
+
$this->opts_export();
|
70 |
+
}
|
71 |
+
//Admin Options import hook
|
72 |
+
else if(isset($_FILES[$this->unique_prefix . '_admin_import_file']) && !empty($_FILES[$this->unique_prefix . '_admin_import_file']['name']))
|
73 |
+
{
|
74 |
+
//Run the import function on init if import form has been submitted
|
75 |
+
$this->opts_import();
|
76 |
+
}
|
77 |
+
//Add in the nice "settings" link to the plugins page
|
78 |
+
add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
|
79 |
+
//Register options
|
80 |
+
register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
|
81 |
+
}
|
82 |
+
/**
|
83 |
+
* add_page
|
84 |
+
*
|
85 |
+
* Adds the adminpage the menue and the nice little settings link
|
86 |
+
*
|
87 |
+
*/
|
88 |
+
function add_page()
|
89 |
+
{
|
90 |
+
//Add the submenu page to "settings" menu
|
91 |
+
$hookname = add_submenu_page('options-general.php', __($this->full_name, $this->identifier), $this->short_name, $this->access_level, $this->identifier, array($this, 'admin_page'));
|
92 |
+
// check capability of user to manage options (access control)
|
93 |
+
if(current_user_can($this->access_level))
|
94 |
+
{
|
95 |
+
//Register admin_head-$hookname callback
|
96 |
+
add_action('admin_head-' . $hookname, array($this, 'admin_head'));
|
97 |
+
//Register Help Output
|
98 |
+
add_action('contextual_help', array($this, 'contextual_help'), 10, 2);
|
99 |
+
}
|
100 |
+
}
|
101 |
+
/**
|
102 |
+
* local
|
103 |
+
*
|
104 |
+
* Initilizes localization textdomain for translations (if applicable)
|
105 |
+
*
|
106 |
+
* Will conditionally load the textdomain for translations. This is here for
|
107 |
+
* plugins that span multiple files and have localization in more than one file
|
108 |
+
*
|
109 |
+
* @return void
|
110 |
+
*/
|
111 |
+
function local()
|
112 |
+
{
|
113 |
+
global $l10n;
|
114 |
+
// the global and the check might become obsolete in
|
115 |
+
// further wordpress versions
|
116 |
+
// @see https://core.trac.wordpress.org/ticket/10527
|
117 |
+
if(!isset($l10n[$this->identifier]))
|
118 |
+
{
|
119 |
+
load_plugin_textdomain($this->identifier, false, $this->identifier . '/languages');
|
120 |
+
}
|
121 |
+
}
|
122 |
+
/**
|
123 |
+
* filter_plugin_actions
|
124 |
+
*
|
125 |
+
* Places in a link to the settings page in the plugins listing entry
|
126 |
+
*
|
127 |
+
* @param array $links An array of links that are output in the listing
|
128 |
+
* @param string $file The file that is currently in processing
|
129 |
+
* @return array Array of links that are output in the listing.
|
130 |
+
*/
|
131 |
+
function filter_plugin_actions($links, $file)
|
132 |
+
{
|
133 |
+
//Make sure we are adding only for the current plugin
|
134 |
+
if($file == $this->plugin_basename)
|
135 |
+
{
|
136 |
+
//Add our link to the end of the array to better integrate into the WP 2.8 plugins page
|
137 |
+
$links[] = '<a href="' . $this->admin_url() . '">' . __('Settings') . '</a>';
|
138 |
+
}
|
139 |
+
return $links;
|
140 |
+
}
|
141 |
+
/**
|
142 |
+
* uninstall
|
143 |
+
*
|
144 |
+
* This removes database settings upon deletion of the plugin from WordPress
|
145 |
+
*/
|
146 |
+
function uninstall()
|
147 |
+
{
|
148 |
+
//Remove the option array setting
|
149 |
+
$this->delete_option($this->unique_prefix . '_options');
|
150 |
+
//Remove the version setting
|
151 |
+
$this->delete_option($this->unique_prefix . '_version');
|
152 |
+
}
|
153 |
+
/**
|
154 |
+
* opts_update
|
155 |
+
*
|
156 |
+
* Function prototype to prevent errors
|
157 |
+
*/
|
158 |
+
function opts_update()
|
159 |
+
{
|
160 |
+
}
|
161 |
+
/**
|
162 |
+
* opts_export
|
163 |
+
*
|
164 |
+
* Exports a XML options document
|
165 |
+
*/
|
166 |
+
function opts_export()
|
167 |
+
{
|
168 |
+
//Do a nonce check, prevent malicious link/form problems
|
169 |
+
check_admin_referer($this->unique_prefix . '_admin_import_export');
|
170 |
+
//Update our internal settings
|
171 |
+
$this->opt = get_option($this->unique_prefix . '_options');
|
172 |
+
//Create a DOM document
|
173 |
+
$dom = new DOMDocument('1.0', 'UTF-8');
|
174 |
+
//Adds in newlines and tabs to the output
|
175 |
+
$dom->formatOutput = true;
|
176 |
+
//We're not using a DTD therefore we need to specify it as a standalone document
|
177 |
+
$dom->xmlStandalone = true;
|
178 |
+
//Add an element called options
|
179 |
+
$node = $dom->createElement('options');
|
180 |
+
$parnode = $dom->appendChild($node);
|
181 |
+
//Add a child element named plugin
|
182 |
+
$node = $dom->createElement('plugin');
|
183 |
+
$plugnode = $parnode->appendChild($node);
|
184 |
+
//Add some attributes that identify the plugin and version for the options export
|
185 |
+
$plugnode->setAttribute('name', $this->short_name);
|
186 |
+
$plugnode->setAttribute('version', $this->version);
|
187 |
+
//Change our headder to text/xml for direct save
|
188 |
+
header('Cache-Control: public');
|
189 |
+
//The next two will cause good browsers to download instead of displaying the file
|
190 |
+
header('Content-Description: File Transfer');
|
191 |
+
header('Content-disposition: attachemnt; filename=' . $this->unique_prefix . '_settings.xml');
|
192 |
+
header('Content-Type: text/xml');
|
193 |
+
//Loop through the options array
|
194 |
+
foreach($this->opt as $key=>$option)
|
195 |
+
{
|
196 |
+
//Add a option tag under the options tag, store the option value
|
197 |
+
$node = $dom->createElement('option', htmlentities($option, ENT_COMPAT, 'UTF-8'));
|
198 |
+
$newnode = $plugnode->appendChild($node);
|
199 |
+
//Change the tag's name to that of the stored option
|
200 |
+
$newnode->setAttribute('name', $key);
|
201 |
+
}
|
202 |
+
//Prepair the XML for output
|
203 |
+
$output = $dom->saveXML();
|
204 |
+
//Let the browser know how long the file is
|
205 |
+
header('Content-Length: ' . strlen($output)); // binary length
|
206 |
+
//Output the file
|
207 |
+
echo $output;
|
208 |
+
//Prevent WordPress from continuing on
|
209 |
+
die();
|
210 |
+
}
|
211 |
+
/**
|
212 |
+
* opts_import
|
213 |
+
*
|
214 |
+
* Imports a XML options document
|
215 |
+
*/
|
216 |
+
function opts_import()
|
217 |
+
{
|
218 |
+
//Our quick and dirty error supressor
|
219 |
+
function error($errno, $errstr, $eerfile, $errline)
|
220 |
+
{
|
221 |
+
return true;
|
222 |
+
}
|
223 |
+
//Do a nonce check, prevent malicious link/form problems
|
224 |
+
check_admin_referer($this->unique_prefix . '_admin_import_export');
|
225 |
+
//Create a DOM document
|
226 |
+
$dom = new DOMDocument('1.0', 'UTF-8');
|
227 |
+
//We want to catch errors ourselves
|
228 |
+
set_error_handler('error');
|
229 |
+
//Load the user uploaded file, handle failure gracefully
|
230 |
+
if($dom->load($_FILES[$this->unique_prefix . 'admin_import_file']['tmp_name']))
|
231 |
+
{
|
232 |
+
//Have to use an xpath query otherwise we run into problems
|
233 |
+
$xpath = new DOMXPath($dom);
|
234 |
+
$option_sets = $xpath->query('plugin');
|
235 |
+
//Loop through all of the xpath query results
|
236 |
+
foreach($option_sets as $options)
|
237 |
+
{
|
238 |
+
//We only want to import options for only this plugin
|
239 |
+
if($options->getAttribute('name') === $this->short_name)
|
240 |
+
{
|
241 |
+
//Do a quick version check
|
242 |
+
list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
|
243 |
+
list($major, $minor, $release) = explode('.', $options->getAttribute('version'));
|
244 |
+
//We don't support using newer versioned option files in older releases
|
245 |
+
if($plug_major == $major && $plug_minor >= $minor)
|
246 |
+
{
|
247 |
+
//Loop around all of the options
|
248 |
+
foreach($options->getelementsByTagName('option') as $child)
|
249 |
+
{
|
250 |
+
//Place the option into the option array, DOMDocument decodes html entities for us
|
251 |
+
$this->opt[$child->getAttribute('name')] = $child->nodeValue;
|
252 |
+
}
|
253 |
+
}
|
254 |
+
}
|
255 |
+
}
|
256 |
+
//Commit the loaded options to the database
|
257 |
+
$this->update_option($this->unique_prefix . '_options', $this->opt);
|
258 |
+
//Everything was successful, let the user know
|
259 |
+
$this->message['updated fade'][] = __('Settings successfully imported from the uploaded file.', $this->identifier);
|
260 |
+
}
|
261 |
+
else
|
262 |
+
{
|
263 |
+
//Throw an error since we could not load the file for various reasons
|
264 |
+
$this->message['error'][] = __('Importing settings from file failed.', $this->identifier);
|
265 |
+
}
|
266 |
+
//Reset to the default error handler after we're done
|
267 |
+
restore_error_handler();
|
268 |
+
//Output any messages that there may be
|
269 |
+
add_action('admin_notices', array($this, 'message'));
|
270 |
+
}
|
271 |
+
/**
|
272 |
+
* opts_reset
|
273 |
+
*
|
274 |
+
* Resets the database settings array to the default set in opt
|
275 |
+
*/
|
276 |
+
function opts_reset()
|
277 |
+
{
|
278 |
+
//Do a nonce check, prevent malicious link/form problems
|
279 |
+
check_admin_referer($this->unique_prefix . '_admin_import_export');
|
280 |
+
//Only needs this one line, will load in the hard coded default option values
|
281 |
+
$this->update_option($this->unique_prefix . '_options', $this->opt);
|
282 |
+
//Reset successful, let the user know
|
283 |
+
$this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier);
|
284 |
+
add_action('admin_notices', array($this, 'message'));
|
285 |
+
}
|
286 |
+
/**
|
287 |
+
* contextual_help action hook function
|
288 |
+
*
|
289 |
+
* @param string $contextual_help
|
290 |
+
* @param string $screen
|
291 |
+
* @return string
|
292 |
+
*/
|
293 |
+
function contextual_help($contextual_help, $screen)
|
294 |
+
{
|
295 |
+
//Add contextual help on current screen, keep compatibility with 2.8, 2.9 and 3.0
|
296 |
+
if($screen->base == 'settings_page_' . $this->identifier || $screen == 'settings_page_' . $this->identifier)
|
297 |
+
{
|
298 |
+
$contextual_help = $this->_get_contextual_help();
|
299 |
+
$this->_has_contextual_help = true;
|
300 |
+
}
|
301 |
+
return $contextual_help;
|
302 |
+
}
|
303 |
+
/**
|
304 |
+
* get contextual help
|
305 |
+
*
|
306 |
+
* @return string
|
307 |
+
*/
|
308 |
+
protected function _get_contextual_help()
|
309 |
+
{
|
310 |
+
$t = $this->_get_help_text();
|
311 |
+
$t = sprintf('<div class="metabox-prefs">%s</div>', $t);
|
312 |
+
$title = __($this->full_name, $this->identifier);
|
313 |
+
$t = sprintf('<h5>%s</h5>%s', sprintf(__('Get help with "%s"'), $title), $t);
|
314 |
+
return $t;
|
315 |
+
}
|
316 |
+
/**
|
317 |
+
* message
|
318 |
+
*
|
319 |
+
* Prints to screen all of the messages stored in the message member variable
|
320 |
+
*/
|
321 |
+
function message()
|
322 |
+
{
|
323 |
+
//Loop through our message classes
|
324 |
+
foreach($this->message as $key => $class)
|
325 |
+
{
|
326 |
+
//Loop through the messages in the current class
|
327 |
+
foreach($class as $message)
|
328 |
+
{
|
329 |
+
printf('<div class="%s"><p>%s</p></div>', $key, $message);
|
330 |
+
}
|
331 |
+
}
|
332 |
+
}
|
333 |
+
/**
|
334 |
+
* install
|
335 |
+
*
|
336 |
+
* Function prototype to prevent errors
|
337 |
+
*/
|
338 |
+
function install()
|
339 |
+
{
|
340 |
+
|
341 |
+
}
|
342 |
+
/**
|
343 |
+
* admin_head
|
344 |
+
*
|
345 |
+
* Function prototype to prevent errors
|
346 |
+
*/
|
347 |
+
function admin_head()
|
348 |
+
{
|
349 |
+
|
350 |
+
}
|
351 |
+
/**
|
352 |
+
* admin_page
|
353 |
+
*
|
354 |
+
* Function prototype to prevent errors
|
355 |
+
*/
|
356 |
+
function admin_page()
|
357 |
+
{
|
358 |
+
|
359 |
+
}
|
360 |
+
/**
|
361 |
+
* get help text
|
362 |
+
*
|
363 |
+
* Function prototype to prevent errors
|
364 |
+
*/
|
365 |
+
protected function _get_help_text()
|
366 |
+
{
|
367 |
+
|
368 |
+
}
|
369 |
+
/**
|
370 |
+
* get_valid_id
|
371 |
+
*
|
372 |
+
* Returns a valid xHTML element ID
|
373 |
+
*
|
374 |
+
* @param object $option
|
375 |
+
* @return
|
376 |
+
*/
|
377 |
+
function get_valid_id($option)
|
378 |
+
{
|
379 |
+
if(is_numeric($option[0]))
|
380 |
+
{
|
381 |
+
return 'p' . $option;
|
382 |
+
}
|
383 |
+
else
|
384 |
+
{
|
385 |
+
return $option;
|
386 |
+
}
|
387 |
+
}
|
388 |
+
function import_form()
|
389 |
+
{
|
390 |
+
printf('<div id="%s_import_export_relocate">', $this->unique_prefix);
|
391 |
+
printf('<form action="options-general.php?page=%s" method="post" enctype="multipart/form-data" id="%s_admin_upload">', $this->identifier, $this->unique_prefix);
|
392 |
+
wp_nonce_field($this->unique_prefix . '_admin_import_export');
|
393 |
+
printf('<fieldset id="import_export" class="%s_options">', $this->unique_prefix);
|
394 |
+
echo '<h3>' . __('Import/Export/Reset Settings', $this->identifier) . '</h3>';
|
395 |
+
echo '<p>' . __('Import settings from a XML file, export the current settings to a XML file, or reset to the default settings.', $this->identifier) . '</p>';
|
396 |
+
echo '<table class="form-table"><tr valign="top"><th scope="row">';
|
397 |
+
printf('<label for="%s_admin_import_file">', $this->unique_prefix);
|
398 |
+
_e('Settings File', $this->identifier);
|
399 |
+
echo '</label></th><td>';
|
400 |
+
printf('<input type="file" name="%s_admin_import_file" id="%s_admin_import_file" size="32" /><br /><span class="setting-description">', $this->unique_prefix, $this->unique_prefix);
|
401 |
+
_e('Select a XML settings file to upload and import settings from.', 'breadcrumb_navxt');
|
402 |
+
echo '</span></td></tr></table><p class="submit">';
|
403 |
+
printf('<input type="submit" class="button" name="%s_admin_import" value="' . __('Import', $this->identifier) . '" onclick="return %s_confirm(\'import\')" />', $this->unique_prefix, $this->unique_prefix);
|
404 |
+
printf('<input type="submit" class="button" name="%s_admin_export" value="' . __('Export', $this->identifier) . '" />', $this->unique_prefix);
|
405 |
+
printf('<input type="submit" class="button" name="%s_admin_reset" value="' . __('Reset', $this->identifier) . '" onclick="return %s_confirm(\'reset\')" />', $this->unique_prefix, $this->unique_prefix);
|
406 |
+
echo '</p></fieldset></form></div>';
|
407 |
+
}
|
408 |
+
/**
|
409 |
+
* input_text
|
410 |
+
*
|
411 |
+
* This will output a well formed table row for a text input
|
412 |
+
*
|
413 |
+
* @param string $label
|
414 |
+
* @param string $option
|
415 |
+
* @param string $width [optional]
|
416 |
+
* @param bool $disable [optional]
|
417 |
+
* @param string $description [optional]
|
418 |
+
* @return
|
419 |
+
*/
|
420 |
+
function input_text($label, $option, $width = '32', $disable = false, $description = '')
|
421 |
+
{
|
422 |
+
$optid = $this->get_valid_id($option);?>
|
423 |
+
<tr valign="top">
|
424 |
+
<th scope="row">
|
425 |
+
<label for="<?php echo $optid;?>"><?php echo $label;?></label>
|
426 |
+
</th>
|
427 |
+
<td>
|
428 |
+
<input type="text" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>" size="<?php echo $width;?>" /><br />
|
429 |
+
<?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
|
430 |
+
</td>
|
431 |
+
</tr>
|
432 |
+
<?php
|
433 |
+
}
|
434 |
+
/**
|
435 |
+
* input_check
|
436 |
+
*
|
437 |
+
* This will output a well formed table row for a checkbox input
|
438 |
+
*
|
439 |
+
* @param string $label
|
440 |
+
* @param string $option
|
441 |
+
* @param string $instruction
|
442 |
+
* @param bool $disable [optional]
|
443 |
+
* @param string $description [optional]
|
444 |
+
* @return
|
445 |
+
*/
|
446 |
+
function input_check($label, $option, $instruction, $disable = false, $description = '')
|
447 |
+
{
|
448 |
+
$optid = $this->get_valid_id($option);?>
|
449 |
+
<tr valign="top">
|
450 |
+
<th scope="row">
|
451 |
+
<label for="<?php echo $optid;?>"><?php echo $label;?></label>
|
452 |
+
</th>
|
453 |
+
<td>
|
454 |
+
<label>
|
455 |
+
<input type="checkbox" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?> value="true" <?php checked(true, $this->opt[$option]);?> />
|
456 |
+
<?php echo $instruction; ?>
|
457 |
+
</label><br />
|
458 |
+
<?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
|
459 |
+
</td>
|
460 |
+
</tr>
|
461 |
+
<?php
|
462 |
+
}
|
463 |
+
/**
|
464 |
+
* input_radio
|
465 |
+
*
|
466 |
+
* This will output a singular radio type form input field
|
467 |
+
*
|
468 |
+
* @param string $label
|
469 |
+
* @param string $option
|
470 |
+
* @param string $instruction
|
471 |
+
* @param object $disable [optional]
|
472 |
+
* @return
|
473 |
+
*/
|
474 |
+
function input_radio($option, $value, $instruction, $disable = false)
|
475 |
+
{?>
|
476 |
+
<label>
|
477 |
+
<input name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" type="radio" <?php if($disable){echo 'disabled="disabled" class="disabled togx"';}else{echo 'class="togx"';}?> value="<?php echo $value;?>" <?php checked($value, $this->opt[$option]);?> />
|
478 |
+
<?php echo $instruction; ?>
|
479 |
+
</label><br/>
|
480 |
+
<?php
|
481 |
+
}
|
482 |
+
/**
|
483 |
+
* input_select
|
484 |
+
*
|
485 |
+
* This will output a well formed table row for a select input
|
486 |
+
*
|
487 |
+
* @param string $label
|
488 |
+
* @param string $option
|
489 |
+
* @param array $values
|
490 |
+
* @param bool $disable [optional]
|
491 |
+
* @param string $description [optional]
|
492 |
+
* @return
|
493 |
+
*/
|
494 |
+
function input_select($label, $option, $values, $disable = false, $description = '')
|
495 |
+
{
|
496 |
+
$optid = $this->get_valid_id($option);?>
|
497 |
+
<tr valign="top">
|
498 |
+
<th scope="row">
|
499 |
+
<label for="<?php echo $optid;?>"><?php echo $label;?></label>
|
500 |
+
</th>
|
501 |
+
<td>
|
502 |
+
<select name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" <?php if($disable){echo 'disabled="disabled" class="disabled"';}?>>
|
503 |
+
<?php $this->select_options($option, $values); ?>
|
504 |
+
</select><br />
|
505 |
+
<?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }?>
|
506 |
+
</td>
|
507 |
+
</tr>
|
508 |
+
<?php
|
509 |
+
}
|
510 |
+
/**
|
511 |
+
* select_options
|
512 |
+
*
|
513 |
+
* Displays wordpress options as <seclect> options defaults to true/false
|
514 |
+
*
|
515 |
+
* @param string $optionname name of wordpress options store
|
516 |
+
* @param array $options array of names of options that can be selected
|
517 |
+
* @param array $exclude[optional] array of names in $options array to be excluded
|
518 |
+
*/
|
519 |
+
function select_options($optionname, $options, $exclude = array())
|
520 |
+
{
|
521 |
+
$value = $this->opt[$optionname];
|
522 |
+
//First output the current value
|
523 |
+
if($value)
|
524 |
+
{
|
525 |
+
printf('<option>%s</option>', $value);
|
526 |
+
}
|
527 |
+
//Now do the rest
|
528 |
+
foreach($options as $option)
|
529 |
+
{
|
530 |
+
//Don't want multiple occurance of the current value
|
531 |
+
if($option != $value && !in_array($option, $exclude))
|
532 |
+
{
|
533 |
+
printf('<option>%s</option>', $option);
|
534 |
+
}
|
535 |
+
}
|
536 |
+
}
|
537 |
+
}
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Breadcrumb NavXT ===
|
2 |
Contributors: mtekk, hakre
|
3 |
Tags: breadcrumb, navigation
|
4 |
-
Requires at least: 2.
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 3.
|
7 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
8 |
|
9 |
== Description ==
|
@@ -31,6 +31,13 @@ Don't see your language on the list? Feel free to translate Breadcrumb NavXT and
|
|
31 |
Please visit [Breadcrumb NavXT's](http://mtekk.weblogs.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
|
32 |
|
33 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
= 3.4.1 =
|
35 |
* Bug fix: Fixed issue with PHP unexpected $end on line 1567 in breadcrumb_navxt_admin.php.
|
36 |
* Bug fix: Fixed issue where the %link% anchor tag would not be replaced with a URI for flat taxonomies (e.g. tags).
|
1 |
=== Breadcrumb NavXT ===
|
2 |
Contributors: mtekk, hakre
|
3 |
Tags: breadcrumb, navigation
|
4 |
+
Requires at least: 2.8
|
5 |
+
Tested up to: 3.0
|
6 |
+
Stable tag: 3.5.0
|
7 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
8 |
|
9 |
== Description ==
|
31 |
Please visit [Breadcrumb NavXT's](http://mtekk.weblogs.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
|
32 |
|
33 |
== Changelog ==
|
34 |
+
= 3.5.0 =
|
35 |
+
* New feature: Added actions `bcn_before_fill` and `bcn_after_fill`, see documentation for more information.
|
36 |
+
* New feature: Widget rewritten to use the WordPress 2.8 Widget API, now multi-widget capable.
|
37 |
+
* New feature: Widget output can be in list form, can be in reversed order, and can be unlinked.
|
38 |
+
* Bug fix: Fixed issue where the current tab was forgotten after a save in the settings page.
|
39 |
+
* Bug fix: Fixed various WP API issues with WordPress 3.0.
|
40 |
+
* Bug fix: Fixed title trimming so that it works properly with multi-byte characters.
|
41 |
= 3.4.1 =
|
42 |
* Bug fix: Fixed issue with PHP unexpected $end on line 1567 in breadcrumb_navxt_admin.php.
|
43 |
* Bug fix: Fixed issue where the %link% anchor tag would not be replaced with a URI for flat taxonomies (e.g. tags).
|