Version Description
- New feature: Support for global/network wide breadcrumb trails in networked setups of WordPress 3.0.
- New feature: Can use any hierarchical post type as a hierarchy for flat post types.
- New feature: Users are now warned if settings are out of date, allowed to do a one click settings migration.
- New feature: Users can now control if a post type uses the posts page in its hierarchy or not.
- Bug fix: Breadcrumb trails for attachments work properly now for custom post types.
- Bug fix: Users can now set custom post types to have a page hierarchy through the settings page.
- Bug fix: Fixed issues where the PHP version check did not work correctly.
- Bug fix: Fixed issue where all settings would get reset on clean 3.6.0 installs on plugin activation.
- Bug fix: Fixed issue when a static front page is specified but the post page is not.
Download this release
Release Info
Developer | mtekk |
Plugin | Breadcrumb NavXT |
Version | 3.7.0 |
Comparing to | |
See all releases |
Code changes from version 3.6.0 to 3.7.0
- breadcrumb_navxt_admin.php +240 -194
- breadcrumb_navxt_class.php +181 -114
- languages/breadcrumb-navxt.pot +233 -150
- languages/breadcrumb_navxt-de_DE.mo +0 -0
- languages/breadcrumb_navxt-de_DE.po +227 -175
- languages/breadcrumb_navxt-id_ID.mo +0 -0
- languages/breadcrumb_navxt-id_ID.po +645 -0
- languages/breadcrumb_navxt-it_IT.mo +0 -0
- languages/breadcrumb_navxt-it_IT.po +250 -165
- languages/breadcrumb_navxt-ja.mo +0 -0
- languages/breadcrumb_navxt-ja.po +342 -253
- languages/breadcrumb_navxt-sv_SE.mo +0 -0
- languages/breadcrumb_navxt-sv_SE.po +252 -167
- languages/breadcrumb_navxt.mo +0 -0
- languages/breadcrumb_navxt.po +246 -164
- mtekk_admin_class.php +73 -52
- readme.txt +15 -4
breadcrumb_navxt_admin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 3.
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.us/
|
9 |
*/
|
@@ -24,11 +24,9 @@ Author URI: http://mtekk.us/
|
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
//Do a PHP version check, require 5.2 or newer
|
27 |
-
|
28 |
-
if($phpVersion[0] < 5 || ($phpVersion[0] = 5 && $phpVersion[0] < 2))
|
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.2.0');
|
31 |
-
die();
|
32 |
}
|
33 |
//Include the breadcrumb class
|
34 |
require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
|
@@ -50,7 +48,7 @@ class bcn_admin extends mtekk_admin
|
|
50 |
*
|
51 |
* @var string
|
52 |
*/
|
53 |
-
protected $version = '3.
|
54 |
protected $full_name = 'Breadcrumb NavXT Settings';
|
55 |
protected $short_name = 'Breadcrumb NavXT';
|
56 |
protected $access_level = 'manage_options';
|
@@ -65,8 +63,6 @@ class bcn_admin extends mtekk_admin
|
|
65 |
*/
|
66 |
public $breadcrumb_trail;
|
67 |
/**
|
68 |
-
* bcn_admin
|
69 |
-
*
|
70 |
* Administrative interface class default constructor
|
71 |
*/
|
72 |
function bcn_admin()
|
@@ -76,7 +72,7 @@ class bcn_admin extends mtekk_admin
|
|
76 |
//Grab defaults from the breadcrumb_trail object
|
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->
|
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
|
@@ -100,8 +96,6 @@ class bcn_admin extends mtekk_admin
|
|
100 |
add_action('wp_print_scripts', array($this, 'javascript'));
|
101 |
}
|
102 |
/**
|
103 |
-
* security
|
104 |
-
*
|
105 |
* Makes sure the current user can manage options to proceed
|
106 |
*/
|
107 |
function security()
|
@@ -109,30 +103,66 @@ class bcn_admin extends mtekk_admin
|
|
109 |
//If the user can not manage options we will die on them
|
110 |
if(!current_user_can($this->access_level))
|
111 |
{
|
112 |
-
|
113 |
-
die();
|
114 |
}
|
115 |
}
|
116 |
-
/**
|
117 |
-
* install
|
118 |
-
*
|
119 |
* This sets up and upgrades the database settings, runs on every activation
|
120 |
*/
|
121 |
function install()
|
122 |
{
|
123 |
-
global $wp_taxonomies, $wp_post_types;
|
124 |
//Call our little security function
|
125 |
$this->security();
|
126 |
-
//
|
127 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
//If our version is not the same as in the db, time to update
|
129 |
-
if($
|
130 |
{
|
131 |
-
//Split up the db version into it's components
|
132 |
-
list($major, $minor, $release) = explode('.', $db_version);
|
133 |
-
$opts = $this->get_option('bcn_options');
|
134 |
//Upgrading from 3.4
|
135 |
-
if($
|
136 |
{
|
137 |
//Inline upgrade of the tag setting
|
138 |
if($opts['post_taxonomy_type'] === 'tag')
|
@@ -147,174 +177,87 @@ class bcn_admin extends mtekk_admin
|
|
147 |
$opts['post_tag_anchor'] = $this->breadcrumb_trail->opt['tag_anchor'];
|
148 |
}
|
149 |
//Upgrading to 3.6
|
150 |
-
if($
|
151 |
{
|
152 |
//Added post_ prefix to avoid conflicts with custom taxonomies
|
153 |
$opts['post_page_prefix'] = $opts['page_prefix'];
|
|
|
154 |
$opts['post_page_suffix'] = $opts['page_suffix'];
|
|
|
155 |
$opts['post_page_anchor'] = $opts['page_anchor'];
|
|
|
156 |
$opts['post_post_prefix'] = $opts['post_prefix'];
|
|
|
157 |
$opts['post_post_suffix'] = $opts['post_suffix'];
|
|
|
158 |
$opts['post_post_anchor'] = $opts['post_anchor'];
|
|
|
159 |
$opts['post_post_taxonomy_display'] = $opts['post_taxonomy_display'];
|
|
|
160 |
$opts['post_post_taxonomy_type'] = $opts['post_taxonomy_type'];
|
|
|
161 |
//Update to non-autoload db version
|
162 |
$this->delete_option('bcn_version');
|
163 |
$this->add_option('bcn_version', $this->version, false);
|
164 |
-
$this->add_option('bcn_options_bk', $
|
165 |
}
|
166 |
-
//
|
167 |
-
|
168 |
{
|
169 |
-
//
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
$
|
174 |
-
//
|
175 |
-
$
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
//
|
181 |
-
|
182 |
{
|
183 |
-
//
|
184 |
-
if(
|
185 |
{
|
186 |
-
//
|
187 |
-
|
188 |
-
$this->opt['post_' . $post_type->name . '_suffix'] = '';
|
189 |
-
$this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
190 |
-
//If it is flat, we need a taxonomy selection
|
191 |
-
if(!$post_type->hierarchical)
|
192 |
{
|
193 |
-
//
|
194 |
-
$
|
195 |
-
//Loop through all of the possible taxonomies
|
196 |
-
foreach($wp_taxonomies as $taxonomy)
|
197 |
{
|
198 |
-
//
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
}
|
206 |
}
|
207 |
}
|
208 |
}
|
209 |
}
|
210 |
-
//
|
211 |
-
|
212 |
-
{
|
213 |
-
//We only want custom taxonomies
|
214 |
-
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
215 |
-
{
|
216 |
-
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
217 |
-
if(!array_key_exists($taxonomy->name . '_anchor', $opts))
|
218 |
-
{
|
219 |
-
$opts[$taxonomy->name . '_prefix'] = '';
|
220 |
-
$opts[$taxonomy->name . '_suffix'] = '';
|
221 |
-
$opts[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', ucwords(__($taxonomy->label))), 'breadcrumb_navxt');
|
222 |
-
$opts['archive_' . $taxonomy->name . '_prefix'] = '';
|
223 |
-
$opts['archive_' . $taxonomy->name . '_suffix'] = '';
|
224 |
-
}
|
225 |
-
}
|
226 |
-
}
|
227 |
-
//Always have to update the version
|
228 |
-
$this->update_option('bcn_version', $this->version);
|
229 |
-
//Store the options
|
230 |
-
$this->update_option('bcn_options', $opts);
|
231 |
-
}
|
232 |
-
//Check if we have valid anchors
|
233 |
-
if($temp = $this->get_option('bcn_options'))
|
234 |
-
{
|
235 |
-
//Missing the blog anchor is a bug from 3.0.0/3.0.1 so we soft error that one
|
236 |
-
if(strlen($temp['blog_anchor']) == 0)
|
237 |
-
{
|
238 |
-
$temp['blog_anchor'] = $this->breadcrumb_trail->opt['blog_anchor'];
|
239 |
-
$this->update_option('bcn_options', $temp);
|
240 |
-
}
|
241 |
-
else if(strlen($temp['home_anchor']) == 0 ||
|
242 |
-
strlen($temp['blog_anchor']) == 0 ||
|
243 |
-
strlen($temp['page_anchor']) == 0 ||
|
244 |
-
strlen($temp['post_anchor']) == 0 ||
|
245 |
-
strlen($temp['post_tag_anchor']) == 0 ||
|
246 |
-
strlen($temp['date_anchor']) == 0 ||
|
247 |
-
strlen($temp['category_anchor']) == 0)
|
248 |
-
{
|
249 |
-
$this->delete_option('bcn_options');
|
250 |
-
$this->add_option('bcn_options', $this->breadcrumb_trail->opt);
|
251 |
-
}
|
252 |
}
|
253 |
}
|
254 |
/**
|
255 |
-
* ops_update
|
256 |
-
*
|
257 |
* Updates the database settings from the webform
|
258 |
*/
|
259 |
function opts_update()
|
260 |
{
|
261 |
-
global $wp_taxonomies, $wp_post_types;
|
262 |
//Do some security related thigns as we are not using the normal WP settings API
|
263 |
$this->security();
|
264 |
//Do a nonce check, prevent malicious link/form problems
|
265 |
check_admin_referer('bcn_options-options');
|
266 |
//Update local options from database
|
267 |
$this->opt = $this->get_option('bcn_options');
|
268 |
-
//
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
|
273 |
-
{
|
274 |
-
//If the post type does not have settings in the options array yet, we need to load some defaults
|
275 |
-
if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
|
276 |
-
{
|
277 |
-
//Add the necessary option array members
|
278 |
-
$this->opt['post_' . $post_type->name . '_prefix'] = '';
|
279 |
-
$this->opt['post_' . $post_type->name . '_suffix'] = '';
|
280 |
-
$this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
281 |
-
//If it is flat, we need a taxonomy selection
|
282 |
-
if(!$post_type->hierarchical)
|
283 |
-
{
|
284 |
-
//Be safe and disable taxonomy display by default
|
285 |
-
$this->opt['post_' . $post_type->name . '_taxonomy_display'] = false;
|
286 |
-
//Loop through all of the possible taxonomies
|
287 |
-
foreach($wp_taxonomies as $taxonomy)
|
288 |
-
{
|
289 |
-
//Activate the first taxonomy valid for this post type and exit the loop
|
290 |
-
if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
|
291 |
-
{
|
292 |
-
$this->opt['post_' . $post_type->name . '_taxonomy_display'] = true;
|
293 |
-
$this->opt['post_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
|
294 |
-
break;
|
295 |
-
}
|
296 |
-
}
|
297 |
-
}
|
298 |
-
}
|
299 |
-
}
|
300 |
-
}
|
301 |
-
//We'll add our custom taxonomy stuff at this time
|
302 |
-
foreach($wp_taxonomies as $taxonomy)
|
303 |
-
{
|
304 |
-
//We only want custom taxonomies
|
305 |
-
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
306 |
-
{
|
307 |
-
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
308 |
-
if(!array_key_exists($taxonomy->name . '_anchor', $this->opt))
|
309 |
-
{
|
310 |
-
$this->opt[$taxonomy->name . '_prefix'] = '';
|
311 |
-
$this->opt[$taxonomy->name . '_suffix'] = '';
|
312 |
-
$this->opt[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', ucwords(__($taxonomy->label))), 'breadcrumb_navxt');
|
313 |
-
$this->opt['archive_' . $taxonomy->name . '_prefix'] = '';
|
314 |
-
$this->opt['archive_' . $taxonomy->name . '_suffix'] = '';
|
315 |
-
}
|
316 |
-
}
|
317 |
-
}
|
318 |
//Update our backup options
|
319 |
$this->update_option('bcn_options_bk', $this->opt);
|
320 |
//Grab our incomming array (the data is dirty)
|
@@ -350,8 +293,6 @@ class bcn_admin extends mtekk_admin
|
|
350 |
add_action('admin_notices', array($this, 'message'));
|
351 |
}
|
352 |
/**
|
353 |
-
* javascript
|
354 |
-
*
|
355 |
* Enqueues JS dependencies (jquery) for the tabs
|
356 |
*
|
357 |
* @see admin_init()
|
@@ -369,12 +310,13 @@ class bcn_admin extends mtekk_admin
|
|
369 |
*/
|
370 |
protected function _get_help_text()
|
371 |
{
|
372 |
-
return sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
|
373 |
-
'<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>')
|
|
|
|
|
|
|
374 |
}
|
375 |
/**
|
376 |
-
* admin_head
|
377 |
-
*
|
378 |
* Adds in the JavaScript and CSS for the tabs in the adminsitrative
|
379 |
* interface
|
380 |
*
|
@@ -439,10 +381,7 @@ class bcn_admin extends mtekk_admin
|
|
439 |
/* handler for opening the last tab after submit (compability version) */
|
440 |
jQuery('#hasadmintabs ul a').click(function(i){
|
441 |
var form = jQuery('#bcn_admin-options');
|
442 |
-
var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
|
443 |
-
// an older bug pops up with some jQuery version(s), which makes it
|
444 |
-
// necessary to set the form's action attribute by standard javascript
|
445 |
-
// node access:
|
446 |
form.get(0).setAttribute("action", action);
|
447 |
});
|
448 |
}
|
@@ -467,21 +406,20 @@ class bcn_admin extends mtekk_admin
|
|
467 |
/* ]]> */
|
468 |
</script>
|
469 |
<?php
|
470 |
-
}
|
471 |
/**
|
472 |
-
* admin_page
|
473 |
-
*
|
474 |
* The administrative page for Breadcrumb NavXT
|
475 |
*
|
476 |
*/
|
477 |
function admin_page()
|
478 |
{
|
479 |
global $wp_taxonomies, $wp_post_types;
|
480 |
-
$this->security()
|
|
|
481 |
<div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
|
482 |
-
<
|
483 |
print $this->_get_help_text();
|
484 |
-
?></
|
485 |
<form action="options-general.php?page=breadcrumb_navxt" method="post" id="bcn_admin-options">
|
486 |
<?php settings_fields('bcn_options');?>
|
487 |
<div id="hasadmintabs">
|
@@ -512,12 +450,36 @@ class bcn_admin extends mtekk_admin
|
|
512 |
</td>
|
513 |
</tr>
|
514 |
<?php
|
515 |
-
$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"));
|
516 |
$this->input_text(__('Home Prefix', 'breadcrumb_navxt'), 'home_prefix', '32');
|
517 |
$this->input_text(__('Home Suffix', 'breadcrumb_navxt'), 'home_suffix', '32');
|
518 |
$this->input_text(__('Home Anchor', 'breadcrumb_navxt'), 'home_anchor', '64', false, __('The anchor template for the home breadcrumb.', 'breadcrumb_navxt'));
|
|
|
519 |
$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'));
|
520 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
</table>
|
522 |
</fieldset>
|
523 |
<fieldset id="current" class="bcn_options">
|
@@ -557,7 +519,7 @@ class bcn_admin extends mtekk_admin
|
|
557 |
foreach($wp_taxonomies as $taxonomy)
|
558 |
{
|
559 |
//We only want custom taxonomies
|
560 |
-
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) &&
|
561 |
{
|
562 |
$this->input_radio('post_post_taxonomy_type', $taxonomy->name, ucwords(__($taxonomy->label)));
|
563 |
}
|
@@ -575,12 +537,13 @@ class bcn_admin extends mtekk_admin
|
|
575 |
?>
|
576 |
</table>
|
577 |
</fieldset>
|
578 |
-
<?php
|
579 |
//Loop through all of the post types in the array
|
580 |
foreach($wp_post_types as $post_type)
|
581 |
{
|
582 |
//We only want custom post types
|
583 |
-
if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
|
|
|
584 |
{
|
585 |
//If the post type does not have settings in the options array yet, we need to load some defaults
|
586 |
if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
|
@@ -589,11 +552,17 @@ class bcn_admin extends mtekk_admin
|
|
589 |
$this->opt['post_' . $post_type->name . '_prefix'] = '';
|
590 |
$this->opt['post_' . $post_type->name . '_suffix'] = '';
|
591 |
$this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
|
|
|
|
|
|
|
|
|
|
|
|
592 |
//If it is flat, we need a taxonomy selection
|
593 |
-
|
594 |
{
|
595 |
-
//
|
596 |
-
$this->opt['post_' . $post_type->name . '
|
597 |
//Loop through all of the possible taxonomies
|
598 |
foreach($wp_taxonomies as $taxonomy)
|
599 |
{
|
@@ -616,6 +585,17 @@ class bcn_admin extends mtekk_admin
|
|
616 |
$this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_prefix', '32');
|
617 |
$this->input_text(sprintf(__('%s Suffix', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_suffix', '32');
|
618 |
$this->input_text(sprintf(__('%s Anchor', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_anchor', '64', false, sprintf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($post_type->labels->singular_name))));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
//If it is flat, we need a taxonomy selection
|
620 |
if(!$post_type->hierarchical)
|
621 |
{
|
@@ -627,6 +607,7 @@ class bcn_admin extends mtekk_admin
|
|
627 |
</th>
|
628 |
<td>
|
629 |
<?php
|
|
|
630 |
//Loop through all of the taxonomies in the array
|
631 |
foreach($wp_taxonomies as $taxonomy)
|
632 |
{
|
@@ -670,14 +651,13 @@ class bcn_admin extends mtekk_admin
|
|
670 |
?>
|
671 |
</table>
|
672 |
</fieldset>
|
673 |
-
<?php
|
674 |
-
//var_dump($wp_taxonomies);
|
675 |
-
//var_dump($wp_post_types);
|
676 |
//Loop through all of the taxonomies in the array
|
677 |
foreach($wp_taxonomies as $taxonomy)
|
678 |
{
|
679 |
//We only want custom taxonomies
|
680 |
-
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
|
|
681 |
{
|
682 |
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
683 |
if(!array_key_exists($taxonomy->name . '_anchor', $this->opt))
|
@@ -742,8 +722,84 @@ class bcn_admin extends mtekk_admin
|
|
742 |
<?php
|
743 |
}
|
744 |
/**
|
745 |
-
*
|
746 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
747 |
* This inserts the value into the option name, works around WP's stupid string bool
|
748 |
*
|
749 |
* @param (string) key name where to save the value in $value
|
@@ -763,8 +819,6 @@ class bcn_admin extends mtekk_admin
|
|
763 |
}
|
764 |
}
|
765 |
/**
|
766 |
-
* delete_option
|
767 |
-
*
|
768 |
* This removes the option name, WPMU safe
|
769 |
*
|
770 |
* @param (string) key name of the option to remove
|
@@ -775,8 +829,6 @@ class bcn_admin extends mtekk_admin
|
|
775 |
return delete_option($key);
|
776 |
}
|
777 |
/**
|
778 |
-
* update_option
|
779 |
-
*
|
780 |
* This updates the value into the option name, WPMU safe
|
781 |
*
|
782 |
* @param (string) key name where to save the value in $value
|
@@ -788,8 +840,6 @@ class bcn_admin extends mtekk_admin
|
|
788 |
return update_option($key, $value);
|
789 |
}
|
790 |
/**
|
791 |
-
* get_option
|
792 |
-
*
|
793 |
* This grabs the the data from the db it is WPMU safe and can place the data
|
794 |
* in a HTML form safe manner.
|
795 |
*
|
@@ -801,8 +851,6 @@ class bcn_admin extends mtekk_admin
|
|
801 |
return get_option($key);
|
802 |
}
|
803 |
/**
|
804 |
-
* display
|
805 |
-
*
|
806 |
* Outputs the breadcrumb trail
|
807 |
*
|
808 |
* @param (bool) $return Whether to return or echo the trail.
|
@@ -818,8 +866,6 @@ class bcn_admin extends mtekk_admin
|
|
818 |
return $this->breadcrumb_trail->display($return, $linked, $reverse);
|
819 |
}
|
820 |
/**
|
821 |
-
* display_list
|
822 |
-
*
|
823 |
* Outputs the breadcrumb trail
|
824 |
*
|
825 |
* @since 3.2.0
|
3 |
Plugin Name: Breadcrumb NavXT
|
4 |
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 3.7.0
|
7 |
Author: John Havlik
|
8 |
Author URI: http://mtekk.us/
|
9 |
*/
|
24 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
25 |
*/
|
26 |
//Do a PHP version check, require 5.2 or newer
|
27 |
+
if(version_compare(PHP_VERSION, '5.2.0', '<'))
|
|
|
28 |
{
|
29 |
+
wp_die(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.2.0'));
|
|
|
30 |
}
|
31 |
//Include the breadcrumb class
|
32 |
require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
|
48 |
*
|
49 |
* @var string
|
50 |
*/
|
51 |
+
protected $version = '3.7.0';
|
52 |
protected $full_name = 'Breadcrumb NavXT Settings';
|
53 |
protected $short_name = 'Breadcrumb NavXT';
|
54 |
protected $access_level = 'manage_options';
|
63 |
*/
|
64 |
public $breadcrumb_trail;
|
65 |
/**
|
|
|
|
|
66 |
* Administrative interface class default constructor
|
67 |
*/
|
68 |
function bcn_admin()
|
72 |
//Grab defaults from the breadcrumb_trail object
|
73 |
$this->opt = $this->breadcrumb_trail->opt;
|
74 |
//We set the plugin basename here, could manually set it, but this is for demonstration purposes
|
75 |
+
//$this->plugin_basename = plugin_basename(__FILE__);
|
76 |
//Register the WordPress 2.8 Widget
|
77 |
add_action('widgets_init', create_function('', 'return register_widget("'. $this->unique_prefix . '_widget");'));
|
78 |
//We're going to make sure we load the parent's constructor
|
96 |
add_action('wp_print_scripts', array($this, 'javascript'));
|
97 |
}
|
98 |
/**
|
|
|
|
|
99 |
* Makes sure the current user can manage options to proceed
|
100 |
*/
|
101 |
function security()
|
103 |
//If the user can not manage options we will die on them
|
104 |
if(!current_user_can($this->access_level))
|
105 |
{
|
106 |
+
wp_die(__('Insufficient privileges to proceed.', 'breadcrumb_navxt'));
|
|
|
107 |
}
|
108 |
}
|
109 |
+
/**
|
|
|
|
|
110 |
* This sets up and upgrades the database settings, runs on every activation
|
111 |
*/
|
112 |
function install()
|
113 |
{
|
|
|
114 |
//Call our little security function
|
115 |
$this->security();
|
116 |
+
//Try retrieving the options from the database
|
117 |
+
$opts = $this->get_option('bcn_options');
|
118 |
+
//If there are no settings, copy over the default settings
|
119 |
+
if(!is_array($opts))
|
120 |
+
{
|
121 |
+
//Grab defaults from the breadcrumb_trail object
|
122 |
+
$opts = $this->breadcrumb_trail->opt;
|
123 |
+
//Add custom post types
|
124 |
+
$this->find_posttypes($opts);
|
125 |
+
//Add custom taxonomy types
|
126 |
+
$this->find_taxonomies($opts);
|
127 |
+
//Add the options
|
128 |
+
$this->add_option('bcn_options', $opts);
|
129 |
+
$this->add_option('bcn_options_bk', $opts, false);
|
130 |
+
//Add the version, no need to autoload the db version
|
131 |
+
$this->add_option('bcn_version', $this->version, false);
|
132 |
+
}
|
133 |
+
else
|
134 |
+
{
|
135 |
+
//Retrieve the database version
|
136 |
+
$db_version = $this->get_option('bcn_version');
|
137 |
+
if($this->version !== $db_version)
|
138 |
+
{
|
139 |
+
//Add custom post types
|
140 |
+
$this->find_posttypes($opts);
|
141 |
+
//Add custom taxonomy types
|
142 |
+
$this->find_taxonomies($opts);
|
143 |
+
//Run the settings update script
|
144 |
+
$this->opts_upgrade($opts, $db_version);
|
145 |
+
//Always have to update the version
|
146 |
+
$this->update_option('bcn_version', $this->version);
|
147 |
+
//Store the options
|
148 |
+
$this->update_option('bcn_options', $this->opt);
|
149 |
+
}
|
150 |
+
}
|
151 |
+
}
|
152 |
+
/**
|
153 |
+
* Upgrades input options array, sets to $this->opt
|
154 |
+
*
|
155 |
+
* @param array $opts
|
156 |
+
* @param string $version the version of the passed in options
|
157 |
+
*/
|
158 |
+
function opts_upgrade($opts, $version)
|
159 |
+
{
|
160 |
+
global $wp_post_types;
|
161 |
//If our version is not the same as in the db, time to update
|
162 |
+
if($version !== $this->version)
|
163 |
{
|
|
|
|
|
|
|
164 |
//Upgrading from 3.4
|
165 |
+
if(version_compare($version, '3.4.0', '<'))
|
166 |
{
|
167 |
//Inline upgrade of the tag setting
|
168 |
if($opts['post_taxonomy_type'] === 'tag')
|
177 |
$opts['post_tag_anchor'] = $this->breadcrumb_trail->opt['tag_anchor'];
|
178 |
}
|
179 |
//Upgrading to 3.6
|
180 |
+
if(version_compare($version, '3.6.0', '<'))
|
181 |
{
|
182 |
//Added post_ prefix to avoid conflicts with custom taxonomies
|
183 |
$opts['post_page_prefix'] = $opts['page_prefix'];
|
184 |
+
unset($opts['page_prefix']);
|
185 |
$opts['post_page_suffix'] = $opts['page_suffix'];
|
186 |
+
unset($opts['page_suffix']);
|
187 |
$opts['post_page_anchor'] = $opts['page_anchor'];
|
188 |
+
unset($opts['page_anchor']);
|
189 |
$opts['post_post_prefix'] = $opts['post_prefix'];
|
190 |
+
unset($opts['post_prefix']);
|
191 |
$opts['post_post_suffix'] = $opts['post_suffix'];
|
192 |
+
unset($opts['post_suffix']);
|
193 |
$opts['post_post_anchor'] = $opts['post_anchor'];
|
194 |
+
unset($opts['post_anchor']);
|
195 |
$opts['post_post_taxonomy_display'] = $opts['post_taxonomy_display'];
|
196 |
+
unset($opts['post_taxonomy_display']);
|
197 |
$opts['post_post_taxonomy_type'] = $opts['post_taxonomy_type'];
|
198 |
+
unset($opts['post_taxonomy_type']);
|
199 |
//Update to non-autoload db version
|
200 |
$this->delete_option('bcn_version');
|
201 |
$this->add_option('bcn_version', $this->version, false);
|
202 |
+
$this->add_option('bcn_options_bk', $opts, false);
|
203 |
}
|
204 |
+
//Upgrading to 3.7
|
205 |
+
if(version_compare($version, '3.7.0', '<'))
|
206 |
{
|
207 |
+
//Add the new options for multisite
|
208 |
+
//Should the mainsite be shown
|
209 |
+
$opts['mainsite_display'] = true;
|
210 |
+
//Title displayed when for the main site
|
211 |
+
$opts['mainsite_title'] = __('Home', 'breadcrumb_navxt');
|
212 |
+
//The anchor template for the main site, this is global, two keywords are available %link% and %title%
|
213 |
+
$opts['mainsite_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
214 |
+
//The prefix for mainsite breadcrumbs, placed inside of current_item prefix
|
215 |
+
$opts['mainsite_prefix'] = '';
|
216 |
+
//The prefix for mainsite breadcrumbs, placed inside of current_item prefix
|
217 |
+
$opts['mainsite_suffix'] = '';
|
218 |
+
//Now add post_root for all of the custom types
|
219 |
+
foreach($wp_post_types as $post_type)
|
220 |
{
|
221 |
+
//We only want custom post types
|
222 |
+
if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
|
223 |
{
|
224 |
+
//If the post type does not have blog_display setting, add it
|
225 |
+
if(!array_key_exists('post_' . $post_type->name . '_root', $opts))
|
|
|
|
|
|
|
|
|
226 |
{
|
227 |
+
//Default for blog_display type dependent
|
228 |
+
if($post_type->hierarchical)
|
|
|
|
|
229 |
{
|
230 |
+
//Set post_root for hierarchical types
|
231 |
+
$opts['post_' . $post_type->name . '_root'] = get_option('page_on_front');
|
232 |
+
}
|
233 |
+
else
|
234 |
+
{
|
235 |
+
//Set post_root for flat types
|
236 |
+
$opts['post_' . $post_type->name . '_root'] = get_option('page_for_posts');
|
237 |
}
|
238 |
}
|
239 |
}
|
240 |
}
|
241 |
}
|
242 |
+
//Save the passed in opts to the object's option array
|
243 |
+
$this->opt = $opts;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
}
|
245 |
}
|
246 |
/**
|
|
|
|
|
247 |
* Updates the database settings from the webform
|
248 |
*/
|
249 |
function opts_update()
|
250 |
{
|
|
|
251 |
//Do some security related thigns as we are not using the normal WP settings API
|
252 |
$this->security();
|
253 |
//Do a nonce check, prevent malicious link/form problems
|
254 |
check_admin_referer('bcn_options-options');
|
255 |
//Update local options from database
|
256 |
$this->opt = $this->get_option('bcn_options');
|
257 |
+
//Add custom post types
|
258 |
+
$this->find_posttypes($this->opt);
|
259 |
+
//Add custom taxonomy types
|
260 |
+
$this->find_taxonomies($this->opt);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
//Update our backup options
|
262 |
$this->update_option('bcn_options_bk', $this->opt);
|
263 |
//Grab our incomming array (the data is dirty)
|
293 |
add_action('admin_notices', array($this, 'message'));
|
294 |
}
|
295 |
/**
|
|
|
|
|
296 |
* Enqueues JS dependencies (jquery) for the tabs
|
297 |
*
|
298 |
* @see admin_init()
|
310 |
*/
|
311 |
protected function _get_help_text()
|
312 |
{
|
313 |
+
return '<p>' . sprintf(__('Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information.', 'breadcrumb_navxt'),
|
314 |
+
'<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb_navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . '</p><h5>' .
|
315 |
+
__('Quick Start Information', 'breadcrumb_navxt') . '</h5><p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb_navxt') .
|
316 |
+
'</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb_navxt').'</h5><code><div class="breadcrumbs">'."<?php if(function_exists('bcn_display')){ bcn_display();}?></div></code>" .
|
317 |
+
'<h5>' . __('Breadcrumb trail in list form', 'breadcrumb_navxt').'</h5><code><ul class="breadcrumbs">'."<?php if(function_exists('bcn_display_list')){ bcn_display_list();}?></ul></code>";
|
318 |
}
|
319 |
/**
|
|
|
|
|
320 |
* Adds in the JavaScript and CSS for the tabs in the adminsitrative
|
321 |
* interface
|
322 |
*
|
381 |
/* handler for opening the last tab after submit (compability version) */
|
382 |
jQuery('#hasadmintabs ul a').click(function(i){
|
383 |
var form = jQuery('#bcn_admin-options');
|
384 |
+
var action = form.attr("action").split('#', 1) + jQuery(this).attr('href');
|
|
|
|
|
|
|
385 |
form.get(0).setAttribute("action", action);
|
386 |
});
|
387 |
}
|
406 |
/* ]]> */
|
407 |
</script>
|
408 |
<?php
|
409 |
+
}
|
410 |
/**
|
|
|
|
|
411 |
* The administrative page for Breadcrumb NavXT
|
412 |
*
|
413 |
*/
|
414 |
function admin_page()
|
415 |
{
|
416 |
global $wp_taxonomies, $wp_post_types;
|
417 |
+
$this->security();
|
418 |
+
$this->version_check($this->get_option($this->unique_prefix . '_version'));?>
|
419 |
<div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb_navxt'); ?></h2>
|
420 |
+
<div<?php if($this->_has_contextual_help): ?> class="hide-if-js"<?php endif; ?>><?php
|
421 |
print $this->_get_help_text();
|
422 |
+
?></div>
|
423 |
<form action="options-general.php?page=breadcrumb_navxt" method="post" id="bcn_admin-options">
|
424 |
<?php settings_fields('bcn_options');?>
|
425 |
<div id="hasadmintabs">
|
450 |
</td>
|
451 |
</tr>
|
452 |
<?php
|
|
|
453 |
$this->input_text(__('Home Prefix', 'breadcrumb_navxt'), 'home_prefix', '32');
|
454 |
$this->input_text(__('Home Suffix', 'breadcrumb_navxt'), 'home_suffix', '32');
|
455 |
$this->input_text(__('Home Anchor', 'breadcrumb_navxt'), 'home_anchor', '64', false, __('The anchor template for the home breadcrumb.', 'breadcrumb_navxt'));
|
456 |
+
$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"));
|
457 |
$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'));
|
458 |
?>
|
459 |
+
<tr valign="top">
|
460 |
+
<th scope="row">
|
461 |
+
<?php _e('Main Site Breadcrumb', 'breadcrumb_navxt'); ?>
|
462 |
+
</th>
|
463 |
+
<td>
|
464 |
+
<label>
|
465 |
+
<input name="bcn_options[mainsite_display]" type="checkbox" id="mainsite_display" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="true" <?php checked(true, $this->opt['mainsite_display']); ?> />
|
466 |
+
<?php _e('Place the main site home breadcrumb in the trail in an multisite setup.', 'breadcrumb_navxt'); ?>
|
467 |
+
</label><br />
|
468 |
+
<ul>
|
469 |
+
<li>
|
470 |
+
<label for="mainsite_title">
|
471 |
+
<?php _e('Main Site Home Title: ','breadcrumb_navxt');?>
|
472 |
+
<input type="text" name="bcn_options[mainsite_title]" id="mainsite_title" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt['mainsite_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
|
473 |
+
</label>
|
474 |
+
</li>
|
475 |
+
</ul>
|
476 |
+
</td>
|
477 |
+
</tr>
|
478 |
+
<?php
|
479 |
+
$this->input_text(__('Main Site Home Prefix', 'breadcrumb_navxt'), 'mainsite_prefix', '32', !is_multisite(), __('Used for the main site home breadcrumb in an multisite setup', 'breadcrumb_navxt'));
|
480 |
+
$this->input_text(__('Main Site Home Suffix', 'breadcrumb_navxt'), 'mainsite_suffix', '32', !is_multisite(), __('Used for the main site home breadcrumb in an multisite setup', 'breadcrumb_navxt'));
|
481 |
+
$this->input_text(__('Main Site Home Anchor', 'breadcrumb_navxt'), 'mainsite_anchor', '64', !is_multisite(), __('The anchor template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb_navxt'));
|
482 |
+
?>
|
483 |
</table>
|
484 |
</fieldset>
|
485 |
<fieldset id="current" class="bcn_options">
|
519 |
foreach($wp_taxonomies as $taxonomy)
|
520 |
{
|
521 |
//We only want custom taxonomies
|
522 |
+
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
|
523 |
{
|
524 |
$this->input_radio('post_post_taxonomy_type', $taxonomy->name, ucwords(__($taxonomy->label)));
|
525 |
}
|
537 |
?>
|
538 |
</table>
|
539 |
</fieldset>
|
540 |
+
<?php
|
541 |
//Loop through all of the post types in the array
|
542 |
foreach($wp_post_types as $post_type)
|
543 |
{
|
544 |
//We only want custom post types
|
545 |
+
//if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
|
546 |
+
if(!$post_type->_builtin)
|
547 |
{
|
548 |
//If the post type does not have settings in the options array yet, we need to load some defaults
|
549 |
if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
|
552 |
$this->opt['post_' . $post_type->name . '_prefix'] = '';
|
553 |
$this->opt['post_' . $post_type->name . '_suffix'] = '';
|
554 |
$this->opt['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
555 |
+
//Do type dependent tasks
|
556 |
+
if($post_type->hierarchical)
|
557 |
+
{
|
558 |
+
//Set post_root for hierarchical types
|
559 |
+
$this->opt['post_' . $post_type->name . '_root'] = get_option('page_on_front');
|
560 |
+
}
|
561 |
//If it is flat, we need a taxonomy selection
|
562 |
+
else
|
563 |
{
|
564 |
+
//Set post_root for flat types
|
565 |
+
$this->opt['post_' . $post_type->name . '_root'] = get_option('page_for_posts');
|
566 |
//Loop through all of the possible taxonomies
|
567 |
foreach($wp_taxonomies as $taxonomy)
|
568 |
{
|
585 |
$this->input_text(sprintf(__('%s Prefix', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_prefix', '32');
|
586 |
$this->input_text(sprintf(__('%s Suffix', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_suffix', '32');
|
587 |
$this->input_text(sprintf(__('%s Anchor', 'breadcrumb_navxt'), $post_type->labels->singular_name), 'post_' . $post_type->name . '_anchor', '64', false, sprintf(__('The anchor template for %s breadcrumbs.', 'breadcrumb_navxt'), strtolower(__($post_type->labels->singular_name))));
|
588 |
+
$optid = $this->get_valid_id('post_' . $post_type->name . '_root');
|
589 |
+
?>
|
590 |
+
<tr valign="top">
|
591 |
+
<th scope="row">
|
592 |
+
<label for="<?php echo $optid;?>"><?php printf(__('%s Root Page', 'breadcrumb_navxt'), $post_type->labels->singular_name);?></label>
|
593 |
+
</th>
|
594 |
+
<td>
|
595 |
+
<?php wp_dropdown_pages(array('name' => $this->unique_prefix . '_options[post_' . $post_type->name . '_root]', 'id' => $optid, 'echo' => 1, 'show_option_none' => __( '— Select —' ), 'option_none_value' => '0', 'selected' => $this->opt['post_' . $post_type->name . '_root']));?>
|
596 |
+
</td>
|
597 |
+
</tr>
|
598 |
+
<?php
|
599 |
//If it is flat, we need a taxonomy selection
|
600 |
if(!$post_type->hierarchical)
|
601 |
{
|
607 |
</th>
|
608 |
<td>
|
609 |
<?php
|
610 |
+
$this->input_radio('post_' . $post_type->name . '_taxonomy_type', 'page', __('Pages'));
|
611 |
//Loop through all of the taxonomies in the array
|
612 |
foreach($wp_taxonomies as $taxonomy)
|
613 |
{
|
651 |
?>
|
652 |
</table>
|
653 |
</fieldset>
|
654 |
+
<?php
|
|
|
|
|
655 |
//Loop through all of the taxonomies in the array
|
656 |
foreach($wp_taxonomies as $taxonomy)
|
657 |
{
|
658 |
//We only want custom taxonomies
|
659 |
+
//if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
660 |
+
if(!$taxonomy->_builtin)
|
661 |
{
|
662 |
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
663 |
if(!array_key_exists($taxonomy->name . '_anchor', $this->opt))
|
722 |
<?php
|
723 |
}
|
724 |
/**
|
725 |
+
* Places settings into $opts array, if missing, for the registered post types
|
726 |
+
*
|
727 |
+
* @param $opts
|
728 |
+
*/
|
729 |
+
function find_posttypes(&$opts)
|
730 |
+
{
|
731 |
+
global $wp_post_types;
|
732 |
+
//Loop through all of the post types in the array
|
733 |
+
foreach($wp_post_types as $post_type)
|
734 |
+
{
|
735 |
+
//We only want custom post types
|
736 |
+
//if($post_type->name != 'post' && $post_type->name != 'page' && $post_type->name != 'attachment' && $post_type->name != 'revision' && $post_type->name != 'nav_menu_item')
|
737 |
+
if(!$post_type->_builtin)
|
738 |
+
{
|
739 |
+
//If the post type does not have settings in the options array yet, we need to load some defaults
|
740 |
+
if(!array_key_exists('post_' . $post_type->name . '_anchor', $this->opt))
|
741 |
+
{
|
742 |
+
//Add the necessary option array members
|
743 |
+
$opts['post_' . $post_type->name . '_prefix'] = '';
|
744 |
+
$opts['post_' . $post_type->name . '_suffix'] = '';
|
745 |
+
$opts['post_' . $post_type->name . '_anchor'] = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
746 |
+
//Do type dependent tasks
|
747 |
+
if($post_type->hierarchical)
|
748 |
+
{
|
749 |
+
//Set post_root for hierarchical types
|
750 |
+
$opts['post_' . $post_type->name . '_root'] = get_option('page_on_front');
|
751 |
+
}
|
752 |
+
//If it is flat, we need a taxonomy selection
|
753 |
+
else
|
754 |
+
{
|
755 |
+
//Set post_root for flat types
|
756 |
+
$opts['post_' . $post_type->name . '_root'] = get_option('page_for_posts');
|
757 |
+
//Be safe and disable taxonomy display by default
|
758 |
+
$opts['post_' . $post_type->name . '_taxonomy_display'] = false;
|
759 |
+
//Loop through all of the possible taxonomies
|
760 |
+
foreach($wp_taxonomies as $taxonomy)
|
761 |
+
{
|
762 |
+
//Activate the first taxonomy valid for this post type and exit the loop
|
763 |
+
if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
|
764 |
+
{
|
765 |
+
$opts['post_' . $post_type->name . '_taxonomy_display'] = true;
|
766 |
+
$opts['post_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
|
767 |
+
break;
|
768 |
+
}
|
769 |
+
}
|
770 |
+
}
|
771 |
+
}
|
772 |
+
}
|
773 |
+
}
|
774 |
+
}
|
775 |
+
/**
|
776 |
+
* Places settings into $opts array, if missing, for the registered taxonomies
|
777 |
+
*
|
778 |
+
* @param $opts
|
779 |
+
*/
|
780 |
+
function find_taxonomies(&$opts)
|
781 |
+
{
|
782 |
+
global $wp_taxonomies;
|
783 |
+
//We'll add our custom taxonomy stuff at this time
|
784 |
+
foreach($wp_taxonomies as $taxonomy)
|
785 |
+
{
|
786 |
+
//We only want custom taxonomies
|
787 |
+
//if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && ($taxonomy->name != 'post_tag' && $taxonomy->name != 'category'))
|
788 |
+
if(!$taxonomy->_builtin)
|
789 |
+
{
|
790 |
+
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
791 |
+
if(!array_key_exists($taxonomy->name . '_anchor', $opts))
|
792 |
+
{
|
793 |
+
$opts[$taxonomy->name . '_prefix'] = '';
|
794 |
+
$opts[$taxonomy->name . '_suffix'] = '';
|
795 |
+
$opts[$taxonomy->name . '_anchor'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">', ucwords(__($taxonomy->label))), 'breadcrumb_navxt');
|
796 |
+
$opts['archive_' . $taxonomy->name . '_prefix'] = '';
|
797 |
+
$opts['archive_' . $taxonomy->name . '_suffix'] = '';
|
798 |
+
}
|
799 |
+
}
|
800 |
+
}
|
801 |
+
}
|
802 |
+
/**
|
803 |
* This inserts the value into the option name, works around WP's stupid string bool
|
804 |
*
|
805 |
* @param (string) key name where to save the value in $value
|
819 |
}
|
820 |
}
|
821 |
/**
|
|
|
|
|
822 |
* This removes the option name, WPMU safe
|
823 |
*
|
824 |
* @param (string) key name of the option to remove
|
829 |
return delete_option($key);
|
830 |
}
|
831 |
/**
|
|
|
|
|
832 |
* This updates the value into the option name, WPMU safe
|
833 |
*
|
834 |
* @param (string) key name where to save the value in $value
|
840 |
return update_option($key, $value);
|
841 |
}
|
842 |
/**
|
|
|
|
|
843 |
* This grabs the the data from the db it is WPMU safe and can place the data
|
844 |
* in a HTML form safe manner.
|
845 |
*
|
851 |
return get_option($key);
|
852 |
}
|
853 |
/**
|
|
|
|
|
854 |
* Outputs the breadcrumb trail
|
855 |
*
|
856 |
* @param (bool) $return Whether to return or echo the trail.
|
866 |
return $this->breadcrumb_trail->display($return, $linked, $reverse);
|
867 |
}
|
868 |
/**
|
|
|
|
|
869 |
* Outputs the breadcrumb trail
|
870 |
*
|
871 |
* @since 3.2.0
|
breadcrumb_navxt_class.php
CHANGED
@@ -22,43 +22,96 @@ class bcn_breadcrumb
|
|
22 |
{
|
23 |
//Our member variables
|
24 |
//The main text that will be shown
|
25 |
-
|
26 |
//Boolean, is this element linked
|
27 |
-
|
28 |
//Linked anchor contents, null if $linked == false
|
29 |
-
|
30 |
//Global prefix, outside of link tags
|
31 |
-
|
32 |
//Global suffix, outside of link tags
|
33 |
-
|
34 |
/**
|
35 |
-
* bcn_breadcrumb
|
36 |
-
*
|
37 |
* The enhanced default constructor
|
38 |
*
|
39 |
* @return
|
40 |
-
* @param
|
41 |
-
* @param
|
42 |
-
* @param
|
43 |
-
* @param
|
44 |
-
* @param
|
45 |
*/
|
46 |
function bcn_breadcrumb($title = '', $prefix = '', $suffix = '', $anchor = NULL, $linked = false)
|
47 |
{
|
48 |
//Set the title
|
49 |
-
$this->title = $title;
|
50 |
//Set the prefix
|
51 |
-
$this->prefix = $prefix;
|
52 |
//Set the suffix
|
53 |
-
$this->suffix = $suffix;
|
54 |
//Default state of unlinked
|
55 |
$this->linked = $linked;
|
56 |
//Always NULL if unlinked
|
57 |
$this->anchor = $anchor;
|
58 |
}
|
59 |
/**
|
60 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
* Sets the anchor attribute for the breadcrumb, will set $linked to true
|
63 |
*
|
64 |
* @param string $template the anchor template to use
|
@@ -70,16 +123,14 @@ class bcn_breadcrumb
|
|
70 |
//Set a safe tempalte if none was specified
|
71 |
if($template == '')
|
72 |
{
|
73 |
-
$template = '<a title="Go to %title%." href="%link%">';
|
74 |
}
|
75 |
//Set the anchor, we strip tangs from the title to prevent html validation problems
|
76 |
-
$this->anchor = str_replace('%title%', strip_tags($this->title), str_replace('%link%', $url, $template));
|
77 |
//Set linked to true since we called this function
|
78 |
$this->linked = true;
|
79 |
}
|
80 |
/**
|
81 |
-
* title_trim
|
82 |
-
*
|
83 |
* This function will intelligently trim the title to the value passed in through $max_length.
|
84 |
*
|
85 |
* @param int $max_length of the title.
|
@@ -105,8 +156,6 @@ class bcn_breadcrumb
|
|
105 |
}
|
106 |
}
|
107 |
/**
|
108 |
-
* assemble
|
109 |
-
*
|
110 |
* Assembles the parts of the breadcrumb into a html string
|
111 |
*
|
112 |
* @return string The compiled breadcrumb string
|
@@ -135,7 +184,7 @@ class bcn_breadcrumb
|
|
135 |
class bcn_breadcrumb_trail
|
136 |
{
|
137 |
//Our member variables
|
138 |
-
public $version = '3.
|
139 |
//An array of breadcrumbs
|
140 |
public $trail = array();
|
141 |
//The options
|
@@ -148,19 +197,29 @@ class bcn_breadcrumb_trail
|
|
148 |
//Initilize with default option values
|
149 |
$this->opt = array
|
150 |
(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
//Should the home page be shown
|
152 |
'home_display' => true,
|
153 |
//Title displayed when is_home() returns true
|
154 |
'home_title' => __('Blog', 'breadcrumb_navxt'),
|
155 |
//The anchor template for the home page, this is global, two keywords are available %link% and %title%
|
156 |
'home_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
157 |
-
//Should the
|
158 |
'blog_display' => true,
|
159 |
//The anchor template for the blog page only in static front page mode, this is global, two keywords are available %link% and %title%
|
160 |
'blog_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
161 |
-
//The prefix for
|
162 |
'home_prefix' => '',
|
163 |
-
//The suffix for
|
164 |
'home_suffix' => '',
|
165 |
//Separator that is placed between each item in the breadcrumb trial, but not placed before
|
166 |
//the first and not after the last breadcrumb
|
@@ -182,6 +241,8 @@ class bcn_breadcrumb_trail
|
|
182 |
'post_page_suffix' => '',
|
183 |
//The anchor template for page breadcrumbs, two keywords are available %link% and %title%
|
184 |
'post_page_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
|
|
|
|
185 |
//Paged options
|
186 |
//The prefix for paged breadcrumbs, place on all page elements and inside of current_item prefix
|
187 |
'paged_prefix' => '',
|
@@ -196,6 +257,8 @@ class bcn_breadcrumb_trail
|
|
196 |
'post_post_suffix' => '',
|
197 |
//The anchor template for post breadcrumbs, two keywords are available %link% and %title%
|
198 |
'post_post_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
|
|
|
|
199 |
//Should the trail include the taxonomy of the post
|
200 |
'post_post_taxonomy_display' => true,
|
201 |
//What taxonomy should be shown leading to the post, tag or category
|
@@ -259,8 +322,6 @@ class bcn_breadcrumb_trail
|
|
259 |
);
|
260 |
}
|
261 |
/**
|
262 |
-
* add
|
263 |
-
*
|
264 |
* Adds a breadcrumb to the breadcrumb trail
|
265 |
*
|
266 |
* @return pointer to the just added Breadcrumb
|
@@ -272,8 +333,6 @@ class bcn_breadcrumb_trail
|
|
272 |
return $this->trail[count($this->trail) - 1];
|
273 |
}
|
274 |
/**
|
275 |
-
* do_search
|
276 |
-
*
|
277 |
* A Breadcrumb Trail Filling Function
|
278 |
*
|
279 |
* This functions fills a breadcrumb for a search page.
|
@@ -287,14 +346,12 @@ class bcn_breadcrumb_trail
|
|
287 |
if(is_paged() && $this->opt['paged_display'])
|
288 |
{
|
289 |
//Figure out the hyperlink for the anchor
|
290 |
-
$url = get_settings('home'). '?s=' . str_replace(' ', '+', esc_html($s));
|
291 |
//Figure out the anchor for the search
|
292 |
$breadcrumb->set_anchor($this->opt['search_anchor'], $url);
|
293 |
}
|
294 |
}
|
295 |
/**
|
296 |
-
* do_author
|
297 |
-
*
|
298 |
* A Breadcrumb Trail Filling Function
|
299 |
*
|
300 |
* This functions fills a breadcrumb for an author page.
|
@@ -321,29 +378,27 @@ class bcn_breadcrumb_trail
|
|
321 |
}
|
322 |
}
|
323 |
/**
|
324 |
-
* post_taxonomy
|
325 |
-
*
|
326 |
* A Breadcrumb Trail Filling Function
|
327 |
*
|
328 |
* This function fills breadcrumbs for any post taxonomy.
|
329 |
* @param int $id The id of the post to figure out the taxonomy for.
|
|
|
330 |
*/
|
331 |
-
function post_taxonomy($id)
|
332 |
{
|
333 |
-
global $post;
|
334 |
//Check to see if breadcrumbs for the taxonomy of the post needs to be generated
|
335 |
-
if($this->opt['post_' . $
|
336 |
{
|
337 |
//Check if we have a date 'taxonomy' request
|
338 |
-
if($this->opt['post_' . $
|
339 |
{
|
340 |
$this->do_archive_by_date();
|
341 |
}
|
342 |
//Handle all hierarchical taxonomies, including categories
|
343 |
-
else if(is_taxonomy_hierarchical($this->opt['post_' . $
|
344 |
{
|
345 |
//Fill a temporary object with the terms
|
346 |
-
$bcn_object = get_the_terms($id, $this->opt['post_' . $
|
347 |
if(is_array($bcn_object))
|
348 |
{
|
349 |
//Now find which one has a parent, pick the first one that does
|
@@ -359,30 +414,28 @@ class bcn_breadcrumb_trail
|
|
359 |
}
|
360 |
}
|
361 |
//Fill out the term hiearchy
|
362 |
-
$this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['post_' . $
|
363 |
}
|
364 |
}
|
365 |
-
//Handle the use of
|
366 |
-
else if($this->opt['post_' . $
|
367 |
{
|
368 |
//Done with the current item, now on to the parents
|
369 |
$bcn_frontpage = get_option('page_on_front');
|
370 |
//If there is a parent page let's find it
|
371 |
if($post->post_parent && $id != $post->post_parent && $bcn_frontpage != $post->post_parent)
|
372 |
{
|
373 |
-
$this->
|
374 |
}
|
375 |
}
|
376 |
//Handle the rest of the taxonomies, including tags
|
377 |
else
|
378 |
{
|
379 |
-
$this->post_terms($id, $this->opt['post_' . $
|
380 |
}
|
381 |
}
|
382 |
}
|
383 |
/**
|
384 |
-
* post_terms
|
385 |
-
*
|
386 |
* A Breadcrumb Trail Filling Function
|
387 |
*
|
388 |
* This functions fills a breadcrumb for the terms of a post
|
@@ -411,23 +464,21 @@ class bcn_breadcrumb_trail
|
|
411 |
//Everything but the first term needs a comma separator
|
412 |
if($is_first == false)
|
413 |
{
|
414 |
-
$bcn_breadcrumb->
|
415 |
}
|
416 |
-
//This is a bit hackish, but it compiles the
|
417 |
-
$bcn_breadcrumb->
|
418 |
-
$term->name . '</a>' . $this->opt[$taxonomy . '_suffix'];
|
419 |
$is_first = false;
|
420 |
}
|
421 |
}
|
422 |
else
|
423 |
{
|
424 |
//If there are no tags, then we set the title to "Untagged"
|
425 |
-
$bcn_breadcrumb->
|
426 |
}
|
427 |
}
|
428 |
/**
|
429 |
-
* term_parents
|
430 |
-
*
|
431 |
* A Breadcrumb Trail Filling Function
|
432 |
*
|
433 |
* This recursive functions fills the trail with breadcrumbs for parent terms.
|
@@ -451,8 +502,6 @@ class bcn_breadcrumb_trail
|
|
451 |
}
|
452 |
}
|
453 |
/**
|
454 |
-
* post_parents
|
455 |
-
*
|
456 |
* A Breadcrumb Trail Filling Function
|
457 |
*
|
458 |
* This recursive functions fills the trail with breadcrumbs for parent posts/pages.
|
@@ -464,7 +513,7 @@ class bcn_breadcrumb_trail
|
|
464 |
//Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
|
465 |
$parent = get_post($id);
|
466 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
467 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(
|
468 |
$this->opt['post_' . $parent->post_type . '_suffix']));
|
469 |
//Assign the anchor properties
|
470 |
$breadcrumb->set_anchor($this->opt['post_' . $parent->post_type . '_anchor'], get_permalink($id));
|
@@ -476,8 +525,6 @@ class bcn_breadcrumb_trail
|
|
476 |
}
|
477 |
}
|
478 |
/**
|
479 |
-
* do_post_hierarchical
|
480 |
-
*
|
481 |
* A Breadcrumb Trail Filling Function
|
482 |
*
|
483 |
* This functions fills a breadcrumb for a hierarchical post/page.
|
@@ -496,8 +543,6 @@ class bcn_breadcrumb_trail
|
|
496 |
}
|
497 |
}
|
498 |
/**
|
499 |
-
* do_post_flat
|
500 |
-
*
|
501 |
* A Breadcrumb Trail Filling Function
|
502 |
*
|
503 |
* This functions fills a breadcrumb for a post.
|
@@ -508,11 +553,9 @@ class bcn_breadcrumb_trail
|
|
508 |
//Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
|
509 |
$this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']);
|
510 |
//Handle the post's taxonomy
|
511 |
-
$this->post_taxonomy($post->ID);
|
512 |
}
|
513 |
/**
|
514 |
-
* do_attachment
|
515 |
-
*
|
516 |
* A Breadcrumb Trail Filling Function
|
517 |
*
|
518 |
* This functions fills a breadcrumb for an attachment page.
|
@@ -524,10 +567,10 @@ class bcn_breadcrumb_trail
|
|
524 |
$this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['attachment_prefix'], $this->opt['attachment_suffix']);
|
525 |
//Get the parent's information
|
526 |
$parent = get_post($post->post_parent);
|
527 |
-
//We need to treat
|
528 |
-
if($parent->post_type
|
529 |
{
|
530 |
-
//Grab the page on front ID for
|
531 |
$frontpage = get_option('page_on_front');
|
532 |
//Place the rest of the page hierachy
|
533 |
$this->post_parents($post->post_parent, $frontpage);
|
@@ -535,17 +578,15 @@ class bcn_breadcrumb_trail
|
|
535 |
else
|
536 |
{
|
537 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
538 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(
|
539 |
$this->opt['post_post_prefix'], $this->opt['post_post_suffix']));
|
540 |
//Assign the anchor properties
|
541 |
$breadcrumb->set_anchor($this->opt['post_post_anchor'], get_permalink($post->post_parent));
|
542 |
//Handle the post's taxonomy
|
543 |
-
$this->post_taxonomy($post->post_parent);
|
544 |
}
|
545 |
}
|
546 |
/**
|
547 |
-
* do_archive_by_term_hierarchical
|
548 |
-
*
|
549 |
* A Breadcrumb Trail Filling Function
|
550 |
*
|
551 |
* This functions fills a breadcrumb for a hierarchical taxonomy (e.g. category) archive.
|
@@ -573,8 +614,6 @@ class bcn_breadcrumb_trail
|
|
573 |
}
|
574 |
}
|
575 |
/**
|
576 |
-
* do_archive_by_term
|
577 |
-
*
|
578 |
* A Breadcrumb Trail Filling Function
|
579 |
*
|
580 |
* This functions fills a breadcrumb for a flat taxonomy (e.g. tag) archive.
|
@@ -597,8 +636,6 @@ class bcn_breadcrumb_trail
|
|
597 |
}
|
598 |
}
|
599 |
/**
|
600 |
-
* do_archive_by_date
|
601 |
-
*
|
602 |
* A Breadcrumb Trail Filling Function
|
603 |
*
|
604 |
* This functions fills a breadcrumb for a date archive.
|
@@ -640,55 +677,84 @@ class bcn_breadcrumb_trail
|
|
640 |
}
|
641 |
}
|
642 |
/**
|
643 |
-
* do_front_page
|
644 |
-
*
|
645 |
* A Breadcrumb Trail Filling Function
|
646 |
*
|
647 |
* This functions fills a breadcrumb for the front page.
|
648 |
*/
|
649 |
function do_front_page()
|
650 |
{
|
651 |
-
global $post;
|
652 |
-
//
|
653 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
//If we're paged, let's link to the first page
|
655 |
if(is_paged() && $this->opt['paged_display'])
|
656 |
{
|
657 |
//Figure out the anchor for home page
|
658 |
-
$breadcrumb->set_anchor($this->opt['home_anchor'],
|
659 |
}
|
660 |
}
|
661 |
/**
|
662 |
-
* do_home
|
663 |
-
*
|
664 |
* A Breadcrumb Trail Filling Function
|
665 |
*
|
666 |
* This functions fills a breadcrumb for the home page.
|
667 |
*/
|
668 |
function do_home()
|
669 |
{
|
670 |
-
global $post;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
//We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
|
672 |
-
if($this->opt['blog_display'] && get_option('show_on_front') == 'page' && (
|
673 |
{
|
674 |
-
//
|
675 |
-
$posts_id
|
|
|
|
|
|
|
676 |
$frontpage_id = get_option('page_on_front');
|
677 |
-
if
|
|
|
678 |
{
|
679 |
//Get the blog page
|
680 |
$bcn_post = get_post($posts_id);
|
681 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
682 |
-
$breadcrumb = $this->add(new bcn_breadcrumb(
|
683 |
-
$this->opt['
|
684 |
//If we're not on the current item we need to setup the anchor
|
685 |
if(!is_home() || (is_paged() && $this->opt['paged_display']))
|
686 |
{
|
687 |
//Deal with the anchor
|
688 |
-
$breadcrumb->set_anchor($this->opt['blog_anchor'], get_permalink($
|
689 |
}
|
690 |
-
//Done with the
|
691 |
-
//If there is a parent
|
692 |
if($bcn_post->post_parent && $bcn_post->ID != $bcn_post->post_parent && $frontpage_id != $bcn_post->post_parent)
|
693 |
{
|
694 |
$this->post_parents($bcn_post->post_parent, $frontpage_id);
|
@@ -698,15 +764,28 @@ class bcn_breadcrumb_trail
|
|
698 |
//On everything else we need to link, but no current item (pre/suf)fixes
|
699 |
if($this->opt['home_display'])
|
700 |
{
|
701 |
-
//
|
702 |
-
|
703 |
-
|
704 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
}
|
706 |
}
|
707 |
/**
|
708 |
-
* do_404
|
709 |
-
*
|
710 |
* A Breadcrumb Trail Filling Function
|
711 |
*
|
712 |
* This functions fills a breadcrumb for 404 pages.
|
@@ -717,8 +796,6 @@ class bcn_breadcrumb_trail
|
|
717 |
$this->trail[] = new bcn_breadcrumb($this->opt['404_title'], $this->opt['404_prefix'], $this->opt['404_suffix']);
|
718 |
}
|
719 |
/**
|
720 |
-
* do_paged
|
721 |
-
*
|
722 |
* A Breadcrumb Trail Filling Function
|
723 |
*
|
724 |
* This functions fills a breadcrumb for paged pages.
|
@@ -730,8 +807,6 @@ class bcn_breadcrumb_trail
|
|
730 |
$this->trail[] = new bcn_breadcrumb($paged, $this->opt['paged_prefix'], $this->opt['paged_suffix']);
|
731 |
}
|
732 |
/**
|
733 |
-
* fill
|
734 |
-
*
|
735 |
* Breadcrumb Trail Filling Function
|
736 |
*
|
737 |
* This functions fills the breadcrumb trail.
|
@@ -830,8 +905,6 @@ class bcn_breadcrumb_trail
|
|
830 |
do_action('bcn_after_fill', $this);
|
831 |
}
|
832 |
/**
|
833 |
-
* order
|
834 |
-
*
|
835 |
* This function will either set the order of the trail to reverse key
|
836 |
* order, or make sure it is forward key ordered.
|
837 |
*
|
@@ -851,8 +924,6 @@ class bcn_breadcrumb_trail
|
|
851 |
}
|
852 |
}
|
853 |
/**
|
854 |
-
* current_item
|
855 |
-
*
|
856 |
* Performs actions specific to current item breadcrumbs. It will wrap the prefix/suffix
|
857 |
* with the current_item_prefix and current_item_suffix. Additionally, it will link the
|
858 |
* current item if current_item_linked is set to true.
|
@@ -863,9 +934,9 @@ class bcn_breadcrumb_trail
|
|
863 |
function current_item($breadcrumb)
|
864 |
{
|
865 |
//Prepend the current item prefix
|
866 |
-
$breadcrumb->
|
867 |
//Append the current item suffix
|
868 |
-
$breadcrumb->
|
869 |
//Link the current item, if required
|
870 |
if($this->opt['current_item_linked'])
|
871 |
{
|
@@ -873,8 +944,6 @@ class bcn_breadcrumb_trail
|
|
873 |
}
|
874 |
}
|
875 |
/**
|
876 |
-
* display
|
877 |
-
*
|
878 |
* Breadcrumb Creation Function
|
879 |
*
|
880 |
* This functions outputs or returns the breadcrumb trail in string form.
|
@@ -938,8 +1007,6 @@ class bcn_breadcrumb_trail
|
|
938 |
}
|
939 |
}
|
940 |
/**
|
941 |
-
* display_list
|
942 |
-
*
|
943 |
* Breadcrumb Creation Function
|
944 |
*
|
945 |
* This functions outputs or returns the breadcrumb trail in list form.
|
22 |
{
|
23 |
//Our member variables
|
24 |
//The main text that will be shown
|
25 |
+
protected $title;
|
26 |
//Boolean, is this element linked
|
27 |
+
protected $linked;
|
28 |
//Linked anchor contents, null if $linked == false
|
29 |
+
protected $anchor;
|
30 |
//Global prefix, outside of link tags
|
31 |
+
protected $prefix;
|
32 |
//Global suffix, outside of link tags
|
33 |
+
protected $suffix;
|
34 |
/**
|
|
|
|
|
35 |
* The enhanced default constructor
|
36 |
*
|
37 |
* @return
|
38 |
+
* @param string $title[optional]
|
39 |
+
* @param string $prefix[optional]
|
40 |
+
* @param string $suffix[optional]
|
41 |
+
* @param string $anchor[optional]
|
42 |
+
* @param bool $linked[optional]
|
43 |
*/
|
44 |
function bcn_breadcrumb($title = '', $prefix = '', $suffix = '', $anchor = NULL, $linked = false)
|
45 |
{
|
46 |
//Set the title
|
47 |
+
$this->title = __($title, 'breadcrumb_navxt');
|
48 |
//Set the prefix
|
49 |
+
$this->prefix = __($prefix, 'breadcrumb_navxt');
|
50 |
//Set the suffix
|
51 |
+
$this->suffix = __($suffix, 'breadcrumb_navxt');
|
52 |
//Default state of unlinked
|
53 |
$this->linked = $linked;
|
54 |
//Always NULL if unlinked
|
55 |
$this->anchor = $anchor;
|
56 |
}
|
57 |
/**
|
58 |
+
* Function to set the protected title member
|
59 |
+
*
|
60 |
+
* @param string $title
|
61 |
+
*/
|
62 |
+
function set_title($title)
|
63 |
+
{
|
64 |
+
//Set the title
|
65 |
+
$this->title = __($title, 'breadcrumb_navxt');
|
66 |
+
}
|
67 |
+
/**
|
68 |
+
* Function to set the protected prefix member
|
69 |
+
*
|
70 |
+
* @param string $prefix
|
71 |
+
*/
|
72 |
+
function set_prefix($prefix)
|
73 |
+
{
|
74 |
+
//Set the prefix
|
75 |
+
$this->prefix = __($prefix, 'breadcrumb_navxt');
|
76 |
+
}
|
77 |
+
/**
|
78 |
+
* Function to set the protected suffix member
|
79 |
*
|
80 |
+
* @param string $suffix
|
81 |
+
*/
|
82 |
+
function set_suffix($suffix)
|
83 |
+
{
|
84 |
+
//Set the suffix
|
85 |
+
$this->suffix = __($suffix, 'breadcrumb_navxt');
|
86 |
+
}
|
87 |
+
/**
|
88 |
+
* Function to get the protected title member
|
89 |
+
* @return $this->title
|
90 |
+
*/
|
91 |
+
function get_title()
|
92 |
+
{
|
93 |
+
//Return the title
|
94 |
+
return $this->title;
|
95 |
+
}
|
96 |
+
/**
|
97 |
+
* Function to get the protected prefix member
|
98 |
+
* @return $this->prefix
|
99 |
+
*/
|
100 |
+
function get_prefix()
|
101 |
+
{
|
102 |
+
//Return the prefix
|
103 |
+
return $this->prefix;
|
104 |
+
}
|
105 |
+
/**
|
106 |
+
* Function to get the protected suffix member
|
107 |
+
* @return $this->suffix
|
108 |
+
*/
|
109 |
+
function get_suffix()
|
110 |
+
{
|
111 |
+
//Return the suffix
|
112 |
+
return $this->suffix;
|
113 |
+
}
|
114 |
+
/**
|
115 |
* Sets the anchor attribute for the breadcrumb, will set $linked to true
|
116 |
*
|
117 |
* @param string $template the anchor template to use
|
123 |
//Set a safe tempalte if none was specified
|
124 |
if($template == '')
|
125 |
{
|
126 |
+
$template = __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt');
|
127 |
}
|
128 |
//Set the anchor, we strip tangs from the title to prevent html validation problems
|
129 |
+
$this->anchor = str_replace('%title%', strip_tags($this->title), str_replace('%link%', $url, __($template, 'breadcrumb_navxt')));
|
130 |
//Set linked to true since we called this function
|
131 |
$this->linked = true;
|
132 |
}
|
133 |
/**
|
|
|
|
|
134 |
* This function will intelligently trim the title to the value passed in through $max_length.
|
135 |
*
|
136 |
* @param int $max_length of the title.
|
156 |
}
|
157 |
}
|
158 |
/**
|
|
|
|
|
159 |
* Assembles the parts of the breadcrumb into a html string
|
160 |
*
|
161 |
* @return string The compiled breadcrumb string
|
184 |
class bcn_breadcrumb_trail
|
185 |
{
|
186 |
//Our member variables
|
187 |
+
public $version = '3.7.0';
|
188 |
//An array of breadcrumbs
|
189 |
public $trail = array();
|
190 |
//The options
|
197 |
//Initilize with default option values
|
198 |
$this->opt = array
|
199 |
(
|
200 |
+
//Should the mainsite be shown
|
201 |
+
'mainsite_display' => true,
|
202 |
+
//Title displayed when for the main site
|
203 |
+
'mainsite_title' => __('Home', 'breadcrumb_navxt'),
|
204 |
+
//The anchor template for the main site, this is global, two keywords are available %link% and %title%
|
205 |
+
'mainsite_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
206 |
+
//The prefix for mainsite breadcrumbs, placed inside of current_item prefix
|
207 |
+
'mainsite_prefix' => '',
|
208 |
+
//The prefix for mainsite breadcrumbs, placed inside of current_item prefix
|
209 |
+
'mainsite_suffix' => '',
|
210 |
//Should the home page be shown
|
211 |
'home_display' => true,
|
212 |
//Title displayed when is_home() returns true
|
213 |
'home_title' => __('Blog', 'breadcrumb_navxt'),
|
214 |
//The anchor template for the home page, this is global, two keywords are available %link% and %title%
|
215 |
'home_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
216 |
+
//Should the blog page be shown globally
|
217 |
'blog_display' => true,
|
218 |
//The anchor template for the blog page only in static front page mode, this is global, two keywords are available %link% and %title%
|
219 |
'blog_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
220 |
+
//The prefix for home breadcrumbs, placed inside of current_item prefix
|
221 |
'home_prefix' => '',
|
222 |
+
//The suffix for home breadcrumbs, placed inside of current_item suffix
|
223 |
'home_suffix' => '',
|
224 |
//Separator that is placed between each item in the breadcrumb trial, but not placed before
|
225 |
//the first and not after the last breadcrumb
|
241 |
'post_page_suffix' => '',
|
242 |
//The anchor template for page breadcrumbs, two keywords are available %link% and %title%
|
243 |
'post_page_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
244 |
+
//Just a link to the page on front property
|
245 |
+
'post_page_root' => get_option('page_on_front'),
|
246 |
//Paged options
|
247 |
//The prefix for paged breadcrumbs, place on all page elements and inside of current_item prefix
|
248 |
'paged_prefix' => '',
|
257 |
'post_post_suffix' => '',
|
258 |
//The anchor template for post breadcrumbs, two keywords are available %link% and %title%
|
259 |
'post_post_anchor' => __('<a title="Go to %title%." href="%link%">', 'breadcrumb_navxt'),
|
260 |
+
//Just a link for the page for posts
|
261 |
+
'post_post_root' => get_option('page_for_posts'),
|
262 |
//Should the trail include the taxonomy of the post
|
263 |
'post_post_taxonomy_display' => true,
|
264 |
//What taxonomy should be shown leading to the post, tag or category
|
322 |
);
|
323 |
}
|
324 |
/**
|
|
|
|
|
325 |
* Adds a breadcrumb to the breadcrumb trail
|
326 |
*
|
327 |
* @return pointer to the just added Breadcrumb
|
333 |
return $this->trail[count($this->trail) - 1];
|
334 |
}
|
335 |
/**
|
|
|
|
|
336 |
* A Breadcrumb Trail Filling Function
|
337 |
*
|
338 |
* This functions fills a breadcrumb for a search page.
|
346 |
if(is_paged() && $this->opt['paged_display'])
|
347 |
{
|
348 |
//Figure out the hyperlink for the anchor
|
349 |
+
$url = get_settings('home') . '?s=' . str_replace(' ', '+', esc_html($s));
|
350 |
//Figure out the anchor for the search
|
351 |
$breadcrumb->set_anchor($this->opt['search_anchor'], $url);
|
352 |
}
|
353 |
}
|
354 |
/**
|
|
|
|
|
355 |
* A Breadcrumb Trail Filling Function
|
356 |
*
|
357 |
* This functions fills a breadcrumb for an author page.
|
378 |
}
|
379 |
}
|
380 |
/**
|
|
|
|
|
381 |
* A Breadcrumb Trail Filling Function
|
382 |
*
|
383 |
* This function fills breadcrumbs for any post taxonomy.
|
384 |
* @param int $id The id of the post to figure out the taxonomy for.
|
385 |
+
* @param sting $type The post type of the post to figure out the taxonomy for.
|
386 |
*/
|
387 |
+
function post_taxonomy($id, $type)
|
388 |
{
|
|
|
389 |
//Check to see if breadcrumbs for the taxonomy of the post needs to be generated
|
390 |
+
if($this->opt['post_' . $type . '_taxonomy_display'])
|
391 |
{
|
392 |
//Check if we have a date 'taxonomy' request
|
393 |
+
if($this->opt['post_' . $type . '_taxonomy_type'] == 'date')
|
394 |
{
|
395 |
$this->do_archive_by_date();
|
396 |
}
|
397 |
//Handle all hierarchical taxonomies, including categories
|
398 |
+
else if(is_taxonomy_hierarchical($this->opt['post_' . $type . '_taxonomy_type']))
|
399 |
{
|
400 |
//Fill a temporary object with the terms
|
401 |
+
$bcn_object = get_the_terms($id, $this->opt['post_' . $type . '_taxonomy_type']);
|
402 |
if(is_array($bcn_object))
|
403 |
{
|
404 |
//Now find which one has a parent, pick the first one that does
|
414 |
}
|
415 |
}
|
416 |
//Fill out the term hiearchy
|
417 |
+
$this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['post_' . $type . '_taxonomy_type']);
|
418 |
}
|
419 |
}
|
420 |
+
//Handle the use of hierarchical posts as the 'taxonomy'
|
421 |
+
else if(is_post_type_hierarchical($this->opt['post_' . $type . '_taxonomy_type']))
|
422 |
{
|
423 |
//Done with the current item, now on to the parents
|
424 |
$bcn_frontpage = get_option('page_on_front');
|
425 |
//If there is a parent page let's find it
|
426 |
if($post->post_parent && $id != $post->post_parent && $bcn_frontpage != $post->post_parent)
|
427 |
{
|
428 |
+
$this->post_parents($post->post_parent, $bcn_frontpage);
|
429 |
}
|
430 |
}
|
431 |
//Handle the rest of the taxonomies, including tags
|
432 |
else
|
433 |
{
|
434 |
+
$this->post_terms($id, $this->opt['post_' . $type . '_taxonomy_type']);
|
435 |
}
|
436 |
}
|
437 |
}
|
438 |
/**
|
|
|
|
|
439 |
* A Breadcrumb Trail Filling Function
|
440 |
*
|
441 |
* This functions fills a breadcrumb for the terms of a post
|
464 |
//Everything but the first term needs a comma separator
|
465 |
if($is_first == false)
|
466 |
{
|
467 |
+
$bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . ', ');
|
468 |
}
|
469 |
+
//This is a bit hackish, but it compiles the term anchor and appends it to the current breadcrumb title
|
470 |
+
$bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . $this->opt[$taxonomy . '_prefix'] . str_replace('%title%', $term->name, str_replace('%link%', get_term_link($term, $taxonomy), $this->opt[$taxonomy . '_anchor'])) .
|
471 |
+
$term->name . '</a>' . $this->opt[$taxonomy . '_suffix']);
|
472 |
$is_first = false;
|
473 |
}
|
474 |
}
|
475 |
else
|
476 |
{
|
477 |
//If there are no tags, then we set the title to "Untagged"
|
478 |
+
$bcn_breadcrumb->set_title(__('Un' . $taxonomy->name, 'breadcrumb_navxt'));
|
479 |
}
|
480 |
}
|
481 |
/**
|
|
|
|
|
482 |
* A Breadcrumb Trail Filling Function
|
483 |
*
|
484 |
* This recursive functions fills the trail with breadcrumbs for parent terms.
|
502 |
}
|
503 |
}
|
504 |
/**
|
|
|
|
|
505 |
* A Breadcrumb Trail Filling Function
|
506 |
*
|
507 |
* This recursive functions fills the trail with breadcrumbs for parent posts/pages.
|
513 |
//Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
|
514 |
$parent = get_post($id);
|
515 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
516 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($id), $this->opt['post_' . $parent->post_type . '_prefix'],
|
517 |
$this->opt['post_' . $parent->post_type . '_suffix']));
|
518 |
//Assign the anchor properties
|
519 |
$breadcrumb->set_anchor($this->opt['post_' . $parent->post_type . '_anchor'], get_permalink($id));
|
525 |
}
|
526 |
}
|
527 |
/**
|
|
|
|
|
528 |
* A Breadcrumb Trail Filling Function
|
529 |
*
|
530 |
* This functions fills a breadcrumb for a hierarchical post/page.
|
543 |
}
|
544 |
}
|
545 |
/**
|
|
|
|
|
546 |
* A Breadcrumb Trail Filling Function
|
547 |
*
|
548 |
* This functions fills a breadcrumb for a post.
|
553 |
//Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
|
554 |
$this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['post_' . $post->post_type . '_prefix'], $this->opt['post_' . $post->post_type . '_suffix']);
|
555 |
//Handle the post's taxonomy
|
556 |
+
$this->post_taxonomy($post->ID, $post->post_type);
|
557 |
}
|
558 |
/**
|
|
|
|
|
559 |
* A Breadcrumb Trail Filling Function
|
560 |
*
|
561 |
* This functions fills a breadcrumb for an attachment page.
|
567 |
$this->trail[] = new bcn_breadcrumb(get_the_title(), $this->opt['attachment_prefix'], $this->opt['attachment_suffix']);
|
568 |
//Get the parent's information
|
569 |
$parent = get_post($post->post_parent);
|
570 |
+
//We need to treat flat and hiearchical post attachment hierachies differently
|
571 |
+
if(is_post_type_hierarchical($parent->post_type))
|
572 |
{
|
573 |
+
//Grab the page on front ID for post_parents
|
574 |
$frontpage = get_option('page_on_front');
|
575 |
//Place the rest of the page hierachy
|
576 |
$this->post_parents($post->post_parent, $frontpage);
|
578 |
else
|
579 |
{
|
580 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
581 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($post->post_parent),
|
582 |
$this->opt['post_post_prefix'], $this->opt['post_post_suffix']));
|
583 |
//Assign the anchor properties
|
584 |
$breadcrumb->set_anchor($this->opt['post_post_anchor'], get_permalink($post->post_parent));
|
585 |
//Handle the post's taxonomy
|
586 |
+
$this->post_taxonomy($post->post_parent, $parent->post_type);
|
587 |
}
|
588 |
}
|
589 |
/**
|
|
|
|
|
590 |
* A Breadcrumb Trail Filling Function
|
591 |
*
|
592 |
* This functions fills a breadcrumb for a hierarchical taxonomy (e.g. category) archive.
|
614 |
}
|
615 |
}
|
616 |
/**
|
|
|
|
|
617 |
* A Breadcrumb Trail Filling Function
|
618 |
*
|
619 |
* This functions fills a breadcrumb for a flat taxonomy (e.g. tag) archive.
|
636 |
}
|
637 |
}
|
638 |
/**
|
|
|
|
|
639 |
* A Breadcrumb Trail Filling Function
|
640 |
*
|
641 |
* This functions fills a breadcrumb for a date archive.
|
677 |
}
|
678 |
}
|
679 |
/**
|
|
|
|
|
680 |
* A Breadcrumb Trail Filling Function
|
681 |
*
|
682 |
* This functions fills a breadcrumb for the front page.
|
683 |
*/
|
684 |
function do_front_page()
|
685 |
{
|
686 |
+
global $post, $current_site;
|
687 |
+
//If we have a multi site and are not on the main site we may need to add a breadcrumb for the main site
|
688 |
+
if($this->opt['mainsite_display'] && !is_main_site())
|
689 |
+
{
|
690 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
691 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_bloginfo('name'), $this->opt['home_prefix'], $this->opt['home_suffix']));
|
692 |
+
//Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
693 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['mainsite_title'], $this->opt['mainsite_prefix'], $this->opt['mainsite_suffix']));
|
694 |
+
//Deal with the anchor
|
695 |
+
$breadcrumb->set_anchor($this->opt['mainsite_anchor'], get_home_url($current_site->blog_id));
|
696 |
+
}
|
697 |
+
else
|
698 |
+
{
|
699 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
700 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['home_title'], $this->opt['home_prefix'], $this->opt['home_suffix']));
|
701 |
+
}
|
702 |
//If we're paged, let's link to the first page
|
703 |
if(is_paged() && $this->opt['paged_display'])
|
704 |
{
|
705 |
//Figure out the anchor for home page
|
706 |
+
$breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
|
707 |
}
|
708 |
}
|
709 |
/**
|
|
|
|
|
710 |
* A Breadcrumb Trail Filling Function
|
711 |
*
|
712 |
* This functions fills a breadcrumb for the home page.
|
713 |
*/
|
714 |
function do_home()
|
715 |
{
|
716 |
+
global $post, $wp_query, $wp_taxonomies, $current_site;
|
717 |
+
//Simmilar to using $post, but for things $post doesn't cover
|
718 |
+
$type = $wp_query->get_queried_object();
|
719 |
+
//We need to do special things for custom post types and their archives
|
720 |
+
if((is_singular() || is_archive()) && $type->post_type != 'post' && $type->post_type != 'page')
|
721 |
+
{
|
722 |
+
//This will assign a ID for root page of a custom post
|
723 |
+
if(is_numeric($this->opt['post_' . $type->post_type . '_root']))
|
724 |
+
{
|
725 |
+
$posts_id = $this->opt['post_' . $type->post_type . '_root'];
|
726 |
+
}
|
727 |
+
//This will assign a ID for root page of a custom post's taxonomy archive
|
728 |
+
else if(is_numeric($this->opt['post_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_root']))
|
729 |
+
{
|
730 |
+
$posts_id = $this->opt['post_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_root'];
|
731 |
+
}
|
732 |
+
}
|
733 |
//We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
|
734 |
+
if(isset($posts_id) || $this->opt['blog_display'] && get_option('show_on_front') == 'page' && (is_home() || (is_single() && !is_page()) || (is_archive() && !is_author())))
|
735 |
{
|
736 |
+
//If we entered here with a posts page, we need to set the id
|
737 |
+
if(!isset($posts_id))
|
738 |
+
{
|
739 |
+
$posts_id = get_option('page_for_posts');
|
740 |
+
}
|
741 |
$frontpage_id = get_option('page_on_front');
|
742 |
+
//We'll have to check if this ID is valid, e.g. user has specified a posts page
|
743 |
+
if($posts_id && $posts_id != $frontpage_id)
|
744 |
{
|
745 |
//Get the blog page
|
746 |
$bcn_post = get_post($posts_id);
|
747 |
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
748 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($posts_id), $this->opt['post_page_prefix'],
|
749 |
+
$this->opt['post_page_suffix']));
|
750 |
//If we're not on the current item we need to setup the anchor
|
751 |
if(!is_home() || (is_paged() && $this->opt['paged_display']))
|
752 |
{
|
753 |
//Deal with the anchor
|
754 |
+
$breadcrumb->set_anchor($this->opt['blog_anchor'], get_permalink($posts_id));
|
755 |
}
|
756 |
+
//Done with the "root", now on to the parents
|
757 |
+
//If there is a parent post let's find it
|
758 |
if($bcn_post->post_parent && $bcn_post->ID != $bcn_post->post_parent && $frontpage_id != $bcn_post->post_parent)
|
759 |
{
|
760 |
$this->post_parents($bcn_post->post_parent, $frontpage_id);
|
764 |
//On everything else we need to link, but no current item (pre/suf)fixes
|
765 |
if($this->opt['home_display'])
|
766 |
{
|
767 |
+
//If we have a multi site and are not on the main site we may need to add a breadcrumb for the main site
|
768 |
+
if($this->opt['mainsite_display'] && !is_main_site())
|
769 |
+
{
|
770 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
771 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_bloginfo('name'), $this->opt['home_prefix'], $this->opt['home_suffix']));
|
772 |
+
//Deal with the anchor
|
773 |
+
$breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
|
774 |
+
//Place the main site breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
775 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['mainsite_title'], $this->opt['mainsite_prefix'], $this->opt['mainsite_suffix']));
|
776 |
+
//Deal with the anchor
|
777 |
+
$breadcrumb->set_anchor($this->opt['mainsite_anchor'], get_home_url($current_site->blog_id));
|
778 |
+
}
|
779 |
+
else
|
780 |
+
{
|
781 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
782 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['home_title'], $this->opt['home_prefix'], $this->opt['home_suffix']));
|
783 |
+
//Deal with the anchor
|
784 |
+
$breadcrumb->set_anchor($this->opt['home_anchor'], get_home_url());
|
785 |
+
}
|
786 |
}
|
787 |
}
|
788 |
/**
|
|
|
|
|
789 |
* A Breadcrumb Trail Filling Function
|
790 |
*
|
791 |
* This functions fills a breadcrumb for 404 pages.
|
796 |
$this->trail[] = new bcn_breadcrumb($this->opt['404_title'], $this->opt['404_prefix'], $this->opt['404_suffix']);
|
797 |
}
|
798 |
/**
|
|
|
|
|
799 |
* A Breadcrumb Trail Filling Function
|
800 |
*
|
801 |
* This functions fills a breadcrumb for paged pages.
|
807 |
$this->trail[] = new bcn_breadcrumb($paged, $this->opt['paged_prefix'], $this->opt['paged_suffix']);
|
808 |
}
|
809 |
/**
|
|
|
|
|
810 |
* Breadcrumb Trail Filling Function
|
811 |
*
|
812 |
* This functions fills the breadcrumb trail.
|
905 |
do_action('bcn_after_fill', $this);
|
906 |
}
|
907 |
/**
|
|
|
|
|
908 |
* This function will either set the order of the trail to reverse key
|
909 |
* order, or make sure it is forward key ordered.
|
910 |
*
|
924 |
}
|
925 |
}
|
926 |
/**
|
|
|
|
|
927 |
* Performs actions specific to current item breadcrumbs. It will wrap the prefix/suffix
|
928 |
* with the current_item_prefix and current_item_suffix. Additionally, it will link the
|
929 |
* current item if current_item_linked is set to true.
|
934 |
function current_item($breadcrumb)
|
935 |
{
|
936 |
//Prepend the current item prefix
|
937 |
+
$breadcrumb->set_prefix($this->opt['current_item_prefix'] . $breadcrumb->get_prefix());
|
938 |
//Append the current item suffix
|
939 |
+
$breadcrumb->set_suffix($breadcrumb->get_suffix() . $this->opt['current_item_suffix']);
|
940 |
//Link the current item, if required
|
941 |
if($this->opt['current_item_linked'])
|
942 |
{
|
944 |
}
|
945 |
}
|
946 |
/**
|
|
|
|
|
947 |
* Breadcrumb Creation Function
|
948 |
*
|
949 |
* This functions outputs or returns the breadcrumb trail in string form.
|
1007 |
}
|
1008 |
}
|
1009 |
/**
|
|
|
|
|
1010 |
* Breadcrumb Creation Function
|
1011 |
*
|
1012 |
* This functions outputs or returns the breadcrumb trail in list form.
|
languages/breadcrumb-navxt.pot
CHANGED
@@ -8,7 +8,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-
|
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"
|
@@ -16,552 +16,619 @@ msgstr ""
|
|
16 |
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
-
#: breadcrumb_navxt_admin.php:
|
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:
|
27 |
msgid "Insufficient privileges to proceed."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: breadcrumb_navxt_admin.php:
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: breadcrumb_navxt_admin.php:
|
38 |
msgid "Settings successfully saved."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: breadcrumb_navxt_admin.php:
|
42 |
msgid "Undo the options save."
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: breadcrumb_navxt_admin.php:
|
46 |
#, php-format
|
47 |
msgid ""
|
48 |
"Tips for the settings are located below select options. Please refer to the %"
|
49 |
"sdocumentation%s for more information."
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: breadcrumb_navxt_admin.php:
|
53 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
msgid "Import"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: breadcrumb_navxt_admin.php:
|
61 |
msgid "Export"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: breadcrumb_navxt_admin.php:
|
65 |
msgid "Reset"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: breadcrumb_navxt_admin.php:
|
69 |
msgid "Breadcrumb NavXT Settings"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: breadcrumb_navxt_admin.php:
|
73 |
msgid "General"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: breadcrumb_navxt_admin.php:
|
77 |
msgid "Breadcrumb Separator"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: breadcrumb_navxt_admin.php:
|
81 |
msgid "Placed in between each breadcrumb."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: breadcrumb_navxt_admin.php:
|
85 |
msgid "Breadcrumb Max Title Length"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: breadcrumb_navxt_admin.php:
|
89 |
msgid "Home Breadcrumb"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: breadcrumb_navxt_admin.php:
|
93 |
msgid "Place the home breadcrumb in the trail."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: breadcrumb_navxt_admin.php:
|
97 |
msgid "Home Title: "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: breadcrumb_navxt_admin.php:
|
101 |
-
msgid "Blog Breadcrumb"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: breadcrumb_navxt_admin.php:515
|
105 |
-
msgid "Place the blog breadcrumb in the trail."
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: breadcrumb_navxt_admin.php:516
|
109 |
msgid "Home Prefix"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: breadcrumb_navxt_admin.php:
|
113 |
msgid "Home Suffix"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: breadcrumb_navxt_admin.php:
|
117 |
msgid "Home Anchor"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: breadcrumb_navxt_admin.php:
|
121 |
msgid "The anchor template for the home breadcrumb."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "Blog Anchor"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: breadcrumb_navxt_admin.php:
|
129 |
msgid ""
|
130 |
"The anchor template for the blog breadcrumb, used only in static front page "
|
131 |
"environments."
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid "Current Item"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: breadcrumb_navxt_admin.php:
|
139 |
msgid "Link Current Item"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: breadcrumb_navxt_admin.php:
|
143 |
msgid "Yes"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: breadcrumb_navxt_admin.php:
|
147 |
msgid "Current Item Prefix"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: breadcrumb_navxt_admin.php:
|
151 |
msgid ""
|
152 |
"This is always placed in front of the last breadcrumb in the trail, before "
|
153 |
"any other prefixes for that breadcrumb."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: breadcrumb_navxt_admin.php:
|
157 |
msgid "Current Item Suffix"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: breadcrumb_navxt_admin.php:
|
161 |
msgid ""
|
162 |
"This is always placed after the last breadcrumb in the trail, and after any "
|
163 |
"other prefixes for that breadcrumb."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: breadcrumb_navxt_admin.php:
|
167 |
msgid "Current Item Anchor"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: breadcrumb_navxt_admin.php:
|
171 |
msgid "The anchor template for current item breadcrumbs."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: breadcrumb_navxt_admin.php:
|
175 |
msgid "Paged Breadcrumb"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: breadcrumb_navxt_admin.php:
|
179 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: breadcrumb_navxt_admin.php:
|
183 |
msgid ""
|
184 |
"Indicates that the user is on a page other than the first on paginated posts/"
|
185 |
"pages."
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: breadcrumb_navxt_admin.php:
|
189 |
msgid "Paged Prefix"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: breadcrumb_navxt_admin.php:
|
193 |
msgid "Paged Suffix"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: breadcrumb_navxt_admin.php:
|
197 |
msgid "Posts & Pages"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: breadcrumb_navxt_admin.php:
|
201 |
msgid "Post Prefix"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: breadcrumb_navxt_admin.php:
|
205 |
msgid "Post Suffix"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: breadcrumb_navxt_admin.php:
|
209 |
msgid "Post Anchor"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: breadcrumb_navxt_admin.php:
|
213 |
msgid "The anchor template for post breadcrumbs."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: breadcrumb_navxt_admin.php:
|
217 |
msgid "Post Taxonomy Display"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: breadcrumb_navxt_admin.php:
|
221 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: breadcrumb_navxt_admin.php:
|
225 |
msgid "Post Taxonomy"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: breadcrumb_navxt_admin.php:
|
229 |
msgid "Categories"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: breadcrumb_navxt_admin.php:
|
233 |
msgid "Dates"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: breadcrumb_navxt_admin.php:
|
237 |
msgid "Tags"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: breadcrumb_navxt_admin.php:
|
241 |
msgid "Pages"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: breadcrumb_navxt_admin.php:
|
245 |
msgid "The taxonomy which the breadcrumb trail will show."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: breadcrumb_navxt_admin.php:
|
249 |
msgid "Page Prefix"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: breadcrumb_navxt_admin.php:
|
253 |
msgid "Page Suffix"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: breadcrumb_navxt_admin.php:
|
257 |
msgid "Page Anchor"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: breadcrumb_navxt_admin.php:
|
261 |
msgid "The anchor template for page breadcrumbs."
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: breadcrumb_navxt_admin.php:
|
265 |
msgid "Attachment Prefix"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: breadcrumb_navxt_admin.php:
|
269 |
msgid "Attachment Suffix"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: breadcrumb_navxt_admin.php:
|
273 |
#, php-format
|
274 |
msgid "%s Prefix"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: breadcrumb_navxt_admin.php:
|
278 |
#, php-format
|
279 |
msgid "%s Suffix"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: breadcrumb_navxt_admin.php:
|
283 |
#, php-format
|
284 |
msgid "%s Anchor"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: breadcrumb_navxt_admin.php:
|
288 |
#, php-format
|
289 |
msgid "The anchor template for %s breadcrumbs."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
#, php-format
|
294 |
msgid "%s Taxonomy Display"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
#, php-format
|
299 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: breadcrumb_navxt_admin.php:
|
303 |
#, php-format
|
304 |
msgid "%s Taxonomy"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: breadcrumb_navxt_admin.php:
|
308 |
msgid "Category Prefix"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: breadcrumb_navxt_admin.php:
|
312 |
msgid "Applied before the anchor on all category breadcrumbs."
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: breadcrumb_navxt_admin.php:
|
316 |
msgid "Category Suffix"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: breadcrumb_navxt_admin.php:
|
320 |
msgid "Applied after the anchor on all category breadcrumbs."
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: breadcrumb_navxt_admin.php:
|
324 |
msgid "Category Anchor"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: breadcrumb_navxt_admin.php:
|
328 |
msgid "The anchor template for category breadcrumbs."
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: breadcrumb_navxt_admin.php:
|
332 |
msgid "Archive by Category Prefix"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: breadcrumb_navxt_admin.php:
|
336 |
msgid ""
|
337 |
"Applied before the title of the current item breadcrumb on an archive by "
|
338 |
"cateogry page."
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Archive by Category Suffix"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid ""
|
347 |
"Applied after the title of the current item breadcrumb on an archive by "
|
348 |
"cateogry page."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: breadcrumb_navxt_admin.php:
|
352 |
msgid "Tag Prefix"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: breadcrumb_navxt_admin.php:
|
356 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: breadcrumb_navxt_admin.php:
|
360 |
msgid "Tag Suffix"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: breadcrumb_navxt_admin.php:
|
364 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: breadcrumb_navxt_admin.php:
|
368 |
msgid "Tag Anchor"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: breadcrumb_navxt_admin.php:
|
372 |
msgid "The anchor template for tag breadcrumbs."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: breadcrumb_navxt_admin.php:
|
376 |
msgid "Archive by Tag Prefix"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: breadcrumb_navxt_admin.php:
|
380 |
msgid ""
|
381 |
"Applied before the title of the current item breadcrumb on an archive by tag "
|
382 |
"page."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: breadcrumb_navxt_admin.php:
|
386 |
msgid "Archive by Tag Suffix"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
msgid ""
|
391 |
"Applied after the title of the current item breadcrumb on an archive by tag "
|
392 |
"page."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: breadcrumb_navxt_admin.php:
|
396 |
#, php-format
|
397 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: breadcrumb_navxt_admin.php:
|
401 |
#, php-format
|
402 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: breadcrumb_navxt_admin.php:
|
406 |
#, php-format
|
407 |
msgid "Archive by %s Prefix"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: breadcrumb_navxt_admin.php:
|
411 |
#, php-format
|
412 |
msgid ""
|
413 |
"Applied before the title of the current item breadcrumb on an archive by %s "
|
414 |
"page."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: breadcrumb_navxt_admin.php:
|
418 |
#, php-format
|
419 |
msgid "Archive by %s Suffix"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: breadcrumb_navxt_admin.php:
|
423 |
#, php-format
|
424 |
msgid ""
|
425 |
"Applied after the title of the current item breadcrumb on an archive by %s "
|
426 |
"page."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Date Archives"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "Date Anchor"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "The anchor template for date breadcrumbs."
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
442 |
msgid "Archive by Date Prefix"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "Applied before the anchor on all date breadcrumbs."
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Archive by Date Suffix"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "Applied after the anchor on all date breadcrumbs."
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "Miscellaneous"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "Author Prefix"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "Author Suffix"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "Author Display Format"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid ""
|
475 |
"display_name uses the name specified in \"Display name publicly as\" under "
|
476 |
"the user profile the others correspond to options in the user profile."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: breadcrumb_navxt_admin.php:
|
480 |
msgid "Search Prefix"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: breadcrumb_navxt_admin.php:
|
484 |
msgid "Search Suffix"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: breadcrumb_navxt_admin.php:
|
488 |
msgid "Search Anchor"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: breadcrumb_navxt_admin.php:
|
492 |
msgid ""
|
493 |
"The anchor template for search breadcrumbs, used only when the search "
|
494 |
"results span several pages."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: breadcrumb_navxt_admin.php:
|
498 |
msgid "404 Title"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: breadcrumb_navxt_admin.php:
|
502 |
msgid "404 Prefix"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: breadcrumb_navxt_admin.php:
|
506 |
msgid "404 Suffix"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: breadcrumb_navxt_admin.php:
|
510 |
msgid "Save Changes"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: breadcrumb_navxt_class.php:
|
514 |
msgid "Blog"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: breadcrumb_navxt_class.php:
|
518 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: breadcrumb_navxt_class.php:
|
522 |
msgid "404"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: breadcrumb_navxt_class.php:
|
526 |
msgid "Search results for '"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: breadcrumb_navxt_class.php:
|
530 |
msgid ""
|
531 |
"<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
|
532 |
"%\">"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: breadcrumb_navxt_class.php:
|
536 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: breadcrumb_navxt_class.php:
|
540 |
msgid "Articles by: "
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: breadcrumb_navxt_class.php:
|
544 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: breadcrumb_navxt_class.php:
|
548 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: breadcrumb_navxt_class.php:
|
552 |
msgid "Archive by category '"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: breadcrumb_navxt_class.php:
|
556 |
msgid "Archive by tag '"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: breadcrumb_navxt_class.php:
|
560 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: breadcrumb_navxt_class.php:
|
564 |
-
msgid "
|
565 |
msgstr ""
|
566 |
|
567 |
#: breadcrumb_navxt_widget.php:24
|
@@ -588,61 +655,77 @@ msgstr ""
|
|
588 |
msgid "Hide the trail on the front page"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: mtekk_admin_class.php:
|
592 |
msgid "Undo"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
596 |
msgid "Settings"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
600 |
msgid "Settings successfully imported from the uploaded file."
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: mtekk_admin_class.php:
|
604 |
msgid "Undo the options import."
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: mtekk_admin_class.php:
|
608 |
msgid "Importing settings from file failed."
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: mtekk_admin_class.php:
|
612 |
msgid "Settings successfully reset to the default values."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: mtekk_admin_class.php:
|
616 |
msgid "Undo the options reset."
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: mtekk_admin_class.php:
|
620 |
msgid "Settings successfully undid the last operation."
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: mtekk_admin_class.php:
|
624 |
msgid "Undo the last undo operation."
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
628 |
#, php-format
|
629 |
msgid "Get help with \"%s\""
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: mtekk_admin_class.php:
|
633 |
msgid "Import/Export/Reset Settings"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: mtekk_admin_class.php:
|
637 |
msgid ""
|
638 |
"Import settings from a XML file, export the current settings to a XML file, "
|
639 |
"or reset to the default settings."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: mtekk_admin_class.php:
|
643 |
msgid "Settings File"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: mtekk_admin_class.php:
|
647 |
msgid "Select a XML settings file to upload and import settings from."
|
648 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: \n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
11 |
+
"POT-Creation-Date: 2010-11-19 01:50+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"
|
16 |
"Content-Type: text/plain; charset=utf-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
|
19 |
+
#: breadcrumb_navxt_admin.php:29
|
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:106
|
27 |
msgid "Insufficient privileges to proceed."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: breadcrumb_navxt_admin.php:211 breadcrumb_navxt_class.php:203
|
31 |
+
msgid "Home"
|
32 |
+
msgstr ""
|
33 |
+
|
34 |
+
#: breadcrumb_navxt_admin.php:213 breadcrumb_navxt_admin.php:554
|
35 |
+
#: breadcrumb_navxt_admin.php:745 breadcrumb_navxt_class.php:126
|
36 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:215
|
37 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:243
|
38 |
+
#: breadcrumb_navxt_class.php:259
|
39 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: breadcrumb_navxt_admin.php:292
|
43 |
msgid "Settings successfully saved."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: breadcrumb_navxt_admin.php:292
|
47 |
msgid "Undo the options save."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: breadcrumb_navxt_admin.php:313
|
51 |
#, php-format
|
52 |
msgid ""
|
53 |
"Tips for the settings are located below select options. Please refer to the %"
|
54 |
"sdocumentation%s for more information."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:314
|
58 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: breadcrumb_navxt_admin.php:315
|
62 |
+
msgid "Quick Start Information"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: breadcrumb_navxt_admin.php:315
|
66 |
+
msgid ""
|
67 |
+
"For the settings on this page to take effect, you must either use the "
|
68 |
+
"included Breadcrumb NavXT widget, or place either of the code sections below "
|
69 |
+
"into your theme."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: breadcrumb_navxt_admin.php:316
|
73 |
+
msgid "Breadcrumb trail with separators"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: breadcrumb_navxt_admin.php:317
|
77 |
+
msgid "Breadcrumb trail in list form"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: breadcrumb_navxt_admin.php:398 mtekk_admin_class.php:482
|
81 |
msgid "Import"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: breadcrumb_navxt_admin.php:398 mtekk_admin_class.php:483
|
85 |
msgid "Export"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: breadcrumb_navxt_admin.php:398 mtekk_admin_class.php:484
|
89 |
msgid "Reset"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: breadcrumb_navxt_admin.php:419
|
93 |
msgid "Breadcrumb NavXT Settings"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: breadcrumb_navxt_admin.php:427
|
97 |
msgid "General"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: breadcrumb_navxt_admin.php:430
|
101 |
msgid "Breadcrumb Separator"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: breadcrumb_navxt_admin.php:430
|
105 |
msgid "Placed in between each breadcrumb."
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: breadcrumb_navxt_admin.php:431
|
109 |
msgid "Breadcrumb Max Title Length"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: breadcrumb_navxt_admin.php:435
|
113 |
msgid "Home Breadcrumb"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: breadcrumb_navxt_admin.php:440
|
117 |
msgid "Place the home breadcrumb in the trail."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: breadcrumb_navxt_admin.php:445
|
121 |
msgid "Home Title: "
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: breadcrumb_navxt_admin.php:453
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "Home Prefix"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: breadcrumb_navxt_admin.php:454
|
129 |
msgid "Home Suffix"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: breadcrumb_navxt_admin.php:455
|
133 |
msgid "Home Anchor"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: breadcrumb_navxt_admin.php:455
|
137 |
msgid "The anchor template for the home breadcrumb."
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: breadcrumb_navxt_admin.php:456
|
141 |
+
msgid "Blog Breadcrumb"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: breadcrumb_navxt_admin.php:456
|
145 |
+
msgid "Place the blog breadcrumb in the trail."
|
146 |
+
msgstr ""
|
147 |
+
|
148 |
+
#: breadcrumb_navxt_admin.php:457
|
149 |
msgid "Blog Anchor"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: breadcrumb_navxt_admin.php:457
|
153 |
msgid ""
|
154 |
"The anchor template for the blog breadcrumb, used only in static front page "
|
155 |
"environments."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: breadcrumb_navxt_admin.php:461
|
159 |
+
msgid "Main Site Breadcrumb"
|
160 |
+
msgstr ""
|
161 |
+
|
162 |
+
#: breadcrumb_navxt_admin.php:466
|
163 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: breadcrumb_navxt_admin.php:471
|
167 |
+
msgid "Main Site Home Title: "
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: breadcrumb_navxt_admin.php:479
|
171 |
+
msgid "Main Site Home Prefix"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: breadcrumb_navxt_admin.php:479 breadcrumb_navxt_admin.php:480
|
175 |
+
msgid "Used for the main site home breadcrumb in an multisite setup"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: breadcrumb_navxt_admin.php:480
|
179 |
+
msgid "Main Site Home Suffix"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: breadcrumb_navxt_admin.php:481
|
183 |
+
msgid "Main Site Home Anchor"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: breadcrumb_navxt_admin.php:481
|
187 |
+
msgid ""
|
188 |
+
"The anchor template for the main site home breadcrumb, used only in "
|
189 |
+
"multisite environments."
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: breadcrumb_navxt_admin.php:486
|
193 |
msgid "Current Item"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: breadcrumb_navxt_admin.php:489
|
197 |
msgid "Link Current Item"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: breadcrumb_navxt_admin.php:489
|
201 |
msgid "Yes"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: breadcrumb_navxt_admin.php:490
|
205 |
msgid "Current Item Prefix"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: breadcrumb_navxt_admin.php:490
|
209 |
msgid ""
|
210 |
"This is always placed in front of the last breadcrumb in the trail, before "
|
211 |
"any other prefixes for that breadcrumb."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: breadcrumb_navxt_admin.php:491
|
215 |
msgid "Current Item Suffix"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: breadcrumb_navxt_admin.php:491
|
219 |
msgid ""
|
220 |
"This is always placed after the last breadcrumb in the trail, and after any "
|
221 |
"other prefixes for that breadcrumb."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: breadcrumb_navxt_admin.php:492
|
225 |
msgid "Current Item Anchor"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: breadcrumb_navxt_admin.php:492
|
229 |
msgid "The anchor template for current item breadcrumbs."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: breadcrumb_navxt_admin.php:493
|
233 |
msgid "Paged Breadcrumb"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: breadcrumb_navxt_admin.php:493
|
237 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: breadcrumb_navxt_admin.php:493
|
241 |
msgid ""
|
242 |
"Indicates that the user is on a page other than the first on paginated posts/"
|
243 |
"pages."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: breadcrumb_navxt_admin.php:494
|
247 |
msgid "Paged Prefix"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: breadcrumb_navxt_admin.php:495
|
251 |
msgid "Paged Suffix"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: breadcrumb_navxt_admin.php:500
|
255 |
msgid "Posts & Pages"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: breadcrumb_navxt_admin.php:503
|
259 |
msgid "Post Prefix"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: breadcrumb_navxt_admin.php:504
|
263 |
msgid "Post Suffix"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: breadcrumb_navxt_admin.php:505
|
267 |
msgid "Post Anchor"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: breadcrumb_navxt_admin.php:505
|
271 |
msgid "The anchor template for post breadcrumbs."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: breadcrumb_navxt_admin.php:506
|
275 |
msgid "Post Taxonomy Display"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: breadcrumb_navxt_admin.php:506
|
279 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: breadcrumb_navxt_admin.php:510
|
283 |
msgid "Post Taxonomy"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: breadcrumb_navxt_admin.php:514 breadcrumb_navxt_admin.php:631
|
287 |
msgid "Categories"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: breadcrumb_navxt_admin.php:515
|
291 |
msgid "Dates"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: breadcrumb_navxt_admin.php:516 breadcrumb_navxt_admin.php:643
|
295 |
msgid "Tags"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: breadcrumb_navxt_admin.php:517 breadcrumb_navxt_admin.php:610
|
299 |
msgid "Pages"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: breadcrumb_navxt_admin.php:528 breadcrumb_navxt_admin.php:621
|
303 |
msgid "The taxonomy which the breadcrumb trail will show."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: breadcrumb_navxt_admin.php:532
|
307 |
msgid "Page Prefix"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: breadcrumb_navxt_admin.php:533
|
311 |
msgid "Page Suffix"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: breadcrumb_navxt_admin.php:534
|
315 |
msgid "Page Anchor"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: breadcrumb_navxt_admin.php:534
|
319 |
msgid "The anchor template for page breadcrumbs."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: breadcrumb_navxt_admin.php:535
|
323 |
msgid "Attachment Prefix"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: breadcrumb_navxt_admin.php:536
|
327 |
msgid "Attachment Suffix"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: breadcrumb_navxt_admin.php:585 breadcrumb_navxt_admin.php:679
|
331 |
#, php-format
|
332 |
msgid "%s Prefix"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: breadcrumb_navxt_admin.php:586 breadcrumb_navxt_admin.php:680
|
336 |
#, php-format
|
337 |
msgid "%s Suffix"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: breadcrumb_navxt_admin.php:587 breadcrumb_navxt_admin.php:681
|
341 |
#, php-format
|
342 |
msgid "%s Anchor"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:587 breadcrumb_navxt_admin.php:681
|
346 |
#, php-format
|
347 |
msgid "The anchor template for %s breadcrumbs."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: breadcrumb_navxt_admin.php:592
|
351 |
+
#, php-format
|
352 |
+
msgid "%s Root Page"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: breadcrumb_navxt_admin.php:595
|
356 |
+
msgid "— Select —"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: breadcrumb_navxt_admin.php:602
|
360 |
#, php-format
|
361 |
msgid "%s Taxonomy Display"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: breadcrumb_navxt_admin.php:602
|
365 |
#, php-format
|
366 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: breadcrumb_navxt_admin.php:606
|
370 |
#, php-format
|
371 |
msgid "%s Taxonomy"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: breadcrumb_navxt_admin.php:634
|
375 |
msgid "Category Prefix"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: breadcrumb_navxt_admin.php:634
|
379 |
msgid "Applied before the anchor on all category breadcrumbs."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: breadcrumb_navxt_admin.php:635
|
383 |
msgid "Category Suffix"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: breadcrumb_navxt_admin.php:635
|
387 |
msgid "Applied after the anchor on all category breadcrumbs."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: breadcrumb_navxt_admin.php:636
|
391 |
msgid "Category Anchor"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: breadcrumb_navxt_admin.php:636
|
395 |
msgid "The anchor template for category breadcrumbs."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: breadcrumb_navxt_admin.php:637
|
399 |
msgid "Archive by Category Prefix"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: breadcrumb_navxt_admin.php:637
|
403 |
msgid ""
|
404 |
"Applied before the title of the current item breadcrumb on an archive by "
|
405 |
"cateogry page."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:638
|
409 |
msgid "Archive by Category Suffix"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:638
|
413 |
msgid ""
|
414 |
"Applied after the title of the current item breadcrumb on an archive by "
|
415 |
"cateogry page."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: breadcrumb_navxt_admin.php:646
|
419 |
msgid "Tag Prefix"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: breadcrumb_navxt_admin.php:646
|
423 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: breadcrumb_navxt_admin.php:647
|
427 |
msgid "Tag Suffix"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: breadcrumb_navxt_admin.php:647
|
431 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: breadcrumb_navxt_admin.php:648
|
435 |
msgid "Tag Anchor"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: breadcrumb_navxt_admin.php:648
|
439 |
msgid "The anchor template for tag breadcrumbs."
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: breadcrumb_navxt_admin.php:649
|
443 |
msgid "Archive by Tag Prefix"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: breadcrumb_navxt_admin.php:649
|
447 |
msgid ""
|
448 |
"Applied before the title of the current item breadcrumb on an archive by tag "
|
449 |
"page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:650
|
453 |
msgid "Archive by Tag Suffix"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:650
|
457 |
msgid ""
|
458 |
"Applied after the title of the current item breadcrumb on an archive by tag "
|
459 |
"page."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: breadcrumb_navxt_admin.php:679
|
463 |
#, php-format
|
464 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: breadcrumb_navxt_admin.php:680
|
468 |
#, php-format
|
469 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:682
|
473 |
#, php-format
|
474 |
msgid "Archive by %s Prefix"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: breadcrumb_navxt_admin.php:682
|
478 |
#, php-format
|
479 |
msgid ""
|
480 |
"Applied before the title of the current item breadcrumb on an archive by %s "
|
481 |
"page."
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:683
|
485 |
#, php-format
|
486 |
msgid "Archive by %s Suffix"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: breadcrumb_navxt_admin.php:683
|
490 |
#, php-format
|
491 |
msgid ""
|
492 |
"Applied after the title of the current item breadcrumb on an archive by %s "
|
493 |
"page."
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: breadcrumb_navxt_admin.php:692
|
497 |
msgid "Date Archives"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: breadcrumb_navxt_admin.php:695
|
501 |
msgid "Date Anchor"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: breadcrumb_navxt_admin.php:695
|
505 |
msgid "The anchor template for date breadcrumbs."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: breadcrumb_navxt_admin.php:696
|
509 |
msgid "Archive by Date Prefix"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: breadcrumb_navxt_admin.php:696
|
513 |
msgid "Applied before the anchor on all date breadcrumbs."
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: breadcrumb_navxt_admin.php:697
|
517 |
msgid "Archive by Date Suffix"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: breadcrumb_navxt_admin.php:697
|
521 |
msgid "Applied after the anchor on all date breadcrumbs."
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: breadcrumb_navxt_admin.php:702
|
525 |
msgid "Miscellaneous"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: breadcrumb_navxt_admin.php:705
|
529 |
msgid "Author Prefix"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: breadcrumb_navxt_admin.php:706
|
533 |
msgid "Author Suffix"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: breadcrumb_navxt_admin.php:707
|
537 |
msgid "Author Display Format"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: breadcrumb_navxt_admin.php:707
|
541 |
msgid ""
|
542 |
"display_name uses the name specified in \"Display name publicly as\" under "
|
543 |
"the user profile the others correspond to options in the user profile."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: breadcrumb_navxt_admin.php:708
|
547 |
msgid "Search Prefix"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: breadcrumb_navxt_admin.php:709
|
551 |
msgid "Search Suffix"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: breadcrumb_navxt_admin.php:710
|
555 |
msgid "Search Anchor"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: breadcrumb_navxt_admin.php:710
|
559 |
msgid ""
|
560 |
"The anchor template for search breadcrumbs, used only when the search "
|
561 |
"results span several pages."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: breadcrumb_navxt_admin.php:711
|
565 |
msgid "404 Title"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: breadcrumb_navxt_admin.php:712
|
569 |
msgid "404 Prefix"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: breadcrumb_navxt_admin.php:713
|
573 |
msgid "404 Suffix"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: breadcrumb_navxt_admin.php:718
|
577 |
msgid "Save Changes"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: breadcrumb_navxt_class.php:213
|
581 |
msgid "Blog"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: breadcrumb_navxt_class.php:232
|
585 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: breadcrumb_navxt_class.php:277
|
589 |
msgid "404"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: breadcrumb_navxt_class.php:280
|
593 |
msgid "Search results for '"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: breadcrumb_navxt_class.php:284
|
597 |
msgid ""
|
598 |
"<a title=\"Go to the first page of search results for %title%.\" href=\"%link"
|
599 |
"%\">"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: breadcrumb_navxt_class.php:291
|
603 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: breadcrumb_navxt_class.php:294
|
607 |
msgid "Articles by: "
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: breadcrumb_navxt_class.php:298
|
611 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: breadcrumb_navxt_class.php:307
|
615 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: breadcrumb_navxt_class.php:310
|
619 |
msgid "Archive by category '"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: breadcrumb_navxt_class.php:314
|
623 |
msgid "Archive by tag '"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: breadcrumb_navxt_class.php:317
|
627 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: breadcrumb_navxt_class.php:478
|
631 |
+
msgid "Un"
|
632 |
msgstr ""
|
633 |
|
634 |
#: breadcrumb_navxt_widget.php:24
|
655 |
msgid "Hide the trail on the front page"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: mtekk_admin_class.php:57
|
659 |
msgid "Undo"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: mtekk_admin_class.php:64
|
663 |
+
msgid "Migrate now."
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: mtekk_admin_class.php:158
|
667 |
msgid "Settings"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: mtekk_admin_class.php:186
|
671 |
+
msgid "Your settings are out of date."
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: mtekk_admin_class.php:186
|
675 |
+
msgid "Migrate the settings now."
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: mtekk_admin_class.php:299
|
679 |
msgid "Settings successfully imported from the uploaded file."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: mtekk_admin_class.php:299
|
683 |
msgid "Undo the options import."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: mtekk_admin_class.php:304
|
687 |
msgid "Importing settings from file failed."
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: mtekk_admin_class.php:323
|
691 |
msgid "Settings successfully reset to the default values."
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: mtekk_admin_class.php:323
|
695 |
msgid "Undo the options reset."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: mtekk_admin_class.php:340
|
699 |
msgid "Settings successfully undid the last operation."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: mtekk_admin_class.php:340
|
703 |
msgid "Undo the last undo operation."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: mtekk_admin_class.php:373
|
707 |
+
msgid "Settings successfully migrated."
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: mtekk_admin_class.php:403
|
711 |
#, php-format
|
712 |
msgid "Get help with \"%s\""
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: mtekk_admin_class.php:473
|
716 |
msgid "Import/Export/Reset Settings"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: mtekk_admin_class.php:474
|
720 |
msgid ""
|
721 |
"Import settings from a XML file, export the current settings to a XML file, "
|
722 |
"or reset to the default settings."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: mtekk_admin_class.php:477
|
726 |
msgid "Settings File"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: mtekk_admin_class.php:480
|
730 |
msgid "Select a XML settings file to upload and import settings from."
|
731 |
msgstr ""
|
languages/breadcrumb_navxt-de_DE.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: Various <user>\n"
|
8 |
"Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,513 +19,529 @@ msgstr ""
|
|
19 |
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
20 |
msgstr "Deine PHP-Version ist zu alt, bitte aktualisiere PHP. Deine Version ist %s, dieses Plugin benötigt %s"
|
21 |
|
22 |
-
#: breadcrumb_navxt_admin.php:
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr "Es fehlen Berechtigungen um fortzufahren."
|
25 |
|
26 |
-
#: breadcrumb_navxt_admin.php:
|
27 |
-
#:
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
#: breadcrumb_navxt_admin.php:
|
32 |
msgid "Settings successfully saved."
|
33 |
msgstr "Einstellungen erfolgreich gespeichert."
|
34 |
|
35 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
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 "Tipps zu einzelnen Einstellungen befinden sich meist unter oder bei den Eingabefeldern. Weitere Informationen hält die %sOnline-Dokumentation%s (Englisch) bereit."
|
39 |
|
40 |
-
#: breadcrumb_navxt_admin.php:
|
41 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
42 |
msgstr "Zur Breadcrumb NavXT Online-Dokumentation (englisch)"
|
43 |
|
44 |
-
#: breadcrumb_navxt_admin.php:
|
45 |
-
|
46 |
-
msgstr "Alle Breadcrumb NavXT Einstellungen werden mit den Standardwerten überschrieben. Fortfahren?"
|
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 "Alle Breadcrumb NavXT Einstellungen werden mit den importierten Werten überschrieben. Fortfahren?"
|
51 |
-
|
52 |
-
#: breadcrumb_navxt_admin.php:381
|
53 |
-
#: mtekk_admin_class.php:403
|
54 |
msgid "Import"
|
55 |
msgstr "Import"
|
56 |
|
57 |
-
#: breadcrumb_navxt_admin.php:
|
58 |
-
#: mtekk_admin_class.php:
|
59 |
msgid "Export"
|
60 |
msgstr "Export"
|
61 |
|
62 |
-
#: breadcrumb_navxt_admin.php:
|
63 |
-
#: mtekk_admin_class.php:
|
64 |
msgid "Reset"
|
65 |
msgstr "Zurücksetzen"
|
66 |
|
67 |
-
#: breadcrumb_navxt_admin.php:
|
68 |
msgid "Breadcrumb NavXT Settings"
|
69 |
msgstr "Breadcrumb NavXT Einstellungen"
|
70 |
|
71 |
-
#: breadcrumb_navxt_admin.php:
|
72 |
msgid "General"
|
73 |
msgstr "Allgemein"
|
74 |
|
75 |
-
#: breadcrumb_navxt_admin.php:
|
76 |
msgid "Breadcrumb Separator"
|
77 |
msgstr "Breadcrumb Trennsymbol"
|
78 |
|
79 |
-
#: breadcrumb_navxt_admin.php:
|
80 |
msgid "Placed in between each breadcrumb."
|
81 |
msgstr "Wird zwischen jedem Breadcrumb angezeigt."
|
82 |
|
83 |
-
#: breadcrumb_navxt_admin.php:
|
84 |
msgid "Breadcrumb Max Title Length"
|
85 |
msgstr "Maximale Länge eines Titels"
|
86 |
|
87 |
-
#: breadcrumb_navxt_admin.php:
|
88 |
msgid "Home Breadcrumb"
|
89 |
msgstr "Home-Breadcrumb"
|
90 |
|
91 |
-
#: breadcrumb_navxt_admin.php:
|
92 |
msgid "Place the home breadcrumb in the trail."
|
93 |
msgstr "Soll dargestellt werden."
|
94 |
|
95 |
-
#: breadcrumb_navxt_admin.php:
|
96 |
msgid "Home Title: "
|
97 |
msgstr "Titel:"
|
98 |
|
99 |
-
#: breadcrumb_navxt_admin.php:
|
100 |
msgid "Blog Breadcrumb"
|
101 |
msgstr "Blog-Breadcrumb"
|
102 |
|
103 |
-
#: breadcrumb_navxt_admin.php:
|
104 |
msgid "Place the blog breadcrumb in the trail."
|
105 |
msgstr "Blog-Breqadcrumb soll angezeigt werden."
|
106 |
|
107 |
-
#: breadcrumb_navxt_admin.php:
|
108 |
msgid "Home Prefix"
|
109 |
msgstr "Home-Prefix"
|
110 |
|
111 |
-
#: breadcrumb_navxt_admin.php:
|
112 |
msgid "Home Suffix"
|
113 |
msgstr "Home-Suffix"
|
114 |
|
115 |
-
#: breadcrumb_navxt_admin.php:
|
116 |
msgid "Home Anchor"
|
117 |
msgstr "Home-Link"
|
118 |
|
119 |
-
#: breadcrumb_navxt_admin.php:
|
120 |
msgid "The anchor template for the home breadcrumb."
|
121 |
msgstr "Vorlage für den Link des Home-Breadcrumb."
|
122 |
|
123 |
-
#: breadcrumb_navxt_admin.php:
|
124 |
msgid "Blog Anchor"
|
125 |
msgstr "Blog-Link"
|
126 |
|
127 |
-
#: breadcrumb_navxt_admin.php:
|
128 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
129 |
msgstr "Vorlage für den Link des Blog-Breadcrumbs, wird nur verwendet wenn eine \"statische Seite\" als Startseite verwendet wird."
|
130 |
|
131 |
-
#: breadcrumb_navxt_admin.php:
|
132 |
msgid "Current Item"
|
133 |
msgstr "Aktuelles Element"
|
134 |
|
135 |
-
#: breadcrumb_navxt_admin.php:
|
136 |
msgid "Link Current Item"
|
137 |
msgstr "Aktuelles Element verlinken"
|
138 |
|
139 |
-
#: breadcrumb_navxt_admin.php:
|
140 |
msgid "Yes"
|
141 |
msgstr "Ja"
|
142 |
|
143 |
-
#: breadcrumb_navxt_admin.php:
|
144 |
msgid "Current Item Prefix"
|
145 |
msgstr "Aktuelles Elementen-Prefix"
|
146 |
|
147 |
-
#: breadcrumb_navxt_admin.php:
|
148 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
149 |
msgstr "Wird immer vor dem letzten Breadcrumb dargestellt und zwar vor allen anderen Prefix(en) für dieses Breadcrumb."
|
150 |
|
151 |
-
#: breadcrumb_navxt_admin.php:
|
152 |
msgid "Current Item Suffix"
|
153 |
msgstr "Aktuelles Elementen-Suffix"
|
154 |
|
155 |
-
#: breadcrumb_navxt_admin.php:
|
156 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
157 |
msgstr "Analog zum Prefix wird auch das Suffix immer hinter dem letzten Breadcrumb inkl. Prefix(en) dargestellt."
|
158 |
|
159 |
-
#: breadcrumb_navxt_admin.php:
|
160 |
msgid "Current Item Anchor"
|
161 |
msgstr "Aktuelles-Element-Link"
|
162 |
|
163 |
-
#: breadcrumb_navxt_admin.php:
|
164 |
msgid "The anchor template for current item breadcrumbs."
|
165 |
msgstr "Vorlage für den Link des aktuellen Elements."
|
166 |
|
167 |
-
#: breadcrumb_navxt_admin.php:
|
168 |
msgid "Paged Breadcrumb"
|
169 |
msgstr "Seitenzahlen Breadcrumb"
|
170 |
|
171 |
-
#: breadcrumb_navxt_admin.php:
|
172 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
173 |
msgstr "Seitenzahlen Breadcrumb soll in der Aufreihung gezeigt werden."
|
174 |
|
175 |
-
#: breadcrumb_navxt_admin.php:
|
176 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
177 |
msgstr "Zeigt an, dass die Leserin sich auf einer anderen als der ersten Seite befindet, falls Mehrseitigkeit unterstützt wird (funktioniert bei beiden Typen, Beitrag und Seite)."
|
178 |
|
179 |
-
#: breadcrumb_navxt_admin.php:
|
180 |
msgid "Paged Prefix"
|
181 |
msgstr "Seitenzahlen-Prefix"
|
182 |
|
183 |
-
#: breadcrumb_navxt_admin.php:
|
184 |
msgid "Paged Suffix"
|
185 |
msgstr "Seitenzahlen-Suffix"
|
186 |
|
187 |
-
#: breadcrumb_navxt_admin.php:
|
188 |
msgid "Posts & Pages"
|
189 |
msgstr "Beiträge & Seiten"
|
190 |
|
191 |
-
#: breadcrumb_navxt_admin.php:
|
192 |
msgid "Post Prefix"
|
193 |
msgstr "Beitrags-Prefix"
|
194 |
|
195 |
-
#: breadcrumb_navxt_admin.php:
|
196 |
msgid "Post Suffix"
|
197 |
msgstr "Beitrags-Suffix"
|
198 |
|
199 |
-
#: breadcrumb_navxt_admin.php:
|
200 |
msgid "Post Anchor"
|
201 |
msgstr "Beitrags-Link"
|
202 |
|
203 |
-
#: breadcrumb_navxt_admin.php:
|
204 |
msgid "The anchor template for post breadcrumbs."
|
205 |
msgstr "Vorlage für den Link des Beitrag-Breadcrumbs."
|
206 |
|
207 |
-
#: breadcrumb_navxt_admin.php:
|
208 |
msgid "Post Taxonomy Display"
|
209 |
msgstr "Beitrags-Klassifizierung"
|
210 |
|
211 |
-
#: breadcrumb_navxt_admin.php:
|
212 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
213 |
msgstr "Klassifizierung soll vor dem Beitrag in der Aufreihung dargestellt werden."
|
214 |
|
215 |
-
#: breadcrumb_navxt_admin.php:
|
216 |
msgid "Post Taxonomy"
|
217 |
msgstr "Klassifizierung des Beitrages"
|
218 |
|
219 |
-
#: breadcrumb_navxt_admin.php:
|
220 |
-
#: breadcrumb_navxt_admin.php:
|
221 |
msgid "Categories"
|
222 |
msgstr "Kategorien"
|
223 |
|
224 |
-
#: breadcrumb_navxt_admin.php:
|
225 |
msgid "Dates"
|
226 |
msgstr "Datum"
|
227 |
|
228 |
-
#: breadcrumb_navxt_admin.php:
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Tags"
|
231 |
msgstr "Tags"
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Pages"
|
235 |
msgstr "Seiten"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
238 |
msgid "The taxonomy which the breadcrumb trail will show."
|
239 |
msgstr "Art der Klassifizierung, die die Aufreihung der Breadcrumbs nutzen wird. Hier ist eine Entscheidung zu treffen, da nicht beides - Kategorie und Tags - gleichzeitig angezeigt werden kann."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Page Prefix"
|
243 |
msgstr "Seiten-Prefix"
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "Page Suffix"
|
247 |
msgstr "Seiten-Suffix"
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Page Anchor"
|
251 |
msgstr "Seiten-Link"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "The anchor template for page breadcrumbs."
|
255 |
msgstr "Vorlage für den Link des Seiten-Breadcrumbs."
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Attachment Prefix"
|
259 |
msgstr "Anhangs-Prefix"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
msgid "Attachment Suffix"
|
263 |
msgstr "Anhangs-Suffix"
|
264 |
|
265 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
msgid "Category Prefix"
|
267 |
msgstr "Kategorie-Prefix"
|
268 |
|
269 |
-
#: breadcrumb_navxt_admin.php:
|
270 |
msgid "Applied before the anchor on all category breadcrumbs."
|
271 |
msgstr "Wir vor dem Link von allen Kategorien-Breadcrumbs dargestellt."
|
272 |
|
273 |
-
#: breadcrumb_navxt_admin.php:
|
274 |
msgid "Category Suffix"
|
275 |
msgstr "Kategorie-Suffix"
|
276 |
|
277 |
-
#: breadcrumb_navxt_admin.php:
|
278 |
msgid "Applied after the anchor on all category breadcrumbs."
|
279 |
msgstr "Wir nach dem Link von allen Kategorien-Breadcrumbs dargestellt."
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Category Anchor"
|
283 |
msgstr "Kategorie-Link"
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "The anchor template for category breadcrumbs."
|
287 |
msgstr "Vorlage für den Link des Kategorien-Breadcrumbs."
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Archive by Category Prefix"
|
291 |
msgstr "Archiv-Prefix (Kategorien)"
|
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 "Wir vor dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Archive by Category Suffix"
|
299 |
msgstr "Archiv-Suffix (Kategorien)"
|
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 "Wird nach dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
|
304 |
|
305 |
-
#: breadcrumb_navxt_admin.php:
|
306 |
msgid "Tag Prefix"
|
307 |
msgstr "Tag-Prefix"
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
311 |
msgstr "Wird vor dem Link der Tag-Breadcrumbs dargestellt."
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "Tag Suffix"
|
315 |
msgstr "Tag-Suffix"
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
319 |
msgstr "Wird nach dem Link der Tag-Breadcrumbs dargestellt."
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Tag Anchor"
|
323 |
msgstr "Tag-Link"
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "The anchor template for tag breadcrumbs."
|
327 |
msgstr "Vorlage für den Link des Tag-Breadcrumbs."
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Archive by Tag Prefix"
|
331 |
msgstr "Archiv-Prefix (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 "Wird vor dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Archive by Tag Suffix"
|
339 |
msgstr "Archiv-Suffix (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 "Wird nach dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
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 "Wird vor dem Link der %s-Breadcrumbs dargestellt."
|
354 |
|
355 |
-
#: breadcrumb_navxt_admin.php:
|
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 "Wird nach dem Link der %s-Breadcrumbs dargestellt."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
-
#, php-format
|
367 |
-
msgid "%s Anchor"
|
368 |
-
msgstr "%s-Link"
|
369 |
-
|
370 |
-
#: breadcrumb_navxt_admin.php:552
|
371 |
-
#, php-format
|
372 |
-
msgid "The anchor template for %s breadcrumbs."
|
373 |
-
msgstr "Vorlage für den Link des %s-Breadcrumbs."
|
374 |
-
|
375 |
-
#: breadcrumb_navxt_admin.php:553
|
376 |
#, php-format
|
377 |
msgid "Archive by %s Prefix"
|
378 |
msgstr "Archiv-Prefix (%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 "Wird vor dem Link von allen %s-Archiv-Breadcrumbs dargestellt."
|
384 |
|
385 |
-
#: breadcrumb_navxt_admin.php:
|
386 |
#, php-format
|
387 |
msgid "Archive by %s Suffix"
|
388 |
msgstr "Archiv-Suffix (%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 "Wird nach dem Link von allen %s-Archiv-Breadcrumbs dargestellt."
|
394 |
|
395 |
-
#: breadcrumb_navxt_admin.php:
|
396 |
msgid "Date Archives"
|
397 |
msgstr "Archiv (Datum)"
|
398 |
|
399 |
-
#: breadcrumb_navxt_admin.php:
|
400 |
msgid "Date Anchor"
|
401 |
msgstr "Datums-Link"
|
402 |
|
403 |
-
#: breadcrumb_navxt_admin.php:
|
404 |
msgid "The anchor template for date breadcrumbs."
|
405 |
msgstr "Vorlage für den Link der Datums-Breadcrumbs."
|
406 |
|
407 |
-
#: breadcrumb_navxt_admin.php:
|
408 |
msgid "Archive by Date Prefix"
|
409 |
msgstr "Archiv-Suffix (Datum)"
|
410 |
|
411 |
-
#: breadcrumb_navxt_admin.php:
|
412 |
msgid "Applied before the anchor on all date breadcrumbs."
|
413 |
msgstr "Wird vor dem Link der Datums-Breadcrumbs angezeigt."
|
414 |
|
415 |
-
#: breadcrumb_navxt_admin.php:
|
416 |
-
#: breadcrumb_navxt_admin.php:578
|
417 |
msgid "Archive by Date Suffix"
|
418 |
msgstr "Archiv-Suffix (Datum)"
|
419 |
|
420 |
-
#: breadcrumb_navxt_admin.php:
|
421 |
-
#: breadcrumb_navxt_admin.php:578
|
422 |
msgid "Applied after the anchor on all date breadcrumbs."
|
423 |
msgstr "Wird nach dem Link der Datums-Archiv-Breadcrumbs angezeigt."
|
424 |
|
425 |
-
#: breadcrumb_navxt_admin.php:
|
426 |
msgid "Miscellaneous"
|
427 |
msgstr "Verschiedenes"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Author Prefix"
|
431 |
msgstr "Autor-Prefix"
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "Author Suffix"
|
435 |
msgstr "Autor-Suffix"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "Author Display Format"
|
439 |
msgstr "Autoren-Darstellung"
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
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 steht für die Darstellung, die der Benutzer in seinem Profil gewählt hat, die anderen Optionen korrespondieren zu den Werten im Benutzerprofil."
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "Search Prefix"
|
447 |
msgstr "Suche-Prefix"
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Search Suffix"
|
451 |
msgstr "Suche-Suffix"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "Search Anchor"
|
455 |
msgstr "Suche-Link"
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
459 |
msgstr "Vorlage für den Link der Suche-Breadcrumbs. Wird nur benutzt, falls die Suchergebnisse über mehrere Seiten laufen."
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "404 Title"
|
463 |
msgstr "404-Titel"
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "404 Prefix"
|
467 |
msgstr "404-Prefix"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "404 Suffix"
|
471 |
msgstr "404-Suffix"
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Save Changes"
|
475 |
msgstr "Änderungen speichern"
|
476 |
|
477 |
-
#: breadcrumb_navxt_class.php:
|
478 |
msgid "Blog"
|
479 |
msgstr "Blog"
|
480 |
|
481 |
-
#: breadcrumb_navxt_class.php:
|
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 "<a title=\"Gehe zu %title%.\" href=\"%link%\">"
|
487 |
-
|
488 |
-
#: breadcrumb_navxt_class.php:168
|
489 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
490 |
msgstr "<a title=\"Lade aktuelle Seite neu.\" href=\"%link%\">"
|
491 |
|
492 |
-
#: breadcrumb_navxt_class.php:
|
493 |
msgid "404"
|
494 |
msgstr "404"
|
495 |
|
496 |
-
#: breadcrumb_navxt_class.php:
|
497 |
msgid "Search results for '"
|
498 |
msgstr "Suchergebnisse für '"
|
499 |
|
500 |
-
#: breadcrumb_navxt_class.php:
|
|
|
|
|
|
|
|
|
501 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
502 |
msgstr "<a title=\"Zum %title% Tag-Archiv.\" href=\"%link%\">"
|
503 |
|
504 |
-
#: breadcrumb_navxt_class.php:
|
505 |
msgid "Articles by: "
|
506 |
msgstr "Artikel von:"
|
507 |
|
508 |
-
#: breadcrumb_navxt_class.php:
|
509 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
510 |
msgstr "<a title=\"Zur ersten Seite für Biträge mit %title%.\" href=\"%link%\">"
|
511 |
|
512 |
-
#: breadcrumb_navxt_class.php:
|
513 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
514 |
msgstr "<a title=\"Zum %title% Kategorie Archiv.\" href=\"%link%\">"
|
515 |
|
516 |
-
#: breadcrumb_navxt_class.php:
|
517 |
msgid "Archive by category '"
|
518 |
msgstr "Archiv nach Kategorie '"
|
519 |
|
520 |
-
#: breadcrumb_navxt_class.php:
|
521 |
msgid "Archive by tag '"
|
522 |
msgstr "Archiv nach Tag '"
|
523 |
|
524 |
-
#: breadcrumb_navxt_class.php:
|
525 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
526 |
msgstr "<a title=\"Gehe zu %title% Archiv.\" href=\"%link%\">"
|
527 |
|
528 |
-
#: breadcrumb_navxt_class.php:
|
529 |
msgid "Untagged"
|
530 |
msgstr "Ohne Tags"
|
531 |
|
@@ -533,59 +549,95 @@ msgstr "Ohne Tags"
|
|
533 |
msgid "Adds a breadcrumb trail to your sidebar"
|
534 |
msgstr "Packt einen Brotkrumen Pfad (Breadcrumb Trail) in die Sidebar."
|
535 |
|
536 |
-
#: breadcrumb_navxt_widget.php:
|
537 |
msgid "Title:"
|
538 |
msgstr "Titel:"
|
539 |
|
540 |
-
#: breadcrumb_navxt_widget.php:
|
541 |
msgid "Output trail as a list"
|
542 |
msgstr "Als Liste ausgeben"
|
543 |
|
544 |
-
#: breadcrumb_navxt_widget.php:
|
545 |
msgid "Link the breadcrumbs"
|
546 |
msgstr "Breadcrumbs verlinken"
|
547 |
|
548 |
-
#: breadcrumb_navxt_widget.php:
|
549 |
msgid "Reverse the order of the trail"
|
550 |
msgstr "Reihenfolge des Pfades umkehren"
|
551 |
|
552 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Settings"
|
554 |
msgstr "Einstellungen"
|
555 |
|
556 |
-
#: mtekk_admin_class.php:
|
557 |
msgid "Settings successfully imported from the uploaded file."
|
558 |
msgstr "Einstellungen wurden erfolgreich importiert."
|
559 |
|
560 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
561 |
msgid "Importing settings from file failed."
|
562 |
msgstr "Datei-Import ist fehlgeschlagen."
|
563 |
|
564 |
-
#: mtekk_admin_class.php:
|
565 |
msgid "Settings successfully reset to the default values."
|
566 |
msgstr "Einstellungen wurden erfolgreich zurückgesetzt."
|
567 |
|
568 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
#, php-format
|
570 |
msgid "Get help with \"%s\""
|
571 |
msgstr "Hilfe für \"%s\""
|
572 |
|
573 |
-
#: mtekk_admin_class.php:
|
574 |
msgid "Import/Export/Reset Settings"
|
575 |
msgstr "Import/Export/Zurücksetzen von Einstellungen"
|
576 |
|
577 |
-
#: mtekk_admin_class.php:
|
578 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
579 |
msgstr "Einstellungen aus einer XML-Datei importieren, die aktuellen Einstellungen in eine XML-Datei exportieren oder die Einstellungen auf Standardwerte zurücksetzen."
|
580 |
|
581 |
-
#: mtekk_admin_class.php:
|
582 |
msgid "Settings File"
|
583 |
msgstr "Datei mit Einstellungen"
|
584 |
|
585 |
-
#: mtekk_admin_class.php:
|
586 |
msgid "Select a XML settings file to upload and import settings from."
|
587 |
msgstr "Wähle eine XML-Datei zum hochladen, aus der die Einstellungen importiert werden können."
|
588 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
589 |
#~ msgid ""
|
590 |
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
591 |
#~ "supported by this administrative interface. As a result, settings may not "
|
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-08-13 02:16+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-08-17 12:32+0100\n"
|
7 |
"Last-Translator: Various <user>\n"
|
8 |
"Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
20 |
msgstr "Deine PHP-Version ist zu alt, bitte aktualisiere PHP. Deine Version ist %s, dieses Plugin benötigt %s"
|
21 |
|
22 |
+
#: breadcrumb_navxt_admin.php:112
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr "Es fehlen Berechtigungen um fortzufahren."
|
25 |
|
26 |
+
#: breadcrumb_navxt_admin.php:189
|
27 |
+
#: breadcrumb_navxt_admin.php:280
|
28 |
+
#: breadcrumb_navxt_admin.php:591
|
29 |
+
#: breadcrumb_navxt_class.php:156
|
30 |
+
#: breadcrumb_navxt_class.php:160
|
31 |
+
#: breadcrumb_navxt_class.php:184
|
32 |
+
#: breadcrumb_navxt_class.php:198
|
33 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
34 |
+
msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">"
|
35 |
|
36 |
+
#: breadcrumb_navxt_admin.php:349
|
37 |
msgid "Settings successfully saved."
|
38 |
msgstr "Einstellungen erfolgreich gespeichert."
|
39 |
|
40 |
+
#: breadcrumb_navxt_admin.php:349
|
41 |
+
msgid "Undo the options save."
|
42 |
+
msgstr "Wiederherstellen der Optionen-Speicherung"
|
43 |
+
|
44 |
+
#: breadcrumb_navxt_admin.php:372
|
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 "Tipps zu einzelnen Einstellungen befinden sich meist unter oder bei den Eingabefeldern. Weitere Informationen hält die %sOnline-Dokumentation%s (Englisch) bereit."
|
48 |
|
49 |
+
#: breadcrumb_navxt_admin.php:373
|
50 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
51 |
msgstr "Zur Breadcrumb NavXT Online-Dokumentation (englisch)"
|
52 |
|
53 |
+
#: breadcrumb_navxt_admin.php:459
|
54 |
+
#: mtekk_admin_class.php:444
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Import"
|
56 |
msgstr "Import"
|
57 |
|
58 |
+
#: breadcrumb_navxt_admin.php:459
|
59 |
+
#: mtekk_admin_class.php:445
|
60 |
msgid "Export"
|
61 |
msgstr "Export"
|
62 |
|
63 |
+
#: breadcrumb_navxt_admin.php:459
|
64 |
+
#: mtekk_admin_class.php:446
|
65 |
msgid "Reset"
|
66 |
msgstr "Zurücksetzen"
|
67 |
|
68 |
+
#: breadcrumb_navxt_admin.php:481
|
69 |
msgid "Breadcrumb NavXT Settings"
|
70 |
msgstr "Breadcrumb NavXT Einstellungen"
|
71 |
|
72 |
+
#: breadcrumb_navxt_admin.php:489
|
73 |
msgid "General"
|
74 |
msgstr "Allgemein"
|
75 |
|
76 |
+
#: breadcrumb_navxt_admin.php:492
|
77 |
msgid "Breadcrumb Separator"
|
78 |
msgstr "Breadcrumb Trennsymbol"
|
79 |
|
80 |
+
#: breadcrumb_navxt_admin.php:492
|
81 |
msgid "Placed in between each breadcrumb."
|
82 |
msgstr "Wird zwischen jedem Breadcrumb angezeigt."
|
83 |
|
84 |
+
#: breadcrumb_navxt_admin.php:493
|
85 |
msgid "Breadcrumb Max Title Length"
|
86 |
msgstr "Maximale Länge eines Titels"
|
87 |
|
88 |
+
#: breadcrumb_navxt_admin.php:497
|
89 |
msgid "Home Breadcrumb"
|
90 |
msgstr "Home-Breadcrumb"
|
91 |
|
92 |
+
#: breadcrumb_navxt_admin.php:502
|
93 |
msgid "Place the home breadcrumb in the trail."
|
94 |
msgstr "Soll dargestellt werden."
|
95 |
|
96 |
+
#: breadcrumb_navxt_admin.php:507
|
97 |
msgid "Home Title: "
|
98 |
msgstr "Titel:"
|
99 |
|
100 |
+
#: breadcrumb_navxt_admin.php:515
|
101 |
msgid "Blog Breadcrumb"
|
102 |
msgstr "Blog-Breadcrumb"
|
103 |
|
104 |
+
#: breadcrumb_navxt_admin.php:515
|
105 |
msgid "Place the blog breadcrumb in the trail."
|
106 |
msgstr "Blog-Breqadcrumb soll angezeigt werden."
|
107 |
|
108 |
+
#: breadcrumb_navxt_admin.php:516
|
109 |
msgid "Home Prefix"
|
110 |
msgstr "Home-Prefix"
|
111 |
|
112 |
+
#: breadcrumb_navxt_admin.php:517
|
113 |
msgid "Home Suffix"
|
114 |
msgstr "Home-Suffix"
|
115 |
|
116 |
+
#: breadcrumb_navxt_admin.php:518
|
117 |
msgid "Home Anchor"
|
118 |
msgstr "Home-Link"
|
119 |
|
120 |
+
#: breadcrumb_navxt_admin.php:518
|
121 |
msgid "The anchor template for the home breadcrumb."
|
122 |
msgstr "Vorlage für den Link des Home-Breadcrumb."
|
123 |
|
124 |
+
#: breadcrumb_navxt_admin.php:519
|
125 |
msgid "Blog Anchor"
|
126 |
msgstr "Blog-Link"
|
127 |
|
128 |
+
#: breadcrumb_navxt_admin.php:519
|
129 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
130 |
msgstr "Vorlage für den Link des Blog-Breadcrumbs, wird nur verwendet wenn eine \"statische Seite\" als Startseite verwendet wird."
|
131 |
|
132 |
+
#: breadcrumb_navxt_admin.php:524
|
133 |
msgid "Current Item"
|
134 |
msgstr "Aktuelles Element"
|
135 |
|
136 |
+
#: breadcrumb_navxt_admin.php:527
|
137 |
msgid "Link Current Item"
|
138 |
msgstr "Aktuelles Element verlinken"
|
139 |
|
140 |
+
#: breadcrumb_navxt_admin.php:527
|
141 |
msgid "Yes"
|
142 |
msgstr "Ja"
|
143 |
|
144 |
+
#: breadcrumb_navxt_admin.php:528
|
145 |
msgid "Current Item Prefix"
|
146 |
msgstr "Aktuelles Elementen-Prefix"
|
147 |
|
148 |
+
#: breadcrumb_navxt_admin.php:528
|
149 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
150 |
msgstr "Wird immer vor dem letzten Breadcrumb dargestellt und zwar vor allen anderen Prefix(en) für dieses Breadcrumb."
|
151 |
|
152 |
+
#: breadcrumb_navxt_admin.php:529
|
153 |
msgid "Current Item Suffix"
|
154 |
msgstr "Aktuelles Elementen-Suffix"
|
155 |
|
156 |
+
#: breadcrumb_navxt_admin.php:529
|
157 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
158 |
msgstr "Analog zum Prefix wird auch das Suffix immer hinter dem letzten Breadcrumb inkl. Prefix(en) dargestellt."
|
159 |
|
160 |
+
#: breadcrumb_navxt_admin.php:530
|
161 |
msgid "Current Item Anchor"
|
162 |
msgstr "Aktuelles-Element-Link"
|
163 |
|
164 |
+
#: breadcrumb_navxt_admin.php:530
|
165 |
msgid "The anchor template for current item breadcrumbs."
|
166 |
msgstr "Vorlage für den Link des aktuellen Elements."
|
167 |
|
168 |
+
#: breadcrumb_navxt_admin.php:531
|
169 |
msgid "Paged Breadcrumb"
|
170 |
msgstr "Seitenzahlen Breadcrumb"
|
171 |
|
172 |
+
#: breadcrumb_navxt_admin.php:531
|
173 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
174 |
msgstr "Seitenzahlen Breadcrumb soll in der Aufreihung gezeigt werden."
|
175 |
|
176 |
+
#: breadcrumb_navxt_admin.php:531
|
177 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
178 |
msgstr "Zeigt an, dass die Leserin sich auf einer anderen als der ersten Seite befindet, falls Mehrseitigkeit unterstützt wird (funktioniert bei beiden Typen, Beitrag und Seite)."
|
179 |
|
180 |
+
#: breadcrumb_navxt_admin.php:532
|
181 |
msgid "Paged Prefix"
|
182 |
msgstr "Seitenzahlen-Prefix"
|
183 |
|
184 |
+
#: breadcrumb_navxt_admin.php:533
|
185 |
msgid "Paged Suffix"
|
186 |
msgstr "Seitenzahlen-Suffix"
|
187 |
|
188 |
+
#: breadcrumb_navxt_admin.php:538
|
189 |
msgid "Posts & Pages"
|
190 |
msgstr "Beiträge & Seiten"
|
191 |
|
192 |
+
#: breadcrumb_navxt_admin.php:541
|
193 |
msgid "Post Prefix"
|
194 |
msgstr "Beitrags-Prefix"
|
195 |
|
196 |
+
#: breadcrumb_navxt_admin.php:542
|
197 |
msgid "Post Suffix"
|
198 |
msgstr "Beitrags-Suffix"
|
199 |
|
200 |
+
#: breadcrumb_navxt_admin.php:543
|
201 |
msgid "Post Anchor"
|
202 |
msgstr "Beitrags-Link"
|
203 |
|
204 |
+
#: breadcrumb_navxt_admin.php:543
|
205 |
msgid "The anchor template for post breadcrumbs."
|
206 |
msgstr "Vorlage für den Link des Beitrag-Breadcrumbs."
|
207 |
|
208 |
+
#: breadcrumb_navxt_admin.php:544
|
209 |
msgid "Post Taxonomy Display"
|
210 |
msgstr "Beitrags-Klassifizierung"
|
211 |
|
212 |
+
#: breadcrumb_navxt_admin.php:544
|
213 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
214 |
msgstr "Klassifizierung soll vor dem Beitrag in der Aufreihung dargestellt werden."
|
215 |
|
216 |
+
#: breadcrumb_navxt_admin.php:548
|
217 |
msgid "Post Taxonomy"
|
218 |
msgstr "Klassifizierung des Beitrages"
|
219 |
|
220 |
+
#: breadcrumb_navxt_admin.php:552
|
221 |
+
#: breadcrumb_navxt_admin.php:650
|
222 |
msgid "Categories"
|
223 |
msgstr "Kategorien"
|
224 |
|
225 |
+
#: breadcrumb_navxt_admin.php:553
|
226 |
msgid "Dates"
|
227 |
msgstr "Datum"
|
228 |
|
229 |
+
#: breadcrumb_navxt_admin.php:554
|
230 |
+
#: breadcrumb_navxt_admin.php:662
|
231 |
msgid "Tags"
|
232 |
msgstr "Tags"
|
233 |
|
234 |
+
#: breadcrumb_navxt_admin.php:555
|
235 |
msgid "Pages"
|
236 |
msgstr "Seiten"
|
237 |
|
238 |
+
#: breadcrumb_navxt_admin.php:566
|
239 |
+
#: breadcrumb_navxt_admin.php:640
|
240 |
msgid "The taxonomy which the breadcrumb trail will show."
|
241 |
msgstr "Art der Klassifizierung, die die Aufreihung der Breadcrumbs nutzen wird. Hier ist eine Entscheidung zu treffen, da nicht beides - Kategorie und Tags - gleichzeitig angezeigt werden kann."
|
242 |
|
243 |
+
#: breadcrumb_navxt_admin.php:570
|
244 |
msgid "Page Prefix"
|
245 |
msgstr "Seiten-Prefix"
|
246 |
|
247 |
+
#: breadcrumb_navxt_admin.php:571
|
248 |
msgid "Page Suffix"
|
249 |
msgstr "Seiten-Suffix"
|
250 |
|
251 |
+
#: breadcrumb_navxt_admin.php:572
|
252 |
msgid "Page Anchor"
|
253 |
msgstr "Seiten-Link"
|
254 |
|
255 |
+
#: breadcrumb_navxt_admin.php:572
|
256 |
msgid "The anchor template for page breadcrumbs."
|
257 |
msgstr "Vorlage für den Link des Seiten-Breadcrumbs."
|
258 |
|
259 |
+
#: breadcrumb_navxt_admin.php:573
|
260 |
msgid "Attachment Prefix"
|
261 |
msgstr "Anhangs-Prefix"
|
262 |
|
263 |
+
#: breadcrumb_navxt_admin.php:574
|
264 |
msgid "Attachment Suffix"
|
265 |
msgstr "Anhangs-Suffix"
|
266 |
|
267 |
+
#: breadcrumb_navxt_admin.php:616
|
268 |
+
#: breadcrumb_navxt_admin.php:699
|
269 |
+
#, php-format
|
270 |
+
msgid "%s Prefix"
|
271 |
+
msgstr "%s Prefix"
|
272 |
+
|
273 |
+
#: breadcrumb_navxt_admin.php:617
|
274 |
+
#: breadcrumb_navxt_admin.php:700
|
275 |
+
#, php-format
|
276 |
+
msgid "%s Suffix"
|
277 |
+
msgstr "%s Suffix"
|
278 |
+
|
279 |
+
#: breadcrumb_navxt_admin.php:618
|
280 |
+
#: breadcrumb_navxt_admin.php:701
|
281 |
+
#, php-format
|
282 |
+
msgid "%s Anchor"
|
283 |
+
msgstr "%s-Link"
|
284 |
+
|
285 |
+
#: breadcrumb_navxt_admin.php:618
|
286 |
+
#: breadcrumb_navxt_admin.php:701
|
287 |
+
#, php-format
|
288 |
+
msgid "The anchor template for %s breadcrumbs."
|
289 |
+
msgstr "Vorlage für den Link des %s-Breadcrumbs."
|
290 |
+
|
291 |
+
#: breadcrumb_navxt_admin.php:622
|
292 |
+
#, php-format
|
293 |
+
msgid "%s Taxonomy Display"
|
294 |
+
msgstr "%s Klassifizierungs-Anzeige"
|
295 |
+
|
296 |
+
#: breadcrumb_navxt_admin.php:622
|
297 |
+
#, php-format
|
298 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
299 |
+
msgstr "Klassifizierung soll vor %s in der Aufreihung dargestellt werden."
|
300 |
+
|
301 |
+
#: breadcrumb_navxt_admin.php:626
|
302 |
+
#, php-format
|
303 |
+
msgid "%s Taxonomy"
|
304 |
+
msgstr "%s Klassifizierung"
|
305 |
+
|
306 |
+
#: breadcrumb_navxt_admin.php:653
|
307 |
msgid "Category Prefix"
|
308 |
msgstr "Kategorie-Prefix"
|
309 |
|
310 |
+
#: breadcrumb_navxt_admin.php:653
|
311 |
msgid "Applied before the anchor on all category breadcrumbs."
|
312 |
msgstr "Wir vor dem Link von allen Kategorien-Breadcrumbs dargestellt."
|
313 |
|
314 |
+
#: breadcrumb_navxt_admin.php:654
|
315 |
msgid "Category Suffix"
|
316 |
msgstr "Kategorie-Suffix"
|
317 |
|
318 |
+
#: breadcrumb_navxt_admin.php:654
|
319 |
msgid "Applied after the anchor on all category breadcrumbs."
|
320 |
msgstr "Wir nach dem Link von allen Kategorien-Breadcrumbs dargestellt."
|
321 |
|
322 |
+
#: breadcrumb_navxt_admin.php:655
|
323 |
msgid "Category Anchor"
|
324 |
msgstr "Kategorie-Link"
|
325 |
|
326 |
+
#: breadcrumb_navxt_admin.php:655
|
327 |
msgid "The anchor template for category breadcrumbs."
|
328 |
msgstr "Vorlage für den Link des Kategorien-Breadcrumbs."
|
329 |
|
330 |
+
#: breadcrumb_navxt_admin.php:656
|
331 |
msgid "Archive by Category Prefix"
|
332 |
msgstr "Archiv-Prefix (Kategorien)"
|
333 |
|
334 |
+
#: breadcrumb_navxt_admin.php:656
|
335 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
336 |
msgstr "Wir vor dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
|
337 |
|
338 |
+
#: breadcrumb_navxt_admin.php:657
|
339 |
msgid "Archive by Category Suffix"
|
340 |
msgstr "Archiv-Suffix (Kategorien)"
|
341 |
|
342 |
+
#: breadcrumb_navxt_admin.php:657
|
343 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
344 |
msgstr "Wird nach dem Link von allen Archiv-Kategorien-Breadcrumbs dargestellt."
|
345 |
|
346 |
+
#: breadcrumb_navxt_admin.php:665
|
347 |
msgid "Tag Prefix"
|
348 |
msgstr "Tag-Prefix"
|
349 |
|
350 |
+
#: breadcrumb_navxt_admin.php:665
|
351 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
352 |
msgstr "Wird vor dem Link der Tag-Breadcrumbs dargestellt."
|
353 |
|
354 |
+
#: breadcrumb_navxt_admin.php:666
|
355 |
msgid "Tag Suffix"
|
356 |
msgstr "Tag-Suffix"
|
357 |
|
358 |
+
#: breadcrumb_navxt_admin.php:666
|
359 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
360 |
msgstr "Wird nach dem Link der Tag-Breadcrumbs dargestellt."
|
361 |
|
362 |
+
#: breadcrumb_navxt_admin.php:667
|
363 |
msgid "Tag Anchor"
|
364 |
msgstr "Tag-Link"
|
365 |
|
366 |
+
#: breadcrumb_navxt_admin.php:667
|
367 |
msgid "The anchor template for tag breadcrumbs."
|
368 |
msgstr "Vorlage für den Link des Tag-Breadcrumbs."
|
369 |
|
370 |
+
#: breadcrumb_navxt_admin.php:668
|
371 |
msgid "Archive by Tag Prefix"
|
372 |
msgstr "Archiv-Prefix (Tag)"
|
373 |
|
374 |
+
#: breadcrumb_navxt_admin.php:668
|
375 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
376 |
msgstr "Wird vor dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
|
377 |
|
378 |
+
#: breadcrumb_navxt_admin.php:669
|
379 |
msgid "Archive by Tag Suffix"
|
380 |
msgstr "Archiv-Suffix (Tag)"
|
381 |
|
382 |
+
#: breadcrumb_navxt_admin.php:669
|
383 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
384 |
msgstr "Wird nach dem Link von allen Tag-Archiv-Breadcrumbs dargestellt."
|
385 |
|
386 |
+
#: breadcrumb_navxt_admin.php:699
|
|
|
|
|
|
|
|
|
|
|
387 |
#, php-format
|
388 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
389 |
msgstr "Wird vor dem Link der %s-Breadcrumbs dargestellt."
|
390 |
|
391 |
+
#: breadcrumb_navxt_admin.php:700
|
|
|
|
|
|
|
|
|
|
|
392 |
#, php-format
|
393 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
394 |
msgstr "Wird nach dem Link der %s-Breadcrumbs dargestellt."
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:702
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
#, php-format
|
398 |
msgid "Archive by %s Prefix"
|
399 |
msgstr "Archiv-Prefix (%s)"
|
400 |
|
401 |
+
#: breadcrumb_navxt_admin.php:702
|
402 |
#, php-format
|
403 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
404 |
msgstr "Wird vor dem Link von allen %s-Archiv-Breadcrumbs dargestellt."
|
405 |
|
406 |
+
#: breadcrumb_navxt_admin.php:703
|
407 |
#, php-format
|
408 |
msgid "Archive by %s Suffix"
|
409 |
msgstr "Archiv-Suffix (%s)"
|
410 |
|
411 |
+
#: breadcrumb_navxt_admin.php:703
|
412 |
#, php-format
|
413 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
414 |
msgstr "Wird nach dem Link von allen %s-Archiv-Breadcrumbs dargestellt."
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:712
|
417 |
msgid "Date Archives"
|
418 |
msgstr "Archiv (Datum)"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:715
|
421 |
msgid "Date Anchor"
|
422 |
msgstr "Datums-Link"
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:715
|
425 |
msgid "The anchor template for date breadcrumbs."
|
426 |
msgstr "Vorlage für den Link der Datums-Breadcrumbs."
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:716
|
429 |
msgid "Archive by Date Prefix"
|
430 |
msgstr "Archiv-Suffix (Datum)"
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:716
|
433 |
msgid "Applied before the anchor on all date breadcrumbs."
|
434 |
msgstr "Wird vor dem Link der Datums-Breadcrumbs angezeigt."
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:717
|
|
|
437 |
msgid "Archive by Date Suffix"
|
438 |
msgstr "Archiv-Suffix (Datum)"
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:717
|
|
|
441 |
msgid "Applied after the anchor on all date breadcrumbs."
|
442 |
msgstr "Wird nach dem Link der Datums-Archiv-Breadcrumbs angezeigt."
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:722
|
445 |
msgid "Miscellaneous"
|
446 |
msgstr "Verschiedenes"
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:725
|
449 |
msgid "Author Prefix"
|
450 |
msgstr "Autor-Prefix"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:726
|
453 |
msgid "Author Suffix"
|
454 |
msgstr "Autor-Suffix"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:727
|
457 |
msgid "Author Display Format"
|
458 |
msgstr "Autoren-Darstellung"
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:727
|
461 |
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."
|
462 |
msgstr "display_name steht für die Darstellung, die der Benutzer in seinem Profil gewählt hat, die anderen Optionen korrespondieren zu den Werten im Benutzerprofil."
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:728
|
465 |
msgid "Search Prefix"
|
466 |
msgstr "Suche-Prefix"
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:729
|
469 |
msgid "Search Suffix"
|
470 |
msgstr "Suche-Suffix"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:730
|
473 |
msgid "Search Anchor"
|
474 |
msgstr "Suche-Link"
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:730
|
477 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
478 |
msgstr "Vorlage für den Link der Suche-Breadcrumbs. Wird nur benutzt, falls die Suchergebnisse über mehrere Seiten laufen."
|
479 |
|
480 |
+
#: breadcrumb_navxt_admin.php:731
|
481 |
msgid "404 Title"
|
482 |
msgstr "404-Titel"
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:732
|
485 |
msgid "404 Prefix"
|
486 |
msgstr "404-Prefix"
|
487 |
|
488 |
+
#: breadcrumb_navxt_admin.php:733
|
489 |
msgid "404 Suffix"
|
490 |
msgstr "404-Suffix"
|
491 |
|
492 |
+
#: breadcrumb_navxt_admin.php:738
|
493 |
msgid "Save Changes"
|
494 |
msgstr "Änderungen speichern"
|
495 |
|
496 |
+
#: breadcrumb_navxt_class.php:154
|
497 |
msgid "Blog"
|
498 |
msgstr "Blog"
|
499 |
|
500 |
+
#: breadcrumb_navxt_class.php:173
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
501 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
502 |
msgstr "<a title=\"Lade aktuelle Seite neu.\" href=\"%link%\">"
|
503 |
|
504 |
+
#: breadcrumb_navxt_class.php:214
|
505 |
msgid "404"
|
506 |
msgstr "404"
|
507 |
|
508 |
+
#: breadcrumb_navxt_class.php:217
|
509 |
msgid "Search results for '"
|
510 |
msgstr "Suchergebnisse für '"
|
511 |
|
512 |
+
#: breadcrumb_navxt_class.php:221
|
513 |
+
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
514 |
+
msgstr "<a title=\"Zur ersten Seite der Suchergebnisse für %title%.\" href=\"%link%\">"
|
515 |
+
|
516 |
+
#: breadcrumb_navxt_class.php:228
|
517 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
518 |
msgstr "<a title=\"Zum %title% Tag-Archiv.\" href=\"%link%\">"
|
519 |
|
520 |
+
#: breadcrumb_navxt_class.php:231
|
521 |
msgid "Articles by: "
|
522 |
msgstr "Artikel von:"
|
523 |
|
524 |
+
#: breadcrumb_navxt_class.php:235
|
525 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
526 |
msgstr "<a title=\"Zur ersten Seite für Biträge mit %title%.\" href=\"%link%\">"
|
527 |
|
528 |
+
#: breadcrumb_navxt_class.php:244
|
529 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
530 |
msgstr "<a title=\"Zum %title% Kategorie Archiv.\" href=\"%link%\">"
|
531 |
|
532 |
+
#: breadcrumb_navxt_class.php:247
|
533 |
msgid "Archive by category '"
|
534 |
msgstr "Archiv nach Kategorie '"
|
535 |
|
536 |
+
#: breadcrumb_navxt_class.php:251
|
537 |
msgid "Archive by tag '"
|
538 |
msgstr "Archiv nach Tag '"
|
539 |
|
540 |
+
#: breadcrumb_navxt_class.php:254
|
541 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
542 |
msgstr "<a title=\"Gehe zu %title% Archiv.\" href=\"%link%\">"
|
543 |
|
544 |
+
#: breadcrumb_navxt_class.php:425
|
545 |
msgid "Untagged"
|
546 |
msgstr "Ohne Tags"
|
547 |
|
549 |
msgid "Adds a breadcrumb trail to your sidebar"
|
550 |
msgstr "Packt einen Brotkrumen Pfad (Breadcrumb Trail) in die Sidebar."
|
551 |
|
552 |
+
#: breadcrumb_navxt_widget.php:72
|
553 |
msgid "Title:"
|
554 |
msgstr "Titel:"
|
555 |
|
556 |
+
#: breadcrumb_navxt_widget.php:77
|
557 |
msgid "Output trail as a list"
|
558 |
msgstr "Als Liste ausgeben"
|
559 |
|
560 |
+
#: breadcrumb_navxt_widget.php:79
|
561 |
msgid "Link the breadcrumbs"
|
562 |
msgstr "Breadcrumbs verlinken"
|
563 |
|
564 |
+
#: breadcrumb_navxt_widget.php:81
|
565 |
msgid "Reverse the order of the trail"
|
566 |
msgstr "Reihenfolge des Pfades umkehren"
|
567 |
|
568 |
+
#: breadcrumb_navxt_widget.php:83
|
569 |
+
msgid "Hide the trail on the front page"
|
570 |
+
msgstr "Brotkrumen nicht auf der Startseite anzeigen"
|
571 |
+
|
572 |
+
#: mtekk_admin_class.php:56
|
573 |
+
msgid "Undo"
|
574 |
+
msgstr "Rückgänig"
|
575 |
+
|
576 |
+
#: mtekk_admin_class.php:150
|
577 |
msgid "Settings"
|
578 |
msgstr "Einstellungen"
|
579 |
|
580 |
+
#: mtekk_admin_class.php:284
|
581 |
msgid "Settings successfully imported from the uploaded file."
|
582 |
msgstr "Einstellungen wurden erfolgreich importiert."
|
583 |
|
584 |
+
#: mtekk_admin_class.php:284
|
585 |
+
msgid "Undo the options import."
|
586 |
+
msgstr "Einstellungs-Import Rückgänig machen."
|
587 |
+
|
588 |
+
#: mtekk_admin_class.php:289
|
589 |
msgid "Importing settings from file failed."
|
590 |
msgstr "Datei-Import ist fehlgeschlagen."
|
591 |
|
592 |
+
#: mtekk_admin_class.php:310
|
593 |
msgid "Settings successfully reset to the default values."
|
594 |
msgstr "Einstellungen wurden erfolgreich zurückgesetzt."
|
595 |
|
596 |
+
#: mtekk_admin_class.php:310
|
597 |
+
msgid "Undo the options reset."
|
598 |
+
msgstr "Einstellungs-Reset Rückgänig machen."
|
599 |
+
|
600 |
+
#: mtekk_admin_class.php:324
|
601 |
+
msgid "Settings successfully undid the last operation."
|
602 |
+
msgstr "Einstellungen wurden erfolgreich rückgänig gemacht."
|
603 |
+
|
604 |
+
#: mtekk_admin_class.php:324
|
605 |
+
msgid "Undo the last undo operation."
|
606 |
+
msgstr "Wiederherstellen."
|
607 |
+
|
608 |
+
#: mtekk_admin_class.php:354
|
609 |
#, php-format
|
610 |
msgid "Get help with \"%s\""
|
611 |
msgstr "Hilfe für \"%s\""
|
612 |
|
613 |
+
#: mtekk_admin_class.php:435
|
614 |
msgid "Import/Export/Reset Settings"
|
615 |
msgstr "Import/Export/Zurücksetzen von Einstellungen"
|
616 |
|
617 |
+
#: mtekk_admin_class.php:436
|
618 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
619 |
msgstr "Einstellungen aus einer XML-Datei importieren, die aktuellen Einstellungen in eine XML-Datei exportieren oder die Einstellungen auf Standardwerte zurücksetzen."
|
620 |
|
621 |
+
#: mtekk_admin_class.php:439
|
622 |
msgid "Settings File"
|
623 |
msgstr "Datei mit Einstellungen"
|
624 |
|
625 |
+
#: mtekk_admin_class.php:442
|
626 |
msgid "Select a XML settings file to upload and import settings from."
|
627 |
msgstr "Wähle eine XML-Datei zum hochladen, aus der die Einstellungen importiert werden können."
|
628 |
|
629 |
+
#~ msgid ""
|
630 |
+
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
631 |
+
#~ "the default values. Are you sure you want to continue?"
|
632 |
+
#~ msgstr ""
|
633 |
+
#~ "Alle Breadcrumb NavXT Einstellungen werden mit den Standardwerten "
|
634 |
+
#~ "überschrieben. Fortfahren?"
|
635 |
+
#~ msgid ""
|
636 |
+
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
637 |
+
#~ "the imported values. Are you sure you want to continue?"
|
638 |
+
#~ msgstr ""
|
639 |
+
#~ "Alle Breadcrumb NavXT Einstellungen werden mit den importierten Werten "
|
640 |
+
#~ "überschrieben. Fortfahren?"
|
641 |
#~ msgid ""
|
642 |
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
643 |
#~ "supported by this administrative interface. As a result, settings may not "
|
languages/breadcrumb_navxt-id_ID.mo
ADDED
Binary file
|
languages/breadcrumb_navxt-id_ID.po
ADDED
@@ -0,0 +1,645 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file was generated by WPML
|
2 |
+
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
|
3 |
+
# http://wpml.org
|
4 |
+
msgid ""
|
5 |
+
msgstr ""
|
6 |
+
"Project-Id-Version: Indonesian Translation for Breadcrump NavXT version 3.6.0\n"
|
7 |
+
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2010-08-29 13:15+0700\n"
|
9 |
+
"PO-Revision-Date: \n"
|
10 |
+
"Last-Translator: Masino Sinaga <admin@masinosinaga.com>\n"
|
11 |
+
"Language-Team: Masino Sinaga <admin@masinosinaga.com>\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Poedit-Language: Indonesian\n"
|
16 |
+
"X-Poedit-Country: INDONESIA\n"
|
17 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-SearchPath-0: ..\n"
|
21 |
+
|
22 |
+
#: ../breadcrumb_navxt_admin.php:30
|
23 |
+
#, php-format
|
24 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
25 |
+
msgstr "Versi PHP Anda sudah sangat lama, mutakhirkan ke versi yang lebih baru. Versi Anda saat ini %s, plugin ini membutuhkan %s"
|
26 |
+
|
27 |
+
#: ../breadcrumb_navxt_admin.php:112
|
28 |
+
msgid "Insufficient privileges to proceed."
|
29 |
+
msgstr "Hak akses tidak cukup untuk melanjutkan."
|
30 |
+
|
31 |
+
#: ../breadcrumb_navxt_admin.php:189
|
32 |
+
#: ../breadcrumb_navxt_admin.php:280
|
33 |
+
#: ../breadcrumb_navxt_admin.php:591
|
34 |
+
#: ../breadcrumb_navxt_class.php:74
|
35 |
+
#: ../breadcrumb_navxt_class.php:162
|
36 |
+
#: ../breadcrumb_navxt_class.php:166
|
37 |
+
#: ../breadcrumb_navxt_class.php:190
|
38 |
+
#: ../breadcrumb_navxt_class.php:204
|
39 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
40 |
+
msgstr "<a title=\"Lompat ke %title%.\" href=\"%link%\">"
|
41 |
+
|
42 |
+
#: ../breadcrumb_navxt_admin.php:349
|
43 |
+
msgid "Settings successfully saved."
|
44 |
+
msgstr "Pengaturan berhasil disimpan."
|
45 |
+
|
46 |
+
#: ../breadcrumb_navxt_admin.php:349
|
47 |
+
msgid "Undo the options save."
|
48 |
+
msgstr "Kembalikan penyimpanan pilihan."
|
49 |
+
|
50 |
+
#: ../breadcrumb_navxt_admin.php:372
|
51 |
+
#, php-format
|
52 |
+
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
53 |
+
msgstr "Tips untuk pengaturan berada di bawah pilihan. Silahkan mengacu kepada %sdocumentation%s untuk informasi lebih lanjut."
|
54 |
+
|
55 |
+
#: ../breadcrumb_navxt_admin.php:373
|
56 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
57 |
+
msgstr "Lompat ke dokumentasi langsung Breadcrumb NavXT"
|
58 |
+
|
59 |
+
#: ../breadcrumb_navxt_admin.php:459
|
60 |
+
#: ../mtekk_admin_class.php:461
|
61 |
+
msgid "Import"
|
62 |
+
msgstr "Impor"
|
63 |
+
|
64 |
+
#: ../breadcrumb_navxt_admin.php:459
|
65 |
+
#: ../mtekk_admin_class.php:462
|
66 |
+
msgid "Export"
|
67 |
+
msgstr "Ekspor"
|
68 |
+
|
69 |
+
#: ../breadcrumb_navxt_admin.php:459
|
70 |
+
#: ../mtekk_admin_class.php:463
|
71 |
+
msgid "Reset"
|
72 |
+
msgstr "Riset"
|
73 |
+
|
74 |
+
#: ../breadcrumb_navxt_admin.php:481
|
75 |
+
msgid "Breadcrumb NavXT Settings"
|
76 |
+
msgstr "Pengaturan Breadcrumb NavXT"
|
77 |
+
|
78 |
+
#: ../breadcrumb_navxt_admin.php:489
|
79 |
+
msgid "General"
|
80 |
+
msgstr "Umum"
|
81 |
+
|
82 |
+
#: ../breadcrumb_navxt_admin.php:492
|
83 |
+
msgid "Breadcrumb Separator"
|
84 |
+
msgstr "Pemisah Breadcrumb"
|
85 |
+
|
86 |
+
#: ../breadcrumb_navxt_admin.php:492
|
87 |
+
msgid "Placed in between each breadcrumb."
|
88 |
+
msgstr "Ditempatkan di antara setiap breadcrumb."
|
89 |
+
|
90 |
+
#: ../breadcrumb_navxt_admin.php:493
|
91 |
+
msgid "Breadcrumb Max Title Length"
|
92 |
+
msgstr "Panjang Maksimal Judul Breadcrumb"
|
93 |
+
|
94 |
+
#: ../breadcrumb_navxt_admin.php:497
|
95 |
+
msgid "Home Breadcrumb"
|
96 |
+
msgstr "Breadcrumb Beranda"
|
97 |
+
|
98 |
+
#: ../breadcrumb_navxt_admin.php:502
|
99 |
+
msgid "Place the home breadcrumb in the trail."
|
100 |
+
msgstr "Tempatkan breadcrumb beranda di trail."
|
101 |
+
|
102 |
+
#: ../breadcrumb_navxt_admin.php:507
|
103 |
+
msgid "Home Title: "
|
104 |
+
msgstr "Judul Beranda: "
|
105 |
+
|
106 |
+
#: ../breadcrumb_navxt_admin.php:515
|
107 |
+
msgid "Blog Breadcrumb"
|
108 |
+
msgstr "Blog Breadcrumb"
|
109 |
+
|
110 |
+
#: ../breadcrumb_navxt_admin.php:515
|
111 |
+
msgid "Place the blog breadcrumb in the trail."
|
112 |
+
msgstr "Tempatkan breadcrumb blog di trail."
|
113 |
+
|
114 |
+
#: ../breadcrumb_navxt_admin.php:516
|
115 |
+
msgid "Home Prefix"
|
116 |
+
msgstr "Awalan Beranda"
|
117 |
+
|
118 |
+
#: ../breadcrumb_navxt_admin.php:517
|
119 |
+
msgid "Home Suffix"
|
120 |
+
msgstr "Akhiran Beranda"
|
121 |
+
|
122 |
+
#: ../breadcrumb_navxt_admin.php:518
|
123 |
+
msgid "Home Anchor"
|
124 |
+
msgstr "Jangkar Beranda"
|
125 |
+
|
126 |
+
#: ../breadcrumb_navxt_admin.php:518
|
127 |
+
msgid "The anchor template for the home breadcrumb."
|
128 |
+
msgstr "Templat Jangkar untuk beranda breadcrumb."
|
129 |
+
|
130 |
+
#: ../breadcrumb_navxt_admin.php:519
|
131 |
+
msgid "Blog Anchor"
|
132 |
+
msgstr "Jangkar Blog"
|
133 |
+
|
134 |
+
#: ../breadcrumb_navxt_admin.php:519
|
135 |
+
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
136 |
+
msgstr "Template jangkar untuk breadcrumb blog, digunakan hanya di lingkungan halaman depan yang bersifat statik."
|
137 |
+
|
138 |
+
#: ../breadcrumb_navxt_admin.php:524
|
139 |
+
msgid "Current Item"
|
140 |
+
msgstr "Item Saat Ini"
|
141 |
+
|
142 |
+
#: ../breadcrumb_navxt_admin.php:527
|
143 |
+
msgid "Link Current Item"
|
144 |
+
msgstr "Tautan Item Saat Ini"
|
145 |
+
|
146 |
+
#: ../breadcrumb_navxt_admin.php:527
|
147 |
+
msgid "Yes"
|
148 |
+
msgstr "Ya"
|
149 |
+
|
150 |
+
#: ../breadcrumb_navxt_admin.php:528
|
151 |
+
msgid "Current Item Prefix"
|
152 |
+
msgstr "Awalan Item Saat Ini"
|
153 |
+
|
154 |
+
#: ../breadcrumb_navxt_admin.php:528
|
155 |
+
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
156 |
+
msgstr "Ini selalu ditempatkan di depan dari breadcrumb terakhir di trail, sebelum awalan apapun untuk breadcrumb itu."
|
157 |
+
|
158 |
+
#: ../breadcrumb_navxt_admin.php:529
|
159 |
+
msgid "Current Item Suffix"
|
160 |
+
msgstr "Akhiran Item Saat Ini"
|
161 |
+
|
162 |
+
#: ../breadcrumb_navxt_admin.php:529
|
163 |
+
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
164 |
+
msgstr "Ini selalu ditempatkan setelah breadcrumb terakhir di trail, dan setelah awalan apapun untuk breadcrumb itu."
|
165 |
+
|
166 |
+
#: ../breadcrumb_navxt_admin.php:530
|
167 |
+
msgid "Current Item Anchor"
|
168 |
+
msgstr "Jangkar Item Saat Ini"
|
169 |
+
|
170 |
+
#: ../breadcrumb_navxt_admin.php:530
|
171 |
+
msgid "The anchor template for current item breadcrumbs."
|
172 |
+
msgstr "Templat jangkar untuk item breadcrumbs saat ini."
|
173 |
+
|
174 |
+
#: ../breadcrumb_navxt_admin.php:531
|
175 |
+
msgid "Paged Breadcrumb"
|
176 |
+
msgstr "Breadcrumb Halaman"
|
177 |
+
|
178 |
+
#: ../breadcrumb_navxt_admin.php:531
|
179 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
180 |
+
msgstr "Sertakan breadcrumb halaman di breadcrumb trail."
|
181 |
+
|
182 |
+
#: ../breadcrumb_navxt_admin.php:531
|
183 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
184 |
+
msgstr "Menandakan bahwa pengguna sedang berada di sebuah halaman selain dari yang pertama di halaman/artikel yang memiliki nomor halaman."
|
185 |
+
|
186 |
+
#: ../breadcrumb_navxt_admin.php:532
|
187 |
+
msgid "Paged Prefix"
|
188 |
+
msgstr "Awalan Halaman"
|
189 |
+
|
190 |
+
#: ../breadcrumb_navxt_admin.php:533
|
191 |
+
msgid "Paged Suffix"
|
192 |
+
msgstr "Akhiran Halaman"
|
193 |
+
|
194 |
+
#: ../breadcrumb_navxt_admin.php:538
|
195 |
+
msgid "Posts & Pages"
|
196 |
+
msgstr "Tulisan & Halaman"
|
197 |
+
|
198 |
+
#: ../breadcrumb_navxt_admin.php:541
|
199 |
+
msgid "Post Prefix"
|
200 |
+
msgstr "Awalan Tulisan"
|
201 |
+
|
202 |
+
#: ../breadcrumb_navxt_admin.php:542
|
203 |
+
msgid "Post Suffix"
|
204 |
+
msgstr "Akhiran Tulisan"
|
205 |
+
|
206 |
+
#: ../breadcrumb_navxt_admin.php:543
|
207 |
+
msgid "Post Anchor"
|
208 |
+
msgstr "Jangkar Tulisan"
|
209 |
+
|
210 |
+
#: ../breadcrumb_navxt_admin.php:543
|
211 |
+
msgid "The anchor template for post breadcrumbs."
|
212 |
+
msgstr "Templat jangkar untuk breadcrumbs tulisan."
|
213 |
+
|
214 |
+
#: ../breadcrumb_navxt_admin.php:544
|
215 |
+
msgid "Post Taxonomy Display"
|
216 |
+
msgstr "Tampilan Taxonomy Tulisan"
|
217 |
+
|
218 |
+
#: ../breadcrumb_navxt_admin.php:544
|
219 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
220 |
+
msgstr "Tampilkan awalan taxonomy ke sebuah tulisan di breadcrumb trail."
|
221 |
+
|
222 |
+
#: ../breadcrumb_navxt_admin.php:548
|
223 |
+
msgid "Post Taxonomy"
|
224 |
+
msgstr "Taxonomy Tulisan"
|
225 |
+
|
226 |
+
#: ../breadcrumb_navxt_admin.php:552
|
227 |
+
#: ../breadcrumb_navxt_admin.php:650
|
228 |
+
msgid "Categories"
|
229 |
+
msgstr "Kategori"
|
230 |
+
|
231 |
+
#: ../breadcrumb_navxt_admin.php:553
|
232 |
+
msgid "Dates"
|
233 |
+
msgstr "Tanggal"
|
234 |
+
|
235 |
+
#: ../breadcrumb_navxt_admin.php:554
|
236 |
+
#: ../breadcrumb_navxt_admin.php:662
|
237 |
+
msgid "Tags"
|
238 |
+
msgstr "Tag"
|
239 |
+
|
240 |
+
#: ../breadcrumb_navxt_admin.php:555
|
241 |
+
msgid "Pages"
|
242 |
+
msgstr "Halaman"
|
243 |
+
|
244 |
+
#: ../breadcrumb_navxt_admin.php:566
|
245 |
+
#: ../breadcrumb_navxt_admin.php:640
|
246 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
247 |
+
msgstr "Taxonomy di tempat breadcrumb trail akan ditampilkan."
|
248 |
+
|
249 |
+
#: ../breadcrumb_navxt_admin.php:570
|
250 |
+
msgid "Page Prefix"
|
251 |
+
msgstr "Awalan Halaman"
|
252 |
+
|
253 |
+
#: ../breadcrumb_navxt_admin.php:571
|
254 |
+
msgid "Page Suffix"
|
255 |
+
msgstr "Akhiran Halaman"
|
256 |
+
|
257 |
+
#: ../breadcrumb_navxt_admin.php:572
|
258 |
+
msgid "Page Anchor"
|
259 |
+
msgstr "Jangkar Halaman"
|
260 |
+
|
261 |
+
#: ../breadcrumb_navxt_admin.php:572
|
262 |
+
msgid "The anchor template for page breadcrumbs."
|
263 |
+
msgstr "Templat jangkar untuk halaman breadcrumbs."
|
264 |
+
|
265 |
+
#: ../breadcrumb_navxt_admin.php:573
|
266 |
+
msgid "Attachment Prefix"
|
267 |
+
msgstr "Awalan Lampiran"
|
268 |
+
|
269 |
+
#: ../breadcrumb_navxt_admin.php:574
|
270 |
+
msgid "Attachment Suffix"
|
271 |
+
msgstr "Akhiran Lampiran"
|
272 |
+
|
273 |
+
#: ../breadcrumb_navxt_admin.php:616
|
274 |
+
#: ../breadcrumb_navxt_admin.php:699
|
275 |
+
#, php-format
|
276 |
+
msgid "%s Prefix"
|
277 |
+
msgstr "Awalan %s"
|
278 |
+
|
279 |
+
#: ../breadcrumb_navxt_admin.php:617
|
280 |
+
#: ../breadcrumb_navxt_admin.php:700
|
281 |
+
#, php-format
|
282 |
+
msgid "%s Suffix"
|
283 |
+
msgstr "Akhiran %s"
|
284 |
+
|
285 |
+
#: ../breadcrumb_navxt_admin.php:618
|
286 |
+
#: ../breadcrumb_navxt_admin.php:701
|
287 |
+
#, php-format
|
288 |
+
msgid "%s Anchor"
|
289 |
+
msgstr "Jangkar %s"
|
290 |
+
|
291 |
+
#: ../breadcrumb_navxt_admin.php:618
|
292 |
+
#: ../breadcrumb_navxt_admin.php:701
|
293 |
+
#, php-format
|
294 |
+
msgid "The anchor template for %s breadcrumbs."
|
295 |
+
msgstr "Templat jangkar untuk %s breadcrumbs."
|
296 |
+
|
297 |
+
#: ../breadcrumb_navxt_admin.php:622
|
298 |
+
#, php-format
|
299 |
+
msgid "%s Taxonomy Display"
|
300 |
+
msgstr "Tampilan Taxonomy %s"
|
301 |
+
|
302 |
+
#: ../breadcrumb_navxt_admin.php:622
|
303 |
+
#, php-format
|
304 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
305 |
+
msgstr "Tampilkan awalan taxonomy ke sebuah %s di alamat."
|
306 |
+
|
307 |
+
#: ../breadcrumb_navxt_admin.php:626
|
308 |
+
#, php-format
|
309 |
+
msgid "%s Taxonomy"
|
310 |
+
msgstr "Taxonomy %s"
|
311 |
+
|
312 |
+
#: ../breadcrumb_navxt_admin.php:653
|
313 |
+
msgid "Category Prefix"
|
314 |
+
msgstr "Awalan Kategori"
|
315 |
+
|
316 |
+
#: ../breadcrumb_navxt_admin.php:653
|
317 |
+
msgid "Applied before the anchor on all category breadcrumbs."
|
318 |
+
msgstr "Diterapkan sebelum jangkar pada semua kategori breadcrumbs."
|
319 |
+
|
320 |
+
#: ../breadcrumb_navxt_admin.php:654
|
321 |
+
msgid "Category Suffix"
|
322 |
+
msgstr "Akhiran Kategori"
|
323 |
+
|
324 |
+
#: ../breadcrumb_navxt_admin.php:654
|
325 |
+
msgid "Applied after the anchor on all category breadcrumbs."
|
326 |
+
msgstr "Diterapkan setelah jangkar pada semua kategori breadcrumbs."
|
327 |
+
|
328 |
+
#: ../breadcrumb_navxt_admin.php:655
|
329 |
+
msgid "Category Anchor"
|
330 |
+
msgstr "Jangkar Kategori"
|
331 |
+
|
332 |
+
#: ../breadcrumb_navxt_admin.php:655
|
333 |
+
msgid "The anchor template for category breadcrumbs."
|
334 |
+
msgstr "Templat jangkar untuk kategori breadcrumbs."
|
335 |
+
|
336 |
+
#: ../breadcrumb_navxt_admin.php:656
|
337 |
+
msgid "Archive by Category Prefix"
|
338 |
+
msgstr "Arsip berdasarkan Awalan Kategori"
|
339 |
+
|
340 |
+
#: ../breadcrumb_navxt_admin.php:656
|
341 |
+
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
342 |
+
msgstr "Diterapkan sebelum judul dari item breadcrumb yang aktif pada sebuah arsip berdasarkan halaman kategori."
|
343 |
+
|
344 |
+
#: ../breadcrumb_navxt_admin.php:657
|
345 |
+
msgid "Archive by Category Suffix"
|
346 |
+
msgstr "Arsip berdasarkan Akhiran Kategori"
|
347 |
+
|
348 |
+
#: ../breadcrumb_navxt_admin.php:657
|
349 |
+
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
350 |
+
msgstr "Diterapkan setelah judul dari item breadcrumb yang aktif pada sebuah arsip berdasarkan halaman kategori."
|
351 |
+
|
352 |
+
#: ../breadcrumb_navxt_admin.php:665
|
353 |
+
msgid "Tag Prefix"
|
354 |
+
msgstr "Awalan Tag"
|
355 |
+
|
356 |
+
#: ../breadcrumb_navxt_admin.php:665
|
357 |
+
msgid "Applied before the anchor on all tag breadcrumbs."
|
358 |
+
msgstr "Diterapkan sebelum jangkar pada semua tag breadcrumbs."
|
359 |
+
|
360 |
+
#: ../breadcrumb_navxt_admin.php:666
|
361 |
+
msgid "Tag Suffix"
|
362 |
+
msgstr "Akhiran Tag"
|
363 |
+
|
364 |
+
#: ../breadcrumb_navxt_admin.php:666
|
365 |
+
msgid "Applied after the anchor on all tag breadcrumbs."
|
366 |
+
msgstr "Diterapkan setelah jangkar pada semua tag breadcrumbs."
|
367 |
+
|
368 |
+
#: ../breadcrumb_navxt_admin.php:667
|
369 |
+
msgid "Tag Anchor"
|
370 |
+
msgstr "Jangkar Tag"
|
371 |
+
|
372 |
+
#: ../breadcrumb_navxt_admin.php:667
|
373 |
+
msgid "The anchor template for tag breadcrumbs."
|
374 |
+
msgstr "Templat jangkar untuk tag breadcrumbs."
|
375 |
+
|
376 |
+
#: ../breadcrumb_navxt_admin.php:668
|
377 |
+
msgid "Archive by Tag Prefix"
|
378 |
+
msgstr "Arsip berdasarkan Awalan Tag"
|
379 |
+
|
380 |
+
#: ../breadcrumb_navxt_admin.php:668
|
381 |
+
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
382 |
+
msgstr "Diterapkan sebelum judul dari item breadcrumb aktif pada sebuah arsip berdasarkan halaman tag."
|
383 |
+
|
384 |
+
#: ../breadcrumb_navxt_admin.php:669
|
385 |
+
msgid "Archive by Tag Suffix"
|
386 |
+
msgstr "Arsip berdasarkan Akhiran Tag"
|
387 |
+
|
388 |
+
#: ../breadcrumb_navxt_admin.php:669
|
389 |
+
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
390 |
+
msgstr "Diterapkan setelah judul dari item breadcrumb aktif pada sebuah arsip berdasarkan halaman tag."
|
391 |
+
|
392 |
+
#: ../breadcrumb_navxt_admin.php:699
|
393 |
+
#, php-format
|
394 |
+
msgid "Applied before the anchor on all %s breadcrumbs."
|
395 |
+
msgstr "Diterapkan sebelum jangkar pada semua %s breadcrumbs."
|
396 |
+
|
397 |
+
#: ../breadcrumb_navxt_admin.php:700
|
398 |
+
#, php-format
|
399 |
+
msgid "Applied after the anchor on all %s breadcrumbs."
|
400 |
+
msgstr "Diterapkan setelah jangkar pada semua %s breadcrumbs."
|
401 |
+
|
402 |
+
#: ../breadcrumb_navxt_admin.php:702
|
403 |
+
#, php-format
|
404 |
+
msgid "Archive by %s Prefix"
|
405 |
+
msgstr "Arsip berdasarkan Awalan %s"
|
406 |
+
|
407 |
+
#: ../breadcrumb_navxt_admin.php:702
|
408 |
+
#, php-format
|
409 |
+
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
410 |
+
msgstr "Diterapkan sebelum judul dari item breadcrumb yang aktif pada sebuah arsip berdasarkan halaman %s."
|
411 |
+
|
412 |
+
#: ../breadcrumb_navxt_admin.php:703
|
413 |
+
#, php-format
|
414 |
+
msgid "Archive by %s Suffix"
|
415 |
+
msgstr "Arsip berdasarkan Akhiran %s"
|
416 |
+
|
417 |
+
#: ../breadcrumb_navxt_admin.php:703
|
418 |
+
#, php-format
|
419 |
+
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
420 |
+
msgstr "Diterapkan setelah judul dari item breadcrumb aktif pada arsip berdasarkan halaman %s."
|
421 |
+
|
422 |
+
#: ../breadcrumb_navxt_admin.php:712
|
423 |
+
msgid "Date Archives"
|
424 |
+
msgstr "Arsip Tanggal"
|
425 |
+
|
426 |
+
#: ../breadcrumb_navxt_admin.php:715
|
427 |
+
msgid "Date Anchor"
|
428 |
+
msgstr "Jangkar Tanggal"
|
429 |
+
|
430 |
+
#: ../breadcrumb_navxt_admin.php:715
|
431 |
+
msgid "The anchor template for date breadcrumbs."
|
432 |
+
msgstr "Templat jangkar untuk tanggal breadcrumbs."
|
433 |
+
|
434 |
+
#: ../breadcrumb_navxt_admin.php:716
|
435 |
+
msgid "Archive by Date Prefix"
|
436 |
+
msgstr "Arsip berdasarkan Awalan Tanggal"
|
437 |
+
|
438 |
+
#: ../breadcrumb_navxt_admin.php:716
|
439 |
+
msgid "Applied before the anchor on all date breadcrumbs."
|
440 |
+
msgstr "Diterapkan sebelum jangkar pada semua tanggal breadcrumbs."
|
441 |
+
|
442 |
+
#: ../breadcrumb_navxt_admin.php:717
|
443 |
+
msgid "Archive by Date Suffix"
|
444 |
+
msgstr "Arsip berdasarkan Akhiran Tanggal"
|
445 |
+
|
446 |
+
#: ../breadcrumb_navxt_admin.php:717
|
447 |
+
msgid "Applied after the anchor on all date breadcrumbs."
|
448 |
+
msgstr "Diterapkan setelah jangkar pada semua tanggal breadcrumbs."
|
449 |
+
|
450 |
+
#: ../breadcrumb_navxt_admin.php:722
|
451 |
+
msgid "Miscellaneous"
|
452 |
+
msgstr "Serbaragam"
|
453 |
+
|
454 |
+
#: ../breadcrumb_navxt_admin.php:725
|
455 |
+
msgid "Author Prefix"
|
456 |
+
msgstr "Awalan Penulis"
|
457 |
+
|
458 |
+
#: ../breadcrumb_navxt_admin.php:726
|
459 |
+
msgid "Author Suffix"
|
460 |
+
msgstr "Akhiran Penulis"
|
461 |
+
|
462 |
+
#: ../breadcrumb_navxt_admin.php:727
|
463 |
+
msgid "Author Display Format"
|
464 |
+
msgstr "Format Tampilan Penulis"
|
465 |
+
|
466 |
+
#: ../breadcrumb_navxt_admin.php:727
|
467 |
+
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."
|
468 |
+
msgstr "display_name menggunakan nama yang ditentukan di \"Tampilkan nama yang dipublikasikan sebagai\" di bawah profil pengguna yang terkait lainnya ke pilihan di profil pengguna."
|
469 |
+
|
470 |
+
#: ../breadcrumb_navxt_admin.php:728
|
471 |
+
msgid "Search Prefix"
|
472 |
+
msgstr "Cari Awalan"
|
473 |
+
|
474 |
+
#: ../breadcrumb_navxt_admin.php:729
|
475 |
+
msgid "Search Suffix"
|
476 |
+
msgstr "Cari Akhiran"
|
477 |
+
|
478 |
+
#: ../breadcrumb_navxt_admin.php:730
|
479 |
+
msgid "Search Anchor"
|
480 |
+
msgstr "Cari Jangkar"
|
481 |
+
|
482 |
+
#: ../breadcrumb_navxt_admin.php:730
|
483 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
484 |
+
msgstr "Templat jangkar untuk pencarian breadcrumbs, digunakan hanya ketika hasil pencarian terdiri dari beberapa halaman."
|
485 |
+
|
486 |
+
#: ../breadcrumb_navxt_admin.php:731
|
487 |
+
msgid "404 Title"
|
488 |
+
msgstr "Judul 404"
|
489 |
+
|
490 |
+
#: ../breadcrumb_navxt_admin.php:732
|
491 |
+
msgid "404 Prefix"
|
492 |
+
msgstr "Awalan 404"
|
493 |
+
|
494 |
+
#: ../breadcrumb_navxt_admin.php:733
|
495 |
+
msgid "404 Suffix"
|
496 |
+
msgstr "Akhiran 404"
|
497 |
+
|
498 |
+
#: ../breadcrumb_navxt_class.php:160
|
499 |
+
msgid "Blog"
|
500 |
+
msgstr "Beranda"
|
501 |
+
|
502 |
+
#: ../breadcrumb_navxt_class.php:179
|
503 |
+
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
504 |
+
msgstr "<a title=\"Muat ulang halaman ini.\" href=\"%link%\">"
|
505 |
+
|
506 |
+
#: ../breadcrumb_navxt_class.php:220
|
507 |
+
msgid "404"
|
508 |
+
msgstr "404"
|
509 |
+
|
510 |
+
#: ../breadcrumb_navxt_class.php:223
|
511 |
+
msgid "Search results for '"
|
512 |
+
msgstr "Hasil pencarian untuk '"
|
513 |
+
|
514 |
+
#: ../breadcrumb_navxt_class.php:227
|
515 |
+
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
516 |
+
msgstr "<a title=\"Lompat ke halaman pertama dari hasil pencarian untuk %title%.\" href=\"%link%\">"
|
517 |
+
|
518 |
+
#: ../breadcrumb_navxt_class.php:234
|
519 |
+
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
520 |
+
msgstr "<a title=\"Lompat ke arsip tag %title%.\" href=\"%link%\">"
|
521 |
+
|
522 |
+
#: ../breadcrumb_navxt_class.php:237
|
523 |
+
msgid "Articles by: "
|
524 |
+
msgstr "Artikel berdasarkan: "
|
525 |
+
|
526 |
+
#: ../breadcrumb_navxt_class.php:241
|
527 |
+
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
528 |
+
msgstr "<a title=\"Lompat ke halaman pertama dari tulisan berdasarkan %title%.\" href=\"%link%\">"
|
529 |
+
|
530 |
+
#: ../breadcrumb_navxt_class.php:250
|
531 |
+
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
532 |
+
msgstr "<a title=\"Lompat ke arsip kategori %title%.\" href=\"%link%\">"
|
533 |
+
|
534 |
+
#: ../breadcrumb_navxt_class.php:253
|
535 |
+
msgid "Archive by category '"
|
536 |
+
msgstr "Arsip berdasarkan kategori '"
|
537 |
+
|
538 |
+
#: ../breadcrumb_navxt_class.php:257
|
539 |
+
msgid "Archive by tag '"
|
540 |
+
msgstr "Arsip berdasarkan tag '"
|
541 |
+
|
542 |
+
#: ../breadcrumb_navxt_class.php:260
|
543 |
+
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
544 |
+
msgstr "<a title=\"Lompat ke arsip %title%.\" href=\"%link%\">"
|
545 |
+
|
546 |
+
#: ../breadcrumb_navxt_class.php:458
|
547 |
+
msgid "Untagged"
|
548 |
+
msgstr "Belum ditag"
|
549 |
+
|
550 |
+
#: ../breadcrumb_navxt_widget.php:24
|
551 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
552 |
+
msgstr "Tambahkan ekor breadcrumb ke bar samping Anda"
|
553 |
+
|
554 |
+
#: ../breadcrumb_navxt_widget.php:72
|
555 |
+
msgid "Title:"
|
556 |
+
msgstr "Judul:"
|
557 |
+
|
558 |
+
#: ../breadcrumb_navxt_widget.php:77
|
559 |
+
msgid "Output trail as a list"
|
560 |
+
msgstr "Keluaran trail sebagai sebuah senarai"
|
561 |
+
|
562 |
+
#: ../breadcrumb_navxt_widget.php:79
|
563 |
+
msgid "Link the breadcrumbs"
|
564 |
+
msgstr "Tautan breadcrumb"
|
565 |
+
|
566 |
+
#: ../breadcrumb_navxt_widget.php:81
|
567 |
+
msgid "Reverse the order of the trail"
|
568 |
+
msgstr "Lawankan urutan breadcrumb trail"
|
569 |
+
|
570 |
+
#: ../breadcrumb_navxt_widget.php:83
|
571 |
+
msgid "Hide the trail on the front page"
|
572 |
+
msgstr "Sembunyikan alamat pada halaman depan"
|
573 |
+
|
574 |
+
#: ../mtekk_admin_class.php:56
|
575 |
+
msgid "Undo"
|
576 |
+
msgstr "Kembalikan"
|
577 |
+
|
578 |
+
#: ../mtekk_admin_class.php:150
|
579 |
+
msgid "Settings"
|
580 |
+
msgstr "Pengaturan"
|
581 |
+
|
582 |
+
#: ../mtekk_admin_class.php:301
|
583 |
+
msgid "Settings successfully imported from the uploaded file."
|
584 |
+
msgstr "Pengaturan Breadcrumb NavXT berhasil diimpor dari berkas."
|
585 |
+
|
586 |
+
#: ../mtekk_admin_class.php:301
|
587 |
+
msgid "Undo the options import."
|
588 |
+
msgstr "Kembalikan pengimporan pilihan."
|
589 |
+
|
590 |
+
#: ../mtekk_admin_class.php:306
|
591 |
+
msgid "Importing settings from file failed."
|
592 |
+
msgstr "Pengaturan impor dari berkas gagal."
|
593 |
+
|
594 |
+
#: ../mtekk_admin_class.php:327
|
595 |
+
msgid "Settings successfully reset to the default values."
|
596 |
+
msgstr "Pengaturan Breadcrumb NavXT diriset ke nilai standar."
|
597 |
+
|
598 |
+
#: ../mtekk_admin_class.php:327
|
599 |
+
msgid "Undo the options reset."
|
600 |
+
msgstr "Kembalikan perisetan pilihan."
|
601 |
+
|
602 |
+
#: ../mtekk_admin_class.php:341
|
603 |
+
msgid "Settings successfully undid the last operation."
|
604 |
+
msgstr "Pengaturan berhasil membatalkan operasi terakhir."
|
605 |
+
|
606 |
+
#: ../mtekk_admin_class.php:341
|
607 |
+
msgid "Undo the last undo operation."
|
608 |
+
msgstr "Kembalikan operasi pengembalian terakhir."
|
609 |
+
|
610 |
+
#: ../mtekk_admin_class.php:371
|
611 |
+
#, php-format
|
612 |
+
msgid "Get help with \"%s\""
|
613 |
+
msgstr "Dapatkan bantuan dengan \"%s\""
|
614 |
+
|
615 |
+
#: ../mtekk_admin_class.php:452
|
616 |
+
msgid "Import/Export/Reset Settings"
|
617 |
+
msgstr "Pengaturan Impor/Ekspor/Riset"
|
618 |
+
|
619 |
+
#: ../mtekk_admin_class.php:453
|
620 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
621 |
+
msgstr "Pengaturan Impor Breadcrumb NavXT dari sebuah berkas XML, ekspor pengaturan yang aktif ke sebuah berkas XML, atau riset ke pengaturan standar Breadcrumb NavXT."
|
622 |
+
|
623 |
+
#: ../mtekk_admin_class.php:456
|
624 |
+
msgid "Settings File"
|
625 |
+
msgstr "Berkas Pengaturan"
|
626 |
+
|
627 |
+
#: ../mtekk_admin_class.php:459
|
628 |
+
msgid "Select a XML settings file to upload and import settings from."
|
629 |
+
msgstr "Pilih sebuah berkas pengaturan XML untuk diunggah dan yang akan diimpor pengaturannya."
|
630 |
+
|
631 |
+
#~ msgid ""
|
632 |
+
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
633 |
+
#~ "the default values. Are you sure you want to continue?"
|
634 |
+
#~ msgstr ""
|
635 |
+
#~ "Semua pengaturan dari Breadcrumb NavXT Anda akan ditimpa dengan nilai "
|
636 |
+
#~ "standar. Anda yakin ingin melanjutkan?"
|
637 |
+
#~ msgid ""
|
638 |
+
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
639 |
+
#~ "the imported values. Are you sure you want to continue?"
|
640 |
+
#~ msgstr ""
|
641 |
+
#~ "Semua pengaturan Breadcrumb NavXT Anda yang sudah ada akan ditimpa dengan "
|
642 |
+
#~ "nilai yang diimpor. Anda yakin ingin melanjutkan?"
|
643 |
+
#~ msgid "Home"
|
644 |
+
#~ msgstr "Beranda"
|
645 |
+
|
languages/breadcrumb_navxt-it_IT.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt-it_IT.po
CHANGED
@@ -7,546 +7,613 @@ 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-
|
11 |
-
"PO-Revision-Date: 2010-
|
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:
|
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:
|
26 |
msgid "Insufficient privileges to proceed."
|
27 |
msgstr "Permessi insufficienti per procedere"
|
28 |
|
29 |
-
#: breadcrumb_navxt_admin.php:
|
30 |
-
#:
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
#:
|
35 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
37 |
msgstr "<a title=\"Vai a %title%.\" href=\"%link%\">"
|
38 |
|
39 |
-
#: breadcrumb_navxt_admin.php:
|
40 |
msgid "Settings successfully saved."
|
41 |
msgstr "Opzioni salvate correttamente."
|
42 |
|
43 |
-
#: breadcrumb_navxt_admin.php:
|
44 |
msgid "Undo the options save."
|
45 |
msgstr "Annulla il salvataggio delle opzioni."
|
46 |
|
47 |
-
#: breadcrumb_navxt_admin.php:
|
48 |
#, php-format
|
49 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
50 |
msgstr "I suggerimenti per le impostazioni sono posizionati sotto le opzioni. Si prega di fare riferimento alla %sdocumentazione%s per maggiori informazioni."
|
51 |
|
52 |
-
#: breadcrumb_navxt_admin.php:
|
53 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
54 |
msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
|
55 |
|
56 |
-
#: breadcrumb_navxt_admin.php:
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
msgid "Import"
|
59 |
msgstr "Importa"
|
60 |
|
61 |
-
#: breadcrumb_navxt_admin.php:
|
62 |
-
#: mtekk_admin_class.php:
|
63 |
msgid "Export"
|
64 |
msgstr "Esporta"
|
65 |
|
66 |
-
#: breadcrumb_navxt_admin.php:
|
67 |
-
#: mtekk_admin_class.php:
|
68 |
msgid "Reset"
|
69 |
msgstr "Reimposta"
|
70 |
|
71 |
-
#: breadcrumb_navxt_admin.php:
|
72 |
msgid "Breadcrumb NavXT Settings"
|
73 |
msgstr "Impostazioni di Breadcrumb NavXT"
|
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:515
|
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:516
|
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 "Pages"
|
239 |
msgstr "Pagine"
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
-
#: breadcrumb_navxt_admin.php:
|
243 |
msgid "The taxonomy which the breadcrumb trail will show."
|
244 |
msgstr "La tassonomia che sarà mostrata nel percorso di breadcrumb."
|
245 |
|
246 |
-
#: breadcrumb_navxt_admin.php:
|
247 |
msgid "Page Prefix"
|
248 |
msgstr "Prefisso Pagina"
|
249 |
|
250 |
-
#: breadcrumb_navxt_admin.php:
|
251 |
msgid "Page Suffix"
|
252 |
msgstr "Suffisso Pagina"
|
253 |
|
254 |
-
#: breadcrumb_navxt_admin.php:
|
255 |
msgid "Page Anchor"
|
256 |
msgstr "Collegamento Pagina"
|
257 |
|
258 |
-
#: breadcrumb_navxt_admin.php:
|
259 |
msgid "The anchor template for page breadcrumbs."
|
260 |
msgstr "Template collegamento per le breadcrumb di pagine."
|
261 |
|
262 |
-
#: breadcrumb_navxt_admin.php:
|
263 |
msgid "Attachment Prefix"
|
264 |
msgstr "Prefisso Allegato"
|
265 |
|
266 |
-
#: breadcrumb_navxt_admin.php:
|
267 |
msgid "Attachment Suffix"
|
268 |
msgstr "Suffisso Allegato"
|
269 |
|
270 |
-
#: breadcrumb_navxt_admin.php:
|
271 |
-
#: breadcrumb_navxt_admin.php:
|
272 |
#, php-format
|
273 |
msgid "%s Prefix"
|
274 |
msgstr "Prefisso %s "
|
275 |
|
276 |
-
#: breadcrumb_navxt_admin.php:
|
277 |
-
#: breadcrumb_navxt_admin.php:
|
278 |
#, php-format
|
279 |
msgid "%s Suffix"
|
280 |
msgstr "Suffisso %s"
|
281 |
|
282 |
-
#: breadcrumb_navxt_admin.php:
|
283 |
-
#: breadcrumb_navxt_admin.php:
|
284 |
#, php-format
|
285 |
msgid "%s Anchor"
|
286 |
msgstr "Collegamento %s"
|
287 |
|
288 |
-
#: breadcrumb_navxt_admin.php:
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
#, php-format
|
291 |
msgid "The anchor template for %s breadcrumbs."
|
292 |
msgstr "Template collegamento per le breadcrumb di %s."
|
293 |
|
294 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
295 |
#, php-format
|
296 |
msgid "%s Taxonomy Display"
|
297 |
msgstr "Mostra Tassonomia %s"
|
298 |
|
299 |
-
#: breadcrumb_navxt_admin.php:
|
300 |
#, php-format
|
301 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
302 |
msgstr "Mostra la tassonomia che riconduce a %s nel percorso breadcrumb."
|
303 |
|
304 |
-
#: breadcrumb_navxt_admin.php:
|
305 |
#, php-format
|
306 |
msgid "%s Taxonomy"
|
307 |
msgstr "Tassonomia %s"
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Category Prefix"
|
311 |
msgstr "Prefisso Categoria"
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "Applied before the anchor on all category breadcrumbs."
|
315 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di categorie."
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Category Suffix"
|
319 |
msgstr "Suffisso Categoria"
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Applied after the anchor on all category breadcrumbs."
|
323 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di categorie."
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Category Anchor"
|
327 |
msgstr "Collegamento Categoria"
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "The anchor template for category breadcrumbs."
|
331 |
msgstr "Template collegamento per le breadcrumb di categorie."
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Archive by Category Prefix"
|
335 |
msgstr "Prefisso Archivio per categoria"
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
339 |
msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Archive by Category Suffix"
|
343 |
msgstr "Suffisso Archivio per categoria"
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
347 |
msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
|
348 |
|
349 |
-
#: breadcrumb_navxt_admin.php:
|
350 |
msgid "Tag Prefix"
|
351 |
msgstr "Prefisso Tag"
|
352 |
|
353 |
-
#: breadcrumb_navxt_admin.php:
|
354 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
355 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di tag."
|
356 |
|
357 |
-
#: breadcrumb_navxt_admin.php:
|
358 |
msgid "Tag Suffix"
|
359 |
msgstr "Suffisso Tag"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
362 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
363 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di tag."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
msgid "Tag Anchor"
|
367 |
msgstr "Collegamento Tag"
|
368 |
|
369 |
-
#: breadcrumb_navxt_admin.php:
|
370 |
msgid "The anchor template for tag breadcrumbs."
|
371 |
msgstr "Template collegamento per le breadcrumb di tag."
|
372 |
|
373 |
-
#: breadcrumb_navxt_admin.php:
|
374 |
msgid "Archive by Tag Prefix"
|
375 |
msgstr "Prefisso Archivio per tag"
|
376 |
|
377 |
-
#: breadcrumb_navxt_admin.php:
|
378 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
379 |
msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
msgid "Archive by Tag Suffix"
|
383 |
msgstr "Suffisso Archivio per tag"
|
384 |
|
385 |
-
#: breadcrumb_navxt_admin.php:
|
386 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
387 |
msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
#, php-format
|
391 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
392 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di %s."
|
393 |
|
394 |
-
#: breadcrumb_navxt_admin.php:
|
395 |
#, php-format
|
396 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
397 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di %s."
|
398 |
|
399 |
-
#: breadcrumb_navxt_admin.php:
|
400 |
#, php-format
|
401 |
msgid "Archive by %s Prefix"
|
402 |
msgstr "Prefisso Archivio per %s"
|
403 |
|
404 |
-
#: breadcrumb_navxt_admin.php:
|
405 |
#, php-format
|
406 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
407 |
msgstr "Applicato prima del titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
410 |
#, php-format
|
411 |
msgid "Archive by %s Suffix"
|
412 |
msgstr "Suffisso Archivio per %s"
|
413 |
|
414 |
-
#: breadcrumb_navxt_admin.php:
|
415 |
#, php-format
|
416 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
417 |
msgstr "Applicato dopo il titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
|
418 |
|
419 |
-
#: breadcrumb_navxt_admin.php:
|
420 |
msgid "Date Archives"
|
421 |
msgstr "Archivi per Data"
|
422 |
|
423 |
-
#: breadcrumb_navxt_admin.php:
|
424 |
msgid "Date Anchor"
|
425 |
msgstr "Collegameto Date"
|
426 |
|
427 |
-
#: breadcrumb_navxt_admin.php:
|
428 |
msgid "The anchor template for date breadcrumbs."
|
429 |
msgstr "Template collegamento per le breadcrumb per data."
|
430 |
|
431 |
-
#: breadcrumb_navxt_admin.php:
|
432 |
msgid "Archive by Date Prefix"
|
433 |
msgstr "Prefisso Archivi per Data"
|
434 |
|
435 |
-
#: breadcrumb_navxt_admin.php:
|
436 |
msgid "Applied before the anchor on all date breadcrumbs."
|
437 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs per data."
|
438 |
|
439 |
-
#: breadcrumb_navxt_admin.php:
|
440 |
msgid "Archive by Date Suffix"
|
441 |
msgstr "Suffisso Archivi per Data"
|
442 |
|
443 |
-
#: breadcrumb_navxt_admin.php:
|
444 |
msgid "Applied after the anchor on all date breadcrumbs."
|
445 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs per data."
|
446 |
|
447 |
-
#: breadcrumb_navxt_admin.php:
|
448 |
msgid "Miscellaneous"
|
449 |
msgstr "Varie"
|
450 |
|
451 |
-
#: breadcrumb_navxt_admin.php:
|
452 |
msgid "Author Prefix"
|
453 |
msgstr "Prefisso Autore"
|
454 |
|
455 |
-
#: breadcrumb_navxt_admin.php:
|
456 |
msgid "Author Suffix"
|
457 |
msgstr "Suffisso Autore"
|
458 |
|
459 |
-
#: breadcrumb_navxt_admin.php:
|
460 |
msgid "Author Display Format"
|
461 |
msgstr "Formato visualizzazione autore"
|
462 |
|
463 |
-
#: breadcrumb_navxt_admin.php:
|
464 |
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."
|
465 |
msgstr "display_name usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
|
466 |
|
467 |
-
#: breadcrumb_navxt_admin.php:
|
468 |
msgid "Search Prefix"
|
469 |
msgstr "Prefisso Ricerca"
|
470 |
|
471 |
-
#: breadcrumb_navxt_admin.php:
|
472 |
msgid "Search Suffix"
|
473 |
msgstr "Suffisso Ricerca"
|
474 |
|
475 |
-
#: breadcrumb_navxt_admin.php:
|
476 |
msgid "Search Anchor"
|
477 |
msgstr "Collegamento Ricerca"
|
478 |
|
479 |
-
#: breadcrumb_navxt_admin.php:
|
480 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
481 |
msgstr "Template collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce più pagine di risultati."
|
482 |
|
483 |
-
#: breadcrumb_navxt_admin.php:
|
484 |
msgid "404 Title"
|
485 |
msgstr "Titolo 404"
|
486 |
|
487 |
-
#: breadcrumb_navxt_admin.php:
|
488 |
msgid "404 Prefix"
|
489 |
msgstr "Prefisso 404"
|
490 |
|
491 |
-
#: breadcrumb_navxt_admin.php:
|
492 |
msgid "404 Suffix"
|
493 |
msgstr "Suffisso 404"
|
494 |
|
495 |
-
#: breadcrumb_navxt_admin.php:
|
496 |
msgid "Save Changes"
|
497 |
msgstr "Salva modifiche"
|
498 |
|
499 |
-
#: breadcrumb_navxt_class.php:
|
500 |
msgid "Blog"
|
501 |
msgstr "Blog"
|
502 |
|
503 |
-
#: breadcrumb_navxt_class.php:
|
504 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
505 |
msgstr "<a title=\"Ricarica la pagina corrente.\" href=\"%link%\">"
|
506 |
|
507 |
-
#: breadcrumb_navxt_class.php:
|
508 |
msgid "404"
|
509 |
msgstr "404"
|
510 |
|
511 |
-
#: breadcrumb_navxt_class.php:
|
512 |
msgid "Search results for '"
|
513 |
msgstr "Risultati della ricerca per '"
|
514 |
|
515 |
-
#: breadcrumb_navxt_class.php:
|
516 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
517 |
msgstr "<a title=\"Vai alla prima pagina dei risultati della ricerca per %title%.\" href=\"%link%\">"
|
518 |
|
519 |
-
#: breadcrumb_navxt_class.php:
|
520 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
521 |
msgstr "<a title=\"Vai agli archivi del tag %title%.\" href=\"%link%\">"
|
522 |
|
523 |
-
#: breadcrumb_navxt_class.php:
|
524 |
msgid "Articles by: "
|
525 |
msgstr "Articoli di: "
|
526 |
|
527 |
-
#: breadcrumb_navxt_class.php:
|
528 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
529 |
msgstr "<a title=\"Vai alla prima pagina degli articoli per %title%.\" href=\"%link%\">"
|
530 |
|
531 |
-
#: breadcrumb_navxt_class.php:
|
532 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
533 |
msgstr "<a title=\"Vai agli archivi della categoria %title%.\" href=\"%link%\">"
|
534 |
|
535 |
-
#: breadcrumb_navxt_class.php:
|
536 |
msgid "Archive by category '"
|
537 |
msgstr "Archivio della categoria '"
|
538 |
|
539 |
-
#: breadcrumb_navxt_class.php:
|
540 |
msgid "Archive by tag '"
|
541 |
msgstr "Archivio del tag '"
|
542 |
|
543 |
-
#: breadcrumb_navxt_class.php:
|
544 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
545 |
msgstr "<a title=\"Vai agli archivi %title%.\" href=\"%link%\">"
|
546 |
|
547 |
-
#: breadcrumb_navxt_class.php:
|
548 |
-
msgid "
|
549 |
-
msgstr "
|
550 |
|
551 |
#: breadcrumb_navxt_widget.php:24
|
552 |
msgid "Adds a breadcrumb trail to your sidebar"
|
@@ -572,63 +639,81 @@ msgstr "Inverti l'ordine del percorso"
|
|
572 |
msgid "Hide the trail on the front page"
|
573 |
msgstr "Non mostrare il percorso nella home page"
|
574 |
|
575 |
-
#: mtekk_admin_class.php:
|
576 |
msgid "Undo"
|
577 |
msgstr "Annulla"
|
578 |
|
579 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
580 |
msgid "Settings"
|
581 |
msgstr "opzioni"
|
582 |
|
583 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
msgid "Settings successfully imported from the uploaded file."
|
585 |
msgstr "Opzioni importate correttamente dal file caricato."
|
586 |
|
587 |
-
#: mtekk_admin_class.php:
|
588 |
msgid "Undo the options import."
|
589 |
msgstr "Annulla l'importazione delle opzioni."
|
590 |
|
591 |
-
#: mtekk_admin_class.php:
|
592 |
msgid "Importing settings from file failed."
|
593 |
msgstr "Importazione delle opzioni dal file fallita."
|
594 |
|
595 |
-
#: mtekk_admin_class.php:
|
596 |
msgid "Settings successfully reset to the default values."
|
597 |
msgstr "opzioni correttamente riportate ai valori predefiniti."
|
598 |
|
599 |
-
#: mtekk_admin_class.php:
|
600 |
msgid "Undo the options reset."
|
601 |
msgstr "Annulla la reimpostazione delle opzioni."
|
602 |
|
603 |
-
#: mtekk_admin_class.php:
|
604 |
msgid "Settings successfully undid the last operation."
|
605 |
msgstr "L'ultima operazione è stata annullata correttamente."
|
606 |
|
607 |
-
#: mtekk_admin_class.php:
|
608 |
msgid "Undo the last undo operation."
|
609 |
msgstr "Annulla l'ultimo annullamento."
|
610 |
|
611 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
612 |
#, php-format
|
613 |
msgid "Get help with \"%s\""
|
614 |
msgstr "Trova aiuto per \"%s\""
|
615 |
|
616 |
-
#: mtekk_admin_class.php:
|
617 |
msgid "Import/Export/Reset Settings"
|
618 |
msgstr "Importa/Esporta/Reimposta opzioni"
|
619 |
|
620 |
-
#: mtekk_admin_class.php:
|
621 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
622 |
msgstr "Importa le opzioni da un file XML, esporta le opzioni attuali su un file XML, o reimposta le opzioni predefinite."
|
623 |
|
624 |
-
#: mtekk_admin_class.php:
|
625 |
msgid "Settings File"
|
626 |
msgstr "File delle opzioni"
|
627 |
|
628 |
-
#: mtekk_admin_class.php:
|
629 |
msgid "Select a XML settings file to upload and import settings from."
|
630 |
msgstr "Seleziona un file XML da caricare per importare le opzioni."
|
631 |
|
|
|
|
|
632 |
#~ msgid ""
|
633 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
634 |
#~ "the default values. Are you sure you want to continue?"
|
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-11-19 01:50+0000\n"
|
11 |
+
"PO-Revision-Date: 2010-11-20 02:17+0100\n"
|
12 |
"Last-Translator: Luca Camellini <luccame@gmail.com>\n"
|
13 |
"Language-Team: luccame <luccame@gmail.com>\n"
|
14 |
+
"Language: \n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"X-Poedit-Language: Italian\n"
|
19 |
"X-Poedit-Country: ITALY\n"
|
20 |
|
21 |
+
#: breadcrumb_navxt_admin.php:29
|
22 |
#, php-format
|
23 |
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
24 |
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"
|
25 |
|
26 |
+
#: breadcrumb_navxt_admin.php:106
|
27 |
msgid "Insufficient privileges to proceed."
|
28 |
msgstr "Permessi insufficienti per procedere"
|
29 |
|
30 |
+
#: breadcrumb_navxt_admin.php:211
|
31 |
+
#: breadcrumb_navxt_class.php:203
|
32 |
+
msgid "Home"
|
33 |
+
msgstr "Home"
|
34 |
+
|
35 |
+
#: breadcrumb_navxt_admin.php:213
|
36 |
+
#: breadcrumb_navxt_admin.php:554
|
37 |
+
#: breadcrumb_navxt_admin.php:745
|
38 |
+
#: breadcrumb_navxt_class.php:126
|
39 |
+
#: breadcrumb_navxt_class.php:205
|
40 |
+
#: breadcrumb_navxt_class.php:215
|
41 |
+
#: breadcrumb_navxt_class.php:219
|
42 |
+
#: breadcrumb_navxt_class.php:243
|
43 |
+
#: breadcrumb_navxt_class.php:259
|
44 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
45 |
msgstr "<a title=\"Vai a %title%.\" href=\"%link%\">"
|
46 |
|
47 |
+
#: breadcrumb_navxt_admin.php:292
|
48 |
msgid "Settings successfully saved."
|
49 |
msgstr "Opzioni salvate correttamente."
|
50 |
|
51 |
+
#: breadcrumb_navxt_admin.php:292
|
52 |
msgid "Undo the options save."
|
53 |
msgstr "Annulla il salvataggio delle opzioni."
|
54 |
|
55 |
+
#: breadcrumb_navxt_admin.php:313
|
56 |
#, php-format
|
57 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
58 |
msgstr "I suggerimenti per le impostazioni sono posizionati sotto le opzioni. Si prega di fare riferimento alla %sdocumentazione%s per maggiori informazioni."
|
59 |
|
60 |
+
#: breadcrumb_navxt_admin.php:314
|
61 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
62 |
msgstr "Vai alla documentazione in linea di Breadcrumb NavXT"
|
63 |
|
64 |
+
#: breadcrumb_navxt_admin.php:315
|
65 |
+
msgid "Quick Start Information"
|
66 |
+
msgstr "Informazioni di Avvio Rapido"
|
67 |
+
|
68 |
+
#: breadcrumb_navxt_admin.php:315
|
69 |
+
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
70 |
+
msgstr "Affinchè le impostazioni in questa pagina abbiano effetto, devi usare il widget incluso Breadcrumb NavXT, oppure inserire nel tuo tema una delle sezioni di codice che trovi qui sotto."
|
71 |
+
|
72 |
+
#: breadcrumb_navxt_admin.php:316
|
73 |
+
msgid "Breadcrumb trail with separators"
|
74 |
+
msgstr "Percorso breadcrumb con separatori"
|
75 |
+
|
76 |
+
#: breadcrumb_navxt_admin.php:317
|
77 |
+
msgid "Breadcrumb trail in list form"
|
78 |
+
msgstr "Percorso breadcrumb in formato lista"
|
79 |
+
|
80 |
+
#: breadcrumb_navxt_admin.php:398
|
81 |
+
#: mtekk_admin_class.php:482
|
82 |
msgid "Import"
|
83 |
msgstr "Importa"
|
84 |
|
85 |
+
#: breadcrumb_navxt_admin.php:398
|
86 |
+
#: mtekk_admin_class.php:483
|
87 |
msgid "Export"
|
88 |
msgstr "Esporta"
|
89 |
|
90 |
+
#: breadcrumb_navxt_admin.php:398
|
91 |
+
#: mtekk_admin_class.php:484
|
92 |
msgid "Reset"
|
93 |
msgstr "Reimposta"
|
94 |
|
95 |
+
#: breadcrumb_navxt_admin.php:419
|
96 |
msgid "Breadcrumb NavXT Settings"
|
97 |
msgstr "Impostazioni di Breadcrumb NavXT"
|
98 |
|
99 |
+
#: breadcrumb_navxt_admin.php:427
|
100 |
msgid "General"
|
101 |
msgstr "Generale"
|
102 |
|
103 |
+
#: breadcrumb_navxt_admin.php:430
|
104 |
msgid "Breadcrumb Separator"
|
105 |
msgstr "Separatore delle breadcrumb"
|
106 |
|
107 |
+
#: breadcrumb_navxt_admin.php:430
|
108 |
msgid "Placed in between each breadcrumb."
|
109 |
msgstr "Inserito tra ogni breadcrumb."
|
110 |
|
111 |
+
#: breadcrumb_navxt_admin.php:431
|
112 |
msgid "Breadcrumb Max Title Length"
|
113 |
msgstr "Lunghezza massima titolo delle breadcrumb"
|
114 |
|
115 |
+
#: breadcrumb_navxt_admin.php:435
|
116 |
msgid "Home Breadcrumb"
|
117 |
msgstr "Breadcrumb della Home Page"
|
118 |
|
119 |
+
#: breadcrumb_navxt_admin.php:440
|
120 |
msgid "Place the home breadcrumb in the trail."
|
121 |
msgstr "Inserisci la Breadcrumb per la Home Page nel percorso."
|
122 |
|
123 |
+
#: breadcrumb_navxt_admin.php:445
|
124 |
msgid "Home Title: "
|
125 |
msgstr "Titolo Home:"
|
126 |
|
127 |
+
#: breadcrumb_navxt_admin.php:453
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "Home Prefix"
|
129 |
msgstr "Prefisso Home"
|
130 |
|
131 |
+
#: breadcrumb_navxt_admin.php:454
|
132 |
msgid "Home Suffix"
|
133 |
msgstr "Suffisso Home"
|
134 |
|
135 |
+
#: breadcrumb_navxt_admin.php:455
|
136 |
msgid "Home Anchor"
|
137 |
msgstr "Collegamento Home"
|
138 |
|
139 |
+
#: breadcrumb_navxt_admin.php:455
|
140 |
msgid "The anchor template for the home breadcrumb."
|
141 |
msgstr "Template collegamento per la Home Breadcrumb."
|
142 |
|
143 |
+
#: breadcrumb_navxt_admin.php:456
|
144 |
+
msgid "Blog Breadcrumb"
|
145 |
+
msgstr "Breadcrumb del Blog"
|
146 |
+
|
147 |
+
#: breadcrumb_navxt_admin.php:456
|
148 |
+
msgid "Place the blog breadcrumb in the trail."
|
149 |
+
msgstr "Inserisci la Breadcrumb per il Blog nel percorso."
|
150 |
+
|
151 |
+
#: breadcrumb_navxt_admin.php:457
|
152 |
msgid "Blog Anchor"
|
153 |
msgstr "Collegamento Blog"
|
154 |
|
155 |
+
#: breadcrumb_navxt_admin.php:457
|
156 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
157 |
msgstr "Template collegamento per la Blog Breadcrumb, usato solo in ambienti con pagina iniziale statica."
|
158 |
|
159 |
+
#: breadcrumb_navxt_admin.php:461
|
160 |
+
msgid "Main Site Breadcrumb"
|
161 |
+
msgstr "Breadcrumb del Sito Principale"
|
162 |
+
|
163 |
+
#: breadcrumb_navxt_admin.php:466
|
164 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
165 |
+
msgstr "In una configurazione multisito, inserisce nel percorso delle breadcrumb la home page del sito principale."
|
166 |
+
|
167 |
+
#: breadcrumb_navxt_admin.php:471
|
168 |
+
msgid "Main Site Home Title: "
|
169 |
+
msgstr "Titolo Home del Sito Principale:"
|
170 |
+
|
171 |
+
#: breadcrumb_navxt_admin.php:479
|
172 |
+
msgid "Main Site Home Prefix"
|
173 |
+
msgstr "Prefisso Home del Sito Principale"
|
174 |
+
|
175 |
+
#: breadcrumb_navxt_admin.php:479
|
176 |
+
#: breadcrumb_navxt_admin.php:480
|
177 |
+
msgid "Used for the main site home breadcrumb in an multisite setup"
|
178 |
+
msgstr "Usato per la breadcrumb home del sito principale In una configurazione multisito"
|
179 |
+
|
180 |
+
#: breadcrumb_navxt_admin.php:480
|
181 |
+
msgid "Main Site Home Suffix"
|
182 |
+
msgstr "Suffisso Home del Sito Principale"
|
183 |
+
|
184 |
+
#: breadcrumb_navxt_admin.php:481
|
185 |
+
msgid "Main Site Home Anchor"
|
186 |
+
msgstr "Collegamento Home del Sito Principale"
|
187 |
+
|
188 |
+
#: breadcrumb_navxt_admin.php:481
|
189 |
+
msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
|
190 |
+
msgstr "Template collegamento per la breadcrumb home del sito principale, usato solo in ambienti multisito."
|
191 |
+
|
192 |
+
#: breadcrumb_navxt_admin.php:486
|
193 |
msgid "Current Item"
|
194 |
msgstr "Voce corrente"
|
195 |
|
196 |
+
#: breadcrumb_navxt_admin.php:489
|
197 |
msgid "Link Current Item"
|
198 |
msgstr "Collegamento voce corrente"
|
199 |
|
200 |
+
#: breadcrumb_navxt_admin.php:489
|
201 |
msgid "Yes"
|
202 |
msgstr "Sì"
|
203 |
|
204 |
+
#: breadcrumb_navxt_admin.php:490
|
205 |
msgid "Current Item Prefix"
|
206 |
msgstr "Prefisso voce corrente"
|
207 |
|
208 |
+
#: breadcrumb_navxt_admin.php:490
|
209 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
210 |
msgstr "Questo è sempre inserito davanti all'ultima breadcrumb del percorso, prima di qualsiasi altro prefisso della breadcrumb."
|
211 |
|
212 |
+
#: breadcrumb_navxt_admin.php:491
|
213 |
msgid "Current Item Suffix"
|
214 |
msgstr "Suffisso della voce corrente"
|
215 |
|
216 |
+
#: breadcrumb_navxt_admin.php:491
|
217 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
218 |
msgstr "Questo è sempre inserito dopo l'ultima breadcrumb del percorso, e dopo qualsiasi altro suffisso della breadcrumb."
|
219 |
|
220 |
+
#: breadcrumb_navxt_admin.php:492
|
221 |
msgid "Current Item Anchor"
|
222 |
msgstr "Collegamento della voce corrente"
|
223 |
|
224 |
+
#: breadcrumb_navxt_admin.php:492
|
225 |
msgid "The anchor template for current item breadcrumbs."
|
226 |
msgstr "Template collegamento per le breadcrumb della voce corrente."
|
227 |
|
228 |
+
#: breadcrumb_navxt_admin.php:493
|
229 |
msgid "Paged Breadcrumb"
|
230 |
msgstr "Breadcrumb paginata"
|
231 |
|
232 |
+
#: breadcrumb_navxt_admin.php:493
|
233 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
234 |
msgstr "Includi la breadcrumb paginata nel percorso."
|
235 |
|
236 |
+
#: breadcrumb_navxt_admin.php:493
|
237 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
238 |
msgstr "Indica che l'utente si trova su una pagina diversa dalla prima negli elenchi di pagine o articoli."
|
239 |
|
240 |
+
#: breadcrumb_navxt_admin.php:494
|
241 |
msgid "Paged Prefix"
|
242 |
msgstr "Prefisso paginato"
|
243 |
|
244 |
+
#: breadcrumb_navxt_admin.php:495
|
245 |
msgid "Paged Suffix"
|
246 |
msgstr "Suffisso paginato"
|
247 |
|
248 |
+
#: breadcrumb_navxt_admin.php:500
|
249 |
msgid "Posts & Pages"
|
250 |
msgstr "Articoli & Pagine"
|
251 |
|
252 |
+
#: breadcrumb_navxt_admin.php:503
|
253 |
msgid "Post Prefix"
|
254 |
msgstr "Prefisso Articolo"
|
255 |
|
256 |
+
#: breadcrumb_navxt_admin.php:504
|
257 |
msgid "Post Suffix"
|
258 |
msgstr "Suffisso Articolo"
|
259 |
|
260 |
+
#: breadcrumb_navxt_admin.php:505
|
261 |
msgid "Post Anchor"
|
262 |
msgstr "Collegamento Articolo"
|
263 |
|
264 |
+
#: breadcrumb_navxt_admin.php:505
|
265 |
msgid "The anchor template for post breadcrumbs."
|
266 |
msgstr "Template collegamento per le breadcrumb di articoli."
|
267 |
|
268 |
+
#: breadcrumb_navxt_admin.php:506
|
269 |
msgid "Post Taxonomy Display"
|
270 |
msgstr "Visualizzazione Tassonomia Articolo"
|
271 |
|
272 |
+
#: breadcrumb_navxt_admin.php:506
|
273 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
274 |
msgstr "Mostra la tassonomia che riconduce ad un articolo nel percorso di breadcrumb."
|
275 |
|
276 |
+
#: breadcrumb_navxt_admin.php:510
|
277 |
msgid "Post Taxonomy"
|
278 |
msgstr "Tassonomia Articolo"
|
279 |
|
280 |
+
#: breadcrumb_navxt_admin.php:514
|
281 |
+
#: breadcrumb_navxt_admin.php:631
|
282 |
msgid "Categories"
|
283 |
msgstr "Categorie"
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:515
|
286 |
msgid "Dates"
|
287 |
msgstr "Date"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:516
|
290 |
+
#: breadcrumb_navxt_admin.php:643
|
291 |
msgid "Tags"
|
292 |
msgstr "Tags"
|
293 |
|
294 |
+
#: breadcrumb_navxt_admin.php:517
|
295 |
+
#: breadcrumb_navxt_admin.php:610
|
296 |
msgid "Pages"
|
297 |
msgstr "Pagine"
|
298 |
|
299 |
+
#: breadcrumb_navxt_admin.php:528
|
300 |
+
#: breadcrumb_navxt_admin.php:621
|
301 |
msgid "The taxonomy which the breadcrumb trail will show."
|
302 |
msgstr "La tassonomia che sarà mostrata nel percorso di breadcrumb."
|
303 |
|
304 |
+
#: breadcrumb_navxt_admin.php:532
|
305 |
msgid "Page Prefix"
|
306 |
msgstr "Prefisso Pagina"
|
307 |
|
308 |
+
#: breadcrumb_navxt_admin.php:533
|
309 |
msgid "Page Suffix"
|
310 |
msgstr "Suffisso Pagina"
|
311 |
|
312 |
+
#: breadcrumb_navxt_admin.php:534
|
313 |
msgid "Page Anchor"
|
314 |
msgstr "Collegamento Pagina"
|
315 |
|
316 |
+
#: breadcrumb_navxt_admin.php:534
|
317 |
msgid "The anchor template for page breadcrumbs."
|
318 |
msgstr "Template collegamento per le breadcrumb di pagine."
|
319 |
|
320 |
+
#: breadcrumb_navxt_admin.php:535
|
321 |
msgid "Attachment Prefix"
|
322 |
msgstr "Prefisso Allegato"
|
323 |
|
324 |
+
#: breadcrumb_navxt_admin.php:536
|
325 |
msgid "Attachment Suffix"
|
326 |
msgstr "Suffisso Allegato"
|
327 |
|
328 |
+
#: breadcrumb_navxt_admin.php:585
|
329 |
+
#: breadcrumb_navxt_admin.php:679
|
330 |
#, php-format
|
331 |
msgid "%s Prefix"
|
332 |
msgstr "Prefisso %s "
|
333 |
|
334 |
+
#: breadcrumb_navxt_admin.php:586
|
335 |
+
#: breadcrumb_navxt_admin.php:680
|
336 |
#, php-format
|
337 |
msgid "%s Suffix"
|
338 |
msgstr "Suffisso %s"
|
339 |
|
340 |
+
#: breadcrumb_navxt_admin.php:587
|
341 |
+
#: breadcrumb_navxt_admin.php:681
|
342 |
#, php-format
|
343 |
msgid "%s Anchor"
|
344 |
msgstr "Collegamento %s"
|
345 |
|
346 |
+
#: breadcrumb_navxt_admin.php:587
|
347 |
+
#: breadcrumb_navxt_admin.php:681
|
348 |
#, php-format
|
349 |
msgid "The anchor template for %s breadcrumbs."
|
350 |
msgstr "Template collegamento per le breadcrumb di %s."
|
351 |
|
352 |
+
#: breadcrumb_navxt_admin.php:592
|
353 |
+
#, php-format
|
354 |
+
msgid "%s Root Page"
|
355 |
+
msgstr "Pagina Radice di %s"
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:595
|
358 |
+
msgid "— Select —"
|
359 |
+
msgstr "— Seleziona —"
|
360 |
+
|
361 |
+
#: breadcrumb_navxt_admin.php:602
|
362 |
#, php-format
|
363 |
msgid "%s Taxonomy Display"
|
364 |
msgstr "Mostra Tassonomia %s"
|
365 |
|
366 |
+
#: breadcrumb_navxt_admin.php:602
|
367 |
#, php-format
|
368 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
369 |
msgstr "Mostra la tassonomia che riconduce a %s nel percorso breadcrumb."
|
370 |
|
371 |
+
#: breadcrumb_navxt_admin.php:606
|
372 |
#, php-format
|
373 |
msgid "%s Taxonomy"
|
374 |
msgstr "Tassonomia %s"
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:634
|
377 |
msgid "Category Prefix"
|
378 |
msgstr "Prefisso Categoria"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:634
|
381 |
msgid "Applied before the anchor on all category breadcrumbs."
|
382 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di categorie."
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:635
|
385 |
msgid "Category Suffix"
|
386 |
msgstr "Suffisso Categoria"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:635
|
389 |
msgid "Applied after the anchor on all category breadcrumbs."
|
390 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di categorie."
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:636
|
393 |
msgid "Category Anchor"
|
394 |
msgstr "Collegamento Categoria"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:636
|
397 |
msgid "The anchor template for category breadcrumbs."
|
398 |
msgstr "Template collegamento per le breadcrumb di categorie."
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:637
|
401 |
msgid "Archive by Category Prefix"
|
402 |
msgstr "Prefisso Archivio per categoria"
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:637
|
405 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
406 |
msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:638
|
409 |
msgid "Archive by Category Suffix"
|
410 |
msgstr "Suffisso Archivio per categoria"
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:638
|
413 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
414 |
msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per categoria."
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:646
|
417 |
msgid "Tag Prefix"
|
418 |
msgstr "Prefisso Tag"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:646
|
421 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
422 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di tag."
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:647
|
425 |
msgid "Tag Suffix"
|
426 |
msgstr "Suffisso Tag"
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:647
|
429 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
430 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di tag."
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:648
|
433 |
msgid "Tag Anchor"
|
434 |
msgstr "Collegamento Tag"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:648
|
437 |
msgid "The anchor template for tag breadcrumbs."
|
438 |
msgstr "Template collegamento per le breadcrumb di tag."
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:649
|
441 |
msgid "Archive by Tag Prefix"
|
442 |
msgstr "Prefisso Archivio per tag"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:649
|
445 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
446 |
msgstr "Applicato prima del titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:650
|
449 |
msgid "Archive by Tag Suffix"
|
450 |
msgstr "Suffisso Archivio per tag"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:650
|
453 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
454 |
msgstr "Applicato dopo il titolo della breadcrumb per oggetto corrente nelle pagine archivio per tag."
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:679
|
457 |
#, php-format
|
458 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
459 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs di %s."
|
460 |
|
461 |
+
#: breadcrumb_navxt_admin.php:680
|
462 |
#, php-format
|
463 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
464 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs di %s."
|
465 |
|
466 |
+
#: breadcrumb_navxt_admin.php:682
|
467 |
#, php-format
|
468 |
msgid "Archive by %s Prefix"
|
469 |
msgstr "Prefisso Archivio per %s"
|
470 |
|
471 |
+
#: breadcrumb_navxt_admin.php:682
|
472 |
#, php-format
|
473 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
474 |
msgstr "Applicato prima del titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:683
|
477 |
#, php-format
|
478 |
msgid "Archive by %s Suffix"
|
479 |
msgstr "Suffisso Archivio per %s"
|
480 |
|
481 |
+
#: breadcrumb_navxt_admin.php:683
|
482 |
#, php-format
|
483 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
484 |
msgstr "Applicato dopo il titolo della breadcrumb per la voce corrente nelle pagine archivio per %s."
|
485 |
|
486 |
+
#: breadcrumb_navxt_admin.php:692
|
487 |
msgid "Date Archives"
|
488 |
msgstr "Archivi per Data"
|
489 |
|
490 |
+
#: breadcrumb_navxt_admin.php:695
|
491 |
msgid "Date Anchor"
|
492 |
msgstr "Collegameto Date"
|
493 |
|
494 |
+
#: breadcrumb_navxt_admin.php:695
|
495 |
msgid "The anchor template for date breadcrumbs."
|
496 |
msgstr "Template collegamento per le breadcrumb per data."
|
497 |
|
498 |
+
#: breadcrumb_navxt_admin.php:696
|
499 |
msgid "Archive by Date Prefix"
|
500 |
msgstr "Prefisso Archivi per Data"
|
501 |
|
502 |
+
#: breadcrumb_navxt_admin.php:696
|
503 |
msgid "Applied before the anchor on all date breadcrumbs."
|
504 |
msgstr "Applicato prima del collegamento per tutte le breadcrumbs per data."
|
505 |
|
506 |
+
#: breadcrumb_navxt_admin.php:697
|
507 |
msgid "Archive by Date Suffix"
|
508 |
msgstr "Suffisso Archivi per Data"
|
509 |
|
510 |
+
#: breadcrumb_navxt_admin.php:697
|
511 |
msgid "Applied after the anchor on all date breadcrumbs."
|
512 |
msgstr "Applicato dopo il collegamento per tutte le breadcrumbs per data."
|
513 |
|
514 |
+
#: breadcrumb_navxt_admin.php:702
|
515 |
msgid "Miscellaneous"
|
516 |
msgstr "Varie"
|
517 |
|
518 |
+
#: breadcrumb_navxt_admin.php:705
|
519 |
msgid "Author Prefix"
|
520 |
msgstr "Prefisso Autore"
|
521 |
|
522 |
+
#: breadcrumb_navxt_admin.php:706
|
523 |
msgid "Author Suffix"
|
524 |
msgstr "Suffisso Autore"
|
525 |
|
526 |
+
#: breadcrumb_navxt_admin.php:707
|
527 |
msgid "Author Display Format"
|
528 |
msgstr "Formato visualizzazione autore"
|
529 |
|
530 |
+
#: breadcrumb_navxt_admin.php:707
|
531 |
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."
|
532 |
msgstr "display_name usa il nome specificato in \"Nome pubblico da visualizzare\" sotto il profilo utente, gli altri corrispondono alle opzioni nel profilo utente."
|
533 |
|
534 |
+
#: breadcrumb_navxt_admin.php:708
|
535 |
msgid "Search Prefix"
|
536 |
msgstr "Prefisso Ricerca"
|
537 |
|
538 |
+
#: breadcrumb_navxt_admin.php:709
|
539 |
msgid "Search Suffix"
|
540 |
msgstr "Suffisso Ricerca"
|
541 |
|
542 |
+
#: breadcrumb_navxt_admin.php:710
|
543 |
msgid "Search Anchor"
|
544 |
msgstr "Collegamento Ricerca"
|
545 |
|
546 |
+
#: breadcrumb_navxt_admin.php:710
|
547 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
548 |
msgstr "Template collegamento per le Breadcrumb di ricerca, usato solo quando la ricerca produce più pagine di risultati."
|
549 |
|
550 |
+
#: breadcrumb_navxt_admin.php:711
|
551 |
msgid "404 Title"
|
552 |
msgstr "Titolo 404"
|
553 |
|
554 |
+
#: breadcrumb_navxt_admin.php:712
|
555 |
msgid "404 Prefix"
|
556 |
msgstr "Prefisso 404"
|
557 |
|
558 |
+
#: breadcrumb_navxt_admin.php:713
|
559 |
msgid "404 Suffix"
|
560 |
msgstr "Suffisso 404"
|
561 |
|
562 |
+
#: breadcrumb_navxt_admin.php:718
|
563 |
msgid "Save Changes"
|
564 |
msgstr "Salva modifiche"
|
565 |
|
566 |
+
#: breadcrumb_navxt_class.php:213
|
567 |
msgid "Blog"
|
568 |
msgstr "Blog"
|
569 |
|
570 |
+
#: breadcrumb_navxt_class.php:232
|
571 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
572 |
msgstr "<a title=\"Ricarica la pagina corrente.\" href=\"%link%\">"
|
573 |
|
574 |
+
#: breadcrumb_navxt_class.php:277
|
575 |
msgid "404"
|
576 |
msgstr "404"
|
577 |
|
578 |
+
#: breadcrumb_navxt_class.php:280
|
579 |
msgid "Search results for '"
|
580 |
msgstr "Risultati della ricerca per '"
|
581 |
|
582 |
+
#: breadcrumb_navxt_class.php:284
|
583 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
584 |
msgstr "<a title=\"Vai alla prima pagina dei risultati della ricerca per %title%.\" href=\"%link%\">"
|
585 |
|
586 |
+
#: breadcrumb_navxt_class.php:291
|
587 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
588 |
msgstr "<a title=\"Vai agli archivi del tag %title%.\" href=\"%link%\">"
|
589 |
|
590 |
+
#: breadcrumb_navxt_class.php:294
|
591 |
msgid "Articles by: "
|
592 |
msgstr "Articoli di: "
|
593 |
|
594 |
+
#: breadcrumb_navxt_class.php:298
|
595 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
596 |
msgstr "<a title=\"Vai alla prima pagina degli articoli per %title%.\" href=\"%link%\">"
|
597 |
|
598 |
+
#: breadcrumb_navxt_class.php:307
|
599 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
600 |
msgstr "<a title=\"Vai agli archivi della categoria %title%.\" href=\"%link%\">"
|
601 |
|
602 |
+
#: breadcrumb_navxt_class.php:310
|
603 |
msgid "Archive by category '"
|
604 |
msgstr "Archivio della categoria '"
|
605 |
|
606 |
+
#: breadcrumb_navxt_class.php:314
|
607 |
msgid "Archive by tag '"
|
608 |
msgstr "Archivio del tag '"
|
609 |
|
610 |
+
#: breadcrumb_navxt_class.php:317
|
611 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
612 |
msgstr "<a title=\"Vai agli archivi %title%.\" href=\"%link%\">"
|
613 |
|
614 |
+
#: breadcrumb_navxt_class.php:478
|
615 |
+
msgid "Un"
|
616 |
+
msgstr "Annulla"
|
617 |
|
618 |
#: breadcrumb_navxt_widget.php:24
|
619 |
msgid "Adds a breadcrumb trail to your sidebar"
|
639 |
msgid "Hide the trail on the front page"
|
640 |
msgstr "Non mostrare il percorso nella home page"
|
641 |
|
642 |
+
#: mtekk_admin_class.php:57
|
643 |
msgid "Undo"
|
644 |
msgstr "Annulla"
|
645 |
|
646 |
+
#: mtekk_admin_class.php:64
|
647 |
+
msgid "Migrate now."
|
648 |
+
msgstr "Migra adesso."
|
649 |
+
|
650 |
+
#: mtekk_admin_class.php:158
|
651 |
msgid "Settings"
|
652 |
msgstr "opzioni"
|
653 |
|
654 |
+
#: mtekk_admin_class.php:186
|
655 |
+
msgid "Your settings are out of date."
|
656 |
+
msgstr "Le tue impostazioni sono obsolete."
|
657 |
+
|
658 |
+
#: mtekk_admin_class.php:186
|
659 |
+
msgid "Migrate the settings now."
|
660 |
+
msgstr "Migra le impostazioni adesso."
|
661 |
+
|
662 |
+
#: mtekk_admin_class.php:299
|
663 |
msgid "Settings successfully imported from the uploaded file."
|
664 |
msgstr "Opzioni importate correttamente dal file caricato."
|
665 |
|
666 |
+
#: mtekk_admin_class.php:299
|
667 |
msgid "Undo the options import."
|
668 |
msgstr "Annulla l'importazione delle opzioni."
|
669 |
|
670 |
+
#: mtekk_admin_class.php:304
|
671 |
msgid "Importing settings from file failed."
|
672 |
msgstr "Importazione delle opzioni dal file fallita."
|
673 |
|
674 |
+
#: mtekk_admin_class.php:323
|
675 |
msgid "Settings successfully reset to the default values."
|
676 |
msgstr "opzioni correttamente riportate ai valori predefiniti."
|
677 |
|
678 |
+
#: mtekk_admin_class.php:323
|
679 |
msgid "Undo the options reset."
|
680 |
msgstr "Annulla la reimpostazione delle opzioni."
|
681 |
|
682 |
+
#: mtekk_admin_class.php:340
|
683 |
msgid "Settings successfully undid the last operation."
|
684 |
msgstr "L'ultima operazione è stata annullata correttamente."
|
685 |
|
686 |
+
#: mtekk_admin_class.php:340
|
687 |
msgid "Undo the last undo operation."
|
688 |
msgstr "Annulla l'ultimo annullamento."
|
689 |
|
690 |
+
#: mtekk_admin_class.php:373
|
691 |
+
msgid "Settings successfully migrated."
|
692 |
+
msgstr "Impostazioni migrate correttamente."
|
693 |
+
|
694 |
+
#: mtekk_admin_class.php:403
|
695 |
#, php-format
|
696 |
msgid "Get help with \"%s\""
|
697 |
msgstr "Trova aiuto per \"%s\""
|
698 |
|
699 |
+
#: mtekk_admin_class.php:473
|
700 |
msgid "Import/Export/Reset Settings"
|
701 |
msgstr "Importa/Esporta/Reimposta opzioni"
|
702 |
|
703 |
+
#: mtekk_admin_class.php:474
|
704 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
705 |
msgstr "Importa le opzioni da un file XML, esporta le opzioni attuali su un file XML, o reimposta le opzioni predefinite."
|
706 |
|
707 |
+
#: mtekk_admin_class.php:477
|
708 |
msgid "Settings File"
|
709 |
msgstr "File delle opzioni"
|
710 |
|
711 |
+
#: mtekk_admin_class.php:480
|
712 |
msgid "Select a XML settings file to upload and import settings from."
|
713 |
msgstr "Seleziona un file XML da caricare per importare le opzioni."
|
714 |
|
715 |
+
#~ msgid "Untagged"
|
716 |
+
#~ msgstr "Non taggato"
|
717 |
#~ msgid ""
|
718 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
719 |
#~ "the default values. Are you sure you want to continue?"
|
languages/breadcrumb_navxt-ja.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt-ja.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
"Last-Translator: KAZUHIRO TERADA <info@technolog.jp>\n"
|
8 |
"Language-Team: Kazuhiro Terada <info@technolog.jp>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -16,627 +16,715 @@ msgstr ""
|
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
#, php-format
|
21 |
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
22 |
msgstr "お使いのPHPのバージョンが古すぎます。最新バージョンにアップグレードしてください。お使いのバージョンは%sになり、このプラグインを使用するためには%s以上が必要になります。"
|
23 |
|
24 |
-
#: ../breadcrumb_navxt_admin.php:
|
25 |
msgid "Insufficient privileges to proceed."
|
26 |
msgstr "実行権限がありません。"
|
27 |
|
28 |
-
#: ../breadcrumb_navxt_admin.php:
|
29 |
-
#: ../
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
#: ../
|
34 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
36 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
37 |
|
38 |
-
#: ../breadcrumb_navxt_admin.php:
|
39 |
msgid "Settings successfully saved."
|
40 |
msgstr "設定は正常に保存されました。"
|
41 |
|
42 |
-
#: ../breadcrumb_navxt_admin.php:
|
43 |
msgid "Undo the options save."
|
44 |
msgstr "オプション設定を元に戻す。"
|
45 |
|
46 |
-
#: ../breadcrumb_navxt_admin.php:
|
47 |
#, php-format
|
48 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
49 |
msgstr "設定に関するTIPSは、選択オプション下に表示されています。詳細情報については%sドキュメント%sをご参照ください。"
|
50 |
|
51 |
-
#: ../breadcrumb_navxt_admin.php:
|
52 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
53 |
msgstr "オンラインドキュメントへ移動"
|
54 |
|
55 |
-
#: ../breadcrumb_navxt_admin.php:
|
56 |
-
|
57 |
-
|
58 |
-
msgstr "インポート"
|
59 |
|
60 |
-
#: ../breadcrumb_navxt_admin.php:
|
61 |
-
|
62 |
-
|
63 |
-
msgstr "エクスポート"
|
64 |
|
65 |
-
#: ../breadcrumb_navxt_admin.php:
|
66 |
-
|
67 |
-
|
68 |
-
msgstr "リセット"
|
69 |
|
70 |
-
#: ../breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
71 |
msgid "Breadcrumb NavXT Settings"
|
72 |
msgstr "Breadcrumb NavXT 設定"
|
73 |
|
74 |
-
#: ../breadcrumb_navxt_admin.php:
|
75 |
msgid "General"
|
76 |
msgstr "一般"
|
77 |
|
78 |
-
#: ../breadcrumb_navxt_admin.php:
|
79 |
msgid "Breadcrumb Separator"
|
80 |
msgstr "区切り"
|
81 |
|
82 |
-
#: ../breadcrumb_navxt_admin.php:
|
83 |
msgid "Placed in between each breadcrumb."
|
84 |
-
msgstr "
|
85 |
|
86 |
-
#: ../breadcrumb_navxt_admin.php:
|
87 |
msgid "Breadcrumb Max Title Length"
|
88 |
msgstr "タイトルの最大文字数"
|
89 |
|
90 |
-
#: ../breadcrumb_navxt_admin.php:
|
91 |
msgid "Home Breadcrumb"
|
92 |
msgstr "ホーム"
|
93 |
|
94 |
-
#: ../breadcrumb_navxt_admin.php:
|
95 |
msgid "Place the home breadcrumb in the trail."
|
96 |
msgstr "パンくずリストにホームを配置"
|
97 |
|
98 |
-
#: ../breadcrumb_navxt_admin.php:
|
99 |
msgid "Home Title: "
|
100 |
msgstr "ホームタイトル:"
|
101 |
|
102 |
-
#: ../breadcrumb_navxt_admin.php:
|
103 |
-
msgid "Blog Breadcrumb"
|
104 |
-
msgstr "ブログ"
|
105 |
-
|
106 |
-
#: ../breadcrumb_navxt_admin.php:515
|
107 |
-
msgid "Place the blog breadcrumb in the trail."
|
108 |
-
msgstr "パンくずリストにブログを配置"
|
109 |
-
|
110 |
-
#: ../breadcrumb_navxt_admin.php:516
|
111 |
msgid "Home Prefix"
|
112 |
msgstr "ホーム接頭辞"
|
113 |
|
114 |
-
#: ../breadcrumb_navxt_admin.php:
|
115 |
msgid "Home Suffix"
|
116 |
msgstr "ホーム接尾辞"
|
117 |
|
118 |
-
#: ../breadcrumb_navxt_admin.php:
|
119 |
msgid "Home Anchor"
|
120 |
msgstr "ホームリンク"
|
121 |
|
122 |
-
#: ../breadcrumb_navxt_admin.php:
|
123 |
msgid "The anchor template for the home breadcrumb."
|
124 |
msgstr "ホームのリンク書式"
|
125 |
|
126 |
-
#: ../breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
msgid "Blog Anchor"
|
128 |
msgstr "ブログリンク"
|
129 |
|
130 |
-
#: ../breadcrumb_navxt_admin.php:
|
131 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
132 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
-
#: ../breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid "Current Item"
|
136 |
msgstr "アクティブページ"
|
137 |
|
138 |
-
#: ../breadcrumb_navxt_admin.php:
|
139 |
msgid "Link Current Item"
|
140 |
msgstr "アクティブページのリンク"
|
141 |
|
142 |
-
#: ../breadcrumb_navxt_admin.php:
|
143 |
msgid "Yes"
|
144 |
msgstr "はい"
|
145 |
|
146 |
-
#: ../breadcrumb_navxt_admin.php:
|
147 |
msgid "Current Item Prefix"
|
148 |
msgstr "アクティブページ接頭辞"
|
149 |
|
150 |
-
#: ../breadcrumb_navxt_admin.php:
|
151 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: ../breadcrumb_navxt_admin.php:
|
155 |
msgid "Current Item Suffix"
|
156 |
msgstr "アクティブページ接尾辞"
|
157 |
|
158 |
-
#: ../breadcrumb_navxt_admin.php:
|
159 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
160 |
-
msgstr "
|
161 |
|
162 |
-
#: ../breadcrumb_navxt_admin.php:
|
163 |
msgid "Current Item Anchor"
|
164 |
msgstr "アクティブページリンク"
|
165 |
|
166 |
-
#: ../breadcrumb_navxt_admin.php:
|
167 |
msgid "The anchor template for current item breadcrumbs."
|
168 |
msgstr "アクティブページのリンク書式"
|
169 |
|
170 |
-
#: ../breadcrumb_navxt_admin.php:
|
171 |
msgid "Paged Breadcrumb"
|
172 |
msgstr "ページネーション"
|
173 |
|
174 |
-
#: ../breadcrumb_navxt_admin.php:
|
175 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
176 |
msgstr "ページネーションを含む"
|
177 |
|
178 |
-
#: ../breadcrumb_navxt_admin.php:
|
179 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
180 |
msgstr "ページネーションが適用されている場合、表示箇所が何頁目であるかを表示する。"
|
181 |
|
182 |
-
#: ../breadcrumb_navxt_admin.php:
|
183 |
msgid "Paged Prefix"
|
184 |
msgstr "ページネーション接頭辞"
|
185 |
|
186 |
-
#: ../breadcrumb_navxt_admin.php:
|
187 |
msgid "Paged Suffix"
|
188 |
msgstr "ページネーション接尾辞"
|
189 |
|
190 |
-
#: ../breadcrumb_navxt_admin.php:
|
191 |
msgid "Posts & Pages"
|
192 |
msgstr "投稿およびページ"
|
193 |
|
194 |
-
#: ../breadcrumb_navxt_admin.php:
|
195 |
msgid "Post Prefix"
|
196 |
msgstr "投稿接頭辞"
|
197 |
|
198 |
-
#: ../breadcrumb_navxt_admin.php:
|
199 |
msgid "Post Suffix"
|
200 |
msgstr "投稿接尾辞"
|
201 |
|
202 |
-
#: ../breadcrumb_navxt_admin.php:
|
203 |
msgid "Post Anchor"
|
204 |
msgstr "投稿リンク"
|
205 |
|
206 |
-
#: ../breadcrumb_navxt_admin.php:
|
207 |
msgid "The anchor template for post breadcrumbs."
|
208 |
msgstr "投稿のリンク書式"
|
209 |
|
210 |
-
#: ../breadcrumb_navxt_admin.php:
|
211 |
msgid "Post Taxonomy Display"
|
212 |
msgstr "投稿タクソノミーの表示"
|
213 |
|
214 |
-
#: ../breadcrumb_navxt_admin.php:
|
215 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
216 |
msgstr "パンくずリストに投稿へ誘導するためのタクソノミーを表示"
|
217 |
|
218 |
-
#: ../breadcrumb_navxt_admin.php:
|
219 |
msgid "Post Taxonomy"
|
220 |
msgstr "投稿タクソノミー"
|
221 |
|
222 |
-
#: ../breadcrumb_navxt_admin.php:
|
223 |
-
#: ../breadcrumb_navxt_admin.php:
|
224 |
msgid "Categories"
|
225 |
msgstr "カテゴリー"
|
226 |
|
227 |
-
#: ../breadcrumb_navxt_admin.php:
|
228 |
msgid "Dates"
|
229 |
msgstr "日付"
|
230 |
|
231 |
-
#: ../breadcrumb_navxt_admin.php:
|
232 |
-
#: ../breadcrumb_navxt_admin.php:
|
233 |
msgid "Tags"
|
234 |
msgstr "タグ"
|
235 |
|
236 |
-
#: ../breadcrumb_navxt_admin.php:
|
|
|
237 |
msgid "Pages"
|
238 |
msgstr "ページ"
|
239 |
|
240 |
-
#: ../breadcrumb_navxt_admin.php:
|
241 |
-
#: ../breadcrumb_navxt_admin.php:
|
242 |
msgid "The taxonomy which the breadcrumb trail will show."
|
243 |
msgstr "パンくずリストに表示するタクソノミー"
|
244 |
|
245 |
-
#: ../breadcrumb_navxt_admin.php:
|
246 |
msgid "Page Prefix"
|
247 |
msgstr "ページ接頭辞"
|
248 |
|
249 |
-
#: ../breadcrumb_navxt_admin.php:
|
250 |
msgid "Page Suffix"
|
251 |
msgstr "ページ接尾辞"
|
252 |
|
253 |
-
#: ../breadcrumb_navxt_admin.php:
|
254 |
msgid "Page Anchor"
|
255 |
msgstr "ページリンク"
|
256 |
|
257 |
-
#: ../breadcrumb_navxt_admin.php:
|
258 |
msgid "The anchor template for page breadcrumbs."
|
259 |
msgstr "ページのリンク書式"
|
260 |
|
261 |
-
#: ../breadcrumb_navxt_admin.php:
|
262 |
msgid "Attachment Prefix"
|
263 |
msgstr "添付接頭辞"
|
264 |
|
265 |
-
#: ../breadcrumb_navxt_admin.php:
|
266 |
msgid "Attachment Suffix"
|
267 |
msgstr "添付接尾辞"
|
268 |
|
269 |
-
#: ../breadcrumb_navxt_admin.php:
|
270 |
-
#: ../breadcrumb_navxt_admin.php:
|
271 |
#, php-format
|
272 |
msgid "%s Prefix"
|
273 |
msgstr "%s 接頭辞"
|
274 |
|
275 |
-
#: ../breadcrumb_navxt_admin.php:
|
276 |
-
#: ../breadcrumb_navxt_admin.php:
|
277 |
#, php-format
|
278 |
msgid "%s Suffix"
|
279 |
msgstr "%s 接尾辞"
|
280 |
|
281 |
-
#: ../breadcrumb_navxt_admin.php:
|
282 |
-
#: ../breadcrumb_navxt_admin.php:
|
283 |
#, php-format
|
284 |
msgid "%s Anchor"
|
285 |
msgstr "%s リンク"
|
286 |
|
287 |
-
#: ../breadcrumb_navxt_admin.php:
|
288 |
-
#: ../breadcrumb_navxt_admin.php:
|
289 |
#, php-format
|
290 |
msgid "The anchor template for %s breadcrumbs."
|
291 |
msgstr "%sのリンク書式"
|
292 |
|
293 |
-
#: ../breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
#, php-format
|
295 |
msgid "%s Taxonomy Display"
|
296 |
msgstr "タクソノミー「%s」の表示"
|
297 |
|
298 |
-
#: ../breadcrumb_navxt_admin.php:
|
299 |
#, php-format
|
300 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
301 |
msgstr "パンくずリスト上の%sにつながるタクソノミーを表示"
|
302 |
|
303 |
-
#: ../breadcrumb_navxt_admin.php:
|
304 |
#, php-format
|
305 |
msgid "%s Taxonomy"
|
306 |
msgstr "タクソノミー「%s 」"
|
307 |
|
308 |
-
#: ../breadcrumb_navxt_admin.php:
|
309 |
msgid "Category Prefix"
|
310 |
msgstr "カテゴリー接頭辞"
|
311 |
|
312 |
-
#: ../breadcrumb_navxt_admin.php:
|
313 |
msgid "Applied before the anchor on all category breadcrumbs."
|
314 |
-
msgstr "
|
315 |
|
316 |
-
#: ../breadcrumb_navxt_admin.php:
|
317 |
msgid "Category Suffix"
|
318 |
msgstr "カテゴリー接尾辞"
|
319 |
|
320 |
-
#: ../breadcrumb_navxt_admin.php:
|
321 |
msgid "Applied after the anchor on all category breadcrumbs."
|
322 |
-
msgstr "
|
323 |
|
324 |
-
#: ../breadcrumb_navxt_admin.php:
|
325 |
msgid "Category Anchor"
|
326 |
msgstr "カテゴリーリンク"
|
327 |
|
328 |
-
#: ../breadcrumb_navxt_admin.php:
|
329 |
msgid "The anchor template for category breadcrumbs."
|
330 |
msgstr "カテゴリーのリンク書式"
|
331 |
|
332 |
-
#: ../breadcrumb_navxt_admin.php:
|
333 |
msgid "Archive by Category Prefix"
|
334 |
msgstr "カテゴリーアーカイブの接頭辞"
|
335 |
|
336 |
-
#: ../breadcrumb_navxt_admin.php:
|
337 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
338 |
-
msgstr "
|
339 |
|
340 |
-
#: ../breadcrumb_navxt_admin.php:
|
341 |
msgid "Archive by Category Suffix"
|
342 |
msgstr "カテゴリーアーカイブの接尾辞"
|
343 |
|
344 |
-
#: ../breadcrumb_navxt_admin.php:
|
345 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
346 |
-
msgstr "
|
347 |
|
348 |
-
#: ../breadcrumb_navxt_admin.php:
|
349 |
msgid "Tag Prefix"
|
350 |
msgstr "タグ接頭辞"
|
351 |
|
352 |
-
#: ../breadcrumb_navxt_admin.php:
|
353 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
354 |
-
msgstr "
|
355 |
|
356 |
-
#: ../breadcrumb_navxt_admin.php:
|
357 |
msgid "Tag Suffix"
|
358 |
msgstr "タグ接尾辞"
|
359 |
|
360 |
-
#: ../breadcrumb_navxt_admin.php:
|
361 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: ../breadcrumb_navxt_admin.php:
|
365 |
msgid "Tag Anchor"
|
366 |
msgstr "タグリンク"
|
367 |
|
368 |
-
#: ../breadcrumb_navxt_admin.php:
|
369 |
msgid "The anchor template for tag breadcrumbs."
|
370 |
msgstr "タグのリンク書式"
|
371 |
|
372 |
-
#: ../breadcrumb_navxt_admin.php:
|
373 |
msgid "Archive by Tag Prefix"
|
374 |
msgstr "タグアーカイブの接頭辞"
|
375 |
|
376 |
-
#: ../breadcrumb_navxt_admin.php:
|
377 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#: ../breadcrumb_navxt_admin.php:
|
381 |
msgid "Archive by Tag Suffix"
|
382 |
msgstr "タグアーカイブの接尾辞"
|
383 |
|
384 |
-
#: ../breadcrumb_navxt_admin.php:
|
385 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
386 |
-
msgstr "
|
387 |
|
388 |
-
#: ../breadcrumb_navxt_admin.php:
|
389 |
#, php-format
|
390 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
391 |
msgstr "すべての%sリンクの前に適用されます。"
|
392 |
|
393 |
-
#: ../breadcrumb_navxt_admin.php:
|
394 |
#, php-format
|
395 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
396 |
msgstr "すべての%sリンクの後に適用されます。"
|
397 |
|
398 |
-
#: ../breadcrumb_navxt_admin.php:
|
399 |
#, php-format
|
400 |
msgid "Archive by %s Prefix"
|
401 |
msgstr "%sアーカイブの接頭辞"
|
402 |
|
403 |
-
#: ../breadcrumb_navxt_admin.php:
|
404 |
#, php-format
|
405 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
406 |
-
msgstr "%s
|
407 |
|
408 |
-
#: ../breadcrumb_navxt_admin.php:
|
409 |
#, php-format
|
410 |
msgid "Archive by %s Suffix"
|
411 |
msgstr "%sアーカイブの接尾辞"
|
412 |
|
413 |
-
#: ../breadcrumb_navxt_admin.php:
|
414 |
#, php-format
|
415 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
416 |
-
msgstr "%s
|
417 |
|
418 |
-
#: ../breadcrumb_navxt_admin.php:
|
419 |
msgid "Date Archives"
|
420 |
msgstr "日付アーカイブ"
|
421 |
|
422 |
-
#: ../breadcrumb_navxt_admin.php:
|
423 |
msgid "Date Anchor"
|
424 |
msgstr "日付リンク"
|
425 |
|
426 |
-
#: ../breadcrumb_navxt_admin.php:
|
427 |
msgid "The anchor template for date breadcrumbs."
|
428 |
msgstr "日付のリンク書式"
|
429 |
|
430 |
-
#: ../breadcrumb_navxt_admin.php:
|
431 |
msgid "Archive by Date Prefix"
|
432 |
msgstr "日付アーカイブの接頭辞"
|
433 |
|
434 |
-
#: ../breadcrumb_navxt_admin.php:
|
435 |
msgid "Applied before the anchor on all date breadcrumbs."
|
436 |
-
msgstr "
|
437 |
|
438 |
-
#: ../breadcrumb_navxt_admin.php:
|
439 |
msgid "Archive by Date Suffix"
|
440 |
msgstr "日付アーカイブの接尾辞"
|
441 |
|
442 |
-
#: ../breadcrumb_navxt_admin.php:
|
443 |
msgid "Applied after the anchor on all date breadcrumbs."
|
444 |
-
msgstr "
|
445 |
|
446 |
-
#: ../breadcrumb_navxt_admin.php:
|
447 |
msgid "Miscellaneous"
|
448 |
msgstr "その他"
|
449 |
|
450 |
-
#: ../breadcrumb_navxt_admin.php:
|
451 |
msgid "Author Prefix"
|
452 |
msgstr "投稿者接頭辞"
|
453 |
|
454 |
-
#: ../breadcrumb_navxt_admin.php:
|
455 |
msgid "Author Suffix"
|
456 |
msgstr "投稿者接尾辞"
|
457 |
|
458 |
-
#: ../breadcrumb_navxt_admin.php:
|
459 |
msgid "Author Display Format"
|
460 |
msgstr "投稿者表示形式"
|
461 |
|
462 |
-
#: ../breadcrumb_navxt_admin.php:
|
463 |
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."
|
464 |
msgstr "「display_name」はユーザプロフィール内の「ブログ上の表示名」が使用されます。その他もユーザプロフィール内の設定内容が適用されます。"
|
465 |
|
466 |
-
#: ../breadcrumb_navxt_admin.php:
|
467 |
msgid "Search Prefix"
|
468 |
msgstr "検索結果接頭辞"
|
469 |
|
470 |
-
#: ../breadcrumb_navxt_admin.php:
|
471 |
msgid "Search Suffix"
|
472 |
msgstr "検索結果接尾辞"
|
473 |
|
474 |
-
#: ../breadcrumb_navxt_admin.php:
|
475 |
msgid "Search Anchor"
|
476 |
msgstr "検索結果リンク"
|
477 |
|
478 |
-
#: ../breadcrumb_navxt_admin.php:
|
479 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
480 |
msgstr "検索結果のリンク書式(検索結果が複数ページに及ぶ場合のみに適用)"
|
481 |
|
482 |
-
#: ../breadcrumb_navxt_admin.php:
|
483 |
msgid "404 Title"
|
484 |
msgstr "404タイトル"
|
485 |
|
486 |
-
#: ../breadcrumb_navxt_admin.php:
|
487 |
msgid "404 Prefix"
|
488 |
msgstr "404接頭辞"
|
489 |
|
490 |
-
#: ../breadcrumb_navxt_admin.php:
|
491 |
msgid "404 Suffix"
|
492 |
msgstr "404接尾辞"
|
493 |
|
494 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
msgid "Blog"
|
496 |
msgstr "ブログ"
|
497 |
|
498 |
-
#: ../breadcrumb_navxt_class.php:
|
499 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
500 |
msgstr "<a title=\"再読み込み\" href=\"%link%\">"
|
501 |
|
502 |
-
#: ../breadcrumb_navxt_class.php:
|
503 |
msgid "404"
|
504 |
msgstr "404"
|
505 |
|
506 |
-
#: ../breadcrumb_navxt_class.php:
|
507 |
msgid "Search results for '"
|
508 |
msgstr "'の検索結果"
|
509 |
|
510 |
-
#: ../breadcrumb_navxt_class.php:
|
511 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
512 |
msgstr "<a title=\"%title%の検索結果の最初のページに戻る\" href=\"%link%\">"
|
513 |
|
514 |
-
#: ../breadcrumb_navxt_class.php:
|
515 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
516 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
517 |
|
518 |
-
#: ../breadcrumb_navxt_class.php:
|
519 |
msgid "Articles by: "
|
520 |
msgstr "投稿者:"
|
521 |
|
522 |
-
#: ../breadcrumb_navxt_class.php:
|
523 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
524 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
525 |
|
526 |
-
#: ../breadcrumb_navxt_class.php:
|
527 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
528 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
529 |
|
530 |
-
#: ../breadcrumb_navxt_class.php:
|
531 |
msgid "Archive by category '"
|
532 |
msgstr "カテゴリー '"
|
533 |
|
534 |
-
#: ../breadcrumb_navxt_class.php:
|
535 |
msgid "Archive by tag '"
|
536 |
msgstr "タグ '"
|
537 |
|
538 |
-
#: ../breadcrumb_navxt_class.php:
|
539 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
540 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
541 |
|
542 |
-
#: ../breadcrumb_navxt_class.php:
|
543 |
-
msgid "
|
544 |
-
msgstr "
|
545 |
|
546 |
-
|
547 |
-
|
548 |
-
msgstr "サイドバーにパンくずリストを追加"
|
549 |
-
|
550 |
-
#: ../breadcrumb_navxt_widget.php:72
|
551 |
-
msgid "Title:"
|
552 |
-
msgstr "タイトル:"
|
553 |
-
|
554 |
-
#: ../breadcrumb_navxt_widget.php:77
|
555 |
-
msgid "Output trail as a list"
|
556 |
-
msgstr "リストとして表示"
|
557 |
-
|
558 |
-
#: ../breadcrumb_navxt_widget.php:79
|
559 |
-
msgid "Link the breadcrumbs"
|
560 |
-
msgstr "パンクすリストにリンク"
|
561 |
-
|
562 |
-
#: ../breadcrumb_navxt_widget.php:81
|
563 |
-
msgid "Reverse the order of the trail"
|
564 |
-
msgstr "開始位置を逆にする。"
|
565 |
-
|
566 |
-
#: ../breadcrumb_navxt_widget.php:83
|
567 |
-
msgid "Hide the trail on the front page"
|
568 |
-
msgstr "フロントページ上では非表示にする"
|
569 |
-
|
570 |
-
#: ../mtekk_admin_class.php:56
|
571 |
-
msgid "Undo"
|
572 |
-
msgstr "元に戻す"
|
573 |
-
|
574 |
-
#: ../mtekk_admin_class.php:150
|
575 |
-
msgid "Settings"
|
576 |
-
msgstr "設定"
|
577 |
-
|
578 |
-
#: ../mtekk_admin_class.php:284
|
579 |
-
msgid "Settings successfully imported from the uploaded file."
|
580 |
-
msgstr "アップロードしたファイルより設定が正常に反映されました。"
|
581 |
-
|
582 |
-
#: ../mtekk_admin_class.php:284
|
583 |
-
msgid "Undo the options import."
|
584 |
-
msgstr "オプションのインポートを元に戻す。"
|
585 |
-
|
586 |
-
#: ../mtekk_admin_class.php:289
|
587 |
-
msgid "Importing settings from file failed."
|
588 |
-
msgstr "設定ファイルのインポートに失敗しました。"
|
589 |
-
|
590 |
-
#: ../mtekk_admin_class.php:310
|
591 |
-
msgid "Settings successfully reset to the default values."
|
592 |
-
msgstr "設定が初期値に戻されました。"
|
593 |
-
|
594 |
-
#: ../mtekk_admin_class.php:310
|
595 |
-
msgid "Undo the options reset."
|
596 |
-
msgstr "オプションのリセットを元に戻す。"
|
597 |
-
|
598 |
-
#: ../mtekk_admin_class.php:324
|
599 |
-
msgid "Settings successfully undid the last operation."
|
600 |
-
msgstr "設定が正常に最後の操作を元に戻した。"
|
601 |
-
|
602 |
-
#: ../mtekk_admin_class.php:324
|
603 |
-
msgid "Undo the last undo operation."
|
604 |
-
msgstr "最後に戻した操作を元に戻す。"
|
605 |
-
|
606 |
-
#: ../mtekk_admin_class.php:354
|
607 |
-
#, php-format
|
608 |
-
msgid "Get help with \"%s\""
|
609 |
-
msgstr "\"%s\" のサポートを受ける"
|
610 |
-
|
611 |
-
#: ../mtekk_admin_class.php:435
|
612 |
-
msgid "Import/Export/Reset Settings"
|
613 |
-
msgstr "インポート/エクスポート/リセット設定"
|
614 |
-
|
615 |
-
#: ../mtekk_admin_class.php:436
|
616 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
617 |
-
msgstr "XMLファイルより設定をインポートし、現在の設定をXMLファイルにエクスポート、または初期値に戻す。"
|
618 |
-
|
619 |
-
#: ../mtekk_admin_class.php:439
|
620 |
-
msgid "Settings File"
|
621 |
-
msgstr "設定ファイル"
|
622 |
-
|
623 |
-
#: ../mtekk_admin_class.php:442
|
624 |
-
msgid "Select a XML settings file to upload and import settings from."
|
625 |
-
msgstr "XML設定ファイルを選択の上、アップロードし、設定を読み込んでください。"
|
626 |
|
627 |
#~ msgid ""
|
628 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
629 |
#~ "the default values. Are you sure you want to continue?"
|
630 |
#~ msgstr ""
|
631 |
#~ "現在の設定がすべて初期値で上書きされます。実行してもよろしいですか?"
|
|
|
632 |
#~ msgid ""
|
633 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
634 |
#~ "the imported values. Are you sure you want to continue?"
|
635 |
#~ msgstr ""
|
636 |
#~ "現在の設定がすべてインポートする値で上書きされます。実行してもよろしいです"
|
637 |
#~ "か?"
|
|
|
638 |
#~ msgid "Save Changes"
|
639 |
#~ msgstr "Anderungen speichern"
|
|
|
640 |
#~ msgid ""
|
641 |
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
642 |
#~ "supported by this administrative interface. As a result, settings may not "
|
@@ -645,8 +733,9 @@ msgstr "XML設定ファイルを選択の上、アップロードし、設定を
|
|
645 |
#~ "Warnung: Deine Version von Breadcrumb NavXT stimmt nicht mit den "
|
646 |
#~ "unterstutzen Versionen von diesem Administrations-Interface uberein. Dies "
|
647 |
#~ "kann zu Fehlfunktionen fuhren."
|
|
|
648 |
#~ msgid "Your Breadcrumb NavXT Administration interface version is "
|
649 |
#~ msgstr "Die Breadcrumb NavXT Administrations-Interface Version ist "
|
|
|
650 |
#~ msgid "Your Breadcrumb NavXT version is "
|
651 |
#~ msgstr "Die Breadcrumb NavXT Version ist "
|
652 |
-
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-11-19 13:19+0900\n"
|
6 |
+
"PO-Revision-Date: 2010-11-19 14:10+0900\n"
|
7 |
"Last-Translator: KAZUHIRO TERADA <info@technolog.jp>\n"
|
8 |
"Language-Team: Kazuhiro Terada <info@technolog.jp>\n"
|
9 |
"MIME-Version: 1.0\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
+
#: ../mtekk_admin_class.php:57
|
20 |
+
msgid "Undo"
|
21 |
+
msgstr "元に戻す"
|
22 |
+
|
23 |
+
#: ../mtekk_admin_class.php:64
|
24 |
+
msgid "Migrate now."
|
25 |
+
msgstr "すぐに移行"
|
26 |
+
|
27 |
+
#: ../mtekk_admin_class.php:158
|
28 |
+
msgid "Settings"
|
29 |
+
msgstr "設定"
|
30 |
+
|
31 |
+
#: ../mtekk_admin_class.php:186
|
32 |
+
msgid "Your settings are out of date."
|
33 |
+
msgstr "新しい設定に移行してください。"
|
34 |
+
|
35 |
+
#: ../mtekk_admin_class.php:186
|
36 |
+
msgid "Migrate the settings now."
|
37 |
+
msgstr "すぐに設定を移行"
|
38 |
+
|
39 |
+
#: ../mtekk_admin_class.php:299
|
40 |
+
msgid "Settings successfully imported from the uploaded file."
|
41 |
+
msgstr "アップロードしたファイルより設定が正常に反映されました。"
|
42 |
+
|
43 |
+
#: ../mtekk_admin_class.php:299
|
44 |
+
msgid "Undo the options import."
|
45 |
+
msgstr "オプションのインポートを元に戻す。"
|
46 |
+
|
47 |
+
#: ../mtekk_admin_class.php:304
|
48 |
+
msgid "Importing settings from file failed."
|
49 |
+
msgstr "設定ファイルのインポートに失敗しました。"
|
50 |
+
|
51 |
+
#: ../mtekk_admin_class.php:323
|
52 |
+
msgid "Settings successfully reset to the default values."
|
53 |
+
msgstr "設定が初期値に戻されました。"
|
54 |
+
|
55 |
+
#: ../mtekk_admin_class.php:323
|
56 |
+
msgid "Undo the options reset."
|
57 |
+
msgstr "オプションのリセットを元に戻す。"
|
58 |
+
|
59 |
+
#: ../mtekk_admin_class.php:340
|
60 |
+
msgid "Settings successfully undid the last operation."
|
61 |
+
msgstr "設定が正常に最後の操作を元に戻した。"
|
62 |
+
|
63 |
+
#: ../mtekk_admin_class.php:340
|
64 |
+
msgid "Undo the last undo operation."
|
65 |
+
msgstr "最後に戻した操作を元に戻す。"
|
66 |
+
|
67 |
+
#: ../mtekk_admin_class.php:373
|
68 |
+
msgid "Settings successfully migrated."
|
69 |
+
msgstr "正常に設定が移行されました。"
|
70 |
+
|
71 |
+
#: ../mtekk_admin_class.php:403
|
72 |
+
#, php-format
|
73 |
+
msgid "Get help with \"%s\""
|
74 |
+
msgstr "\"%s\" のサポートを受ける"
|
75 |
+
|
76 |
+
#: ../mtekk_admin_class.php:473
|
77 |
+
msgid "Import/Export/Reset Settings"
|
78 |
+
msgstr "インポート/エクスポート/リセット設定"
|
79 |
+
|
80 |
+
#: ../mtekk_admin_class.php:474
|
81 |
+
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
82 |
+
msgstr "XMLファイルより設定をインポートし、現在の設定をXMLファイルにエクスポート、または初期値に戻す。"
|
83 |
+
|
84 |
+
#: ../mtekk_admin_class.php:477
|
85 |
+
msgid "Settings File"
|
86 |
+
msgstr "設定ファイル"
|
87 |
+
|
88 |
+
#: ../mtekk_admin_class.php:480
|
89 |
+
msgid "Select a XML settings file to upload and import settings from."
|
90 |
+
msgstr "XML設定ファイルを選択の上、アップロードし、設定を読み込んでください。"
|
91 |
+
|
92 |
+
#: ../mtekk_admin_class.php:482
|
93 |
+
#: ../breadcrumb_navxt_admin.php:398
|
94 |
+
msgid "Import"
|
95 |
+
msgstr "インポート"
|
96 |
+
|
97 |
+
#: ../mtekk_admin_class.php:483
|
98 |
+
#: ../breadcrumb_navxt_admin.php:398
|
99 |
+
msgid "Export"
|
100 |
+
msgstr "エクスポート"
|
101 |
+
|
102 |
+
#: ../mtekk_admin_class.php:484
|
103 |
+
#: ../breadcrumb_navxt_admin.php:398
|
104 |
+
msgid "Reset"
|
105 |
+
msgstr "リセット"
|
106 |
+
|
107 |
+
#: ../breadcrumb_navxt_admin.php:29
|
108 |
#, php-format
|
109 |
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, this plugin requires %s"
|
110 |
msgstr "お使いのPHPのバージョンが古すぎます。最新バージョンにアップグレードしてください。お使いのバージョンは%sになり、このプラグインを使用するためには%s以上が必要になります。"
|
111 |
|
112 |
+
#: ../breadcrumb_navxt_admin.php:106
|
113 |
msgid "Insufficient privileges to proceed."
|
114 |
msgstr "実行権限がありません。"
|
115 |
|
116 |
+
#: ../breadcrumb_navxt_admin.php:211
|
117 |
+
#: ../breadcrumb_navxt_class.php:203
|
118 |
+
msgid "Home"
|
119 |
+
msgstr "ホーム"
|
120 |
+
|
121 |
+
#: ../breadcrumb_navxt_admin.php:213
|
122 |
+
#: ../breadcrumb_navxt_admin.php:554
|
123 |
+
#: ../breadcrumb_navxt_admin.php:745
|
124 |
+
#: ../breadcrumb_navxt_class.php:126
|
125 |
+
#: ../breadcrumb_navxt_class.php:205
|
126 |
+
#: ../breadcrumb_navxt_class.php:215
|
127 |
+
#: ../breadcrumb_navxt_class.php:219
|
128 |
+
#: ../breadcrumb_navxt_class.php:243
|
129 |
+
#: ../breadcrumb_navxt_class.php:259
|
130 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
131 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
132 |
|
133 |
+
#: ../breadcrumb_navxt_admin.php:292
|
134 |
msgid "Settings successfully saved."
|
135 |
msgstr "設定は正常に保存されました。"
|
136 |
|
137 |
+
#: ../breadcrumb_navxt_admin.php:292
|
138 |
msgid "Undo the options save."
|
139 |
msgstr "オプション設定を元に戻す。"
|
140 |
|
141 |
+
#: ../breadcrumb_navxt_admin.php:313
|
142 |
#, php-format
|
143 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
144 |
msgstr "設定に関するTIPSは、選択オプション下に表示されています。詳細情報については%sドキュメント%sをご参照ください。"
|
145 |
|
146 |
+
#: ../breadcrumb_navxt_admin.php:314
|
147 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
148 |
msgstr "オンラインドキュメントへ移動"
|
149 |
|
150 |
+
#: ../breadcrumb_navxt_admin.php:315
|
151 |
+
msgid "Quick Start Information"
|
152 |
+
msgstr "クイックスタート情報"
|
|
|
153 |
|
154 |
+
#: ../breadcrumb_navxt_admin.php:315
|
155 |
+
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
156 |
+
msgstr "このページの設定を反映させるには、Breadcrumb NavXT ウィジェット、または、ご利用中のテーマ内で以下のコードをご使用ください。"
|
|
|
157 |
|
158 |
+
#: ../breadcrumb_navxt_admin.php:316
|
159 |
+
msgid "Breadcrumb trail with separators"
|
160 |
+
msgstr "パンくずリスト(区切り表示)"
|
|
|
161 |
|
162 |
+
#: ../breadcrumb_navxt_admin.php:317
|
163 |
+
msgid "Breadcrumb trail in list form"
|
164 |
+
msgstr "パンくずリスト(リスト表示)"
|
165 |
+
|
166 |
+
#: ../breadcrumb_navxt_admin.php:419
|
167 |
msgid "Breadcrumb NavXT Settings"
|
168 |
msgstr "Breadcrumb NavXT 設定"
|
169 |
|
170 |
+
#: ../breadcrumb_navxt_admin.php:427
|
171 |
msgid "General"
|
172 |
msgstr "一般"
|
173 |
|
174 |
+
#: ../breadcrumb_navxt_admin.php:430
|
175 |
msgid "Breadcrumb Separator"
|
176 |
msgstr "区切り"
|
177 |
|
178 |
+
#: ../breadcrumb_navxt_admin.php:430
|
179 |
msgid "Placed in between each breadcrumb."
|
180 |
+
msgstr "各項目間に配置"
|
181 |
|
182 |
+
#: ../breadcrumb_navxt_admin.php:431
|
183 |
msgid "Breadcrumb Max Title Length"
|
184 |
msgstr "タイトルの最大文字数"
|
185 |
|
186 |
+
#: ../breadcrumb_navxt_admin.php:435
|
187 |
msgid "Home Breadcrumb"
|
188 |
msgstr "ホーム"
|
189 |
|
190 |
+
#: ../breadcrumb_navxt_admin.php:440
|
191 |
msgid "Place the home breadcrumb in the trail."
|
192 |
msgstr "パンくずリストにホームを配置"
|
193 |
|
194 |
+
#: ../breadcrumb_navxt_admin.php:445
|
195 |
msgid "Home Title: "
|
196 |
msgstr "ホームタイトル:"
|
197 |
|
198 |
+
#: ../breadcrumb_navxt_admin.php:453
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
msgid "Home Prefix"
|
200 |
msgstr "ホーム接頭辞"
|
201 |
|
202 |
+
#: ../breadcrumb_navxt_admin.php:454
|
203 |
msgid "Home Suffix"
|
204 |
msgstr "ホーム接尾辞"
|
205 |
|
206 |
+
#: ../breadcrumb_navxt_admin.php:455
|
207 |
msgid "Home Anchor"
|
208 |
msgstr "ホームリンク"
|
209 |
|
210 |
+
#: ../breadcrumb_navxt_admin.php:455
|
211 |
msgid "The anchor template for the home breadcrumb."
|
212 |
msgstr "ホームのリンク書式"
|
213 |
|
214 |
+
#: ../breadcrumb_navxt_admin.php:456
|
215 |
+
msgid "Blog Breadcrumb"
|
216 |
+
msgstr "ブログ"
|
217 |
+
|
218 |
+
#: ../breadcrumb_navxt_admin.php:456
|
219 |
+
msgid "Place the blog breadcrumb in the trail."
|
220 |
+
msgstr "パンくずリストにブログを配置(フロントページの表示に固定ページを使用した場合のみ)"
|
221 |
+
|
222 |
+
#: ../breadcrumb_navxt_admin.php:457
|
223 |
msgid "Blog Anchor"
|
224 |
msgstr "ブログリンク"
|
225 |
|
226 |
+
#: ../breadcrumb_navxt_admin.php:457
|
227 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
228 |
+
msgstr "ブログのリンク書式"
|
229 |
+
|
230 |
+
#: ../breadcrumb_navxt_admin.php:461
|
231 |
+
msgid "Main Site Breadcrumb"
|
232 |
+
msgstr "メインサイトのパンくずリスト"
|
233 |
+
|
234 |
+
#: ../breadcrumb_navxt_admin.php:466
|
235 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
236 |
+
msgstr "マルチサイトにおけるメインサイトのパンくずリストにホームを配置"
|
237 |
+
|
238 |
+
#: ../breadcrumb_navxt_admin.php:471
|
239 |
+
msgid "Main Site Home Title: "
|
240 |
+
msgstr "メインサイトのホームタイトル:"
|
241 |
+
|
242 |
+
#: ../breadcrumb_navxt_admin.php:479
|
243 |
+
msgid "Main Site Home Prefix"
|
244 |
+
msgstr "メインサイトのホーム接頭辞"
|
245 |
|
246 |
+
#: ../breadcrumb_navxt_admin.php:479
|
247 |
+
#: ../breadcrumb_navxt_admin.php:480
|
248 |
+
msgid "Used for the main site home breadcrumb in an multisite setup"
|
249 |
+
msgstr "マルチサイト環境下におけるメインサイトのパンくずリストのホームに適用"
|
250 |
+
|
251 |
+
#: ../breadcrumb_navxt_admin.php:480
|
252 |
+
msgid "Main Site Home Suffix"
|
253 |
+
msgstr "メインサイトのホーム接尾辞"
|
254 |
+
|
255 |
+
#: ../breadcrumb_navxt_admin.php:481
|
256 |
+
msgid "Main Site Home Anchor"
|
257 |
+
msgstr "メインサイトのホームリンク"
|
258 |
+
|
259 |
+
#: ../breadcrumb_navxt_admin.php:481
|
260 |
+
msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
|
261 |
+
msgstr "マルチサイト環境下におけるメインサイトのパンくずリストのホームリンク書式"
|
262 |
+
|
263 |
+
#: ../breadcrumb_navxt_admin.php:486
|
264 |
msgid "Current Item"
|
265 |
msgstr "アクティブページ"
|
266 |
|
267 |
+
#: ../breadcrumb_navxt_admin.php:489
|
268 |
msgid "Link Current Item"
|
269 |
msgstr "アクティブページのリンク"
|
270 |
|
271 |
+
#: ../breadcrumb_navxt_admin.php:489
|
272 |
msgid "Yes"
|
273 |
msgstr "はい"
|
274 |
|
275 |
+
#: ../breadcrumb_navxt_admin.php:490
|
276 |
msgid "Current Item Prefix"
|
277 |
msgstr "アクティブページ接頭辞"
|
278 |
|
279 |
+
#: ../breadcrumb_navxt_admin.php:490
|
280 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
281 |
+
msgstr "常に他の接頭辞よりも前にアクティブページの接頭辞として配置"
|
282 |
|
283 |
+
#: ../breadcrumb_navxt_admin.php:491
|
284 |
msgid "Current Item Suffix"
|
285 |
msgstr "アクティブページ接尾辞"
|
286 |
|
287 |
+
#: ../breadcrumb_navxt_admin.php:491
|
288 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
289 |
+
msgstr "常に他の接尾辞よりも後にアクティブページの接尾辞として配置"
|
290 |
|
291 |
+
#: ../breadcrumb_navxt_admin.php:492
|
292 |
msgid "Current Item Anchor"
|
293 |
msgstr "アクティブページリンク"
|
294 |
|
295 |
+
#: ../breadcrumb_navxt_admin.php:492
|
296 |
msgid "The anchor template for current item breadcrumbs."
|
297 |
msgstr "アクティブページのリンク書式"
|
298 |
|
299 |
+
#: ../breadcrumb_navxt_admin.php:493
|
300 |
msgid "Paged Breadcrumb"
|
301 |
msgstr "ページネーション"
|
302 |
|
303 |
+
#: ../breadcrumb_navxt_admin.php:493
|
304 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
305 |
msgstr "ページネーションを含む"
|
306 |
|
307 |
+
#: ../breadcrumb_navxt_admin.php:493
|
308 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
309 |
msgstr "ページネーションが適用されている場合、表示箇所が何頁目であるかを表示する。"
|
310 |
|
311 |
+
#: ../breadcrumb_navxt_admin.php:494
|
312 |
msgid "Paged Prefix"
|
313 |
msgstr "ページネーション接頭辞"
|
314 |
|
315 |
+
#: ../breadcrumb_navxt_admin.php:495
|
316 |
msgid "Paged Suffix"
|
317 |
msgstr "ページネーション接尾辞"
|
318 |
|
319 |
+
#: ../breadcrumb_navxt_admin.php:500
|
320 |
msgid "Posts & Pages"
|
321 |
msgstr "投稿およびページ"
|
322 |
|
323 |
+
#: ../breadcrumb_navxt_admin.php:503
|
324 |
msgid "Post Prefix"
|
325 |
msgstr "投稿接頭辞"
|
326 |
|
327 |
+
#: ../breadcrumb_navxt_admin.php:504
|
328 |
msgid "Post Suffix"
|
329 |
msgstr "投稿接尾辞"
|
330 |
|
331 |
+
#: ../breadcrumb_navxt_admin.php:505
|
332 |
msgid "Post Anchor"
|
333 |
msgstr "投稿リンク"
|
334 |
|
335 |
+
#: ../breadcrumb_navxt_admin.php:505
|
336 |
msgid "The anchor template for post breadcrumbs."
|
337 |
msgstr "投稿のリンク書式"
|
338 |
|
339 |
+
#: ../breadcrumb_navxt_admin.php:506
|
340 |
msgid "Post Taxonomy Display"
|
341 |
msgstr "投稿タクソノミーの表示"
|
342 |
|
343 |
+
#: ../breadcrumb_navxt_admin.php:506
|
344 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
345 |
msgstr "パンくずリストに投稿へ誘導するためのタクソノミーを表示"
|
346 |
|
347 |
+
#: ../breadcrumb_navxt_admin.php:510
|
348 |
msgid "Post Taxonomy"
|
349 |
msgstr "投稿タクソノミー"
|
350 |
|
351 |
+
#: ../breadcrumb_navxt_admin.php:514
|
352 |
+
#: ../breadcrumb_navxt_admin.php:631
|
353 |
msgid "Categories"
|
354 |
msgstr "カテゴリー"
|
355 |
|
356 |
+
#: ../breadcrumb_navxt_admin.php:515
|
357 |
msgid "Dates"
|
358 |
msgstr "日付"
|
359 |
|
360 |
+
#: ../breadcrumb_navxt_admin.php:516
|
361 |
+
#: ../breadcrumb_navxt_admin.php:643
|
362 |
msgid "Tags"
|
363 |
msgstr "タグ"
|
364 |
|
365 |
+
#: ../breadcrumb_navxt_admin.php:517
|
366 |
+
#: ../breadcrumb_navxt_admin.php:610
|
367 |
msgid "Pages"
|
368 |
msgstr "ページ"
|
369 |
|
370 |
+
#: ../breadcrumb_navxt_admin.php:528
|
371 |
+
#: ../breadcrumb_navxt_admin.php:621
|
372 |
msgid "The taxonomy which the breadcrumb trail will show."
|
373 |
msgstr "パンくずリストに表示するタクソノミー"
|
374 |
|
375 |
+
#: ../breadcrumb_navxt_admin.php:532
|
376 |
msgid "Page Prefix"
|
377 |
msgstr "ページ接頭辞"
|
378 |
|
379 |
+
#: ../breadcrumb_navxt_admin.php:533
|
380 |
msgid "Page Suffix"
|
381 |
msgstr "ページ接尾辞"
|
382 |
|
383 |
+
#: ../breadcrumb_navxt_admin.php:534
|
384 |
msgid "Page Anchor"
|
385 |
msgstr "ページリンク"
|
386 |
|
387 |
+
#: ../breadcrumb_navxt_admin.php:534
|
388 |
msgid "The anchor template for page breadcrumbs."
|
389 |
msgstr "ページのリンク書式"
|
390 |
|
391 |
+
#: ../breadcrumb_navxt_admin.php:535
|
392 |
msgid "Attachment Prefix"
|
393 |
msgstr "添付接頭辞"
|
394 |
|
395 |
+
#: ../breadcrumb_navxt_admin.php:536
|
396 |
msgid "Attachment Suffix"
|
397 |
msgstr "添付接尾辞"
|
398 |
|
399 |
+
#: ../breadcrumb_navxt_admin.php:585
|
400 |
+
#: ../breadcrumb_navxt_admin.php:679
|
401 |
#, php-format
|
402 |
msgid "%s Prefix"
|
403 |
msgstr "%s 接頭辞"
|
404 |
|
405 |
+
#: ../breadcrumb_navxt_admin.php:586
|
406 |
+
#: ../breadcrumb_navxt_admin.php:680
|
407 |
#, php-format
|
408 |
msgid "%s Suffix"
|
409 |
msgstr "%s 接尾辞"
|
410 |
|
411 |
+
#: ../breadcrumb_navxt_admin.php:587
|
412 |
+
#: ../breadcrumb_navxt_admin.php:681
|
413 |
#, php-format
|
414 |
msgid "%s Anchor"
|
415 |
msgstr "%s リンク"
|
416 |
|
417 |
+
#: ../breadcrumb_navxt_admin.php:587
|
418 |
+
#: ../breadcrumb_navxt_admin.php:681
|
419 |
#, php-format
|
420 |
msgid "The anchor template for %s breadcrumbs."
|
421 |
msgstr "%sのリンク書式"
|
422 |
|
423 |
+
#: ../breadcrumb_navxt_admin.php:592
|
424 |
+
#, php-format
|
425 |
+
msgid "%s Root Page"
|
426 |
+
msgstr "%s ルートページ"
|
427 |
+
|
428 |
+
#: ../breadcrumb_navxt_admin.php:595
|
429 |
+
msgid "— Select —"
|
430 |
+
msgstr "— 選択 —"
|
431 |
+
|
432 |
+
#: ../breadcrumb_navxt_admin.php:602
|
433 |
#, php-format
|
434 |
msgid "%s Taxonomy Display"
|
435 |
msgstr "タクソノミー「%s」の表示"
|
436 |
|
437 |
+
#: ../breadcrumb_navxt_admin.php:602
|
438 |
#, php-format
|
439 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
440 |
msgstr "パンくずリスト上の%sにつながるタクソノミーを表示"
|
441 |
|
442 |
+
#: ../breadcrumb_navxt_admin.php:606
|
443 |
#, php-format
|
444 |
msgid "%s Taxonomy"
|
445 |
msgstr "タクソノミー「%s 」"
|
446 |
|
447 |
+
#: ../breadcrumb_navxt_admin.php:634
|
448 |
msgid "Category Prefix"
|
449 |
msgstr "カテゴリー接頭辞"
|
450 |
|
451 |
+
#: ../breadcrumb_navxt_admin.php:634
|
452 |
msgid "Applied before the anchor on all category breadcrumbs."
|
453 |
+
msgstr "すべてのカテゴリーリンクの前に適用"
|
454 |
|
455 |
+
#: ../breadcrumb_navxt_admin.php:635
|
456 |
msgid "Category Suffix"
|
457 |
msgstr "カテゴリー接尾辞"
|
458 |
|
459 |
+
#: ../breadcrumb_navxt_admin.php:635
|
460 |
msgid "Applied after the anchor on all category breadcrumbs."
|
461 |
+
msgstr "すべてのカテゴリーリンクの後に適用"
|
462 |
|
463 |
+
#: ../breadcrumb_navxt_admin.php:636
|
464 |
msgid "Category Anchor"
|
465 |
msgstr "カテゴリーリンク"
|
466 |
|
467 |
+
#: ../breadcrumb_navxt_admin.php:636
|
468 |
msgid "The anchor template for category breadcrumbs."
|
469 |
msgstr "カテゴリーのリンク書式"
|
470 |
|
471 |
+
#: ../breadcrumb_navxt_admin.php:637
|
472 |
msgid "Archive by Category Prefix"
|
473 |
msgstr "カテゴリーアーカイブの接頭辞"
|
474 |
|
475 |
+
#: ../breadcrumb_navxt_admin.php:637
|
476 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
477 |
+
msgstr "カテゴリーアーカイブがアクティブページの場合に接頭辞として配置"
|
478 |
|
479 |
+
#: ../breadcrumb_navxt_admin.php:638
|
480 |
msgid "Archive by Category Suffix"
|
481 |
msgstr "カテゴリーアーカイブの接尾辞"
|
482 |
|
483 |
+
#: ../breadcrumb_navxt_admin.php:638
|
484 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
485 |
+
msgstr "カテゴリーアーカイブがアクティブページの場合に接尾辞として配置"
|
486 |
|
487 |
+
#: ../breadcrumb_navxt_admin.php:646
|
488 |
msgid "Tag Prefix"
|
489 |
msgstr "タグ接頭辞"
|
490 |
|
491 |
+
#: ../breadcrumb_navxt_admin.php:646
|
492 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
493 |
+
msgstr "すべてのタグリンクの前に適用"
|
494 |
|
495 |
+
#: ../breadcrumb_navxt_admin.php:647
|
496 |
msgid "Tag Suffix"
|
497 |
msgstr "タグ接尾辞"
|
498 |
|
499 |
+
#: ../breadcrumb_navxt_admin.php:647
|
500 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
501 |
+
msgstr "すべてのタグリンクの後に適用"
|
502 |
|
503 |
+
#: ../breadcrumb_navxt_admin.php:648
|
504 |
msgid "Tag Anchor"
|
505 |
msgstr "タグリンク"
|
506 |
|
507 |
+
#: ../breadcrumb_navxt_admin.php:648
|
508 |
msgid "The anchor template for tag breadcrumbs."
|
509 |
msgstr "タグのリンク書式"
|
510 |
|
511 |
+
#: ../breadcrumb_navxt_admin.php:649
|
512 |
msgid "Archive by Tag Prefix"
|
513 |
msgstr "タグアーカイブの接頭辞"
|
514 |
|
515 |
+
#: ../breadcrumb_navxt_admin.php:649
|
516 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
517 |
+
msgstr "タグアーカイブがアクティブページの場合に接頭辞として配置"
|
518 |
|
519 |
+
#: ../breadcrumb_navxt_admin.php:650
|
520 |
msgid "Archive by Tag Suffix"
|
521 |
msgstr "タグアーカイブの接尾辞"
|
522 |
|
523 |
+
#: ../breadcrumb_navxt_admin.php:650
|
524 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
525 |
+
msgstr "タグアーカイブがアクティブページの場合に接尾辞として配置"
|
526 |
|
527 |
+
#: ../breadcrumb_navxt_admin.php:679
|
528 |
#, php-format
|
529 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
530 |
msgstr "すべての%sリンクの前に適用されます。"
|
531 |
|
532 |
+
#: ../breadcrumb_navxt_admin.php:680
|
533 |
#, php-format
|
534 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
535 |
msgstr "すべての%sリンクの後に適用されます。"
|
536 |
|
537 |
+
#: ../breadcrumb_navxt_admin.php:682
|
538 |
#, php-format
|
539 |
msgid "Archive by %s Prefix"
|
540 |
msgstr "%sアーカイブの接頭辞"
|
541 |
|
542 |
+
#: ../breadcrumb_navxt_admin.php:682
|
543 |
#, php-format
|
544 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
545 |
+
msgstr "%sアーカイブがアクティブページの場合に接頭辞として配置"
|
546 |
|
547 |
+
#: ../breadcrumb_navxt_admin.php:683
|
548 |
#, php-format
|
549 |
msgid "Archive by %s Suffix"
|
550 |
msgstr "%sアーカイブの接尾辞"
|
551 |
|
552 |
+
#: ../breadcrumb_navxt_admin.php:683
|
553 |
#, php-format
|
554 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
555 |
+
msgstr "%sアーカイブがアクティブページの場合に接尾辞として配置"
|
556 |
|
557 |
+
#: ../breadcrumb_navxt_admin.php:692
|
558 |
msgid "Date Archives"
|
559 |
msgstr "日付アーカイブ"
|
560 |
|
561 |
+
#: ../breadcrumb_navxt_admin.php:695
|
562 |
msgid "Date Anchor"
|
563 |
msgstr "日付リンク"
|
564 |
|
565 |
+
#: ../breadcrumb_navxt_admin.php:695
|
566 |
msgid "The anchor template for date breadcrumbs."
|
567 |
msgstr "日付のリンク書式"
|
568 |
|
569 |
+
#: ../breadcrumb_navxt_admin.php:696
|
570 |
msgid "Archive by Date Prefix"
|
571 |
msgstr "日付アーカイブの接頭辞"
|
572 |
|
573 |
+
#: ../breadcrumb_navxt_admin.php:696
|
574 |
msgid "Applied before the anchor on all date breadcrumbs."
|
575 |
+
msgstr "すべての日付リンクの前に適用"
|
576 |
|
577 |
+
#: ../breadcrumb_navxt_admin.php:697
|
578 |
msgid "Archive by Date Suffix"
|
579 |
msgstr "日付アーカイブの接尾辞"
|
580 |
|
581 |
+
#: ../breadcrumb_navxt_admin.php:697
|
582 |
msgid "Applied after the anchor on all date breadcrumbs."
|
583 |
+
msgstr "すべての日付リンクの後に適用"
|
584 |
|
585 |
+
#: ../breadcrumb_navxt_admin.php:702
|
586 |
msgid "Miscellaneous"
|
587 |
msgstr "その他"
|
588 |
|
589 |
+
#: ../breadcrumb_navxt_admin.php:705
|
590 |
msgid "Author Prefix"
|
591 |
msgstr "投稿者接頭辞"
|
592 |
|
593 |
+
#: ../breadcrumb_navxt_admin.php:706
|
594 |
msgid "Author Suffix"
|
595 |
msgstr "投稿者接尾辞"
|
596 |
|
597 |
+
#: ../breadcrumb_navxt_admin.php:707
|
598 |
msgid "Author Display Format"
|
599 |
msgstr "投稿者表示形式"
|
600 |
|
601 |
+
#: ../breadcrumb_navxt_admin.php:707
|
602 |
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."
|
603 |
msgstr "「display_name」はユーザプロフィール内の「ブログ上の表示名」が使用されます。その他もユーザプロフィール内の設定内容が適用されます。"
|
604 |
|
605 |
+
#: ../breadcrumb_navxt_admin.php:708
|
606 |
msgid "Search Prefix"
|
607 |
msgstr "検索結果接頭辞"
|
608 |
|
609 |
+
#: ../breadcrumb_navxt_admin.php:709
|
610 |
msgid "Search Suffix"
|
611 |
msgstr "検索結果接尾辞"
|
612 |
|
613 |
+
#: ../breadcrumb_navxt_admin.php:710
|
614 |
msgid "Search Anchor"
|
615 |
msgstr "検索結果リンク"
|
616 |
|
617 |
+
#: ../breadcrumb_navxt_admin.php:710
|
618 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
619 |
msgstr "検索結果のリンク書式(検索結果が複数ページに及ぶ場合のみに適用)"
|
620 |
|
621 |
+
#: ../breadcrumb_navxt_admin.php:711
|
622 |
msgid "404 Title"
|
623 |
msgstr "404タイトル"
|
624 |
|
625 |
+
#: ../breadcrumb_navxt_admin.php:712
|
626 |
msgid "404 Prefix"
|
627 |
msgstr "404接頭辞"
|
628 |
|
629 |
+
#: ../breadcrumb_navxt_admin.php:713
|
630 |
msgid "404 Suffix"
|
631 |
msgstr "404接尾辞"
|
632 |
|
633 |
+
#: ../breadcrumb_navxt_widget.php:24
|
634 |
+
msgid "Adds a breadcrumb trail to your sidebar"
|
635 |
+
msgstr "サイドバーにパンくずリストを追加"
|
636 |
+
|
637 |
+
#: ../breadcrumb_navxt_widget.php:72
|
638 |
+
msgid "Title:"
|
639 |
+
msgstr "タイトル:"
|
640 |
+
|
641 |
+
#: ../breadcrumb_navxt_widget.php:77
|
642 |
+
msgid "Output trail as a list"
|
643 |
+
msgstr "リストとして表示"
|
644 |
+
|
645 |
+
#: ../breadcrumb_navxt_widget.php:79
|
646 |
+
msgid "Link the breadcrumbs"
|
647 |
+
msgstr "パンクすリストにリンク"
|
648 |
+
|
649 |
+
#: ../breadcrumb_navxt_widget.php:81
|
650 |
+
msgid "Reverse the order of the trail"
|
651 |
+
msgstr "開始位置を逆にする。"
|
652 |
+
|
653 |
+
#: ../breadcrumb_navxt_widget.php:83
|
654 |
+
msgid "Hide the trail on the front page"
|
655 |
+
msgstr "フロントページ上では非表示"
|
656 |
+
|
657 |
+
#: ../breadcrumb_navxt_class.php:213
|
658 |
msgid "Blog"
|
659 |
msgstr "ブログ"
|
660 |
|
661 |
+
#: ../breadcrumb_navxt_class.php:232
|
662 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
663 |
msgstr "<a title=\"再読み込み\" href=\"%link%\">"
|
664 |
|
665 |
+
#: ../breadcrumb_navxt_class.php:277
|
666 |
msgid "404"
|
667 |
msgstr "404"
|
668 |
|
669 |
+
#: ../breadcrumb_navxt_class.php:280
|
670 |
msgid "Search results for '"
|
671 |
msgstr "'の検索結果"
|
672 |
|
673 |
+
#: ../breadcrumb_navxt_class.php:284
|
674 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
675 |
msgstr "<a title=\"%title%の検索結果の最初のページに戻る\" href=\"%link%\">"
|
676 |
|
677 |
+
#: ../breadcrumb_navxt_class.php:291
|
678 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
679 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
680 |
|
681 |
+
#: ../breadcrumb_navxt_class.php:294
|
682 |
msgid "Articles by: "
|
683 |
msgstr "投稿者:"
|
684 |
|
685 |
+
#: ../breadcrumb_navxt_class.php:298
|
686 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
687 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
688 |
|
689 |
+
#: ../breadcrumb_navxt_class.php:307
|
690 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
691 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
692 |
|
693 |
+
#: ../breadcrumb_navxt_class.php:310
|
694 |
msgid "Archive by category '"
|
695 |
msgstr "カテゴリー '"
|
696 |
|
697 |
+
#: ../breadcrumb_navxt_class.php:314
|
698 |
msgid "Archive by tag '"
|
699 |
msgstr "タグ '"
|
700 |
|
701 |
+
#: ../breadcrumb_navxt_class.php:317
|
702 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
703 |
msgstr "<a title=\"%title%\" href=\"%link%\">"
|
704 |
|
705 |
+
#: ../breadcrumb_navxt_class.php:478
|
706 |
+
msgid "Un"
|
707 |
+
msgstr "無"
|
708 |
|
709 |
+
#~ msgid "Untagged"
|
710 |
+
#~ msgstr "タグなし"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
711 |
|
712 |
#~ msgid ""
|
713 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
714 |
#~ "the default values. Are you sure you want to continue?"
|
715 |
#~ msgstr ""
|
716 |
#~ "現在の設定がすべて初期値で上書きされます。実行してもよろしいですか?"
|
717 |
+
|
718 |
#~ msgid ""
|
719 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
720 |
#~ "the imported values. Are you sure you want to continue?"
|
721 |
#~ msgstr ""
|
722 |
#~ "現在の設定がすべてインポートする値で上書きされます。実行してもよろしいです"
|
723 |
#~ "か?"
|
724 |
+
|
725 |
#~ msgid "Save Changes"
|
726 |
#~ msgstr "Anderungen speichern"
|
727 |
+
|
728 |
#~ msgid ""
|
729 |
#~ "Warning, your version of Breadcrumb NavXT does not match the version "
|
730 |
#~ "supported by this administrative interface. As a result, settings may not "
|
733 |
#~ "Warnung: Deine Version von Breadcrumb NavXT stimmt nicht mit den "
|
734 |
#~ "unterstutzen Versionen von diesem Administrations-Interface uberein. Dies "
|
735 |
#~ "kann zu Fehlfunktionen fuhren."
|
736 |
+
|
737 |
#~ msgid "Your Breadcrumb NavXT Administration interface version is "
|
738 |
#~ msgstr "Die Breadcrumb NavXT Administrations-Interface Version ist "
|
739 |
+
|
740 |
#~ msgid "Your Breadcrumb NavXT version is "
|
741 |
#~ msgstr "Die Breadcrumb NavXT Version ist "
|
|
languages/breadcrumb_navxt-sv_SE.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt-sv_SE.po
CHANGED
@@ -2,9 +2,9 @@ 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-
|
6 |
-
"PO-Revision-Date: 2010-
|
7 |
-
"Last-Translator: Spathon <patrik@
|
8 |
"Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -14,536 +14,603 @@ 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 |
#, 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:
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr "Otillräcklig privilegier för att fortsätta."
|
25 |
|
26 |
-
#: breadcrumb_navxt_admin.php:
|
27 |
-
#:
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
#:
|
32 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
34 |
msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
|
35 |
|
36 |
-
#: breadcrumb_navxt_admin.php:
|
37 |
msgid "Settings successfully saved."
|
38 |
msgstr "Inställningarna sparade."
|
39 |
|
40 |
-
#: breadcrumb_navxt_admin.php:
|
41 |
msgid "Undo the options save."
|
42 |
msgstr "Ångra sparade inställningar."
|
43 |
|
44 |
-
#: breadcrumb_navxt_admin.php:
|
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 "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
|
48 |
|
49 |
-
#: breadcrumb_navxt_admin.php:
|
50 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
51 |
msgstr "Gå till Breadcrumb NavXT online dokumentation"
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Import"
|
56 |
msgstr "Importera"
|
57 |
|
58 |
-
#: breadcrumb_navxt_admin.php:
|
59 |
-
#: mtekk_admin_class.php:
|
60 |
msgid "Export"
|
61 |
msgstr "Exportera"
|
62 |
|
63 |
-
#: breadcrumb_navxt_admin.php:
|
64 |
-
#: mtekk_admin_class.php:
|
65 |
msgid "Reset"
|
66 |
msgstr "Återställ"
|
67 |
|
68 |
-
#: breadcrumb_navxt_admin.php:
|
69 |
msgid "Breadcrumb NavXT Settings"
|
70 |
msgstr "Breadcrumb NavXT Inställningar"
|
71 |
|
72 |
-
#: breadcrumb_navxt_admin.php:
|
73 |
msgid "General"
|
74 |
msgstr "Allmänt"
|
75 |
|
76 |
-
#: breadcrumb_navxt_admin.php:
|
77 |
msgid "Breadcrumb Separator"
|
78 |
msgstr "Breadcrumb separator"
|
79 |
|
80 |
-
#: breadcrumb_navxt_admin.php:
|
81 |
msgid "Placed in between each breadcrumb."
|
82 |
msgstr "Placeras i mellan varje breadcrumb."
|
83 |
|
84 |
-
#: breadcrumb_navxt_admin.php:
|
85 |
msgid "Breadcrumb Max Title Length"
|
86 |
msgstr "Breadcrumb max titel längd"
|
87 |
|
88 |
-
#: breadcrumb_navxt_admin.php:
|
89 |
msgid "Home Breadcrumb"
|
90 |
msgstr "Hem Breadcrumb"
|
91 |
|
92 |
-
#: breadcrumb_navxt_admin.php:
|
93 |
msgid "Place the home breadcrumb in the trail."
|
94 |
msgstr "Placera hem breadcrumb i spåret."
|
95 |
|
96 |
-
#: breadcrumb_navxt_admin.php:
|
97 |
msgid "Home Title: "
|
98 |
msgstr "Hem titel: "
|
99 |
|
100 |
-
#: breadcrumb_navxt_admin.php:
|
101 |
-
msgid "Blog Breadcrumb"
|
102 |
-
msgstr "Blogg breadcrumb"
|
103 |
-
|
104 |
-
#: breadcrumb_navxt_admin.php:515
|
105 |
-
msgid "Place the blog breadcrumb in the trail."
|
106 |
-
msgstr "Placera blogg breadcrumb i spåret."
|
107 |
-
|
108 |
-
#: breadcrumb_navxt_admin.php:516
|
109 |
msgid "Home Prefix"
|
110 |
msgstr "Hem Prefix"
|
111 |
|
112 |
-
#: breadcrumb_navxt_admin.php:
|
113 |
msgid "Home Suffix"
|
114 |
msgstr "hem Suffix"
|
115 |
|
116 |
-
#: breadcrumb_navxt_admin.php:
|
117 |
msgid "Home Anchor"
|
118 |
msgstr "Hem Länk "
|
119 |
|
120 |
-
#: breadcrumb_navxt_admin.php:
|
121 |
msgid "The anchor template for the home breadcrumb."
|
122 |
msgstr "Länk mall för hem breadcrumb."
|
123 |
|
124 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "Blog Anchor"
|
126 |
msgstr "Blogg länk"
|
127 |
|
128 |
-
#: breadcrumb_navxt_admin.php:
|
129 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
130 |
msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
|
131 |
|
132 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Current Item"
|
134 |
msgstr "Nuvarande punkt"
|
135 |
|
136 |
-
#: breadcrumb_navxt_admin.php:
|
137 |
msgid "Link Current Item"
|
138 |
msgstr "Länk Nuvarande punkt"
|
139 |
|
140 |
-
#: breadcrumb_navxt_admin.php:
|
141 |
msgid "Yes"
|
142 |
msgstr "Ja"
|
143 |
|
144 |
-
#: breadcrumb_navxt_admin.php:
|
145 |
msgid "Current Item Prefix"
|
146 |
msgstr "Nuvarande punkt Prefix"
|
147 |
|
148 |
-
#: breadcrumb_navxt_admin.php:
|
149 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
150 |
msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
|
151 |
|
152 |
-
#: breadcrumb_navxt_admin.php:
|
153 |
msgid "Current Item Suffix"
|
154 |
msgstr "Nuvarande punkt Suffix"
|
155 |
|
156 |
-
#: breadcrumb_navxt_admin.php:
|
157 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
158 |
msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
|
159 |
|
160 |
-
#: breadcrumb_navxt_admin.php:
|
161 |
msgid "Current Item Anchor"
|
162 |
msgstr "Nuvarande punkt Länk"
|
163 |
|
164 |
-
#: breadcrumb_navxt_admin.php:
|
165 |
msgid "The anchor template for current item breadcrumbs."
|
166 |
msgstr "Länk mall för nuvarande punkt breadcrumbs."
|
167 |
|
168 |
-
#: breadcrumb_navxt_admin.php:
|
169 |
msgid "Paged Breadcrumb"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: breadcrumb_navxt_admin.php:
|
173 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
174 |
msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
|
175 |
|
176 |
-
#: breadcrumb_navxt_admin.php:
|
177 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
178 |
msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
|
179 |
|
180 |
-
#: breadcrumb_navxt_admin.php:
|
181 |
msgid "Paged Prefix"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: breadcrumb_navxt_admin.php:
|
185 |
msgid "Paged Suffix"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: breadcrumb_navxt_admin.php:
|
189 |
msgid "Posts & Pages"
|
190 |
msgstr "Inlägg & Sidor"
|
191 |
|
192 |
-
#: breadcrumb_navxt_admin.php:
|
193 |
msgid "Post Prefix"
|
194 |
msgstr "Inläggs Prefix"
|
195 |
|
196 |
-
#: breadcrumb_navxt_admin.php:
|
197 |
msgid "Post Suffix"
|
198 |
msgstr "Inläggs Suffix"
|
199 |
|
200 |
-
#: breadcrumb_navxt_admin.php:
|
201 |
msgid "Post Anchor"
|
202 |
msgstr "Inläggs Länk"
|
203 |
|
204 |
-
#: breadcrumb_navxt_admin.php:
|
205 |
msgid "The anchor template for post breadcrumbs."
|
206 |
msgstr "Länk mall för inläggs breadcrumbs."
|
207 |
|
208 |
-
#: breadcrumb_navxt_admin.php:
|
209 |
msgid "Post Taxonomy Display"
|
210 |
msgstr "Inläggs taxonomi visning"
|
211 |
|
212 |
-
#: breadcrumb_navxt_admin.php:
|
213 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
214 |
msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
|
215 |
|
216 |
-
#: breadcrumb_navxt_admin.php:
|
217 |
msgid "Post Taxonomy"
|
218 |
msgstr "Inäggs taxonomi"
|
219 |
|
220 |
-
#: breadcrumb_navxt_admin.php:
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Categories"
|
223 |
msgstr "Kategorier"
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Dates"
|
227 |
msgstr "Datum"
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
-
#: breadcrumb_navxt_admin.php:
|
231 |
msgid "Tags"
|
232 |
msgstr "Taggar"
|
233 |
|
234 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
235 |
msgid "Pages"
|
236 |
msgstr "Sidor"
|
237 |
|
238 |
-
#: breadcrumb_navxt_admin.php:
|
239 |
-
#: breadcrumb_navxt_admin.php:
|
240 |
msgid "The taxonomy which the breadcrumb trail will show."
|
241 |
msgstr "Den taxonomi som breadcrumb kommer att visa."
|
242 |
|
243 |
-
#: breadcrumb_navxt_admin.php:
|
244 |
msgid "Page Prefix"
|
245 |
msgstr "Sido Prefix"
|
246 |
|
247 |
-
#: breadcrumb_navxt_admin.php:
|
248 |
msgid "Page Suffix"
|
249 |
msgstr "Sido Suffix"
|
250 |
|
251 |
-
#: breadcrumb_navxt_admin.php:
|
252 |
msgid "Page Anchor"
|
253 |
msgstr "Sido Länk"
|
254 |
|
255 |
-
#: breadcrumb_navxt_admin.php:
|
256 |
msgid "The anchor template for page breadcrumbs."
|
257 |
msgstr "Länk mall för sido breadcrumbs."
|
258 |
|
259 |
-
#: breadcrumb_navxt_admin.php:
|
260 |
msgid "Attachment Prefix"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: breadcrumb_navxt_admin.php:
|
264 |
msgid "Attachment Suffix"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: breadcrumb_navxt_admin.php:
|
268 |
-
#: breadcrumb_navxt_admin.php:
|
269 |
#, php-format
|
270 |
msgid "%s Prefix"
|
271 |
msgstr "%s Prefix"
|
272 |
|
273 |
-
#: breadcrumb_navxt_admin.php:
|
274 |
-
#: breadcrumb_navxt_admin.php:
|
275 |
#, php-format
|
276 |
msgid "%s Suffix"
|
277 |
msgstr "%s Suffix"
|
278 |
|
279 |
-
#: breadcrumb_navxt_admin.php:
|
280 |
-
#: breadcrumb_navxt_admin.php:
|
281 |
#, php-format
|
282 |
msgid "%s Anchor"
|
283 |
msgstr "%s Länk"
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
-
#: breadcrumb_navxt_admin.php:
|
287 |
#, php-format
|
288 |
msgid "The anchor template for %s breadcrumbs."
|
289 |
msgstr "Länk mall för %s breadcrumbs."
|
290 |
|
291 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
#, php-format
|
293 |
msgid "%s Taxonomy Display"
|
294 |
msgstr "%s Ttaxonomi visning"
|
295 |
|
296 |
-
#: breadcrumb_navxt_admin.php:
|
297 |
#, php-format
|
298 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
299 |
msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
#, php-format
|
303 |
msgid "%s Taxonomy"
|
304 |
msgstr "%s Taxonomi"
|
305 |
|
306 |
-
#: breadcrumb_navxt_admin.php:
|
307 |
msgid "Category Prefix"
|
308 |
msgstr "Kategori prefix"
|
309 |
|
310 |
-
#: breadcrumb_navxt_admin.php:
|
311 |
msgid "Applied before the anchor on all category breadcrumbs."
|
312 |
msgstr "Tillämpad innan länken på alla kategori breadcrumb"
|
313 |
|
314 |
-
#: breadcrumb_navxt_admin.php:
|
315 |
msgid "Category Suffix"
|
316 |
msgstr "Kategori Suffix"
|
317 |
|
318 |
-
#: breadcrumb_navxt_admin.php:
|
319 |
msgid "Applied after the anchor on all category breadcrumbs."
|
320 |
msgstr "Tillämpad efter länken på alla kategori breadcrumb"
|
321 |
|
322 |
-
#: breadcrumb_navxt_admin.php:
|
323 |
msgid "Category Anchor"
|
324 |
msgstr "Kategori länk"
|
325 |
|
326 |
-
#: breadcrumb_navxt_admin.php:
|
327 |
msgid "The anchor template for category breadcrumbs."
|
328 |
msgstr "länk mall för kategori breadcrumbs"
|
329 |
|
330 |
-
#: breadcrumb_navxt_admin.php:
|
331 |
msgid "Archive by Category Prefix"
|
332 |
msgstr "Arkiv av kategori prefix"
|
333 |
|
334 |
-
#: breadcrumb_navxt_admin.php:
|
335 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
336 |
msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
|
337 |
|
338 |
-
#: breadcrumb_navxt_admin.php:
|
339 |
msgid "Archive by Category Suffix"
|
340 |
msgstr "Arkiv av Kategori Suffix"
|
341 |
|
342 |
-
#: breadcrumb_navxt_admin.php:
|
343 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
344 |
msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
|
345 |
|
346 |
-
#: breadcrumb_navxt_admin.php:
|
347 |
msgid "Tag Prefix"
|
348 |
msgstr "Tagg Prefix"
|
349 |
|
350 |
-
#: breadcrumb_navxt_admin.php:
|
351 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
352 |
msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
|
353 |
|
354 |
-
#: breadcrumb_navxt_admin.php:
|
355 |
msgid "Tag Suffix"
|
356 |
msgstr "Tag Suffix"
|
357 |
|
358 |
-
#: breadcrumb_navxt_admin.php:
|
359 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
360 |
msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
|
361 |
|
362 |
-
#: breadcrumb_navxt_admin.php:
|
363 |
msgid "Tag Anchor"
|
364 |
msgstr "Tagg Länk"
|
365 |
|
366 |
-
#: breadcrumb_navxt_admin.php:
|
367 |
msgid "The anchor template for tag breadcrumbs."
|
368 |
msgstr "Länk mall för tagg breadcrumbs."
|
369 |
|
370 |
-
#: breadcrumb_navxt_admin.php:
|
371 |
msgid "Archive by Tag Prefix"
|
372 |
msgstr "Arkiv av Tagg Prefix"
|
373 |
|
374 |
-
#: breadcrumb_navxt_admin.php:
|
375 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
376 |
msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
|
377 |
|
378 |
-
#: breadcrumb_navxt_admin.php:
|
379 |
msgid "Archive by Tag Suffix"
|
380 |
msgstr "Arkiv av Tagg Suffix"
|
381 |
|
382 |
-
#: breadcrumb_navxt_admin.php:
|
383 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
384 |
msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
|
385 |
|
386 |
-
#: breadcrumb_navxt_admin.php:
|
387 |
#, php-format
|
388 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
389 |
msgstr "Tillämpad innan länken på alla %s breadcrumbs."
|
390 |
|
391 |
-
#: breadcrumb_navxt_admin.php:
|
392 |
#, php-format
|
393 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
394 |
msgstr "Tillämpad efter länken på alla %s breadcrumbs."
|
395 |
|
396 |
-
#: breadcrumb_navxt_admin.php:
|
397 |
#, php-format
|
398 |
msgid "Archive by %s Prefix"
|
399 |
msgstr "Arkiv av %s Prefix"
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
#, php-format
|
403 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
404 |
msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
|
405 |
|
406 |
-
#: breadcrumb_navxt_admin.php:
|
407 |
#, php-format
|
408 |
msgid "Archive by %s Suffix"
|
409 |
msgstr "Arkiv av %s Suffix"
|
410 |
|
411 |
-
#: breadcrumb_navxt_admin.php:
|
412 |
#, php-format
|
413 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
414 |
msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
|
415 |
|
416 |
-
#: breadcrumb_navxt_admin.php:
|
417 |
msgid "Date Archives"
|
418 |
msgstr "Datum Arkiv"
|
419 |
|
420 |
-
#: breadcrumb_navxt_admin.php:
|
421 |
msgid "Date Anchor"
|
422 |
msgstr "Datum länk"
|
423 |
|
424 |
-
#: breadcrumb_navxt_admin.php:
|
425 |
msgid "The anchor template for date breadcrumbs."
|
426 |
msgstr "Länk mall för datum breadcrumbs."
|
427 |
|
428 |
-
#: breadcrumb_navxt_admin.php:
|
429 |
msgid "Archive by Date Prefix"
|
430 |
msgstr "Arkiv av datum Prefix"
|
431 |
|
432 |
-
#: breadcrumb_navxt_admin.php:
|
433 |
msgid "Applied before the anchor on all date breadcrumbs."
|
434 |
msgstr "Tillämpad innan länken på alla datum breadcrumbs."
|
435 |
|
436 |
-
#: breadcrumb_navxt_admin.php:
|
437 |
msgid "Archive by Date Suffix"
|
438 |
msgstr "Arkiv av daum suffix"
|
439 |
|
440 |
-
#: breadcrumb_navxt_admin.php:
|
441 |
msgid "Applied after the anchor on all date breadcrumbs."
|
442 |
msgstr "Tillämpad efter länken på alla datum breadcrumbs."
|
443 |
|
444 |
-
#: breadcrumb_navxt_admin.php:
|
445 |
msgid "Miscellaneous"
|
446 |
msgstr "Diverse"
|
447 |
|
448 |
-
#: breadcrumb_navxt_admin.php:
|
449 |
msgid "Author Prefix"
|
450 |
msgstr "Författar Prefix"
|
451 |
|
452 |
-
#: breadcrumb_navxt_admin.php:
|
453 |
msgid "Author Suffix"
|
454 |
msgstr "Författar Suffix"
|
455 |
|
456 |
-
#: breadcrumb_navxt_admin.php:
|
457 |
msgid "Author Display Format"
|
458 |
msgstr "Författar visnings format"
|
459 |
|
460 |
-
#: breadcrumb_navxt_admin.php:
|
461 |
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."
|
462 |
msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
|
463 |
|
464 |
-
#: breadcrumb_navxt_admin.php:
|
465 |
msgid "Search Prefix"
|
466 |
msgstr "Sök Prefix"
|
467 |
|
468 |
-
#: breadcrumb_navxt_admin.php:
|
469 |
msgid "Search Suffix"
|
470 |
msgstr "Sök Suffix"
|
471 |
|
472 |
-
#: breadcrumb_navxt_admin.php:
|
473 |
msgid "Search Anchor"
|
474 |
msgstr "Sök Länk"
|
475 |
|
476 |
-
#: breadcrumb_navxt_admin.php:
|
477 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
478 |
msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
|
479 |
|
480 |
-
#: breadcrumb_navxt_admin.php:
|
481 |
msgid "404 Title"
|
482 |
msgstr "404 Titel"
|
483 |
|
484 |
-
#: breadcrumb_navxt_admin.php:
|
485 |
msgid "404 Prefix"
|
486 |
msgstr "404 Prefix"
|
487 |
|
488 |
-
#: breadcrumb_navxt_admin.php:
|
489 |
msgid "404 Suffix"
|
490 |
msgstr "404 Suffix"
|
491 |
|
492 |
-
#: breadcrumb_navxt_admin.php:
|
493 |
msgid "Save Changes"
|
494 |
msgstr "Spara ändringar"
|
495 |
|
496 |
-
#: breadcrumb_navxt_class.php:
|
497 |
msgid "Blog"
|
498 |
msgstr "Blogg"
|
499 |
|
500 |
-
#: breadcrumb_navxt_class.php:
|
501 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
502 |
msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
|
503 |
|
504 |
-
#: breadcrumb_navxt_class.php:
|
505 |
msgid "404"
|
506 |
msgstr "404"
|
507 |
|
508 |
-
#: breadcrumb_navxt_class.php:
|
509 |
msgid "Search results for '"
|
510 |
msgstr "Sök resultat för '"
|
511 |
|
512 |
-
#: breadcrumb_navxt_class.php:
|
513 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
514 |
msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
|
515 |
|
516 |
-
#: breadcrumb_navxt_class.php:
|
517 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
518 |
msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
|
519 |
|
520 |
-
#: breadcrumb_navxt_class.php:
|
521 |
msgid "Articles by: "
|
522 |
msgstr "Artiklar av:"
|
523 |
|
524 |
-
#: breadcrumb_navxt_class.php:
|
525 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
526 |
msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
|
527 |
|
528 |
-
#: breadcrumb_navxt_class.php:
|
529 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
530 |
msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
|
531 |
|
532 |
-
#: breadcrumb_navxt_class.php:
|
533 |
msgid "Archive by category '"
|
534 |
msgstr "Arkiv av kategorin '"
|
535 |
|
536 |
-
#: breadcrumb_navxt_class.php:
|
537 |
msgid "Archive by tag '"
|
538 |
msgstr "Arkiv av tagg '"
|
539 |
|
540 |
-
#: breadcrumb_navxt_class.php:
|
541 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
542 |
msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
|
543 |
|
544 |
-
#: breadcrumb_navxt_class.php:
|
545 |
-
|
546 |
-
|
|
|
547 |
|
548 |
#: breadcrumb_navxt_widget.php:24
|
549 |
msgid "Adds a breadcrumb trail to your sidebar"
|
@@ -569,73 +636,91 @@ msgstr "Omvänd ordning i breadcrumb"
|
|
569 |
msgid "Hide the trail on the front page"
|
570 |
msgstr "Göm spåret på förstasidan"
|
571 |
|
572 |
-
#: mtekk_admin_class.php:
|
573 |
msgid "Undo"
|
574 |
msgstr "Ångra"
|
575 |
|
576 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
577 |
msgid "Settings"
|
578 |
msgstr "Inställningar"
|
579 |
|
580 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
msgid "Settings successfully imported from the uploaded file."
|
582 |
msgstr "Inställningarna importerades framgångsrikt från filen."
|
583 |
|
584 |
-
#: mtekk_admin_class.php:
|
585 |
msgid "Undo the options import."
|
586 |
msgstr "Ångra inställnings importeringen."
|
587 |
|
588 |
-
#: mtekk_admin_class.php:
|
589 |
msgid "Importing settings from file failed."
|
590 |
msgstr "Importering av inställningar från fil misslyckades."
|
591 |
|
592 |
-
#: mtekk_admin_class.php:
|
593 |
msgid "Settings successfully reset to the default values."
|
594 |
msgstr "Inställningarna återställdes till standardvärdena."
|
595 |
|
596 |
-
#: mtekk_admin_class.php:
|
597 |
msgid "Undo the options reset."
|
598 |
msgstr "Ångra inställnings återställningen."
|
599 |
|
600 |
-
#: mtekk_admin_class.php:
|
601 |
msgid "Settings successfully undid the last operation."
|
602 |
msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
|
603 |
|
604 |
-
#: mtekk_admin_class.php:
|
605 |
msgid "Undo the last undo operation."
|
606 |
msgstr "Ångra senaste operationen."
|
607 |
|
608 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
609 |
#, php-format
|
610 |
msgid "Get help with \"%s\""
|
611 |
msgstr "Få hjälp med \"%s\""
|
612 |
|
613 |
-
#: mtekk_admin_class.php:
|
614 |
msgid "Import/Export/Reset Settings"
|
615 |
msgstr "Importera/Exportera/Återställ inställningar"
|
616 |
|
617 |
-
#: mtekk_admin_class.php:
|
618 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
619 |
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."
|
620 |
|
621 |
-
#: mtekk_admin_class.php:
|
622 |
msgid "Settings File"
|
623 |
msgstr "Inställnings fil"
|
624 |
|
625 |
-
#: mtekk_admin_class.php:
|
626 |
msgid "Select a XML settings file to upload and import settings from."
|
627 |
msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
|
628 |
|
|
|
|
|
629 |
#~ msgid ""
|
630 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
631 |
#~ "the default values. Are you sure you want to continue?"
|
632 |
#~ msgstr ""
|
633 |
#~ "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna "
|
634 |
#~ "med standardvärden. Är du säker på att du vill fortsätta?"
|
635 |
-
|
636 |
#~ msgid ""
|
637 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
638 |
#~ "the imported values. Are you sure you want to continue?"
|
639 |
#~ msgstr ""
|
640 |
#~ "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna "
|
641 |
#~ "med importerade värden. Är du säker på att du vill fortsätta?"
|
|
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-11-19 01:50+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-11-20 18:03+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"
|
10 |
"Content-Type: text/plain; charset=UTF-8\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:29
|
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:106
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr "Otillräcklig privilegier för att fortsätta."
|
25 |
|
26 |
+
#: breadcrumb_navxt_admin.php:211
|
27 |
+
#: breadcrumb_navxt_class.php:203
|
28 |
+
msgid "Home"
|
29 |
+
msgstr "Hem"
|
30 |
+
|
31 |
+
#: breadcrumb_navxt_admin.php:213
|
32 |
+
#: breadcrumb_navxt_admin.php:554
|
33 |
+
#: breadcrumb_navxt_admin.php:745
|
34 |
+
#: breadcrumb_navxt_class.php:126
|
35 |
+
#: breadcrumb_navxt_class.php:205
|
36 |
+
#: breadcrumb_navxt_class.php:215
|
37 |
+
#: breadcrumb_navxt_class.php:219
|
38 |
+
#: breadcrumb_navxt_class.php:243
|
39 |
+
#: breadcrumb_navxt_class.php:259
|
40 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
41 |
msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">"
|
42 |
|
43 |
+
#: breadcrumb_navxt_admin.php:292
|
44 |
msgid "Settings successfully saved."
|
45 |
msgstr "Inställningarna sparade."
|
46 |
|
47 |
+
#: breadcrumb_navxt_admin.php:292
|
48 |
msgid "Undo the options save."
|
49 |
msgstr "Ångra sparade inställningar."
|
50 |
|
51 |
+
#: breadcrumb_navxt_admin.php:313
|
52 |
#, php-format
|
53 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
54 |
msgstr "Tips för inställningarna finns under alternativen. Referera till % sdocumentation%s för mer information."
|
55 |
|
56 |
+
#: breadcrumb_navxt_admin.php:314
|
57 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
58 |
msgstr "Gå till Breadcrumb NavXT online dokumentation"
|
59 |
|
60 |
+
#: breadcrumb_navxt_admin.php:315
|
61 |
+
msgid "Quick Start Information"
|
62 |
+
msgstr "Snabbstart"
|
63 |
+
|
64 |
+
#: breadcrumb_navxt_admin.php:315
|
65 |
+
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
66 |
+
msgstr "För inställningarna på den här sidan att börja gälla måste du antingen använda den medföljande Breadcrumb NavXT widget, eller placera koden snutten nedan i ditt tema."
|
67 |
+
|
68 |
+
#: breadcrumb_navxt_admin.php:316
|
69 |
+
msgid "Breadcrumb trail with separators"
|
70 |
+
msgstr "Breadcrumb spår med separator"
|
71 |
+
|
72 |
+
#: breadcrumb_navxt_admin.php:317
|
73 |
+
msgid "Breadcrumb trail in list form"
|
74 |
+
msgstr "Breadcrumb spår i list form"
|
75 |
+
|
76 |
+
#: breadcrumb_navxt_admin.php:398
|
77 |
+
#: mtekk_admin_class.php:482
|
78 |
msgid "Import"
|
79 |
msgstr "Importera"
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:398
|
82 |
+
#: mtekk_admin_class.php:483
|
83 |
msgid "Export"
|
84 |
msgstr "Exportera"
|
85 |
|
86 |
+
#: breadcrumb_navxt_admin.php:398
|
87 |
+
#: mtekk_admin_class.php:484
|
88 |
msgid "Reset"
|
89 |
msgstr "Återställ"
|
90 |
|
91 |
+
#: breadcrumb_navxt_admin.php:419
|
92 |
msgid "Breadcrumb NavXT Settings"
|
93 |
msgstr "Breadcrumb NavXT Inställningar"
|
94 |
|
95 |
+
#: breadcrumb_navxt_admin.php:427
|
96 |
msgid "General"
|
97 |
msgstr "Allmänt"
|
98 |
|
99 |
+
#: breadcrumb_navxt_admin.php:430
|
100 |
msgid "Breadcrumb Separator"
|
101 |
msgstr "Breadcrumb separator"
|
102 |
|
103 |
+
#: breadcrumb_navxt_admin.php:430
|
104 |
msgid "Placed in between each breadcrumb."
|
105 |
msgstr "Placeras i mellan varje breadcrumb."
|
106 |
|
107 |
+
#: breadcrumb_navxt_admin.php:431
|
108 |
msgid "Breadcrumb Max Title Length"
|
109 |
msgstr "Breadcrumb max titel längd"
|
110 |
|
111 |
+
#: breadcrumb_navxt_admin.php:435
|
112 |
msgid "Home Breadcrumb"
|
113 |
msgstr "Hem Breadcrumb"
|
114 |
|
115 |
+
#: breadcrumb_navxt_admin.php:440
|
116 |
msgid "Place the home breadcrumb in the trail."
|
117 |
msgstr "Placera hem breadcrumb i spåret."
|
118 |
|
119 |
+
#: breadcrumb_navxt_admin.php:445
|
120 |
msgid "Home Title: "
|
121 |
msgstr "Hem titel: "
|
122 |
|
123 |
+
#: breadcrumb_navxt_admin.php:453
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid "Home Prefix"
|
125 |
msgstr "Hem Prefix"
|
126 |
|
127 |
+
#: breadcrumb_navxt_admin.php:454
|
128 |
msgid "Home Suffix"
|
129 |
msgstr "hem Suffix"
|
130 |
|
131 |
+
#: breadcrumb_navxt_admin.php:455
|
132 |
msgid "Home Anchor"
|
133 |
msgstr "Hem Länk "
|
134 |
|
135 |
+
#: breadcrumb_navxt_admin.php:455
|
136 |
msgid "The anchor template for the home breadcrumb."
|
137 |
msgstr "Länk mall för hem breadcrumb."
|
138 |
|
139 |
+
#: breadcrumb_navxt_admin.php:456
|
140 |
+
msgid "Blog Breadcrumb"
|
141 |
+
msgstr "Blogg breadcrumb"
|
142 |
+
|
143 |
+
#: breadcrumb_navxt_admin.php:456
|
144 |
+
msgid "Place the blog breadcrumb in the trail."
|
145 |
+
msgstr "Placera blogg breadcrumb i spåret."
|
146 |
+
|
147 |
+
#: breadcrumb_navxt_admin.php:457
|
148 |
msgid "Blog Anchor"
|
149 |
msgstr "Blogg länk"
|
150 |
|
151 |
+
#: breadcrumb_navxt_admin.php:457
|
152 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
153 |
msgstr "Länk mall för blogg breadcrumb, används endast vid statisk framsida."
|
154 |
|
155 |
+
#: breadcrumb_navxt_admin.php:461
|
156 |
+
msgid "Main Site Breadcrumb"
|
157 |
+
msgstr "Huvudsidans Breadcrumb"
|
158 |
+
|
159 |
+
#: breadcrumb_navxt_admin.php:466
|
160 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
161 |
+
msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
|
162 |
+
|
163 |
+
#: breadcrumb_navxt_admin.php:471
|
164 |
+
msgid "Main Site Home Title: "
|
165 |
+
msgstr "Huvudsidans hem titel: "
|
166 |
+
|
167 |
+
#: breadcrumb_navxt_admin.php:479
|
168 |
+
msgid "Main Site Home Prefix"
|
169 |
+
msgstr "Huvudsidans hem Prefix"
|
170 |
+
|
171 |
+
#: breadcrumb_navxt_admin.php:479
|
172 |
+
#: breadcrumb_navxt_admin.php:480
|
173 |
+
msgid "Used for the main site home breadcrumb in an multisite setup"
|
174 |
+
msgstr "Används för huvudsidans hem breadcrumb i en multisite"
|
175 |
+
|
176 |
+
#: breadcrumb_navxt_admin.php:480
|
177 |
+
msgid "Main Site Home Suffix"
|
178 |
+
msgstr "Huvudsidans hem Suffix"
|
179 |
+
|
180 |
+
#: breadcrumb_navxt_admin.php:481
|
181 |
+
msgid "Main Site Home Anchor"
|
182 |
+
msgstr "Huvudsidans hem Länk "
|
183 |
+
|
184 |
+
#: breadcrumb_navxt_admin.php:481
|
185 |
+
msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
|
186 |
+
msgstr "Länk mall för huvudsidans hem, används endast i multisite."
|
187 |
+
|
188 |
+
#: breadcrumb_navxt_admin.php:486
|
189 |
msgid "Current Item"
|
190 |
msgstr "Nuvarande punkt"
|
191 |
|
192 |
+
#: breadcrumb_navxt_admin.php:489
|
193 |
msgid "Link Current Item"
|
194 |
msgstr "Länk Nuvarande punkt"
|
195 |
|
196 |
+
#: breadcrumb_navxt_admin.php:489
|
197 |
msgid "Yes"
|
198 |
msgstr "Ja"
|
199 |
|
200 |
+
#: breadcrumb_navxt_admin.php:490
|
201 |
msgid "Current Item Prefix"
|
202 |
msgstr "Nuvarande punkt Prefix"
|
203 |
|
204 |
+
#: breadcrumb_navxt_admin.php:490
|
205 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
206 |
msgstr "Detta placeras alltid framför den sista breadcrumb i spåret, innan någon annan prefix för den breadcrumb."
|
207 |
|
208 |
+
#: breadcrumb_navxt_admin.php:491
|
209 |
msgid "Current Item Suffix"
|
210 |
msgstr "Nuvarande punkt Suffix"
|
211 |
|
212 |
+
#: breadcrumb_navxt_admin.php:491
|
213 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
214 |
msgstr "Denna är alltid placerad efter den sista breadcrumb i spåret, och efter något annat prefix för den breadcrumb."
|
215 |
|
216 |
+
#: breadcrumb_navxt_admin.php:492
|
217 |
msgid "Current Item Anchor"
|
218 |
msgstr "Nuvarande punkt Länk"
|
219 |
|
220 |
+
#: breadcrumb_navxt_admin.php:492
|
221 |
msgid "The anchor template for current item breadcrumbs."
|
222 |
msgstr "Länk mall för nuvarande punkt breadcrumbs."
|
223 |
|
224 |
+
#: breadcrumb_navxt_admin.php:493
|
225 |
msgid "Paged Breadcrumb"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: breadcrumb_navxt_admin.php:493
|
229 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
230 |
msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
|
231 |
|
232 |
+
#: breadcrumb_navxt_admin.php:493
|
233 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
234 |
msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
|
235 |
|
236 |
+
#: breadcrumb_navxt_admin.php:494
|
237 |
msgid "Paged Prefix"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: breadcrumb_navxt_admin.php:495
|
241 |
msgid "Paged Suffix"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: breadcrumb_navxt_admin.php:500
|
245 |
msgid "Posts & Pages"
|
246 |
msgstr "Inlägg & Sidor"
|
247 |
|
248 |
+
#: breadcrumb_navxt_admin.php:503
|
249 |
msgid "Post Prefix"
|
250 |
msgstr "Inläggs Prefix"
|
251 |
|
252 |
+
#: breadcrumb_navxt_admin.php:504
|
253 |
msgid "Post Suffix"
|
254 |
msgstr "Inläggs Suffix"
|
255 |
|
256 |
+
#: breadcrumb_navxt_admin.php:505
|
257 |
msgid "Post Anchor"
|
258 |
msgstr "Inläggs Länk"
|
259 |
|
260 |
+
#: breadcrumb_navxt_admin.php:505
|
261 |
msgid "The anchor template for post breadcrumbs."
|
262 |
msgstr "Länk mall för inläggs breadcrumbs."
|
263 |
|
264 |
+
#: breadcrumb_navxt_admin.php:506
|
265 |
msgid "Post Taxonomy Display"
|
266 |
msgstr "Inläggs taxonomi visning"
|
267 |
|
268 |
+
#: breadcrumb_navxt_admin.php:506
|
269 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
270 |
msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
|
271 |
|
272 |
+
#: breadcrumb_navxt_admin.php:510
|
273 |
msgid "Post Taxonomy"
|
274 |
msgstr "Inäggs taxonomi"
|
275 |
|
276 |
+
#: breadcrumb_navxt_admin.php:514
|
277 |
+
#: breadcrumb_navxt_admin.php:631
|
278 |
msgid "Categories"
|
279 |
msgstr "Kategorier"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:515
|
282 |
msgid "Dates"
|
283 |
msgstr "Datum"
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:516
|
286 |
+
#: breadcrumb_navxt_admin.php:643
|
287 |
msgid "Tags"
|
288 |
msgstr "Taggar"
|
289 |
|
290 |
+
#: breadcrumb_navxt_admin.php:517
|
291 |
+
#: breadcrumb_navxt_admin.php:610
|
292 |
msgid "Pages"
|
293 |
msgstr "Sidor"
|
294 |
|
295 |
+
#: breadcrumb_navxt_admin.php:528
|
296 |
+
#: breadcrumb_navxt_admin.php:621
|
297 |
msgid "The taxonomy which the breadcrumb trail will show."
|
298 |
msgstr "Den taxonomi som breadcrumb kommer att visa."
|
299 |
|
300 |
+
#: breadcrumb_navxt_admin.php:532
|
301 |
msgid "Page Prefix"
|
302 |
msgstr "Sido Prefix"
|
303 |
|
304 |
+
#: breadcrumb_navxt_admin.php:533
|
305 |
msgid "Page Suffix"
|
306 |
msgstr "Sido Suffix"
|
307 |
|
308 |
+
#: breadcrumb_navxt_admin.php:534
|
309 |
msgid "Page Anchor"
|
310 |
msgstr "Sido Länk"
|
311 |
|
312 |
+
#: breadcrumb_navxt_admin.php:534
|
313 |
msgid "The anchor template for page breadcrumbs."
|
314 |
msgstr "Länk mall för sido breadcrumbs."
|
315 |
|
316 |
+
#: breadcrumb_navxt_admin.php:535
|
317 |
msgid "Attachment Prefix"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: breadcrumb_navxt_admin.php:536
|
321 |
msgid "Attachment Suffix"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: breadcrumb_navxt_admin.php:585
|
325 |
+
#: breadcrumb_navxt_admin.php:679
|
326 |
#, php-format
|
327 |
msgid "%s Prefix"
|
328 |
msgstr "%s Prefix"
|
329 |
|
330 |
+
#: breadcrumb_navxt_admin.php:586
|
331 |
+
#: breadcrumb_navxt_admin.php:680
|
332 |
#, php-format
|
333 |
msgid "%s Suffix"
|
334 |
msgstr "%s Suffix"
|
335 |
|
336 |
+
#: breadcrumb_navxt_admin.php:587
|
337 |
+
#: breadcrumb_navxt_admin.php:681
|
338 |
#, php-format
|
339 |
msgid "%s Anchor"
|
340 |
msgstr "%s Länk"
|
341 |
|
342 |
+
#: breadcrumb_navxt_admin.php:587
|
343 |
+
#: breadcrumb_navxt_admin.php:681
|
344 |
#, php-format
|
345 |
msgid "The anchor template for %s breadcrumbs."
|
346 |
msgstr "Länk mall för %s breadcrumbs."
|
347 |
|
348 |
+
#: breadcrumb_navxt_admin.php:592
|
349 |
+
#, php-format
|
350 |
+
msgid "%s Root Page"
|
351 |
+
msgstr "%s rotsida"
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:595
|
354 |
+
msgid "— Select —"
|
355 |
+
msgstr "— Välj —"
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:602
|
358 |
#, php-format
|
359 |
msgid "%s Taxonomy Display"
|
360 |
msgstr "%s Ttaxonomi visning"
|
361 |
|
362 |
+
#: breadcrumb_navxt_admin.php:602
|
363 |
#, php-format
|
364 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
365 |
msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
|
366 |
|
367 |
+
#: breadcrumb_navxt_admin.php:606
|
368 |
#, php-format
|
369 |
msgid "%s Taxonomy"
|
370 |
msgstr "%s Taxonomi"
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:634
|
373 |
msgid "Category Prefix"
|
374 |
msgstr "Kategori prefix"
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:634
|
377 |
msgid "Applied before the anchor on all category breadcrumbs."
|
378 |
msgstr "Tillämpad innan länken på alla kategori breadcrumb"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:635
|
381 |
msgid "Category Suffix"
|
382 |
msgstr "Kategori Suffix"
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:635
|
385 |
msgid "Applied after the anchor on all category breadcrumbs."
|
386 |
msgstr "Tillämpad efter länken på alla kategori breadcrumb"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:636
|
389 |
msgid "Category Anchor"
|
390 |
msgstr "Kategori länk"
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:636
|
393 |
msgid "The anchor template for category breadcrumbs."
|
394 |
msgstr "länk mall för kategori breadcrumbs"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:637
|
397 |
msgid "Archive by Category Prefix"
|
398 |
msgstr "Arkiv av kategori prefix"
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:637
|
401 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
402 |
msgstr "Tillämpas innan rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:638
|
405 |
msgid "Archive by Category Suffix"
|
406 |
msgstr "Arkiv av Kategori Suffix"
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:638
|
409 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
410 |
msgstr "Tillämpas efter rubriken på det aktuella breadcrumb på ett arkiv av kategori sida."
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:646
|
413 |
msgid "Tag Prefix"
|
414 |
msgstr "Tagg Prefix"
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:646
|
417 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
418 |
msgstr "Tillämpad innan länken på alla tagg breadcrumbs."
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:647
|
421 |
msgid "Tag Suffix"
|
422 |
msgstr "Tag Suffix"
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:647
|
425 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
426 |
msgstr "Tillämpad efter länken på alla tagg breadcrumbs."
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:648
|
429 |
msgid "Tag Anchor"
|
430 |
msgstr "Tagg Länk"
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:648
|
433 |
msgid "The anchor template for tag breadcrumbs."
|
434 |
msgstr "Länk mall för tagg breadcrumbs."
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:649
|
437 |
msgid "Archive by Tag Prefix"
|
438 |
msgstr "Arkiv av Tagg Prefix"
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:649
|
441 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
442 |
msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:650
|
445 |
msgid "Archive by Tag Suffix"
|
446 |
msgstr "Arkiv av Tagg Suffix"
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:650
|
449 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
450 |
msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med tagg sida."
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:679
|
453 |
#, php-format
|
454 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
455 |
msgstr "Tillämpad innan länken på alla %s breadcrumbs."
|
456 |
|
457 |
+
#: breadcrumb_navxt_admin.php:680
|
458 |
#, php-format
|
459 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
460 |
msgstr "Tillämpad efter länken på alla %s breadcrumbs."
|
461 |
|
462 |
+
#: breadcrumb_navxt_admin.php:682
|
463 |
#, php-format
|
464 |
msgid "Archive by %s Prefix"
|
465 |
msgstr "Arkiv av %s Prefix"
|
466 |
|
467 |
+
#: breadcrumb_navxt_admin.php:682
|
468 |
#, php-format
|
469 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
470 |
msgstr "Tillämpas innan rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:683
|
473 |
#, php-format
|
474 |
msgid "Archive by %s Suffix"
|
475 |
msgstr "Arkiv av %s Suffix"
|
476 |
|
477 |
+
#: breadcrumb_navxt_admin.php:683
|
478 |
#, php-format
|
479 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
480 |
msgstr "Tillämpas efter rubriken på den aktuella breadcrumb på ett arkiv med %s sida."
|
481 |
|
482 |
+
#: breadcrumb_navxt_admin.php:692
|
483 |
msgid "Date Archives"
|
484 |
msgstr "Datum Arkiv"
|
485 |
|
486 |
+
#: breadcrumb_navxt_admin.php:695
|
487 |
msgid "Date Anchor"
|
488 |
msgstr "Datum länk"
|
489 |
|
490 |
+
#: breadcrumb_navxt_admin.php:695
|
491 |
msgid "The anchor template for date breadcrumbs."
|
492 |
msgstr "Länk mall för datum breadcrumbs."
|
493 |
|
494 |
+
#: breadcrumb_navxt_admin.php:696
|
495 |
msgid "Archive by Date Prefix"
|
496 |
msgstr "Arkiv av datum Prefix"
|
497 |
|
498 |
+
#: breadcrumb_navxt_admin.php:696
|
499 |
msgid "Applied before the anchor on all date breadcrumbs."
|
500 |
msgstr "Tillämpad innan länken på alla datum breadcrumbs."
|
501 |
|
502 |
+
#: breadcrumb_navxt_admin.php:697
|
503 |
msgid "Archive by Date Suffix"
|
504 |
msgstr "Arkiv av daum suffix"
|
505 |
|
506 |
+
#: breadcrumb_navxt_admin.php:697
|
507 |
msgid "Applied after the anchor on all date breadcrumbs."
|
508 |
msgstr "Tillämpad efter länken på alla datum breadcrumbs."
|
509 |
|
510 |
+
#: breadcrumb_navxt_admin.php:702
|
511 |
msgid "Miscellaneous"
|
512 |
msgstr "Diverse"
|
513 |
|
514 |
+
#: breadcrumb_navxt_admin.php:705
|
515 |
msgid "Author Prefix"
|
516 |
msgstr "Författar Prefix"
|
517 |
|
518 |
+
#: breadcrumb_navxt_admin.php:706
|
519 |
msgid "Author Suffix"
|
520 |
msgstr "Författar Suffix"
|
521 |
|
522 |
+
#: breadcrumb_navxt_admin.php:707
|
523 |
msgid "Author Display Format"
|
524 |
msgstr "Författar visnings format"
|
525 |
|
526 |
+
#: breadcrumb_navxt_admin.php:707
|
527 |
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."
|
528 |
msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
|
529 |
|
530 |
+
#: breadcrumb_navxt_admin.php:708
|
531 |
msgid "Search Prefix"
|
532 |
msgstr "Sök Prefix"
|
533 |
|
534 |
+
#: breadcrumb_navxt_admin.php:709
|
535 |
msgid "Search Suffix"
|
536 |
msgstr "Sök Suffix"
|
537 |
|
538 |
+
#: breadcrumb_navxt_admin.php:710
|
539 |
msgid "Search Anchor"
|
540 |
msgstr "Sök Länk"
|
541 |
|
542 |
+
#: breadcrumb_navxt_admin.php:710
|
543 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
544 |
msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
|
545 |
|
546 |
+
#: breadcrumb_navxt_admin.php:711
|
547 |
msgid "404 Title"
|
548 |
msgstr "404 Titel"
|
549 |
|
550 |
+
#: breadcrumb_navxt_admin.php:712
|
551 |
msgid "404 Prefix"
|
552 |
msgstr "404 Prefix"
|
553 |
|
554 |
+
#: breadcrumb_navxt_admin.php:713
|
555 |
msgid "404 Suffix"
|
556 |
msgstr "404 Suffix"
|
557 |
|
558 |
+
#: breadcrumb_navxt_admin.php:718
|
559 |
msgid "Save Changes"
|
560 |
msgstr "Spara ändringar"
|
561 |
|
562 |
+
#: breadcrumb_navxt_class.php:213
|
563 |
msgid "Blog"
|
564 |
msgstr "Blogg"
|
565 |
|
566 |
+
#: breadcrumb_navxt_class.php:232
|
567 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
568 |
msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">"
|
569 |
|
570 |
+
#: breadcrumb_navxt_class.php:277
|
571 |
msgid "404"
|
572 |
msgstr "404"
|
573 |
|
574 |
+
#: breadcrumb_navxt_class.php:280
|
575 |
msgid "Search results for '"
|
576 |
msgstr "Sök resultat för '"
|
577 |
|
578 |
+
#: breadcrumb_navxt_class.php:284
|
579 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
580 |
msgstr "<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">"
|
581 |
|
582 |
+
#: breadcrumb_navxt_class.php:291
|
583 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
584 |
msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">"
|
585 |
|
586 |
+
#: breadcrumb_navxt_class.php:294
|
587 |
msgid "Articles by: "
|
588 |
msgstr "Artiklar av:"
|
589 |
|
590 |
+
#: breadcrumb_navxt_class.php:298
|
591 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
592 |
msgstr "<a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">"
|
593 |
|
594 |
+
#: breadcrumb_navxt_class.php:307
|
595 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
596 |
msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">"
|
597 |
|
598 |
+
#: breadcrumb_navxt_class.php:310
|
599 |
msgid "Archive by category '"
|
600 |
msgstr "Arkiv av kategorin '"
|
601 |
|
602 |
+
#: breadcrumb_navxt_class.php:314
|
603 |
msgid "Archive by tag '"
|
604 |
msgstr "Arkiv av tagg '"
|
605 |
|
606 |
+
#: breadcrumb_navxt_class.php:317
|
607 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
608 |
msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">"
|
609 |
|
610 |
+
#: breadcrumb_navxt_class.php:478
|
611 |
+
#, fuzzy
|
612 |
+
msgid "Un"
|
613 |
+
msgstr "Ångra"
|
614 |
|
615 |
#: breadcrumb_navxt_widget.php:24
|
616 |
msgid "Adds a breadcrumb trail to your sidebar"
|
636 |
msgid "Hide the trail on the front page"
|
637 |
msgstr "Göm spåret på förstasidan"
|
638 |
|
639 |
+
#: mtekk_admin_class.php:57
|
640 |
msgid "Undo"
|
641 |
msgstr "Ångra"
|
642 |
|
643 |
+
#: mtekk_admin_class.php:64
|
644 |
+
msgid "Migrate now."
|
645 |
+
msgstr "Migrera nu."
|
646 |
+
|
647 |
+
#: mtekk_admin_class.php:158
|
648 |
msgid "Settings"
|
649 |
msgstr "Inställningar"
|
650 |
|
651 |
+
#: mtekk_admin_class.php:186
|
652 |
+
msgid "Your settings are out of date."
|
653 |
+
msgstr "Dina inställningar är föråldrade."
|
654 |
+
|
655 |
+
#: mtekk_admin_class.php:186
|
656 |
+
msgid "Migrate the settings now."
|
657 |
+
msgstr "Migrera inställningarna nu."
|
658 |
+
|
659 |
+
#: mtekk_admin_class.php:299
|
660 |
msgid "Settings successfully imported from the uploaded file."
|
661 |
msgstr "Inställningarna importerades framgångsrikt från filen."
|
662 |
|
663 |
+
#: mtekk_admin_class.php:299
|
664 |
msgid "Undo the options import."
|
665 |
msgstr "Ångra inställnings importeringen."
|
666 |
|
667 |
+
#: mtekk_admin_class.php:304
|
668 |
msgid "Importing settings from file failed."
|
669 |
msgstr "Importering av inställningar från fil misslyckades."
|
670 |
|
671 |
+
#: mtekk_admin_class.php:323
|
672 |
msgid "Settings successfully reset to the default values."
|
673 |
msgstr "Inställningarna återställdes till standardvärdena."
|
674 |
|
675 |
+
#: mtekk_admin_class.php:323
|
676 |
msgid "Undo the options reset."
|
677 |
msgstr "Ångra inställnings återställningen."
|
678 |
|
679 |
+
#: mtekk_admin_class.php:340
|
680 |
msgid "Settings successfully undid the last operation."
|
681 |
msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
|
682 |
|
683 |
+
#: mtekk_admin_class.php:340
|
684 |
msgid "Undo the last undo operation."
|
685 |
msgstr "Ångra senaste operationen."
|
686 |
|
687 |
+
#: mtekk_admin_class.php:373
|
688 |
+
msgid "Settings successfully migrated."
|
689 |
+
msgstr "Inställningarna har migrerats."
|
690 |
+
|
691 |
+
#: mtekk_admin_class.php:403
|
692 |
#, php-format
|
693 |
msgid "Get help with \"%s\""
|
694 |
msgstr "Få hjälp med \"%s\""
|
695 |
|
696 |
+
#: mtekk_admin_class.php:473
|
697 |
msgid "Import/Export/Reset Settings"
|
698 |
msgstr "Importera/Exportera/Återställ inställningar"
|
699 |
|
700 |
+
#: mtekk_admin_class.php:474
|
701 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
702 |
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."
|
703 |
|
704 |
+
#: mtekk_admin_class.php:477
|
705 |
msgid "Settings File"
|
706 |
msgstr "Inställnings fil"
|
707 |
|
708 |
+
#: mtekk_admin_class.php:480
|
709 |
msgid "Select a XML settings file to upload and import settings from."
|
710 |
msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
|
711 |
|
712 |
+
#~ msgid "Untagged"
|
713 |
+
#~ msgstr "Otaggad"
|
714 |
#~ msgid ""
|
715 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
716 |
#~ "the default values. Are you sure you want to continue?"
|
717 |
#~ msgstr ""
|
718 |
#~ "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna "
|
719 |
#~ "med standardvärden. Är du säker på att du vill fortsätta?"
|
|
|
720 |
#~ msgid ""
|
721 |
#~ "All of your current Breadcrumb NavXT settings will be overwritten with "
|
722 |
#~ "the imported values. Are you sure you want to continue?"
|
723 |
#~ msgstr ""
|
724 |
#~ "Alla dina nuvarande Breadcrumb NavXT inställningar kommer bli överskrivna "
|
725 |
#~ "med importerade värden. Är du säker på att du vill fortsätta?"
|
726 |
+
|
languages/breadcrumb_navxt.mo
CHANGED
Binary file
|
languages/breadcrumb_navxt.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
5 |
-
"POT-Creation-Date: 2010-
|
6 |
-
"PO-Revision-Date: 2010-
|
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,535 +14,601 @@ 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 |
#, 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:
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: breadcrumb_navxt_admin.php:
|
27 |
-
#:
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
#:
|
32 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: breadcrumb_navxt_admin.php:
|
37 |
msgid "Settings successfully saved."
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: breadcrumb_navxt_admin.php:
|
41 |
msgid "Undo the options save."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: breadcrumb_navxt_admin.php:
|
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 ""
|
48 |
|
49 |
-
#: breadcrumb_navxt_admin.php:
|
50 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Import"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: breadcrumb_navxt_admin.php:
|
59 |
-
#: mtekk_admin_class.php:
|
60 |
msgid "Export"
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: breadcrumb_navxt_admin.php:
|
64 |
-
#: mtekk_admin_class.php:
|
65 |
msgid "Reset"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: breadcrumb_navxt_admin.php:
|
69 |
msgid "Breadcrumb NavXT Settings"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: breadcrumb_navxt_admin.php:
|
73 |
msgid "General"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: breadcrumb_navxt_admin.php:
|
77 |
msgid "Breadcrumb Separator"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: breadcrumb_navxt_admin.php:
|
81 |
msgid "Placed in between each breadcrumb."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: breadcrumb_navxt_admin.php:
|
85 |
msgid "Breadcrumb Max Title Length"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: breadcrumb_navxt_admin.php:
|
89 |
msgid "Home Breadcrumb"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: breadcrumb_navxt_admin.php:
|
93 |
msgid "Place the home breadcrumb in the trail."
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: breadcrumb_navxt_admin.php:
|
97 |
msgid "Home Title: "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: breadcrumb_navxt_admin.php:
|
101 |
-
msgid "Blog Breadcrumb"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: breadcrumb_navxt_admin.php:515
|
105 |
-
msgid "Place the blog breadcrumb in the trail."
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: breadcrumb_navxt_admin.php:516
|
109 |
msgid "Home Prefix"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: breadcrumb_navxt_admin.php:
|
113 |
msgid "Home Suffix"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: breadcrumb_navxt_admin.php:
|
117 |
msgid "Home Anchor"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: breadcrumb_navxt_admin.php:
|
121 |
msgid "The anchor template for the home breadcrumb."
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
125 |
msgid "Blog Anchor"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: breadcrumb_navxt_admin.php:
|
129 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Current Item"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: breadcrumb_navxt_admin.php:
|
137 |
msgid "Link Current Item"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: breadcrumb_navxt_admin.php:
|
141 |
msgid "Yes"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: breadcrumb_navxt_admin.php:
|
145 |
msgid "Current Item Prefix"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: breadcrumb_navxt_admin.php:
|
149 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: breadcrumb_navxt_admin.php:
|
153 |
msgid "Current Item Suffix"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: breadcrumb_navxt_admin.php:
|
157 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: breadcrumb_navxt_admin.php:
|
161 |
msgid "Current Item Anchor"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: breadcrumb_navxt_admin.php:
|
165 |
msgid "The anchor template for current item breadcrumbs."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: breadcrumb_navxt_admin.php:
|
169 |
msgid "Paged Breadcrumb"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: breadcrumb_navxt_admin.php:
|
173 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: breadcrumb_navxt_admin.php:
|
177 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: breadcrumb_navxt_admin.php:
|
181 |
msgid "Paged Prefix"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: breadcrumb_navxt_admin.php:
|
185 |
msgid "Paged Suffix"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: breadcrumb_navxt_admin.php:
|
189 |
msgid "Posts & Pages"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: breadcrumb_navxt_admin.php:
|
193 |
msgid "Post Prefix"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: breadcrumb_navxt_admin.php:
|
197 |
msgid "Post Suffix"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: breadcrumb_navxt_admin.php:
|
201 |
msgid "Post Anchor"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: breadcrumb_navxt_admin.php:
|
205 |
msgid "The anchor template for post breadcrumbs."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: breadcrumb_navxt_admin.php:
|
209 |
msgid "Post Taxonomy Display"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: breadcrumb_navxt_admin.php:
|
213 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: breadcrumb_navxt_admin.php:
|
217 |
msgid "Post Taxonomy"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: breadcrumb_navxt_admin.php:
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Categories"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Dates"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
-
#: breadcrumb_navxt_admin.php:
|
231 |
msgid "Tags"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
235 |
msgid "Pages"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: breadcrumb_navxt_admin.php:
|
239 |
-
#: breadcrumb_navxt_admin.php:
|
240 |
msgid "The taxonomy which the breadcrumb trail will show."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: breadcrumb_navxt_admin.php:
|
244 |
msgid "Page Prefix"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: breadcrumb_navxt_admin.php:
|
248 |
msgid "Page Suffix"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: breadcrumb_navxt_admin.php:
|
252 |
msgid "Page Anchor"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: breadcrumb_navxt_admin.php:
|
256 |
msgid "The anchor template for page breadcrumbs."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: breadcrumb_navxt_admin.php:
|
260 |
msgid "Attachment Prefix"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: breadcrumb_navxt_admin.php:
|
264 |
msgid "Attachment Suffix"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: breadcrumb_navxt_admin.php:
|
268 |
-
#: breadcrumb_navxt_admin.php:
|
269 |
#, php-format
|
270 |
msgid "%s Prefix"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: breadcrumb_navxt_admin.php:
|
274 |
-
#: breadcrumb_navxt_admin.php:
|
275 |
#, php-format
|
276 |
msgid "%s Suffix"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: breadcrumb_navxt_admin.php:
|
280 |
-
#: breadcrumb_navxt_admin.php:
|
281 |
#, php-format
|
282 |
msgid "%s Anchor"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
-
#: breadcrumb_navxt_admin.php:
|
287 |
#, php-format
|
288 |
msgid "The anchor template for %s breadcrumbs."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: breadcrumb_navxt_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
#, php-format
|
293 |
msgid "%s Taxonomy Display"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: breadcrumb_navxt_admin.php:
|
297 |
#, php-format
|
298 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
#, php-format
|
303 |
msgid "%s Taxonomy"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: breadcrumb_navxt_admin.php:
|
307 |
msgid "Category Prefix"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: breadcrumb_navxt_admin.php:
|
311 |
msgid "Applied before the anchor on all category breadcrumbs."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: breadcrumb_navxt_admin.php:
|
315 |
msgid "Category Suffix"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: breadcrumb_navxt_admin.php:
|
319 |
msgid "Applied after the anchor on all category breadcrumbs."
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: breadcrumb_navxt_admin.php:
|
323 |
msgid "Category Anchor"
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: breadcrumb_navxt_admin.php:
|
327 |
msgid "The anchor template for category breadcrumbs."
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: breadcrumb_navxt_admin.php:
|
331 |
msgid "Archive by Category Prefix"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: breadcrumb_navxt_admin.php:
|
335 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: breadcrumb_navxt_admin.php:
|
339 |
msgid "Archive by Category Suffix"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: breadcrumb_navxt_admin.php:
|
343 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: breadcrumb_navxt_admin.php:
|
347 |
msgid "Tag Prefix"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: breadcrumb_navxt_admin.php:
|
351 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: breadcrumb_navxt_admin.php:
|
355 |
msgid "Tag Suffix"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: breadcrumb_navxt_admin.php:
|
359 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: breadcrumb_navxt_admin.php:
|
363 |
msgid "Tag Anchor"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: breadcrumb_navxt_admin.php:
|
367 |
msgid "The anchor template for tag breadcrumbs."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: breadcrumb_navxt_admin.php:
|
371 |
msgid "Archive by Tag Prefix"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: breadcrumb_navxt_admin.php:
|
375 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: breadcrumb_navxt_admin.php:
|
379 |
msgid "Archive by Tag Suffix"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: breadcrumb_navxt_admin.php:
|
383 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: breadcrumb_navxt_admin.php:
|
387 |
#, php-format
|
388 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: breadcrumb_navxt_admin.php:
|
392 |
#, php-format
|
393 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: breadcrumb_navxt_admin.php:
|
397 |
#, php-format
|
398 |
msgid "Archive by %s Prefix"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
#, php-format
|
403 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: breadcrumb_navxt_admin.php:
|
407 |
#, php-format
|
408 |
msgid "Archive by %s Suffix"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: breadcrumb_navxt_admin.php:
|
412 |
#, php-format
|
413 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: breadcrumb_navxt_admin.php:
|
417 |
msgid "Date Archives"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: breadcrumb_navxt_admin.php:
|
421 |
msgid "Date Anchor"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: breadcrumb_navxt_admin.php:
|
425 |
msgid "The anchor template for date breadcrumbs."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: breadcrumb_navxt_admin.php:
|
429 |
msgid "Archive by Date Prefix"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: breadcrumb_navxt_admin.php:
|
433 |
msgid "Applied before the anchor on all date breadcrumbs."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: breadcrumb_navxt_admin.php:
|
437 |
msgid "Archive by Date Suffix"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: breadcrumb_navxt_admin.php:
|
441 |
msgid "Applied after the anchor on all date breadcrumbs."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: breadcrumb_navxt_admin.php:
|
445 |
msgid "Miscellaneous"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: breadcrumb_navxt_admin.php:
|
449 |
msgid "Author Prefix"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: breadcrumb_navxt_admin.php:
|
453 |
msgid "Author Suffix"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: breadcrumb_navxt_admin.php:
|
457 |
msgid "Author Display Format"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: breadcrumb_navxt_admin.php:
|
461 |
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."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: breadcrumb_navxt_admin.php:
|
465 |
msgid "Search Prefix"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: breadcrumb_navxt_admin.php:
|
469 |
msgid "Search Suffix"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: breadcrumb_navxt_admin.php:
|
473 |
msgid "Search Anchor"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: breadcrumb_navxt_admin.php:
|
477 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: breadcrumb_navxt_admin.php:
|
481 |
msgid "404 Title"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: breadcrumb_navxt_admin.php:
|
485 |
msgid "404 Prefix"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: breadcrumb_navxt_admin.php:
|
489 |
msgid "404 Suffix"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: breadcrumb_navxt_admin.php:
|
493 |
msgid "Save Changes"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: breadcrumb_navxt_class.php:
|
497 |
msgid "Blog"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: breadcrumb_navxt_class.php:
|
501 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: breadcrumb_navxt_class.php:
|
505 |
msgid "404"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: breadcrumb_navxt_class.php:
|
509 |
msgid "Search results for '"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: breadcrumb_navxt_class.php:
|
513 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: breadcrumb_navxt_class.php:
|
517 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: breadcrumb_navxt_class.php:
|
521 |
msgid "Articles by: "
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: breadcrumb_navxt_class.php:
|
525 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: breadcrumb_navxt_class.php:
|
529 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: breadcrumb_navxt_class.php:
|
533 |
msgid "Archive by category '"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: breadcrumb_navxt_class.php:
|
537 |
msgid "Archive by tag '"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: breadcrumb_navxt_class.php:
|
541 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: breadcrumb_navxt_class.php:
|
545 |
-
msgid "
|
546 |
msgstr ""
|
547 |
|
548 |
#: breadcrumb_navxt_widget.php:24
|
@@ -569,60 +635,76 @@ msgstr ""
|
|
569 |
msgid "Hide the trail on the front page"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: mtekk_admin_class.php:
|
573 |
msgid "Undo"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
577 |
msgid "Settings"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
msgid "Settings successfully imported from the uploaded file."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: mtekk_admin_class.php:
|
585 |
msgid "Undo the options import."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: mtekk_admin_class.php:
|
589 |
msgid "Importing settings from file failed."
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: mtekk_admin_class.php:
|
593 |
msgid "Settings successfully reset to the default values."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: mtekk_admin_class.php:
|
597 |
msgid "Undo the options reset."
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: mtekk_admin_class.php:
|
601 |
msgid "Settings successfully undid the last operation."
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: mtekk_admin_class.php:
|
605 |
msgid "Undo the last undo operation."
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: mtekk_admin_class.php:
|
|
|
|
|
|
|
|
|
609 |
#, php-format
|
610 |
msgid "Get help with \"%s\""
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: mtekk_admin_class.php:
|
614 |
msgid "Import/Export/Reset Settings"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: mtekk_admin_class.php:
|
618 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: mtekk_admin_class.php:
|
622 |
msgid "Settings File"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: mtekk_admin_class.php:
|
626 |
msgid "Select a XML settings file to upload and import settings from."
|
627 |
msgstr ""
|
628 |
|
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-11-19 01:50+0000\n"
|
6 |
+
"PO-Revision-Date: 2010-11-18 19:51-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:29
|
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:106
|
23 |
msgid "Insufficient privileges to proceed."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: breadcrumb_navxt_admin.php:211
|
27 |
+
#: breadcrumb_navxt_class.php:203
|
28 |
+
msgid "Home"
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: breadcrumb_navxt_admin.php:213
|
32 |
+
#: breadcrumb_navxt_admin.php:554
|
33 |
+
#: breadcrumb_navxt_admin.php:745
|
34 |
+
#: breadcrumb_navxt_class.php:126
|
35 |
+
#: breadcrumb_navxt_class.php:205
|
36 |
+
#: breadcrumb_navxt_class.php:215
|
37 |
+
#: breadcrumb_navxt_class.php:219
|
38 |
+
#: breadcrumb_navxt_class.php:243
|
39 |
+
#: breadcrumb_navxt_class.php:259
|
40 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: breadcrumb_navxt_admin.php:292
|
44 |
msgid "Settings successfully saved."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: breadcrumb_navxt_admin.php:292
|
48 |
msgid "Undo the options save."
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: breadcrumb_navxt_admin.php:313
|
52 |
#, php-format
|
53 |
msgid "Tips for the settings are located below select options. Please refer to the %sdocumentation%s for more information."
|
54 |
msgstr ""
|
55 |
|
56 |
+
#: breadcrumb_navxt_admin.php:314
|
57 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: breadcrumb_navxt_admin.php:315
|
61 |
+
msgid "Quick Start Information"
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: breadcrumb_navxt_admin.php:315
|
65 |
+
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: breadcrumb_navxt_admin.php:316
|
69 |
+
msgid "Breadcrumb trail with separators"
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: breadcrumb_navxt_admin.php:317
|
73 |
+
msgid "Breadcrumb trail in list form"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: breadcrumb_navxt_admin.php:398
|
77 |
+
#: mtekk_admin_class.php:482
|
78 |
msgid "Import"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:398
|
82 |
+
#: mtekk_admin_class.php:483
|
83 |
msgid "Export"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: breadcrumb_navxt_admin.php:398
|
87 |
+
#: mtekk_admin_class.php:484
|
88 |
msgid "Reset"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: breadcrumb_navxt_admin.php:419
|
92 |
msgid "Breadcrumb NavXT Settings"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: breadcrumb_navxt_admin.php:427
|
96 |
msgid "General"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: breadcrumb_navxt_admin.php:430
|
100 |
msgid "Breadcrumb Separator"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: breadcrumb_navxt_admin.php:430
|
104 |
msgid "Placed in between each breadcrumb."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: breadcrumb_navxt_admin.php:431
|
108 |
msgid "Breadcrumb Max Title Length"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: breadcrumb_navxt_admin.php:435
|
112 |
msgid "Home Breadcrumb"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: breadcrumb_navxt_admin.php:440
|
116 |
msgid "Place the home breadcrumb in the trail."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: breadcrumb_navxt_admin.php:445
|
120 |
msgid "Home Title: "
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: breadcrumb_navxt_admin.php:453
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid "Home Prefix"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: breadcrumb_navxt_admin.php:454
|
128 |
msgid "Home Suffix"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: breadcrumb_navxt_admin.php:455
|
132 |
msgid "Home Anchor"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: breadcrumb_navxt_admin.php:455
|
136 |
msgid "The anchor template for the home breadcrumb."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: breadcrumb_navxt_admin.php:456
|
140 |
+
msgid "Blog Breadcrumb"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: breadcrumb_navxt_admin.php:456
|
144 |
+
msgid "Place the blog breadcrumb in the trail."
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: breadcrumb_navxt_admin.php:457
|
148 |
msgid "Blog Anchor"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: breadcrumb_navxt_admin.php:457
|
152 |
msgid "The anchor template for the blog breadcrumb, used only in static front page environments."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: breadcrumb_navxt_admin.php:461
|
156 |
+
msgid "Main Site Breadcrumb"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: breadcrumb_navxt_admin.php:466
|
160 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: breadcrumb_navxt_admin.php:471
|
164 |
+
msgid "Main Site Home Title: "
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: breadcrumb_navxt_admin.php:479
|
168 |
+
msgid "Main Site Home Prefix"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: breadcrumb_navxt_admin.php:479
|
172 |
+
#: breadcrumb_navxt_admin.php:480
|
173 |
+
msgid "Used for the main site home breadcrumb in an multisite setup"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: breadcrumb_navxt_admin.php:480
|
177 |
+
msgid "Main Site Home Suffix"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: breadcrumb_navxt_admin.php:481
|
181 |
+
msgid "Main Site Home Anchor"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: breadcrumb_navxt_admin.php:481
|
185 |
+
msgid "The anchor template for the main site home breadcrumb, used only in multisite environments."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: breadcrumb_navxt_admin.php:486
|
189 |
msgid "Current Item"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: breadcrumb_navxt_admin.php:489
|
193 |
msgid "Link Current Item"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: breadcrumb_navxt_admin.php:489
|
197 |
msgid "Yes"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: breadcrumb_navxt_admin.php:490
|
201 |
msgid "Current Item Prefix"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: breadcrumb_navxt_admin.php:490
|
205 |
msgid "This is always placed in front of the last breadcrumb in the trail, before any other prefixes for that breadcrumb."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: breadcrumb_navxt_admin.php:491
|
209 |
msgid "Current Item Suffix"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: breadcrumb_navxt_admin.php:491
|
213 |
msgid "This is always placed after the last breadcrumb in the trail, and after any other prefixes for that breadcrumb."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: breadcrumb_navxt_admin.php:492
|
217 |
msgid "Current Item Anchor"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: breadcrumb_navxt_admin.php:492
|
221 |
msgid "The anchor template for current item breadcrumbs."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: breadcrumb_navxt_admin.php:493
|
225 |
msgid "Paged Breadcrumb"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: breadcrumb_navxt_admin.php:493
|
229 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: breadcrumb_navxt_admin.php:493
|
233 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: breadcrumb_navxt_admin.php:494
|
237 |
msgid "Paged Prefix"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: breadcrumb_navxt_admin.php:495
|
241 |
msgid "Paged Suffix"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: breadcrumb_navxt_admin.php:500
|
245 |
msgid "Posts & Pages"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: breadcrumb_navxt_admin.php:503
|
249 |
msgid "Post Prefix"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: breadcrumb_navxt_admin.php:504
|
253 |
msgid "Post Suffix"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: breadcrumb_navxt_admin.php:505
|
257 |
msgid "Post Anchor"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: breadcrumb_navxt_admin.php:505
|
261 |
msgid "The anchor template for post breadcrumbs."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: breadcrumb_navxt_admin.php:506
|
265 |
msgid "Post Taxonomy Display"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: breadcrumb_navxt_admin.php:506
|
269 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: breadcrumb_navxt_admin.php:510
|
273 |
msgid "Post Taxonomy"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: breadcrumb_navxt_admin.php:514
|
277 |
+
#: breadcrumb_navxt_admin.php:631
|
278 |
msgid "Categories"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:515
|
282 |
msgid "Dates"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:516
|
286 |
+
#: breadcrumb_navxt_admin.php:643
|
287 |
msgid "Tags"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: breadcrumb_navxt_admin.php:517
|
291 |
+
#: breadcrumb_navxt_admin.php:610
|
292 |
msgid "Pages"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: breadcrumb_navxt_admin.php:528
|
296 |
+
#: breadcrumb_navxt_admin.php:621
|
297 |
msgid "The taxonomy which the breadcrumb trail will show."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: breadcrumb_navxt_admin.php:532
|
301 |
msgid "Page Prefix"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: breadcrumb_navxt_admin.php:533
|
305 |
msgid "Page Suffix"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: breadcrumb_navxt_admin.php:534
|
309 |
msgid "Page Anchor"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: breadcrumb_navxt_admin.php:534
|
313 |
msgid "The anchor template for page breadcrumbs."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: breadcrumb_navxt_admin.php:535
|
317 |
msgid "Attachment Prefix"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: breadcrumb_navxt_admin.php:536
|
321 |
msgid "Attachment Suffix"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: breadcrumb_navxt_admin.php:585
|
325 |
+
#: breadcrumb_navxt_admin.php:679
|
326 |
#, php-format
|
327 |
msgid "%s Prefix"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: breadcrumb_navxt_admin.php:586
|
331 |
+
#: breadcrumb_navxt_admin.php:680
|
332 |
#, php-format
|
333 |
msgid "%s Suffix"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: breadcrumb_navxt_admin.php:587
|
337 |
+
#: breadcrumb_navxt_admin.php:681
|
338 |
#, php-format
|
339 |
msgid "%s Anchor"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: breadcrumb_navxt_admin.php:587
|
343 |
+
#: breadcrumb_navxt_admin.php:681
|
344 |
#, php-format
|
345 |
msgid "The anchor template for %s breadcrumbs."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: breadcrumb_navxt_admin.php:592
|
349 |
+
#, php-format
|
350 |
+
msgid "%s Root Page"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:595
|
354 |
+
msgid "— Select —"
|
355 |
+
msgstr ""
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:602
|
358 |
#, php-format
|
359 |
msgid "%s Taxonomy Display"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: breadcrumb_navxt_admin.php:602
|
363 |
#, php-format
|
364 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: breadcrumb_navxt_admin.php:606
|
368 |
#, php-format
|
369 |
msgid "%s Taxonomy"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:634
|
373 |
msgid "Category Prefix"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:634
|
377 |
msgid "Applied before the anchor on all category breadcrumbs."
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:635
|
381 |
msgid "Category Suffix"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:635
|
385 |
msgid "Applied after the anchor on all category breadcrumbs."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:636
|
389 |
msgid "Category Anchor"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:636
|
393 |
msgid "The anchor template for category breadcrumbs."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:637
|
397 |
msgid "Archive by Category Prefix"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:637
|
401 |
msgid "Applied before the title of the current item breadcrumb on an archive by cateogry page."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:638
|
405 |
msgid "Archive by Category Suffix"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:638
|
409 |
msgid "Applied after the title of the current item breadcrumb on an archive by cateogry page."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:646
|
413 |
msgid "Tag Prefix"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:646
|
417 |
msgid "Applied before the anchor on all tag breadcrumbs."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:647
|
421 |
msgid "Tag Suffix"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:647
|
425 |
msgid "Applied after the anchor on all tag breadcrumbs."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:648
|
429 |
msgid "Tag Anchor"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:648
|
433 |
msgid "The anchor template for tag breadcrumbs."
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:649
|
437 |
msgid "Archive by Tag Prefix"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:649
|
441 |
msgid "Applied before the title of the current item breadcrumb on an archive by tag page."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:650
|
445 |
msgid "Archive by Tag Suffix"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:650
|
449 |
msgid "Applied after the title of the current item breadcrumb on an archive by tag page."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:679
|
453 |
#, php-format
|
454 |
msgid "Applied before the anchor on all %s breadcrumbs."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: breadcrumb_navxt_admin.php:680
|
458 |
#, php-format
|
459 |
msgid "Applied after the anchor on all %s breadcrumbs."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: breadcrumb_navxt_admin.php:682
|
463 |
#, php-format
|
464 |
msgid "Archive by %s Prefix"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: breadcrumb_navxt_admin.php:682
|
468 |
#, php-format
|
469 |
msgid "Applied before the title of the current item breadcrumb on an archive by %s page."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:683
|
473 |
#, php-format
|
474 |
msgid "Archive by %s Suffix"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: breadcrumb_navxt_admin.php:683
|
478 |
#, php-format
|
479 |
msgid "Applied after the title of the current item breadcrumb on an archive by %s page."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: breadcrumb_navxt_admin.php:692
|
483 |
msgid "Date Archives"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: breadcrumb_navxt_admin.php:695
|
487 |
msgid "Date Anchor"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: breadcrumb_navxt_admin.php:695
|
491 |
msgid "The anchor template for date breadcrumbs."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: breadcrumb_navxt_admin.php:696
|
495 |
msgid "Archive by Date Prefix"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: breadcrumb_navxt_admin.php:696
|
499 |
msgid "Applied before the anchor on all date breadcrumbs."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: breadcrumb_navxt_admin.php:697
|
503 |
msgid "Archive by Date Suffix"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: breadcrumb_navxt_admin.php:697
|
507 |
msgid "Applied after the anchor on all date breadcrumbs."
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: breadcrumb_navxt_admin.php:702
|
511 |
msgid "Miscellaneous"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: breadcrumb_navxt_admin.php:705
|
515 |
msgid "Author Prefix"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: breadcrumb_navxt_admin.php:706
|
519 |
msgid "Author Suffix"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: breadcrumb_navxt_admin.php:707
|
523 |
msgid "Author Display Format"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: breadcrumb_navxt_admin.php:707
|
527 |
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."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: breadcrumb_navxt_admin.php:708
|
531 |
msgid "Search Prefix"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: breadcrumb_navxt_admin.php:709
|
535 |
msgid "Search Suffix"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: breadcrumb_navxt_admin.php:710
|
539 |
msgid "Search Anchor"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: breadcrumb_navxt_admin.php:710
|
543 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: breadcrumb_navxt_admin.php:711
|
547 |
msgid "404 Title"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: breadcrumb_navxt_admin.php:712
|
551 |
msgid "404 Prefix"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: breadcrumb_navxt_admin.php:713
|
555 |
msgid "404 Suffix"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: breadcrumb_navxt_admin.php:718
|
559 |
msgid "Save Changes"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: breadcrumb_navxt_class.php:213
|
563 |
msgid "Blog"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: breadcrumb_navxt_class.php:232
|
567 |
msgid "<a title=\"Reload the current page.\" href=\"%link%\">"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: breadcrumb_navxt_class.php:277
|
571 |
msgid "404"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: breadcrumb_navxt_class.php:280
|
575 |
msgid "Search results for '"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: breadcrumb_navxt_class.php:284
|
579 |
msgid "<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: breadcrumb_navxt_class.php:291
|
583 |
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: breadcrumb_navxt_class.php:294
|
587 |
msgid "Articles by: "
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: breadcrumb_navxt_class.php:298
|
591 |
msgid "<a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: breadcrumb_navxt_class.php:307
|
595 |
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: breadcrumb_navxt_class.php:310
|
599 |
msgid "Archive by category '"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: breadcrumb_navxt_class.php:314
|
603 |
msgid "Archive by tag '"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: breadcrumb_navxt_class.php:317
|
607 |
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: breadcrumb_navxt_class.php:478
|
611 |
+
msgid "Un"
|
612 |
msgstr ""
|
613 |
|
614 |
#: breadcrumb_navxt_widget.php:24
|
635 |
msgid "Hide the trail on the front page"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: mtekk_admin_class.php:57
|
639 |
msgid "Undo"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: mtekk_admin_class.php:64
|
643 |
+
msgid "Migrate now."
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: mtekk_admin_class.php:158
|
647 |
msgid "Settings"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: mtekk_admin_class.php:186
|
651 |
+
msgid "Your settings are out of date."
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: mtekk_admin_class.php:186
|
655 |
+
msgid "Migrate the settings now."
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: mtekk_admin_class.php:299
|
659 |
msgid "Settings successfully imported from the uploaded file."
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: mtekk_admin_class.php:299
|
663 |
msgid "Undo the options import."
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: mtekk_admin_class.php:304
|
667 |
msgid "Importing settings from file failed."
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: mtekk_admin_class.php:323
|
671 |
msgid "Settings successfully reset to the default values."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: mtekk_admin_class.php:323
|
675 |
msgid "Undo the options reset."
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: mtekk_admin_class.php:340
|
679 |
msgid "Settings successfully undid the last operation."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: mtekk_admin_class.php:340
|
683 |
msgid "Undo the last undo operation."
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: mtekk_admin_class.php:373
|
687 |
+
msgid "Settings successfully migrated."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: mtekk_admin_class.php:403
|
691 |
#, php-format
|
692 |
msgid "Get help with \"%s\""
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: mtekk_admin_class.php:473
|
696 |
msgid "Import/Export/Reset Settings"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: mtekk_admin_class.php:474
|
700 |
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: mtekk_admin_class.php:477
|
704 |
msgid "Settings File"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: mtekk_admin_class.php:480
|
708 |
msgid "Select a XML settings file to upload and import settings from."
|
709 |
msgstr ""
|
710 |
|
mtekk_admin_class.php
CHANGED
@@ -28,7 +28,7 @@ abstract class mtekk_admin
|
|
28 |
protected $opt = array();
|
29 |
protected $message;
|
30 |
/**
|
31 |
-
*
|
32 |
*
|
33 |
* @var bool
|
34 |
*/
|
@@ -40,6 +40,7 @@ abstract class mtekk_admin
|
|
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();
|
@@ -55,6 +56,13 @@ abstract class mtekk_admin
|
|
55 |
//Return a valid Undo anchor
|
56 |
return ' <a title="' . $title . '" href="' . $url . '">' . __('Undo', $this->identifier) . '</a>';
|
57 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
function init()
|
59 |
{
|
60 |
//Admin Options update hook
|
@@ -87,14 +95,18 @@ abstract class mtekk_admin
|
|
87 |
//Run the rollback function on init if undo button has been pressed
|
88 |
$this->opts_undo();
|
89 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
//Add in the nice "settings" link to the plugins page
|
91 |
add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
|
92 |
//Register options
|
93 |
register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
|
94 |
}
|
95 |
/**
|
96 |
-
* add_page
|
97 |
-
*
|
98 |
* Adds the adminpage the menue and the nice little settings link
|
99 |
*
|
100 |
*/
|
@@ -112,8 +124,6 @@ abstract class mtekk_admin
|
|
112 |
}
|
113 |
}
|
114 |
/**
|
115 |
-
* local
|
116 |
-
*
|
117 |
* Initilizes localization textdomain for translations (if applicable)
|
118 |
*
|
119 |
* Will conditionally load the textdomain for translations. This is here for
|
@@ -133,8 +143,6 @@ abstract class mtekk_admin
|
|
133 |
}
|
134 |
}
|
135 |
/**
|
136 |
-
* filter_plugin_actions
|
137 |
-
*
|
138 |
* Places in a link to the settings page in the plugins listing entry
|
139 |
*
|
140 |
* @param array $links An array of links that are output in the listing
|
@@ -164,27 +172,23 @@ abstract class mtekk_admin
|
|
164 |
delete_option($this->unique_prefix . '_version');
|
165 |
}
|
166 |
/**
|
167 |
-
*
|
168 |
-
*
|
169 |
-
* Overidable, allows plugin authors to specify what to do for version migration
|
170 |
-
*
|
171 |
-
* @param array $opts
|
172 |
-
* @param string $version
|
173 |
*/
|
174 |
-
function
|
175 |
{
|
176 |
//Do a quick version check
|
177 |
list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
|
178 |
list($major, $minor, $release) = explode('.', $version);
|
179 |
-
//
|
180 |
-
if($plug_major == $major && $plug_minor
|
181 |
{
|
182 |
-
|
|
|
|
|
|
|
183 |
}
|
184 |
}
|
185 |
/**
|
186 |
-
* opts_backup
|
187 |
-
*
|
188 |
* Synchronizes the backup options entry with the current options entry
|
189 |
*/
|
190 |
function opts_backup()
|
@@ -193,16 +197,12 @@ abstract class mtekk_admin
|
|
193 |
update_option($this->unique_prefix . '_options_bk', get_option($this->unique_prefix . '_options'));
|
194 |
}
|
195 |
/**
|
196 |
-
* opts_update
|
197 |
-
*
|
198 |
* Function prototype to prevent errors
|
199 |
*/
|
200 |
function opts_update()
|
201 |
{
|
202 |
}
|
203 |
/**
|
204 |
-
* opts_export
|
205 |
-
*
|
206 |
* Exports a XML options document
|
207 |
*/
|
208 |
function opts_export()
|
@@ -251,8 +251,6 @@ abstract class mtekk_admin
|
|
251 |
die();
|
252 |
}
|
253 |
/**
|
254 |
-
* opts_import
|
255 |
-
*
|
256 |
* Imports a XML options document
|
257 |
*/
|
258 |
function opts_import()
|
@@ -294,7 +292,7 @@ abstract class mtekk_admin
|
|
294 |
}
|
295 |
}
|
296 |
}
|
297 |
-
$this->
|
298 |
//Commit the loaded options to the database
|
299 |
update_option($this->unique_prefix . '_options', $this->opt);
|
300 |
//Everything was successful, let the user know
|
@@ -311,8 +309,6 @@ abstract class mtekk_admin
|
|
311 |
add_action('admin_notices', array($this, 'message'));
|
312 |
}
|
313 |
/**
|
314 |
-
* opts_reset
|
315 |
-
*
|
316 |
* Resets the database settings array to the default set in opt
|
317 |
*/
|
318 |
function opts_reset()
|
@@ -327,6 +323,9 @@ abstract class mtekk_admin
|
|
327 |
$this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier) . $this->undo_anchor(__('Undo the options reset.', $this->identifier));
|
328 |
add_action('admin_notices', array($this, 'message'));
|
329 |
}
|
|
|
|
|
|
|
330 |
function opts_undo()
|
331 |
{
|
332 |
//Do a nonce check, prevent malicious link/form problems
|
@@ -341,6 +340,39 @@ abstract class mtekk_admin
|
|
341 |
$this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->undo_anchor(__('Undo the last undo operation.', $this->identifier));
|
342 |
add_action('admin_notices', array($this, 'message'));
|
343 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
/**
|
345 |
* contextual_help action hook function
|
346 |
*
|
@@ -372,8 +404,6 @@ abstract class mtekk_admin
|
|
372 |
return $t;
|
373 |
}
|
374 |
/**
|
375 |
-
* message
|
376 |
-
*
|
377 |
* Prints to screen all of the messages stored in the message member variable
|
378 |
*/
|
379 |
function message()
|
@@ -387,10 +417,9 @@ abstract class mtekk_admin
|
|
387 |
printf('<div class="%s"><p>%s</p></div>', $key, $message);
|
388 |
}
|
389 |
}
|
|
|
390 |
}
|
391 |
/**
|
392 |
-
* install
|
393 |
-
*
|
394 |
* Function prototype to prevent errors
|
395 |
*/
|
396 |
function install()
|
@@ -398,8 +427,6 @@ abstract class mtekk_admin
|
|
398 |
|
399 |
}
|
400 |
/**
|
401 |
-
* admin_head
|
402 |
-
*
|
403 |
* Function prototype to prevent errors
|
404 |
*/
|
405 |
function admin_head()
|
@@ -407,8 +434,6 @@ abstract class mtekk_admin
|
|
407 |
|
408 |
}
|
409 |
/**
|
410 |
-
* admin_page
|
411 |
-
*
|
412 |
* Function prototype to prevent errors
|
413 |
*/
|
414 |
function admin_page()
|
@@ -416,8 +441,6 @@ abstract class mtekk_admin
|
|
416 |
|
417 |
}
|
418 |
/**
|
419 |
-
* get help text
|
420 |
-
*
|
421 |
* Function prototype to prevent errors
|
422 |
*/
|
423 |
protected function _get_help_text()
|
@@ -425,8 +448,6 @@ abstract class mtekk_admin
|
|
425 |
|
426 |
}
|
427 |
/**
|
428 |
-
* get_valid_id
|
429 |
-
*
|
430 |
* Returns a valid xHTML element ID
|
431 |
*
|
432 |
* @param object $option
|
@@ -464,8 +485,18 @@ abstract class mtekk_admin
|
|
464 |
echo '</p></fieldset></form></div>';
|
465 |
}
|
466 |
/**
|
467 |
-
*
|
468 |
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
* This will output a well formed table row for a text input
|
470 |
*
|
471 |
* @param string $label
|
@@ -490,8 +521,6 @@ abstract class mtekk_admin
|
|
490 |
<?php
|
491 |
}
|
492 |
/**
|
493 |
-
* textbox
|
494 |
-
*
|
495 |
* This will output a well formed textbox
|
496 |
*
|
497 |
* @param string $label
|
@@ -506,12 +535,10 @@ abstract class mtekk_admin
|
|
506 |
<p>
|
507 |
<label for="<?php echo $optid;?>"><?php echo $label;?></label>
|
508 |
</p>
|
509 |
-
<textarea rows="<?php echo $height;?>" class="large-text code" id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
|
510 |
<?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }
|
511 |
}
|
512 |
/**
|
513 |
-
* input_check
|
514 |
-
*
|
515 |
* This will output a well formed table row for a checkbox input
|
516 |
*
|
517 |
* @param string $label
|
@@ -539,8 +566,6 @@ abstract class mtekk_admin
|
|
539 |
<?php
|
540 |
}
|
541 |
/**
|
542 |
-
* input_radio
|
543 |
-
*
|
544 |
* This will output a singular radio type form input field
|
545 |
*
|
546 |
* @param string $label
|
@@ -558,8 +583,6 @@ abstract class mtekk_admin
|
|
558 |
<?php
|
559 |
}
|
560 |
/**
|
561 |
-
* input_select
|
562 |
-
*
|
563 |
* This will output a well formed table row for a select input
|
564 |
*
|
565 |
* @param string $label
|
@@ -586,8 +609,6 @@ abstract class mtekk_admin
|
|
586 |
<?php
|
587 |
}
|
588 |
/**
|
589 |
-
* select_options
|
590 |
-
*
|
591 |
* Displays wordpress options as <seclect> options defaults to true/false
|
592 |
*
|
593 |
* @param string $optionname name of wordpress options store
|
28 |
protected $opt = array();
|
29 |
protected $message;
|
30 |
/**
|
31 |
+
* whether or not this administration page has contextual help
|
32 |
*
|
33 |
* @var bool
|
34 |
*/
|
40 |
//WordPress Admin interface hook
|
41 |
add_action('admin_menu', array($this, 'add_page'));
|
42 |
//Installation Script hook
|
43 |
+
//register_activation_hook($this->plugin_basename, array($this, 'install'));
|
44 |
add_action('activate_' . $this->plugin_basename, array($this, 'install'));
|
45 |
//Initilizes l10n domain
|
46 |
$this->local();
|
56 |
//Return a valid Undo anchor
|
57 |
return ' <a title="' . $title . '" href="' . $url . '">' . __('Undo', $this->identifier) . '</a>';
|
58 |
}
|
59 |
+
function upgrade_anchor($title = '')
|
60 |
+
{
|
61 |
+
//Assemble our url, nonce and all
|
62 |
+
$url = wp_nonce_url($this->admin_url() . '&' . $this->unique_prefix . '_admin_upgrade=true', $this->unique_prefix . '_admin_upgrade');
|
63 |
+
//Return a valid Undo anchor
|
64 |
+
return ' <a title="' . $title . '" href="' . $url . '">' . __('Migrate now.', $this->identifier) . '</a>';
|
65 |
+
}
|
66 |
function init()
|
67 |
{
|
68 |
//Admin Options update hook
|
95 |
//Run the rollback function on init if undo button has been pressed
|
96 |
$this->opts_undo();
|
97 |
}
|
98 |
+
//Admin Options rollback hook
|
99 |
+
else if(isset($_GET[$this->unique_prefix . '_admin_upgrade']))
|
100 |
+
{
|
101 |
+
//Run the rollback function on init if undo button has been pressed
|
102 |
+
$this->opts_upgrade_wrapper();
|
103 |
+
}
|
104 |
//Add in the nice "settings" link to the plugins page
|
105 |
add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
|
106 |
//Register options
|
107 |
register_setting($this->unique_prefix . '_options', $this->unique_prefix . '_options', '');
|
108 |
}
|
109 |
/**
|
|
|
|
|
110 |
* Adds the adminpage the menue and the nice little settings link
|
111 |
*
|
112 |
*/
|
124 |
}
|
125 |
}
|
126 |
/**
|
|
|
|
|
127 |
* Initilizes localization textdomain for translations (if applicable)
|
128 |
*
|
129 |
* Will conditionally load the textdomain for translations. This is here for
|
143 |
}
|
144 |
}
|
145 |
/**
|
|
|
|
|
146 |
* Places in a link to the settings page in the plugins listing entry
|
147 |
*
|
148 |
* @param array $links An array of links that are output in the listing
|
172 |
delete_option($this->unique_prefix . '_version');
|
173 |
}
|
174 |
/**
|
175 |
+
* Compairs the supplided version with the internal version, places an upgrade warning if there is a missmatch
|
|
|
|
|
|
|
|
|
|
|
176 |
*/
|
177 |
+
function version_check($version)
|
178 |
{
|
179 |
//Do a quick version check
|
180 |
list($plug_major, $plug_minor, $plug_release) = explode('.', $this->version);
|
181 |
list($major, $minor, $release) = explode('.', $version);
|
182 |
+
//Check if we have a newer version than the DB
|
183 |
+
if($major < $plug_major || ($major == $plug_major && $minor < $plug_minor) || ($major == $plug_major && $minor == $plug_minor && $release < $plug_release))
|
184 |
{
|
185 |
+
//Throw an error since we could not load the file for various reasons
|
186 |
+
$this->message['error'][] = __('Your settings are out of date.', $this->identifier) . $this->upgrade_anchor(__('Migrate the settings now.', $this->identifier));
|
187 |
+
//Output any messages that there may be
|
188 |
+
$this->message();
|
189 |
}
|
190 |
}
|
191 |
/**
|
|
|
|
|
192 |
* Synchronizes the backup options entry with the current options entry
|
193 |
*/
|
194 |
function opts_backup()
|
197 |
update_option($this->unique_prefix . '_options_bk', get_option($this->unique_prefix . '_options'));
|
198 |
}
|
199 |
/**
|
|
|
|
|
200 |
* Function prototype to prevent errors
|
201 |
*/
|
202 |
function opts_update()
|
203 |
{
|
204 |
}
|
205 |
/**
|
|
|
|
|
206 |
* Exports a XML options document
|
207 |
*/
|
208 |
function opts_export()
|
251 |
die();
|
252 |
}
|
253 |
/**
|
|
|
|
|
254 |
* Imports a XML options document
|
255 |
*/
|
256 |
function opts_import()
|
292 |
}
|
293 |
}
|
294 |
}
|
295 |
+
$this->opts_upgrade($opts_temp, $version);
|
296 |
//Commit the loaded options to the database
|
297 |
update_option($this->unique_prefix . '_options', $this->opt);
|
298 |
//Everything was successful, let the user know
|
309 |
add_action('admin_notices', array($this, 'message'));
|
310 |
}
|
311 |
/**
|
|
|
|
|
312 |
* Resets the database settings array to the default set in opt
|
313 |
*/
|
314 |
function opts_reset()
|
323 |
$this->message['updated fade'][] = __('Settings successfully reset to the default values.', $this->identifier) . $this->undo_anchor(__('Undo the options reset.', $this->identifier));
|
324 |
add_action('admin_notices', array($this, 'message'));
|
325 |
}
|
326 |
+
/**
|
327 |
+
* Undos the last settings save/reset/import
|
328 |
+
*/
|
329 |
function opts_undo()
|
330 |
{
|
331 |
//Do a nonce check, prevent malicious link/form problems
|
340 |
$this->message['updated fade'][] = __('Settings successfully undid the last operation.', $this->identifier) . $this->undo_anchor(__('Undo the last undo operation.', $this->identifier));
|
341 |
add_action('admin_notices', array($this, 'message'));
|
342 |
}
|
343 |
+
/**
|
344 |
+
* Upgrades input options array, sets to $this->opt, designed to be overwritten
|
345 |
+
*
|
346 |
+
* @param array $opts
|
347 |
+
* @param string $version the version of the passed in options
|
348 |
+
*/
|
349 |
+
function opts_upgrade($opts, $version)
|
350 |
+
{
|
351 |
+
//We don't support using newer versioned option files in older releases
|
352 |
+
if(version_compare($this->version, $version, '>='))
|
353 |
+
{
|
354 |
+
$this->opt = $opts;
|
355 |
+
}
|
356 |
+
}
|
357 |
+
/**
|
358 |
+
* Forces a database settings upgrade
|
359 |
+
*/
|
360 |
+
function opts_upgrade_wrapper()
|
361 |
+
{
|
362 |
+
//Do a nonce check, prevent malicious link/form problems
|
363 |
+
check_admin_referer($this->unique_prefix . '_admin_upgrade');
|
364 |
+
//Grab the database options
|
365 |
+
$opts = get_option($this->unique_prefix . '_options');
|
366 |
+
//Feed the just read options into the upgrade function
|
367 |
+
$this->opts_upgrade($opts, get_option($this->unique_prefix . '_version'));
|
368 |
+
//Always have to update the version
|
369 |
+
update_option($this->unique_prefix . '_version', $this->version);
|
370 |
+
//Store the options
|
371 |
+
update_option($this->unique_prefix . '_options', $this->opt);
|
372 |
+
//Send the success/undo message
|
373 |
+
$this->message['updated fade'][] = __('Settings successfully migrated.', $this->identifier);
|
374 |
+
add_action('admin_notices', array($this, 'message'));
|
375 |
+
}
|
376 |
/**
|
377 |
* contextual_help action hook function
|
378 |
*
|
404 |
return $t;
|
405 |
}
|
406 |
/**
|
|
|
|
|
407 |
* Prints to screen all of the messages stored in the message member variable
|
408 |
*/
|
409 |
function message()
|
417 |
printf('<div class="%s"><p>%s</p></div>', $key, $message);
|
418 |
}
|
419 |
}
|
420 |
+
$this->message = array();
|
421 |
}
|
422 |
/**
|
|
|
|
|
423 |
* Function prototype to prevent errors
|
424 |
*/
|
425 |
function install()
|
427 |
|
428 |
}
|
429 |
/**
|
|
|
|
|
430 |
* Function prototype to prevent errors
|
431 |
*/
|
432 |
function admin_head()
|
434 |
|
435 |
}
|
436 |
/**
|
|
|
|
|
437 |
* Function prototype to prevent errors
|
438 |
*/
|
439 |
function admin_page()
|
441 |
|
442 |
}
|
443 |
/**
|
|
|
|
|
444 |
* Function prototype to prevent errors
|
445 |
*/
|
446 |
protected function _get_help_text()
|
448 |
|
449 |
}
|
450 |
/**
|
|
|
|
|
451 |
* Returns a valid xHTML element ID
|
452 |
*
|
453 |
* @param object $option
|
485 |
echo '</p></fieldset></form></div>';
|
486 |
}
|
487 |
/**
|
488 |
+
* This will output a well formed hidden option
|
489 |
*
|
490 |
+
* @param string $option
|
491 |
+
* @return
|
492 |
+
*/
|
493 |
+
function input_hidden($option)
|
494 |
+
{
|
495 |
+
$optid = $this->get_valid_id($option);?>
|
496 |
+
<input type="hidden" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]" id="<?php echo $optid;?>" value="<?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?>"/>
|
497 |
+
<?php
|
498 |
+
}
|
499 |
+
/**
|
500 |
* This will output a well formed table row for a text input
|
501 |
*
|
502 |
* @param string $label
|
521 |
<?php
|
522 |
}
|
523 |
/**
|
|
|
|
|
524 |
* This will output a well formed textbox
|
525 |
*
|
526 |
* @param string $label
|
535 |
<p>
|
536 |
<label for="<?php echo $optid;?>"><?php echo $label;?></label>
|
537 |
</p>
|
538 |
+
<textarea rows="<?php echo $height;?>" <?php if($disable){echo 'disabled="disabled" class="large-text code disabled"';}else{echo 'class="large-text code"';}?> id="<?php echo $optid;?>" name="<?php echo $this->unique_prefix . '_options[' . $option;?>]"><?php echo htmlentities($this->opt[$option], ENT_COMPAT, 'UTF-8');?></textarea><br />
|
539 |
<?php if($description !== ''){?><span class="setting-description"><?php echo $description;?></span><?php }
|
540 |
}
|
541 |
/**
|
|
|
|
|
542 |
* This will output a well formed table row for a checkbox input
|
543 |
*
|
544 |
* @param string $label
|
566 |
<?php
|
567 |
}
|
568 |
/**
|
|
|
|
|
569 |
* This will output a singular radio type form input field
|
570 |
*
|
571 |
* @param string $label
|
583 |
<?php
|
584 |
}
|
585 |
/**
|
|
|
|
|
586 |
* This will output a well formed table row for a select input
|
587 |
*
|
588 |
* @param string $label
|
609 |
<?php
|
610 |
}
|
611 |
/**
|
|
|
|
|
612 |
* Displays wordpress options as <seclect> options defaults to true/false
|
613 |
*
|
614 |
* @param string $optionname name of wordpress options store
|
readme.txt
CHANGED
@@ -1,14 +1,15 @@
|
|
1 |
=== Breadcrumb NavXT ===
|
2 |
Contributors: mtekk, hakre
|
3 |
-
|
|
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 3.
|
6 |
-
Stable tag: 3.
|
7 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
8 |
|
9 |
== Description ==
|
10 |
|
11 |
-
Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users. Do note that Breadcrumb NavXT requires PHP5.
|
12 |
|
13 |
= Translations =
|
14 |
|
@@ -32,6 +33,16 @@ Don't see your language on the list? Feel free to translate Breadcrumb NavXT and
|
|
32 |
Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
|
33 |
|
34 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
= 3.6.0 =
|
36 |
* New feature: Vastly improved support for WordPress custom post types.
|
37 |
* New feature: Can now restrict breadcrumb trail output for the front page in the included Widget.
|
1 |
=== Breadcrumb NavXT ===
|
2 |
Contributors: mtekk, hakre
|
3 |
+
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
+
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 3.1
|
7 |
+
Stable tag: 3.7.0
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navigation XT, was written from the ground up to be better than its ancestor. This plugin generates locational breadcrumb trails for your WordPress powered blog or website. These breadcrumb trails are highly customizable to suit the needs of just about any website running WordPress. The Administrative interface makes setting options easy, while a direct class access is available for theme developers and more adventurous users. Do note that Breadcrumb NavXT requires PHP5.2 or newer.
|
13 |
|
14 |
= Translations =
|
15 |
|
33 |
Please visit [Breadcrumb NavXT's](http://mtekk.us/code/breadcrumb-navxt/#installation "Go to Breadcrumb NavXT's project page's installation section.") project page for installation and usage instructions.
|
34 |
|
35 |
== Changelog ==
|
36 |
+
= 3.7.0 =
|
37 |
+
* New feature: Support for �global�/network wide breadcrumb trails in networked setups of WordPress 3.0.
|
38 |
+
* New feature: Can use any hierarchical post type as a hierarchy for flat post types.
|
39 |
+
* New feature: Users are now warned if settings are out of date, allowed to do a one click settings migration.
|
40 |
+
* New feature: Users can now control if a post type uses the �posts page� in it�s hierarchy or not.
|
41 |
+
* Bug fix: Breadcrumb trails for attachments work properly now for custom post types.
|
42 |
+
* Bug fix: Users can now set custom post types to have a page hierarchy through the settings page.
|
43 |
+
* Bug fix: Fixed issues where the PHP version check did not work correctly.
|
44 |
+
* Bug fix: Fixed issue where all settings would get reset on �clean� 3.6.0 installs on plugin activation.
|
45 |
+
* Bug fix: Fixed issue when a static front page is specified but the post page is not.
|
46 |
= 3.6.0 =
|
47 |
* New feature: Vastly improved support for WordPress custom post types.
|
48 |
* New feature: Can now restrict breadcrumb trail output for the front page in the included Widget.
|