Version Description
- Behavior change: Made the behavior of posts using flat taxonomies match the behavior of using a hierarchical taxonomy when the post is not assigned a taxonomy term.
- New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they dont have a parent.
- New feature: Pretext option for the included Widget, allows 'You are here:' type messages in the widget.
- Bug fix: Textdomain was changed to the correct one in the widget.
- Bug fix: Textdomain was changed from 'breadcrumb_navxt' to 'breadcrumb-navxt' for improved compatibility with the new GlotPress translation flow.
- Bug fix: Fixed cause of PHP warnings on empty term archive pages.
- Bug fix: Fixed cause of PHP warnings on term archives restricted to a specified post type.
- Bug fix: Fixed cause of PHP warnings and improper behavior on author archives if showing the page number in the breadcrumb trail.
Download this release
Release Info
Developer | mtekk |
Plugin | Breadcrumb NavXT |
Version | 4.1.0 |
Comparing to | |
See all releases |
Code changes from version 4.0.2 to 4.1.0
- breadcrumb_navxt_admin.php +691 -739
- breadcrumb_navxt_class.php +1160 -1139
- breadcrumb_navxt_widget.php +21 -14
- includes/mtekk_adminkit.php +4 -4
- includes/multibyte_supplicant.php +1 -1
- languages/breadcrumb-navxt-az.mo +0 -0
- languages/breadcrumb-navxt-az.po +141 -328
- languages/breadcrumb-navxt-de_DE.mo +0 -0
- languages/breadcrumb-navxt-de_DE.po +522 -0
- languages/breadcrumb-navxt-es_ES.mo +0 -0
- languages/breadcrumb-navxt-es_ES.po +141 -328
- languages/breadcrumb-navxt-et.mo +0 -0
- languages/breadcrumb-navxt-et.po +141 -328
- languages/breadcrumb-navxt-fr_FR.mo +0 -0
- languages/breadcrumb-navxt-fr_FR.po +522 -0
- languages/breadcrumb-navxt-nb_NO.mo +0 -0
- languages/breadcrumb-navxt-nb_NO.po +141 -328
- languages/breadcrumb-navxt-pt_PT.mo +0 -0
- languages/breadcrumb-navxt-pt_PT.po +522 -0
- languages/breadcrumb-navxt-ru_RU.mo +0 -0
- languages/breadcrumb-navxt-ru_RU.po +522 -0
- languages/breadcrumb-navxt-sv_SE.mo +0 -0
- languages/breadcrumb-navxt-sv_SE.po +141 -328
- languages/{breadcrumb_navxt.mo → breadcrumb-navxt.mo} +0 -0
- languages/{breadcrumb_navxt.po → breadcrumb-navxt.po} +1 -1
- readme.txt +24 -9
breadcrumb_navxt_admin.php
CHANGED
@@ -1,740 +1,692 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Plugin Name: Breadcrumb NavXT
|
4 |
-
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
-
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
-
Version: 4.0
|
7 |
-
Author: John Havlik
|
8 |
-
Author URI: http://mtekk.us/
|
9 |
-
License: GPL2
|
10 |
-
TextDomain:
|
11 |
-
DomainPath: /languages/
|
12 |
-
|
13 |
-
*/
|
14 |
-
/* Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
15 |
-
|
16 |
-
This program is free software; you can redistribute it and/or modify
|
17 |
-
it under the terms of the GNU General Public License as published by
|
18 |
-
the Free Software Foundation; either version 2 of the License, or
|
19 |
-
(at your option) any later version.
|
20 |
-
|
21 |
-
This program is distributed in the hope that it will be useful,
|
22 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
23 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
24 |
-
GNU General Public License for more details.
|
25 |
-
|
26 |
-
You should have received a copy of the GNU General Public License
|
27 |
-
along with this program; if not, write to the Free Software
|
28 |
-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
29 |
-
*/
|
30 |
-
//Do a PHP version check, require 5.2 or newer
|
31 |
-
if(version_compare(phpversion(), '5.2.0', '<'))
|
32 |
-
{
|
33 |
-
//Only purpose of this function is to echo out the PHP version error
|
34 |
-
function bcn_phpold()
|
35 |
-
{
|
36 |
-
printf('<div class="error"><p>' . __('Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s', '
|
37 |
-
}
|
38 |
-
//If we are in the admin, let's print a warning then return
|
39 |
-
if(is_admin())
|
40 |
-
{
|
41 |
-
add_action('admin_notices', 'bcn_phpold');
|
42 |
-
}
|
43 |
-
return;
|
44 |
-
}
|
45 |
-
if(!function_exists('mb_strlen'))
|
46 |
-
{
|
47 |
-
require_once(dirname(__FILE__) . '/includes/multibyte_supplicant.php');
|
48 |
-
}
|
49 |
-
//Include the breadcrumb class
|
50 |
-
require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
|
51 |
-
//Include the WP 2.8+ widget class
|
52 |
-
require_once(dirname(__FILE__) . '/breadcrumb_navxt_widget.php');
|
53 |
-
//Include admin base class
|
54 |
-
if(!class_exists('mtekk_adminKit'))
|
55 |
-
{
|
56 |
-
require_once(dirname(__FILE__) . '/includes/mtekk_adminkit.php');
|
57 |
-
}
|
58 |
-
/**
|
59 |
-
* The administrative interface class
|
60 |
-
*
|
61 |
-
*/
|
62 |
-
class bcn_admin extends mtekk_adminKit
|
63 |
-
{
|
64 |
-
protected $version = '4.0
|
65 |
-
protected $full_name = 'Breadcrumb NavXT Settings';
|
66 |
-
protected $short_name = 'Breadcrumb NavXT';
|
67 |
-
protected $access_level = 'manage_options';
|
68 |
-
protected $identifier = '
|
69 |
-
protected $unique_prefix = 'bcn';
|
70 |
-
protected $plugin_basename = 'breadcrumb-navxt/breadcrumb_navxt_admin.php';
|
71 |
-
protected $support_url = 'http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-';
|
72 |
-
public $breadcrumb_trail;
|
73 |
-
/**
|
74 |
-
* Administrative interface class default constructor
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
$this->breadcrumb_trail =
|
80 |
-
//Grab defaults from the breadcrumb_trail object
|
81 |
-
$this->opt = $this->breadcrumb_trail->opt;
|
82 |
-
//We need to add in the defaults for CPTs and custom taxonomies after all other plugins are loaded
|
83 |
-
add_action('wp_loaded', array($this, 'wp_loaded'));
|
84 |
-
//We set the plugin basename here, could manually set it, but this is for demonstration purposes
|
85 |
-
//$this->plugin_basename = plugin_basename(__FILE__);
|
86 |
-
//Register the WordPress 2.8 Widget
|
87 |
-
add_action('widgets_init', create_function('', 'return register_widget("'. $this->unique_prefix . '_widget");'));
|
88 |
-
//We're going to make sure we load the parent's constructor
|
89 |
-
parent::__construct();
|
90 |
-
}
|
91 |
-
/**
|
92 |
-
* admin initialization callback function
|
93 |
-
*
|
94 |
-
* is bound to wpordpress action 'admin_init' on instantiation
|
95 |
-
*
|
96 |
-
* @since 3.2.0
|
97 |
-
* @return void
|
98 |
-
*/
|
99 |
-
function init()
|
100 |
-
{
|
101 |
-
//We're going to make sure we run the parent's version of this function as well
|
102 |
-
parent::init();
|
103 |
-
}
|
104 |
-
function wp_loaded()
|
105 |
-
{
|
106 |
-
//First make sure our defaults are safe
|
107 |
-
$this->find_posttypes($this->opt);
|
108 |
-
$this->find_taxonomies($this->opt);
|
109 |
-
}
|
110 |
-
/**
|
111 |
-
* Makes sure the current user can manage options to proceed
|
112 |
-
*/
|
113 |
-
function security()
|
114 |
-
{
|
115 |
-
//If the user can not manage options we will die on them
|
116 |
-
if(!current_user_can($this->access_level))
|
117 |
-
{
|
118 |
-
wp_die(__('Insufficient privileges to proceed.', '
|
119 |
-
}
|
120 |
-
}
|
121 |
-
/**
|
122 |
-
* Upgrades input options array, sets to $this->opt
|
123 |
-
*
|
124 |
-
* @param array $opts
|
125 |
-
* @param string $version the version of the passed in options
|
126 |
-
*/
|
127 |
-
function opts_upgrade($opts, $version)
|
128 |
-
{
|
129 |
-
global $wp_post_types;
|
130 |
-
//If our version is not the same as in the db, time to update
|
131 |
-
if($version !== $this->version)
|
132 |
-
{
|
133 |
-
//Upgrading to 3.8.1
|
134 |
-
if(version_compare($version, '3.8.1', '<'))
|
135 |
-
{
|
136 |
-
$opts['post_page_root'] = get_option('page_on_front');
|
137 |
-
$opts['post_post_root'] = get_option('page_for_posts');
|
138 |
-
}
|
139 |
-
//Upgrading to 4.0
|
140 |
-
if(version_compare($version, '4.0.0', '<'))
|
141 |
-
{
|
142 |
-
//Only migrate if we haven't migrated yet
|
143 |
-
if(isset($opts['current_item_linked']))
|
144 |
-
{
|
145 |
-
//Loop through the old options, migrate some of them
|
146 |
-
foreach($opts as $option => $value)
|
147 |
-
{
|
148 |
-
//Handle all of our boolean options first, they're real easy, just add a 'b'
|
149 |
-
if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
|
150 |
-
{
|
151 |
-
$this->breadcrumb_trail->opt['b'.$option] = $value;
|
152 |
-
}
|
153 |
-
//Handle migration of anchor templates to the templates
|
154 |
-
else if(strpos($option, 'anchor') > 0)
|
155 |
-
{
|
156 |
-
$parts = explode('_', $option);
|
157 |
-
//Do excess slash removal sanitation
|
158 |
-
$this->breadcrumb_trail->opt['H' . $parts[0] . '_template'] = $value . '%htitle%</a>';
|
159 |
-
}
|
160 |
-
//Handle our abs integers
|
161 |
-
else if($option == 'max_title_length' || $option == 'post_post_root' || $option == 'post_page_root')
|
162 |
-
{
|
163 |
-
$this->breadcrumb_trail->opt['a' . $option] = $value;
|
164 |
-
}
|
165 |
-
//Now everything else, minus prefix and suffix
|
166 |
-
else if(strpos($option, 'prefix') === false && strpos($option, 'suffix') === false)
|
167 |
-
{
|
168 |
-
$this->breadcrumb_trail->opt['S' . $option] = $value;
|
169 |
-
}
|
170 |
-
}
|
171 |
-
}
|
172 |
-
//Add in the new settings for CPTs introduced in 4.0
|
173 |
-
foreach($wp_post_types as $post_type)
|
174 |
-
{
|
175 |
-
//We only want custom post types
|
176 |
-
if(!$post_type->_builtin)
|
177 |
-
{
|
178 |
-
//Add in the archive_display option
|
179 |
-
$this->breadcrumb_trail->opt['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
|
180 |
-
}
|
181 |
-
}
|
182 |
-
$opts = $this->breadcrumb_trail->opt;
|
183 |
-
}
|
184 |
-
if(version_compare($version, '4.0.1', '<'))
|
185 |
-
{
|
186 |
-
if(isset($opts['Hcurrent_item_template_no_anchor']))
|
187 |
-
{
|
188 |
-
unset($opts['Hcurrent_item_template_no_anchor']);
|
189 |
-
}
|
190 |
-
if(isset($opts['Hcurrent_item_template']))
|
191 |
-
{
|
192 |
-
unset($opts['Hcurrent_item_template']);
|
193 |
-
}
|
194 |
-
}
|
195 |
-
//Add custom post types
|
196 |
-
$this->find_posttypes($opts);
|
197 |
-
//Add custom taxonomy types
|
198 |
-
$this->find_taxonomies($opts);
|
199 |
-
//Save the passed in opts to the object's option array
|
200 |
-
$this->opt = $opts;
|
201 |
-
}
|
202 |
-
}
|
203 |
-
/**
|
204 |
-
* help action hook function
|
205 |
-
*
|
206 |
-
* @return string
|
207 |
-
*
|
208 |
-
*/
|
209 |
-
function help()
|
210 |
-
{
|
211 |
-
$screen = get_current_screen();
|
212 |
-
//Exit early if the add_help_tab function doesn't exist
|
213 |
-
if(!method_exists($screen, 'add_help_tab'))
|
214 |
-
{
|
215 |
-
return;
|
216 |
-
}
|
217 |
-
//Add contextual help on current screen
|
218 |
-
if($screen->id == 'settings_page_' . $this->identifier)
|
219 |
-
{
|
220 |
-
$general_tab = '<p>' . __('Tips for the settings are located below select options.',
|
221 |
-
'</p><h5>' . __('Resources',
|
222 |
-
sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.",
|
223 |
-
sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', '
|
224 |
-
sprintf(__('%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug.',
|
225 |
-
'<h5>' . __('Giving Back',
|
226 |
-
sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.',
|
227 |
-
sprintf(__('%sTranslate%s: Is your language not available? Contact John Havlik to get translating.',
|
228 |
-
|
229 |
-
$screen->add_help_tab(
|
230 |
-
array(
|
231 |
-
'id' => $this->identifier . '-base',
|
232 |
-
'title' => __('General',
|
233 |
-
'content' => $general_tab
|
234 |
-
));
|
235 |
-
$quickstart_tab = '<p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', '
|
236 |
-
'</p><h5>' . __('Breadcrumb trail with separators', '
|
237 |
-
<?php if(function_exists('bcn_display'))
|
238 |
-
{
|
239 |
-
bcn_display();
|
240 |
-
}?>
|
241 |
-
</div></code></pre>" .
|
242 |
-
'<h5>' . __('Breadcrumb trail in list form', '
|
243 |
-
<?php if(function_exists('bcn_display_list'))
|
244 |
-
{
|
245 |
-
bcn_display_list();
|
246 |
-
}?>
|
247 |
-
</ol></code></pre>";
|
248 |
-
$screen->add_help_tab(
|
249 |
-
array(
|
250 |
-
'id' => $this->identifier . '-quick-start',
|
251 |
-
'title' => __('Quick Start',
|
252 |
-
'content' => $quickstart_tab
|
253 |
-
));
|
254 |
-
$styling_tab = '<p>' . __('Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail.',
|
255 |
-
'<pre><code>.breadcrumbs
|
256 |
-
{
|
257 |
-
font-size: 1.1em;
|
258 |
-
color: #fff;
|
259 |
-
margin: 30px 0 0 10px;
|
260 |
-
position: relative;
|
261 |
-
float: left;
|
262 |
-
}</code></pre>';
|
263 |
-
$screen->add_help_tab(
|
264 |
-
array(
|
265 |
-
'id' => $this->identifier . '-styling',
|
266 |
-
'title' => __('Styling',
|
267 |
-
'content' => $styling_tab
|
268 |
-
));
|
269 |
-
$screen->add_help_tab(
|
270 |
-
array(
|
271 |
-
'id' => $this->identifier . '-import-export-reset',
|
272 |
-
'title' => __('Import/Export/Reset',
|
273 |
-
'content' => $this->import_form()
|
274 |
-
));
|
275 |
-
}
|
276 |
-
}
|
277 |
-
/**
|
278 |
-
* enqueue's the tab style sheet on the settings page
|
279 |
-
*/
|
280 |
-
function admin_styles()
|
281 |
-
{
|
282 |
-
wp_enqueue_style('mtekk_adminkit_tabs');
|
283 |
-
}
|
284 |
-
/**
|
285 |
-
* enqueue's the tab js and translation js on the settings page
|
286 |
-
*/
|
287 |
-
function admin_scripts()
|
288 |
-
{
|
289 |
-
//Enqueue ui-tabs
|
290 |
-
wp_enqueue_script('jquery-ui-tabs');
|
291 |
-
//Enqueue the admin tabs javascript
|
292 |
-
wp_enqueue_script('mtekk_adminkit_tabs');
|
293 |
-
//Load the translations for the tabs
|
294 |
-
wp_localize_script('mtekk_adminkit_tabs', 'objectL10n', array(
|
295 |
-
'mtad_uid' => 'bcn_admin',
|
296 |
-
'mtad_import' => __('Import',
|
297 |
-
'mtad_export' => __('Export',
|
298 |
-
'mtad_reset' => __('Reset',
|
299 |
-
));
|
300 |
-
}
|
301 |
-
/**
|
302 |
-
* The administrative page for Breadcrumb NavXT
|
303 |
-
*/
|
304 |
-
function admin_page()
|
305 |
-
{
|
306 |
-
global $wp_taxonomies, $wp_post_types;
|
307 |
-
$this->security();
|
308 |
-
//Let's call the parent version of the page, will handle our setting stuff
|
309 |
-
parent::admin_page();
|
310 |
-
?>
|
311 |
-
<div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', '
|
312 |
-
<?php
|
313 |
-
//We exit after the version check if there is an action the user needs to take before saving settings
|
314 |
-
if(!$this->version_check(get_option($this->unique_prefix . '_version')))
|
315 |
-
{
|
316 |
-
return;
|
317 |
-
}
|
318 |
-
?>
|
319 |
-
<form action="options-general.php?page=
|
320 |
-
<?php settings_fields('bcn_options');?>
|
321 |
-
<div id="hasadmintabs">
|
322 |
-
<fieldset id="general" class="bcn_options">
|
323 |
-
<h3><?php _e('General', '
|
324 |
-
<table class="form-table">
|
325 |
-
<?php
|
326 |
-
$this->input_text(__('Breadcrumb Separator', '
|
327 |
-
$this->input_text(__('Breadcrumb Max Title Length', '
|
328 |
-
?>
|
329 |
-
<tr valign="top">
|
330 |
-
<th scope="row">
|
331 |
-
<?php _e('Home Breadcrumb', '
|
332 |
-
</th>
|
333 |
-
<td>
|
334 |
-
<label>
|
335 |
-
<input name="bcn_options[bhome_display]" type="checkbox" id="bhome_display" value="true" <?php checked(true, $this->opt['bhome_display']); ?> />
|
336 |
-
<?php _e('Place the home breadcrumb in the trail.', '
|
337 |
-
</label><br />
|
338 |
-
<ul>
|
339 |
-
<li>
|
340 |
-
<label for="Shome_title">
|
341 |
-
<?php _e('Home Title: ','
|
342 |
-
<input type="text" name="bcn_options[Shome_title]" id="Shome_title" value="<?php echo esc_html($this->opt['Shome_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
|
343 |
-
</label>
|
344 |
-
</li>
|
345 |
-
</ul>
|
346 |
-
</td>
|
347 |
-
</tr>
|
348 |
-
<?php
|
349 |
-
$this->input_text(__('Home Template', '
|
350 |
-
$this->input_text(__('Home Template (Unlinked)', '
|
351 |
-
$this->input_check(__('Blog Breadcrumb', '
|
352 |
-
$this->input_text(__('Blog Template', '
|
353 |
-
$this->input_text(__('Blog Template (Unlinked)', '
|
354 |
-
?>
|
355 |
-
<tr valign="top">
|
356 |
-
<th scope="row">
|
357 |
-
<?php _e('Main Site Breadcrumb', '
|
358 |
-
</th>
|
359 |
-
<td>
|
360 |
-
<label>
|
361 |
-
<input name="bcn_options[bmainsite_display]" type="checkbox" id="bmainsite_display" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="true" <?php checked(true, $this->opt['bmainsite_display']); ?> />
|
362 |
-
<?php _e('Place the main site home breadcrumb in the trail in an multisite setup.', '
|
363 |
-
</label><br />
|
364 |
-
<ul>
|
365 |
-
<li>
|
366 |
-
<label for="Smainsite_title">
|
367 |
-
<?php _e('Main Site Home Title: ', '
|
368 |
-
<input type="text" name="bcn_options[Smainsite_title]" id="Smainsite_title" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt['Smainsite_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
|
369 |
-
<?php if(!is_multisite()){?><input type="hidden" name="bcn_options[Smainsite_title]" value="<?php echo htmlentities($this->opt['Smainsite_title'], ENT_COMPAT, 'UTF-8');?>" /><?php } ?>
|
370 |
-
</label>
|
371 |
-
</li>
|
372 |
-
</ul>
|
373 |
-
</td>
|
374 |
-
</tr>
|
375 |
-
<?php
|
376 |
-
$this->input_text(__('Main Site Home Template', '
|
377 |
-
$this->input_text(__('Main Site Home Template (Unlinked)', '
|
378 |
-
?>
|
379 |
-
</table>
|
380 |
-
</fieldset>
|
381 |
-
<fieldset id="current" class="bcn_options">
|
382 |
-
<h3><?php _e('Current Item', '
|
383 |
-
<table class="form-table">
|
384 |
-
<?php
|
385 |
-
$this->input_check(__('Link Current Item', '
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
$this->
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
$this->input_radio('Spost_post_taxonomy_type', '
|
408 |
-
$this->input_radio('Spost_post_taxonomy_type', '
|
409 |
-
|
410 |
-
$
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
$this->input_text(__('
|
426 |
-
$this->input_text(__('
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
$this->
|
444 |
-
$this->
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
$
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
}
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
return $
|
691 |
-
}
|
692 |
-
/**
|
693 |
-
* Outputs the breadcrumb trail
|
694 |
-
*
|
695 |
-
* @since 3.2.0
|
696 |
-
* @param (bool) $return Whether to return or echo the trail.
|
697 |
-
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
698 |
-
* @param (bool) $reverse Whether to reverse the output or not.
|
699 |
-
*/
|
700 |
-
function display_list($return = false, $linked = true, $reverse = false)
|
701 |
-
{
|
702 |
-
//Grab the current settings from the db
|
703 |
-
$this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
|
704 |
-
//Generate the breadcrumb trail
|
705 |
-
$this->breadcrumb_trail->fill();
|
706 |
-
return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
|
707 |
-
}
|
708 |
-
}
|
709 |
-
//Let's make an instance of our object takes care of everything
|
710 |
-
$bcn_admin = new bcn_admin;
|
711 |
-
/**
|
712 |
-
* A wrapper for the internal function in the class
|
713 |
-
*
|
714 |
-
* @param bool $return Whether to return or echo the trail. (optional)
|
715 |
-
* @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
|
716 |
-
* @param bool $reverse Whether to reverse the output or not. (optional)
|
717 |
-
*/
|
718 |
-
function bcn_display($return = false, $linked = true, $reverse = false)
|
719 |
-
{
|
720 |
-
global $bcn_admin;
|
721 |
-
if($bcn_admin !== null)
|
722 |
-
{
|
723 |
-
return $bcn_admin->display($return, $linked, $reverse);
|
724 |
-
}
|
725 |
-
}
|
726 |
-
/**
|
727 |
-
* A wrapper for the internal function in the class
|
728 |
-
*
|
729 |
-
* @param bool $return Whether to return or echo the trail. (optional)
|
730 |
-
* @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
|
731 |
-
* @param bool $reverse Whether to reverse the output or not. (optional)
|
732 |
-
*/
|
733 |
-
function bcn_display_list($return = false, $linked = true, $reverse = false)
|
734 |
-
{
|
735 |
-
global $bcn_admin;
|
736 |
-
if($bcn_admin !== null)
|
737 |
-
{
|
738 |
-
return $bcn_admin->display_list($return, $linked, $reverse);
|
739 |
-
}
|
740 |
}
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Plugin Name: Breadcrumb NavXT
|
4 |
+
Plugin URI: http://mtekk.us/code/breadcrumb-navxt/
|
5 |
+
Description: Adds a breadcrumb navigation showing the visitor's path to their current location. For details on how to use this plugin visit <a href="http://mtekk.us/code/breadcrumb-navxt/">Breadcrumb NavXT</a>.
|
6 |
+
Version: 4.1.0
|
7 |
+
Author: John Havlik
|
8 |
+
Author URI: http://mtekk.us/
|
9 |
+
License: GPL2
|
10 |
+
TextDomain: breadcrumb-navxt
|
11 |
+
DomainPath: /languages/
|
12 |
+
|
13 |
+
*/
|
14 |
+
/* Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
15 |
+
|
16 |
+
This program is free software; you can redistribute it and/or modify
|
17 |
+
it under the terms of the GNU General Public License as published by
|
18 |
+
the Free Software Foundation; either version 2 of the License, or
|
19 |
+
(at your option) any later version.
|
20 |
+
|
21 |
+
This program is distributed in the hope that it will be useful,
|
22 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
23 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
24 |
+
GNU General Public License for more details.
|
25 |
+
|
26 |
+
You should have received a copy of the GNU General Public License
|
27 |
+
along with this program; if not, write to the Free Software
|
28 |
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
29 |
+
*/
|
30 |
+
//Do a PHP version check, require 5.2 or newer
|
31 |
+
if(version_compare(phpversion(), '5.2.0', '<'))
|
32 |
+
{
|
33 |
+
//Only purpose of this function is to echo out the PHP version error
|
34 |
+
function bcn_phpold()
|
35 |
+
{
|
36 |
+
printf('<div class="error"><p>' . __('Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s', 'breadcrumb-navxt') . '</p></div>', phpversion(), '5.2.0');
|
37 |
+
}
|
38 |
+
//If we are in the admin, let's print a warning then return
|
39 |
+
if(is_admin())
|
40 |
+
{
|
41 |
+
add_action('admin_notices', 'bcn_phpold');
|
42 |
+
}
|
43 |
+
return;
|
44 |
+
}
|
45 |
+
if(!function_exists('mb_strlen'))
|
46 |
+
{
|
47 |
+
require_once(dirname(__FILE__) . '/includes/multibyte_supplicant.php');
|
48 |
+
}
|
49 |
+
//Include the breadcrumb class
|
50 |
+
require_once(dirname(__FILE__) . '/breadcrumb_navxt_class.php');
|
51 |
+
//Include the WP 2.8+ widget class
|
52 |
+
require_once(dirname(__FILE__) . '/breadcrumb_navxt_widget.php');
|
53 |
+
//Include admin base class
|
54 |
+
if(!class_exists('mtekk_adminKit'))
|
55 |
+
{
|
56 |
+
require_once(dirname(__FILE__) . '/includes/mtekk_adminkit.php');
|
57 |
+
}
|
58 |
+
/**
|
59 |
+
* The administrative interface class
|
60 |
+
*
|
61 |
+
*/
|
62 |
+
class bcn_admin extends mtekk_adminKit
|
63 |
+
{
|
64 |
+
protected $version = '4.1.0';
|
65 |
+
protected $full_name = 'Breadcrumb NavXT Settings';
|
66 |
+
protected $short_name = 'Breadcrumb NavXT';
|
67 |
+
protected $access_level = 'manage_options';
|
68 |
+
protected $identifier = 'breadcrumb-navxt';
|
69 |
+
protected $unique_prefix = 'bcn';
|
70 |
+
protected $plugin_basename = 'breadcrumb-navxt/breadcrumb_navxt_admin.php';
|
71 |
+
protected $support_url = 'http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-';
|
72 |
+
public $breadcrumb_trail;
|
73 |
+
/**
|
74 |
+
* Administrative interface class default constructor
|
75 |
+
* @param bcn_breadcrumb_trail $breadcrumb_trail a breadcrumb trail object
|
76 |
+
*/
|
77 |
+
function __construct(bcn_breadcrumb_trail $breadcrumb_trail)
|
78 |
+
{
|
79 |
+
$this->breadcrumb_trail = $breadcrumb_trail;
|
80 |
+
//Grab defaults from the breadcrumb_trail object
|
81 |
+
$this->opt = $this->breadcrumb_trail->opt;
|
82 |
+
//We need to add in the defaults for CPTs and custom taxonomies after all other plugins are loaded
|
83 |
+
add_action('wp_loaded', array($this, 'wp_loaded'));
|
84 |
+
//We set the plugin basename here, could manually set it, but this is for demonstration purposes
|
85 |
+
//$this->plugin_basename = plugin_basename(__FILE__);
|
86 |
+
//Register the WordPress 2.8 Widget
|
87 |
+
add_action('widgets_init', create_function('', 'return register_widget("'. $this->unique_prefix . '_widget");'));
|
88 |
+
//We're going to make sure we load the parent's constructor
|
89 |
+
parent::__construct();
|
90 |
+
}
|
91 |
+
/**
|
92 |
+
* admin initialization callback function
|
93 |
+
*
|
94 |
+
* is bound to wpordpress action 'admin_init' on instantiation
|
95 |
+
*
|
96 |
+
* @since 3.2.0
|
97 |
+
* @return void
|
98 |
+
*/
|
99 |
+
function init()
|
100 |
+
{
|
101 |
+
//We're going to make sure we run the parent's version of this function as well
|
102 |
+
parent::init();
|
103 |
+
}
|
104 |
+
function wp_loaded()
|
105 |
+
{
|
106 |
+
//First make sure our defaults are safe
|
107 |
+
$this->find_posttypes($this->opt);
|
108 |
+
$this->find_taxonomies($this->opt);
|
109 |
+
}
|
110 |
+
/**
|
111 |
+
* Makes sure the current user can manage options to proceed
|
112 |
+
*/
|
113 |
+
function security()
|
114 |
+
{
|
115 |
+
//If the user can not manage options we will die on them
|
116 |
+
if(!current_user_can($this->access_level))
|
117 |
+
{
|
118 |
+
wp_die(__('Insufficient privileges to proceed.', 'breadcrumb-navxt'));
|
119 |
+
}
|
120 |
+
}
|
121 |
+
/**
|
122 |
+
* Upgrades input options array, sets to $this->opt
|
123 |
+
*
|
124 |
+
* @param array $opts
|
125 |
+
* @param string $version the version of the passed in options
|
126 |
+
*/
|
127 |
+
function opts_upgrade($opts, $version)
|
128 |
+
{
|
129 |
+
global $wp_post_types;
|
130 |
+
//If our version is not the same as in the db, time to update
|
131 |
+
if($version !== $this->version)
|
132 |
+
{
|
133 |
+
//Upgrading to 3.8.1
|
134 |
+
if(version_compare($version, '3.8.1', '<'))
|
135 |
+
{
|
136 |
+
$opts['post_page_root'] = get_option('page_on_front');
|
137 |
+
$opts['post_post_root'] = get_option('page_for_posts');
|
138 |
+
}
|
139 |
+
//Upgrading to 4.0
|
140 |
+
if(version_compare($version, '4.0.0', '<'))
|
141 |
+
{
|
142 |
+
//Only migrate if we haven't migrated yet
|
143 |
+
if(isset($opts['current_item_linked']))
|
144 |
+
{
|
145 |
+
//Loop through the old options, migrate some of them
|
146 |
+
foreach($opts as $option => $value)
|
147 |
+
{
|
148 |
+
//Handle all of our boolean options first, they're real easy, just add a 'b'
|
149 |
+
if(strpos($option, 'display') > 0 || $option == 'current_item_linked')
|
150 |
+
{
|
151 |
+
$this->breadcrumb_trail->opt['b'.$option] = $value;
|
152 |
+
}
|
153 |
+
//Handle migration of anchor templates to the templates
|
154 |
+
else if(strpos($option, 'anchor') > 0)
|
155 |
+
{
|
156 |
+
$parts = explode('_', $option);
|
157 |
+
//Do excess slash removal sanitation
|
158 |
+
$this->breadcrumb_trail->opt['H' . $parts[0] . '_template'] = $value . '%htitle%</a>';
|
159 |
+
}
|
160 |
+
//Handle our abs integers
|
161 |
+
else if($option == 'max_title_length' || $option == 'post_post_root' || $option == 'post_page_root')
|
162 |
+
{
|
163 |
+
$this->breadcrumb_trail->opt['a' . $option] = $value;
|
164 |
+
}
|
165 |
+
//Now everything else, minus prefix and suffix
|
166 |
+
else if(strpos($option, 'prefix') === false && strpos($option, 'suffix') === false)
|
167 |
+
{
|
168 |
+
$this->breadcrumb_trail->opt['S' . $option] = $value;
|
169 |
+
}
|
170 |
+
}
|
171 |
+
}
|
172 |
+
//Add in the new settings for CPTs introduced in 4.0
|
173 |
+
foreach($wp_post_types as $post_type)
|
174 |
+
{
|
175 |
+
//We only want custom post types
|
176 |
+
if(!$post_type->_builtin)
|
177 |
+
{
|
178 |
+
//Add in the archive_display option
|
179 |
+
$this->breadcrumb_trail->opt['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
|
180 |
+
}
|
181 |
+
}
|
182 |
+
$opts = $this->breadcrumb_trail->opt;
|
183 |
+
}
|
184 |
+
if(version_compare($version, '4.0.1', '<'))
|
185 |
+
{
|
186 |
+
if(isset($opts['Hcurrent_item_template_no_anchor']))
|
187 |
+
{
|
188 |
+
unset($opts['Hcurrent_item_template_no_anchor']);
|
189 |
+
}
|
190 |
+
if(isset($opts['Hcurrent_item_template']))
|
191 |
+
{
|
192 |
+
unset($opts['Hcurrent_item_template']);
|
193 |
+
}
|
194 |
+
}
|
195 |
+
//Add custom post types
|
196 |
+
$this->find_posttypes($opts);
|
197 |
+
//Add custom taxonomy types
|
198 |
+
$this->find_taxonomies($opts);
|
199 |
+
//Save the passed in opts to the object's option array
|
200 |
+
$this->opt = $opts;
|
201 |
+
}
|
202 |
+
}
|
203 |
+
/**
|
204 |
+
* help action hook function
|
205 |
+
*
|
206 |
+
* @return string
|
207 |
+
*
|
208 |
+
*/
|
209 |
+
function help()
|
210 |
+
{
|
211 |
+
$screen = get_current_screen();
|
212 |
+
//Exit early if the add_help_tab function doesn't exist
|
213 |
+
if(!method_exists($screen, 'add_help_tab'))
|
214 |
+
{
|
215 |
+
return;
|
216 |
+
}
|
217 |
+
//Add contextual help on current screen
|
218 |
+
if($screen->id == 'settings_page_' . $this->identifier)
|
219 |
+
{
|
220 |
+
$general_tab = '<p>' . __('Tips for the settings are located below select options.', 'breadcrumb-navxt') .
|
221 |
+
'</p><h5>' . __('Resources', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
222 |
+
sprintf(__("%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website.", 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT tag archive.', 'breadcrumb-navxt') . '" href="http://mtekk.us/archives/tag/breadcrumb-navxt">', '</a>') . '</li><li>' .
|
223 |
+
sprintf(__('%sOnline Documentation%s: Check out the documentation for more indepth technical information.', 'breadcrumb-navxt'), '<a title="' . __('Go to the Breadcrumb NavXT online documentation', 'breadcrumb-navxt') . '" href="http://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/">', '</a>') . '</li><li>' .
|
224 |
+
sprintf(__('%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT support post for your version.', 'breadcrumb-navxt') . '" href="http://mtekk.us/archives/wordpress/plugins-wordpress/breadcrumb-navxt-' . $this->version . '/#respond">', '</a>') . '</li></ul>' .
|
225 |
+
'<h5>' . __('Giving Back', 'breadcrumb-navxt') . '</h5><ul><li>' .
|
226 |
+
sprintf(__('%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer.', 'breadcrumb-navxt'),'<a title="' . __('Go to PayPal to give a donation to Breadcrumb NavXT.', 'breadcrumb-navxt') . '" href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted">', '</a>') . '</li><li>' .
|
227 |
+
sprintf(__('%sTranslate%s: Is your language not available? Contact John Havlik to get translating.', 'breadcrumb-navxt'),'<a title="' . __('Go to the Breadcrumb NavXT translation project.', 'breadcrumb-navxt') . '" href="http://translate.mtekk.us/projects/breadcrumb-navxt">', '</a>') . '</li></ul>';
|
228 |
+
|
229 |
+
$screen->add_help_tab(
|
230 |
+
array(
|
231 |
+
'id' => $this->identifier . '-base',
|
232 |
+
'title' => __('General', 'breadcrumb-navxt'),
|
233 |
+
'content' => $general_tab
|
234 |
+
));
|
235 |
+
$quickstart_tab = '<p>' . __('For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme.', 'breadcrumb-navxt') .
|
236 |
+
'</p><h5>' . __('Breadcrumb trail with separators', 'breadcrumb-navxt') . '</h5><pre><code><div class="breadcrumbs">' . "
|
237 |
+
<?php if(function_exists('bcn_display'))
|
238 |
+
{
|
239 |
+
bcn_display();
|
240 |
+
}?>
|
241 |
+
</div></code></pre>" .
|
242 |
+
'<h5>' . __('Breadcrumb trail in list form', 'breadcrumb-navxt').'</h5><pre><code><ol class="breadcrumbs">'."
|
243 |
+
<?php if(function_exists('bcn_display_list'))
|
244 |
+
{
|
245 |
+
bcn_display_list();
|
246 |
+
}?>
|
247 |
+
</ol></code></pre>";
|
248 |
+
$screen->add_help_tab(
|
249 |
+
array(
|
250 |
+
'id' => $this->identifier . '-quick-start',
|
251 |
+
'title' => __('Quick Start', 'breadcrumb-navxt'),
|
252 |
+
'content' => $quickstart_tab
|
253 |
+
));
|
254 |
+
$styling_tab = '<p>' . __('Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail.', 'breadcrumb-navxt') . '</p>' .
|
255 |
+
'<pre><code>.breadcrumbs
|
256 |
+
{
|
257 |
+
font-size: 1.1em;
|
258 |
+
color: #fff;
|
259 |
+
margin: 30px 0 0 10px;
|
260 |
+
position: relative;
|
261 |
+
float: left;
|
262 |
+
}</code></pre>';
|
263 |
+
$screen->add_help_tab(
|
264 |
+
array(
|
265 |
+
'id' => $this->identifier . '-styling',
|
266 |
+
'title' => __('Styling', 'breadcrumb-navxt'),
|
267 |
+
'content' => $styling_tab
|
268 |
+
));
|
269 |
+
$screen->add_help_tab(
|
270 |
+
array(
|
271 |
+
'id' => $this->identifier . '-import-export-reset',
|
272 |
+
'title' => __('Import/Export/Reset', 'breadcrumb-navxt'),
|
273 |
+
'content' => $this->import_form()
|
274 |
+
));
|
275 |
+
}
|
276 |
+
}
|
277 |
+
/**
|
278 |
+
* enqueue's the tab style sheet on the settings page
|
279 |
+
*/
|
280 |
+
function admin_styles()
|
281 |
+
{
|
282 |
+
wp_enqueue_style('mtekk_adminkit_tabs');
|
283 |
+
}
|
284 |
+
/**
|
285 |
+
* enqueue's the tab js and translation js on the settings page
|
286 |
+
*/
|
287 |
+
function admin_scripts()
|
288 |
+
{
|
289 |
+
//Enqueue ui-tabs
|
290 |
+
wp_enqueue_script('jquery-ui-tabs');
|
291 |
+
//Enqueue the admin tabs javascript
|
292 |
+
wp_enqueue_script('mtekk_adminkit_tabs');
|
293 |
+
//Load the translations for the tabs
|
294 |
+
wp_localize_script('mtekk_adminkit_tabs', 'objectL10n', array(
|
295 |
+
'mtad_uid' => 'bcn_admin',
|
296 |
+
'mtad_import' => __('Import', 'breadcrumb-navxt'),
|
297 |
+
'mtad_export' => __('Export', 'breadcrumb-navxt'),
|
298 |
+
'mtad_reset' => __('Reset', 'breadcrumb-navxt'),
|
299 |
+
));
|
300 |
+
}
|
301 |
+
/**
|
302 |
+
* The administrative page for Breadcrumb NavXT
|
303 |
+
*/
|
304 |
+
function admin_page()
|
305 |
+
{
|
306 |
+
global $wp_taxonomies, $wp_post_types;
|
307 |
+
$this->security();
|
308 |
+
//Let's call the parent version of the page, will handle our setting stuff
|
309 |
+
parent::admin_page();
|
310 |
+
?>
|
311 |
+
<div class="wrap"><h2><?php _e('Breadcrumb NavXT Settings', 'breadcrumb-navxt'); ?></h2>
|
312 |
+
<?php
|
313 |
+
//We exit after the version check if there is an action the user needs to take before saving settings
|
314 |
+
if(!$this->version_check(get_option($this->unique_prefix . '_version')))
|
315 |
+
{
|
316 |
+
return;
|
317 |
+
}
|
318 |
+
?>
|
319 |
+
<form action="options-general.php?page=breadcrumb-navxt" method="post" id="bcn_admin-options">
|
320 |
+
<?php settings_fields('bcn_options');?>
|
321 |
+
<div id="hasadmintabs">
|
322 |
+
<fieldset id="general" class="bcn_options">
|
323 |
+
<h3><?php _e('General', 'breadcrumb-navxt'); ?></h3>
|
324 |
+
<table class="form-table">
|
325 |
+
<?php
|
326 |
+
$this->input_text(__('Breadcrumb Separator', 'breadcrumb-navxt'), 'hseparator', '32', false, __('Placed in between each breadcrumb.', 'breadcrumb-navxt'));
|
327 |
+
$this->input_text(__('Breadcrumb Max Title Length', 'breadcrumb-navxt'), 'amax_title_length', '10');
|
328 |
+
?>
|
329 |
+
<tr valign="top">
|
330 |
+
<th scope="row">
|
331 |
+
<?php _e('Home Breadcrumb', 'breadcrumb-navxt'); ?>
|
332 |
+
</th>
|
333 |
+
<td>
|
334 |
+
<label>
|
335 |
+
<input name="bcn_options[bhome_display]" type="checkbox" id="bhome_display" value="true" <?php checked(true, $this->opt['bhome_display']); ?> />
|
336 |
+
<?php _e('Place the home breadcrumb in the trail.', 'breadcrumb-navxt'); ?>
|
337 |
+
</label><br />
|
338 |
+
<ul>
|
339 |
+
<li>
|
340 |
+
<label for="Shome_title">
|
341 |
+
<?php _e('Home Title: ','breadcrumb-navxt');?>
|
342 |
+
<input type="text" name="bcn_options[Shome_title]" id="Shome_title" value="<?php echo esc_html($this->opt['Shome_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
|
343 |
+
</label>
|
344 |
+
</li>
|
345 |
+
</ul>
|
346 |
+
</td>
|
347 |
+
</tr>
|
348 |
+
<?php
|
349 |
+
$this->input_text(__('Home Template', 'breadcrumb-navxt'), 'Hhome_template', '64', false, __('The template for the home breadcrumb.', 'breadcrumb-navxt'));
|
350 |
+
$this->input_text(__('Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hhome_template_no_anchor', '64', false, __('The template for the home breadcrumb, used when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
351 |
+
$this->input_check(__('Blog Breadcrumb', 'breadcrumb-navxt'), 'bblog_display', __('Place the blog breadcrumb in the trail.', 'breadcrumb-navxt'), (get_option('show_on_front') !== "page"));
|
352 |
+
$this->input_text(__('Blog Template', 'breadcrumb-navxt'), 'Hblog_template', '64', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments.', 'breadcrumb-navxt'));
|
353 |
+
$this->input_text(__('Blog Template (Unlinked)', 'breadcrumb-navxt'), 'Hblog_template_no_anchor', '64', (get_option('show_on_front') !== "page"), __('The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
354 |
+
?>
|
355 |
+
<tr valign="top">
|
356 |
+
<th scope="row">
|
357 |
+
<?php _e('Main Site Breadcrumb', 'breadcrumb-navxt'); ?>
|
358 |
+
</th>
|
359 |
+
<td>
|
360 |
+
<label>
|
361 |
+
<input name="bcn_options[bmainsite_display]" type="checkbox" id="bmainsite_display" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="true" <?php checked(true, $this->opt['bmainsite_display']); ?> />
|
362 |
+
<?php _e('Place the main site home breadcrumb in the trail in an multisite setup.', 'breadcrumb-navxt'); ?>
|
363 |
+
</label><br />
|
364 |
+
<ul>
|
365 |
+
<li>
|
366 |
+
<label for="Smainsite_title">
|
367 |
+
<?php _e('Main Site Home Title: ', 'breadcrumb-navxt');?>
|
368 |
+
<input type="text" name="bcn_options[Smainsite_title]" id="Smainsite_title" <?php if(!is_multisite()){echo 'disabled="disabled" class="disabled"';}?> value="<?php echo htmlentities($this->opt['Smainsite_title'], ENT_COMPAT, 'UTF-8'); ?>" size="20" />
|
369 |
+
<?php if(!is_multisite()){?><input type="hidden" name="bcn_options[Smainsite_title]" value="<?php echo htmlentities($this->opt['Smainsite_title'], ENT_COMPAT, 'UTF-8');?>" /><?php } ?>
|
370 |
+
</label>
|
371 |
+
</li>
|
372 |
+
</ul>
|
373 |
+
</td>
|
374 |
+
</tr>
|
375 |
+
<?php
|
376 |
+
$this->input_text(__('Main Site Home Template', 'breadcrumb-navxt'), 'Hmainsite_template', '64', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments.', 'breadcrumb-navxt'));
|
377 |
+
$this->input_text(__('Main Site Home Template (Unlinked)', 'breadcrumb-navxt'), 'Hmainsite_template_no_anchor', '64', !is_multisite(), __('The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
378 |
+
?>
|
379 |
+
</table>
|
380 |
+
</fieldset>
|
381 |
+
<fieldset id="current" class="bcn_options">
|
382 |
+
<h3><?php _e('Current Item', 'breadcrumb-navxt'); ?></h3>
|
383 |
+
<table class="form-table">
|
384 |
+
<?php
|
385 |
+
$this->input_check(__('Link Current Item', 'breadcrumb-navxt'), 'bcurrent_item_linked', __('Yes'));
|
386 |
+
$this->input_check(__('Paged Breadcrumb', 'breadcrumb-navxt'), 'bpaged_display', __('Include the paged breadcrumb in the breadcrumb trail.', 'breadcrumb-navxt'), false, __('Indicates that the user is on a page other than the first on paginated posts/pages.', 'breadcrumb-navxt'));
|
387 |
+
$this->input_text(__('Paged Template', 'breadcrumb-navxt'), 'Hpaged_template', '64', false, __('The template for paged breadcrumbs.', 'breadcrumb-navxt'));
|
388 |
+
?>
|
389 |
+
</table>
|
390 |
+
</fieldset>
|
391 |
+
<fieldset id="single" class="bcn_options">
|
392 |
+
<h3><?php _e('Posts & Pages', 'breadcrumb-navxt'); ?></h3>
|
393 |
+
<table class="form-table">
|
394 |
+
<?php
|
395 |
+
$this->input_text(__('Post Template', 'breadcrumb-navxt'), 'Hpost_post_template', '64', false, __('The template for post breadcrumbs.', 'breadcrumb-navxt'));
|
396 |
+
$this->input_text(__('Post Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_post_template_no_anchor', '64', false, __('The template for post breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
397 |
+
$this->input_check(__('Post Taxonomy Display', 'breadcrumb-navxt'), 'bpost_post_taxonomy_display', __('Show the taxonomy leading to a post in the breadcrumb trail.', 'breadcrumb-navxt'));
|
398 |
+
?>
|
399 |
+
<tr valign="top">
|
400 |
+
<th scope="row">
|
401 |
+
<?php _e('Post Taxonomy', 'breadcrumb-navxt'); ?>
|
402 |
+
</th>
|
403 |
+
<td>
|
404 |
+
<?php
|
405 |
+
$this->input_radio('Spost_post_taxonomy_type', 'category', __('Categories'));
|
406 |
+
$this->input_radio('Spost_post_taxonomy_type', 'date', __('Dates'));
|
407 |
+
$this->input_radio('Spost_post_taxonomy_type', 'post_tag', __('Tags'));
|
408 |
+
$this->input_radio('Spost_post_taxonomy_type', 'page', __('Pages'));
|
409 |
+
//Loop through all of the taxonomies in the array
|
410 |
+
foreach($wp_taxonomies as $taxonomy)
|
411 |
+
{
|
412 |
+
//We only want custom taxonomies
|
413 |
+
if(($taxonomy->object_type == 'post' || is_array($taxonomy->object_type) && in_array('post', $taxonomy->object_type)) && !$taxonomy->_builtin)
|
414 |
+
{
|
415 |
+
$this->input_radio('Spost_post_taxonomy_type', $taxonomy->name, mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8'));
|
416 |
+
}
|
417 |
+
}
|
418 |
+
?>
|
419 |
+
<span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb-navxt'); ?></span>
|
420 |
+
</td>
|
421 |
+
</tr>
|
422 |
+
<?php
|
423 |
+
$this->input_text(__('Page Template', 'breadcrumb-navxt'), 'Hpost_page_template', '64', false, __('The template for page breadcrumbs.', 'breadcrumb-navxt'));
|
424 |
+
$this->input_text(__('Page Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_page_template_no_anchor', '64', false, __('The template for page breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
425 |
+
$this->input_text(__('Attachment Template', 'breadcrumb-navxt'), 'Hpost_attachment_template', '64', false, __('The template for attachment breadcrumbs.', 'breadcrumb-navxt'));
|
426 |
+
$this->input_text(__('Attachment Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_attachment_template_no_anchor', '64', false, __('The template for attachment breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
427 |
+
?>
|
428 |
+
</table>
|
429 |
+
</fieldset>
|
430 |
+
<?php
|
431 |
+
//Loop through all of the post types in the array
|
432 |
+
foreach($wp_post_types as $post_type)
|
433 |
+
{
|
434 |
+
//We only want custom post types
|
435 |
+
if(!$post_type->_builtin)
|
436 |
+
{
|
437 |
+
?>
|
438 |
+
<fieldset id="post_<?php echo $post_type->name ?>" class="bcn_options">
|
439 |
+
<h3><?php echo $post_type->labels->singular_name; ?></h3>
|
440 |
+
<table class="form-table">
|
441 |
+
<?php
|
442 |
+
$this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template', '64', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))));
|
443 |
+
$this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'Hpost_' . $post_type->name . '_template_no_anchor', '64', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))));
|
444 |
+
$optid = $this->get_valid_id('apost_' . $post_type->name . '_root');
|
445 |
+
?>
|
446 |
+
<tr valign="top">
|
447 |
+
<th scope="row">
|
448 |
+
<label for="<?php echo $optid;?>"><?php printf(__('%s Root Page', 'breadcrumb-navxt'), $post_type->labels->singular_name);?></label>
|
449 |
+
</th>
|
450 |
+
<td>
|
451 |
+
<?php wp_dropdown_pages(array('name' => $this->unique_prefix . '_options[apost_' . $post_type->name . '_root]', 'id' => $optid, 'echo' => 1, 'show_option_none' => __( '— Select —' ), 'option_none_value' => '0', 'selected' => $this->opt['apost_' . $post_type->name . '_root']));?>
|
452 |
+
</td>
|
453 |
+
</tr>
|
454 |
+
<?php
|
455 |
+
$this->input_check(sprintf(__('%s Archive Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_archive_display', sprintf(__('Show the breadcrumb for the %s post type archives in the breadcrumb trail.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))), !$post_type->has_archive);
|
456 |
+
$this->input_check(sprintf(__('%s Taxonomy Display', 'breadcrumb-navxt'), $post_type->labels->singular_name), 'bpost_' . $post_type->name . '_taxonomy_display', sprintf(__('Show the taxonomy leading to a %s in the breadcrumb trail.', 'breadcrumb-navxt'), strtolower(__($post_type->labels->singular_name))));
|
457 |
+
?>
|
458 |
+
<tr valign="top">
|
459 |
+
<th scope="row">
|
460 |
+
<?php printf(__('%s Taxonomy', 'breadcrumb-navxt'), $post_type->labels->singular_name); ?>
|
461 |
+
</th>
|
462 |
+
<td>
|
463 |
+
<?php
|
464 |
+
$this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'date', __('Dates'));
|
465 |
+
$this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', 'page', __('Pages'));
|
466 |
+
//Loop through all of the taxonomies in the array
|
467 |
+
foreach($wp_taxonomies as $taxonomy)
|
468 |
+
{
|
469 |
+
//We only want custom taxonomies
|
470 |
+
if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
|
471 |
+
{
|
472 |
+
$this->input_radio('Spost_' . $post_type->name . '_taxonomy_type', $taxonomy->name, $taxonomy->labels->singular_name);
|
473 |
+
}
|
474 |
+
}
|
475 |
+
?>
|
476 |
+
<span class="setting-description"><?php _e('The taxonomy which the breadcrumb trail will show.', 'breadcrumb-navxt'); ?></span>
|
477 |
+
</td>
|
478 |
+
</tr>
|
479 |
+
</table>
|
480 |
+
</fieldset>
|
481 |
+
<?php
|
482 |
+
}
|
483 |
+
}?>
|
484 |
+
<fieldset id="tax" class="bcn_options alttab">
|
485 |
+
<h3><?php _e('Categories & Tags', 'breadcrumb-navxt'); ?></h3>
|
486 |
+
<table class="form-table">
|
487 |
+
<?php
|
488 |
+
$this->input_text(__('Category Template', 'breadcrumb-navxt'), 'Hcategory_template', '64', false, __('The template for category breadcrumbs.', 'breadcrumb-navxt'));
|
489 |
+
$this->input_text(__('Category Template (Unlinked)', 'breadcrumb-navxt'), 'Hcategory_template_no_anchor', '64', false, __('The template for category breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
490 |
+
$this->input_text(__('Tag Template', 'breadcrumb-navxt'), 'Hpost_tag_template', '64', false, __('The template for tag breadcrumbs.', 'breadcrumb-navxt'));
|
491 |
+
$this->input_text(__('Tag Template (Unlinked)', 'breadcrumb-navxt'), 'Hpost_tag_template_no_anchor', '64', false, __('The template for tag breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
492 |
+
?>
|
493 |
+
</table>
|
494 |
+
</fieldset>
|
495 |
+
<?php
|
496 |
+
//Loop through all of the taxonomies in the array
|
497 |
+
foreach($wp_taxonomies as $taxonomy)
|
498 |
+
{
|
499 |
+
//We only want custom taxonomies
|
500 |
+
if(!$taxonomy->_builtin)
|
501 |
+
{
|
502 |
+
?>
|
503 |
+
<fieldset id="<?php echo $taxonomy->name; ?>" class="bcn_options alttab">
|
504 |
+
<h3><?php echo mb_convert_case(__($taxonomy->label), MB_CASE_TITLE, 'UTF-8'); ?></h3>
|
505 |
+
<table class="form-table">
|
506 |
+
<?php
|
507 |
+
$this->input_text(sprintf(__('%s Template', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template', '64', false, sprintf(__('The template for %s breadcrumbs.', 'breadcrumb-navxt'), strtolower(__($taxonomy->label))));
|
508 |
+
$this->input_text(sprintf(__('%s Template (Unlinked)', 'breadcrumb-navxt'), $taxonomy->labels->singular_name), 'H' . $taxonomy->name . '_template_no_anchor', '64', false, sprintf(__('The template for %s breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'), strtolower(__($taxonomy->label))));
|
509 |
+
?>
|
510 |
+
</table>
|
511 |
+
</fieldset>
|
512 |
+
<?php
|
513 |
+
}
|
514 |
+
}
|
515 |
+
?>
|
516 |
+
<fieldset id="miscellaneous" class="bcn_options">
|
517 |
+
<h3><?php _e('Miscellaneous', 'breadcrumb-navxt'); ?></h3>
|
518 |
+
<table class="form-table">
|
519 |
+
<?php
|
520 |
+
$this->input_text(__('Author Template', 'breadcrumb-navxt'), 'Hauthor_template', '64', false, __('The template for author breadcrumbs.', 'breadcrumb-navxt'));
|
521 |
+
$this->input_text(__('Author Template (Unlinked)', 'breadcrumb-navxt'), 'Hauthor_template_no_anchor', '64', false, __('The template for author breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
522 |
+
$this->input_select(__('Author Display Format', 'breadcrumb-navxt'), 'Sauthor_name', array("display_name", "nickname", "first_name", "last_name"), false, __('display_name uses the name specified in "Display name publicly as" under the user profile the others correspond to options in the user profile.', 'breadcrumb-navxt'));
|
523 |
+
$this->input_text(__('Date Template', 'breadcrumb-navxt'), 'Hdate_template', '64', false, __('The template for date breadcrumbs.', 'breadcrumb-navxt'));
|
524 |
+
$this->input_text(__('Date Template (Unlinked)', 'breadcrumb-navxt'), 'Hdate_template_no_anchor', '64', false, __('The template for date breadcrumbs, used only when the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
525 |
+
$this->input_text(__('Search Template', 'breadcrumb-navxt'), 'Hsearch_template', '64', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages.', 'breadcrumb-navxt'));
|
526 |
+
$this->input_text(__('Search Template (Unlinked)', 'breadcrumb-navxt'), 'Hsearch_template_no_anchor', '64', false, __('The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked.', 'breadcrumb-navxt'));
|
527 |
+
$this->input_text(__('404 Title', 'breadcrumb-navxt'), 'S404_title', '32');
|
528 |
+
$this->input_text(__('404 Template', 'breadcrumb-navxt'), 'H404_template', '64', false, __('The template for 404 breadcrumbs.', 'breadcrumb-navxt'));
|
529 |
+
?>
|
530 |
+
</table>
|
531 |
+
</fieldset>
|
532 |
+
</div>
|
533 |
+
<p class="submit"><input type="submit" class="button-primary" name="bcn_admin_options" value="<?php esc_attr_e('Save Changes') ?>" /></p>
|
534 |
+
</form>
|
535 |
+
<?php
|
536 |
+
//Need to add a separate menu thing for this
|
537 |
+
$this->import_form(); ?>
|
538 |
+
</div>
|
539 |
+
<?php
|
540 |
+
}
|
541 |
+
function opts_update_prebk(&$opts)
|
542 |
+
{
|
543 |
+
//Add custom post types
|
544 |
+
$this->find_posttypes($this->opt);
|
545 |
+
//Add custom taxonomy types
|
546 |
+
$this->find_taxonomies($this->opt);
|
547 |
+
}
|
548 |
+
/**
|
549 |
+
* Places settings into $opts array, if missing, for the registered post types
|
550 |
+
*
|
551 |
+
* @param array $opts
|
552 |
+
*/
|
553 |
+
function find_posttypes(&$opts)
|
554 |
+
{
|
555 |
+
global $wp_post_types, $wp_taxonomies;
|
556 |
+
//Loop through all of the post types in the array
|
557 |
+
foreach($wp_post_types as $post_type)
|
558 |
+
{
|
559 |
+
//We only want custom post types
|
560 |
+
if(!$post_type->_builtin)
|
561 |
+
{
|
562 |
+
//If the post type does not have settings in the options array yet, we need to load some defaults
|
563 |
+
if(!array_key_exists('Hpost_' . $post_type->name . '_template', $opts) || !$post_type->hierarchical && !array_key_exists('Spost_' . $post_type->name . '_taxonomy_type', $opts))
|
564 |
+
{
|
565 |
+
//Add the necessary option array members
|
566 |
+
$opts['Hpost_' . $post_type->name . '_template'] = __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt');
|
567 |
+
$opts['Hpost_' . $post_type->name . '_template_no_anchor'] = __('%htitle%', 'breadcrumb-navxt');
|
568 |
+
$opts['bpost_' . $post_type->name . '_archive_display'] = $post_type->has_archive;
|
569 |
+
//Do type dependent tasks
|
570 |
+
if($post_type->hierarchical)
|
571 |
+
{
|
572 |
+
//Set post_root for hierarchical types
|
573 |
+
$opts['apost_' . $post_type->name . '_root'] = get_option('page_on_front');
|
574 |
+
}
|
575 |
+
//If it is flat, we need a taxonomy selection
|
576 |
+
else
|
577 |
+
{
|
578 |
+
//Set post_root for flat types
|
579 |
+
$opts['apost_' . $post_type->name . '_root'] = get_option('page_for_posts');
|
580 |
+
}
|
581 |
+
//Default to not displaying a taxonomy
|
582 |
+
$opts['bpost_' . $post_type->name . '_taxonomy_display'] = false;
|
583 |
+
//Loop through all of the possible taxonomies
|
584 |
+
foreach($wp_taxonomies as $taxonomy)
|
585 |
+
{
|
586 |
+
//Activate the first taxonomy valid for this post type and exit the loop
|
587 |
+
if($taxonomy->object_type == $post_type->name || in_array($post_type->name, $taxonomy->object_type))
|
588 |
+
{
|
589 |
+
$opts['bpost_' . $post_type->name . '_taxonomy_display'] = true;
|
590 |
+
$opts['Spost_' . $post_type->name . '_taxonomy_type'] = $taxonomy->name;
|
591 |
+
break;
|
592 |
+
}
|
593 |
+
}
|
594 |
+
//If there are no valid taxonomies for this type, we default to not displaying taxonomies for this post type
|
595 |
+
if(!isset($opts['Spost_' . $post_type->name . '_taxonomy_type']))
|
596 |
+
{
|
597 |
+
$opts['Spost_' . $post_type->name . '_taxonomy_type'] = 'date';
|
598 |
+
}
|
599 |
+
}
|
600 |
+
}
|
601 |
+
}
|
602 |
+
}
|
603 |
+
/**
|
604 |
+
* Places settings into $opts array, if missing, for the registered taxonomies
|
605 |
+
*
|
606 |
+
* @param $opts
|
607 |
+
*/
|
608 |
+
function find_taxonomies(&$opts)
|
609 |
+
{
|
610 |
+
global $wp_taxonomies;
|
611 |
+
//We'll add our custom taxonomy stuff at this time
|
612 |
+
foreach($wp_taxonomies as $taxonomy)
|
613 |
+
{
|
614 |
+
//We only want custom taxonomies
|
615 |
+
if(!$taxonomy->_builtin)
|
616 |
+
{
|
617 |
+
//If the taxonomy does not have settings in the options array yet, we need to load some defaults
|
618 |
+
if(!array_key_exists('H' . $taxonomy->name . '_template', $opts))
|
619 |
+
{
|
620 |
+
//Add the necessary option array members
|
621 |
+
$opts['H' . $taxonomy->name . '_template'] = __(sprintf('<a title="Go to the %%title%% %s archives." href="%%link%%">%%htitle%%</a>', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
|
622 |
+
$opts['H' . $taxonomy->name . '_template_no_anchor'] = __(sprintf('%%htitle%%', $taxonomy->labels->singular_name), 'breadcrumb-navxt');
|
623 |
+
}
|
624 |
+
}
|
625 |
+
}
|
626 |
+
}
|
627 |
+
/**
|
628 |
+
* Outputs the breadcrumb trail
|
629 |
+
*
|
630 |
+
* @param (bool) $return Whether to return or echo the trail.
|
631 |
+
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
632 |
+
* @param (bool) $reverse Whether to reverse the output or not.
|
633 |
+
*/
|
634 |
+
function display($return = false, $linked = true, $reverse = false)
|
635 |
+
{
|
636 |
+
//Grab the current settings from the db
|
637 |
+
$this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
|
638 |
+
//Generate the breadcrumb trail
|
639 |
+
$this->breadcrumb_trail->fill();
|
640 |
+
return $this->breadcrumb_trail->display($return, $linked, $reverse);
|
641 |
+
}
|
642 |
+
/**
|
643 |
+
* Outputs the breadcrumb trail
|
644 |
+
*
|
645 |
+
* @since 3.2.0
|
646 |
+
* @param (bool) $return Whether to return or echo the trail.
|
647 |
+
* @param (bool) $linked Whether to allow hyperlinks in the trail or not.
|
648 |
+
* @param (bool) $reverse Whether to reverse the output or not.
|
649 |
+
*/
|
650 |
+
function display_list($return = false, $linked = true, $reverse = false)
|
651 |
+
{
|
652 |
+
//Grab the current settings from the db
|
653 |
+
$this->breadcrumb_trail->opt = wp_parse_args(get_option('bcn_options'), $this->opt);
|
654 |
+
//Generate the breadcrumb trail
|
655 |
+
$this->breadcrumb_trail->fill();
|
656 |
+
return $this->breadcrumb_trail->display_list($return, $linked, $reverse);
|
657 |
+
}
|
658 |
+
}
|
659 |
+
//In the future there will be a hook for this so derivatives of bcn_breadcrumb_trail can use the admin
|
660 |
+
$bcn_breadcrumb_trail = new bcn_breadcrumb_trail();
|
661 |
+
//Let's make an instance of our object takes care of everything
|
662 |
+
$bcn_admin = new bcn_admin($bcn_breadcrumb_trail);
|
663 |
+
/**
|
664 |
+
* A wrapper for the internal function in the class
|
665 |
+
*
|
666 |
+
* @param bool $return Whether to return or echo the trail. (optional)
|
667 |
+
* @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
|
668 |
+
* @param bool $reverse Whether to reverse the output or not. (optional)
|
669 |
+
*/
|
670 |
+
function bcn_display($return = false, $linked = true, $reverse = false)
|
671 |
+
{
|
672 |
+
global $bcn_admin;
|
673 |
+
if($bcn_admin !== null)
|
674 |
+
{
|
675 |
+
return $bcn_admin->display($return, $linked, $reverse);
|
676 |
+
}
|
677 |
+
}
|
678 |
+
/**
|
679 |
+
* A wrapper for the internal function in the class
|
680 |
+
*
|
681 |
+
* @param bool $return Whether to return or echo the trail. (optional)
|
682 |
+
* @param bool $linked Whether to allow hyperlinks in the trail or not. (optional)
|
683 |
+
* @param bool $reverse Whether to reverse the output or not. (optional)
|
684 |
+
*/
|
685 |
+
function bcn_display_list($return = false, $linked = true, $reverse = false)
|
686 |
+
{
|
687 |
+
global $bcn_admin;
|
688 |
+
if($bcn_admin !== null)
|
689 |
+
{
|
690 |
+
return $bcn_admin->display_list($return, $linked, $reverse);
|
691 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
692 |
}
|
breadcrumb_navxt_class.php
CHANGED
@@ -1,1140 +1,1161 @@
|
|
1 |
-
<?php
|
2 |
-
/*
|
3 |
-
Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
4 |
-
|
5 |
-
This program is free software; you can redistribute it and/or modify
|
6 |
-
it under the terms of the GNU General Public License as published by
|
7 |
-
the Free Software Foundation; either version 2 of the License, or
|
8 |
-
(at your option) any later version.
|
9 |
-
|
10 |
-
This program is distributed in the hope that it will be useful,
|
11 |
-
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
-
GNU General Public License for more details.
|
14 |
-
|
15 |
-
You should have received a copy of the GNU General Public License
|
16 |
-
along with this program; if not, write to the Free Software
|
17 |
-
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
18 |
-
*/
|
19 |
-
|
20 |
-
//The breadcrumb class
|
21 |
-
class bcn_breadcrumb
|
22 |
-
{
|
23 |
-
//Our member variables
|
24 |
-
//The main text that will be shown
|
25 |
-
protected $title;
|
26 |
-
//The breadcrumb's template, used durring assembly
|
27 |
-
protected $template;
|
28 |
-
//The breadcrumb's no anchor template, used durring assembly when there won't be an anchor
|
29 |
-
protected $template_no_anchor = '%title%';
|
30 |
-
//Boolean, is this element linked
|
31 |
-
protected $linked;
|
32 |
-
//The link the breadcrumb leads to, null if $linked == false
|
33 |
-
protected $url;
|
34 |
-
protected $_tags = array(
|
35 |
-
'%title%',
|
36 |
-
'%link%',
|
37 |
-
'%htitle%',
|
38 |
-
'%type%');
|
39 |
-
//The type of this breadcrumb
|
40 |
-
public $type;
|
41 |
-
/**
|
42 |
-
* The enhanced default constructor, ends up setting all parameters via the set_ functions
|
43 |
-
*
|
44 |
-
* @param string $title (optional) The title of the breadcrumb
|
45 |
-
* @param string $template (optional) The html template for the breadcrumb
|
46 |
-
* @param string $type (optional) The breadcrumb type
|
47 |
-
* @param string $url (optional) The url the breadcrumb links to
|
48 |
-
*/
|
49 |
-
public function bcn_breadcrumb($title = '', $template = '', $type = '', $url = NULL)
|
50 |
-
{
|
51 |
-
//Set the title
|
52 |
-
$this->set_title($title);
|
53 |
-
//Assign the breadcrumb template
|
54 |
-
if($template == NULL)
|
55 |
-
{
|
56 |
-
$template = __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
57 |
-
}
|
58 |
-
if($url == NULL)
|
59 |
-
{
|
60 |
-
$this->template_no_anchor = $template;
|
61 |
-
}
|
62 |
-
else
|
63 |
-
{
|
64 |
-
$this->template = $template;
|
65 |
-
}
|
66 |
-
//The breadcrumb type
|
67 |
-
$this->type = $type;
|
68 |
-
//Always NULL if unlinked
|
69 |
-
$this->set_url($url);
|
70 |
-
}
|
71 |
-
/**
|
72 |
-
* Function to set the protected title member
|
73 |
-
*
|
74 |
-
* @param string $title The title of the breadcrumb
|
75 |
-
*/
|
76 |
-
public function set_title($title)
|
77 |
-
{
|
78 |
-
//Set the title
|
79 |
-
$this->title = apply_filters('bcn_breadcrumb_title', __($title, '
|
80 |
-
}
|
81 |
-
/**
|
82 |
-
* Function to get the protected title member
|
83 |
-
*
|
84 |
-
* @return $this->title
|
85 |
-
*/
|
86 |
-
public function get_title()
|
87 |
-
{
|
88 |
-
//Return the title
|
89 |
-
return $this->title;
|
90 |
-
}
|
91 |
-
/**
|
92 |
-
* Function to set the internal URL variable
|
93 |
-
*
|
94 |
-
* @param string $url the url to link to
|
95 |
-
*/
|
96 |
-
public function set_url($url)
|
97 |
-
{
|
98 |
-
$this->url = $url;
|
99 |
-
//Set linked to true if we set a non-null $url
|
100 |
-
if($url)
|
101 |
-
{
|
102 |
-
$this->linked = true;
|
103 |
-
}
|
104 |
-
}
|
105 |
-
/**
|
106 |
-
* Sets the internal breadcrumb template
|
107 |
-
*
|
108 |
-
* @param string $template the template to use durring assebly
|
109 |
-
*/
|
110 |
-
public function set_template($template)
|
111 |
-
{
|
112 |
-
//Assign the breadcrumb template
|
113 |
-
$this->template = $template;
|
114 |
-
}
|
115 |
-
/**
|
116 |
-
* Append a type entry to the type array
|
117 |
-
*
|
118 |
-
* @param string $type the type to append
|
119 |
-
*/
|
120 |
-
public function add_type($type)
|
121 |
-
{
|
122 |
-
$this->type[] = $type;
|
123 |
-
}
|
124 |
-
/**
|
125 |
-
* This function will intelligently trim the title to the value passed in through $max_length.
|
126 |
-
*
|
127 |
-
* @param int $max_length of the title.
|
128 |
-
*/
|
129 |
-
public function title_trim($max_length)
|
130 |
-
{
|
131 |
-
//Make sure that we are not making it longer with that ellipse
|
132 |
-
if((mb_strlen($this->title) + 3) > $max_length)
|
133 |
-
{
|
134 |
-
//Trim the title
|
135 |
-
$this->title = mb_substr($this->title, 0, $max_length - 1);
|
136 |
-
//Make sure we can split a, four keywords are available %link%, %title%, %htitle%, and %type%pace, but we want to limmit to cutting at max an additional 25%
|
137 |
-
if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
|
138 |
-
{
|
139 |
-
//Don't split mid word
|
140 |
-
while(mb_substr($this->title,-1) != ' ')
|
141 |
-
{
|
142 |
-
$this->title = mb_substr($this->title, 0, -1);
|
143 |
-
}
|
144 |
-
}
|
145 |
-
//Remove the whitespace at the end and add the hellip
|
146 |
-
$this->title = rtrim($this->title) . '…';
|
147 |
-
}
|
148 |
-
}
|
149 |
-
/**
|
150 |
-
* Assembles the parts of the breadcrumb into a html string
|
151 |
-
*
|
152 |
-
* @param bool $linked (optional) Allow the output to contain anchors?
|
153 |
-
* @return string The compiled breadcrumb string
|
154 |
-
*/
|
155 |
-
public function assemble($linked = true)
|
156 |
-
{
|
157 |
-
//var_dump($this);
|
158 |
-
//Build our replacements array
|
159 |
-
$replacements = array(
|
160 |
-
esc_attr(strip_tags($this->title)),
|
161 |
-
$this->url,
|
162 |
-
$this->title,
|
163 |
-
$this->type);
|
164 |
-
//The type may be an array, implode it if that is the case
|
165 |
-
if(is_array($replacements[3]))
|
166 |
-
{
|
167 |
-
$replacements[3] = implode(' ', $replacements[3]);
|
168 |
-
}
|
169 |
-
//If we are linked we'll need to use the normal template
|
170 |
-
if($this->linked && $linked)
|
171 |
-
{
|
172 |
-
//Return the assembled breadcrumb string
|
173 |
-
return str_replace($this->_tags, $replacements, $this->template);
|
174 |
-
}
|
175 |
-
//Otherwise we use the no anchor template
|
176 |
-
else
|
177 |
-
{
|
178 |
-
//Return the assembled breadcrumb string
|
179 |
-
return str_replace($this->_tags, $replacements, $this->template_no_anchor);
|
180 |
-
}
|
181 |
-
}
|
182 |
-
}
|
183 |
-
|
184 |
-
//The trail class
|
185 |
-
class bcn_breadcrumb_trail
|
186 |
-
{
|
187 |
-
//Our member variables
|
188 |
-
private $version = '4.0
|
189 |
-
//An array of breadcrumbs
|
190 |
-
public $trail = array();
|
191 |
-
//The options
|
192 |
-
public $opt;
|
193 |
-
//Default constructor
|
194 |
-
function bcn_breadcrumb_trail()
|
195 |
-
{
|
196 |
-
//Load the translation domain as the next part needs it
|
197 |
-
load_plugin_textdomain($domain = '
|
198 |
-
//Initilize with default option values
|
199 |
-
$this->opt = array(
|
200 |
-
//Should the mainsite be shown
|
201 |
-
'bmainsite_display' => true,
|
202 |
-
//Title displayed when for the main site
|
203 |
-
'Smainsite_title' => __('Home', '
|
204 |
-
//The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
205 |
-
'Hmainsite_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
206 |
-
//The breadcrumb template for the main site, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
207 |
-
'Hmainsite_template_no_anchor' => '%htitle%',
|
208 |
-
//Should the home page be shown
|
209 |
-
'bhome_display' => true,
|
210 |
-
//Title displayed when is_home() returns true
|
211 |
-
'Shome_title' => __('Home', '
|
212 |
-
//The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
213 |
-
'Hhome_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
214 |
-
//The breadcrumb template for the home page, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
215 |
-
'Hhome_template_no_anchor' => '%htitle%',
|
216 |
-
//Should the blog page be shown globally
|
217 |
-
'bblog_display' => true,
|
218 |
-
//The breadcrumb template for the blog page only in static front page mode, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
219 |
-
'Hblog_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
220 |
-
//The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
221 |
-
'Hblog_template_no_anchor' => '%htitle%',
|
222 |
-
//Separator that is placed between each item in the breadcrumb trial, but not placed before
|
223 |
-
//the first and not after the last breadcrumb
|
224 |
-
'hseparator' => ' > ',
|
225 |
-
//The maximum title lenght
|
226 |
-
'amax_title_length' => 0,
|
227 |
-
//Current item options, really only applies to static pages and posts unless other current items are linked
|
228 |
-
'bcurrent_item_linked' => false,
|
229 |
-
//The breadcrumb template for current items, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
230 |
-
//'Hcurrent_item_template' => __('<a title="Reload the current page." href="%link%">%htitle%</a>', '
|
231 |
-
//The breadcrumb template for current items, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
232 |
-
//'Hcurrent_item_template_no_anchor' => '%htitle%',
|
233 |
-
//Static page options
|
234 |
-
//The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
235 |
-
'Hpost_page_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
236 |
-
//The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
237 |
-
'Hpost_page_template_no_anchor' => '%htitle%',
|
238 |
-
//Just a link to the page on front property
|
239 |
-
'apost_page_root' => get_option('page_on_front'),
|
240 |
-
//Paged options
|
241 |
-
//The template for paged breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
242 |
-
'Hpaged_template' => __('Page %htitle%', '
|
243 |
-
//Should we try filling out paged information
|
244 |
-
'bpaged_display' => false,
|
245 |
-
//The post options previously singleblogpost
|
246 |
-
//The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
247 |
-
'Hpost_post_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
248 |
-
//The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
249 |
-
'Hpost_post_template_no_anchor' => '%htitle%',
|
250 |
-
//Just a link for the page for posts
|
251 |
-
'apost_post_root' => get_option('page_for_posts'),
|
252 |
-
//Should the trail include the taxonomy of the post
|
253 |
-
'bpost_post_taxonomy_display' => true,
|
254 |
-
//What taxonomy should be shown leading to the post, tag or category
|
255 |
-
'Spost_post_taxonomy_type' => 'category',
|
256 |
-
//Attachment settings
|
257 |
-
//TODO: Need to move attachments to support via normal post handlers
|
258 |
-
//The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
259 |
-
'Hpost_attachment_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', '
|
260 |
-
//The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
261 |
-
'Hpost_attachment_template_no_anchor' => '%htitle%',
|
262 |
-
//404 page settings
|
263 |
-
//The template for 404 breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
264 |
-
'H404_template' => '%htitle%',
|
265 |
-
//The text to be shown in the breadcrumb for a 404 page
|
266 |
-
'S404_title' => __('404', '
|
267 |
-
//Search page options
|
268 |
-
//The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
269 |
-
'Hsearch_template' => __('Search results for '<a title="Go to the first page of search results for %title%." href="%link%">%htitle%</a>'', '
|
270 |
-
//The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
|
271 |
-
'Hsearch_template_no_anchor' => __('Search results for '%htitle%'', '
|
272 |
-
//Tag related stuff
|
273 |
-
//The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
274 |
-
'Hpost_tag_template' => __('<a title="Go to the %title% tag archives." href="%link%">%htitle%</a>', '
|
275 |
-
//The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
276 |
-
'Hpost_tag_template_no_anchor' => '%htitle%',
|
277 |
-
//Author page stuff
|
278 |
-
//The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
279 |
-
'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%">%htitle%</a>', '
|
280 |
-
//The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
281 |
-
'Hauthor_template_no_anchor' => __('Articles by: %htitle%', '
|
282 |
-
//Which of the various WordPress display types should the author breadcrumb display
|
283 |
-
'Sauthor_name' => 'display_name',
|
284 |
-
//Category stuff
|
285 |
-
//The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
286 |
-
'Hcategory_template' => __('<a title="Go to the %title% category archives." href="%link%">%htitle%</a>', '
|
287 |
-
//The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
288 |
-
'Hcategory_template_no_anchor' => '%htitle%',
|
289 |
-
//The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
290 |
-
'Hdate_template' => __('<a title="Go to the %title% archives." href="%link%">%htitle%</a>', '
|
291 |
-
//The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
292 |
-
'Hdate_template_no_anchor' => '%htitle%'
|
293 |
-
);
|
294 |
-
}
|
295 |
-
/**
|
296 |
-
* This returns the internal version
|
297 |
-
*
|
298 |
-
* @return string internal version of the Breadcrumb trail
|
299 |
-
*/
|
300 |
-
public function get_version()
|
301 |
-
{
|
302 |
-
return $this->version;
|
303 |
-
}
|
304 |
-
/**
|
305 |
-
* Adds a breadcrumb to the breadcrumb trail
|
306 |
-
*
|
307 |
-
* @return pointer to the just added Breadcrumb
|
308 |
-
* @param bcn_breadcrumb $object Breadcrumb to add to the trail
|
309 |
-
*/
|
310 |
-
function &add(bcn_breadcrumb $object)
|
311 |
-
{
|
312 |
-
$this->trail[] = $object;
|
313 |
-
//Return the just added object
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
*
|
319 |
-
*
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
*
|
339 |
-
*
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
$breadcrumb->
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
*
|
367 |
-
*
|
368 |
-
*
|
369 |
-
* @param
|
370 |
-
* @param
|
371 |
-
*
|
372 |
-
*
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
$bcn_object
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
$
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
$parent =
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
*
|
434 |
-
*
|
435 |
-
*
|
436 |
-
* @param
|
437 |
-
*
|
438 |
-
*
|
439 |
-
*
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
array(
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
//
|
537 |
-
$
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
*
|
559 |
-
*
|
560 |
-
*
|
561 |
-
*
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
//
|
617 |
-
if($
|
618 |
-
{
|
619 |
-
$
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
|
641 |
-
//
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
//
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
}
|
676 |
-
//
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
//If we
|
719 |
-
if($this->opt['
|
720 |
-
{
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
$
|
850 |
-
}
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
//Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
|
917 |
-
$this->trail[] = new bcn_breadcrumb($
|
918 |
-
}
|
919 |
-
/**
|
920 |
-
* Breadcrumb Trail Filling Function
|
921 |
-
*
|
922 |
-
* This functions fills
|
923 |
-
*/
|
924 |
-
function
|
925 |
-
{
|
926 |
-
global $
|
927 |
-
//
|
928 |
-
if(
|
929 |
-
{
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
//
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
if(
|
1015 |
-
{
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
{
|
1021 |
-
|
1022 |
-
|
1023 |
-
}
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
*
|
1029 |
-
*
|
1030 |
-
*
|
1031 |
-
* @param bool $
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1140 |
}
|
1 |
+
<?php
|
2 |
+
/*
|
3 |
+
Copyright 2007-2012 John Havlik (email : mtekkmonkey@gmail.com)
|
4 |
+
|
5 |
+
This program is free software; you can redistribute it and/or modify
|
6 |
+
it under the terms of the GNU General Public License as published by
|
7 |
+
the Free Software Foundation; either version 2 of the License, or
|
8 |
+
(at your option) any later version.
|
9 |
+
|
10 |
+
This program is distributed in the hope that it will be useful,
|
11 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
+
GNU General Public License for more details.
|
14 |
+
|
15 |
+
You should have received a copy of the GNU General Public License
|
16 |
+
along with this program; if not, write to the Free Software
|
17 |
+
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
18 |
+
*/
|
19 |
+
|
20 |
+
//The breadcrumb class
|
21 |
+
class bcn_breadcrumb
|
22 |
+
{
|
23 |
+
//Our member variables
|
24 |
+
//The main text that will be shown
|
25 |
+
protected $title;
|
26 |
+
//The breadcrumb's template, used durring assembly
|
27 |
+
protected $template;
|
28 |
+
//The breadcrumb's no anchor template, used durring assembly when there won't be an anchor
|
29 |
+
protected $template_no_anchor = '%title%';
|
30 |
+
//Boolean, is this element linked
|
31 |
+
protected $linked;
|
32 |
+
//The link the breadcrumb leads to, null if $linked == false
|
33 |
+
protected $url;
|
34 |
+
protected $_tags = array(
|
35 |
+
'%title%',
|
36 |
+
'%link%',
|
37 |
+
'%htitle%',
|
38 |
+
'%type%');
|
39 |
+
//The type of this breadcrumb
|
40 |
+
public $type;
|
41 |
+
/**
|
42 |
+
* The enhanced default constructor, ends up setting all parameters via the set_ functions
|
43 |
+
*
|
44 |
+
* @param string $title (optional) The title of the breadcrumb
|
45 |
+
* @param string $template (optional) The html template for the breadcrumb
|
46 |
+
* @param string $type (optional) The breadcrumb type
|
47 |
+
* @param string $url (optional) The url the breadcrumb links to
|
48 |
+
*/
|
49 |
+
public function bcn_breadcrumb($title = '', $template = '', $type = '', $url = NULL)
|
50 |
+
{
|
51 |
+
//Set the title
|
52 |
+
$this->set_title($title);
|
53 |
+
//Assign the breadcrumb template
|
54 |
+
if($template == NULL)
|
55 |
+
{
|
56 |
+
$template = __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt');
|
57 |
+
}
|
58 |
+
if($url == NULL)
|
59 |
+
{
|
60 |
+
$this->template_no_anchor = $template;
|
61 |
+
}
|
62 |
+
else
|
63 |
+
{
|
64 |
+
$this->template = $template;
|
65 |
+
}
|
66 |
+
//The breadcrumb type
|
67 |
+
$this->type = $type;
|
68 |
+
//Always NULL if unlinked
|
69 |
+
$this->set_url($url);
|
70 |
+
}
|
71 |
+
/**
|
72 |
+
* Function to set the protected title member
|
73 |
+
*
|
74 |
+
* @param string $title The title of the breadcrumb
|
75 |
+
*/
|
76 |
+
public function set_title($title)
|
77 |
+
{
|
78 |
+
//Set the title
|
79 |
+
$this->title = apply_filters('bcn_breadcrumb_title', __($title, 'breadcrumb-navxt'));
|
80 |
+
}
|
81 |
+
/**
|
82 |
+
* Function to get the protected title member
|
83 |
+
*
|
84 |
+
* @return $this->title
|
85 |
+
*/
|
86 |
+
public function get_title()
|
87 |
+
{
|
88 |
+
//Return the title
|
89 |
+
return $this->title;
|
90 |
+
}
|
91 |
+
/**
|
92 |
+
* Function to set the internal URL variable
|
93 |
+
*
|
94 |
+
* @param string $url the url to link to
|
95 |
+
*/
|
96 |
+
public function set_url($url)
|
97 |
+
{
|
98 |
+
$this->url = $url;
|
99 |
+
//Set linked to true if we set a non-null $url
|
100 |
+
if($url)
|
101 |
+
{
|
102 |
+
$this->linked = true;
|
103 |
+
}
|
104 |
+
}
|
105 |
+
/**
|
106 |
+
* Sets the internal breadcrumb template
|
107 |
+
*
|
108 |
+
* @param string $template the template to use durring assebly
|
109 |
+
*/
|
110 |
+
public function set_template($template)
|
111 |
+
{
|
112 |
+
//Assign the breadcrumb template
|
113 |
+
$this->template = $template;
|
114 |
+
}
|
115 |
+
/**
|
116 |
+
* Append a type entry to the type array
|
117 |
+
*
|
118 |
+
* @param string $type the type to append
|
119 |
+
*/
|
120 |
+
public function add_type($type)
|
121 |
+
{
|
122 |
+
$this->type[] = $type;
|
123 |
+
}
|
124 |
+
/**
|
125 |
+
* This function will intelligently trim the title to the value passed in through $max_length.
|
126 |
+
*
|
127 |
+
* @param int $max_length of the title.
|
128 |
+
*/
|
129 |
+
public function title_trim($max_length)
|
130 |
+
{
|
131 |
+
//Make sure that we are not making it longer with that ellipse
|
132 |
+
if((mb_strlen($this->title) + 3) > $max_length)
|
133 |
+
{
|
134 |
+
//Trim the title
|
135 |
+
$this->title = mb_substr($this->title, 0, $max_length - 1);
|
136 |
+
//Make sure we can split a, four keywords are available %link%, %title%, %htitle%, and %type%pace, but we want to limmit to cutting at max an additional 25%
|
137 |
+
if(mb_strpos($this->title, ' ', .75 * $max_length) > 0)
|
138 |
+
{
|
139 |
+
//Don't split mid word
|
140 |
+
while(mb_substr($this->title,-1) != ' ')
|
141 |
+
{
|
142 |
+
$this->title = mb_substr($this->title, 0, -1);
|
143 |
+
}
|
144 |
+
}
|
145 |
+
//Remove the whitespace at the end and add the hellip
|
146 |
+
$this->title = rtrim($this->title) . '…';
|
147 |
+
}
|
148 |
+
}
|
149 |
+
/**
|
150 |
+
* Assembles the parts of the breadcrumb into a html string
|
151 |
+
*
|
152 |
+
* @param bool $linked (optional) Allow the output to contain anchors?
|
153 |
+
* @return string The compiled breadcrumb string
|
154 |
+
*/
|
155 |
+
public function assemble($linked = true)
|
156 |
+
{
|
157 |
+
//var_dump($this);
|
158 |
+
//Build our replacements array
|
159 |
+
$replacements = array(
|
160 |
+
esc_attr(strip_tags($this->title)),
|
161 |
+
$this->url,
|
162 |
+
$this->title,
|
163 |
+
$this->type);
|
164 |
+
//The type may be an array, implode it if that is the case
|
165 |
+
if(is_array($replacements[3]))
|
166 |
+
{
|
167 |
+
$replacements[3] = implode(' ', $replacements[3]);
|
168 |
+
}
|
169 |
+
//If we are linked we'll need to use the normal template
|
170 |
+
if($this->linked && $linked)
|
171 |
+
{
|
172 |
+
//Return the assembled breadcrumb string
|
173 |
+
return str_replace($this->_tags, $replacements, $this->template);
|
174 |
+
}
|
175 |
+
//Otherwise we use the no anchor template
|
176 |
+
else
|
177 |
+
{
|
178 |
+
//Return the assembled breadcrumb string
|
179 |
+
return str_replace($this->_tags, $replacements, $this->template_no_anchor);
|
180 |
+
}
|
181 |
+
}
|
182 |
+
}
|
183 |
+
|
184 |
+
//The trail class
|
185 |
+
class bcn_breadcrumb_trail
|
186 |
+
{
|
187 |
+
//Our member variables
|
188 |
+
private $version = '4.1.0';
|
189 |
+
//An array of breadcrumbs
|
190 |
+
public $trail = array();
|
191 |
+
//The options
|
192 |
+
public $opt;
|
193 |
+
//Default constructor
|
194 |
+
function bcn_breadcrumb_trail()
|
195 |
+
{
|
196 |
+
//Load the translation domain as the next part needs it
|
197 |
+
load_plugin_textdomain($domain = 'breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
|
198 |
+
//Initilize with default option values
|
199 |
+
$this->opt = array(
|
200 |
+
//Should the mainsite be shown
|
201 |
+
'bmainsite_display' => true,
|
202 |
+
//Title displayed when for the main site
|
203 |
+
'Smainsite_title' => __('Home', 'breadcrumb-navxt'),
|
204 |
+
//The breadcrumb template for the main site, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
205 |
+
'Hmainsite_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
206 |
+
//The breadcrumb template for the main site, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
207 |
+
'Hmainsite_template_no_anchor' => '%htitle%',
|
208 |
+
//Should the home page be shown
|
209 |
+
'bhome_display' => true,
|
210 |
+
//Title displayed when is_home() returns true
|
211 |
+
'Shome_title' => __('Home', 'breadcrumb-navxt'),
|
212 |
+
//The breadcrumb template for the home page, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
213 |
+
'Hhome_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
214 |
+
//The breadcrumb template for the home page, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
215 |
+
'Hhome_template_no_anchor' => '%htitle%',
|
216 |
+
//Should the blog page be shown globally
|
217 |
+
'bblog_display' => true,
|
218 |
+
//The breadcrumb template for the blog page only in static front page mode, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
219 |
+
'Hblog_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
220 |
+
//The breadcrumb template for the blog page only in static front page mode, used when an anchor is not needed, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
221 |
+
'Hblog_template_no_anchor' => '%htitle%',
|
222 |
+
//Separator that is placed between each item in the breadcrumb trial, but not placed before
|
223 |
+
//the first and not after the last breadcrumb
|
224 |
+
'hseparator' => ' > ',
|
225 |
+
//The maximum title lenght
|
226 |
+
'amax_title_length' => 0,
|
227 |
+
//Current item options, really only applies to static pages and posts unless other current items are linked
|
228 |
+
'bcurrent_item_linked' => false,
|
229 |
+
//The breadcrumb template for current items, this is global, four keywords are available %link%, %title%, %htitle%, and %type%
|
230 |
+
//'Hcurrent_item_template' => __('<a title="Reload the current page." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
231 |
+
//The breadcrumb template for current items, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
232 |
+
//'Hcurrent_item_template_no_anchor' => '%htitle%',
|
233 |
+
//Static page options
|
234 |
+
//The anchor template for page breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
235 |
+
'Hpost_page_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
236 |
+
//The anchor template for page breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
237 |
+
'Hpost_page_template_no_anchor' => '%htitle%',
|
238 |
+
//Just a link to the page on front property
|
239 |
+
'apost_page_root' => get_option('page_on_front'),
|
240 |
+
//Paged options
|
241 |
+
//The template for paged breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
242 |
+
'Hpaged_template' => __('Page %htitle%', 'breadcrumb-navxt'),
|
243 |
+
//Should we try filling out paged information
|
244 |
+
'bpaged_display' => false,
|
245 |
+
//The post options previously singleblogpost
|
246 |
+
//The breadcrumb template for post breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
247 |
+
'Hpost_post_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
248 |
+
//The breadcrumb template for post breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
249 |
+
'Hpost_post_template_no_anchor' => '%htitle%',
|
250 |
+
//Just a link for the page for posts
|
251 |
+
'apost_post_root' => get_option('page_for_posts'),
|
252 |
+
//Should the trail include the taxonomy of the post
|
253 |
+
'bpost_post_taxonomy_display' => true,
|
254 |
+
//What taxonomy should be shown leading to the post, tag or category
|
255 |
+
'Spost_post_taxonomy_type' => 'category',
|
256 |
+
//Attachment settings
|
257 |
+
//TODO: Need to move attachments to support via normal post handlers
|
258 |
+
//The breadcrumb template for attachment breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
259 |
+
'Hpost_attachment_template' => __('<a title="Go to %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
260 |
+
//The breadcrumb template for attachment breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
261 |
+
'Hpost_attachment_template_no_anchor' => '%htitle%',
|
262 |
+
//404 page settings
|
263 |
+
//The template for 404 breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
264 |
+
'H404_template' => '%htitle%',
|
265 |
+
//The text to be shown in the breadcrumb for a 404 page
|
266 |
+
'S404_title' => __('404', 'breadcrumb-navxt'),
|
267 |
+
//Search page options
|
268 |
+
//The breadcrumb template for search breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
269 |
+
'Hsearch_template' => __('Search results for '<a title="Go to the first page of search results for %title%." href="%link%">%htitle%</a>'', 'breadcrumb-navxt'),
|
270 |
+
//The breadcrumb template for search breadcrumbs, used when an anchor is not necessary, four keywords are available %link%, %title%, %htitle%, and %type%
|
271 |
+
'Hsearch_template_no_anchor' => __('Search results for '%htitle%'', 'breadcrumb-navxt'),
|
272 |
+
//Tag related stuff
|
273 |
+
//The breadcrumb template for tag breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
274 |
+
'Hpost_tag_template' => __('<a title="Go to the %title% tag archives." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
275 |
+
//The breadcrumb template for tag breadcrumbs, used when an anchor is not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
276 |
+
'Hpost_tag_template_no_anchor' => '%htitle%',
|
277 |
+
//Author page stuff
|
278 |
+
//The anchor template for author breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
279 |
+
'Hauthor_template' => __('Articles by: <a title="Go to the first page of posts by %title%." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
280 |
+
//The anchor template for author breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
281 |
+
'Hauthor_template_no_anchor' => __('Articles by: %htitle%', 'breadcrumb-navxt'),
|
282 |
+
//Which of the various WordPress display types should the author breadcrumb display
|
283 |
+
'Sauthor_name' => 'display_name',
|
284 |
+
//Category stuff
|
285 |
+
//The breadcrumb template for category breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
286 |
+
'Hcategory_template' => __('<a title="Go to the %title% category archives." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
287 |
+
//The breadcrumb template for category breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
288 |
+
'Hcategory_template_no_anchor' => '%htitle%',
|
289 |
+
//The breadcrumb template for date breadcrumbs, four keywords are available %link%, %title%, %htitle%, and %type%
|
290 |
+
'Hdate_template' => __('<a title="Go to the %title% archives." href="%link%">%htitle%</a>', 'breadcrumb-navxt'),
|
291 |
+
//The breadcrumb template for date breadcrumbs, used when anchors are not needed, four keywords are available %link%, %title%, %htitle%, and %type%
|
292 |
+
'Hdate_template_no_anchor' => '%htitle%'
|
293 |
+
);
|
294 |
+
}
|
295 |
+
/**
|
296 |
+
* This returns the internal version
|
297 |
+
*
|
298 |
+
* @return string internal version of the Breadcrumb trail
|
299 |
+
*/
|
300 |
+
public function get_version()
|
301 |
+
{
|
302 |
+
return $this->version;
|
303 |
+
}
|
304 |
+
/**
|
305 |
+
* Adds a breadcrumb to the breadcrumb trail
|
306 |
+
*
|
307 |
+
* @return pointer to the just added Breadcrumb
|
308 |
+
* @param bcn_breadcrumb $object Breadcrumb to add to the trail
|
309 |
+
*/
|
310 |
+
function &add(bcn_breadcrumb $object)
|
311 |
+
{
|
312 |
+
$this->trail[] = $object;
|
313 |
+
//Return the just added object
|
314 |
+
return $this->trail[count($this->trail) - 1];
|
315 |
+
}
|
316 |
+
/**
|
317 |
+
* A Breadcrumb Trail Filling Function
|
318 |
+
*
|
319 |
+
* This functions fills a breadcrumb for a search page.
|
320 |
+
*/
|
321 |
+
function do_search()
|
322 |
+
{
|
323 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
324 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_search_query(), $this->opt['Hsearch_template_no_anchor'], array('search', 'current-item')));
|
325 |
+
//If we're paged, or allowing the current item to be linked, let's link to the first page
|
326 |
+
if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
|
327 |
+
{
|
328 |
+
//Since we are paged and are linking the root breadcrumb, time to change to the regular template
|
329 |
+
$breadcrumb->set_template($this->opt['Hsearch_template']);
|
330 |
+
//Figure out the hyperlink for the anchor
|
331 |
+
$url = get_option('home') . '?s=' . str_replace(' ', '+', get_search_query());
|
332 |
+
//Figure out the anchor for the search
|
333 |
+
$breadcrumb->set_url($url);
|
334 |
+
}
|
335 |
+
}
|
336 |
+
/**
|
337 |
+
* A Breadcrumb Trail Filling Function
|
338 |
+
*
|
339 |
+
* This functions fills a breadcrumb for an author page.
|
340 |
+
*/
|
341 |
+
function do_author()
|
342 |
+
{
|
343 |
+
global $author;
|
344 |
+
//Get the Author name, note it is an object
|
345 |
+
$curauth = (isset($_GET['author_name'])) ? get_userdatabylogin($author_name) : get_userdata(intval($author));
|
346 |
+
//Setup array of valid author_name values
|
347 |
+
$valid_author_name = array('display_name', 'nickname', 'first_name', 'last_name');
|
348 |
+
//This translation allows us to easily select the display type later on
|
349 |
+
$author_name = $this->opt['Sauthor_name'];
|
350 |
+
//Make sure user picks only safe values
|
351 |
+
if(in_array($author_name, $valid_author_name))
|
352 |
+
{
|
353 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
354 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(apply_filters('the_author', $curauth->$author_name), $this->opt['Hauthor_template_no_anchor'], array('author', 'current-item')));
|
355 |
+
//If we're paged, or allowing the current item to be linked, let's link to the first page
|
356 |
+
if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
|
357 |
+
{
|
358 |
+
//Set the template to our one containing an anchor
|
359 |
+
$breadcrumb->set_template($this->opt['Hauthor_template']);
|
360 |
+
$breadcrumb->set_url(get_author_posts_url($curauth->ID));
|
361 |
+
}
|
362 |
+
}
|
363 |
+
}
|
364 |
+
/**
|
365 |
+
* A Breadcrumb Trail Filling Function
|
366 |
+
*
|
367 |
+
* This function fills breadcrumbs for any post taxonomy.
|
368 |
+
* @param int $id The id of the post to figure out the taxonomy for.
|
369 |
+
* @param string $type The post type of the post to figure out the taxonomy for.
|
370 |
+
* @param int $parent (optional) The id of the parent of the current post, used if hiearchal posts will be the "taxonomy" for the current post
|
371 |
+
*
|
372 |
+
* TODO: Add logic for contextual taxonomy selection
|
373 |
+
*/
|
374 |
+
function post_taxonomy($id, $type, $parent = null)
|
375 |
+
{
|
376 |
+
//Check to see if breadcrumbs for the taxonomy of the post needs to be generated
|
377 |
+
if($this->opt['bpost_' . $type . '_taxonomy_display'])
|
378 |
+
{
|
379 |
+
//Check if we have a date 'taxonomy' request
|
380 |
+
if($this->opt['Spost_' . $type . '_taxonomy_type'] == 'date')
|
381 |
+
{
|
382 |
+
$this->do_archive_by_date();
|
383 |
+
}
|
384 |
+
//Handle all hierarchical taxonomies, including categories
|
385 |
+
else if(is_taxonomy_hierarchical($this->opt['Spost_' . $type . '_taxonomy_type']))
|
386 |
+
{
|
387 |
+
//Fill a temporary object with the terms
|
388 |
+
$bcn_object = get_the_terms($id, $this->opt['Spost_' . $type . '_taxonomy_type']);
|
389 |
+
if(is_array($bcn_object))
|
390 |
+
{
|
391 |
+
//Now find which one has a parent, pick the first one that does
|
392 |
+
$bcn_use_term = key($bcn_object);
|
393 |
+
foreach($bcn_object as $key=>$object)
|
394 |
+
{
|
395 |
+
//We want the first term hiearchy
|
396 |
+
if($object->parent > 0)
|
397 |
+
{
|
398 |
+
$bcn_use_term = $key;
|
399 |
+
//We found our first term hiearchy, can exit loop now
|
400 |
+
break;
|
401 |
+
}
|
402 |
+
}
|
403 |
+
//Fill out the term hiearchy
|
404 |
+
$this->term_parents($bcn_object[$bcn_use_term]->term_id, $this->opt['Spost_' . $type . '_taxonomy_type']);
|
405 |
+
}
|
406 |
+
}
|
407 |
+
//Handle the use of hierarchical posts as the 'taxonomy'
|
408 |
+
else if(is_post_type_hierarchical($this->opt['Spost_' . $type . '_taxonomy_type']))
|
409 |
+
{
|
410 |
+
if($parent == null)
|
411 |
+
{
|
412 |
+
//We have to grab the post to find its parent, can't use $post for this one
|
413 |
+
$parent = get_post($id);
|
414 |
+
$parent = $parent->post_parent;
|
415 |
+
}
|
416 |
+
//Done with the current item, now on to the parents
|
417 |
+
$bcn_frontpage = get_option('page_on_front');
|
418 |
+
//If there is a parent page let's find it
|
419 |
+
if($parent && $id != $parent && $bcn_frontpage != $parent)
|
420 |
+
{
|
421 |
+
$this->post_parents($parent, $bcn_frontpage);
|
422 |
+
}
|
423 |
+
}
|
424 |
+
//Handle the rest of the taxonomies, including tags
|
425 |
+
else
|
426 |
+
{
|
427 |
+
$this->post_terms($id, $this->opt['Spost_' . $type . '_taxonomy_type']);
|
428 |
+
}
|
429 |
+
}
|
430 |
+
}
|
431 |
+
/**
|
432 |
+
* A Breadcrumb Trail Filling Function
|
433 |
+
*
|
434 |
+
* This functions fills a breadcrumb for the terms of a post
|
435 |
+
* @param int $id The id of the post to find the terms for.
|
436 |
+
* @param string $taxonomy The name of the taxonomy that the term belongs to
|
437 |
+
*
|
438 |
+
* TODO Need to implement this cleaner, fix up the entire tag_ thing, as this is now generic
|
439 |
+
* TODO This still needs to be updated to the new method of adding breadcrumbs to the trail
|
440 |
+
*/
|
441 |
+
function post_terms($id, $taxonomy)
|
442 |
+
{
|
443 |
+
//Fills a temporary object with the terms for the post
|
444 |
+
$bcn_object = get_the_terms($id, $taxonomy);
|
445 |
+
//Only process if we have terms
|
446 |
+
if(is_array($bcn_object))
|
447 |
+
{
|
448 |
+
//Add new breadcrumb to the trail
|
449 |
+
$this->trail[] = new bcn_breadcrumb();
|
450 |
+
//Figure out where we placed the crumb, make a nice pointer to it
|
451 |
+
$bcn_breadcrumb = &$this->trail[count($this->trail) - 1];
|
452 |
+
$is_first = true;
|
453 |
+
//Loop through all of the term results
|
454 |
+
foreach($bcn_object as $term)
|
455 |
+
{
|
456 |
+
//Run through a filter for good measure
|
457 |
+
$term->name = apply_filters("get_$taxonomy", $term->name);
|
458 |
+
//Everything but the first term needs a comma separator
|
459 |
+
if($is_first == false)
|
460 |
+
{
|
461 |
+
$bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . ', ');
|
462 |
+
}
|
463 |
+
//This is a bit hackish, but it compiles the term anchor and appends it to the current breadcrumb title
|
464 |
+
$bcn_breadcrumb->set_title($bcn_breadcrumb->get_title() . str_replace(
|
465 |
+
array('%title%', '%link%', '%htitle%', '%type%'),
|
466 |
+
array($term->name, get_term_link($term, $taxonomy), $term->name, $term->taxonomy),
|
467 |
+
$this->opt['H' . $term->taxonomy . '_template']));
|
468 |
+
$is_first = false;
|
469 |
+
}
|
470 |
+
}
|
471 |
+
}
|
472 |
+
/**
|
473 |
+
* A Breadcrumb Trail Filling Function
|
474 |
+
*
|
475 |
+
* This recursive functions fills the trail with breadcrumbs for parent terms.
|
476 |
+
* @param int $id The id of the term.
|
477 |
+
* @param string $taxonomy The name of the taxonomy that the term belongs to
|
478 |
+
* @TODO Evaluate if we need to do tax_ for a prefix
|
479 |
+
*/
|
480 |
+
function term_parents($id, $taxonomy)
|
481 |
+
{
|
482 |
+
global $post;
|
483 |
+
//Get the current category object, filter applied within this call
|
484 |
+
$term = &get_term($id, $taxonomy);
|
485 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
|
486 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $taxonomy . '_template'], array($taxonomy), get_term_link($term, $taxonomy)));
|
487 |
+
//Make sure the id is valid, and that we won't end up spinning in a loop
|
488 |
+
if($term->parent && $term->parent != $id)
|
489 |
+
{
|
490 |
+
//Figure out the rest of the term hiearchy via recursion
|
491 |
+
$this->term_parents($term->parent, $taxonomy);
|
492 |
+
}
|
493 |
+
}
|
494 |
+
/**
|
495 |
+
* A Breadcrumb Trail Filling Function
|
496 |
+
*
|
497 |
+
* This recursive functions fills the trail with breadcrumbs for parent posts/pages.
|
498 |
+
* @param int $id The id of the parent page.
|
499 |
+
* @param int $frontpage The id of the front page.
|
500 |
+
*/
|
501 |
+
function post_parents($id, $frontpage)
|
502 |
+
{
|
503 |
+
//Use WordPress API, though a bit heavier than the old method, this will ensure compatibility with other plug-ins
|
504 |
+
$parent = get_post($id);
|
505 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
|
506 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($id), $this->opt['Hpost_' . $parent->post_type . '_template'], array($parent->post_type), get_permalink($id)));
|
507 |
+
//Make sure the id is valid, and that we won't end up spinning in a loop
|
508 |
+
if($parent->post_parent >= 0 && $parent->post_parent != false && $id != $parent->post_parent && $frontpage != $parent->post_parent)
|
509 |
+
{
|
510 |
+
//If valid, recursively call this function
|
511 |
+
$this->post_parents($parent->post_parent, $frontpage);
|
512 |
+
}
|
513 |
+
}
|
514 |
+
/**
|
515 |
+
* A Breadcrumb Trail Filling Function
|
516 |
+
*
|
517 |
+
* This functions fills a breadcrumb for posts
|
518 |
+
*
|
519 |
+
*/
|
520 |
+
function do_post()
|
521 |
+
{
|
522 |
+
global $post, $page;
|
523 |
+
//Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, template, and type
|
524 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_' . $post->post_type . '_template_no_anchor'], array('post-' . $post->post_type, 'current-item')));
|
525 |
+
//If the current item is to be linked, or this is a paged post, add in links
|
526 |
+
if($this->opt['bcurrent_item_linked'] || ($page > 1 && $this->opt['bpaged_display']))
|
527 |
+
{
|
528 |
+
//Change the template over to the normal, linked one
|
529 |
+
$breadcrumb->set_template($this->opt['Hpost_' . $post->post_type . '_template']);
|
530 |
+
//Add the link
|
531 |
+
$breadcrumb->set_url(get_permalink());
|
532 |
+
}
|
533 |
+
//If we have a hiearchical post, go through the parent tree
|
534 |
+
if(is_post_type_hierarchical($post->post_type))
|
535 |
+
{
|
536 |
+
//Done with the current item, now on to the parents
|
537 |
+
$frontpage = get_option('page_on_front');
|
538 |
+
//If there is a parent page let's find it
|
539 |
+
if($post->post_parent && $post->ID != $post->post_parent && $frontpage != $post->post_parent)
|
540 |
+
{
|
541 |
+
$this->post_parents($post->post_parent, $frontpage);
|
542 |
+
}
|
543 |
+
else if(!$this->is_builtin($post->post_type))
|
544 |
+
{
|
545 |
+
//Handle the post's taxonomy
|
546 |
+
$this->post_taxonomy($post->ID, $post->post_type, $post->post_parent);
|
547 |
+
}
|
548 |
+
}
|
549 |
+
//Otherwise we need the follow the taxonomy tree
|
550 |
+
else
|
551 |
+
{
|
552 |
+
//Handle the post's taxonomy
|
553 |
+
$this->post_taxonomy($post->ID, $post->post_type, $post->post_parent);
|
554 |
+
}
|
555 |
+
}
|
556 |
+
/**
|
557 |
+
* A Breadcrumb Trail Filling Function
|
558 |
+
*
|
559 |
+
* This functions fills a breadcrumb for an attachment page.
|
560 |
+
*
|
561 |
+
* @TODO Evaluate if this can be merged in with the do_post function
|
562 |
+
*/
|
563 |
+
function do_attachment()
|
564 |
+
{
|
565 |
+
global $post;
|
566 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
|
567 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title(), $this->opt['Hpost_attachment_template_no_anchor'], array('post-attachment', 'current-item')));
|
568 |
+
if($this->opt['bcurrent_item_linked'])
|
569 |
+
{
|
570 |
+
//Change the template over to the normal, linked one
|
571 |
+
$breadcrumb->set_template($this->opt['Hpost_attachment_template']);
|
572 |
+
//Add the link
|
573 |
+
$breadcrumb->set_url(get_permalink());
|
574 |
+
}
|
575 |
+
//Get the parent's information
|
576 |
+
$parent = get_post($post->post_parent);
|
577 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
|
578 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($post->post_parent), $this->opt['Hpost_' . $parent->post_type . '_template'], array($parent->post_type), get_permalink($post->post_parent)));
|
579 |
+
//We need to treat flat and hiearchical post attachment hierachies differently
|
580 |
+
if(is_post_type_hierarchical($parent->post_type))
|
581 |
+
{
|
582 |
+
//Done with the current item, now on to the parents
|
583 |
+
$frontpage = get_option('page_on_front');
|
584 |
+
//If there is a parent page let's find it
|
585 |
+
if($parent->post_parent && $parent->ID != $parent->post_parent && $frontpage != $parent->post_parent)
|
586 |
+
{
|
587 |
+
$this->post_parents($parent->post_parent, $frontpage);
|
588 |
+
}
|
589 |
+
else if(!$this->is_builtin($parent->post_type))
|
590 |
+
{
|
591 |
+
//Handle the post's taxonomy
|
592 |
+
$this->post_taxonomy($post->post_parent, $parent->post_type);
|
593 |
+
}
|
594 |
+
}
|
595 |
+
else
|
596 |
+
{
|
597 |
+
//Handle the post's taxonomy
|
598 |
+
$this->post_taxonomy($post->post_parent, $parent->post_type);
|
599 |
+
}
|
600 |
+
}
|
601 |
+
/**
|
602 |
+
* A Breadcrumb Trail Filling Function
|
603 |
+
*
|
604 |
+
* This function fills a breadcrumb for any taxonomy archive, was previously two separate functions
|
605 |
+
*
|
606 |
+
*/
|
607 |
+
function do_archive_by_term()
|
608 |
+
{
|
609 |
+
global $wp_query;
|
610 |
+
//Simmilar to using $post, but for things $post doesn't cover
|
611 |
+
$term = $wp_query->get_queried_object();
|
612 |
+
//Run through a filter for good measure
|
613 |
+
$term->name = apply_filters('get_' . $term->taxonomy, $term->name);
|
614 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, get a pointer to it in return
|
615 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($term->name, $this->opt['H' . $term->taxonomy . '_template_no_anchor'], array($term->taxonomy, 'current-item')));
|
616 |
+
//If we're paged, let's link to the first page
|
617 |
+
if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
|
618 |
+
{
|
619 |
+
$breadcrumb->set_template($this->opt['H' . $term->taxonomy . '_template']);
|
620 |
+
//Figure out the anchor for current category
|
621 |
+
$breadcrumb->set_url(get_term_link($term, $term->taxonomy));
|
622 |
+
}
|
623 |
+
//Get parents of current category
|
624 |
+
if($term->parent)
|
625 |
+
{
|
626 |
+
$this->term_parents($term->parent, $term->taxonomy);
|
627 |
+
}
|
628 |
+
}
|
629 |
+
/**
|
630 |
+
* A Breadcrumb Trail Filling Function
|
631 |
+
*
|
632 |
+
* This functions fills a breadcrumb for a date archive.
|
633 |
+
*
|
634 |
+
*/
|
635 |
+
function do_archive_by_date()
|
636 |
+
{
|
637 |
+
global $wp_query;
|
638 |
+
//First deal with the day breadcrumb
|
639 |
+
if(is_day() || is_single())
|
640 |
+
{
|
641 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
642 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('d'), $this->opt['Hdate_template_no_anchor'], array('date-day')));
|
643 |
+
//If this is a day archive, add current-item type
|
644 |
+
if(is_day())
|
645 |
+
{
|
646 |
+
$breadcrumb->add_type('current-item');
|
647 |
+
}
|
648 |
+
//If we're paged, let's link to the first page
|
649 |
+
if($this->opt['bcurrent_item_linked'] || is_paged() && $this->opt['bpaged_display'] || is_single())
|
650 |
+
{
|
651 |
+
//We're linking, so set the linked template
|
652 |
+
$breadcrumb->set_template($this->opt['Hdate_template']);
|
653 |
+
//Deal with the anchor
|
654 |
+
$breadcrumb->set_url(get_day_link(get_the_time('Y'), get_the_time('m'), get_the_time('d')));
|
655 |
+
}
|
656 |
+
}
|
657 |
+
//Now deal with the month breadcrumb
|
658 |
+
if(is_month() || is_day() || is_single())
|
659 |
+
{
|
660 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
661 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('F'), $this->opt['Hdate_template_no_anchor'], array('date-month')));
|
662 |
+
//If this is a month archive, add current-item type
|
663 |
+
if(is_month())
|
664 |
+
{
|
665 |
+
$breadcrumb->add_type('current-item');
|
666 |
+
}
|
667 |
+
//If we're paged, or not in the archive by month let's link to the first archive by month page
|
668 |
+
if($this->opt['bcurrent_item_linked'] || is_day() || is_single() || (is_month() && is_paged() && $this->opt['bpaged_display']))
|
669 |
+
{
|
670 |
+
//We're linking, so set the linked template
|
671 |
+
$breadcrumb->set_template($this->opt['Hdate_template']);
|
672 |
+
//Deal with the anchor
|
673 |
+
$breadcrumb->set_url(get_month_link(get_the_time('Y'), get_the_time('m')));
|
674 |
+
}
|
675 |
+
}
|
676 |
+
//Place the year breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
677 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_time('Y'), $this->opt['Hdate_template_no_anchor'], array('date-year')));
|
678 |
+
//If this is a year archive, add current-item type
|
679 |
+
if(is_year())
|
680 |
+
{
|
681 |
+
$breadcrumb->add_type('current-item');
|
682 |
+
}
|
683 |
+
//If we're paged, or not in the archive by year let's link to the first archive by year page
|
684 |
+
if($this->opt['bcurrent_item_linked'] || is_day() || is_month() || is_single() || (is_paged() && $this->opt['bpaged_display']))
|
685 |
+
{
|
686 |
+
//We're linking, so set the linked template
|
687 |
+
$breadcrumb->set_template($this->opt['Hdate_template']);
|
688 |
+
//Deal with the anchor
|
689 |
+
$breadcrumb->set_url(get_year_link(get_the_time('Y')));
|
690 |
+
}
|
691 |
+
}
|
692 |
+
/**
|
693 |
+
* A Breadcrumb Trail Filling Function
|
694 |
+
*
|
695 |
+
* This functions fills a breadcrumb for a post type archive (WP 3.1 feature)
|
696 |
+
*/
|
697 |
+
function do_archive_by_post_type()
|
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(post_type_archive_title('', false), $this->opt['Hpost_' . get_post_type() . '_template_no_anchor'], array('post-' . get_post_type() . '-archive', 'current-item')));
|
701 |
+
if($this->opt['bcurrent_item_linked'] || is_paged() && $this->opt['bpaged_display'])
|
702 |
+
{
|
703 |
+
$breadcrumb->set_template($this->opt['Hpost_' . get_post_type() . '_template']);
|
704 |
+
//Deal with the anchor
|
705 |
+
$breadcrumb->set_url(get_post_type_archive_link(get_post_type()));
|
706 |
+
}
|
707 |
+
}
|
708 |
+
/**
|
709 |
+
* A Breadcrumb Trail Filling Function
|
710 |
+
*
|
711 |
+
* This functions fills a breadcrumb for the front page.
|
712 |
+
*/
|
713 |
+
function do_front_page()
|
714 |
+
{
|
715 |
+
global $post, $current_site;
|
716 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
717 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['Shome_title'], $this->opt['Hhome_template_no_anchor'], array('site-home', 'current-item')));
|
718 |
+
//If we're paged, let's link to the first page
|
719 |
+
if($this->opt['bcurrent_item_linked'] || (is_paged() && $this->opt['bpaged_display']))
|
720 |
+
{
|
721 |
+
$breadcrumb->set_template($this->opt['Hhome_template']);
|
722 |
+
//Figure out the anchor for home page
|
723 |
+
$breadcrumb->set_url(get_home_url());
|
724 |
+
}
|
725 |
+
//If we have a multi site and are not on the main site we may need to add a breadcrumb for the main site
|
726 |
+
if($this->opt['bmainsite_display'] && !is_main_site())
|
727 |
+
{
|
728 |
+
//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
|
729 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['Smainsite_title'], $this->opt['Hmainsite_template'], array('mainsite-home'), get_home_url($current_site->blog_id)));
|
730 |
+
}
|
731 |
+
}
|
732 |
+
/**
|
733 |
+
* A Breadcrumb Trail Filling Function
|
734 |
+
*
|
735 |
+
* This functions fills a breadcrumb for the home page.
|
736 |
+
*/
|
737 |
+
function do_home()
|
738 |
+
{
|
739 |
+
global $post, $current_site;
|
740 |
+
//On everything else we need to link, but no current item (pre/suf)fixes
|
741 |
+
if($this->opt['bhome_display'])
|
742 |
+
{
|
743 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
744 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['Shome_title'], $this->opt['Hhome_template'], array('site-home'), get_home_url()));
|
745 |
+
//If we have a multi site and are not on the main site we need to add a breadcrumb for the main site
|
746 |
+
if($this->opt['bmainsite_display'] && !is_main_site())
|
747 |
+
{
|
748 |
+
//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
|
749 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->opt['Smainsite_title'], $this->opt['Hmainsite_template_no_anchor'], array('mainsite-home'), get_home_url($current_site->blog_id)));
|
750 |
+
}
|
751 |
+
}
|
752 |
+
}
|
753 |
+
/**
|
754 |
+
* A modified version of WordPress' function of the same name
|
755 |
+
*
|
756 |
+
* @param object $object the post or taxonomy object used to attempt to find the title
|
757 |
+
* @return string the title
|
758 |
+
*/
|
759 |
+
function post_type_archive_title($object)
|
760 |
+
{
|
761 |
+
if(isset($object->labels->name))
|
762 |
+
{
|
763 |
+
return apply_filters('post_type_archive_title', $object->labels->name);
|
764 |
+
}
|
765 |
+
}
|
766 |
+
/**
|
767 |
+
* Determines if a post type is a built in type or not
|
768 |
+
*
|
769 |
+
* @param string $post_type the name of the post type
|
770 |
+
* @return bool
|
771 |
+
*/
|
772 |
+
function is_builtin($post_type)
|
773 |
+
{
|
774 |
+
$type = get_post_type_object($post_type);
|
775 |
+
return $type->_builtin;
|
776 |
+
}
|
777 |
+
/**
|
778 |
+
* Determines if a post type has archives enabled or not
|
779 |
+
*
|
780 |
+
* @param string $post_type the name of the post type
|
781 |
+
* @return bool
|
782 |
+
*/
|
783 |
+
function has_archive($post_type)
|
784 |
+
{
|
785 |
+
$type = get_post_type_object($post_type);
|
786 |
+
return $type->has_archive;
|
787 |
+
}
|
788 |
+
/**
|
789 |
+
* This function populates our type_str and posts_id variables
|
790 |
+
*
|
791 |
+
* @param post $type A post object we are using to figureout the type
|
792 |
+
* @param string $type_str The type string variable, passed by reference
|
793 |
+
* @param int $root_id The ID for the post type root
|
794 |
+
*/
|
795 |
+
function find_type($type, &$type_str, &$root_id)
|
796 |
+
{
|
797 |
+
global $wp_taxonomies;
|
798 |
+
//We need to do special things for custom post types
|
799 |
+
if(is_singular() && !$this->is_builtin($type->post_type))
|
800 |
+
{
|
801 |
+
//We need the type for later, so save it
|
802 |
+
$type_str = $type->post_type;
|
803 |
+
//This will assign a ID for root page of a custom post
|
804 |
+
if(is_numeric($this->opt['apost_' . $type_str . '_root']))
|
805 |
+
{
|
806 |
+
$root_id = $this->opt['apost_' . $type_str . '_root'];
|
807 |
+
}
|
808 |
+
}
|
809 |
+
//For CPT archives
|
810 |
+
else if(is_post_type_archive() && !isset($type->taxonomy))
|
811 |
+
{
|
812 |
+
//We need the type for later, so save it
|
813 |
+
$type_str = $type->name;
|
814 |
+
//This will assign a ID for root page of a custom post's taxonomy archive
|
815 |
+
if(is_numeric($this->opt['apost_' . $type_str . '_root']))
|
816 |
+
{
|
817 |
+
$root_id = $this->opt['apost_' . $type_str . '_root'];
|
818 |
+
}
|
819 |
+
}
|
820 |
+
//We need to do special things for custom post type archives, but not author or date archives
|
821 |
+
else if(is_archive() && !is_author() && !is_date() && !$this->is_builtin($wp_taxonomies[$type->taxonomy]->object_type[0]))
|
822 |
+
{
|
823 |
+
//We need the type for later, so save it
|
824 |
+
$type_str = $wp_taxonomies[$type->taxonomy]->object_type[0];
|
825 |
+
//This will assign a ID for root page of a custom post's taxonomy archive
|
826 |
+
if(is_numeric($this->opt['apost_' . $type_str . '_root']))
|
827 |
+
{
|
828 |
+
$root_id = $this->opt['apost_' . $type_str . '_root'];
|
829 |
+
}
|
830 |
+
}
|
831 |
+
else
|
832 |
+
{
|
833 |
+
$type_str = "post";
|
834 |
+
}
|
835 |
+
}
|
836 |
+
/**
|
837 |
+
* A Breadcrumb Trail Filling Function
|
838 |
+
*
|
839 |
+
* Handles only the root page stuff for post types, including the "page for posts"
|
840 |
+
*
|
841 |
+
* TODO: this still needs to be cleaned up
|
842 |
+
*/
|
843 |
+
function do_root()
|
844 |
+
{
|
845 |
+
global $post, $wp_query, $wp_taxonomies, $current_site;
|
846 |
+
//If this is an attachment then we need to change the queried object to the parent post
|
847 |
+
if(is_attachment())
|
848 |
+
{
|
849 |
+
$type = get_post($post->post_parent);
|
850 |
+
}
|
851 |
+
else
|
852 |
+
{
|
853 |
+
//Simmilar to using $post, but for things $post doesn't cover
|
854 |
+
$type = $wp_query->get_queried_object();
|
855 |
+
}
|
856 |
+
$root_id = -1;
|
857 |
+
//Find our type string and root_id
|
858 |
+
$this->find_type($type, $type_str, $root_id);
|
859 |
+
//These two are for taxonomy archives and for a single custom post type
|
860 |
+
if(isset($type->post_type) && !$this->is_builtin($type->post_type) && $this->opt['bpost_' . $type->post_type . '_archive_display'] && $this->has_archive($type->post_type))
|
861 |
+
{
|
862 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
863 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($type->post_type)), $this->opt['Hpost_' . $type->post_type . '_template'], array('post-' . $type->post_type . '-archive'), get_post_type_archive_link($type->post_type)));
|
864 |
+
}
|
865 |
+
else if(isset($type->taxonomy) && !$this->is_builtin($wp_taxonomies[$type->taxonomy]->object_type[0]) && $this->opt['bpost_' . $wp_taxonomies[$type->taxonomy]->object_type[0] . '_archive_display'] && $this->has_archive($wp_taxonomies[$type->taxonomy]->object_type[0]))
|
866 |
+
{
|
867 |
+
//We end up using the post type in several places, give it a variable
|
868 |
+
$post_type = $wp_taxonomies[$type->taxonomy]->object_type[0];
|
869 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, prefix, and suffix, get a pointer to it in return
|
870 |
+
$breadcrumb = $this->add(new bcn_breadcrumb($this->post_type_archive_title(get_post_type_object($post_type)), $this->opt['Hpost_' . $post_type . '_template'], array('post-' . $post_type . '-archive'), get_post_type_archive_link($post_type)));
|
871 |
+
}
|
872 |
+
//We only need the "blog" portion on members of the blog, and only if we're in a static frontpage environment
|
873 |
+
if($root_id > 1 || $this->opt['bblog_display'] && get_option('show_on_front') == 'page' && (is_home() || is_single() || is_tax() || is_category() || is_tag()))
|
874 |
+
{
|
875 |
+
//If we entered here with a posts page, we need to set the id
|
876 |
+
if($root_id < 0)
|
877 |
+
{
|
878 |
+
$root_id = get_option('page_for_posts');
|
879 |
+
}
|
880 |
+
$frontpage_id = get_option('page_on_front');
|
881 |
+
//We'll have to check if this ID is valid, e.g. user has specified a posts page
|
882 |
+
if($root_id && $root_id != $frontpage_id)
|
883 |
+
{
|
884 |
+
//Place the breadcrumb in the trail, uses the constructor to set the title, template, and type, we get a pointer to it in return
|
885 |
+
$breadcrumb = $this->add(new bcn_breadcrumb(get_the_title($root_id), $this->opt['Hpost_' . $type_str . '_template_no_anchor'], array($type_str . '-root', 'post-' . $type_str)));
|
886 |
+
//If we are at home, then we need to add the current item type
|
887 |
+
if(is_home())
|
888 |
+
{
|
889 |
+
$breadcrumb->add_type('current-item');
|
890 |
+
}
|
891 |
+
//If we're not on the current item we need to setup the anchor
|
892 |
+
if(!is_home() || (is_paged() && $this->opt['bpaged_display']) || (is_home() && $this->opt['bcurrent_item_linked']))
|
893 |
+
{
|
894 |
+
$breadcrumb->set_template($this->opt['Hpost_' . $type_str . '_template']);
|
895 |
+
//Figure out the anchor for home page
|
896 |
+
$breadcrumb->set_url(get_permalink($root_id));
|
897 |
+
}
|
898 |
+
//Done with the "root", now on to the parents
|
899 |
+
//Get the blog page
|
900 |
+
$bcn_post = get_post($root_id);
|
901 |
+
//If there is a parent post let's find it
|
902 |
+
if($bcn_post->post_parent && $bcn_post->ID != $bcn_post->post_parent && $frontpage_id != $bcn_post->post_parent)
|
903 |
+
{
|
904 |
+
$this->post_parents($bcn_post->post_parent, $frontpage_id);
|
905 |
+
}
|
906 |
+
}
|
907 |
+
}
|
908 |
+
}
|
909 |
+
/**
|
910 |
+
* A Breadcrumb Trail Filling Function
|
911 |
+
*
|
912 |
+
* This functions fills a breadcrumb for 404 pages.
|
913 |
+
*/
|
914 |
+
function do_404()
|
915 |
+
{
|
916 |
+
//Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
|
917 |
+
$this->trail[] = new bcn_breadcrumb($this->opt['S404_title'], $this->opt['H404_template'], array('404', 'current-item'));
|
918 |
+
}
|
919 |
+
/**
|
920 |
+
* A Breadcrumb Trail Filling Function
|
921 |
+
*
|
922 |
+
* This functions fills a breadcrumb for paged pages.
|
923 |
+
*/
|
924 |
+
function do_paged()
|
925 |
+
{
|
926 |
+
global $paged, $page;
|
927 |
+
//Need to switch between paged and page for archives and singular (posts)
|
928 |
+
if($paged > 0)
|
929 |
+
{
|
930 |
+
$page_number = $paged;
|
931 |
+
}
|
932 |
+
else
|
933 |
+
{
|
934 |
+
$page_number = $page;
|
935 |
+
}
|
936 |
+
//Place the breadcrumb in the trail, uses the bcn_breadcrumb constructor to set the title, prefix, and suffix
|
937 |
+
$this->trail[] = new bcn_breadcrumb($page_number, $this->opt['Hpaged_template'], array('paged'));
|
938 |
+
}
|
939 |
+
/**
|
940 |
+
* Breadcrumb Trail Filling Function
|
941 |
+
*
|
942 |
+
* This functions fills the breadcrumb trail.
|
943 |
+
*/
|
944 |
+
function fill()
|
945 |
+
{
|
946 |
+
global $wpdb, $post, $wp_query, $paged, $page;
|
947 |
+
//Check to see if the trail is already populated
|
948 |
+
if(count($this->trail) > 0)
|
949 |
+
{
|
950 |
+
//Exit early since we have breadcrumbs in the trail
|
951 |
+
return null;
|
952 |
+
}
|
953 |
+
//Do any actions if necessary, we past through the current object instance to keep life simple
|
954 |
+
do_action('bcn_before_fill', $this);
|
955 |
+
//Do specific opperations for the various page types
|
956 |
+
//Check if this isn't the first of a multi paged item
|
957 |
+
if($this->opt['bpaged_display'] && (is_paged() || is_singular() && $page > 1))
|
958 |
+
{
|
959 |
+
$this->do_paged();
|
960 |
+
}
|
961 |
+
//For the front page, as it may also validate as a page, do it first
|
962 |
+
if(is_front_page())
|
963 |
+
{
|
964 |
+
//Must have two seperate branches so that we don't evaluate it as a page
|
965 |
+
if($this->opt['bhome_display'])
|
966 |
+
{
|
967 |
+
$this->do_front_page();
|
968 |
+
}
|
969 |
+
}
|
970 |
+
//For posts
|
971 |
+
else if(is_singular())
|
972 |
+
{
|
973 |
+
//For attachments
|
974 |
+
if(is_attachment())
|
975 |
+
{
|
976 |
+
$this->do_attachment();
|
977 |
+
}
|
978 |
+
//For all other post types
|
979 |
+
else
|
980 |
+
{
|
981 |
+
$this->do_post();
|
982 |
+
}
|
983 |
+
}
|
984 |
+
//For searches
|
985 |
+
else if(is_search())
|
986 |
+
{
|
987 |
+
$this->do_search();
|
988 |
+
}
|
989 |
+
//For author pages
|
990 |
+
else if(is_author())
|
991 |
+
{
|
992 |
+
$this->do_author();
|
993 |
+
}
|
994 |
+
//For archives
|
995 |
+
else if(is_archive())
|
996 |
+
{
|
997 |
+
$type = $wp_query->get_queried_object();
|
998 |
+
//For date based archives
|
999 |
+
if(is_date())
|
1000 |
+
{
|
1001 |
+
$this->do_archive_by_date();
|
1002 |
+
}
|
1003 |
+
else if(is_post_type_archive() && !isset($type->taxonomy))
|
1004 |
+
{
|
1005 |
+
$this->do_archive_by_post_type();
|
1006 |
+
}
|
1007 |
+
//For taxonomy based archives
|
1008 |
+
else if(is_category() || is_tag() || is_tax())
|
1009 |
+
{
|
1010 |
+
$this->do_archive_by_term();
|
1011 |
+
}
|
1012 |
+
}
|
1013 |
+
//For 404 pages
|
1014 |
+
else if(is_404())
|
1015 |
+
{
|
1016 |
+
$this->do_404();
|
1017 |
+
}
|
1018 |
+
//We always do the home link last, unless on the frontpage
|
1019 |
+
if(!is_front_page())
|
1020 |
+
{
|
1021 |
+
$this->do_root();
|
1022 |
+
$this->do_home();
|
1023 |
+
}
|
1024 |
+
//Do any actions if necessary, we past through the current object instance to keep life simple
|
1025 |
+
do_action('bcn_after_fill', $this);
|
1026 |
+
}
|
1027 |
+
/**
|
1028 |
+
* This function will either set the order of the trail to reverse key
|
1029 |
+
* order, or make sure it is forward key ordered.
|
1030 |
+
*
|
1031 |
+
* @param bool $reverse[optional] Whether to reverse the trail or not.
|
1032 |
+
*/
|
1033 |
+
function order($reverse = false)
|
1034 |
+
{
|
1035 |
+
if($reverse)
|
1036 |
+
{
|
1037 |
+
//Since there may be multiple calls our trail may be in a non-standard order
|
1038 |
+
ksort($this->trail);
|
1039 |
+
}
|
1040 |
+
else
|
1041 |
+
{
|
1042 |
+
//For normal opperation we must reverse the array by key
|
1043 |
+
krsort($this->trail);
|
1044 |
+
}
|
1045 |
+
}
|
1046 |
+
/**
|
1047 |
+
* This functions outputs or returns the breadcrumb trail in string form.
|
1048 |
+
*
|
1049 |
+
* @return void Void if Option to print out breadcrumb trail was chosen.
|
1050 |
+
* @return string String-Data of breadcrumb trail.
|
1051 |
+
* @param bool $return Whether to return data or to echo it.
|
1052 |
+
* @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
|
1053 |
+
* @param bool $reverse[optional] Whether to reverse the output or not.
|
1054 |
+
*/
|
1055 |
+
function display($return = false, $linked = true, $reverse = false)
|
1056 |
+
{
|
1057 |
+
//Set trail order based on reverse flag
|
1058 |
+
$this->order($reverse);
|
1059 |
+
//Initilize the string which will hold the assembled trail
|
1060 |
+
$trail_str = '';
|
1061 |
+
//The main compiling loop
|
1062 |
+
foreach($this->trail as $key => $breadcrumb)
|
1063 |
+
{
|
1064 |
+
//Must branch if we are reversing the output or not
|
1065 |
+
if($reverse)
|
1066 |
+
{
|
1067 |
+
//Add in the separator only if we are the 2nd or greater element
|
1068 |
+
if($key > 0)
|
1069 |
+
{
|
1070 |
+
$trail_str .= $this->opt['hseparator'];
|
1071 |
+
}
|
1072 |
+
}
|
1073 |
+
else
|
1074 |
+
{
|
1075 |
+
//Only show the separator when necessary
|
1076 |
+
if($key < count($this->trail) - 1)
|
1077 |
+
{
|
1078 |
+
$trail_str .= $this->opt['hseparator'];
|
1079 |
+
}
|
1080 |
+
}
|
1081 |
+
//Trim titles, if needed
|
1082 |
+
if($this->opt['amax_title_length'] > 0)
|
1083 |
+
{
|
1084 |
+
//Trim the breadcrumb's title
|
1085 |
+
$breadcrumb->title_trim($this->opt['amax_title_length']);
|
1086 |
+
}
|
1087 |
+
//Place in the breadcrumb's assembled elements
|
1088 |
+
$trail_str .= $breadcrumb->assemble($linked);
|
1089 |
+
}
|
1090 |
+
//Should we return or echo the assembled trail?
|
1091 |
+
if($return)
|
1092 |
+
{
|
1093 |
+
return $trail_str;
|
1094 |
+
}
|
1095 |
+
else
|
1096 |
+
{
|
1097 |
+
//Helps track issues, please don't remove it
|
1098 |
+
$credits = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
|
1099 |
+
echo $credits . $trail_str;
|
1100 |
+
}
|
1101 |
+
}
|
1102 |
+
/**
|
1103 |
+
* This functions outputs or returns the breadcrumb trail in list form.
|
1104 |
+
*
|
1105 |
+
* @return void Void if Option to print out breadcrumb trail was chosen.
|
1106 |
+
* @return string String-Data of breadcrumb trail.
|
1107 |
+
* @param bool $return Whether to return data or to echo it.
|
1108 |
+
* @param bool $linked[optional] Whether to allow hyperlinks in the trail or not.
|
1109 |
+
* @param bool $reverse[optional] Whether to reverse the output or not.
|
1110 |
+
*
|
1111 |
+
* TODO: Can probably write this one in a smarter way now
|
1112 |
+
*/
|
1113 |
+
function display_list($return = false, $linked = true, $reverse = false)
|
1114 |
+
{
|
1115 |
+
//Set trail order based on reverse flag
|
1116 |
+
$this->order($reverse);
|
1117 |
+
//Initilize the string which will hold the assembled trail
|
1118 |
+
$trail_str = '';
|
1119 |
+
//The main compiling loop
|
1120 |
+
foreach($this->trail as $key => $breadcrumb)
|
1121 |
+
{
|
1122 |
+
$trail_str .= '<li';
|
1123 |
+
//On the first run we need to add in a class for the home breadcrumb
|
1124 |
+
if($trail_str === '<li')
|
1125 |
+
{
|
1126 |
+
$trail_str .= ' class="home';
|
1127 |
+
if($key === 0)
|
1128 |
+
{
|
1129 |
+
$trail_str .= ' current_item';
|
1130 |
+
}
|
1131 |
+
$trail_str .= '"';
|
1132 |
+
}
|
1133 |
+
//If we are on the current item there are some things that must be done
|
1134 |
+
else if($key === 0)
|
1135 |
+
{
|
1136 |
+
//Add in a class for current_item
|
1137 |
+
$trail_str .= ' class="current_item"';
|
1138 |
+
}
|
1139 |
+
//Trim titles, if needed
|
1140 |
+
if($this->opt['amax_title_length'] > 0)
|
1141 |
+
{
|
1142 |
+
//Trim the breadcrumb's title
|
1143 |
+
$breadcrumb->title_trim($this->opt['amax_title_length']);
|
1144 |
+
}
|
1145 |
+
//Place in the breadcrumb's assembled elements
|
1146 |
+
$trail_str .= '>' . $breadcrumb->assemble($linked);
|
1147 |
+
$trail_str .= "</li>\n";
|
1148 |
+
}
|
1149 |
+
//Should we return or echo the assembled trail?
|
1150 |
+
if($return)
|
1151 |
+
{
|
1152 |
+
return $trail_str;
|
1153 |
+
}
|
1154 |
+
else
|
1155 |
+
{
|
1156 |
+
//Helps track issues, please don't remove it
|
1157 |
+
$credits = "<!-- Breadcrumb NavXT " . $this->version . " -->\n";
|
1158 |
+
echo $credits . $trail_str;
|
1159 |
+
}
|
1160 |
+
}
|
1161 |
}
|
breadcrumb_navxt_widget.php
CHANGED
@@ -25,11 +25,11 @@ class bcn_widget extends WP_Widget
|
|
25 |
// the global and the check might become obsolete in
|
26 |
// further wordpress versions
|
27 |
// @see https://core.trac.wordpress.org/ticket/10527
|
28 |
-
if(!isset($l10n['
|
29 |
{
|
30 |
-
load_plugin_textdomain('
|
31 |
}
|
32 |
-
$ops = array('classname' => 'widget_breadcrumb_navxt', 'description' => __('Adds a breadcrumb trail to your sidebar'));
|
33 |
parent::__construct('bcn_widget', 'Breadcrumb NavXT', $ops);
|
34 |
}
|
35 |
function widget($args, $instance)
|
@@ -50,19 +50,21 @@ class bcn_widget extends WP_Widget
|
|
50 |
if($instance['type'] == 'list')
|
51 |
{
|
52 |
//Display the list output breadcrumb
|
53 |
-
echo '<ol class="breadcrumb_trail breadcrumbs">';
|
54 |
bcn_display_list(false, $instance['linked'], $instance['reverse']);
|
55 |
echo '</ol>';
|
56 |
}
|
57 |
else if($instance['type'] == 'microdata')
|
58 |
{
|
59 |
-
echo '<div class="breadcrumbs" itemprop="breadcrumbs">';
|
60 |
//Display the regular output breadcrumb
|
61 |
bcn_display(false, $instance['linked'], $instance['reverse']);
|
62 |
echo '</div>';
|
63 |
}
|
64 |
else
|
65 |
{
|
|
|
|
|
66 |
//Display the regular output breadcrumb
|
67 |
bcn_display(false, $instance['linked'], $instance['reverse']);
|
68 |
}
|
@@ -73,6 +75,7 @@ class bcn_widget extends WP_Widget
|
|
73 |
{
|
74 |
//Filter out anything that could be invalid
|
75 |
$old_instance['title'] = strip_tags($new_instance['title']);
|
|
|
76 |
$old_instance['type'] = strip_tags($new_instance['type']);
|
77 |
$old_instance['linked'] = isset($new_instance['linked']);
|
78 |
$old_instance['reverse'] = isset($new_instance['reverse']);
|
@@ -81,26 +84,30 @@ class bcn_widget extends WP_Widget
|
|
81 |
}
|
82 |
function form($instance)
|
83 |
{
|
84 |
-
$instance = wp_parse_args((array) $instance, array('title' => '', 'type' => 'plain', 'linked' => true, 'reverse' => false, 'front' => false));?>
|
85 |
<p>
|
86 |
-
<label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:', '
|
87 |
<input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
|
88 |
</p>
|
89 |
<p>
|
90 |
-
<label for="<?php echo $this->get_field_id('
|
|
|
|
|
|
|
|
|
91 |
<select name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
|
92 |
-
<option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', '
|
93 |
-
<option value="microdata" <?php selected('microdata', $instance['type']);?>><?php _e('Schema.org', '
|
94 |
-
<option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', '
|
95 |
</select>
|
96 |
</p>
|
97 |
<p>
|
98 |
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('linked'); ?>" id="<?php echo $this->get_field_id('linked'); ?>" value="true" <?php checked(true, $instance['linked']);?> />
|
99 |
-
<label for="<?php echo $this->get_field_id('linked'); ?>"> <?php _e('Link the breadcrumbs', '
|
100 |
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('reverse'); ?>" id="<?php echo $this->get_field_id('reverse'); ?>" value="true" <?php checked(true, $instance['reverse']);?> />
|
101 |
-
<label for="<?php echo $this->get_field_id('reverse'); ?>"> <?php _e('Reverse the order of the trail', '
|
102 |
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('front'); ?>" id="<?php echo $this->get_field_id('front'); ?>" value="true" <?php checked(true, $instance['front']);?> />
|
103 |
-
<label for="<?php echo $this->get_field_id('front'); ?>"> <?php _e('Hide the trail on the front page', '
|
104 |
</p>
|
105 |
<?php
|
106 |
}
|
25 |
// the global and the check might become obsolete in
|
26 |
// further wordpress versions
|
27 |
// @see https://core.trac.wordpress.org/ticket/10527
|
28 |
+
if(!isset($l10n['breadcrumb-navxt']))
|
29 |
{
|
30 |
+
load_plugin_textdomain('breadcrumb-navxt', false, 'breadcrumb-navxt/languages');
|
31 |
}
|
32 |
+
$ops = array('classname' => 'widget_breadcrumb_navxt', 'description' => __('Adds a breadcrumb trail to your sidebar', 'breadcrumb-navxt'));
|
33 |
parent::__construct('bcn_widget', 'Breadcrumb NavXT', $ops);
|
34 |
}
|
35 |
function widget($args, $instance)
|
50 |
if($instance['type'] == 'list')
|
51 |
{
|
52 |
//Display the list output breadcrumb
|
53 |
+
echo $instance['pretext'] . '<ol class="breadcrumb_trail breadcrumbs">';
|
54 |
bcn_display_list(false, $instance['linked'], $instance['reverse']);
|
55 |
echo '</ol>';
|
56 |
}
|
57 |
else if($instance['type'] == 'microdata')
|
58 |
{
|
59 |
+
echo '<div class="breadcrumbs" itemprop="breadcrumbs">' . $instance['pretext'];
|
60 |
//Display the regular output breadcrumb
|
61 |
bcn_display(false, $instance['linked'], $instance['reverse']);
|
62 |
echo '</div>';
|
63 |
}
|
64 |
else
|
65 |
{
|
66 |
+
//Display the pretext
|
67 |
+
echo $instance['pretext'];
|
68 |
//Display the regular output breadcrumb
|
69 |
bcn_display(false, $instance['linked'], $instance['reverse']);
|
70 |
}
|
75 |
{
|
76 |
//Filter out anything that could be invalid
|
77 |
$old_instance['title'] = strip_tags($new_instance['title']);
|
78 |
+
$old_instance['pretext'] = strip_tags($new_instance['pretext']);
|
79 |
$old_instance['type'] = strip_tags($new_instance['type']);
|
80 |
$old_instance['linked'] = isset($new_instance['linked']);
|
81 |
$old_instance['reverse'] = isset($new_instance['reverse']);
|
84 |
}
|
85 |
function form($instance)
|
86 |
{
|
87 |
+
$instance = wp_parse_args((array) $instance, array('title' => '', 'pretext' => '', 'type' => 'plain', 'linked' => true, 'reverse' => false, 'front' => false));?>
|
88 |
<p>
|
89 |
+
<label for="<?php echo $this->get_field_id('title'); ?>"> <?php _e('Title:', 'breadcrumb-navxt'); ?></label>
|
90 |
<input class="widefat" type="text" name="<?php echo $this->get_field_name('title'); ?>" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']);?>" />
|
91 |
</p>
|
92 |
<p>
|
93 |
+
<label for="<?php echo $this->get_field_id('pretext'); ?>"> <?php _e('Text to show before the trail:', 'breadcrumb-navxt'); ?></label>
|
94 |
+
<input class="widefat" type="text" name="<?php echo $this->get_field_name('pretext'); ?>" id="<?php echo $this->get_field_id('pretext'); ?>" value="<?php echo esc_attr($instance['pretext']);?>" />
|
95 |
+
</p>
|
96 |
+
<p>
|
97 |
+
<label for="<?php echo $this->get_field_id('type'); ?>"> <?php _e('Output trail as:', 'breadcrumb-navxt'); ?></label>
|
98 |
<select name="<?php echo $this->get_field_name('type'); ?>" id="<?php echo $this->get_field_id('type'); ?>">
|
99 |
+
<option value="list" <?php selected('list', $instance['type']);?>><?php _e('List', 'breadcrumb-navxt'); ?></option>
|
100 |
+
<option value="microdata" <?php selected('microdata', $instance['type']);?>><?php _e('Schema.org', 'breadcrumb-navxt'); ?></option>
|
101 |
+
<option value="plain" <?php selected('plain', $instance['type']);?>><?php _e('Plain', 'breadcrumb-navxt'); ?></option>
|
102 |
</select>
|
103 |
</p>
|
104 |
<p>
|
105 |
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('linked'); ?>" id="<?php echo $this->get_field_id('linked'); ?>" value="true" <?php checked(true, $instance['linked']);?> />
|
106 |
+
<label for="<?php echo $this->get_field_id('linked'); ?>"> <?php _e('Link the breadcrumbs', 'breadcrumb-navxt'); ?></label><br />
|
107 |
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('reverse'); ?>" id="<?php echo $this->get_field_id('reverse'); ?>" value="true" <?php checked(true, $instance['reverse']);?> />
|
108 |
+
<label for="<?php echo $this->get_field_id('reverse'); ?>"> <?php _e('Reverse the order of the trail', 'breadcrumb-navxt'); ?></label><br />
|
109 |
<input class="checkbox" type="checkbox" name="<?php echo $this->get_field_name('front'); ?>" id="<?php echo $this->get_field_id('front'); ?>" value="true" <?php checked(true, $instance['front']);?> />
|
110 |
+
<label for="<?php echo $this->get_field_id('front'); ?>"> <?php _e('Hide the trail on the front page', 'breadcrumb-navxt'); ?></label><br />
|
111 |
</p>
|
112 |
<?php
|
113 |
}
|
includes/mtekk_adminkit.php
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
*/
|
19 |
abstract class mtekk_adminKit
|
20 |
{
|
21 |
-
private $__version = '1.
|
22 |
protected $version;
|
23 |
protected $full_name;
|
24 |
protected $short_name;
|
@@ -137,7 +137,7 @@ abstract class mtekk_adminKit
|
|
137 |
//Add in the nice "settings" link to the plugins page
|
138 |
add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
|
139 |
//Register JS for tabs
|
140 |
-
wp_register_script('mtekk_adminkit_tabs', plugins_url('/mtekk_adminkit_tabs.js', dirname(__FILE__) . '/mtekk_adminkit_tabs.js'));
|
141 |
//Register CSS for tabs
|
142 |
wp_register_style('mtekk_adminkit_tabs', plugins_url('/mtekk_adminkit_tabs.css', dirname(__FILE__) . '/mtekk_adminkit_tabs.css'));
|
143 |
//Register options
|
@@ -399,7 +399,7 @@ abstract class mtekk_adminKit
|
|
399 |
}
|
400 |
if(is_array($defaults))
|
401 |
{
|
402 |
-
return
|
403 |
}
|
404 |
return $r;
|
405 |
}
|
@@ -417,7 +417,7 @@ abstract class mtekk_adminKit
|
|
417 |
{
|
418 |
if(array_key_exists($key, $arg1) && is_array($value))
|
419 |
{
|
420 |
-
$arg1[$key] =
|
421 |
}
|
422 |
else
|
423 |
{
|
18 |
*/
|
19 |
abstract class mtekk_adminKit
|
20 |
{
|
21 |
+
private $__version = '1.1';
|
22 |
protected $version;
|
23 |
protected $full_name;
|
24 |
protected $short_name;
|
137 |
//Add in the nice "settings" link to the plugins page
|
138 |
add_filter('plugin_action_links', array($this, 'filter_plugin_actions'), 10, 2);
|
139 |
//Register JS for tabs
|
140 |
+
wp_register_script('mtekk_adminkit_tabs', plugins_url('/mtekk_adminkit_tabs.js', dirname(__FILE__) . '/mtekk_adminkit_tabs.js'), array('jquery-ui-tabs'));
|
141 |
//Register CSS for tabs
|
142 |
wp_register_style('mtekk_adminkit_tabs', plugins_url('/mtekk_adminkit_tabs.css', dirname(__FILE__) . '/mtekk_adminkit_tabs.css'));
|
143 |
//Register options
|
399 |
}
|
400 |
if(is_array($defaults))
|
401 |
{
|
402 |
+
return mtekk_adminKit::array_merge_recursive($defaults, $r);
|
403 |
}
|
404 |
return $r;
|
405 |
}
|
417 |
{
|
418 |
if(array_key_exists($key, $arg1) && is_array($value))
|
419 |
{
|
420 |
+
$arg1[$key] = mtekk_adminKit::array_merge_recursive($arg1[$key], $value);
|
421 |
}
|
422 |
else
|
423 |
{
|
includes/multibyte_supplicant.php
CHANGED
@@ -93,4 +93,4 @@ if(!function_exists('mb_convert_case'))
|
|
93 |
}
|
94 |
return $str;
|
95 |
}
|
96 |
-
}
|
93 |
}
|
94 |
return $str;
|
95 |
}
|
96 |
+
}
|
languages/breadcrumb-navxt-az.mo
CHANGED
Binary file
|
languages/breadcrumb-navxt-az.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2012-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,700 +10,513 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
13 |
-
#: breadcrumb_navxt_widget.php:32
|
14 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
15 |
-
msgstr "Sizin sidebara breadcrumb zolağı əlavə edir."
|
16 |
-
|
17 |
#: breadcrumb_navxt_widget.php:93
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
20 |
|
21 |
-
#: breadcrumb_navxt_widget.php:
|
22 |
-
msgid "
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: breadcrumb_navxt_widget.php:
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: breadcrumb_navxt_widget.php:
|
38 |
msgid "Plain"
|
39 |
msgstr "Düz"
|
40 |
|
41 |
-
#: breadcrumb_navxt_widget.php:
|
42 |
msgid "Link the breadcrumbs"
|
43 |
msgstr "Breadcrumblar linki"
|
44 |
|
45 |
-
#: breadcrumb_navxt_widget.php:
|
46 |
msgid "Reverse the order of the trail"
|
47 |
msgstr "Zolağın sıralanmasını əksinə çevirin."
|
48 |
|
49 |
-
#: breadcrumb_navxt_widget.php:
|
50 |
msgid "Hide the trail on the front page"
|
51 |
msgstr "Ana səhifədə zolağı gizlədin"
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
55 |
-
msgstr "Sizin PHP versiya çox köhnədir, zəhmət olmasa yeni versiyaya güncəlləyin. Sizin versiya %s, Breadcrumb NavXT tələb edir %s"
|
56 |
-
|
57 |
-
#: breadcrumb_navxt_admin.php:113
|
58 |
msgid "Insufficient privileges to proceed."
|
59 |
msgstr "Davam etmək üçün kifayət qədər icazə yoxdur."
|
60 |
|
61 |
-
#: breadcrumb_navxt_admin.php:
|
62 |
msgid "Tips for the settings are located below select options."
|
63 |
msgstr "Tənzimləmər üçün tiplər seçim tənzimləmələrinin aşağısında yerləşdirilib."
|
64 |
|
65 |
-
#: breadcrumb_navxt_admin.php:
|
66 |
msgid "Resources"
|
67 |
msgstr "Resurslar"
|
68 |
|
69 |
-
#: breadcrumb_navxt_admin.php:
|
70 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
71 |
msgstr "%s Dərsliklər və İzahlar %s: Müəllifin web saytında çoxlu dərsliklər, izahlar və necə etmək barədə yazılar mövcuddur."
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
74 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
75 |
msgstr "Breadcrumb NavXT tag arxivinə gedin"
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
78 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
79 |
msgstr "%s Online Dokumentasiya%s: Çoxlu texniki məlumat zənginliyi üçün dokumentasiyanı yoxlayın."
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
83 |
msgstr "Breadcrumb NavXT online dokumentasiyasına gedin"
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
87 |
msgstr "%sReport a Bug%s: Əgər səhv tapdığınızı düşünürsünüzsə, zəhmət olmasa WordPress versiyasını və səhvi necə aradan qaldırmaq barədə ətraflı olaraq əlavə edin."
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
91 |
msgstr "Breadcrumb NavXT dəstək məqaləsinə sizin versiya üçün gedin."
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Giving Back"
|
95 |
msgstr "Geri Vermək"
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
99 |
msgstr "%sPul Yardımı%s: Breadcrumb NavXT - ni sevdiniz və inkişafına kömək etmək istəyirsiniz? Müəllifi pivə almağa görə nəzərə alın."
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
103 |
msgstr "Breadcrumb NavXT üçün pul yardımı etmək üçün PayPal-a gedin."
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
107 |
msgstr "%sTərcümə%s: Sizin diliniz mümkün deyil? John Havlik ilə tərcümə üçün əlaqə yaradın."
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "General"
|
111 |
msgstr "Ümumi"
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
115 |
msgstr "Tənzimləmələrin bu səhifədə effekt verməyi üçün, daxil edilən Breadcrumb NavXT widget-ni başqa bir yol olaraq istifadə etməlisiniz, ya da kod blokların sizin temanın içinə daxil eməlisiniz."
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Breadcrumb trail with separators"
|
119 |
msgstr "Breadcrumb zolağı ayırıcılar ilə"
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "Breadcrumb trail in list form"
|
123 |
msgstr "Breadcrumb zolağı form siyahısında"
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "Quick Start"
|
127 |
msgstr "Cəld Başlanğıc"
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
130 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
131 |
msgstr "Yuxarıdakı Cəld Başlanğıc bölməsindəki kodu istifadə etməklə, növbəti CSS sizin breadcrumb zolağı üçün təməl olaraq istifadə ediləcəkdir."
|
132 |
|
133 |
-
#: breadcrumb_navxt_admin.php:
|
134 |
msgid "Styling"
|
135 |
msgstr "Stil"
|
136 |
|
137 |
-
#: breadcrumb_navxt_admin.php:
|
138 |
msgid "Import/Export/Reset"
|
139 |
msgstr "İdxal/İxrac/Sıfırlama"
|
140 |
|
141 |
-
#: breadcrumb_navxt_admin.php:
|
142 |
msgid "Import"
|
143 |
msgstr "İdxal"
|
144 |
|
145 |
-
#: breadcrumb_navxt_admin.php:
|
146 |
msgid "Export"
|
147 |
msgstr "İxrac"
|
148 |
|
149 |
-
#: breadcrumb_navxt_admin.php:
|
150 |
msgid "Reset"
|
151 |
msgstr "Sıfırlama"
|
152 |
|
153 |
-
#: breadcrumb_navxt_admin.php:
|
154 |
msgid "Breadcrumb NavXT Settings"
|
155 |
msgstr "Breadcrumb NavXT Tənzimləmələri"
|
156 |
|
157 |
-
#: breadcrumb_navxt_admin.php:
|
158 |
msgid "Breadcrumb Separator"
|
159 |
msgstr "Breadcrumb Ayırıcı"
|
160 |
|
161 |
-
#: breadcrumb_navxt_admin.php:
|
162 |
msgid "Placed in between each breadcrumb."
|
163 |
msgstr "Hər breadcrumb arasında yerləşdirilir."
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
166 |
msgid "Breadcrumb Max Title Length"
|
167 |
msgstr "Breadcrumb Maksimum Başlıq Uzunluğu"
|
168 |
|
169 |
-
#: breadcrumb_navxt_admin.php:
|
170 |
msgid "Home Breadcrumb"
|
171 |
msgstr "Ana Səhifə Breadcrumb"
|
172 |
|
173 |
-
#: breadcrumb_navxt_admin.php:
|
174 |
msgid "Place the home breadcrumb in the trail."
|
175 |
msgstr "Ana Səhifə breadcrumb-ı zolaqda yerləşdirin."
|
176 |
|
177 |
-
#: breadcrumb_navxt_admin.php:
|
178 |
msgid "Home Title: "
|
179 |
msgstr "Ana Səhifə Başlığı:"
|
180 |
|
181 |
-
#: breadcrumb_navxt_admin.php:
|
182 |
msgid "Home Template"
|
183 |
msgstr "Ana Səhifə Şablonu"
|
184 |
|
185 |
-
#: breadcrumb_navxt_admin.php:
|
186 |
msgid "The template for the home breadcrumb."
|
187 |
msgstr "Ana Səhifə breadcrumb-ı üçün Şablon"
|
188 |
|
189 |
-
#: breadcrumb_navxt_admin.php:
|
190 |
msgid "Home Template (Unlinked)"
|
191 |
msgstr "Ana Səhifə Şablonu (Bəyənilməyən)"
|
192 |
|
193 |
-
#: breadcrumb_navxt_admin.php:
|
194 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
195 |
msgstr "Ana Səhifə breadcrumb-ı üçün Şablon, breacrumb link ilə əlaqələndirilmədikdə istifadə olunur."
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Blog Breadcrumb"
|
199 |
msgstr "Blog Breadcrumb"
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Place the blog breadcrumb in the trail."
|
203 |
msgstr "Blog breadcrumb-nı zolaqda yerləşdirin."
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "Blog Template"
|
207 |
msgstr "Blog Şablonu"
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
211 |
msgstr "Blog breadcrumb-ı üçün Şablon, yalnız statik ana səhifə şəraitində istifadə edilir."
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
214 |
msgid "Blog Template (Unlinked)"
|
215 |
msgstr "Blog Şablonu (Bəyənilməyən)"
|
216 |
|
217 |
-
#: breadcrumb_navxt_admin.php:
|
218 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
219 |
msgstr "Blog breadcrumb-ı üçün Şablon, yalnız statik ana səhifəsi şəraitində və breadcrumb link ilə əlaqələndirilməyəndə istifadə olunur."
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Main Site Breadcrumb"
|
223 |
msgstr "Əsas Sayt Breadcrumb-ı"
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
227 |
msgstr "Əsas Sayt Breadcrumb-nı mutisayt quraşdırmasında zolaqda yerləşdirin."
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Main Site Home Title: "
|
231 |
msgstr "Əsas Sayt Ana Səhifə başlığı:"
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Main Site Home Template"
|
235 |
msgstr "Əsas Sayt Ana Səhifə Şablonu"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
239 |
msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində istifadə edilir."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Main Site Home Template (Unlinked)"
|
243 |
msgstr "Əsas Sayt Ana Səhifə Şablonu (Bəyənilməyən)"
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
247 |
msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Current Item"
|
251 |
msgstr "Cari Element"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "Link Current Item"
|
255 |
msgstr "Cari Elmentin Linki"
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Yes"
|
259 |
msgstr "Hə"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
-
msgid "Current Item Template"
|
263 |
-
msgstr "Cari Elementin Şablonu"
|
264 |
-
|
265 |
-
#: breadcrumb_navxt_admin.php:370
|
266 |
-
msgid "The template for current item breadcrumbs."
|
267 |
-
msgstr "Cari elementin breadcrumb-ı üçün şablon."
|
268 |
-
|
269 |
-
#: breadcrumb_navxt_admin.php:371
|
270 |
-
msgid "Current Item Template (Unlinked)"
|
271 |
-
msgstr "Cari Element Şablonu"
|
272 |
-
|
273 |
-
#: breadcrumb_navxt_admin.php:371
|
274 |
-
msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
|
275 |
-
msgstr "Cari elementin breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
276 |
-
|
277 |
-
#: breadcrumb_navxt_admin.php:372
|
278 |
msgid "Paged Breadcrumb"
|
279 |
msgstr "Səhifələnmiş Breadcrumb"
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
283 |
msgstr "Səhifələnmiş Breadcrumb-ı breadcrumb zolağında daxil edin."
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
287 |
msgstr "İstifadəçi məqalələr/səhifələr səhifələnməsində (pagination) birincidən başqa səhifələrdə olarkən bildirir."
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Paged Template"
|
291 |
msgstr "Səhifələnmə Şablonu"
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
294 |
msgid "The template for paged breadcrumbs."
|
295 |
msgstr "Səhidələniş breadcrumb üçün şablon."
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Posts & Pages"
|
299 |
msgstr "Məqalələr & Səhifələr"
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
msgid "Post Template"
|
303 |
msgstr "Məqalə Şablonu"
|
304 |
|
305 |
-
#: breadcrumb_navxt_admin.php:
|
306 |
msgid "The template for post breadcrumbs."
|
307 |
msgstr "Məqalə breadcrumb-ı üçün şablon."
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Post Template (Unlinked)"
|
311 |
msgstr "Məqalə Şablonu (Bəyənilməyən)"
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
315 |
msgstr "Məqalə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Post Taxonomy Display"
|
319 |
msgstr "Məqalə Təsnifat Görünüşü"
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
323 |
msgstr "Məqalənin Təsnifat liderliyini breadcrumb zolağında göstərir."
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Post Taxonomy"
|
327 |
msgstr "Məqalə Təsnifatı"
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Categories"
|
331 |
msgstr "Kateqoriyalar"
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Dates"
|
335 |
msgstr "Tarixlər"
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Tags"
|
339 |
msgstr "Taglər"
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Pages"
|
343 |
msgstr "Səhifələr"
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid "The taxonomy which the breadcrumb trail will show."
|
347 |
msgstr "Breadcrumb zolağının göstərəcəyi təsnifat."
|
348 |
|
349 |
-
#: breadcrumb_navxt_admin.php:
|
350 |
msgid "Page Template"
|
351 |
msgstr "Səhifə Şablonu"
|
352 |
|
353 |
-
#: breadcrumb_navxt_admin.php:
|
354 |
msgid "The template for page breadcrumbs."
|
355 |
msgstr "Səhifə breadcrumbları üçüb şablon."
|
356 |
|
357 |
-
#: breadcrumb_navxt_admin.php:
|
358 |
msgid "Page Template (Unlinked)"
|
359 |
msgstr "Səhifə Şablonu (Bəyənilməyən)"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
362 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
363 |
msgstr "Səhifə breadcrumb-ı üçüb şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
msgid "Attachment Template"
|
367 |
msgstr "Fayl Yükləmə Şablonu"
|
368 |
|
369 |
-
#: breadcrumb_navxt_admin.php:
|
370 |
msgid "The template for attachment breadcrumbs."
|
371 |
msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon."
|
372 |
|
373 |
-
#: breadcrumb_navxt_admin.php:
|
374 |
msgid "Attachment Template (Unlinked)"
|
375 |
msgstr "Fayl Yükləmə Şablonu (Bəyənilməyən)"
|
376 |
|
377 |
-
#: breadcrumb_navxt_admin.php:
|
378 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
379 |
msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
-
#: breadcrumb_navxt_class.php:
|
383 |
-
#: breadcrumb_navxt_class.php:
|
384 |
-
#: breadcrumb_navxt_class.php:
|
385 |
-
#: breadcrumb_navxt_class.php:259
|
386 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
387 |
msgstr "<a title=\"%title% üçün gedin.\" href=\"%link%\">%htitle%</a>"
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
msgid "%htitle%"
|
391 |
msgstr "%htitle%"
|
392 |
|
393 |
-
#: breadcrumb_navxt_admin.php:
|
394 |
msgid "%s Template"
|
395 |
msgstr "%s Şablon"
|
396 |
|
397 |
-
#: breadcrumb_navxt_admin.php:
|
398 |
msgid "The template for %s breadcrumbs."
|
399 |
msgstr "%s breadcrumblar üçün şablon."
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
msgid "%s Template (Unlinked)"
|
403 |
msgstr "%s Şablon (Bəyənilməyən)"
|
404 |
|
405 |
-
#: breadcrumb_navxt_admin.php:
|
406 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
407 |
msgstr "%s breadcrumblar üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
410 |
msgid "%s Root Page"
|
411 |
msgstr "%s Təməl Səhifə"
|
412 |
|
413 |
-
#: breadcrumb_navxt_admin.php:
|
414 |
msgid "— Select —"
|
415 |
msgstr "— Seçin —"
|
416 |
|
417 |
-
#: breadcrumb_navxt_admin.php:
|
418 |
msgid "%s Archive Display"
|
419 |
msgstr "%s Arxiv Görünüşü"
|
420 |
|
421 |
-
#: breadcrumb_navxt_admin.php:
|
422 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
423 |
msgstr "%s məqalə tipi arxivləri üçün breadcrumb-ı breadcrumb zolağında göstərin."
|
424 |
|
425 |
-
#: breadcrumb_navxt_admin.php:
|
426 |
msgid "%s Taxonomy Display"
|
427 |
msgstr "%s Təsnifat Görünüşü"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
431 |
msgstr "Təsnifat liderliyini %s üçün breadcrumb zolağında göstərin."
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "%s Taxonomy"
|
435 |
msgstr "%s Təsnifat"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "Categories & Tags"
|
439 |
msgstr "Kateqoriyalar & Taglər"
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
442 |
msgid "Category Template"
|
443 |
msgstr "Kateqoriya Şablonu"
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "The template for category breadcrumbs."
|
447 |
msgstr "Kateqoriya breadcrumb-ları üçün şablon."
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Category Template (Unlinked)"
|
451 |
msgstr "Kateqoriya Şablonu (Bəyənilməyən)"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
455 |
msgstr "Kateqoriya breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "Tag Template"
|
459 |
msgstr "Tag Şablonu"
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "The template for tag breadcrumbs."
|
463 |
msgstr "Tag breadcrumb-ları üçün şablon."
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "Tag Template (Unlinked)"
|
467 |
msgstr "Tag Şablonu (Bəyənilməyən)"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
471 |
msgstr "Tag breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Miscellaneous"
|
475 |
msgstr "Müxtəlif"
|
476 |
|
477 |
-
#: breadcrumb_navxt_admin.php:
|
478 |
msgid "Author Template"
|
479 |
msgstr "Müəllif Şablonu"
|
480 |
|
481 |
-
#: breadcrumb_navxt_admin.php:
|
482 |
msgid "The template for author breadcrumbs."
|
483 |
msgstr "Müəllif breadcrumb-ları üçün şablon."
|
484 |
|
485 |
-
#: breadcrumb_navxt_admin.php:
|
486 |
msgid "Author Template (Unlinked)"
|
487 |
msgstr "Müəllif Şablonu (Bəyənilməyən)"
|
488 |
|
489 |
-
#: breadcrumb_navxt_admin.php:
|
490 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
491 |
msgstr "Müəllif breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
492 |
|
493 |
-
#: breadcrumb_navxt_admin.php:
|
494 |
msgid "Author Display Format"
|
495 |
msgstr "Müəllif Görüntü Formatı"
|
496 |
|
497 |
-
#: breadcrumb_navxt_admin.php:
|
498 |
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
499 |
msgstr "display_name istifadəçi profilinin seçimlərində təyin edilən \"Adı kütləvi olaraq görüntüləndir\" kimi görüntülənir."
|
500 |
|
501 |
-
#: breadcrumb_navxt_admin.php:
|
502 |
msgid "Date Template"
|
503 |
msgstr "Tarix Şablonu"
|
504 |
|
505 |
-
#: breadcrumb_navxt_admin.php:
|
506 |
msgid "The template for date breadcrumbs."
|
507 |
msgstr "Tarix breadcrumb-ları üçün şablon."
|
508 |
|
509 |
-
#: breadcrumb_navxt_admin.php:
|
510 |
msgid "Date Template (Unlinked)"
|
511 |
msgstr "Tarix Şablonu (Bəyənilməyən)"
|
512 |
|
513 |
-
#: breadcrumb_navxt_admin.php:
|
514 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
515 |
msgstr "Tarix breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
516 |
|
517 |
-
#: breadcrumb_navxt_admin.php:
|
518 |
msgid "Search Template"
|
519 |
msgstr "Axtarış Şablonu"
|
520 |
|
521 |
-
#: breadcrumb_navxt_admin.php:
|
522 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
523 |
msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
524 |
|
525 |
-
#: breadcrumb_navxt_admin.php:
|
526 |
msgid "Search Template (Unlinked)"
|
527 |
msgstr "Axtarış Şablonu (Bəyənilməyən)"
|
528 |
|
529 |
-
#: breadcrumb_navxt_admin.php:
|
530 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
531 |
msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız axtarış nəticələri bir neçə səhifələri birləşdirərsə və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
532 |
|
533 |
-
#: breadcrumb_navxt_admin.php:
|
534 |
msgid "404 Title"
|
535 |
msgstr "404 Başlığı"
|
536 |
|
537 |
-
#: breadcrumb_navxt_admin.php:
|
538 |
msgid "404 Template"
|
539 |
msgstr "404 Şablonu"
|
540 |
|
541 |
-
#: breadcrumb_navxt_admin.php:
|
542 |
msgid "The template for 404 breadcrumbs."
|
543 |
msgstr "404 breadcrumb-ları üçün şablon."
|
544 |
|
545 |
-
#: breadcrumb_navxt_admin.php:
|
546 |
msgid "Save Changes"
|
547 |
-
msgstr "Dəyişiklikləri yaddaşda saxlayın"
|
548 |
-
|
549 |
-
#: includes/mtekk_adminkit.php:201
|
550 |
-
msgid "Settings"
|
551 |
-
msgstr "Tənzimləmələr"
|
552 |
-
|
553 |
-
#: includes/mtekk_adminkit.php:271
|
554 |
-
msgid "Your settings are out of date."
|
555 |
-
msgstr "Sizin tənzimləmələr köhnəlib."
|
556 |
-
|
557 |
-
#: includes/mtekk_adminkit.php:271
|
558 |
-
msgid "Migrate the settings now."
|
559 |
-
msgstr "Tənzimləmələri köçürün."
|
560 |
-
|
561 |
-
#: includes/mtekk_adminkit.php:271
|
562 |
-
msgid "Migrate now."
|
563 |
-
msgstr "İndi Köçürün."
|
564 |
-
|
565 |
-
#: includes/mtekk_adminkit.php:279
|
566 |
-
msgid "Your plugin install is incomplete."
|
567 |
-
msgstr "Sizin plugin quraşdırmanız natamamdır."
|
568 |
-
|
569 |
-
#: includes/mtekk_adminkit.php:279
|
570 |
-
msgid "Load default settings now."
|
571 |
-
msgstr "Standart tənzimləmələri yükləyin."
|
572 |
-
|
573 |
-
#: includes/mtekk_adminkit.php:279
|
574 |
-
msgid "Complete now."
|
575 |
-
msgstr "İndi Tamamlayın."
|
576 |
-
|
577 |
-
#: includes/mtekk_adminkit.php:287
|
578 |
-
msgid "Your plugin settings are invalid."
|
579 |
-
msgstr "Sizin plugin tənzimləmələri səhvdir."
|
580 |
-
|
581 |
-
#: includes/mtekk_adminkit.php:287
|
582 |
-
msgid "Attempt to fix settings now."
|
583 |
-
msgstr "Tənzimləmələri düzəltmək üçün cəhd edin."
|
584 |
-
|
585 |
-
#: includes/mtekk_adminkit.php:287
|
586 |
-
msgid "Fix now."
|
587 |
-
msgstr "İndi cəh edin."
|
588 |
-
|
589 |
-
#: includes/mtekk_adminkit.php:463
|
590 |
-
msgid "Settings successfully saved."
|
591 |
-
msgstr "Tənzimləmələr uğurla yaddaşda saxlanıldı."
|
592 |
-
|
593 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
594 |
-
msgid "Undo the options save."
|
595 |
-
msgstr "Seçimlərin yaddaşda saxlanmasını geri qaytarın."
|
596 |
-
|
597 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
598 |
-
#: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
|
599 |
-
#: includes/mtekk_adminkit.php:614
|
600 |
-
msgid "Undo"
|
601 |
-
msgstr "Geri"
|
602 |
-
|
603 |
-
#: includes/mtekk_adminkit.php:468
|
604 |
-
msgid "Some settings were not saved."
|
605 |
-
msgstr "Bəzi tənzimləmələr yaddaşda saxlanılmadı."
|
606 |
-
|
607 |
-
#: includes/mtekk_adminkit.php:469
|
608 |
-
msgid "The following settings were not saved:"
|
609 |
-
msgstr "Aşağıdakı tənzimləmələr yaddaşda saxlanılmadı:"
|
610 |
-
|
611 |
-
#: includes/mtekk_adminkit.php:474
|
612 |
-
msgid "Please include this message in your %sbug report%s."
|
613 |
-
msgstr "Zəhmət olmasa bu mesajı öz %sbug report%s içinə daxil edin."
|
614 |
-
|
615 |
-
#: includes/mtekk_adminkit.php:474
|
616 |
-
msgid "Go to the %s support post for your version."
|
617 |
-
msgstr "Öz versiyanız üçün %s dəstək mqaləsinə gedin."
|
618 |
-
|
619 |
-
#: includes/mtekk_adminkit.php:573
|
620 |
-
msgid "Settings successfully imported from the uploaded file."
|
621 |
-
msgstr "Tənzimləmələr yüklənən fayldan uğurla idxal edildi."
|
622 |
-
|
623 |
-
#: includes/mtekk_adminkit.php:573
|
624 |
-
msgid "Undo the options import."
|
625 |
-
msgstr "Seçimlərin idxal edilməsini geri qaytarın."
|
626 |
-
|
627 |
-
#: includes/mtekk_adminkit.php:578
|
628 |
-
msgid "Importing settings from file failed."
|
629 |
-
msgstr "Fayldan tənzimləmələrin idxal edilməsi uğursuz oldu."
|
630 |
-
|
631 |
-
#: includes/mtekk_adminkit.php:597
|
632 |
-
msgid "Settings successfully reset to the default values."
|
633 |
-
msgstr "Tənzimləmələr standart dəyərlərə uğurla qaytarıldı."
|
634 |
-
|
635 |
-
#: includes/mtekk_adminkit.php:597
|
636 |
-
msgid "Undo the options reset."
|
637 |
-
msgstr "Seçimlərin sıfırlanmasını geri qaytarın."
|
638 |
-
|
639 |
-
#: includes/mtekk_adminkit.php:614
|
640 |
-
msgid "Settings successfully undid the last operation."
|
641 |
-
msgstr "Tənzimləmələr son əməliyyata uğurla geri qaytarıldı."
|
642 |
-
|
643 |
-
#: includes/mtekk_adminkit.php:614
|
644 |
-
msgid "Undo the last undo operation."
|
645 |
-
msgstr "Son geri qaytarma əməliyyatını geri qaytarın."
|
646 |
-
|
647 |
-
#: includes/mtekk_adminkit.php:649
|
648 |
-
msgid "Settings successfully migrated."
|
649 |
-
msgstr "Tənzimləmələr uğurla köçürüldü."
|
650 |
-
|
651 |
-
#: includes/mtekk_adminkit.php:656
|
652 |
-
msgid "Default settings successfully installed."
|
653 |
-
msgstr "Standart tənzimləmələr uğurla quraşdırıldı."
|
654 |
-
|
655 |
-
#: includes/mtekk_adminkit.php:757
|
656 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
657 |
-
msgstr "Tənzimləmələri XML fayldan idxal edin, cari tənzimləmələri XML fayla ixrac edin, ya da standart dəyərlərə sıfırlayın."
|
658 |
-
|
659 |
-
#: includes/mtekk_adminkit.php:760
|
660 |
-
msgid "Settings File"
|
661 |
-
msgstr "Tənzimləmələr Faylı"
|
662 |
-
|
663 |
-
#: includes/mtekk_adminkit.php:763
|
664 |
-
msgid "Select a XML settings file to upload and import settings from."
|
665 |
-
msgstr "Tənzimləmələri idxal etmək üçün XML tənzimləmələr faylını seçin."
|
666 |
-
|
667 |
-
#: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
|
668 |
-
msgid "Home"
|
669 |
-
msgstr "Ana Səhifə"
|
670 |
-
|
671 |
-
#: breadcrumb_navxt_class.php:230
|
672 |
-
msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
|
673 |
-
msgstr "<a title=\"Cari Səhifəni yeniləyin.\" href=\"%link%\">%htitle%</a>"
|
674 |
-
|
675 |
-
#: breadcrumb_navxt_class.php:242
|
676 |
-
msgid "Page %htitle%"
|
677 |
-
msgstr "Səhifə %htitle%"
|
678 |
-
|
679 |
-
#: breadcrumb_navxt_class.php:266
|
680 |
-
msgid "404"
|
681 |
-
msgstr "404"
|
682 |
-
|
683 |
-
#: breadcrumb_navxt_class.php:269
|
684 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>'"
|
685 |
-
msgstr "Axtarış nəticələri '<a title=\"Axtarış nəticələririnin ilk səhifəsinə getmək üçün %title%.\" href=\"%link%\">%htitle%</a>' üçün"
|
686 |
-
|
687 |
-
#: breadcrumb_navxt_class.php:271
|
688 |
-
msgid "Search results for '%htitle%'"
|
689 |
-
msgstr "Axtarış nəticələri '%htitle%' üçün"
|
690 |
-
|
691 |
-
#: breadcrumb_navxt_class.php:274
|
692 |
-
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
|
693 |
-
msgstr "<a title=\"Gedin %title% tag arxivlərinə.\" href=\"%link%\">%htitle%</a>"
|
694 |
-
|
695 |
-
#: breadcrumb_navxt_class.php:279
|
696 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
|
697 |
-
msgstr "Arxivlər tərəfindən: <a title=\"Məqalələrin ilk səhifəsinə %title% vasitəsilə gedin.\" href=\"%link%\">%htitle%</a>"
|
698 |
-
|
699 |
-
#: breadcrumb_navxt_class.php:281
|
700 |
-
msgid "Articles by: %htitle%"
|
701 |
-
msgstr "Artikllər tərəfindən: %htitle%"
|
702 |
-
|
703 |
-
#: breadcrumb_navxt_class.php:286
|
704 |
-
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
|
705 |
-
msgstr "<a title=\"Gedin %title% kateqoriya arxivlərinə.\" href=\"%link%\">%htitle%</a>"
|
706 |
-
|
707 |
-
#: breadcrumb_navxt_class.php:290
|
708 |
-
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
|
709 |
-
msgstr "<a title=\"Gedin %title% arxivlərinə.\" href=\"%link%\">%htitle%</a>"
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:29:25+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
|
|
|
|
|
|
|
|
13 |
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr ""
|
16 |
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr ""
|
20 |
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr ""
|
24 |
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr ""
|
28 |
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Başlıq:"
|
32 |
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
msgid "Plain"
|
35 |
msgstr "Düz"
|
36 |
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
msgid "Link the breadcrumbs"
|
39 |
msgstr "Breadcrumblar linki"
|
40 |
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
msgid "Reverse the order of the trail"
|
43 |
msgstr "Zolağın sıralanmasını əksinə çevirin."
|
44 |
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
msgid "Hide the trail on the front page"
|
47 |
msgstr "Ana səhifədə zolağı gizlədin"
|
48 |
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
|
|
|
|
|
|
|
|
50 |
msgid "Insufficient privileges to proceed."
|
51 |
msgstr "Davam etmək üçün kifayət qədər icazə yoxdur."
|
52 |
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
msgid "Tips for the settings are located below select options."
|
55 |
msgstr "Tənzimləmər üçün tiplər seçim tənzimləmələrinin aşağısında yerləşdirilib."
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
msgid "Resources"
|
59 |
msgstr "Resurslar"
|
60 |
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
msgstr "%s Dərsliklər və İzahlar %s: Müəllifin web saytında çoxlu dərsliklər, izahlar və necə etmək barədə yazılar mövcuddur."
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
msgstr "Breadcrumb NavXT tag arxivinə gedin"
|
68 |
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
msgstr "%s Online Dokumentasiya%s: Çoxlu texniki məlumat zənginliyi üçün dokumentasiyanı yoxlayın."
|
72 |
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
msgstr "Breadcrumb NavXT online dokumentasiyasına gedin"
|
76 |
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
msgstr "%sReport a Bug%s: Əgər səhv tapdığınızı düşünürsünüzsə, zəhmət olmasa WordPress versiyasını və səhvi necə aradan qaldırmaq barədə ətraflı olaraq əlavə edin."
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
msgstr "Breadcrumb NavXT dəstək məqaləsinə sizin versiya üçün gedin."
|
84 |
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
msgid "Giving Back"
|
87 |
msgstr "Geri Vermək"
|
88 |
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
msgstr "%sPul Yardımı%s: Breadcrumb NavXT - ni sevdiniz və inkişafına kömək etmək istəyirsiniz? Müəllifi pivə almağa görə nəzərə alın."
|
92 |
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
msgstr "Breadcrumb NavXT üçün pul yardımı etmək üçün PayPal-a gedin."
|
96 |
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
msgstr "%sTərcümə%s: Sizin diliniz mümkün deyil? John Havlik ilə tərcümə üçün əlaqə yaradın."
|
100 |
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
msgid "General"
|
103 |
msgstr "Ümumi"
|
104 |
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
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."
|
107 |
msgstr "Tənzimləmələrin bu səhifədə effekt verməyi üçün, daxil edilən Breadcrumb NavXT widget-ni başqa bir yol olaraq istifadə etməlisiniz, ya da kod blokların sizin temanın içinə daxil eməlisiniz."
|
108 |
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
msgid "Breadcrumb trail with separators"
|
111 |
msgstr "Breadcrumb zolağı ayırıcılar ilə"
|
112 |
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
msgid "Breadcrumb trail in list form"
|
115 |
msgstr "Breadcrumb zolağı form siyahısında"
|
116 |
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
msgid "Quick Start"
|
119 |
msgstr "Cəld Başlanğıc"
|
120 |
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
msgstr "Yuxarıdakı Cəld Başlanğıc bölməsindəki kodu istifadə etməklə, növbəti CSS sizin breadcrumb zolağı üçün təməl olaraq istifadə ediləcəkdir."
|
124 |
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
msgid "Styling"
|
127 |
msgstr "Stil"
|
128 |
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
msgid "Import/Export/Reset"
|
131 |
msgstr "İdxal/İxrac/Sıfırlama"
|
132 |
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
msgid "Import"
|
135 |
msgstr "İdxal"
|
136 |
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
msgid "Export"
|
139 |
msgstr "İxrac"
|
140 |
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
msgid "Reset"
|
143 |
msgstr "Sıfırlama"
|
144 |
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
msgid "Breadcrumb NavXT Settings"
|
147 |
msgstr "Breadcrumb NavXT Tənzimləmələri"
|
148 |
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
msgid "Breadcrumb Separator"
|
151 |
msgstr "Breadcrumb Ayırıcı"
|
152 |
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
msgid "Placed in between each breadcrumb."
|
155 |
msgstr "Hər breadcrumb arasında yerləşdirilir."
|
156 |
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
msgid "Breadcrumb Max Title Length"
|
159 |
msgstr "Breadcrumb Maksimum Başlıq Uzunluğu"
|
160 |
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
msgid "Home Breadcrumb"
|
163 |
msgstr "Ana Səhifə Breadcrumb"
|
164 |
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
msgid "Place the home breadcrumb in the trail."
|
167 |
msgstr "Ana Səhifə breadcrumb-ı zolaqda yerləşdirin."
|
168 |
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
msgid "Home Title: "
|
171 |
msgstr "Ana Səhifə Başlığı:"
|
172 |
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
msgid "Home Template"
|
175 |
msgstr "Ana Səhifə Şablonu"
|
176 |
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
msgid "The template for the home breadcrumb."
|
179 |
msgstr "Ana Səhifə breadcrumb-ı üçün Şablon"
|
180 |
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
msgid "Home Template (Unlinked)"
|
183 |
msgstr "Ana Səhifə Şablonu (Bəyənilməyən)"
|
184 |
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
msgstr "Ana Səhifə breadcrumb-ı üçün Şablon, breacrumb link ilə əlaqələndirilmədikdə istifadə olunur."
|
188 |
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
msgid "Blog Breadcrumb"
|
191 |
msgstr "Blog Breadcrumb"
|
192 |
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
msgid "Place the blog breadcrumb in the trail."
|
195 |
msgstr "Blog breadcrumb-nı zolaqda yerləşdirin."
|
196 |
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
msgid "Blog Template"
|
199 |
msgstr "Blog Şablonu"
|
200 |
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
msgstr "Blog breadcrumb-ı üçün Şablon, yalnız statik ana səhifə şəraitində istifadə edilir."
|
204 |
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
msgid "Blog Template (Unlinked)"
|
207 |
msgstr "Blog Şablonu (Bəyənilməyən)"
|
208 |
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
msgstr "Blog breadcrumb-ı üçün Şablon, yalnız statik ana səhifəsi şəraitində və breadcrumb link ilə əlaqələndirilməyəndə istifadə olunur."
|
212 |
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
msgid "Main Site Breadcrumb"
|
215 |
msgstr "Əsas Sayt Breadcrumb-ı"
|
216 |
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
msgstr "Əsas Sayt Breadcrumb-nı mutisayt quraşdırmasında zolaqda yerləşdirin."
|
220 |
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
msgid "Main Site Home Title: "
|
223 |
msgstr "Əsas Sayt Ana Səhifə başlığı:"
|
224 |
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
msgid "Main Site Home Template"
|
227 |
msgstr "Əsas Sayt Ana Səhifə Şablonu"
|
228 |
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində istifadə edilir."
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
msgid "Main Site Home Template (Unlinked)"
|
235 |
msgstr "Əsas Sayt Ana Səhifə Şablonu (Bəyənilməyən)"
|
236 |
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
msgstr "Əsas Sayt Ana Səhifə breadcrumb-ı üçün şablon, yalnız multisayt şəraitində və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
msgid "Current Item"
|
243 |
msgstr "Cari Element"
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
msgid "Link Current Item"
|
247 |
msgstr "Cari Elmentin Linki"
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
msgid "Yes"
|
251 |
msgstr "Hə"
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Paged Breadcrumb"
|
255 |
msgstr "Səhifələnmiş Breadcrumb"
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
msgstr "Səhifələnmiş Breadcrumb-ı breadcrumb zolağında daxil edin."
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
msgstr "İstifadəçi məqalələr/səhifələr səhifələnməsində (pagination) birincidən başqa səhifələrdə olarkən bildirir."
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
msgid "Paged Template"
|
267 |
msgstr "Səhifələnmə Şablonu"
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
msgid "The template for paged breadcrumbs."
|
271 |
msgstr "Səhidələniş breadcrumb üçün şablon."
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
msgid "Posts & Pages"
|
275 |
msgstr "Məqalələr & Səhifələr"
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
msgid "Post Template"
|
279 |
msgstr "Məqalə Şablonu"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
msgid "The template for post breadcrumbs."
|
283 |
msgstr "Məqalə breadcrumb-ı üçün şablon."
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
msgid "Post Template (Unlinked)"
|
287 |
msgstr "Məqalə Şablonu (Bəyənilməyən)"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
msgstr "Məqalə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
msgid "Post Taxonomy Display"
|
295 |
msgstr "Məqalə Təsnifat Görünüşü"
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
msgstr "Məqalənin Təsnifat liderliyini breadcrumb zolağında göstərir."
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
msgid "Post Taxonomy"
|
303 |
msgstr "Məqalə Təsnifatı"
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
msgid "Categories"
|
307 |
msgstr "Kateqoriyalar"
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
msgid "Dates"
|
311 |
msgstr "Tarixlər"
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
msgid "Tags"
|
315 |
msgstr "Taglər"
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
msgid "Pages"
|
319 |
msgstr "Səhifələr"
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
msgstr "Breadcrumb zolağının göstərəcəyi təsnifat."
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
msgid "Page Template"
|
327 |
msgstr "Səhifə Şablonu"
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
msgid "The template for page breadcrumbs."
|
331 |
msgstr "Səhifə breadcrumbları üçüb şablon."
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
msgid "Page Template (Unlinked)"
|
335 |
msgstr "Səhifə Şablonu (Bəyənilməyən)"
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
msgstr "Səhifə breadcrumb-ı üçüb şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
msgid "Attachment Template"
|
343 |
msgstr "Fayl Yükləmə Şablonu"
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
msgid "The template for attachment breadcrumbs."
|
347 |
msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon."
|
348 |
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
msgid "Attachment Template (Unlinked)"
|
351 |
msgstr "Fayl Yükləmə Şablonu (Bəyənilməyən)"
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
msgstr "Fayl Yükləmə breadcrumb-ı üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
356 |
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
|
|
361 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
msgstr "<a title=\"%title% üçün gedin.\" href=\"%link%\">%htitle%</a>"
|
363 |
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
msgid "%htitle%"
|
366 |
msgstr "%htitle%"
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
msgid "%s Template"
|
370 |
msgstr "%s Şablon"
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
msgid "The template for %s breadcrumbs."
|
374 |
msgstr "%s breadcrumblar üçün şablon."
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
msgid "%s Template (Unlinked)"
|
378 |
msgstr "%s Şablon (Bəyənilməyən)"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
msgstr "%s breadcrumblar üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
msgid "%s Root Page"
|
386 |
msgstr "%s Təməl Səhifə"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
msgid "— Select —"
|
390 |
msgstr "— Seçin —"
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
msgid "%s Archive Display"
|
394 |
msgstr "%s Arxiv Görünüşü"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
msgstr "%s məqalə tipi arxivləri üçün breadcrumb-ı breadcrumb zolağında göstərin."
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
msgid "%s Taxonomy Display"
|
402 |
msgstr "%s Təsnifat Görünüşü"
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
msgstr "Təsnifat liderliyini %s üçün breadcrumb zolağında göstərin."
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
msgid "%s Taxonomy"
|
410 |
msgstr "%s Təsnifat"
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
msgid "Categories & Tags"
|
414 |
msgstr "Kateqoriyalar & Taglər"
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
msgid "Category Template"
|
418 |
msgstr "Kateqoriya Şablonu"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
msgid "The template for category breadcrumbs."
|
422 |
msgstr "Kateqoriya breadcrumb-ları üçün şablon."
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
msgid "Category Template (Unlinked)"
|
426 |
msgstr "Kateqoriya Şablonu (Bəyənilməyən)"
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
msgstr "Kateqoriya breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
msgid "Tag Template"
|
434 |
msgstr "Tag Şablonu"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
msgid "The template for tag breadcrumbs."
|
438 |
msgstr "Tag breadcrumb-ları üçün şablon."
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
msgid "Tag Template (Unlinked)"
|
442 |
msgstr "Tag Şablonu (Bəyənilməyən)"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
msgstr "Tag breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
msgid "Miscellaneous"
|
450 |
msgstr "Müxtəlif"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
msgid "Author Template"
|
454 |
msgstr "Müəllif Şablonu"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
msgid "The template for author breadcrumbs."
|
458 |
msgstr "Müəllif breadcrumb-ları üçün şablon."
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
msgid "Author Template (Unlinked)"
|
462 |
msgstr "Müəllif Şablonu (Bəyənilməyən)"
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
msgstr "Müəllif breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
msgid "Author Display Format"
|
470 |
msgstr "Müəllif Görüntü Formatı"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
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."
|
474 |
msgstr "display_name istifadəçi profilinin seçimlərində təyin edilən \"Adı kütləvi olaraq görüntüləndir\" kimi görüntülənir."
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
msgid "Date Template"
|
478 |
msgstr "Tarix Şablonu"
|
479 |
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
msgid "The template for date breadcrumbs."
|
482 |
msgstr "Tarix breadcrumb-ları üçün şablon."
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
msgid "Date Template (Unlinked)"
|
486 |
msgstr "Tarix Şablonu (Bəyənilməyən)"
|
487 |
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
msgstr "Tarix breadcrumb-ları üçün şablon, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
491 |
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
msgid "Search Template"
|
494 |
msgstr "Axtarış Şablonu"
|
495 |
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
499 |
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
msgid "Search Template (Unlinked)"
|
502 |
msgstr "Axtarış Şablonu (Bəyənilməyən)"
|
503 |
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
msgstr "Axtarış breadcrumb-ları üçün anchor şablonu, yalnız axtarış nəticələri bir neçə səhifələri birləşdirərsə və breadcrumb link ilə əlaqələndirilmədikdə istifadə edilir."
|
507 |
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
msgid "404 Title"
|
510 |
msgstr "404 Başlığı"
|
511 |
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
msgid "404 Template"
|
514 |
msgstr "404 Şablonu"
|
515 |
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
msgid "The template for 404 breadcrumbs."
|
518 |
msgstr "404 breadcrumb-ları üçün şablon."
|
519 |
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
msgid "Save Changes"
|
522 |
+
msgstr "Dəyişiklikləri yaddaşda saxlayın"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt-de_DE.mo
ADDED
Binary file
|
languages/breadcrumb-navxt-de_DE.po
ADDED
@@ -0,0 +1,522 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Breadcrumb NavXT in German
|
2 |
+
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:25:50+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
+
|
13 |
+
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr "Text, der vor dem Trail angezeigt werden soll:"
|
16 |
+
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr "Schema.org"
|
20 |
+
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr "Zum Breadcrumb NavXT Übersetzungsprojekt gehen."
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr "Deine PHP Version ist veraltet, bitte führe ein Upgrade auf eine neuere Version durch. Deine aktuelle Version ist %1$s, Breadcrumb NavXT benötigt mindestens %2$s"
|
28 |
+
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Titel:"
|
32 |
+
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
+
msgid "Plain"
|
35 |
+
msgstr "Plain"
|
36 |
+
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
+
msgid "Link the breadcrumbs"
|
39 |
+
msgstr "Verlinke die Breadcrumbs"
|
40 |
+
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
+
msgid "Reverse the order of the trail"
|
43 |
+
msgstr "Die Reihenfolge des Trails umkehren"
|
44 |
+
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
+
msgid "Hide the trail on the front page"
|
47 |
+
msgstr "Verstecke den Trail auf der Startseite"
|
48 |
+
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
50 |
+
msgid "Insufficient privileges to proceed."
|
51 |
+
msgstr "Nicht genügend Rechte um fortzufahren."
|
52 |
+
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
+
msgid "Tips for the settings are located below select options."
|
55 |
+
msgstr "Tips für die Einstellungen findest Du unter den Select-Optionen."
|
56 |
+
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
+
msgid "Resources"
|
59 |
+
msgstr "Ressourcen"
|
60 |
+
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
+
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
+
msgstr "%sTutorials und HOWTOs%s: Auf der Webseite des Autors gibt es verschiedene Handbücher, Tutorials und HOWTOs."
|
64 |
+
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
+
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
+
msgstr "Gehe zum Breadcrumb NavXT Archiv."
|
68 |
+
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
+
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
+
msgstr "%sOnline Dokumentation%s: Schau Dir die Dokumentation an für eingehendere technische Informationen."
|
72 |
+
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
+
msgstr "Gehe zur Breadcrumb NavXT Online-Dokumentation."
|
76 |
+
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
+
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
+
msgstr "%Melde einen Bug%s: Wenn du glaubst, einen Bug gefunden zu haben, füge bitte Deine Wordpress Version und Details, wie man den Bug reproduzieren kann, hinzu."
|
80 |
+
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
+
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
+
msgstr "Gehe zum Breadcrumb NavXT Support Post für Deine Version."
|
84 |
+
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
+
msgid "Giving Back"
|
87 |
+
msgstr "Etwas Zurückgeben"
|
88 |
+
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
+
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
+
msgstr "%sSpende%s: Dir gefällt Breadcrumb NavXT und Du willst die Entwicklung unterstützen? Gib dem Autor ein alkoholfreies Getränk aus."
|
92 |
+
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
+
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
+
msgstr "Gehe zu PayPal, um an Breadcrumb NavXT zu spenden."
|
96 |
+
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
+
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
+
msgstr "%sÜbersetze%s: Ist Deine Sprache nicht verfügbar? Tritt mit John Havlik in Kontakt und hilf beim Übersetzen."
|
100 |
+
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
+
msgid "General"
|
103 |
+
msgstr "Grundsätzliches"
|
104 |
+
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
+
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."
|
107 |
+
msgstr "Du musst entweder das beinhaltete Breadcrumb NavXT Widget verwenden oder eine der Code Abschnitte unten in Deinem Theme verwenden - erst dann werden die Einstellungen aktiv."
|
108 |
+
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
+
msgid "Breadcrumb trail with separators"
|
111 |
+
msgstr "Breadcrumb Trail mit Abstandshaltern"
|
112 |
+
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
+
msgid "Breadcrumb trail in list form"
|
115 |
+
msgstr "Breadcrumb Trail in Listen-Form"
|
116 |
+
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
+
msgid "Quick Start"
|
119 |
+
msgstr "Schnellstart"
|
120 |
+
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
+
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
+
msgstr "Unter Verwendung des Codes aus dem Schnellstart-Abschnitt oben kann das folgende CSS als Basis für das Styling Deines Breadcrumb Trails verwendet werden."
|
124 |
+
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
+
msgid "Styling"
|
127 |
+
msgstr "Styling"
|
128 |
+
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
+
msgid "Import/Export/Reset"
|
131 |
+
msgstr "Import/Export/Reset"
|
132 |
+
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
+
msgid "Import"
|
135 |
+
msgstr "Import"
|
136 |
+
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
+
msgid "Export"
|
139 |
+
msgstr "Export"
|
140 |
+
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
+
msgid "Reset"
|
143 |
+
msgstr "Reset"
|
144 |
+
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
+
msgid "Breadcrumb NavXT Settings"
|
147 |
+
msgstr "Breadcrumb NavXT Einstellungen"
|
148 |
+
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
+
msgid "Breadcrumb Separator"
|
151 |
+
msgstr "Breadcrumb Trennzeichen"
|
152 |
+
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
+
msgid "Placed in between each breadcrumb."
|
155 |
+
msgstr "Wird zwischen jedem Breadcrumb eingefügt."
|
156 |
+
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
+
msgid "Breadcrumb Max Title Length"
|
159 |
+
msgstr "Breadcrumb Maximale Titel Länge"
|
160 |
+
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
+
msgid "Home Breadcrumb"
|
163 |
+
msgstr "Home Breadcrumb"
|
164 |
+
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
+
msgid "Place the home breadcrumb in the trail."
|
167 |
+
msgstr "Füge den Home Breadcrumb in den Trail ein."
|
168 |
+
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
+
msgid "Home Title: "
|
171 |
+
msgstr "Home Titel:"
|
172 |
+
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
+
msgid "Home Template"
|
175 |
+
msgstr "Home Template"
|
176 |
+
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
+
msgid "The template for the home breadcrumb."
|
179 |
+
msgstr "Das Template für das Home Breadcrumb."
|
180 |
+
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
+
msgid "Home Template (Unlinked)"
|
183 |
+
msgstr "Home Template (nicht verlinkt)"
|
184 |
+
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
+
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
+
msgstr "Das Template für das Home Breadcrumb - wird verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
188 |
+
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
+
msgid "Blog Breadcrumb"
|
191 |
+
msgstr "Blog Breadcrumb"
|
192 |
+
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
+
msgid "Place the blog breadcrumb in the trail."
|
195 |
+
msgstr "Platziere das Blog Breadcrumb im Trail."
|
196 |
+
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
+
msgid "Blog Template"
|
199 |
+
msgstr "Blog Template"
|
200 |
+
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
+
msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet."
|
204 |
+
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
+
msgid "Blog Template (Unlinked)"
|
207 |
+
msgstr "Blog Template (nicht verlinkt)"
|
208 |
+
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
+
msgstr "Das Template für das Blog Breadcrumb - wird nur in Umgebungen mit statischer Startseite verwendet und wenn der Breadcrumb nicht verlinkt ist."
|
212 |
+
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
+
msgid "Main Site Breadcrumb"
|
215 |
+
msgstr "Hauptseite Breadcrumb"
|
216 |
+
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
+
msgstr "Platziere das Hauptseite Home Breadcrumb in dem Trail in einem Multisite Setup."
|
220 |
+
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
+
msgid "Main Site Home Title: "
|
223 |
+
msgstr "Hauptseite Home Titel:"
|
224 |
+
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
+
msgid "Main Site Home Template"
|
227 |
+
msgstr "Hauptseite Home Template"
|
228 |
+
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
+
msgstr "Das Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet."
|
232 |
+
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
+
msgid "Main Site Home Template (Unlinked)"
|
235 |
+
msgstr "Hauptseite Home Template (nicht verlinkt)"
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
+
msgstr "Template für das Hauptseite Home Breadcrumb - wird nur in Multisite Umgebungen verwendet und wenn das Breadcrumb nicht verlinkt ist."
|
240 |
+
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
+
msgid "Current Item"
|
243 |
+
msgstr "Aktueller Eintrag"
|
244 |
+
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
+
msgid "Link Current Item"
|
247 |
+
msgstr "Aktuellen Eintrag verlinken"
|
248 |
+
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
+
msgid "Yes"
|
251 |
+
msgstr "Ja"
|
252 |
+
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
254 |
+
msgid "Paged Breadcrumb"
|
255 |
+
msgstr "Paged Breadcrumb"
|
256 |
+
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
+
msgstr "Den Paged Breadcrumb im Breadcrumb Trail einbinden."
|
260 |
+
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
+
msgstr "Zeigt an, dass der Benutzer auf einer Seite ist, die sich von der ersten Seite von paginated Posts/Seiten unterscheidet."
|
264 |
+
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
+
msgid "Paged Template"
|
267 |
+
msgstr "Paged Template"
|
268 |
+
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
+
msgid "The template for paged breadcrumbs."
|
271 |
+
msgstr "Das Template für Paged Breadcrumbs."
|
272 |
+
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
+
msgid "Posts & Pages"
|
275 |
+
msgstr "Posts & Seiten"
|
276 |
+
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
+
msgid "Post Template"
|
279 |
+
msgstr "Post Template"
|
280 |
+
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
+
msgid "The template for post breadcrumbs."
|
283 |
+
msgstr "Das Template für Post Breadcrumbs."
|
284 |
+
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
+
msgid "Post Template (Unlinked)"
|
287 |
+
msgstr "Post Template (nicht verlinkt)"
|
288 |
+
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
+
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
+
msgstr "Das Template für Post Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
292 |
+
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
+
msgid "Post Taxonomy Display"
|
295 |
+
msgstr "Post Systematik Anzeige"
|
296 |
+
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
+
msgstr "Zeige die Systematik, die zu einem Post im Breadcrumb Trail führt."
|
300 |
+
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
+
msgid "Post Taxonomy"
|
303 |
+
msgstr "Post Systematik"
|
304 |
+
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
+
msgid "Categories"
|
307 |
+
msgstr "Kategorien"
|
308 |
+
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
+
msgid "Dates"
|
311 |
+
msgstr "Daten"
|
312 |
+
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
+
msgid "Tags"
|
315 |
+
msgstr "Tags"
|
316 |
+
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
+
msgid "Pages"
|
319 |
+
msgstr "Seiten"
|
320 |
+
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
+
msgstr "Die Systematik, welche das Breadcrumb Trail anzeigen wird."
|
324 |
+
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
+
msgid "Page Template"
|
327 |
+
msgstr "Seiten Template"
|
328 |
+
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
+
msgid "The template for page breadcrumbs."
|
331 |
+
msgstr "Das Template für Seiten Breadcrumbs."
|
332 |
+
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
+
msgid "Page Template (Unlinked)"
|
335 |
+
msgstr "Seiten Template (nicht verlinkt)"
|
336 |
+
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
+
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
+
msgstr "Das Template für Seiten Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
340 |
+
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
+
msgid "Attachment Template"
|
343 |
+
msgstr "Anhang Template"
|
344 |
+
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
+
msgid "The template for attachment breadcrumbs."
|
347 |
+
msgstr "Das Template für Anhang Breadcrumbs."
|
348 |
+
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
+
msgid "Attachment Template (Unlinked)"
|
351 |
+
msgstr "Anhang Template (nicht verlinkt)"
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
+
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
+
msgstr "Das Template für Anhang Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
361 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
+
msgstr "<a title=\"Gehe zu %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
+
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
+
msgid "%htitle%"
|
366 |
+
msgstr "%htitle%"
|
367 |
+
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
+
msgid "%s Template"
|
370 |
+
msgstr "%s Template"
|
371 |
+
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
+
msgid "The template for %s breadcrumbs."
|
374 |
+
msgstr "Das Template für %s Breadcrumbs."
|
375 |
+
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
+
msgid "%s Template (Unlinked)"
|
378 |
+
msgstr "%s Template (nicht verlinkt)"
|
379 |
+
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
+
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
+
msgstr "Das Template für %s Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
383 |
+
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
+
msgid "%s Root Page"
|
386 |
+
msgstr "%s Root Seite"
|
387 |
+
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
+
msgid "— Select —"
|
390 |
+
msgstr "— Auswahl —"
|
391 |
+
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
+
msgid "%s Archive Display"
|
394 |
+
msgstr "%s Archiv Anzeige"
|
395 |
+
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
+
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
+
msgstr "Zeige das Breadcrumb für die %s Post Typus Archive im Breadcrumb Trail."
|
399 |
+
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
+
msgid "%s Taxonomy Display"
|
402 |
+
msgstr "%s Systematik Anzeige"
|
403 |
+
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
+
msgstr "Zeige die Systematik, die zu einem %s im Breadcrumb Trail führt."
|
407 |
+
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
+
msgid "%s Taxonomy"
|
410 |
+
msgstr "%s Systematik"
|
411 |
+
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
+
msgid "Categories & Tags"
|
414 |
+
msgstr "Kategorien & Tags"
|
415 |
+
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
+
msgid "Category Template"
|
418 |
+
msgstr "Kategorie Template"
|
419 |
+
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
+
msgid "The template for category breadcrumbs."
|
422 |
+
msgstr "Das Template für Kategorie Breadcrumbs."
|
423 |
+
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
+
msgid "Category Template (Unlinked)"
|
426 |
+
msgstr "Kategorie Template (nicht verlinkt)"
|
427 |
+
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
+
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
+
msgstr "Das Template für Kategorie Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
431 |
+
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
+
msgid "Tag Template"
|
434 |
+
msgstr "Tag Template"
|
435 |
+
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
+
msgid "The template for tag breadcrumbs."
|
438 |
+
msgstr "Das Template für Tag Breadcrumbs."
|
439 |
+
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
+
msgid "Tag Template (Unlinked)"
|
442 |
+
msgstr "(nicht verlinkt)"
|
443 |
+
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
+
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
+
msgstr "- wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
447 |
+
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
+
msgid "Miscellaneous"
|
450 |
+
msgstr "Sonstiges"
|
451 |
+
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
+
msgid "Author Template"
|
454 |
+
msgstr "Autor Template"
|
455 |
+
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
+
msgid "The template for author breadcrumbs."
|
458 |
+
msgstr "Das Template für Autoren Breadcrumbs."
|
459 |
+
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
+
msgid "Author Template (Unlinked)"
|
462 |
+
msgstr "(nicht verlinkt)"
|
463 |
+
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
+
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
+
msgstr "Das Template für Autoren Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
467 |
+
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
+
msgid "Author Display Format"
|
470 |
+
msgstr "Autor Anzeige Format"
|
471 |
+
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
+
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."
|
474 |
+
msgstr "display_name verwendet den Namen, der unter \"Öffentlicher Name\" auf der Profilseite eingetragen ist. Die anderen entsprechen den Optionen des Nutzerprofils."
|
475 |
+
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
+
msgid "Date Template"
|
478 |
+
msgstr "Datum Template"
|
479 |
+
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
+
msgid "The template for date breadcrumbs."
|
482 |
+
msgstr "Das Template für Datum Breadcrumbs."
|
483 |
+
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
+
msgid "Date Template (Unlinked)"
|
486 |
+
msgstr "Datum Template (nicht verlinkt)"
|
487 |
+
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
+
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
+
msgstr "Das Template für Datum Breadcrumbs - wird nur verwendet, wenn das Breadcrumb nicht verlinkt ist."
|
491 |
+
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
+
msgid "Search Template"
|
494 |
+
msgstr "Suche Template"
|
495 |
+
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
+
msgstr ", wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind."
|
499 |
+
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
+
msgid "Search Template (Unlinked)"
|
502 |
+
msgstr "Suche Template (nicht verlinkt)"
|
503 |
+
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
+
msgstr "Das Anker Template für Suche Breadcrumbs, wird nur verwendet, wenn die Suchresultate mehrere Seiten lang sind und das Breadcrumb nicht verlinkt ist."
|
507 |
+
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
+
msgid "404 Title"
|
510 |
+
msgstr "404 Titel"
|
511 |
+
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
+
msgid "404 Template"
|
514 |
+
msgstr "404 Template"
|
515 |
+
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
+
msgid "The template for 404 breadcrumbs."
|
518 |
+
msgstr "Das Template für 404 Breadcrumbs."
|
519 |
+
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
+
msgid "Save Changes"
|
522 |
+
msgstr "Änderungen Speichern"
|
languages/breadcrumb-navxt-es_ES.mo
CHANGED
Binary file
|
languages/breadcrumb-navxt-es_ES.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2012-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,700 +10,513 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
13 |
-
#: breadcrumb_navxt_widget.php:32
|
14 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
15 |
-
msgstr "Agrega una ruta de navegación en su barra lateral"
|
16 |
-
|
17 |
#: breadcrumb_navxt_widget.php:93
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
20 |
|
21 |
-
#: breadcrumb_navxt_widget.php:
|
22 |
-
msgid "
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: breadcrumb_navxt_widget.php:
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: breadcrumb_navxt_widget.php:
|
38 |
msgid "Plain"
|
39 |
msgstr "Texto plano"
|
40 |
|
41 |
-
#: breadcrumb_navxt_widget.php:
|
42 |
msgid "Link the breadcrumbs"
|
43 |
msgstr "Enlace a la Ruta"
|
44 |
|
45 |
-
#: breadcrumb_navxt_widget.php:
|
46 |
msgid "Reverse the order of the trail"
|
47 |
msgstr "Invertir el orden de la ruta"
|
48 |
|
49 |
-
#: breadcrumb_navxt_widget.php:
|
50 |
msgid "Hide the trail on the front page"
|
51 |
msgstr "Ocultar la ruta de la página principal"
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
55 |
-
msgstr "Su versión de PHP es obsoleta, por favor, actualícese a la nueva versión. Su versión es %s, este plugin requiere %s"
|
56 |
-
|
57 |
-
#: breadcrumb_navxt_admin.php:113
|
58 |
msgid "Insufficient privileges to proceed."
|
59 |
msgstr "No tiene privilegios para proceder."
|
60 |
|
61 |
-
#: breadcrumb_navxt_admin.php:
|
62 |
msgid "Tips for the settings are located below select options."
|
63 |
msgstr "Encontrará tips para los ajustes debajo de cada opción."
|
64 |
|
65 |
-
#: breadcrumb_navxt_admin.php:
|
66 |
msgid "Resources"
|
67 |
msgstr "Recursos"
|
68 |
|
69 |
-
#: breadcrumb_navxt_admin.php:
|
70 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
71 |
msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
74 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
75 |
msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
78 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
79 |
msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
83 |
msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
87 |
msgstr "%sReportar Errores%s: Si piensa que ha encontrado un error, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el error."
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
91 |
msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Giving Back"
|
95 |
msgstr "Dar de vuelta"
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
99 |
msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
103 |
msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
107 |
msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "General"
|
111 |
msgstr "General"
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
115 |
msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Breadcrumb trail with separators"
|
119 |
msgstr "Ruta de Navegación con Separadores"
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "Breadcrumb trail in list form"
|
123 |
msgstr "Ruta de Navegación como Listado"
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "Quick Start"
|
127 |
msgstr "Inicio Rápido"
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
130 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
131 |
msgstr "Usando el código de Inicio Rápido de la sección anterior, el siguiente CSS puede utilizarse como base para darle estilo a su ruta de navegación."
|
132 |
|
133 |
-
#: breadcrumb_navxt_admin.php:
|
134 |
msgid "Styling"
|
135 |
msgstr "Estilo"
|
136 |
|
137 |
-
#: breadcrumb_navxt_admin.php:
|
138 |
msgid "Import/Export/Reset"
|
139 |
msgstr "Importar/Exportar/Reiniciar"
|
140 |
|
141 |
-
#: breadcrumb_navxt_admin.php:
|
142 |
msgid "Import"
|
143 |
msgstr "Importar"
|
144 |
|
145 |
-
#: breadcrumb_navxt_admin.php:
|
146 |
msgid "Export"
|
147 |
msgstr "Exportar"
|
148 |
|
149 |
-
#: breadcrumb_navxt_admin.php:
|
150 |
msgid "Reset"
|
151 |
msgstr "Reiniciar"
|
152 |
|
153 |
-
#: breadcrumb_navxt_admin.php:
|
154 |
msgid "Breadcrumb NavXT Settings"
|
155 |
msgstr "Opciones de Configuración de Breadcrumb NavXT"
|
156 |
|
157 |
-
#: breadcrumb_navxt_admin.php:
|
158 |
msgid "Breadcrumb Separator"
|
159 |
msgstr "Separador de Navegación"
|
160 |
|
161 |
-
#: breadcrumb_navxt_admin.php:
|
162 |
msgid "Placed in between each breadcrumb."
|
163 |
msgstr "Colocado en medio de cada opción de navegación."
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
166 |
msgid "Breadcrumb Max Title Length"
|
167 |
msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
|
168 |
|
169 |
-
#: breadcrumb_navxt_admin.php:
|
170 |
msgid "Home Breadcrumb"
|
171 |
msgstr "Incluir Inicio"
|
172 |
|
173 |
-
#: breadcrumb_navxt_admin.php:
|
174 |
msgid "Place the home breadcrumb in the trail."
|
175 |
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
176 |
|
177 |
-
#: breadcrumb_navxt_admin.php:
|
178 |
msgid "Home Title: "
|
179 |
msgstr "Título de Página de Inicio:"
|
180 |
|
181 |
-
#: breadcrumb_navxt_admin.php:
|
182 |
msgid "Home Template"
|
183 |
msgstr "Plantilla de la Página de Inicio"
|
184 |
|
185 |
-
#: breadcrumb_navxt_admin.php:
|
186 |
msgid "The template for the home breadcrumb."
|
187 |
msgstr "La plantilla de la ruta de navegación para la página de inicio."
|
188 |
|
189 |
-
#: breadcrumb_navxt_admin.php:
|
190 |
msgid "Home Template (Unlinked)"
|
191 |
msgstr "Plantilla de la Página de Inicio (sin vínculo)"
|
192 |
|
193 |
-
#: breadcrumb_navxt_admin.php:
|
194 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
195 |
msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Blog Breadcrumb"
|
199 |
msgstr "Incluir Inicio (del Blog)"
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Place the blog breadcrumb in the trail."
|
203 |
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "Blog Template"
|
207 |
msgstr "Plantilla del Blog"
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
211 |
msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática."
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
214 |
msgid "Blog Template (Unlinked)"
|
215 |
msgstr "Plantilla del Blog (sin vínculo)"
|
216 |
|
217 |
-
#: breadcrumb_navxt_admin.php:
|
218 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
219 |
msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática y el elemento de inicio no está enlazado."
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Main Site Breadcrumb"
|
223 |
msgstr "Ruta del Sitio Principal"
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
227 |
msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Main Site Home Title: "
|
231 |
msgstr "Título de Página de Inicio del Sitio Principal: "
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Main Site Home Template"
|
235 |
msgstr "Plantilla de Inicio del Sitio Principal"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
239 |
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Main Site Home Template (Unlinked)"
|
243 |
msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
247 |
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs y el elemento de navegación no está enlazado."
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Current Item"
|
251 |
msgstr "Item Actual"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "Link Current Item"
|
255 |
msgstr "Incluir Vínculo a Item Actual"
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Yes"
|
259 |
msgstr "Sí"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
-
msgid "Current Item Template"
|
263 |
-
msgstr "Plantilla de Item Actual"
|
264 |
-
|
265 |
-
#: breadcrumb_navxt_admin.php:370
|
266 |
-
msgid "The template for current item breadcrumbs."
|
267 |
-
msgstr "Plantilla del vínculo para el item actual en la ruta de navegación."
|
268 |
-
|
269 |
-
#: breadcrumb_navxt_admin.php:371
|
270 |
-
msgid "Current Item Template (Unlinked)"
|
271 |
-
msgstr "Plantilla del Item Actual (sin vínculo)"
|
272 |
-
|
273 |
-
#: breadcrumb_navxt_admin.php:371
|
274 |
-
msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
|
275 |
-
msgstr "Plantilla del elemento actual en la ruta de navegación, utilizado sólo cuando éste no está enlazado."
|
276 |
-
|
277 |
-
#: breadcrumb_navxt_admin.php:372
|
278 |
msgid "Paged Breadcrumb"
|
279 |
msgstr "Ruta de Navegación Paginada"
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
283 |
msgstr "Incluir la navegación paginada en la ruta de navegación"
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
287 |
msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Paged Template"
|
291 |
msgstr "Plantilla de Entrada Paginada"
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
294 |
msgid "The template for paged breadcrumbs."
|
295 |
msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Posts & Pages"
|
299 |
msgstr "Entradas & Páginas"
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
msgid "Post Template"
|
303 |
msgstr "Plantilla de Entradas"
|
304 |
|
305 |
-
#: breadcrumb_navxt_admin.php:
|
306 |
msgid "The template for post breadcrumbs."
|
307 |
msgstr "La plantilla de la ruta de navegación para entradas."
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Post Template (Unlinked)"
|
311 |
msgstr "Plantilla de la Entrada (sin vínculo)"
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
315 |
msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Post Taxonomy Display"
|
319 |
msgstr "Mostrar Clasificación de Entradas"
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
323 |
msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Post Taxonomy"
|
327 |
msgstr "Clasificación de Entradas"
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Categories"
|
331 |
msgstr "Categorías"
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Dates"
|
335 |
msgstr "Fechas"
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Tags"
|
339 |
msgstr "Etiquetas"
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Pages"
|
343 |
msgstr "Páginas"
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid "The taxonomy which the breadcrumb trail will show."
|
347 |
msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
|
348 |
|
349 |
-
#: breadcrumb_navxt_admin.php:
|
350 |
msgid "Page Template"
|
351 |
msgstr "Plantilla de la Página"
|
352 |
|
353 |
-
#: breadcrumb_navxt_admin.php:
|
354 |
msgid "The template for page breadcrumbs."
|
355 |
msgstr "La plantilla de la ruta de navegación para páginas."
|
356 |
|
357 |
-
#: breadcrumb_navxt_admin.php:
|
358 |
msgid "Page Template (Unlinked)"
|
359 |
msgstr "Plantilla de la Página (sin vínculo)"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
362 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
363 |
msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
msgid "Attachment Template"
|
367 |
msgstr "Plantilla de Archivo Adjunto"
|
368 |
|
369 |
-
#: breadcrumb_navxt_admin.php:
|
370 |
msgid "The template for attachment breadcrumbs."
|
371 |
msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
|
372 |
|
373 |
-
#: breadcrumb_navxt_admin.php:
|
374 |
msgid "Attachment Template (Unlinked)"
|
375 |
msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
|
376 |
|
377 |
-
#: breadcrumb_navxt_admin.php:
|
378 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
379 |
msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
-
#: breadcrumb_navxt_class.php:
|
383 |
-
#: breadcrumb_navxt_class.php:
|
384 |
-
#: breadcrumb_navxt_class.php:
|
385 |
-
#: breadcrumb_navxt_class.php:259
|
386 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
387 |
msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">%htitle%</a>"
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
msgid "%htitle%"
|
391 |
msgstr "%htitle%"
|
392 |
|
393 |
-
#: breadcrumb_navxt_admin.php:
|
394 |
msgid "%s Template"
|
395 |
msgstr "Plantilla de %s"
|
396 |
|
397 |
-
#: breadcrumb_navxt_admin.php:
|
398 |
msgid "The template for %s breadcrumbs."
|
399 |
msgstr "La plantilla de la ruta de navegación para %s."
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
msgid "%s Template (Unlinked)"
|
403 |
msgstr "Plantilla de %s (sin vínculo)"
|
404 |
|
405 |
-
#: breadcrumb_navxt_admin.php:
|
406 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
407 |
msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
410 |
msgid "%s Root Page"
|
411 |
msgstr "%s Página Raíz"
|
412 |
|
413 |
-
#: breadcrumb_navxt_admin.php:
|
414 |
msgid "— Select —"
|
415 |
msgstr "— Seleccione —"
|
416 |
|
417 |
-
#: breadcrumb_navxt_admin.php:
|
418 |
msgid "%s Archive Display"
|
419 |
msgstr "Despliegue de Archivos de %s"
|
420 |
|
421 |
-
#: breadcrumb_navxt_admin.php:
|
422 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
423 |
msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
|
424 |
|
425 |
-
#: breadcrumb_navxt_admin.php:
|
426 |
msgid "%s Taxonomy Display"
|
427 |
msgstr "%s Despliegue de Clasificación"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
431 |
msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "%s Taxonomy"
|
435 |
msgstr "%s Clasificación"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "Categories & Tags"
|
439 |
msgstr "Categorías & Etiquetas"
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
442 |
msgid "Category Template"
|
443 |
msgstr "Plantilla de Categoría"
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "The template for category breadcrumbs."
|
447 |
msgstr "La plantilla de la ruta de navegación para categorías."
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Category Template (Unlinked)"
|
451 |
msgstr "Plantilla de la Categoría (sin vínculo)"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
455 |
msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "Tag Template"
|
459 |
msgstr "Plantilla de la Etiqueta"
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "The template for tag breadcrumbs."
|
463 |
msgstr "La plantilla de la ruta de navegación para etiquetas."
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "Tag Template (Unlinked)"
|
467 |
msgstr "Plantilla de la Etiqueta (sin vínculo)"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
471 |
msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Miscellaneous"
|
475 |
msgstr "Misceláneos"
|
476 |
|
477 |
-
#: breadcrumb_navxt_admin.php:
|
478 |
msgid "Author Template"
|
479 |
msgstr "Plantilla de Autor"
|
480 |
|
481 |
-
#: breadcrumb_navxt_admin.php:
|
482 |
msgid "The template for author breadcrumbs."
|
483 |
msgstr "La plantilla de la ruta de navegación para autores."
|
484 |
|
485 |
-
#: breadcrumb_navxt_admin.php:
|
486 |
msgid "Author Template (Unlinked)"
|
487 |
msgstr "Plantilla del Autor (sin vínculo)"
|
488 |
|
489 |
-
#: breadcrumb_navxt_admin.php:
|
490 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
491 |
msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
|
492 |
|
493 |
-
#: breadcrumb_navxt_admin.php:
|
494 |
msgid "Author Display Format"
|
495 |
msgstr "Formato de Despliegue de Autor"
|
496 |
|
497 |
-
#: breadcrumb_navxt_admin.php:
|
498 |
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
499 |
msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
|
500 |
|
501 |
-
#: breadcrumb_navxt_admin.php:
|
502 |
msgid "Date Template"
|
503 |
msgstr "Plantilla de la Fecha"
|
504 |
|
505 |
-
#: breadcrumb_navxt_admin.php:
|
506 |
msgid "The template for date breadcrumbs."
|
507 |
msgstr "La plantilla de la ruta de navegación para fechas."
|
508 |
|
509 |
-
#: breadcrumb_navxt_admin.php:
|
510 |
msgid "Date Template (Unlinked)"
|
511 |
msgstr "Plantilla de la Fecha (sin vínculo)"
|
512 |
|
513 |
-
#: breadcrumb_navxt_admin.php:
|
514 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
515 |
msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
|
516 |
|
517 |
-
#: breadcrumb_navxt_admin.php:
|
518 |
msgid "Search Template"
|
519 |
msgstr "Plantilla de la Búsqueda"
|
520 |
|
521 |
-
#: breadcrumb_navxt_admin.php:
|
522 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
523 |
msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
|
524 |
|
525 |
-
#: breadcrumb_navxt_admin.php:
|
526 |
msgid "Search Template (Unlinked)"
|
527 |
msgstr "Plantilla de la Búsqueda (sin vínculo)"
|
528 |
|
529 |
-
#: breadcrumb_navxt_admin.php:
|
530 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
531 |
msgstr "La plantilla de la ruta de navegación para la primera página de resultados de búsqueda, utilizado sólo cuando éstos ocupan más de una página y el elemento no está enlazado."
|
532 |
|
533 |
-
#: breadcrumb_navxt_admin.php:
|
534 |
msgid "404 Title"
|
535 |
msgstr "Título Error 404"
|
536 |
|
537 |
-
#: breadcrumb_navxt_admin.php:
|
538 |
msgid "404 Template"
|
539 |
msgstr "Plantilla de Error 404"
|
540 |
|
541 |
-
#: breadcrumb_navxt_admin.php:
|
542 |
msgid "The template for 404 breadcrumbs."
|
543 |
msgstr "La plantilla para la ruta de la página de error 404."
|
544 |
|
545 |
-
#: breadcrumb_navxt_admin.php:
|
546 |
msgid "Save Changes"
|
547 |
-
msgstr "Grabar Cambios"
|
548 |
-
|
549 |
-
#: includes/mtekk_adminkit.php:201
|
550 |
-
msgid "Settings"
|
551 |
-
msgstr "Configuraciones"
|
552 |
-
|
553 |
-
#: includes/mtekk_adminkit.php:271
|
554 |
-
msgid "Your settings are out of date."
|
555 |
-
msgstr "Sus ajustes están desactualizados."
|
556 |
-
|
557 |
-
#: includes/mtekk_adminkit.php:271
|
558 |
-
msgid "Migrate the settings now."
|
559 |
-
msgstr "Migrar los ajustes ahora."
|
560 |
-
|
561 |
-
#: includes/mtekk_adminkit.php:271
|
562 |
-
msgid "Migrate now."
|
563 |
-
msgstr "Migrar ahora."
|
564 |
-
|
565 |
-
#: includes/mtekk_adminkit.php:279
|
566 |
-
msgid "Your plugin install is incomplete."
|
567 |
-
msgstr "La instalación del plugin no se ha completado."
|
568 |
-
|
569 |
-
#: includes/mtekk_adminkit.php:279
|
570 |
-
msgid "Load default settings now."
|
571 |
-
msgstr "Cargar los ajustes predeterminados ahora."
|
572 |
-
|
573 |
-
#: includes/mtekk_adminkit.php:279
|
574 |
-
msgid "Complete now."
|
575 |
-
msgstr "Completar ahora."
|
576 |
-
|
577 |
-
#: includes/mtekk_adminkit.php:287
|
578 |
-
msgid "Your plugin settings are invalid."
|
579 |
-
msgstr "Los ajustes del plugin no son válidos."
|
580 |
-
|
581 |
-
#: includes/mtekk_adminkit.php:287
|
582 |
-
msgid "Attempt to fix settings now."
|
583 |
-
msgstr "Intentar arreglar los ajustes ahora."
|
584 |
-
|
585 |
-
#: includes/mtekk_adminkit.php:287
|
586 |
-
msgid "Fix now."
|
587 |
-
msgstr "Arreglar ahora."
|
588 |
-
|
589 |
-
#: includes/mtekk_adminkit.php:463
|
590 |
-
msgid "Settings successfully saved."
|
591 |
-
msgstr "Ajustes guardados exitosamente."
|
592 |
-
|
593 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
594 |
-
msgid "Undo the options save."
|
595 |
-
msgstr "Deshacer modificación de opciones."
|
596 |
-
|
597 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
598 |
-
#: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
|
599 |
-
#: includes/mtekk_adminkit.php:614
|
600 |
-
msgid "Undo"
|
601 |
-
msgstr "Deshacer"
|
602 |
-
|
603 |
-
#: includes/mtekk_adminkit.php:468
|
604 |
-
msgid "Some settings were not saved."
|
605 |
-
msgstr "Algunos ajustes no fueron grabados."
|
606 |
-
|
607 |
-
#: includes/mtekk_adminkit.php:469
|
608 |
-
msgid "The following settings were not saved:"
|
609 |
-
msgstr "Los siguientes ajustes no fueron grabados:"
|
610 |
-
|
611 |
-
#: includes/mtekk_adminkit.php:474
|
612 |
-
msgid "Please include this message in your %sbug report%s."
|
613 |
-
msgstr "Por favor, incluir este mensaje en su %sreporte de bugs%s."
|
614 |
-
|
615 |
-
#: includes/mtekk_adminkit.php:474
|
616 |
-
msgid "Go to the %s support post for your version."
|
617 |
-
msgstr "Ir a la documentación en línea de %s para su versión."
|
618 |
-
|
619 |
-
#: includes/mtekk_adminkit.php:573
|
620 |
-
msgid "Settings successfully imported from the uploaded file."
|
621 |
-
msgstr "Los ajustes de Breadcrumb NavXT se importaron exitosamente desde el archivo."
|
622 |
-
|
623 |
-
#: includes/mtekk_adminkit.php:573
|
624 |
-
msgid "Undo the options import."
|
625 |
-
msgstr "Deshacer importación de opciones."
|
626 |
-
|
627 |
-
#: includes/mtekk_adminkit.php:578
|
628 |
-
msgid "Importing settings from file failed."
|
629 |
-
msgstr "Falló la importación de los ajustes desde el archivo."
|
630 |
-
|
631 |
-
#: includes/mtekk_adminkit.php:597
|
632 |
-
msgid "Settings successfully reset to the default values."
|
633 |
-
msgstr "Los ajustes predeterminados de Breadcrumb NavXT se restauraron exitosamente."
|
634 |
-
|
635 |
-
#: includes/mtekk_adminkit.php:597
|
636 |
-
msgid "Undo the options reset."
|
637 |
-
msgstr "Deshacer reinicio de opciones."
|
638 |
-
|
639 |
-
#: includes/mtekk_adminkit.php:614
|
640 |
-
msgid "Settings successfully undid the last operation."
|
641 |
-
msgstr "Se deshizo exitosamente la operación anterior."
|
642 |
-
|
643 |
-
#: includes/mtekk_adminkit.php:614
|
644 |
-
msgid "Undo the last undo operation."
|
645 |
-
msgstr "Deshacer la última operación de \"deshacer\""
|
646 |
-
|
647 |
-
#: includes/mtekk_adminkit.php:649
|
648 |
-
msgid "Settings successfully migrated."
|
649 |
-
msgstr "Ajustes migrados exitosamente."
|
650 |
-
|
651 |
-
#: includes/mtekk_adminkit.php:656
|
652 |
-
msgid "Default settings successfully installed."
|
653 |
-
msgstr "Los ajustes predeterminados se instalaron exitosamente."
|
654 |
-
|
655 |
-
#: includes/mtekk_adminkit.php:757
|
656 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
657 |
-
msgstr "Importar los ajustes de Breadcrumb NavXT desde un archivo XML, exportar los ajustes actuales a un archivo XML o reiniciar los valores predeterminados de Breadcrumb NavXT."
|
658 |
-
|
659 |
-
#: includes/mtekk_adminkit.php:760
|
660 |
-
msgid "Settings File"
|
661 |
-
msgstr "Archivo de Ajustes"
|
662 |
-
|
663 |
-
#: includes/mtekk_adminkit.php:763
|
664 |
-
msgid "Select a XML settings file to upload and import settings from."
|
665 |
-
msgstr "Seleccionar un archivo XML para cargar e importar los ajustes de este plugin."
|
666 |
-
|
667 |
-
#: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
|
668 |
-
msgid "Home"
|
669 |
-
msgstr "Inicio"
|
670 |
-
|
671 |
-
#: breadcrumb_navxt_class.php:230
|
672 |
-
msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
|
673 |
-
msgstr "<a title=\"Cargar de Nuevo\" href=\"%link%\">%htitle%</a>"
|
674 |
-
|
675 |
-
#: breadcrumb_navxt_class.php:242
|
676 |
-
msgid "Page %htitle%"
|
677 |
-
msgstr "Página %htitle%"
|
678 |
-
|
679 |
-
#: breadcrumb_navxt_class.php:266
|
680 |
-
msgid "404"
|
681 |
-
msgstr "Página no encontrada"
|
682 |
-
|
683 |
-
#: breadcrumb_navxt_class.php:269
|
684 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>'"
|
685 |
-
msgstr "Resultados de búsqueda para: <a title=\"Ir a la primera página de los resultados de búsqueda para %title%.\" href=\"%link%\">%htitle%</a>'"
|
686 |
-
|
687 |
-
#: breadcrumb_navxt_class.php:271
|
688 |
-
msgid "Search results for '%htitle%'"
|
689 |
-
msgstr "Resultados de búsqueda para '%htitle%'"
|
690 |
-
|
691 |
-
#: breadcrumb_navxt_class.php:274
|
692 |
-
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
|
693 |
-
msgstr "<a title=\"Ir a los archivos de la etiqueta %title%\" href=\"%link%\">%htitle%</a>"
|
694 |
-
|
695 |
-
#: breadcrumb_navxt_class.php:279
|
696 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
|
697 |
-
msgstr "Artículos por: <a title=\"Ir a la primera página de entradas por %title%.\" href=\"%link%\">%htitle%</a>"
|
698 |
-
|
699 |
-
#: breadcrumb_navxt_class.php:281
|
700 |
-
msgid "Articles by: %htitle%"
|
701 |
-
msgstr "Artículos por: %htitle%"
|
702 |
-
|
703 |
-
#: breadcrumb_navxt_class.php:286
|
704 |
-
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
|
705 |
-
msgstr "<a title=\"Ir a los archivos de la categoría %title% \" href=\"%link%\">%htitle%</a>"
|
706 |
-
|
707 |
-
#: breadcrumb_navxt_class.php:290
|
708 |
-
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
|
709 |
-
msgstr "<a title=\"Ir a los archivos de %title%\" href=\"%link%\">%htitle%</a>"
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:30:30+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
|
|
|
|
|
|
|
|
13 |
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr ""
|
16 |
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr ""
|
20 |
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr ""
|
24 |
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr ""
|
28 |
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Título:"
|
32 |
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
msgid "Plain"
|
35 |
msgstr "Texto plano"
|
36 |
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
msgid "Link the breadcrumbs"
|
39 |
msgstr "Enlace a la Ruta"
|
40 |
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
msgid "Reverse the order of the trail"
|
43 |
msgstr "Invertir el orden de la ruta"
|
44 |
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
msgid "Hide the trail on the front page"
|
47 |
msgstr "Ocultar la ruta de la página principal"
|
48 |
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
|
|
|
|
|
|
|
|
50 |
msgid "Insufficient privileges to proceed."
|
51 |
msgstr "No tiene privilegios para proceder."
|
52 |
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
msgid "Tips for the settings are located below select options."
|
55 |
msgstr "Encontrará tips para los ajustes debajo de cada opción."
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
msgid "Resources"
|
59 |
msgstr "Recursos"
|
60 |
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
msgstr "%sTutoriales e Instructivos%s: En el website del autor están disponibles varias guías, tutoriales e instructivos."
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
msgstr "Ir al archivo de etiquetas de Breadcrumb NavXT"
|
68 |
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
msgstr "%sDocumentación En Línea%s: Revise la documentación para más información técnica."
|
72 |
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
msgstr "Ir a la documentación en línea de Breadcrumb NavXT (en inglés)"
|
76 |
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
msgstr "%sReportar Errores%s: Si piensa que ha encontrado un error, por favor incluya su versión de WordPress y los detalles de cómo se reproduce el error."
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
msgstr "Ir a la documentación en línea de Breadcrumb NavXT para su versión."
|
84 |
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
msgid "Giving Back"
|
87 |
msgstr "Dar de vuelta"
|
88 |
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
msgstr "%sDonar%s: ¿Le gusta Breadcrumb NavXT y desea colaborar con el desarrollo? Considere comprarle al autor una cerveza."
|
92 |
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
msgstr "Ir a la página de Paypal para darle un donativo a Breadcrumb NavXT."
|
96 |
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
msgstr "%sTraducir%s: ¿No está disponible en su idioma? Comuníquese con John Havlik para colaborar con la traducción."
|
100 |
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
msgid "General"
|
103 |
msgstr "General"
|
104 |
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
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."
|
107 |
msgstr "Para que tomen efecto los ajustes en esta página, debe incluir el widget del plugin o colocar el código en su plantilla."
|
108 |
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
msgid "Breadcrumb trail with separators"
|
111 |
msgstr "Ruta de Navegación con Separadores"
|
112 |
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
msgid "Breadcrumb trail in list form"
|
115 |
msgstr "Ruta de Navegación como Listado"
|
116 |
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
msgid "Quick Start"
|
119 |
msgstr "Inicio Rápido"
|
120 |
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
msgstr "Usando el código de Inicio Rápido de la sección anterior, el siguiente CSS puede utilizarse como base para darle estilo a su ruta de navegación."
|
124 |
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
msgid "Styling"
|
127 |
msgstr "Estilo"
|
128 |
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
msgid "Import/Export/Reset"
|
131 |
msgstr "Importar/Exportar/Reiniciar"
|
132 |
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
msgid "Import"
|
135 |
msgstr "Importar"
|
136 |
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
msgid "Export"
|
139 |
msgstr "Exportar"
|
140 |
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
msgid "Reset"
|
143 |
msgstr "Reiniciar"
|
144 |
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
msgid "Breadcrumb NavXT Settings"
|
147 |
msgstr "Opciones de Configuración de Breadcrumb NavXT"
|
148 |
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
msgid "Breadcrumb Separator"
|
151 |
msgstr "Separador de Navegación"
|
152 |
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
msgid "Placed in between each breadcrumb."
|
155 |
msgstr "Colocado en medio de cada opción de navegación."
|
156 |
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
msgid "Breadcrumb Max Title Length"
|
159 |
msgstr "Máximo # de caracteres del Título en la Ruta de Navegación"
|
160 |
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
msgid "Home Breadcrumb"
|
163 |
msgstr "Incluir Inicio"
|
164 |
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
msgid "Place the home breadcrumb in the trail."
|
167 |
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
168 |
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
msgid "Home Title: "
|
171 |
msgstr "Título de Página de Inicio:"
|
172 |
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
msgid "Home Template"
|
175 |
msgstr "Plantilla de la Página de Inicio"
|
176 |
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
msgid "The template for the home breadcrumb."
|
179 |
msgstr "La plantilla de la ruta de navegación para la página de inicio."
|
180 |
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
msgid "Home Template (Unlinked)"
|
183 |
msgstr "Plantilla de la Página de Inicio (sin vínculo)"
|
184 |
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
msgstr "La plantilla de la ruta de navegación para la página de inicio, cuando el elemento de inicio no está enlazado."
|
188 |
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
msgid "Blog Breadcrumb"
|
191 |
msgstr "Incluir Inicio (del Blog)"
|
192 |
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
msgid "Place the blog breadcrumb in the trail."
|
195 |
msgstr "Colocar un enlace a la página de inicio en la ruta de navegación."
|
196 |
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
msgid "Blog Template"
|
199 |
msgstr "Plantilla del Blog"
|
200 |
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática."
|
204 |
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
msgid "Blog Template (Unlinked)"
|
207 |
msgstr "Plantilla del Blog (sin vínculo)"
|
208 |
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
msgstr "La plantilla de la ruta de navegación para el blog, utilizado sólo cuando la página inicial es una página estática y el elemento de inicio no está enlazado."
|
212 |
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
msgid "Main Site Breadcrumb"
|
215 |
msgstr "Ruta del Sitio Principal"
|
216 |
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
msgstr "Colocar un enlace a la página de inicio del sitio principal en la ruta de navegación de una configuración con múltiples blogs."
|
220 |
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
msgid "Main Site Home Title: "
|
223 |
msgstr "Título de Página de Inicio del Sitio Principal: "
|
224 |
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
msgid "Main Site Home Template"
|
227 |
msgstr "Plantilla de Inicio del Sitio Principal"
|
228 |
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs."
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
msgid "Main Site Home Template (Unlinked)"
|
235 |
msgstr "Plantilla de Inicio del Sitio Principal (sin vínculo)"
|
236 |
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
msgstr "La plantilla de enlace para la página de inicio del sitio principal, utilizada sólo en configuraciones con múltiples blogs y el elemento de navegación no está enlazado."
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
msgid "Current Item"
|
243 |
msgstr "Item Actual"
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
msgid "Link Current Item"
|
247 |
msgstr "Incluir Vínculo a Item Actual"
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
msgid "Yes"
|
251 |
msgstr "Sí"
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Paged Breadcrumb"
|
255 |
msgstr "Ruta de Navegación Paginada"
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
msgstr "Incluir la navegación paginada en la ruta de navegación"
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
msgstr "Mostrar que el usuario está en una página distinta a la primera de una entrada/archivo con multiples páginas."
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
msgid "Paged Template"
|
267 |
msgstr "Plantilla de Entrada Paginada"
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
msgid "The template for paged breadcrumbs."
|
271 |
msgstr "Plantilla de ruta de navegación de entradas de varias páginas."
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
msgid "Posts & Pages"
|
275 |
msgstr "Entradas & Páginas"
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
msgid "Post Template"
|
279 |
msgstr "Plantilla de Entradas"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
msgid "The template for post breadcrumbs."
|
283 |
msgstr "La plantilla de la ruta de navegación para entradas."
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
msgid "Post Template (Unlinked)"
|
287 |
msgstr "Plantilla de la Entrada (sin vínculo)"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
msgstr "La plantilla de la ruta de navegación para entradas, cuando el elemento no está enlazado."
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
msgid "Post Taxonomy Display"
|
295 |
msgstr "Mostrar Clasificación de Entradas"
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
msgstr "Mostrar la ruta de navegación con la clasificación que lleva la entrada."
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
msgid "Post Taxonomy"
|
303 |
msgstr "Clasificación de Entradas"
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
msgid "Categories"
|
307 |
msgstr "Categorías"
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
msgid "Dates"
|
311 |
msgstr "Fechas"
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
msgid "Tags"
|
315 |
msgstr "Etiquetas"
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
msgid "Pages"
|
319 |
msgstr "Páginas"
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
msgstr "El tipo de clasificación que se mostrará en la ruta de navegación."
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
msgid "Page Template"
|
327 |
msgstr "Plantilla de la Página"
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
msgid "The template for page breadcrumbs."
|
331 |
msgstr "La plantilla de la ruta de navegación para páginas."
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
msgid "Page Template (Unlinked)"
|
335 |
msgstr "Plantilla de la Página (sin vínculo)"
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
msgstr "La plantilla de la ruta de navegación para páginas, cuando el elemento no está enlazado."
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
msgid "Attachment Template"
|
343 |
msgstr "Plantilla de Archivo Adjunto"
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
msgid "The template for attachment breadcrumbs."
|
347 |
msgstr "La plantilla de la ruta de navegación para archivos adjuntos."
|
348 |
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
msgid "Attachment Template (Unlinked)"
|
351 |
msgstr "Plantilla del Archivo Adjunto (sin vínculo)"
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
msgstr "La plantilla de la ruta de navegación para archivos adjuntos, cuando el elemento no está enlazado."
|
356 |
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
|
|
361 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
msgstr "<a title=\"Ir a %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
msgid "%htitle%"
|
366 |
msgstr "%htitle%"
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
msgid "%s Template"
|
370 |
msgstr "Plantilla de %s"
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
msgid "The template for %s breadcrumbs."
|
374 |
msgstr "La plantilla de la ruta de navegación para %s."
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
msgid "%s Template (Unlinked)"
|
378 |
msgstr "Plantilla de %s (sin vínculo)"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
msgstr "La plantilla de la ruta de navegación para %s, cuando el elemento no está enlazado."
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
msgid "%s Root Page"
|
386 |
msgstr "%s Página Raíz"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
msgid "— Select —"
|
390 |
msgstr "— Seleccione —"
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
msgid "%s Archive Display"
|
394 |
msgstr "Despliegue de Archivos de %s"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
msgstr "Mostrar la ruta de navegación para los archivos de las entradas de tipo "
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
msgid "%s Taxonomy Display"
|
402 |
msgstr "%s Despliegue de Clasificación"
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
msgstr "Mostrar la clasificación que lleva a %s en la ruta de navegación."
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
msgid "%s Taxonomy"
|
410 |
msgstr "%s Clasificación"
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
msgid "Categories & Tags"
|
414 |
msgstr "Categorías & Etiquetas"
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
msgid "Category Template"
|
418 |
msgstr "Plantilla de Categoría"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
msgid "The template for category breadcrumbs."
|
422 |
msgstr "La plantilla de la ruta de navegación para categorías."
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
msgid "Category Template (Unlinked)"
|
426 |
msgstr "Plantilla de la Categoría (sin vínculo)"
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
msgstr "La plantilla de la ruta de navegación para categorías, cuando el elemento no está enlazado."
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
msgid "Tag Template"
|
434 |
msgstr "Plantilla de la Etiqueta"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
msgid "The template for tag breadcrumbs."
|
438 |
msgstr "La plantilla de la ruta de navegación para etiquetas."
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
msgid "Tag Template (Unlinked)"
|
442 |
msgstr "Plantilla de la Etiqueta (sin vínculo)"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
msgstr "La plantilla de la ruta de navegación para etiquetas, cuando el elemento no está enlazado."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
msgid "Miscellaneous"
|
450 |
msgstr "Misceláneos"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
msgid "Author Template"
|
454 |
msgstr "Plantilla de Autor"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
msgid "The template for author breadcrumbs."
|
458 |
msgstr "La plantilla de la ruta de navegación para autores."
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
msgid "Author Template (Unlinked)"
|
462 |
msgstr "Plantilla del Autor (sin vínculo)"
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
msgstr "La plantilla de la ruta de navegación para autores, cuando el elemento no está enlazado."
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
msgid "Author Display Format"
|
470 |
msgstr "Formato de Despliegue de Autor"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
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."
|
474 |
msgstr "display_name utiliza el nombre especificado en \"Mostrar este nombre públicamente\" en el perfil del usuario, la otras opciones corresponden a los campos nombre (first_name), apellido (last_name) y alias (nickname) en el perfil del usuario."
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
msgid "Date Template"
|
478 |
msgstr "Plantilla de la Fecha"
|
479 |
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
msgid "The template for date breadcrumbs."
|
482 |
msgstr "La plantilla de la ruta de navegación para fechas."
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
msgid "Date Template (Unlinked)"
|
486 |
msgstr "Plantilla de la Fecha (sin vínculo)"
|
487 |
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
msgstr "La plantilla de la ruta de navegación para fechas, cuando el elemento no está enlazado."
|
491 |
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
msgid "Search Template"
|
494 |
msgstr "Plantilla de la Búsqueda"
|
495 |
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
msgstr "Plantilla del vínculo a la primera página de resultados de búsqueda en la ruta de navegación, utilizado sólo cuando éstos ocupan más de una página."
|
499 |
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
msgid "Search Template (Unlinked)"
|
502 |
msgstr "Plantilla de la Búsqueda (sin vínculo)"
|
503 |
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
msgstr "La plantilla de la ruta de navegación para la primera página de resultados de búsqueda, utilizado sólo cuando éstos ocupan más de una página y el elemento no está enlazado."
|
507 |
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
msgid "404 Title"
|
510 |
msgstr "Título Error 404"
|
511 |
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
msgid "404 Template"
|
514 |
msgstr "Plantilla de Error 404"
|
515 |
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
msgid "The template for 404 breadcrumbs."
|
518 |
msgstr "La plantilla para la ruta de la página de error 404."
|
519 |
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
msgid "Save Changes"
|
522 |
+
msgstr "Grabar Cambios"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt-et.mo
CHANGED
Binary file
|
languages/breadcrumb-navxt-et.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2012-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,700 +10,513 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
13 |
-
#: breadcrumb_navxt_widget.php:32
|
14 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
15 |
-
msgstr "Lisa teekonna rada äärepaanile"
|
16 |
-
|
17 |
#: breadcrumb_navxt_widget.php:93
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
20 |
|
21 |
-
#: breadcrumb_navxt_widget.php:
|
22 |
-
msgid "
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: breadcrumb_navxt_widget.php:
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: breadcrumb_navxt_widget.php:
|
38 |
msgid "Plain"
|
39 |
msgstr "Lihtne"
|
40 |
|
41 |
-
#: breadcrumb_navxt_widget.php:
|
42 |
msgid "Link the breadcrumbs"
|
43 |
msgstr "Lisa teekonna rajale lingid"
|
44 |
|
45 |
-
#: breadcrumb_navxt_widget.php:
|
46 |
msgid "Reverse the order of the trail"
|
47 |
msgstr "Pööra teekonna rada vastupidi"
|
48 |
|
49 |
-
#: breadcrumb_navxt_widget.php:
|
50 |
msgid "Hide the trail on the front page"
|
51 |
msgstr "Peida rada avalehel"
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
55 |
-
msgstr "Sinu PHP versioon on liiga vana, palun uuenda PHP versiooni. Sinu versioon on %s, Breadcrumb NavXT nõuab versiooni %s"
|
56 |
-
|
57 |
-
#: breadcrumb_navxt_admin.php:113
|
58 |
msgid "Insufficient privileges to proceed."
|
59 |
msgstr "Puuduvad õigused, et jätkata."
|
60 |
|
61 |
-
#: breadcrumb_navxt_admin.php:
|
62 |
msgid "Tips for the settings are located below select options."
|
63 |
msgstr "Seadete näpunäited paiknevad valikute all."
|
64 |
|
65 |
-
#: breadcrumb_navxt_admin.php:
|
66 |
msgid "Resources"
|
67 |
msgstr "Vahendid"
|
68 |
|
69 |
-
#: breadcrumb_navxt_admin.php:
|
70 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
71 |
msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
74 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
75 |
msgstr "Mine Breadcrumb NavXT sildi arhiivi."
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
78 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
79 |
msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
83 |
msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
87 |
msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
91 |
msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Giving Back"
|
95 |
msgstr "Tagasiandmine"
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
99 |
msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
103 |
msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
107 |
msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "General"
|
111 |
msgstr "Peamine"
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
115 |
msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Breadcrumb trail with separators"
|
119 |
msgstr "Teekonna rada koos eraldajatega"
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "Breadcrumb trail in list form"
|
123 |
msgstr "Teekonna rada nimekirja formaadis"
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "Quick Start"
|
127 |
msgstr "Kiire alustamine"
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
130 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
131 |
msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
|
132 |
|
133 |
-
#: breadcrumb_navxt_admin.php:
|
134 |
msgid "Styling"
|
135 |
msgstr "Stiil"
|
136 |
|
137 |
-
#: breadcrumb_navxt_admin.php:
|
138 |
msgid "Import/Export/Reset"
|
139 |
msgstr "Import/Eksport/Lähtestamine"
|
140 |
|
141 |
-
#: breadcrumb_navxt_admin.php:
|
142 |
msgid "Import"
|
143 |
msgstr "Import"
|
144 |
|
145 |
-
#: breadcrumb_navxt_admin.php:
|
146 |
msgid "Export"
|
147 |
msgstr "Eksport"
|
148 |
|
149 |
-
#: breadcrumb_navxt_admin.php:
|
150 |
msgid "Reset"
|
151 |
msgstr "Lähtestamine"
|
152 |
|
153 |
-
#: breadcrumb_navxt_admin.php:
|
154 |
msgid "Breadcrumb NavXT Settings"
|
155 |
msgstr "Breadcrumb NavXT seaded"
|
156 |
|
157 |
-
#: breadcrumb_navxt_admin.php:
|
158 |
msgid "Breadcrumb Separator"
|
159 |
msgstr "Teekonna raja eraldaja"
|
160 |
|
161 |
-
#: breadcrumb_navxt_admin.php:
|
162 |
msgid "Placed in between each breadcrumb."
|
163 |
msgstr "Paigutatakse iga teekonna elemendi vahele"
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
166 |
msgid "Breadcrumb Max Title Length"
|
167 |
msgstr "Teekonna raja maksimaalne nimetuse pikkus"
|
168 |
|
169 |
-
#: breadcrumb_navxt_admin.php:
|
170 |
msgid "Home Breadcrumb"
|
171 |
msgstr "Avalehe rada"
|
172 |
|
173 |
-
#: breadcrumb_navxt_admin.php:
|
174 |
msgid "Place the home breadcrumb in the trail."
|
175 |
msgstr "Lisa avaleht teekonna rajale"
|
176 |
|
177 |
-
#: breadcrumb_navxt_admin.php:
|
178 |
msgid "Home Title: "
|
179 |
msgstr "Avalehe nimetus:"
|
180 |
|
181 |
-
#: breadcrumb_navxt_admin.php:
|
182 |
msgid "Home Template"
|
183 |
msgstr "Avalehe mall"
|
184 |
|
185 |
-
#: breadcrumb_navxt_admin.php:
|
186 |
msgid "The template for the home breadcrumb."
|
187 |
msgstr "Avalehe teekonna raja mall."
|
188 |
|
189 |
-
#: breadcrumb_navxt_admin.php:
|
190 |
msgid "Home Template (Unlinked)"
|
191 |
msgstr "Avalehe mall (ei ole lingitud)"
|
192 |
|
193 |
-
#: breadcrumb_navxt_admin.php:
|
194 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
195 |
msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Blog Breadcrumb"
|
199 |
msgstr "Blogi teekonna rada"
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Place the blog breadcrumb in the trail."
|
203 |
msgstr "Aseta blogi teekond rajale."
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "Blog Template"
|
207 |
msgstr "Blogi teekonna rada"
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
211 |
msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
214 |
msgid "Blog Template (Unlinked)"
|
215 |
msgstr "Blogi mall (linkimata)"
|
216 |
|
217 |
-
#: breadcrumb_navxt_admin.php:
|
218 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
219 |
msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Main Site Breadcrumb"
|
223 |
msgstr "Peamise saidi teekonna rada"
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
227 |
msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Main Site Home Title: "
|
231 |
msgstr "Peamise saidi pealkiri:"
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Main Site Home Template"
|
235 |
msgstr "Peamise saidi avalehe mall"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
239 |
msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Main Site Home Template (Unlinked)"
|
243 |
msgstr "Peamise saidi avalehe mall (linkimata)"
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
247 |
msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Current Item"
|
251 |
msgstr "Avatud element"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "Link Current Item"
|
255 |
msgstr "Lingi avatud element"
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Yes"
|
259 |
msgstr "Jah"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
-
msgid "Current Item Template"
|
263 |
-
msgstr "Avatud elemendi mall"
|
264 |
-
|
265 |
-
#: breadcrumb_navxt_admin.php:370
|
266 |
-
msgid "The template for current item breadcrumbs."
|
267 |
-
msgstr "Avatud elementide teekonna raja mall."
|
268 |
-
|
269 |
-
#: breadcrumb_navxt_admin.php:371
|
270 |
-
msgid "Current Item Template (Unlinked)"
|
271 |
-
msgstr "Avatud elemendi mall (linkimata)"
|
272 |
-
|
273 |
-
#: breadcrumb_navxt_admin.php:371
|
274 |
-
msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
|
275 |
-
msgstr "Avatud elementide teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada ei ole lingitud."
|
276 |
-
|
277 |
-
#: breadcrumb_navxt_admin.php:372
|
278 |
msgid "Paged Breadcrumb"
|
279 |
msgstr "Lehekülgedele jaotatud teekonna rada"
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
283 |
msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
287 |
msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Paged Template"
|
291 |
msgstr "Jaotatud mall"
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
294 |
msgid "The template for paged breadcrumbs."
|
295 |
msgstr "Lehekülgedele jaotatud teekonna raja mall."
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Posts & Pages"
|
299 |
msgstr "Postitused & Lehed"
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
msgid "Post Template"
|
303 |
msgstr "Postituste mall"
|
304 |
|
305 |
-
#: breadcrumb_navxt_admin.php:
|
306 |
msgid "The template for post breadcrumbs."
|
307 |
msgstr "Postituste teekonna raja mall"
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Post Template (Unlinked)"
|
311 |
msgstr "Postituste mall (linkimata)"
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
315 |
msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Post Taxonomy Display"
|
319 |
msgstr "Postituse süstemaatika kuvamine"
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
323 |
msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Post Taxonomy"
|
327 |
msgstr "Postituse süstemaatika"
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Categories"
|
331 |
msgstr "Kategooriad"
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Dates"
|
335 |
msgstr "Kuupäevad"
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Tags"
|
339 |
msgstr "Sildid"
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Pages"
|
343 |
msgstr "Lehed"
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid "The taxonomy which the breadcrumb trail will show."
|
347 |
msgstr "Süstemaatika, mida teekonna rada kuvab."
|
348 |
|
349 |
-
#: breadcrumb_navxt_admin.php:
|
350 |
msgid "Page Template"
|
351 |
msgstr "Lehe mall"
|
352 |
|
353 |
-
#: breadcrumb_navxt_admin.php:
|
354 |
msgid "The template for page breadcrumbs."
|
355 |
msgstr "Mall lehe teekonna raja jaoks."
|
356 |
|
357 |
-
#: breadcrumb_navxt_admin.php:
|
358 |
msgid "Page Template (Unlinked)"
|
359 |
msgstr "Lehe mall (linkimata)"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
362 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
363 |
msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
msgid "Attachment Template"
|
367 |
msgstr "Manuse mall"
|
368 |
|
369 |
-
#: breadcrumb_navxt_admin.php:
|
370 |
msgid "The template for attachment breadcrumbs."
|
371 |
msgstr "Manuse teekonna raja mall."
|
372 |
|
373 |
-
#: breadcrumb_navxt_admin.php:
|
374 |
msgid "Attachment Template (Unlinked)"
|
375 |
msgstr "Manuse mall (linkimata)"
|
376 |
|
377 |
-
#: breadcrumb_navxt_admin.php:
|
378 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
379 |
msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
-
#: breadcrumb_navxt_class.php:
|
383 |
-
#: breadcrumb_navxt_class.php:
|
384 |
-
#: breadcrumb_navxt_class.php:
|
385 |
-
#: breadcrumb_navxt_class.php:259
|
386 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
387 |
msgstr "<a title=\"Mine %title%.\" href=\"%link%\">%htitle%</a>"
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
msgid "%htitle%"
|
391 |
msgstr "%htitle%"
|
392 |
|
393 |
-
#: breadcrumb_navxt_admin.php:
|
394 |
msgid "%s Template"
|
395 |
msgstr "%s Mall"
|
396 |
|
397 |
-
#: breadcrumb_navxt_admin.php:
|
398 |
msgid "The template for %s breadcrumbs."
|
399 |
msgstr "%s teekonna raja mall"
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
msgid "%s Template (Unlinked)"
|
403 |
msgstr "%s Mall (linkimata)"
|
404 |
|
405 |
-
#: breadcrumb_navxt_admin.php:
|
406 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
407 |
msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
410 |
msgid "%s Root Page"
|
411 |
msgstr "%s juur lehekülg"
|
412 |
|
413 |
-
#: breadcrumb_navxt_admin.php:
|
414 |
msgid "— Select —"
|
415 |
msgstr "— Vali —"
|
416 |
|
417 |
-
#: breadcrumb_navxt_admin.php:
|
418 |
msgid "%s Archive Display"
|
419 |
msgstr "%s arhiivi kuvamine"
|
420 |
|
421 |
-
#: breadcrumb_navxt_admin.php:
|
422 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
423 |
msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
|
424 |
|
425 |
-
#: breadcrumb_navxt_admin.php:
|
426 |
msgid "%s Taxonomy Display"
|
427 |
msgstr "%s süstemaatika kuvamine"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
431 |
msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "%s Taxonomy"
|
435 |
msgstr "%s Süstemaatika"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "Categories & Tags"
|
439 |
msgstr "Kategooriad & sildid"
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
442 |
msgid "Category Template"
|
443 |
msgstr "Kategooria mall"
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "The template for category breadcrumbs."
|
447 |
msgstr "Kategooria teekonna rea mall"
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Category Template (Unlinked)"
|
451 |
msgstr "Kategooria mall (linkimata)"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
455 |
msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "Tag Template"
|
459 |
msgstr "Sildi mall"
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "The template for tag breadcrumbs."
|
463 |
msgstr "Siltide teekonna riba mall"
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "Tag Template (Unlinked)"
|
467 |
msgstr "Sildi mall (linkimata)"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
471 |
msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Miscellaneous"
|
475 |
msgstr "Varia"
|
476 |
|
477 |
-
#: breadcrumb_navxt_admin.php:
|
478 |
msgid "Author Template"
|
479 |
msgstr "Autori mall"
|
480 |
|
481 |
-
#: breadcrumb_navxt_admin.php:
|
482 |
msgid "The template for author breadcrumbs."
|
483 |
msgstr "Autori teekonna riba mall."
|
484 |
|
485 |
-
#: breadcrumb_navxt_admin.php:
|
486 |
msgid "Author Template (Unlinked)"
|
487 |
msgstr "Autori mall (linkimata)"
|
488 |
|
489 |
-
#: breadcrumb_navxt_admin.php:
|
490 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
491 |
msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
|
492 |
|
493 |
-
#: breadcrumb_navxt_admin.php:
|
494 |
msgid "Author Display Format"
|
495 |
msgstr "Autori kuvamise formaat"
|
496 |
|
497 |
-
#: breadcrumb_navxt_admin.php:
|
498 |
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
499 |
msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
|
500 |
|
501 |
-
#: breadcrumb_navxt_admin.php:
|
502 |
msgid "Date Template"
|
503 |
msgstr "Kuupäeva mall"
|
504 |
|
505 |
-
#: breadcrumb_navxt_admin.php:
|
506 |
msgid "The template for date breadcrumbs."
|
507 |
msgstr "Kuupäeva teekonna riba mall."
|
508 |
|
509 |
-
#: breadcrumb_navxt_admin.php:
|
510 |
msgid "Date Template (Unlinked)"
|
511 |
msgstr "Kuupäeva mall (linkimata)"
|
512 |
|
513 |
-
#: breadcrumb_navxt_admin.php:
|
514 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
515 |
msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
|
516 |
|
517 |
-
#: breadcrumb_navxt_admin.php:
|
518 |
msgid "Search Template"
|
519 |
msgstr "Otsingu mall"
|
520 |
|
521 |
-
#: breadcrumb_navxt_admin.php:
|
522 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
523 |
msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
|
524 |
|
525 |
-
#: breadcrumb_navxt_admin.php:
|
526 |
msgid "Search Template (Unlinked)"
|
527 |
msgstr "Otsingu mall (linkimata)"
|
528 |
|
529 |
-
#: breadcrumb_navxt_admin.php:
|
530 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
531 |
msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
|
532 |
|
533 |
-
#: breadcrumb_navxt_admin.php:
|
534 |
msgid "404 Title"
|
535 |
msgstr "404 pealkiri"
|
536 |
|
537 |
-
#: breadcrumb_navxt_admin.php:
|
538 |
msgid "404 Template"
|
539 |
msgstr "404 mall"
|
540 |
|
541 |
-
#: breadcrumb_navxt_admin.php:
|
542 |
msgid "The template for 404 breadcrumbs."
|
543 |
msgstr "404 teekonna riba mall."
|
544 |
|
545 |
-
#: breadcrumb_navxt_admin.php:
|
546 |
msgid "Save Changes"
|
547 |
-
msgstr "Salvesta muudatused"
|
548 |
-
|
549 |
-
#: includes/mtekk_adminkit.php:201
|
550 |
-
msgid "Settings"
|
551 |
-
msgstr "Seaded"
|
552 |
-
|
553 |
-
#: includes/mtekk_adminkit.php:271
|
554 |
-
msgid "Your settings are out of date."
|
555 |
-
msgstr "Sinu seaded on aegunud."
|
556 |
-
|
557 |
-
#: includes/mtekk_adminkit.php:271
|
558 |
-
msgid "Migrate the settings now."
|
559 |
-
msgstr "Suuna seaded ümber."
|
560 |
-
|
561 |
-
#: includes/mtekk_adminkit.php:271
|
562 |
-
msgid "Migrate now."
|
563 |
-
msgstr "Suuna nüüd."
|
564 |
-
|
565 |
-
#: includes/mtekk_adminkit.php:279
|
566 |
-
msgid "Your plugin install is incomplete."
|
567 |
-
msgstr "Sinu plugina install on lõpetamata."
|
568 |
-
|
569 |
-
#: includes/mtekk_adminkit.php:279
|
570 |
-
msgid "Load default settings now."
|
571 |
-
msgstr "Laadi vaikeseaded nüüd."
|
572 |
-
|
573 |
-
#: includes/mtekk_adminkit.php:279
|
574 |
-
msgid "Complete now."
|
575 |
-
msgstr "Vii nüüd lõpule."
|
576 |
-
|
577 |
-
#: includes/mtekk_adminkit.php:287
|
578 |
-
msgid "Your plugin settings are invalid."
|
579 |
-
msgstr "Sinu plugina seaded on vigased."
|
580 |
-
|
581 |
-
#: includes/mtekk_adminkit.php:287
|
582 |
-
msgid "Attempt to fix settings now."
|
583 |
-
msgstr "Püüa parandada seadeid nüüd."
|
584 |
-
|
585 |
-
#: includes/mtekk_adminkit.php:287
|
586 |
-
msgid "Fix now."
|
587 |
-
msgstr "Paranda nüüd."
|
588 |
-
|
589 |
-
#: includes/mtekk_adminkit.php:463
|
590 |
-
msgid "Settings successfully saved."
|
591 |
-
msgstr "Seaded on edukalt salvestatud."
|
592 |
-
|
593 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
594 |
-
msgid "Undo the options save."
|
595 |
-
msgstr "Pööra seadete salvestamine tagasi."
|
596 |
-
|
597 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
598 |
-
#: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
|
599 |
-
#: includes/mtekk_adminkit.php:614
|
600 |
-
msgid "Undo"
|
601 |
-
msgstr "Pööra tagasi"
|
602 |
-
|
603 |
-
#: includes/mtekk_adminkit.php:468
|
604 |
-
msgid "Some settings were not saved."
|
605 |
-
msgstr "Mõned seadetest ei salvestunud."
|
606 |
-
|
607 |
-
#: includes/mtekk_adminkit.php:469
|
608 |
-
msgid "The following settings were not saved:"
|
609 |
-
msgstr "Järgnevaid seadeid ei salvestatud:"
|
610 |
-
|
611 |
-
#: includes/mtekk_adminkit.php:474
|
612 |
-
msgid "Please include this message in your %sbug report%s."
|
613 |
-
msgstr "Palun lisa see sõnum oma %svea raportisse%s."
|
614 |
-
|
615 |
-
#: includes/mtekk_adminkit.php:474
|
616 |
-
msgid "Go to the %s support post for your version."
|
617 |
-
msgstr "Mine %s oma versiooni tugi postitusse."
|
618 |
-
|
619 |
-
#: includes/mtekk_adminkit.php:573
|
620 |
-
msgid "Settings successfully imported from the uploaded file."
|
621 |
-
msgstr "Seaded imporditi edukalt üleslaetud failist."
|
622 |
-
|
623 |
-
#: includes/mtekk_adminkit.php:573
|
624 |
-
msgid "Undo the options import."
|
625 |
-
msgstr "Pööra valikute import tagasi."
|
626 |
-
|
627 |
-
#: includes/mtekk_adminkit.php:578
|
628 |
-
msgid "Importing settings from file failed."
|
629 |
-
msgstr "Valikute import failist ebaõnnestus."
|
630 |
-
|
631 |
-
#: includes/mtekk_adminkit.php:597
|
632 |
-
msgid "Settings successfully reset to the default values."
|
633 |
-
msgstr "Seaded pöörati edukalt tagasi vaikeseadeteks."
|
634 |
-
|
635 |
-
#: includes/mtekk_adminkit.php:597
|
636 |
-
msgid "Undo the options reset."
|
637 |
-
msgstr "Tühista valikute tagasipööramine."
|
638 |
-
|
639 |
-
#: includes/mtekk_adminkit.php:614
|
640 |
-
msgid "Settings successfully undid the last operation."
|
641 |
-
msgstr "Viimase operatsiooni seaded tühistati edukalt."
|
642 |
-
|
643 |
-
#: includes/mtekk_adminkit.php:614
|
644 |
-
msgid "Undo the last undo operation."
|
645 |
-
msgstr "Tühista viimane tagasipööramine operatsioon."
|
646 |
-
|
647 |
-
#: includes/mtekk_adminkit.php:649
|
648 |
-
msgid "Settings successfully migrated."
|
649 |
-
msgstr "Seaded on edualt suunatud."
|
650 |
-
|
651 |
-
#: includes/mtekk_adminkit.php:656
|
652 |
-
msgid "Default settings successfully installed."
|
653 |
-
msgstr "Vaikeseaded on edukalt installeeritud."
|
654 |
-
|
655 |
-
#: includes/mtekk_adminkit.php:757
|
656 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
657 |
-
msgstr "Impordi seaded XML failist, ekspordi praegused seaded XML faili või taasta vaikeseaded."
|
658 |
-
|
659 |
-
#: includes/mtekk_adminkit.php:760
|
660 |
-
msgid "Settings File"
|
661 |
-
msgstr "Seadete fail"
|
662 |
-
|
663 |
-
#: includes/mtekk_adminkit.php:763
|
664 |
-
msgid "Select a XML settings file to upload and import settings from."
|
665 |
-
msgstr "Valid XML fail üleslaadimiseks ja impordi sellest seaded."
|
666 |
-
|
667 |
-
#: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
|
668 |
-
msgid "Home"
|
669 |
-
msgstr "Avaleht"
|
670 |
-
|
671 |
-
#: breadcrumb_navxt_class.php:230
|
672 |
-
msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
|
673 |
-
msgstr "<a title=\"Lae leht uuesti.\" href=\"%link%\">%htitle%</a>"
|
674 |
-
|
675 |
-
#: breadcrumb_navxt_class.php:242
|
676 |
-
msgid "Page %htitle%"
|
677 |
-
msgstr "Leht %htitle%"
|
678 |
-
|
679 |
-
#: breadcrumb_navxt_class.php:266
|
680 |
-
msgid "404"
|
681 |
-
msgstr "404"
|
682 |
-
|
683 |
-
#: breadcrumb_navxt_class.php:269
|
684 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>'"
|
685 |
-
msgstr "Otsitulemused '<a title=\"Mine otsitulemuste avalehele %title%.\" href=\"%link%\">%htitle%</a>'"
|
686 |
-
|
687 |
-
#: breadcrumb_navxt_class.php:271
|
688 |
-
msgid "Search results for '%htitle%'"
|
689 |
-
msgstr "Otsitulemused '%htitle%'"
|
690 |
-
|
691 |
-
#: breadcrumb_navxt_class.php:274
|
692 |
-
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
|
693 |
-
msgstr "<a title=\"Mine sildi %title% arhiivi.\" href=\"%link%\">%htitle%</a>"
|
694 |
-
|
695 |
-
#: breadcrumb_navxt_class.php:279
|
696 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
|
697 |
-
msgstr "Artiklid: <a title=\"Mine postituste avalehele %title%.\" href=\"%link%\">%htitle%</a>"
|
698 |
-
|
699 |
-
#: breadcrumb_navxt_class.php:281
|
700 |
-
msgid "Articles by: %htitle%"
|
701 |
-
msgstr "Artiklid: %htitle%"
|
702 |
-
|
703 |
-
#: breadcrumb_navxt_class.php:286
|
704 |
-
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
|
705 |
-
msgstr "<a title=\"Mine kategooria %title% arhiivi.\" href=\"%link%\">%htitle%</a>"
|
706 |
-
|
707 |
-
#: breadcrumb_navxt_class.php:290
|
708 |
-
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
|
709 |
-
msgstr "<a title=\"Mine %title% arhiivi.\" href=\"%link%\">%htitle%</a>"
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:26:51+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
|
|
|
|
|
|
|
|
13 |
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr "Tekst, mida kuvada enne teekonna rada"
|
16 |
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr "Schema.org"
|
20 |
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr "Breadcrumb NavXT tõlke projekt."
|
24 |
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr "Sinu PHP versioon on liiga vana. Palun uuenda seda. Sinu versioon on %1$s, Breadcrumb NavXT nõuab versiooni %2$s"
|
28 |
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Nimetus"
|
32 |
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
msgid "Plain"
|
35 |
msgstr "Lihtne"
|
36 |
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
msgid "Link the breadcrumbs"
|
39 |
msgstr "Lisa teekonna rajale lingid"
|
40 |
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
msgid "Reverse the order of the trail"
|
43 |
msgstr "Pööra teekonna rada vastupidi"
|
44 |
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
msgid "Hide the trail on the front page"
|
47 |
msgstr "Peida rada avalehel"
|
48 |
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
|
|
|
|
|
|
|
|
50 |
msgid "Insufficient privileges to proceed."
|
51 |
msgstr "Puuduvad õigused, et jätkata."
|
52 |
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
msgid "Tips for the settings are located below select options."
|
55 |
msgstr "Seadete näpunäited paiknevad valikute all."
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
msgid "Resources"
|
59 |
msgstr "Vahendid"
|
60 |
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
msgstr "%sJuhendid ja õpetused%s: Mitmeid juhendeid ja õpetusi leiate autori veebilehelt."
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
msgstr "Mine Breadcrumb NavXT sildi arhiivi."
|
68 |
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
msgstr "%sOnline dokumentatsioon%s: Uurige sügavuti tehnilise teabe dokumentatsiooni."
|
72 |
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
msgstr "Mine Breadcrumb NavXT online dokumentatsiooni lehele"
|
76 |
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
msgstr "%sRaporteeri vigadest%s: Kui sa arvad, et oled leidnud vea, siis lisa oma Wordpressi versiooni number ja detailne kirjeldus, kuidas viga esile kutsuda."
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
msgstr "Mine Breadcrumb NavXT oma versiooni tugi postitusse."
|
84 |
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
msgid "Giving Back"
|
87 |
msgstr "Tagasiandmine"
|
88 |
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
msgstr "%sAnneta%s: Sulle meeldib Breadcrumb NavXT ja soovid toetada selle arendust? Kaaluge autorile õlle ostmist."
|
92 |
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
msgstr "Mine PayPal lehele, et sooritada annetud Breadcrumb NavXT autorile."
|
96 |
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
msgstr "%sTõlgi%s: Kas sinu keel ei ole saadaval? Kontakteeru John Havlikuga."
|
100 |
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
msgid "General"
|
103 |
msgstr "Peamine"
|
104 |
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
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."
|
107 |
msgstr "Selleks, et sinu veebilehel need seaded jõustuksid, pead sa kas kasutama Breadcrumb NavXT pluginat või lisa allolevad koodiread oma teemasse."
|
108 |
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
msgid "Breadcrumb trail with separators"
|
111 |
msgstr "Teekonna rada koos eraldajatega"
|
112 |
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
msgid "Breadcrumb trail in list form"
|
115 |
msgstr "Teekonna rada nimekirja formaadis"
|
116 |
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
msgid "Quick Start"
|
119 |
msgstr "Kiire alustamine"
|
120 |
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
msgstr "Kasutades koodi Kiire alustamise sektsioonist, kasutatakse järgnevat CSSi baas stiilina sinu teekonna raja puhul."
|
124 |
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
msgid "Styling"
|
127 |
msgstr "Stiil"
|
128 |
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
msgid "Import/Export/Reset"
|
131 |
msgstr "Import/Eksport/Lähtestamine"
|
132 |
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
msgid "Import"
|
135 |
msgstr "Import"
|
136 |
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
msgid "Export"
|
139 |
msgstr "Eksport"
|
140 |
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
msgid "Reset"
|
143 |
msgstr "Lähtestamine"
|
144 |
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
msgid "Breadcrumb NavXT Settings"
|
147 |
msgstr "Breadcrumb NavXT seaded"
|
148 |
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
msgid "Breadcrumb Separator"
|
151 |
msgstr "Teekonna raja eraldaja"
|
152 |
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
msgid "Placed in between each breadcrumb."
|
155 |
msgstr "Paigutatakse iga teekonna elemendi vahele"
|
156 |
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
msgid "Breadcrumb Max Title Length"
|
159 |
msgstr "Teekonna raja maksimaalne nimetuse pikkus"
|
160 |
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
msgid "Home Breadcrumb"
|
163 |
msgstr "Avalehe rada"
|
164 |
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
msgid "Place the home breadcrumb in the trail."
|
167 |
msgstr "Lisa avaleht teekonna rajale"
|
168 |
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
msgid "Home Title: "
|
171 |
msgstr "Avalehe nimetus:"
|
172 |
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
msgid "Home Template"
|
175 |
msgstr "Avalehe mall"
|
176 |
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
msgid "The template for the home breadcrumb."
|
179 |
msgstr "Avalehe teekonna raja mall."
|
180 |
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
msgid "Home Template (Unlinked)"
|
183 |
msgstr "Avalehe mall (ei ole lingitud)"
|
184 |
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
msgstr "Avalehe teekonna raja mall. Kasutatakse kui teekonna rada ei ole lingitav."
|
188 |
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
msgid "Blog Breadcrumb"
|
191 |
msgstr "Blogi teekonna rada"
|
192 |
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
msgid "Place the blog breadcrumb in the trail."
|
195 |
msgstr "Aseta blogi teekond rajale."
|
196 |
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
msgid "Blog Template"
|
199 |
msgstr "Blogi teekonna rada"
|
200 |
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
msgstr "Blogi teekonna raja mall. Kasutatakse ainult staatilise avalehe puhul."
|
204 |
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
msgid "Blog Template (Unlinked)"
|
207 |
msgstr "Blogi mall (linkimata)"
|
208 |
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
msgstr "Blogi teekonna raja mall, mida kasutatakse ainult staatilise avalehe puhul ja siis kui teekonna rada ei ole lingitud."
|
212 |
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
msgid "Main Site Breadcrumb"
|
215 |
msgstr "Peamise saidi teekonna rada"
|
216 |
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
msgstr "Aseta peamise saidi avalehe teekond rajale mitmiksaidi seadetes."
|
220 |
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
msgid "Main Site Home Title: "
|
223 |
msgstr "Peamise saidi pealkiri:"
|
224 |
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
msgid "Main Site Home Template"
|
227 |
msgstr "Peamise saidi avalehe mall"
|
228 |
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaidi puhul."
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
msgid "Main Site Home Template (Unlinked)"
|
235 |
msgstr "Peamise saidi avalehe mall (linkimata)"
|
236 |
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
msgstr "Peamise saidi avalehe mall, mida kasutatakse ainult mitmiksaitide puhul ja siis kui teekonna rada ei ole lingitud."
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
msgid "Current Item"
|
243 |
msgstr "Avatud element"
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
msgid "Link Current Item"
|
247 |
msgstr "Lingi avatud element"
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
msgid "Yes"
|
251 |
msgstr "Jah"
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Paged Breadcrumb"
|
255 |
msgstr "Lehekülgedele jaotatud teekonna rada"
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
msgstr "Lisa lehekülgedele jaotatud rada teekonna rajale"
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
msgstr "Osutab, et kasutaja on lehele, mis ei ole esimene leht jaotatud postituste/lehtedel"
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
msgid "Paged Template"
|
267 |
msgstr "Jaotatud mall"
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
msgid "The template for paged breadcrumbs."
|
271 |
msgstr "Lehekülgedele jaotatud teekonna raja mall."
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
msgid "Posts & Pages"
|
275 |
msgstr "Postitused & Lehed"
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
msgid "Post Template"
|
279 |
msgstr "Postituste mall"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
msgid "The template for post breadcrumbs."
|
283 |
msgstr "Postituste teekonna raja mall"
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
msgid "Post Template (Unlinked)"
|
287 |
msgstr "Postituste mall (linkimata)"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
msgstr "Postituste teekonna raja mall. Kasutatakse ainult siis kui teekonna rada on linkimata."
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
msgid "Post Taxonomy Display"
|
295 |
msgstr "Postituse süstemaatika kuvamine"
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
msgstr "Kuva postitusele viivat teekonna raja süstemaatikat."
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
msgid "Post Taxonomy"
|
303 |
msgstr "Postituse süstemaatika"
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
msgid "Categories"
|
307 |
msgstr "Kategooriad"
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
msgid "Dates"
|
311 |
msgstr "Kuupäevad"
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
msgid "Tags"
|
315 |
msgstr "Sildid"
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
msgid "Pages"
|
319 |
msgstr "Lehed"
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
msgstr "Süstemaatika, mida teekonna rada kuvab."
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
msgid "Page Template"
|
327 |
msgstr "Lehe mall"
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
msgid "The template for page breadcrumbs."
|
331 |
msgstr "Mall lehe teekonna raja jaoks."
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
msgid "Page Template (Unlinked)"
|
335 |
msgstr "Lehe mall (linkimata)"
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
msgstr "Lehe teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
msgid "Attachment Template"
|
343 |
msgstr "Manuse mall"
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
msgid "The template for attachment breadcrumbs."
|
347 |
msgstr "Manuse teekonna raja mall."
|
348 |
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
msgid "Attachment Template (Unlinked)"
|
351 |
msgstr "Manuse mall (linkimata)"
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
msgstr "Manuse teekonna raja mall. Kasutatakse ainult juhul, kui teekonna rada on linkimata."
|
356 |
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
|
|
361 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
msgstr "<a title=\"Mine %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
msgid "%htitle%"
|
366 |
msgstr "%htitle%"
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
msgid "%s Template"
|
370 |
msgstr "%s Mall"
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
msgid "The template for %s breadcrumbs."
|
374 |
msgstr "%s teekonna raja mall"
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
msgid "%s Template (Unlinked)"
|
378 |
msgstr "%s Mall (linkimata)"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
msgstr "%s teekonna raja mall. Kasutatakse ainult siis, kui teekonna rada on linkimata."
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
msgid "%s Root Page"
|
386 |
msgstr "%s juur lehekülg"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
msgid "— Select —"
|
390 |
msgstr "— Vali —"
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
msgid "%s Archive Display"
|
394 |
msgstr "%s arhiivi kuvamine"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
msgstr "Kuva %s teekonna riba postituse tüüpi arhiivi teekonna ribal."
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
msgid "%s Taxonomy Display"
|
402 |
msgstr "%s süstemaatika kuvamine"
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
msgstr "Kuva süstemaatika juhtimist %s teekonna ribas."
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
msgid "%s Taxonomy"
|
410 |
msgstr "%s Süstemaatika"
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
msgid "Categories & Tags"
|
414 |
msgstr "Kategooriad & sildid"
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
msgid "Category Template"
|
418 |
msgstr "Kategooria mall"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
msgid "The template for category breadcrumbs."
|
422 |
msgstr "Kategooria teekonna rea mall"
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
msgid "Category Template (Unlinked)"
|
426 |
msgstr "Kategooria mall (linkimata)"
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
msgstr "Kategooria teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
msgid "Tag Template"
|
434 |
msgstr "Sildi mall"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
msgid "The template for tag breadcrumbs."
|
438 |
msgstr "Siltide teekonna riba mall"
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
msgid "Tag Template (Unlinked)"
|
442 |
msgstr "Sildi mall (linkimata)"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
msgstr "Siltide teekonna riba mall. Kasutatakse ainult siis, kui teekonna riba ei ole lingitud."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
msgid "Miscellaneous"
|
450 |
msgstr "Varia"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
msgid "Author Template"
|
454 |
msgstr "Autori mall"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
msgid "The template for author breadcrumbs."
|
458 |
msgstr "Autori teekonna riba mall."
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
msgid "Author Template (Unlinked)"
|
462 |
msgstr "Autori mall (linkimata)"
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
msgstr "Autori teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
msgid "Author Display Format"
|
470 |
msgstr "Autori kuvamise formaat"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
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."
|
474 |
msgstr "display_name kasutab nime, mis on määratud \"Näite nimeks\" kasutaja profiili all."
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
msgid "Date Template"
|
478 |
msgstr "Kuupäeva mall"
|
479 |
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
msgid "The template for date breadcrumbs."
|
482 |
msgstr "Kuupäeva teekonna riba mall."
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
msgid "Date Template (Unlinked)"
|
486 |
msgstr "Kuupäeva mall (linkimata)"
|
487 |
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
msgstr "Kuupäeva teekonna riba mall. Kasutatakse ainult juhul, kui teekonna riba on linkimata."
|
491 |
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
msgid "Search Template"
|
494 |
msgstr "Otsingu mall"
|
495 |
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult juhul, kui otsingu tulemused jaotuvad mitmele lehele."
|
499 |
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
msgid "Search Template (Unlinked)"
|
502 |
msgstr "Otsingu mall (linkimata)"
|
503 |
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
msgstr "Otsingu teekonna riba ankru mall. Kasutatakse ainult siis, kui otsingu tulemused jaotuvad mitmele lehele ja kui teekonna riba on linkimata."
|
507 |
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
msgid "404 Title"
|
510 |
msgstr "404 pealkiri"
|
511 |
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
msgid "404 Template"
|
514 |
msgstr "404 mall"
|
515 |
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
msgid "The template for 404 breadcrumbs."
|
518 |
msgstr "404 teekonna riba mall."
|
519 |
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
msgid "Save Changes"
|
522 |
+
msgstr "Salvesta muudatused"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt-fr_FR.mo
ADDED
Binary file
|
languages/breadcrumb-navxt-fr_FR.po
ADDED
@@ -0,0 +1,522 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Breadcrumb NavXT in French (France)
|
2 |
+
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:29:52+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
+
|
13 |
+
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Titre:"
|
32 |
+
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
+
msgid "Plain"
|
35 |
+
msgstr "Intégral"
|
36 |
+
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
+
msgid "Link the breadcrumbs"
|
39 |
+
msgstr "Lie le fil d'ariane"
|
40 |
+
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
+
msgid "Reverse the order of the trail"
|
43 |
+
msgstr "Inverse l'ordre du chemin d'accès"
|
44 |
+
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
+
msgid "Hide the trail on the front page"
|
47 |
+
msgstr "Cache le chemin d'accès sur la page d'accueil"
|
48 |
+
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
50 |
+
msgid "Insufficient privileges to proceed."
|
51 |
+
msgstr "Vos droits sont insuffisants pour cette fonction."
|
52 |
+
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
+
msgid "Tips for the settings are located below select options."
|
55 |
+
msgstr "Des astuces pour les paramètres sont situés sous les options sélectionnés."
|
56 |
+
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
+
msgid "Resources"
|
59 |
+
msgstr "Ressources"
|
60 |
+
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
+
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
+
msgstr "%sTutoriels et guides%s : Il y a plusieurs guides, tutoriels et pas-à-pas disponible sur le site web de l'auteur (en anglais)."
|
64 |
+
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
+
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
+
msgstr "Aller à l'archive des tags de Breadcrumb NavXT."
|
68 |
+
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
+
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
+
msgstr "%sDocumentation en ligne%s : Cherchez dans la documentation pour plus d'informations techniques."
|
72 |
+
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
+
msgstr "Aller à la documentation en ligne de Breadcrumb NavXT"
|
76 |
+
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
+
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
+
msgstr "%sSignaler un bug%s : Si vous pensez avoir trouvé un bug, merci de préciser votre version de WordPress et des détails sur la façon de reproduire ce bug."
|
80 |
+
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
+
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
+
msgstr "Aller au support en ligne de Breadcrumb NavXT pour votre version."
|
84 |
+
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
+
msgid "Giving Back"
|
87 |
+
msgstr "Faire un retour d'utilisation"
|
88 |
+
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
+
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
+
msgstr "%sDonation%s : Vous aimez Breadcrumb NavXT et voulez aider à son développement ? Offrez une bière à l'auteur !"
|
92 |
+
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
+
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
+
msgstr "Aller sur Paypal pour faire un don à l'équipe de Breadcrumb NavXT."
|
96 |
+
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
+
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
+
msgstr "%sTraduction%s: Votre langue n'est pas disponible ? Contactez John Havlik pour participer à sa traduction."
|
100 |
+
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
+
msgid "General"
|
103 |
+
msgstr "Général"
|
104 |
+
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
+
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."
|
107 |
+
msgstr "Pour que les réglages sur cette page prennent effet, vous devez soit utiliser le widget Breadcrumb NavXT, ou ajouter le code ci-dessous dans votre thème."
|
108 |
+
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
+
msgid "Breadcrumb trail with separators"
|
111 |
+
msgstr "Chemin du fil d'ariane avec séparateurs"
|
112 |
+
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
+
msgid "Breadcrumb trail in list form"
|
115 |
+
msgstr "Chemin du fil d'ariane en format liste"
|
116 |
+
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
+
msgid "Quick Start"
|
119 |
+
msgstr "Démarrage Rapide"
|
120 |
+
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
+
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
+
msgstr "Utiliser le code de la section Démarrage Rapide, le CSS suivant peut-être utilisé comme une base de départ pour styliser votre fil d'ariane."
|
124 |
+
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
+
msgid "Styling"
|
127 |
+
msgstr "Styliser"
|
128 |
+
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
+
msgid "Import/Export/Reset"
|
131 |
+
msgstr "Importer / Exporter / Remettre à zéro"
|
132 |
+
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
+
msgid "Import"
|
135 |
+
msgstr "Importation"
|
136 |
+
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
+
msgid "Export"
|
139 |
+
msgstr "Exportation"
|
140 |
+
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
+
msgid "Reset"
|
143 |
+
msgstr "Réinitialisation"
|
144 |
+
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
+
msgid "Breadcrumb NavXT Settings"
|
147 |
+
msgstr "Paramétrages de Breadcrumb NavXT"
|
148 |
+
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
+
msgid "Breadcrumb Separator"
|
151 |
+
msgstr "Séparateur du fil d'ariane"
|
152 |
+
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
+
msgid "Placed in between each breadcrumb."
|
155 |
+
msgstr "Placé entre chaque élément du fil d'ariane."
|
156 |
+
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
+
msgid "Breadcrumb Max Title Length"
|
159 |
+
msgstr "Longueur maximum du titre "
|
160 |
+
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
+
msgid "Home Breadcrumb"
|
163 |
+
msgstr "Origine du fil d'ariane"
|
164 |
+
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
+
msgid "Place the home breadcrumb in the trail."
|
167 |
+
msgstr "Inclure la page d'accueil dans le fil d'ariane."
|
168 |
+
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
+
msgid "Home Title: "
|
171 |
+
msgstr "Titre de la page d'accueil:"
|
172 |
+
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
+
msgid "Home Template"
|
175 |
+
msgstr "Template de la page d'accueil"
|
176 |
+
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
+
msgid "The template for the home breadcrumb."
|
179 |
+
msgstr "Le template pour le fil d'ariane de la page d'accueil"
|
180 |
+
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
+
msgid "Home Template (Unlinked)"
|
183 |
+
msgstr "Template de la page d'accueil (non-lié)"
|
184 |
+
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
+
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
+
msgstr "Le modèle pour le fil d'ariane de la page d'accueil, utilisé seulement quand le fil d'ariane n'est pas lié."
|
188 |
+
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
+
msgid "Blog Breadcrumb"
|
191 |
+
msgstr "Fil d'ariane du blog"
|
192 |
+
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
+
msgid "Place the blog breadcrumb in the trail."
|
195 |
+
msgstr "Mettre le fil d'ariane du blog en route. "
|
196 |
+
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
+
msgid "Blog Template"
|
199 |
+
msgstr "Template du blog"
|
200 |
+
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
+
msgstr "Le template pour le fil d'ariane du blog, utilisé seulement dans les pages statiques."
|
204 |
+
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
+
msgid "Blog Template (Unlinked)"
|
207 |
+
msgstr "Template du blog (non-lié)"
|
208 |
+
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
+
msgstr "Le template pour le fil d'ariane du blog, utilisé seulement dans les pages statiques et quand le fil d'ariane n'est pas lié."
|
212 |
+
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
+
msgid "Main Site Breadcrumb"
|
215 |
+
msgstr "Fil d'ariane du site principal"
|
216 |
+
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
+
msgstr "Inclure la page d'accueil du site principal dans le fil d'ariane, pour un réglage multisite."
|
220 |
+
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
+
msgid "Main Site Home Title: "
|
223 |
+
msgstr "Titre de la page d'accueil du site principal:"
|
224 |
+
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
+
msgid "Main Site Home Template"
|
227 |
+
msgstr "Template de la page d'accueil du site principal"
|
228 |
+
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
+
msgstr "Le template pour le fil d'ariane de la page d'accueil du site principal, utilisé seulement dans un environnement multi-site."
|
232 |
+
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
+
msgid "Main Site Home Template (Unlinked)"
|
235 |
+
msgstr "Template de la page d'accueil du site principal (non-lié)"
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
+
msgstr "Le template pour le fil d'ariane de la page d'accueil du site principal, utilisé seulement dans un environnement multi-site et quand le fil d'ariane n'est pas lié."
|
240 |
+
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
+
msgid "Current Item"
|
243 |
+
msgstr "Elément courant"
|
244 |
+
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
+
msgid "Link Current Item"
|
247 |
+
msgstr "Faire un lien avec l'élément courant"
|
248 |
+
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
+
msgid "Yes"
|
251 |
+
msgstr "Oui"
|
252 |
+
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
254 |
+
msgid "Paged Breadcrumb"
|
255 |
+
msgstr "Fil d'ariane avec pagination"
|
256 |
+
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
+
msgstr "Inclus la pagination dans le fil d'ariane."
|
260 |
+
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
+
msgstr "Indique que l'utilisateur se trouve dans une autre page/article que la première lorsque la pagination est activée."
|
264 |
+
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
+
msgid "Paged Template"
|
267 |
+
msgstr "Template de pagination"
|
268 |
+
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
+
msgid "The template for paged breadcrumbs."
|
271 |
+
msgstr "Le template pour le fil d'ariane des pages paginées."
|
272 |
+
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
+
msgid "Posts & Pages"
|
275 |
+
msgstr "Articles & Pages"
|
276 |
+
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
+
msgid "Post Template"
|
279 |
+
msgstr "Modèle d'article"
|
280 |
+
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
+
msgid "The template for post breadcrumbs."
|
283 |
+
msgstr "Le template pour le fil d'ariane des articles."
|
284 |
+
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
+
msgid "Post Template (Unlinked)"
|
287 |
+
msgstr "Modèle d'article (non-lié)"
|
288 |
+
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
+
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
+
msgstr "Le template pour le fil d'ariane des articles, utilisé uniquement quand le fil d'ariane n'est pas lié"
|
292 |
+
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
+
msgid "Post Taxonomy Display"
|
295 |
+
msgstr "Affichage de la taxonomie des articles"
|
296 |
+
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
+
msgstr "Montrer la taxonomie dans le fil d'ariane."
|
300 |
+
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
+
msgid "Post Taxonomy"
|
303 |
+
msgstr "Taxonomie des articles"
|
304 |
+
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
+
msgid "Categories"
|
307 |
+
msgstr "Catégories"
|
308 |
+
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
+
msgid "Dates"
|
311 |
+
msgstr "Dates"
|
312 |
+
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
+
msgid "Tags"
|
315 |
+
msgstr "Tags"
|
316 |
+
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
+
msgid "Pages"
|
319 |
+
msgstr "Pages"
|
320 |
+
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
+
msgstr "Le type d'élément de taxonomie qui sera affiché dans le fil d'ariane."
|
324 |
+
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
+
msgid "Page Template"
|
327 |
+
msgstr "Template de page"
|
328 |
+
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
+
msgid "The template for page breadcrumbs."
|
331 |
+
msgstr "Le template pour le fil d'ariane des pages."
|
332 |
+
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
+
msgid "Page Template (Unlinked)"
|
335 |
+
msgstr "Template de page (non-lié)"
|
336 |
+
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
+
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
+
msgstr "Le template pour le fil d'ariane des pages, utilisé seulement quand le fil d'ariane n'est pas lié."
|
340 |
+
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
+
msgid "Attachment Template"
|
343 |
+
msgstr "Template des fichiers joints."
|
344 |
+
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
+
msgid "The template for attachment breadcrumbs."
|
347 |
+
msgstr "Le template pour le fil d'ariane des fichiers joints."
|
348 |
+
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
+
msgid "Attachment Template (Unlinked)"
|
351 |
+
msgstr "Template de fichiers joints (non-lié)"
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
+
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
+
msgstr "Le template pour le fil d'ariane des fichiers joints, utilisé seulement quand le fil d'ariane n'est pas lié."
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
361 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
+
msgstr "<a title=\"Aller à %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
+
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
+
msgid "%htitle%"
|
366 |
+
msgstr "%htitle%"
|
367 |
+
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
+
msgid "%s Template"
|
370 |
+
msgstr "%s Template"
|
371 |
+
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
+
msgid "The template for %s breadcrumbs."
|
374 |
+
msgstr "Le template pour le fil d'ariane %s"
|
375 |
+
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
+
msgid "%s Template (Unlinked)"
|
378 |
+
msgstr "%s Template (non-lié)"
|
379 |
+
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
+
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
+
msgstr "Le template pour le fil d'ariane %s, utilisé seulement quand le fil d'ariane n'est pas lié."
|
383 |
+
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
+
msgid "%s Root Page"
|
386 |
+
msgstr "%s Page racine"
|
387 |
+
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
+
msgid "— Select —"
|
390 |
+
msgstr "— Selectionner —"
|
391 |
+
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
+
msgid "%s Archive Display"
|
394 |
+
msgstr "%s Affichage des archives"
|
395 |
+
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
+
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
+
msgstr "Montrer le fil d'ariane pour les %s archives dans le fil d'ariane."
|
399 |
+
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
+
msgid "%s Taxonomy Display"
|
402 |
+
msgstr "Affichage de la taxonomie des %s"
|
403 |
+
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
+
msgstr "Montrer la taxonomie dans un %s dans le fil d'ariane."
|
407 |
+
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
+
msgid "%s Taxonomy"
|
410 |
+
msgstr "Taxonomie des %s "
|
411 |
+
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
+
msgid "Categories & Tags"
|
414 |
+
msgstr "Catégories & Tags"
|
415 |
+
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
+
msgid "Category Template"
|
418 |
+
msgstr "Template de catégorie"
|
419 |
+
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
+
msgid "The template for category breadcrumbs."
|
422 |
+
msgstr "Le template pour le fil d'ariane des catégories."
|
423 |
+
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
+
msgid "Category Template (Unlinked)"
|
426 |
+
msgstr "Template de catégorie (non-lié)"
|
427 |
+
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
+
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
+
msgstr "Le template pour le fil d'ariane des catégories, utilisé seulement quand le fil d'ariane n'est pas lié."
|
431 |
+
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
+
msgid "Tag Template"
|
434 |
+
msgstr "Template de tag"
|
435 |
+
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
+
msgid "The template for tag breadcrumbs."
|
438 |
+
msgstr "Template de fil d'ariane des tags."
|
439 |
+
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
+
msgid "Tag Template (Unlinked)"
|
442 |
+
msgstr "Template de tag (non-lié)"
|
443 |
+
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
+
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
+
msgstr "Le template du fil d'ariane des tags, utilisé seulement quand le fil d'ariane n'est pas lié."
|
447 |
+
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
+
msgid "Miscellaneous"
|
450 |
+
msgstr "Divers"
|
451 |
+
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
+
msgid "Author Template"
|
454 |
+
msgstr "Template des auteurs"
|
455 |
+
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
+
msgid "The template for author breadcrumbs."
|
458 |
+
msgstr "Le template pour le fil d'ariane des auteurs."
|
459 |
+
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
+
msgid "Author Template (Unlinked)"
|
462 |
+
msgstr "Template des auteurs (non-lié)"
|
463 |
+
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
+
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
+
msgstr "Le template pour le fil d'ariane des auteurs, utilisé seulement quand le fil d'ariane n'est pas lié."
|
467 |
+
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
+
msgid "Author Display Format"
|
470 |
+
msgstr "Format d'affichage de l'auteur"
|
471 |
+
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
+
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."
|
474 |
+
msgstr "display_name utilise le nom spécifié \"Nom à afficher publiquement\" dans le profil utilisateur. Les autres choix correspondent aux différentes options disponibles dans profil utilisateur."
|
475 |
+
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
+
msgid "Date Template"
|
478 |
+
msgstr "Template des dates"
|
479 |
+
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
+
msgid "The template for date breadcrumbs."
|
482 |
+
msgstr "Template du fil d'ariane des dates."
|
483 |
+
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
+
msgid "Date Template (Unlinked)"
|
486 |
+
msgstr "Modèle des dates (non-lié)"
|
487 |
+
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
+
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
+
msgstr "Le modèle du fil d'ariane des dates, utilisé seulement quand le fil d'ariane n'est pas lié."
|
491 |
+
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
+
msgid "Search Template"
|
494 |
+
msgstr "Modèle de recherche"
|
495 |
+
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
+
msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages."
|
499 |
+
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
+
msgid "Search Template (Unlinked)"
|
502 |
+
msgstr "Modèle de recherche (non-lié)"
|
503 |
+
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
+
msgstr "Modèle de l'ancre pour le fil d'ariane, utilisé uniquement quand le résultat de recherche comprend plusieurs pages et que le fil d'ariane n'est pas lié."
|
507 |
+
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
+
msgid "404 Title"
|
510 |
+
msgstr "Titre erreur 404"
|
511 |
+
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
+
msgid "404 Template"
|
514 |
+
msgstr "Template d'erreur 404"
|
515 |
+
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
+
msgid "The template for 404 breadcrumbs."
|
518 |
+
msgstr "Le modèlé pour le fil d'ariane de la page 404"
|
519 |
+
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
+
msgid "Save Changes"
|
522 |
+
msgstr "Sauvegarder les changements"
|
languages/breadcrumb-navxt-nb_NO.mo
CHANGED
Binary file
|
languages/breadcrumb-navxt-nb_NO.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2012-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,700 +10,513 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
13 |
-
#: breadcrumb_navxt_widget.php:32
|
14 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
15 |
-
msgstr "Legger til breadcrumbs-sti i din sidebar"
|
16 |
-
|
17 |
#: breadcrumb_navxt_widget.php:93
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
20 |
|
21 |
-
#: breadcrumb_navxt_widget.php:
|
22 |
-
msgid "
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: breadcrumb_navxt_widget.php:
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: breadcrumb_navxt_widget.php:
|
38 |
msgid "Plain"
|
39 |
msgstr "Ordinær"
|
40 |
|
41 |
-
#: breadcrumb_navxt_widget.php:
|
42 |
msgid "Link the breadcrumbs"
|
43 |
msgstr "Lenke breadcrumbs"
|
44 |
|
45 |
-
#: breadcrumb_navxt_widget.php:
|
46 |
msgid "Reverse the order of the trail"
|
47 |
msgstr "Reverser rekkefølgen på stien"
|
48 |
|
49 |
-
#: breadcrumb_navxt_widget.php:
|
50 |
msgid "Hide the trail on the front page"
|
51 |
msgstr "Skjul stien på hovedsiden"
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
55 |
-
msgstr "Din PHP-versjon er for gammel. Vennligst oppgrader til en nyere versjon. Din versjon er %s, Breadcrumb NavXT krever %s"
|
56 |
-
|
57 |
-
#: breadcrumb_navxt_admin.php:113
|
58 |
msgid "Insufficient privileges to proceed."
|
59 |
msgstr "Utilstrekkelige rettigheter for å fortsette."
|
60 |
|
61 |
-
#: breadcrumb_navxt_admin.php:
|
62 |
msgid "Tips for the settings are located below select options."
|
63 |
msgstr "Tips for innstillinger finnes under \"Velg alternativer\"."
|
64 |
|
65 |
-
#: breadcrumb_navxt_admin.php:
|
66 |
msgid "Resources"
|
67 |
msgstr "Resurser"
|
68 |
|
69 |
-
#: breadcrumb_navxt_admin.php:
|
70 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
71 |
msgstr "%sTutorials and How Tos%s: Det er flere guider, \"tutorials\" og \"how tos\" tilgjengelig på forfatterens hjemmeside."
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
74 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
75 |
msgstr "Gå til Breadcrumb NavXT stikkordsarkiv."
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
78 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
79 |
msgstr "%sOnline Dokumentasjon%s: Dokumentasjon for mer avansert teknisk informasjon."
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
83 |
msgstr "Gå til Breadcrumb NavXT online dokumentasjon"
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
87 |
msgstr "%sRaporter en Bug%s: Hvis du tror du har funnet en bug, vennligst inkluder din WordPress-versjon og detaljer om hvordan reprodusere buggen."
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
91 |
msgstr "Gå til Breadcrumb NavXT support for din versjon."
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Giving Back"
|
95 |
msgstr "Gi Tilbake"
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
99 |
msgstr "%sDonate%s: Liker Breadcrumb NavXT og ønsker å bidra til utviklingen? Vurder å spandere en øl på forfatteren."
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
103 |
msgstr "Gå til PayPal for å gi en donasjon til Breadcrumb NavXT."
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
107 |
msgstr "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "General"
|
111 |
msgstr "Generelt"
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
115 |
msgstr "For at innstillingene på denne siden skal gjelde må du enten bruke den medfølgende Breadcrumb NavXT widget, eller bruke en av kodeseksjonene nedenfor i temaet ditt."
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Breadcrumb trail with separators"
|
119 |
msgstr "Breadcrumb-sti med skilletegn"
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "Breadcrumb trail in list form"
|
123 |
msgstr "Breadcrumb-sti i listeform"
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "Quick Start"
|
127 |
msgstr "Hurtig-Start"
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
130 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
131 |
msgstr "Bruker du koden fra Hurtig-Start seksjonen ovenfor, kan følgende CSS brukes som utgangspunkt for å style breadcrumb-stien."
|
132 |
|
133 |
-
#: breadcrumb_navxt_admin.php:
|
134 |
msgid "Styling"
|
135 |
msgstr "Styling"
|
136 |
|
137 |
-
#: breadcrumb_navxt_admin.php:
|
138 |
msgid "Import/Export/Reset"
|
139 |
msgstr "Import/Eksport/Tilbakestille Innstillinger"
|
140 |
|
141 |
-
#: breadcrumb_navxt_admin.php:
|
142 |
msgid "Import"
|
143 |
msgstr "Import"
|
144 |
|
145 |
-
#: breadcrumb_navxt_admin.php:
|
146 |
msgid "Export"
|
147 |
msgstr "Eksport"
|
148 |
|
149 |
-
#: breadcrumb_navxt_admin.php:
|
150 |
msgid "Reset"
|
151 |
msgstr "Tilbakestille"
|
152 |
|
153 |
-
#: breadcrumb_navxt_admin.php:
|
154 |
msgid "Breadcrumb NavXT Settings"
|
155 |
msgstr "Breadcrumb NavXT Innstillinger"
|
156 |
|
157 |
-
#: breadcrumb_navxt_admin.php:
|
158 |
msgid "Breadcrumb Separator"
|
159 |
msgstr "Breadcrumb Skilletegn"
|
160 |
|
161 |
-
#: breadcrumb_navxt_admin.php:
|
162 |
msgid "Placed in between each breadcrumb."
|
163 |
msgstr "Settes inn mellom hver breadcrumb."
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
166 |
msgid "Breadcrumb Max Title Length"
|
167 |
msgstr "Breadcrumb Max Tittellengde"
|
168 |
|
169 |
-
#: breadcrumb_navxt_admin.php:
|
170 |
msgid "Home Breadcrumb"
|
171 |
msgstr "Hjem Breadcrumb"
|
172 |
|
173 |
-
#: breadcrumb_navxt_admin.php:
|
174 |
msgid "Place the home breadcrumb in the trail."
|
175 |
msgstr "Sett inn hjem-breadcrumb i stien."
|
176 |
|
177 |
-
#: breadcrumb_navxt_admin.php:
|
178 |
msgid "Home Title: "
|
179 |
msgstr "Hjem-Tittel:"
|
180 |
|
181 |
-
#: breadcrumb_navxt_admin.php:
|
182 |
msgid "Home Template"
|
183 |
msgstr "Hjem-Mal"
|
184 |
|
185 |
-
#: breadcrumb_navxt_admin.php:
|
186 |
msgid "The template for the home breadcrumb."
|
187 |
msgstr "Mal for hjem-breadcrumb."
|
188 |
|
189 |
-
#: breadcrumb_navxt_admin.php:
|
190 |
msgid "Home Template (Unlinked)"
|
191 |
msgstr "Hjem-Mal (ulenket)"
|
192 |
|
193 |
-
#: breadcrumb_navxt_admin.php:
|
194 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
195 |
msgstr "Mal for hjem-breadcrumb, brukes når breadcrumb ikke er lenket."
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Blog Breadcrumb"
|
199 |
msgstr "Blogg Breadcrumb"
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Place the blog breadcrumb in the trail."
|
203 |
msgstr "Sett inn blogg-breadcrumb i stien."
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "Blog Template"
|
207 |
msgstr "Blogg-Mal"
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
211 |
msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside."
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
214 |
msgid "Blog Template (Unlinked)"
|
215 |
msgstr "Blogg-Mal (ulenket)"
|
216 |
|
217 |
-
#: breadcrumb_navxt_admin.php:
|
218 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
219 |
msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside og når breadcrumb ikke er lenket."
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Main Site Breadcrumb"
|
223 |
msgstr "Hovedsidens Breadcrumb"
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
227 |
msgstr "Sett inn hovedsidens hjem-breadcrumb i stien i et multisite-oppsett."
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Main Site Home Title: "
|
231 |
msgstr "Hovedsidens Hjem-Tittel:"
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Main Site Home Template"
|
235 |
msgstr "Hovedsidens Hjem-Mal"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
239 |
msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Main Site Home Template (Unlinked)"
|
243 |
msgstr "Hovedsidens Hjem-Mal (ulenket)"
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
247 |
msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett og når breadcrumb ikke er lenket."
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Current Item"
|
251 |
msgstr "Aktuelle Element"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "Link Current Item"
|
255 |
msgstr "Lenke Aktuelle Element"
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Yes"
|
259 |
msgstr "Ja"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
-
msgid "Current Item Template"
|
263 |
-
msgstr "Aktuelle Element Mal"
|
264 |
-
|
265 |
-
#: breadcrumb_navxt_admin.php:370
|
266 |
-
msgid "The template for current item breadcrumbs."
|
267 |
-
msgstr "Mal for aktuelle element breadcrumbs."
|
268 |
-
|
269 |
-
#: breadcrumb_navxt_admin.php:371
|
270 |
-
msgid "Current Item Template (Unlinked)"
|
271 |
-
msgstr "Aktuelle Element Mal (ulenket)"
|
272 |
-
|
273 |
-
#: breadcrumb_navxt_admin.php:371
|
274 |
-
msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
|
275 |
-
msgstr "Mal for aktuelle element breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
276 |
-
|
277 |
-
#: breadcrumb_navxt_admin.php:372
|
278 |
msgid "Paged Breadcrumb"
|
279 |
msgstr "Sidebestemt Breadcrumb"
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
283 |
msgstr "Inkluder sidebestemt breadcrumb i stien."
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
287 |
msgstr "Indikerer at brukeren er på en annen side enn den første i paginerte innlegg eller sider."
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Paged Template"
|
291 |
msgstr "Sidebestemt-Mal"
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
294 |
msgid "The template for paged breadcrumbs."
|
295 |
msgstr "Mal for sidebestemt breadcrumbs."
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Posts & Pages"
|
299 |
msgstr "Innlegg & Sider"
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
msgid "Post Template"
|
303 |
msgstr "Innlegg-Mal"
|
304 |
|
305 |
-
#: breadcrumb_navxt_admin.php:
|
306 |
msgid "The template for post breadcrumbs."
|
307 |
msgstr "Mal for innlegg-breadcrumbs."
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Post Template (Unlinked)"
|
311 |
msgstr "Innlegg-Mal (ulenket)"
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
315 |
msgstr "Mal for innlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Post Taxonomy Display"
|
319 |
msgstr "Innleggsgruppe Visning"
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
323 |
msgstr "Vis gruppenavnet som peker til et innlegg i stien."
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Post Taxonomy"
|
327 |
msgstr "Innleggsgruppe"
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Categories"
|
331 |
msgstr "Kategorier"
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Dates"
|
335 |
msgstr "Datoer"
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Tags"
|
339 |
msgstr "Stikkord"
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Pages"
|
343 |
msgstr "Sider"
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid "The taxonomy which the breadcrumb trail will show."
|
347 |
msgstr "Gruppenavnet som breadcrumb-stien vil vise."
|
348 |
|
349 |
-
#: breadcrumb_navxt_admin.php:
|
350 |
msgid "Page Template"
|
351 |
msgstr "Side-Mal"
|
352 |
|
353 |
-
#: breadcrumb_navxt_admin.php:
|
354 |
msgid "The template for page breadcrumbs."
|
355 |
msgstr "Mal for side-breadcrumbs."
|
356 |
|
357 |
-
#: breadcrumb_navxt_admin.php:
|
358 |
msgid "Page Template (Unlinked)"
|
359 |
msgstr "Side-Mal (ulenket)"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
362 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
363 |
msgstr "Mal for side-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
msgid "Attachment Template"
|
367 |
msgstr "Vedlegg-Mal"
|
368 |
|
369 |
-
#: breadcrumb_navxt_admin.php:
|
370 |
msgid "The template for attachment breadcrumbs."
|
371 |
msgstr "Mal for vedlegg-breadcrumbs."
|
372 |
|
373 |
-
#: breadcrumb_navxt_admin.php:
|
374 |
msgid "Attachment Template (Unlinked)"
|
375 |
msgstr "Vedlegg-Mal (ulenket)"
|
376 |
|
377 |
-
#: breadcrumb_navxt_admin.php:
|
378 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
379 |
msgstr "Mal for vedlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
-
#: breadcrumb_navxt_class.php:
|
383 |
-
#: breadcrumb_navxt_class.php:
|
384 |
-
#: breadcrumb_navxt_class.php:
|
385 |
-
#: breadcrumb_navxt_class.php:259
|
386 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
387 |
msgstr "<a title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a>"
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
msgid "%htitle%"
|
391 |
msgstr "%htitle%"
|
392 |
|
393 |
-
#: breadcrumb_navxt_admin.php:
|
394 |
msgid "%s Template"
|
395 |
msgstr "%s Mal"
|
396 |
|
397 |
-
#: breadcrumb_navxt_admin.php:
|
398 |
msgid "The template for %s breadcrumbs."
|
399 |
msgstr "Mal for %s-breadcrumbs."
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
msgid "%s Template (Unlinked)"
|
403 |
msgstr "%s Mal (ulenket)"
|
404 |
|
405 |
-
#: breadcrumb_navxt_admin.php:
|
406 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
407 |
msgstr "Mal for %s-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
410 |
msgid "%s Root Page"
|
411 |
msgstr "%s Rot-siden"
|
412 |
|
413 |
-
#: breadcrumb_navxt_admin.php:
|
414 |
msgid "— Select —"
|
415 |
msgstr "— Velg —"
|
416 |
|
417 |
-
#: breadcrumb_navxt_admin.php:
|
418 |
msgid "%s Archive Display"
|
419 |
msgstr "%s Arkiv Visning"
|
420 |
|
421 |
-
#: breadcrumb_navxt_admin.php:
|
422 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
423 |
msgstr "Vis breadcrumb for %s type innleggsarkiv i breadcrumb-stien."
|
424 |
|
425 |
-
#: breadcrumb_navxt_admin.php:
|
426 |
msgid "%s Taxonomy Display"
|
427 |
msgstr "%s Gruppenavn Visning"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
431 |
msgstr "Vis gruppenavnet som peker til en %s i breadcrumb-stien."
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "%s Taxonomy"
|
435 |
msgstr "%s Gruppenavn"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "Categories & Tags"
|
439 |
msgstr "Kategorier & Stikkord"
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
442 |
msgid "Category Template"
|
443 |
msgstr "Kategori-Mal"
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "The template for category breadcrumbs."
|
447 |
msgstr "Mal for kategori-breadcrumbs."
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Category Template (Unlinked)"
|
451 |
msgstr "Kategori-Mal (ulenket)"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
455 |
msgstr "Mal for kategori-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "Tag Template"
|
459 |
msgstr "Stikkord-Mal"
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "The template for tag breadcrumbs."
|
463 |
msgstr "Mal for stikkord-breadcrumbs."
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "Tag Template (Unlinked)"
|
467 |
msgstr "Stikkord-Mal (ulenket)"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
471 |
msgstr "Mal for stikkord-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Miscellaneous"
|
475 |
msgstr "Diverse"
|
476 |
|
477 |
-
#: breadcrumb_navxt_admin.php:
|
478 |
msgid "Author Template"
|
479 |
msgstr "Forfatter-Mal"
|
480 |
|
481 |
-
#: breadcrumb_navxt_admin.php:
|
482 |
msgid "The template for author breadcrumbs."
|
483 |
msgstr "Mal for forfatter-breadcrumbs."
|
484 |
|
485 |
-
#: breadcrumb_navxt_admin.php:
|
486 |
msgid "Author Template (Unlinked)"
|
487 |
msgstr "Forfatter-Mal (ulenket)"
|
488 |
|
489 |
-
#: breadcrumb_navxt_admin.php:
|
490 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
491 |
msgstr "Mal for forfatter-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
492 |
|
493 |
-
#: breadcrumb_navxt_admin.php:
|
494 |
msgid "Author Display Format"
|
495 |
msgstr "Forfatter Visningsformat"
|
496 |
|
497 |
-
#: breadcrumb_navxt_admin.php:
|
498 |
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
499 |
msgstr "display_name bruker navnet som er valgt under \"Vis navn offentlig som\" i brukerprofilen."
|
500 |
|
501 |
-
#: breadcrumb_navxt_admin.php:
|
502 |
msgid "Date Template"
|
503 |
msgstr "Dato-Mal"
|
504 |
|
505 |
-
#: breadcrumb_navxt_admin.php:
|
506 |
msgid "The template for date breadcrumbs."
|
507 |
msgstr "Mal for dato-breadcrumbs."
|
508 |
|
509 |
-
#: breadcrumb_navxt_admin.php:
|
510 |
msgid "Date Template (Unlinked)"
|
511 |
msgstr "Dato-Mal (ulenket)"
|
512 |
|
513 |
-
#: breadcrumb_navxt_admin.php:
|
514 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
515 |
msgstr "Mal for dato-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
516 |
|
517 |
-
#: breadcrumb_navxt_admin.php:
|
518 |
msgid "Search Template"
|
519 |
msgstr "Søk-Mal"
|
520 |
|
521 |
-
#: breadcrumb_navxt_admin.php:
|
522 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
523 |
msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider."
|
524 |
|
525 |
-
#: breadcrumb_navxt_admin.php:
|
526 |
msgid "Search Template (Unlinked)"
|
527 |
msgstr "Søk-Mal (ulenket)"
|
528 |
|
529 |
-
#: breadcrumb_navxt_admin.php:
|
530 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
531 |
msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider og breadcrumb ikke er lenket."
|
532 |
|
533 |
-
#: breadcrumb_navxt_admin.php:
|
534 |
msgid "404 Title"
|
535 |
msgstr "404 Tittel"
|
536 |
|
537 |
-
#: breadcrumb_navxt_admin.php:
|
538 |
msgid "404 Template"
|
539 |
msgstr "404 Mal"
|
540 |
|
541 |
-
#: breadcrumb_navxt_admin.php:
|
542 |
msgid "The template for 404 breadcrumbs."
|
543 |
msgstr "Mal for 404-breadcrumbs."
|
544 |
|
545 |
-
#: breadcrumb_navxt_admin.php:
|
546 |
msgid "Save Changes"
|
547 |
-
msgstr "Lagre endringer"
|
548 |
-
|
549 |
-
#: includes/mtekk_adminkit.php:201
|
550 |
-
msgid "Settings"
|
551 |
-
msgstr "Innstillinger"
|
552 |
-
|
553 |
-
#: includes/mtekk_adminkit.php:271
|
554 |
-
msgid "Your settings are out of date."
|
555 |
-
msgstr "Dine innstillinger er utdaterte."
|
556 |
-
|
557 |
-
#: includes/mtekk_adminkit.php:271
|
558 |
-
msgid "Migrate the settings now."
|
559 |
-
msgstr "Utfør innstillingene nå."
|
560 |
-
|
561 |
-
#: includes/mtekk_adminkit.php:271
|
562 |
-
msgid "Migrate now."
|
563 |
-
msgstr "Utfør nå."
|
564 |
-
|
565 |
-
#: includes/mtekk_adminkit.php:279
|
566 |
-
msgid "Your plugin install is incomplete."
|
567 |
-
msgstr "Installasjonen av plugin er ufullstendig."
|
568 |
-
|
569 |
-
#: includes/mtekk_adminkit.php:279
|
570 |
-
msgid "Load default settings now."
|
571 |
-
msgstr "Last inn standard innstillinger nå."
|
572 |
-
|
573 |
-
#: includes/mtekk_adminkit.php:279
|
574 |
-
msgid "Complete now."
|
575 |
-
msgstr "Fullfør nå."
|
576 |
-
|
577 |
-
#: includes/mtekk_adminkit.php:287
|
578 |
-
msgid "Your plugin settings are invalid."
|
579 |
-
msgstr "Dine plugin-innstillinger er ugyldige."
|
580 |
-
|
581 |
-
#: includes/mtekk_adminkit.php:287
|
582 |
-
msgid "Attempt to fix settings now."
|
583 |
-
msgstr "Forsøk å ordne innstillinger nå."
|
584 |
-
|
585 |
-
#: includes/mtekk_adminkit.php:287
|
586 |
-
msgid "Fix now."
|
587 |
-
msgstr "Ordne nå."
|
588 |
-
|
589 |
-
#: includes/mtekk_adminkit.php:463
|
590 |
-
msgid "Settings successfully saved."
|
591 |
-
msgstr "Innstillinger ble lagret."
|
592 |
-
|
593 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
594 |
-
msgid "Undo the options save."
|
595 |
-
msgstr "Angre lagring av alternativer."
|
596 |
-
|
597 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
598 |
-
#: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
|
599 |
-
#: includes/mtekk_adminkit.php:614
|
600 |
-
msgid "Undo"
|
601 |
-
msgstr "Angre"
|
602 |
-
|
603 |
-
#: includes/mtekk_adminkit.php:468
|
604 |
-
msgid "Some settings were not saved."
|
605 |
-
msgstr "Noen innstillinger ble ikke lagret."
|
606 |
-
|
607 |
-
#: includes/mtekk_adminkit.php:469
|
608 |
-
msgid "The following settings were not saved:"
|
609 |
-
msgstr "Følgende innstillinger ble ikke lagret:"
|
610 |
-
|
611 |
-
#: includes/mtekk_adminkit.php:474
|
612 |
-
msgid "Please include this message in your %sbug report%s."
|
613 |
-
msgstr "Vær vennlig å inkludere denne meldingen i din %sbug-rapport%s."
|
614 |
-
|
615 |
-
#: includes/mtekk_adminkit.php:474
|
616 |
-
msgid "Go to the %s support post for your version."
|
617 |
-
msgstr "Gå til %s support for din versjon."
|
618 |
-
|
619 |
-
#: includes/mtekk_adminkit.php:573
|
620 |
-
msgid "Settings successfully imported from the uploaded file."
|
621 |
-
msgstr "Import av innstillinger fra fil var vellykket."
|
622 |
-
|
623 |
-
#: includes/mtekk_adminkit.php:573
|
624 |
-
msgid "Undo the options import."
|
625 |
-
msgstr "Angre import av alternativer."
|
626 |
-
|
627 |
-
#: includes/mtekk_adminkit.php:578
|
628 |
-
msgid "Importing settings from file failed."
|
629 |
-
msgstr "Importering av innstillinger fra fil mislyktes."
|
630 |
-
|
631 |
-
#: includes/mtekk_adminkit.php:597
|
632 |
-
msgid "Settings successfully reset to the default values."
|
633 |
-
msgstr "Innstillinger ble tilbakestilt til standardverdiene."
|
634 |
-
|
635 |
-
#: includes/mtekk_adminkit.php:597
|
636 |
-
msgid "Undo the options reset."
|
637 |
-
msgstr "Angre tilbakestilling av alternativer."
|
638 |
-
|
639 |
-
#: includes/mtekk_adminkit.php:614
|
640 |
-
msgid "Settings successfully undid the last operation."
|
641 |
-
msgstr "Innstillinger gjorde om siste handling."
|
642 |
-
|
643 |
-
#: includes/mtekk_adminkit.php:614
|
644 |
-
msgid "Undo the last undo operation."
|
645 |
-
msgstr "Angre siste angre-handling."
|
646 |
-
|
647 |
-
#: includes/mtekk_adminkit.php:649
|
648 |
-
msgid "Settings successfully migrated."
|
649 |
-
msgstr "Innstillingene ble utført."
|
650 |
-
|
651 |
-
#: includes/mtekk_adminkit.php:656
|
652 |
-
msgid "Default settings successfully installed."
|
653 |
-
msgstr "Standard innstillinger ble installert."
|
654 |
-
|
655 |
-
#: includes/mtekk_adminkit.php:757
|
656 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
657 |
-
msgstr "Importere innstillinger fra en XML-fil, eksportere nåværende innstillinger til en XML-fil, eller tilbakestille til standard innstillinger."
|
658 |
-
|
659 |
-
#: includes/mtekk_adminkit.php:760
|
660 |
-
msgid "Settings File"
|
661 |
-
msgstr "Innstillinger Fil"
|
662 |
-
|
663 |
-
#: includes/mtekk_adminkit.php:763
|
664 |
-
msgid "Select a XML settings file to upload and import settings from."
|
665 |
-
msgstr "Velg en XML-fil å laste opp og importere innstillinger fra."
|
666 |
-
|
667 |
-
#: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
|
668 |
-
msgid "Home"
|
669 |
-
msgstr "Hjem"
|
670 |
-
|
671 |
-
#: breadcrumb_navxt_class.php:230
|
672 |
-
msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
|
673 |
-
msgstr "<a title=\"Last inn nåværende side på nytt.\" href=\"%link%\">%htitle%</a>"
|
674 |
-
|
675 |
-
#: breadcrumb_navxt_class.php:242
|
676 |
-
msgid "Page %htitle%"
|
677 |
-
msgstr "Side %htitle%"
|
678 |
-
|
679 |
-
#: breadcrumb_navxt_class.php:266
|
680 |
-
msgid "404"
|
681 |
-
msgstr "404"
|
682 |
-
|
683 |
-
#: breadcrumb_navxt_class.php:269
|
684 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>'"
|
685 |
-
msgstr "Søkeresultat for '<a title=\"Gå til første side i søkeresultatet for %title%.\" href=\"%link%\">%htitle%</a>'"
|
686 |
-
|
687 |
-
#: breadcrumb_navxt_class.php:271
|
688 |
-
msgid "Search results for '%htitle%'"
|
689 |
-
msgstr "Søkeresultat for '%htitle%'"
|
690 |
-
|
691 |
-
#: breadcrumb_navxt_class.php:274
|
692 |
-
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
|
693 |
-
msgstr "<a title=\"Gå til %title% stikkordsarkiv.\" href=\"%link%\">%htitle%</a>"
|
694 |
-
|
695 |
-
#: breadcrumb_navxt_class.php:279
|
696 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
|
697 |
-
msgstr "Artikler av: <a title=\"Gå til første side med innlegg av %title%.\" href=\"%link%\">%htitle%</a>"
|
698 |
-
|
699 |
-
#: breadcrumb_navxt_class.php:281
|
700 |
-
msgid "Articles by: %htitle%"
|
701 |
-
msgstr "Artikler av: %htitle%"
|
702 |
-
|
703 |
-
#: breadcrumb_navxt_class.php:286
|
704 |
-
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
|
705 |
-
msgstr "<a title=\"Gå til %title% kategoriarkiv.\" href=\"%link%\">%htitle%</a>"
|
706 |
-
|
707 |
-
#: breadcrumb_navxt_class.php:290
|
708 |
-
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
|
709 |
-
msgstr "<a title=\"Gå til %title% arkiv.\" href=\"%link%\">%htitle%</a>"
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:22:54+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
|
|
|
|
|
|
|
|
13 |
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr "Tekst som vises før stien:"
|
16 |
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr "Schema.org"
|
20 |
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr "Gå til Breadcrumb NavXT oversettingsprosjekt."
|
24 |
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr "Din PHP-versjon er for gammel, vennligst oppgrader til en nyere versjon. Din versjon er %1$s, Breadcrumb NavXT krever %2$s"
|
28 |
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Tittel:"
|
32 |
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
msgid "Plain"
|
35 |
msgstr "Ordinær"
|
36 |
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
msgid "Link the breadcrumbs"
|
39 |
msgstr "Lenke breadcrumbs"
|
40 |
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
msgid "Reverse the order of the trail"
|
43 |
msgstr "Reverser rekkefølgen på stien"
|
44 |
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
msgid "Hide the trail on the front page"
|
47 |
msgstr "Skjul stien på hovedsiden"
|
48 |
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
|
|
|
|
|
|
|
|
50 |
msgid "Insufficient privileges to proceed."
|
51 |
msgstr "Utilstrekkelige rettigheter for å fortsette."
|
52 |
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
msgid "Tips for the settings are located below select options."
|
55 |
msgstr "Tips for innstillinger finnes under \"Velg alternativer\"."
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
msgid "Resources"
|
59 |
msgstr "Resurser"
|
60 |
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
msgstr "%sTutorials and How Tos%s: Det er flere guider, \"tutorials\" og \"how tos\" tilgjengelig på forfatterens hjemmeside."
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
msgstr "Gå til Breadcrumb NavXT stikkordsarkiv."
|
68 |
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
msgstr "%sOnline Dokumentasjon%s: Dokumentasjon for mer avansert teknisk informasjon."
|
72 |
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
msgstr "Gå til Breadcrumb NavXT online dokumentasjon"
|
76 |
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
msgstr "%sRaporter en Bug%s: Hvis du tror du har funnet en bug, vennligst inkluder din WordPress-versjon og detaljer om hvordan reprodusere buggen."
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
msgstr "Gå til Breadcrumb NavXT support for din versjon."
|
84 |
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
msgid "Giving Back"
|
87 |
msgstr "Gi Tilbake"
|
88 |
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
msgstr "%sDonate%s: Liker Breadcrumb NavXT og ønsker å bidra til utviklingen? Vurder å spandere en øl på forfatteren."
|
92 |
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
msgstr "Gå til PayPal for å gi en donasjon til Breadcrumb NavXT."
|
96 |
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
msgstr "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
100 |
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
msgid "General"
|
103 |
msgstr "Generelt"
|
104 |
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
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."
|
107 |
msgstr "For at innstillingene på denne siden skal gjelde må du enten bruke den medfølgende Breadcrumb NavXT widget, eller bruke en av kodeseksjonene nedenfor i temaet ditt."
|
108 |
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
msgid "Breadcrumb trail with separators"
|
111 |
msgstr "Breadcrumb-sti med skilletegn"
|
112 |
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
msgid "Breadcrumb trail in list form"
|
115 |
msgstr "Breadcrumb-sti i listeform"
|
116 |
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
msgid "Quick Start"
|
119 |
msgstr "Hurtig-Start"
|
120 |
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
msgstr "Bruker du koden fra Hurtig-Start seksjonen ovenfor, kan følgende CSS brukes som utgangspunkt for å style breadcrumb-stien."
|
124 |
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
msgid "Styling"
|
127 |
msgstr "Styling"
|
128 |
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
msgid "Import/Export/Reset"
|
131 |
msgstr "Import/Eksport/Tilbakestille Innstillinger"
|
132 |
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
msgid "Import"
|
135 |
msgstr "Import"
|
136 |
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
msgid "Export"
|
139 |
msgstr "Eksport"
|
140 |
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
msgid "Reset"
|
143 |
msgstr "Tilbakestille"
|
144 |
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
msgid "Breadcrumb NavXT Settings"
|
147 |
msgstr "Breadcrumb NavXT Innstillinger"
|
148 |
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
msgid "Breadcrumb Separator"
|
151 |
msgstr "Breadcrumb Skilletegn"
|
152 |
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
msgid "Placed in between each breadcrumb."
|
155 |
msgstr "Settes inn mellom hver breadcrumb."
|
156 |
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
msgid "Breadcrumb Max Title Length"
|
159 |
msgstr "Breadcrumb Max Tittellengde"
|
160 |
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
msgid "Home Breadcrumb"
|
163 |
msgstr "Hjem Breadcrumb"
|
164 |
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
msgid "Place the home breadcrumb in the trail."
|
167 |
msgstr "Sett inn hjem-breadcrumb i stien."
|
168 |
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
msgid "Home Title: "
|
171 |
msgstr "Hjem-Tittel:"
|
172 |
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
msgid "Home Template"
|
175 |
msgstr "Hjem-Mal"
|
176 |
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
msgid "The template for the home breadcrumb."
|
179 |
msgstr "Mal for hjem-breadcrumb."
|
180 |
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
msgid "Home Template (Unlinked)"
|
183 |
msgstr "Hjem-Mal (ulenket)"
|
184 |
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
msgstr "Mal for hjem-breadcrumb, brukes når breadcrumb ikke er lenket."
|
188 |
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
msgid "Blog Breadcrumb"
|
191 |
msgstr "Blogg Breadcrumb"
|
192 |
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
msgid "Place the blog breadcrumb in the trail."
|
195 |
msgstr "Sett inn blogg-breadcrumb i stien."
|
196 |
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
msgid "Blog Template"
|
199 |
msgstr "Blogg-Mal"
|
200 |
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside."
|
204 |
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
msgid "Blog Template (Unlinked)"
|
207 |
msgstr "Blogg-Mal (ulenket)"
|
208 |
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
msgstr "Mal for blogg-breadcrumb, brukes bare på en statisk framside og når breadcrumb ikke er lenket."
|
212 |
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
msgid "Main Site Breadcrumb"
|
215 |
msgstr "Hovedsidens Breadcrumb"
|
216 |
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
msgstr "Sett inn hovedsidens hjem-breadcrumb i stien i et multisite-oppsett."
|
220 |
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
msgid "Main Site Home Title: "
|
223 |
msgstr "Hovedsidens Hjem-Tittel:"
|
224 |
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
msgid "Main Site Home Template"
|
227 |
msgstr "Hovedsidens Hjem-Mal"
|
228 |
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett."
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
msgid "Main Site Home Template (Unlinked)"
|
235 |
msgstr "Hovedsidens Hjem-Mal (ulenket)"
|
236 |
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
msgstr "Mal for hovedsidens hjem-breadcrumb, brukes bare i multisite-oppsett og når breadcrumb ikke er lenket."
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
msgid "Current Item"
|
243 |
msgstr "Aktuelle Element"
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
msgid "Link Current Item"
|
247 |
msgstr "Lenke Aktuelle Element"
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
msgid "Yes"
|
251 |
msgstr "Ja"
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Paged Breadcrumb"
|
255 |
msgstr "Sidebestemt Breadcrumb"
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
msgstr "Inkluder sidebestemt breadcrumb i stien."
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
msgstr "Indikerer at brukeren er på en annen side enn den første i paginerte innlegg eller sider."
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
msgid "Paged Template"
|
267 |
msgstr "Sidebestemt-Mal"
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
msgid "The template for paged breadcrumbs."
|
271 |
msgstr "Mal for sidebestemt breadcrumbs."
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
msgid "Posts & Pages"
|
275 |
msgstr "Innlegg & Sider"
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
msgid "Post Template"
|
279 |
msgstr "Innlegg-Mal"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
msgid "The template for post breadcrumbs."
|
283 |
msgstr "Mal for innlegg-breadcrumbs."
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
msgid "Post Template (Unlinked)"
|
287 |
msgstr "Innlegg-Mal (ulenket)"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
msgstr "Mal for innlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
msgid "Post Taxonomy Display"
|
295 |
msgstr "Innleggsgruppe Visning"
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
msgstr "Vis gruppenavnet som peker til et innlegg i stien."
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
msgid "Post Taxonomy"
|
303 |
msgstr "Innleggsgruppe"
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
msgid "Categories"
|
307 |
msgstr "Kategorier"
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
msgid "Dates"
|
311 |
msgstr "Datoer"
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
msgid "Tags"
|
315 |
msgstr "Stikkord"
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
msgid "Pages"
|
319 |
msgstr "Sider"
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
msgstr "Gruppenavnet som breadcrumb-stien vil vise."
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
msgid "Page Template"
|
327 |
msgstr "Side-Mal"
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
msgid "The template for page breadcrumbs."
|
331 |
msgstr "Mal for side-breadcrumbs."
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
msgid "Page Template (Unlinked)"
|
335 |
msgstr "Side-Mal (ulenket)"
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
msgstr "Mal for side-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
msgid "Attachment Template"
|
343 |
msgstr "Vedlegg-Mal"
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
msgid "The template for attachment breadcrumbs."
|
347 |
msgstr "Mal for vedlegg-breadcrumbs."
|
348 |
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
msgid "Attachment Template (Unlinked)"
|
351 |
msgstr "Vedlegg-Mal (ulenket)"
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
msgstr "Mal for vedlegg-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
356 |
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
|
|
361 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
msgstr "<a title=\"Gå til %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
msgid "%htitle%"
|
366 |
msgstr "%htitle%"
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
msgid "%s Template"
|
370 |
msgstr "%s Mal"
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
msgid "The template for %s breadcrumbs."
|
374 |
msgstr "Mal for %s-breadcrumbs."
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
msgid "%s Template (Unlinked)"
|
378 |
msgstr "%s Mal (ulenket)"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
msgstr "Mal for %s-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
msgid "%s Root Page"
|
386 |
msgstr "%s Rot-siden"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
msgid "— Select —"
|
390 |
msgstr "— Velg —"
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
msgid "%s Archive Display"
|
394 |
msgstr "%s Arkiv Visning"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
msgstr "Vis breadcrumb for %s type innleggsarkiv i breadcrumb-stien."
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
msgid "%s Taxonomy Display"
|
402 |
msgstr "%s Gruppenavn Visning"
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
msgstr "Vis gruppenavnet som peker til en %s i breadcrumb-stien."
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
msgid "%s Taxonomy"
|
410 |
msgstr "%s Gruppenavn"
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
msgid "Categories & Tags"
|
414 |
msgstr "Kategorier & Stikkord"
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
msgid "Category Template"
|
418 |
msgstr "Kategori-Mal"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
msgid "The template for category breadcrumbs."
|
422 |
msgstr "Mal for kategori-breadcrumbs."
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
msgid "Category Template (Unlinked)"
|
426 |
msgstr "Kategori-Mal (ulenket)"
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
msgstr "Mal for kategori-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
msgid "Tag Template"
|
434 |
msgstr "Stikkord-Mal"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
msgid "The template for tag breadcrumbs."
|
438 |
msgstr "Mal for stikkord-breadcrumbs."
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
msgid "Tag Template (Unlinked)"
|
442 |
msgstr "Stikkord-Mal (ulenket)"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
msgstr "Mal for stikkord-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
msgid "Miscellaneous"
|
450 |
msgstr "Diverse"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
msgid "Author Template"
|
454 |
msgstr "Forfatter-Mal"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
msgid "The template for author breadcrumbs."
|
458 |
msgstr "Mal for forfatter-breadcrumbs."
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
msgid "Author Template (Unlinked)"
|
462 |
msgstr "Forfatter-Mal (ulenket)"
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
msgstr "Mal for forfatter-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
msgid "Author Display Format"
|
470 |
msgstr "Forfatter Visningsformat"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
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."
|
474 |
msgstr "display_name bruker navnet som er valgt under \"Vis navn offentlig som\" i brukerprofilen."
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
msgid "Date Template"
|
478 |
msgstr "Dato-Mal"
|
479 |
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
msgid "The template for date breadcrumbs."
|
482 |
msgstr "Mal for dato-breadcrumbs."
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
msgid "Date Template (Unlinked)"
|
486 |
msgstr "Dato-Mal (ulenket)"
|
487 |
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
msgstr "Mal for dato-breadcrumbs, brukes bare når breadcrumb ikke er lenket."
|
491 |
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
msgid "Search Template"
|
494 |
msgstr "Søk-Mal"
|
495 |
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider."
|
499 |
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
msgid "Search Template (Unlinked)"
|
502 |
msgstr "Søk-Mal (ulenket)"
|
503 |
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
msgstr "Lenkemal for søk-breadcrumbs, brukes bare når søkeresultatet omfatter flere sider og breadcrumb ikke er lenket."
|
507 |
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
msgid "404 Title"
|
510 |
msgstr "404 Tittel"
|
511 |
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
msgid "404 Template"
|
514 |
msgstr "404 Mal"
|
515 |
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
msgid "The template for 404 breadcrumbs."
|
518 |
msgstr "Mal for 404-breadcrumbs."
|
519 |
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
msgid "Save Changes"
|
522 |
+
msgstr "Lagre endringer"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/breadcrumb-navxt-pt_PT.mo
ADDED
Binary file
|
languages/breadcrumb-navxt-pt_PT.po
ADDED
@@ -0,0 +1,522 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Breadcrumb NavXT in Portuguese (Portugal)
|
2 |
+
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:27:22+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
+
|
13 |
+
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr "Texto a exibir antes do caminh:"
|
16 |
+
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr "Schema.org"
|
20 |
+
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr "Ir para o projecto de tradução do Breadcrumb NavXT."
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr "A sua versão do PHP é muito antiga, atualize-a para uma versão mais recente. A sua versão é a %1$s, o Breadcrum NavXT necessita da %2$s."
|
28 |
+
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Título:"
|
32 |
+
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
+
msgid "Plain"
|
35 |
+
msgstr "Por extenso"
|
36 |
+
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
+
msgid "Link the breadcrumbs"
|
39 |
+
msgstr "Ligue a navegação estruturada"
|
40 |
+
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
+
msgid "Reverse the order of the trail"
|
43 |
+
msgstr "Ordem do rasto inversa"
|
44 |
+
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
+
msgid "Hide the trail on the front page"
|
47 |
+
msgstr "Esconda o rasto na página principal"
|
48 |
+
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
50 |
+
msgid "Insufficient privileges to proceed."
|
51 |
+
msgstr "Permissões insuficientes para prosseguir."
|
52 |
+
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
+
msgid "Tips for the settings are located below select options."
|
55 |
+
msgstr "As dicas de configuração estão localizadas abaixo das opções de selecção."
|
56 |
+
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
+
msgid "Resources"
|
59 |
+
msgstr "Recursos"
|
60 |
+
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
+
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
+
msgstr "%sTutoriais e How tos%s: Existem vários guias, tutoriais e how tos disponíveis na página do autor."
|
64 |
+
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
+
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
+
msgstr "Vá para o tópico Breadcrumb NavXT"
|
68 |
+
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
+
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
+
msgstr "%sDocumentação em linha%s: Veja a documentação para mais pormenores e especificações ao detalhe."
|
72 |
+
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
+
msgstr "Vá para a documentação online do Breadcrumb NavXT."
|
76 |
+
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
+
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
+
msgstr "%sReporte um erro%s: Se julga que encontrou um erro, por favor inclua a sua versão do Wordpress assim cmo os detalhes que se devem ter em atenção para se reproduzir o erro."
|
80 |
+
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
+
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
+
msgstr "Para saber a sua versão vá ao artigo de ajuda do Breadcrumb NavXT "
|
84 |
+
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
+
msgid "Giving Back"
|
87 |
+
msgstr "Retribuir"
|
88 |
+
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
+
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
+
msgstr "%sDonativos%s: Gosta do Breadcrumb NavXT e quer ajudar ao seu desenvolvimento? Pague uma cerveja ao autor."
|
92 |
+
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
+
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
+
msgstr "Vá ao PayPal para efectuar um donativo ao Breadcrumb NavXT."
|
96 |
+
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
+
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
+
msgstr "%sTradução%s: O seu idioma não está disponível? Contacte John Havlik para começar a traduzir."
|
100 |
+
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
+
msgid "General"
|
103 |
+
msgstr "Genérica"
|
104 |
+
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
+
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."
|
107 |
+
msgstr "Para que as configurações desta página surtam efeito, tem de incluir o widget Breadcrumb NavXT ou colocar os seguintes blocos de código no seu tema."
|
108 |
+
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
+
msgid "Breadcrumb trail with separators"
|
111 |
+
msgstr "Rastos de navegação estruturada com separadores"
|
112 |
+
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
+
msgid "Breadcrumb trail in list form"
|
115 |
+
msgstr "Rasto da navegação estruturada em forma de lista"
|
116 |
+
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
+
msgid "Quick Start"
|
119 |
+
msgstr "Início rápido"
|
120 |
+
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
+
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
+
msgstr "Usando o código da secção iniciação rápida acima, o seguinte CSS pode ser usado como base para estilizar o rasto da sua navegação estruturada."
|
124 |
+
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
+
msgid "Styling"
|
127 |
+
msgstr "Estilos"
|
128 |
+
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
+
msgid "Import/Export/Reset"
|
131 |
+
msgstr "Importar/Exportar/Anular"
|
132 |
+
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
+
msgid "Import"
|
135 |
+
msgstr "Importar"
|
136 |
+
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
+
msgid "Export"
|
139 |
+
msgstr "Exportar"
|
140 |
+
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
+
msgid "Reset"
|
143 |
+
msgstr "Anular"
|
144 |
+
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
+
msgid "Breadcrumb NavXT Settings"
|
147 |
+
msgstr "Preferências da navegação estruturada NavXT "
|
148 |
+
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
+
msgid "Breadcrumb Separator"
|
151 |
+
msgstr "Separador da navegação estruturada"
|
152 |
+
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
+
msgid "Placed in between each breadcrumb."
|
155 |
+
msgstr "Colocado entre cada link de navegação."
|
156 |
+
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
+
msgid "Breadcrumb Max Title Length"
|
159 |
+
msgstr "Tamanho máximo para o título de cada navegação estruturada"
|
160 |
+
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
+
msgid "Home Breadcrumb"
|
163 |
+
msgstr "Navegação para a página principal"
|
164 |
+
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
+
msgid "Place the home breadcrumb in the trail."
|
167 |
+
msgstr "Coloca a navegação da página principal no rasto"
|
168 |
+
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
+
msgid "Home Title: "
|
171 |
+
msgstr "Título da página inicial:"
|
172 |
+
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
+
msgid "Home Template"
|
175 |
+
msgstr "Modelo da página inicial:"
|
176 |
+
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
+
msgid "The template for the home breadcrumb."
|
179 |
+
msgstr "O modelo para a navegação da página inicial."
|
180 |
+
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
+
msgid "Home Template (Unlinked)"
|
183 |
+
msgstr "Modelo da página inicial (sem link)"
|
184 |
+
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
+
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
+
msgstr "O template para a navegação da página inicial, usada quando a navegação estruturada não está ligada."
|
188 |
+
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
+
msgid "Blog Breadcrumb"
|
191 |
+
msgstr "Navegação estruturada do blog"
|
192 |
+
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
+
msgid "Place the blog breadcrumb in the trail."
|
195 |
+
msgstr "Coloque a navegação estruturada do blog no rasto."
|
196 |
+
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
+
msgid "Blog Template"
|
199 |
+
msgstr "Modelo de blog"
|
200 |
+
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
+
msgstr "O modelo para a navegação estruturada do blog, usada somente nas páginas estáticas."
|
204 |
+
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
+
msgid "Blog Template (Unlinked)"
|
207 |
+
msgstr "Modelo de blog (sem link)"
|
208 |
+
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
+
msgstr "O modelo para a navegação do blog, usado apenas em páginas iniciais estáticas e apenas quando não tem link."
|
212 |
+
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
+
msgid "Main Site Breadcrumb"
|
215 |
+
msgstr "Navegação do site principal"
|
216 |
+
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
+
msgstr "Colocar a navegação do site principal no rasto numa configuração multi-síte."
|
220 |
+
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
+
msgid "Main Site Home Title: "
|
223 |
+
msgstr "Título para o site principal:"
|
224 |
+
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
+
msgid "Main Site Home Template"
|
227 |
+
msgstr "Modelo para o sítio principal"
|
228 |
+
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
+
msgstr "O modelo para o sítio principal da navegação estruturada, usado apenas em ambientes de multi-sites."
|
232 |
+
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
+
msgid "Main Site Home Template (Unlinked)"
|
235 |
+
msgstr "Modelo da página inicial do site principal (sem link)"
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
+
msgstr "O modelo para a navegação da página inicial do site principal, usado somente em ambiente de multi-site e quando a navegação estruturada não está ligada."
|
240 |
+
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
+
msgid "Current Item"
|
243 |
+
msgstr "Item actual"
|
244 |
+
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
+
msgid "Link Current Item"
|
247 |
+
msgstr "Link no item actual"
|
248 |
+
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
+
msgid "Yes"
|
251 |
+
msgstr "Sim"
|
252 |
+
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
254 |
+
msgid "Paged Breadcrumb"
|
255 |
+
msgstr "Navegação estruturada e paginada."
|
256 |
+
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
+
msgstr "Inclui a navegação paginada e estruturada no rasto."
|
260 |
+
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
+
msgstr "Indica que o utilizador está numa página que não é a primeira em artigos/páginas paginadas."
|
264 |
+
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
+
msgid "Paged Template"
|
267 |
+
msgstr "Modelo paginado"
|
268 |
+
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
+
msgid "The template for paged breadcrumbs."
|
271 |
+
msgstr "Modelo para a navegação estruturada."
|
272 |
+
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
+
msgid "Posts & Pages"
|
275 |
+
msgstr "Artigos & Páginas"
|
276 |
+
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
+
msgid "Post Template"
|
279 |
+
msgstr "Modelo de artigo"
|
280 |
+
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
+
msgid "The template for post breadcrumbs."
|
283 |
+
msgstr "O modelo para a navegação de artigos."
|
284 |
+
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
+
msgid "Post Template (Unlinked)"
|
287 |
+
msgstr "Modelo de Artigo (sem link)"
|
288 |
+
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
+
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
+
msgstr "O modelo para um artigo de navegação estruturada, usada apenas quando a navegação estruturada está desligada."
|
292 |
+
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
+
msgid "Post Taxonomy Display"
|
295 |
+
msgstr "Exibição de taxonomia de artigo"
|
296 |
+
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
+
msgstr "Mostra a taxonomia que conduz a um artigo no rasto da navegação estruturada."
|
300 |
+
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
+
msgid "Post Taxonomy"
|
303 |
+
msgstr "Taxonomia de artigos"
|
304 |
+
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
+
msgid "Categories"
|
307 |
+
msgstr "Categorias"
|
308 |
+
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
+
msgid "Dates"
|
311 |
+
msgstr "Datas"
|
312 |
+
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
+
msgid "Tags"
|
315 |
+
msgstr "Tópicos"
|
316 |
+
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
+
msgid "Pages"
|
319 |
+
msgstr "Páginas"
|
320 |
+
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
+
msgstr "A taxonomia que o rasto da navegação estruturada irá mostrar."
|
324 |
+
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
+
msgid "Page Template"
|
327 |
+
msgstr "Modelo de página"
|
328 |
+
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
+
msgid "The template for page breadcrumbs."
|
331 |
+
msgstr "O modelo para página de navegação estruturada."
|
332 |
+
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
+
msgid "Page Template (Unlinked)"
|
335 |
+
msgstr "Modelo de página (sem link)"
|
336 |
+
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
+
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
+
msgstr "O modelo para página de navegação estruturada, usada somente quando a navegação estruturada não está ligada."
|
340 |
+
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
+
msgid "Attachment Template"
|
343 |
+
msgstr "Modelo de anexo"
|
344 |
+
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
+
msgid "The template for attachment breadcrumbs."
|
347 |
+
msgstr "Modelo para anexos de navegação estruturada."
|
348 |
+
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
+
msgid "Attachment Template (Unlinked)"
|
351 |
+
msgstr "Modelo de anexo (sem link)"
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
+
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
+
msgstr "O modelo para anexo de navegação estruturada, usado somente quando a navegação estruturada está desligada."
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
361 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
+
msgstr "<a title=\"Vá para %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
+
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
+
msgid "%htitle%"
|
366 |
+
msgstr "%htitle%"
|
367 |
+
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
+
msgid "%s Template"
|
370 |
+
msgstr "Modelo de %s"
|
371 |
+
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
+
msgid "The template for %s breadcrumbs."
|
374 |
+
msgstr "O modelo para navegação de %s."
|
375 |
+
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
+
msgid "%s Template (Unlinked)"
|
378 |
+
msgstr "Modelo de %s (sem link)"
|
379 |
+
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
+
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
+
msgstr "O modelo para a navegação de %s, usado somente quando a navegação estruturada não tem link."
|
383 |
+
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
+
msgid "%s Root Page"
|
386 |
+
msgstr "Página raíz de %s"
|
387 |
+
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
+
msgid "— Select —"
|
390 |
+
msgstr "— Escolha —"
|
391 |
+
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
+
msgid "%s Archive Display"
|
394 |
+
msgstr "Exibir arquivo de %s"
|
395 |
+
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
+
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
+
msgstr "Mostra a navegação para o tipo de artigo %s no rasto da navegação estruturada."
|
399 |
+
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
+
msgid "%s Taxonomy Display"
|
402 |
+
msgstr "Exibir a taxonomia %s"
|
403 |
+
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
+
msgstr "Mostra a taxonomia que conduz a um artigo do tipo %s no rasto da navegação estruturada."
|
407 |
+
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
+
msgid "%s Taxonomy"
|
410 |
+
msgstr "Taxonomia de %s"
|
411 |
+
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
+
msgid "Categories & Tags"
|
414 |
+
msgstr "Categoria & Tópicos"
|
415 |
+
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
+
msgid "Category Template"
|
418 |
+
msgstr "Modelo de categoria"
|
419 |
+
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
+
msgid "The template for category breadcrumbs."
|
422 |
+
msgstr "O template para categoria de navegação estruturada."
|
423 |
+
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
+
msgid "Category Template (Unlinked)"
|
426 |
+
msgstr "Modelo de categoria (sem link)"
|
427 |
+
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
+
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
+
msgstr "O modelo para a navegação das categorias, usado apenas quando não há link."
|
431 |
+
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
+
msgid "Tag Template"
|
434 |
+
msgstr "Modelo de tópico"
|
435 |
+
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
+
msgid "The template for tag breadcrumbs."
|
438 |
+
msgstr "O modelo para a navegação dos tópicos."
|
439 |
+
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
+
msgid "Tag Template (Unlinked)"
|
442 |
+
msgstr "Modelo de tópico (sem link)"
|
443 |
+
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
+
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
+
msgstr "O modelo para a navegação dos tópicos, usado apenas quando não há link."
|
447 |
+
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
+
msgid "Miscellaneous"
|
450 |
+
msgstr "Diversos"
|
451 |
+
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
+
msgid "Author Template"
|
454 |
+
msgstr "Modelo de autor"
|
455 |
+
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
+
msgid "The template for author breadcrumbs."
|
458 |
+
msgstr "Modelo para o autor da navegação estruturada."
|
459 |
+
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
+
msgid "Author Template (Unlinked)"
|
462 |
+
msgstr "Modelo de autor (sem link)"
|
463 |
+
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
+
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
+
msgstr "O modelo para o autor da navegação estruturada, usado somente quando a navegação estruturada está desligada."
|
467 |
+
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
+
msgid "Author Display Format"
|
470 |
+
msgstr "Formato de visualização do Autor "
|
471 |
+
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
+
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."
|
474 |
+
msgstr "display_name usa o nome especificado em \"Display name publicly as\" sob o perfil do utilizador os outros corresponde a opções no perfil do utilizador."
|
475 |
+
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
+
msgid "Date Template"
|
478 |
+
msgstr "Modelo de data"
|
479 |
+
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
+
msgid "The template for date breadcrumbs."
|
482 |
+
msgstr "O modelo para as datas da navegação estruturada."
|
483 |
+
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
+
msgid "Date Template (Unlinked)"
|
486 |
+
msgstr "Modelo de data (sem link)"
|
487 |
+
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
+
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
+
msgstr "O modelo para as datas da navegação estruturada, usado somente quando a navegação estruturada não está ligada."
|
491 |
+
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
+
msgid "Search Template"
|
494 |
+
msgstr "Modelo de pesquisa"
|
495 |
+
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
+
msgstr "O modelo de âncora para navegação de pesquisa, usada somente quando a busca se estende por várias páginas."
|
499 |
+
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
+
msgid "Search Template (Unlinked)"
|
502 |
+
msgstr "Modelo de pesquisa (sem link)"
|
503 |
+
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
+
msgstr "A âncora para o modelo da navegação da pesquisa, usada somente quando o resultado de busca se estende por várias páginas e a navegação estruturada não tem link."
|
507 |
+
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
+
msgid "404 Title"
|
510 |
+
msgstr "404 Título"
|
511 |
+
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
+
msgid "404 Template"
|
514 |
+
msgstr "Modelo 404"
|
515 |
+
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
+
msgid "The template for 404 breadcrumbs."
|
518 |
+
msgstr "O modelo para 404 navegação estruturada."
|
519 |
+
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
+
msgid "Save Changes"
|
522 |
+
msgstr "Gravar alterações"
|
languages/breadcrumb-navxt-ru_RU.mo
ADDED
Binary file
|
languages/breadcrumb-navxt-ru_RU.po
ADDED
@@ -0,0 +1,522 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Breadcrumb NavXT in Russian
|
2 |
+
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:27:59+0000\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
10 |
+
"X-Generator: GlotPress/0.1\n"
|
11 |
+
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
+
|
13 |
+
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr "Текст, выводимый перед путем:"
|
16 |
+
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr "Schema.org"
|
20 |
+
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr "Перейти на сайт перевода Breadcrumb NavXT"
|
24 |
+
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr "Ваша версия PHP устарела, пожалуйста обновите ее. У вас версия %1$s, Breadcrumb NavXT требует %2$s"
|
28 |
+
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Заголовок:"
|
32 |
+
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
+
msgid "Plain"
|
35 |
+
msgstr "Текст"
|
36 |
+
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
+
msgid "Link the breadcrumbs"
|
39 |
+
msgstr "Путь в виде ссылок"
|
40 |
+
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
+
msgid "Reverse the order of the trail"
|
43 |
+
msgstr "Обратная сортировка пути"
|
44 |
+
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
+
msgid "Hide the trail on the front page"
|
47 |
+
msgstr "Не показывать виджет на главной"
|
48 |
+
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
50 |
+
msgid "Insufficient privileges to proceed."
|
51 |
+
msgstr "Недостаточно прав для продолжения."
|
52 |
+
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
+
msgid "Tips for the settings are located below select options."
|
55 |
+
msgstr "Различные подсказки по работе с плагином."
|
56 |
+
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
+
msgid "Resources"
|
59 |
+
msgstr "Ресурсы"
|
60 |
+
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
+
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
+
msgstr "%sРуководства и FAQ'и%s: Тут вы найдете несколько руководств, туториалов и FAQ'ов по использованию плагина."
|
64 |
+
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
+
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
+
msgstr "Все записи с тегом 'Breadcrumb NavXT'."
|
68 |
+
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
+
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
+
msgstr "%sДокументация онлайн%s: Здесь вы найдете документацию с более подробной технической информацией."
|
72 |
+
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
+
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
+
msgstr "Перейти на сайт с онлайн документацией по плагину Breadcrumb NavXT."
|
76 |
+
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
+
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
+
msgstr "%sСообщить об ошибке%s: Если вы нашли ошибку в работе плагина, то сообщите о ней автору. Не забудьте указать версию WordPress и ситуацию, при которой можно воспроизвести ошибку."
|
80 |
+
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
+
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
+
msgstr "Сообщить об ошибке плагина Breadcrumb NavXT вашей версии."
|
84 |
+
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
+
msgid "Giving Back"
|
87 |
+
msgstr "Внести свой вклад"
|
88 |
+
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
+
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
+
msgstr "%sПожертвования%s: Любите плагин Breadcrumb NavXT и хотите помочь его разработке? Купите автору пиво :)"
|
92 |
+
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
+
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
+
msgstr "Перейти к сайту PayPal, чтобы сделать пожертвование автору плагина Breadcrumb NavXT."
|
96 |
+
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
+
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
+
msgstr "%sПеревод%s: Ваш язык недоступен? Свяжитесь с John Havlik, если хотите перевести плагин на свой язык."
|
100 |
+
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
+
msgid "General"
|
103 |
+
msgstr "Основные"
|
104 |
+
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
+
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."
|
107 |
+
msgstr "Для использования плагина вы должны или использовать соответствующий виджет или поместить указанные примеры кода в нужный файл вашего шаблона."
|
108 |
+
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
+
msgid "Breadcrumb trail with separators"
|
111 |
+
msgstr "Путь с разделителями"
|
112 |
+
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
+
msgid "Breadcrumb trail in list form"
|
115 |
+
msgstr "Путь в формате list"
|
116 |
+
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
+
msgid "Quick Start"
|
119 |
+
msgstr "Быстрый старт"
|
120 |
+
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
+
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
+
msgstr "Следующий CSS-код может быть использован для оформления стиля пути."
|
124 |
+
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
+
msgid "Styling"
|
127 |
+
msgstr "Стиль"
|
128 |
+
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
+
msgid "Import/Export/Reset"
|
131 |
+
msgstr "Импорт/Экспорт/Сброс"
|
132 |
+
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
+
msgid "Import"
|
135 |
+
msgstr "Импорт"
|
136 |
+
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
+
msgid "Export"
|
139 |
+
msgstr "Экспорт"
|
140 |
+
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
+
msgid "Reset"
|
143 |
+
msgstr "Сброс"
|
144 |
+
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
+
msgid "Breadcrumb NavXT Settings"
|
147 |
+
msgstr "Настройки Breadcrumb NavXT"
|
148 |
+
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
+
msgid "Breadcrumb Separator"
|
151 |
+
msgstr "Разделитель"
|
152 |
+
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
+
msgid "Placed in between each breadcrumb."
|
155 |
+
msgstr "Устанавливается между ссылками."
|
156 |
+
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
+
msgid "Breadcrumb Max Title Length"
|
159 |
+
msgstr "Максимальная длина заголовка ссылки"
|
160 |
+
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
+
msgid "Home Breadcrumb"
|
163 |
+
msgstr "Ссылка на главную"
|
164 |
+
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
+
msgid "Place the home breadcrumb in the trail."
|
167 |
+
msgstr "Поместить ссылку на главную страницу блога в путь."
|
168 |
+
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
+
msgid "Home Title: "
|
171 |
+
msgstr "Заголовок ссылки на главную"
|
172 |
+
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
+
msgid "Home Template"
|
175 |
+
msgstr "Шаблон ссылки на главную"
|
176 |
+
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
+
msgid "The template for the home breadcrumb."
|
179 |
+
msgstr "Шаблон ссылки для главной страницы блога."
|
180 |
+
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
+
msgid "Home Template (Unlinked)"
|
183 |
+
msgstr "Шаблон ссылки на главную (некликабельная)"
|
184 |
+
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
+
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
+
msgstr "Шаблон ссылки для главной страницы блога (когда ссылка на главную некликабельна)."
|
188 |
+
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
+
msgid "Blog Breadcrumb"
|
191 |
+
msgstr "Ссылка на блог"
|
192 |
+
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
+
msgid "Place the blog breadcrumb in the trail."
|
195 |
+
msgstr "Поместить ссылку на блог в путь."
|
196 |
+
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
+
msgid "Blog Template"
|
199 |
+
msgstr "Шаблон ссылки на блог"
|
200 |
+
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
+
msgstr "Шаблон ссылки на блог (используется только при статической главной странице)."
|
204 |
+
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
+
msgid "Blog Template (Unlinked)"
|
207 |
+
msgstr "Шаблон ссылки на блог (некликабельная)"
|
208 |
+
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
+
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
+
msgstr "Шаблон ссылки на блог (используется только при статической главной странице и только, когда ссылка на блог некликабельна)."
|
212 |
+
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
+
msgid "Main Site Breadcrumb"
|
215 |
+
msgstr "Ссылка на главный сайт"
|
216 |
+
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
+
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
+
msgstr "Поместить ссылку на главный сайт в путь (при включенном режиме мультисайта)."
|
220 |
+
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
+
msgid "Main Site Home Title: "
|
223 |
+
msgstr "Заголовок ссылки на главный сайт:"
|
224 |
+
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
+
msgid "Main Site Home Template"
|
227 |
+
msgstr "Шаблон ссылки на главный сайт"
|
228 |
+
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
+
msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта)."
|
232 |
+
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
+
msgid "Main Site Home Template (Unlinked)"
|
235 |
+
msgstr "Шаблон ссылки на главный сайт (некликабельная)."
|
236 |
+
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
+
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
+
msgstr "Шаблон ссылки на главный сайт (используется только при включенном режиме мультисайта и только, когда ссылка на главный сайт некликабельна)."
|
240 |
+
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
+
msgid "Current Item"
|
243 |
+
msgstr "Текущая позиция"
|
244 |
+
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
+
msgid "Link Current Item"
|
247 |
+
msgstr "Показывать текущую позицию в виде ссылки"
|
248 |
+
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
+
msgid "Yes"
|
251 |
+
msgstr "Да"
|
252 |
+
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
254 |
+
msgid "Paged Breadcrumb"
|
255 |
+
msgstr "Постраничная навигация"
|
256 |
+
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
+
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
+
msgstr "Включить поддержку постраничной навигации."
|
260 |
+
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
+
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
+
msgstr "В текущей позиции будет указан номер страницы, если посетитель находится на странице, образованной постраничной навигацией."
|
264 |
+
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
+
msgid "Paged Template"
|
267 |
+
msgstr "Шаблон"
|
268 |
+
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
+
msgid "The template for paged breadcrumbs."
|
271 |
+
msgstr "Шаблон для страниц с постраничной навигацией."
|
272 |
+
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
+
msgid "Posts & Pages"
|
275 |
+
msgstr "Записи & Страницы"
|
276 |
+
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
+
msgid "Post Template"
|
279 |
+
msgstr "Шаблон ссылки на запись"
|
280 |
+
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
+
msgid "The template for post breadcrumbs."
|
283 |
+
msgstr "Шаблон ссылки на запись."
|
284 |
+
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
+
msgid "Post Template (Unlinked)"
|
287 |
+
msgstr "Шаблон ссылки на запись (некликабельная)"
|
288 |
+
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
+
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
+
msgstr "Шаблон ссылки на запись (когда ссылка на запись некликабельна)."
|
292 |
+
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
+
msgid "Post Taxonomy Display"
|
295 |
+
msgstr "Пути"
|
296 |
+
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
+
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
+
msgstr "Показывать в пути все возможные варианты доступа к текущей позиции."
|
300 |
+
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
+
msgid "Post Taxonomy"
|
303 |
+
msgstr "Вариант пути"
|
304 |
+
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
+
msgid "Categories"
|
307 |
+
msgstr "Рубрики"
|
308 |
+
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
+
msgid "Dates"
|
311 |
+
msgstr "Даты"
|
312 |
+
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
+
msgid "Tags"
|
315 |
+
msgstr "Метки"
|
316 |
+
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
+
msgid "Pages"
|
319 |
+
msgstr "Страницы"
|
320 |
+
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
+
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
+
msgstr "Будет использован в пути указанный вариант пути к текущей записи."
|
324 |
+
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
+
msgid "Page Template"
|
327 |
+
msgstr "Шаблон ссылки на страницу"
|
328 |
+
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
+
msgid "The template for page breadcrumbs."
|
331 |
+
msgstr "Шаблон ссылки на страницу."
|
332 |
+
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
+
msgid "Page Template (Unlinked)"
|
335 |
+
msgstr "Шаблон ссылки на страницу (некликабельная)"
|
336 |
+
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
+
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
+
msgstr "Шаблон ссылки на страницу (когда ссылка на страницу некликабельна)."
|
340 |
+
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
+
msgid "Attachment Template"
|
343 |
+
msgstr "Шаблон ссылки на вложение"
|
344 |
+
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
+
msgid "The template for attachment breadcrumbs."
|
347 |
+
msgstr "Шаблон ссылки на вложение."
|
348 |
+
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
+
msgid "Attachment Template (Unlinked)"
|
351 |
+
msgstr "Шаблон ссылки на вложение (некликабельная)"
|
352 |
+
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
+
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
+
msgstr "Шаблон ссылки на вложение (когда ссылка на вложение некликабельна)."
|
356 |
+
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
361 |
+
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
+
msgstr "<a title=\"Перейти к %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
+
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
+
msgid "%htitle%"
|
366 |
+
msgstr "%htitle%"
|
367 |
+
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
+
msgid "%s Template"
|
370 |
+
msgstr "%s Шаблон"
|
371 |
+
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
+
msgid "The template for %s breadcrumbs."
|
374 |
+
msgstr "Шаблон для %s пути."
|
375 |
+
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
+
msgid "%s Template (Unlinked)"
|
378 |
+
msgstr "%s Шаблон (некликабельная)"
|
379 |
+
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
+
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
+
msgstr "Шаблон для %s пути (когда %s путь некликабелен)."
|
383 |
+
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
+
msgid "%s Root Page"
|
386 |
+
msgstr "%s Главная страница"
|
387 |
+
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
+
msgid "— Select —"
|
390 |
+
msgstr "— Выбор —"
|
391 |
+
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
+
msgid "%s Archive Display"
|
394 |
+
msgstr "%s Архив"
|
395 |
+
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
+
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
+
msgstr "Показывать путь для %s архивов типов записей."
|
399 |
+
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
+
msgid "%s Taxonomy Display"
|
402 |
+
msgstr "%s Таксономия"
|
403 |
+
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
+
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
+
msgstr "Показывать путь для %s таксономий."
|
407 |
+
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
+
msgid "%s Taxonomy"
|
410 |
+
msgstr "%s Таксономия"
|
411 |
+
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
+
msgid "Categories & Tags"
|
414 |
+
msgstr "Рубрики & Метки"
|
415 |
+
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
+
msgid "Category Template"
|
418 |
+
msgstr "Шаблон ссылки на рубрику"
|
419 |
+
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
+
msgid "The template for category breadcrumbs."
|
422 |
+
msgstr "Шаблон ссылки на рубрику."
|
423 |
+
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
+
msgid "Category Template (Unlinked)"
|
426 |
+
msgstr "Шаблон ссылки на рубрику (некликабельная)"
|
427 |
+
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
+
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
+
msgstr "Шаблон ссылки на рубрику (когда ссылка на рубрику некликабельна)."
|
431 |
+
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
+
msgid "Tag Template"
|
434 |
+
msgstr "Шаблон ссылки на метку"
|
435 |
+
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
+
msgid "The template for tag breadcrumbs."
|
438 |
+
msgstr "Шаблон ссылки на метку."
|
439 |
+
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
+
msgid "Tag Template (Unlinked)"
|
442 |
+
msgstr "Шаблон ссылки на метку (некликабельная)"
|
443 |
+
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
+
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
+
msgstr "Шаблон ссылки на метку (когда ссылка на метку некликабельна)."
|
447 |
+
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
+
msgid "Miscellaneous"
|
450 |
+
msgstr "Другое"
|
451 |
+
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
+
msgid "Author Template"
|
454 |
+
msgstr "Шаблон ссылки на автора"
|
455 |
+
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
+
msgid "The template for author breadcrumbs."
|
458 |
+
msgstr "Шаблон ссылки на автора."
|
459 |
+
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
+
msgid "Author Template (Unlinked)"
|
462 |
+
msgstr "Шаблон ссылки на автора (некликабельная)"
|
463 |
+
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
+
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
+
msgstr "Шаблон ссылки на автора (когда ссылка на автора некликабельна)."
|
467 |
+
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
+
msgid "Author Display Format"
|
470 |
+
msgstr "Формат имени автора"
|
471 |
+
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
+
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."
|
474 |
+
msgstr "display_name отображает имя автора так, как указано у него в профиле в опции \"Отображать как\"."
|
475 |
+
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
+
msgid "Date Template"
|
478 |
+
msgstr "Шаблон ссылки на архив по дате"
|
479 |
+
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
+
msgid "The template for date breadcrumbs."
|
482 |
+
msgstr "Шаблон ссылки на архив по дате."
|
483 |
+
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
+
msgid "Date Template (Unlinked)"
|
486 |
+
msgstr "Шаблон ссылки на архив по дате (некликабельная)"
|
487 |
+
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
+
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
+
msgstr "Шаблон ссылки на архив по дате (когда ссылка на архив по дате некликабельна)."
|
491 |
+
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
+
msgid "Search Template"
|
494 |
+
msgstr "Шаблон ссылки на страницу с результатами поиска"
|
495 |
+
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
+
msgstr "Шаблон ссылки на страницу с результатами поиска (используется только, когда страница с результатами поиска разделена постраничной навигацией)."
|
499 |
+
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
+
msgid "Search Template (Unlinked)"
|
502 |
+
msgstr "Шаблон ссылки на страницу с результатами поиска (некликабельная)"
|
503 |
+
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
+
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
+
msgstr "Шаблон ссылки на страницу с результатами поиска (когда страница с результатами поиска разделена постраничной навигацией и когда ссылка на страницу с результатами поиска некликабельна)."
|
507 |
+
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
+
msgid "404 Title"
|
510 |
+
msgstr "Страница 404 (не найдено)"
|
511 |
+
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
+
msgid "404 Template"
|
514 |
+
msgstr "Шаблон текста для 404 страницы"
|
515 |
+
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
+
msgid "The template for 404 breadcrumbs."
|
518 |
+
msgstr "Шаблон текста в пути для 404 страницы."
|
519 |
+
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
+
msgid "Save Changes"
|
522 |
+
msgstr "Сохранить изменения"
|
languages/breadcrumb-navxt-sv_SE.mo
CHANGED
Binary file
|
languages/breadcrumb-navxt-sv_SE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2012-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,700 +10,513 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
13 |
-
#: breadcrumb_navxt_widget.php:32
|
14 |
-
msgid "Adds a breadcrumb trail to your sidebar"
|
15 |
-
msgstr "Lägger till breadcrumb till din sidebar"
|
16 |
-
|
17 |
#: breadcrumb_navxt_widget.php:93
|
18 |
-
msgid "
|
19 |
-
msgstr "
|
20 |
|
21 |
-
#: breadcrumb_navxt_widget.php:
|
22 |
-
msgid "
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: breadcrumb_navxt_widget.php:
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#: breadcrumb_navxt_widget.php:
|
38 |
msgid "Plain"
|
39 |
msgstr "Simpel"
|
40 |
|
41 |
-
#: breadcrumb_navxt_widget.php:
|
42 |
msgid "Link the breadcrumbs"
|
43 |
msgstr "Länka Breadcrumb"
|
44 |
|
45 |
-
#: breadcrumb_navxt_widget.php:
|
46 |
msgid "Reverse the order of the trail"
|
47 |
msgstr "Omvänd ordning i breadcrumb"
|
48 |
|
49 |
-
#: breadcrumb_navxt_widget.php:
|
50 |
msgid "Hide the trail on the front page"
|
51 |
msgstr "Göm spåret på förstasidan"
|
52 |
|
53 |
-
#: breadcrumb_navxt_admin.php:
|
54 |
-
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %s, Breadcrumb NavXT requires %s"
|
55 |
-
msgstr "Din PHP version är för gammal, varvänlig och uppgradera till en nyare version. Din version är %s, Breadcrumb NavXT kräver %s"
|
56 |
-
|
57 |
-
#: breadcrumb_navxt_admin.php:113
|
58 |
msgid "Insufficient privileges to proceed."
|
59 |
msgstr "Otillräcklig privilegier för att fortsätta."
|
60 |
|
61 |
-
#: breadcrumb_navxt_admin.php:
|
62 |
msgid "Tips for the settings are located below select options."
|
63 |
msgstr "Tips för inställningarna finns under varje val."
|
64 |
|
65 |
-
#: breadcrumb_navxt_admin.php:
|
66 |
msgid "Resources"
|
67 |
msgstr "Resurser"
|
68 |
|
69 |
-
#: breadcrumb_navxt_admin.php:
|
70 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
71 |
msgstr "%sTutorials och guider%s: Det finns flera guider och tutorials tillgängliga på skaparens hemsida."
|
72 |
|
73 |
-
#: breadcrumb_navxt_admin.php:
|
74 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
75 |
msgstr "Gå till Breadcrumb NavXT tagg arkiv"
|
76 |
|
77 |
-
#: breadcrumb_navxt_admin.php:
|
78 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
79 |
msgstr "%sOnline dokumentation%s: Kolla dokumentationen för mer teknisk information."
|
80 |
|
81 |
-
#: breadcrumb_navxt_admin.php:
|
82 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
83 |
msgstr "Gå till Breadcrumb NavXT online dokumentation"
|
84 |
|
85 |
-
#: breadcrumb_navxt_admin.php:
|
86 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
87 |
msgstr "%SRapportera en bug%s: Om du tror att du hittat en bug, var vänlig och inkludera WordPress version och detaljer hur man återskapar buggen"
|
88 |
|
89 |
-
#: breadcrumb_navxt_admin.php:
|
90 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
91 |
msgstr "Gå till Breadcrumb NavXT support och skicka din version."
|
92 |
|
93 |
-
#: breadcrumb_navxt_admin.php:
|
94 |
msgid "Giving Back"
|
95 |
msgstr "Ge tillbaka"
|
96 |
|
97 |
-
#: breadcrumb_navxt_admin.php:
|
98 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
99 |
msgstr "%sDonera%s: Gillar du Breadcrumb NavXT och vill hjälpa utvecklingen? Överväg att köpa skaparen en öl. "
|
100 |
|
101 |
-
#: breadcrumb_navxt_admin.php:
|
102 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
103 |
msgstr "Gå till PayPal för att donera till Breadcrumb NavXT."
|
104 |
|
105 |
-
#: breadcrumb_navxt_admin.php:
|
106 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
107 |
msgstr "%sÖversätt%s: Finns inte ditt språk? Kontakta John Havlik om översättning."
|
108 |
|
109 |
-
#: breadcrumb_navxt_admin.php:
|
110 |
msgid "General"
|
111 |
msgstr "Allmänt"
|
112 |
|
113 |
-
#: breadcrumb_navxt_admin.php:
|
114 |
msgid "For the settings on this page to take effect, you must either use the included Breadcrumb NavXT widget, or place either of the code sections below into your theme."
|
115 |
msgstr "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."
|
116 |
|
117 |
-
#: breadcrumb_navxt_admin.php:
|
118 |
msgid "Breadcrumb trail with separators"
|
119 |
msgstr "Breadcrumb spår med separator"
|
120 |
|
121 |
-
#: breadcrumb_navxt_admin.php:
|
122 |
msgid "Breadcrumb trail in list form"
|
123 |
msgstr "Breadcrumb spår i list form"
|
124 |
|
125 |
-
#: breadcrumb_navxt_admin.php:
|
126 |
msgid "Quick Start"
|
127 |
msgstr "Snabbstart"
|
128 |
|
129 |
-
#: breadcrumb_navxt_admin.php:
|
130 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
131 |
msgstr "Vid användning av koden från \"Snabb start\" sektionen ovan, följande CSS kan användas som bas för att styla ditt breadcrumb spår."
|
132 |
|
133 |
-
#: breadcrumb_navxt_admin.php:
|
134 |
msgid "Styling"
|
135 |
msgstr "Styling"
|
136 |
|
137 |
-
#: breadcrumb_navxt_admin.php:
|
138 |
msgid "Import/Export/Reset"
|
139 |
msgstr "Importera/Exportera/Återställ"
|
140 |
|
141 |
-
#: breadcrumb_navxt_admin.php:
|
142 |
msgid "Import"
|
143 |
msgstr "Importera"
|
144 |
|
145 |
-
#: breadcrumb_navxt_admin.php:
|
146 |
msgid "Export"
|
147 |
msgstr "Exportera"
|
148 |
|
149 |
-
#: breadcrumb_navxt_admin.php:
|
150 |
msgid "Reset"
|
151 |
msgstr "Återställ"
|
152 |
|
153 |
-
#: breadcrumb_navxt_admin.php:
|
154 |
msgid "Breadcrumb NavXT Settings"
|
155 |
msgstr "Breadcrumb NavXT Inställningar"
|
156 |
|
157 |
-
#: breadcrumb_navxt_admin.php:
|
158 |
msgid "Breadcrumb Separator"
|
159 |
msgstr "Breadcrumb separator"
|
160 |
|
161 |
-
#: breadcrumb_navxt_admin.php:
|
162 |
msgid "Placed in between each breadcrumb."
|
163 |
msgstr "Placeras i mellan varje breadcrumb."
|
164 |
|
165 |
-
#: breadcrumb_navxt_admin.php:
|
166 |
msgid "Breadcrumb Max Title Length"
|
167 |
msgstr "Breadcrumb max titel längd"
|
168 |
|
169 |
-
#: breadcrumb_navxt_admin.php:
|
170 |
msgid "Home Breadcrumb"
|
171 |
msgstr "Hem Breadcrumb"
|
172 |
|
173 |
-
#: breadcrumb_navxt_admin.php:
|
174 |
msgid "Place the home breadcrumb in the trail."
|
175 |
msgstr "Placera hem breadcrumb i spåret."
|
176 |
|
177 |
-
#: breadcrumb_navxt_admin.php:
|
178 |
msgid "Home Title: "
|
179 |
msgstr "Hem titel: "
|
180 |
|
181 |
-
#: breadcrumb_navxt_admin.php:
|
182 |
msgid "Home Template"
|
183 |
msgstr "Hem mall"
|
184 |
|
185 |
-
#: breadcrumb_navxt_admin.php:
|
186 |
msgid "The template for the home breadcrumb."
|
187 |
msgstr "Mallen för hem breadcrumb."
|
188 |
|
189 |
-
#: breadcrumb_navxt_admin.php:
|
190 |
msgid "Home Template (Unlinked)"
|
191 |
msgstr "Hem mall (olänkad)"
|
192 |
|
193 |
-
#: breadcrumb_navxt_admin.php:
|
194 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
195 |
msgstr "Mallen för hem breadcrumb, används när breadcrumb inte är länkat."
|
196 |
|
197 |
-
#: breadcrumb_navxt_admin.php:
|
198 |
msgid "Blog Breadcrumb"
|
199 |
msgstr "Blogg breadcrumb"
|
200 |
|
201 |
-
#: breadcrumb_navxt_admin.php:
|
202 |
msgid "Place the blog breadcrumb in the trail."
|
203 |
msgstr "Placera blogg breadcrumb i spåret."
|
204 |
|
205 |
-
#: breadcrumb_navxt_admin.php:
|
206 |
msgid "Blog Template"
|
207 |
msgstr "Blogg mall"
|
208 |
|
209 |
-
#: breadcrumb_navxt_admin.php:
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
211 |
msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida."
|
212 |
|
213 |
-
#: breadcrumb_navxt_admin.php:
|
214 |
msgid "Blog Template (Unlinked)"
|
215 |
msgstr "Blogg mall (olänkad)"
|
216 |
|
217 |
-
#: breadcrumb_navxt_admin.php:
|
218 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
219 |
msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida och när den inte är länkad."
|
220 |
|
221 |
-
#: breadcrumb_navxt_admin.php:
|
222 |
msgid "Main Site Breadcrumb"
|
223 |
msgstr "Huvudsidans Breadcrumb"
|
224 |
|
225 |
-
#: breadcrumb_navxt_admin.php:
|
226 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
227 |
msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
|
228 |
|
229 |
-
#: breadcrumb_navxt_admin.php:
|
230 |
msgid "Main Site Home Title: "
|
231 |
msgstr "Huvudsidans hem titel: "
|
232 |
|
233 |
-
#: breadcrumb_navxt_admin.php:
|
234 |
msgid "Main Site Home Template"
|
235 |
msgstr "Huvudsidans hem mall"
|
236 |
|
237 |
-
#: breadcrumb_navxt_admin.php:
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
239 |
msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite."
|
240 |
|
241 |
-
#: breadcrumb_navxt_admin.php:
|
242 |
msgid "Main Site Home Template (Unlinked)"
|
243 |
msgstr "Huvudsidans hem mall (olänkad) "
|
244 |
|
245 |
-
#: breadcrumb_navxt_admin.php:
|
246 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
247 |
msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite och inte länkad."
|
248 |
|
249 |
-
#: breadcrumb_navxt_admin.php:
|
250 |
msgid "Current Item"
|
251 |
msgstr "Nuvarande punkt"
|
252 |
|
253 |
-
#: breadcrumb_navxt_admin.php:
|
254 |
msgid "Link Current Item"
|
255 |
msgstr "Länk Nuvarande punkt"
|
256 |
|
257 |
-
#: breadcrumb_navxt_admin.php:
|
258 |
msgid "Yes"
|
259 |
msgstr "Ja"
|
260 |
|
261 |
-
#: breadcrumb_navxt_admin.php:
|
262 |
-
msgid "Current Item Template"
|
263 |
-
msgstr "Nuvarande punktens mall"
|
264 |
-
|
265 |
-
#: breadcrumb_navxt_admin.php:370
|
266 |
-
msgid "The template for current item breadcrumbs."
|
267 |
-
msgstr "Mallen för nuvarande punkts breadcrumb."
|
268 |
-
|
269 |
-
#: breadcrumb_navxt_admin.php:371
|
270 |
-
msgid "Current Item Template (Unlinked)"
|
271 |
-
msgstr "Aktuell mall (olänkad)"
|
272 |
-
|
273 |
-
#: breadcrumb_navxt_admin.php:371
|
274 |
-
msgid "The template for current item breadcrumbs, used only when the breadcrumb is not linked."
|
275 |
-
msgstr "Mallen för nuvarande punks breadcrumb, används endast när den inte är länkad."
|
276 |
-
|
277 |
-
#: breadcrumb_navxt_admin.php:372
|
278 |
msgid "Paged Breadcrumb"
|
279 |
msgstr "Flersidig breadcrumb"
|
280 |
|
281 |
-
#: breadcrumb_navxt_admin.php:
|
282 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
283 |
msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
|
284 |
|
285 |
-
#: breadcrumb_navxt_admin.php:
|
286 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
287 |
msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
|
288 |
|
289 |
-
#: breadcrumb_navxt_admin.php:
|
290 |
msgid "Paged Template"
|
291 |
msgstr "Flersidig mall"
|
292 |
|
293 |
-
#: breadcrumb_navxt_admin.php:
|
294 |
msgid "The template for paged breadcrumbs."
|
295 |
msgstr "Mallen för fler sido breadcrumbs."
|
296 |
|
297 |
-
#: breadcrumb_navxt_admin.php:
|
298 |
msgid "Posts & Pages"
|
299 |
msgstr "Inlägg & Sidor"
|
300 |
|
301 |
-
#: breadcrumb_navxt_admin.php:
|
302 |
msgid "Post Template"
|
303 |
msgstr "Inläggs mall"
|
304 |
|
305 |
-
#: breadcrumb_navxt_admin.php:
|
306 |
msgid "The template for post breadcrumbs."
|
307 |
msgstr "Mallen för inlägg breadcrumb."
|
308 |
|
309 |
-
#: breadcrumb_navxt_admin.php:
|
310 |
msgid "Post Template (Unlinked)"
|
311 |
msgstr "Inläggs mall (olänkad)"
|
312 |
|
313 |
-
#: breadcrumb_navxt_admin.php:
|
314 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
315 |
msgstr "Mallen för inläggs breadcrumbs, använd endast då den inte är länkad."
|
316 |
|
317 |
-
#: breadcrumb_navxt_admin.php:
|
318 |
msgid "Post Taxonomy Display"
|
319 |
msgstr "Inläggs taxonomi visning"
|
320 |
|
321 |
-
#: breadcrumb_navxt_admin.php:
|
322 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
323 |
msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
|
324 |
|
325 |
-
#: breadcrumb_navxt_admin.php:
|
326 |
msgid "Post Taxonomy"
|
327 |
msgstr "Inäggs taxonomi"
|
328 |
|
329 |
-
#: breadcrumb_navxt_admin.php:
|
330 |
msgid "Categories"
|
331 |
msgstr "Kategorier"
|
332 |
|
333 |
-
#: breadcrumb_navxt_admin.php:
|
334 |
msgid "Dates"
|
335 |
msgstr "Datum"
|
336 |
|
337 |
-
#: breadcrumb_navxt_admin.php:
|
338 |
msgid "Tags"
|
339 |
msgstr "Taggar"
|
340 |
|
341 |
-
#: breadcrumb_navxt_admin.php:
|
342 |
msgid "Pages"
|
343 |
msgstr "Sidor"
|
344 |
|
345 |
-
#: breadcrumb_navxt_admin.php:
|
346 |
msgid "The taxonomy which the breadcrumb trail will show."
|
347 |
msgstr "Den taxonomi som breadcrumb kommer att visa."
|
348 |
|
349 |
-
#: breadcrumb_navxt_admin.php:
|
350 |
msgid "Page Template"
|
351 |
msgstr "Sidmall"
|
352 |
|
353 |
-
#: breadcrumb_navxt_admin.php:
|
354 |
msgid "The template for page breadcrumbs."
|
355 |
msgstr "Mallen för sido breadcrumbs."
|
356 |
|
357 |
-
#: breadcrumb_navxt_admin.php:
|
358 |
msgid "Page Template (Unlinked)"
|
359 |
msgstr "Sidmall (olänkad)"
|
360 |
|
361 |
-
#: breadcrumb_navxt_admin.php:
|
362 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
363 |
msgstr "Mallen för sido breadcrumbs, endast då den inte är länkad."
|
364 |
|
365 |
-
#: breadcrumb_navxt_admin.php:
|
366 |
msgid "Attachment Template"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: breadcrumb_navxt_admin.php:
|
370 |
msgid "The template for attachment breadcrumbs."
|
371 |
msgstr "Mallen för attachments breadcrumbs."
|
372 |
|
373 |
-
#: breadcrumb_navxt_admin.php:
|
374 |
msgid "Attachment Template (Unlinked)"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: breadcrumb_navxt_admin.php:
|
378 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
379 |
msgstr "Mallen för attachments breadcrumbs, endast då den inte är länkad."
|
380 |
|
381 |
-
#: breadcrumb_navxt_admin.php:
|
382 |
-
#: breadcrumb_navxt_class.php:
|
383 |
-
#: breadcrumb_navxt_class.php:
|
384 |
-
#: breadcrumb_navxt_class.php:
|
385 |
-
#: breadcrumb_navxt_class.php:259
|
386 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
387 |
msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">%htitle%</a>"
|
388 |
|
389 |
-
#: breadcrumb_navxt_admin.php:
|
390 |
msgid "%htitle%"
|
391 |
msgstr "%htitle%"
|
392 |
|
393 |
-
#: breadcrumb_navxt_admin.php:
|
394 |
msgid "%s Template"
|
395 |
msgstr "%s mall"
|
396 |
|
397 |
-
#: breadcrumb_navxt_admin.php:
|
398 |
msgid "The template for %s breadcrumbs."
|
399 |
msgstr "Mallen för %s breadcrumbs."
|
400 |
|
401 |
-
#: breadcrumb_navxt_admin.php:
|
402 |
msgid "%s Template (Unlinked)"
|
403 |
msgstr "%s mall (olänkad)"
|
404 |
|
405 |
-
#: breadcrumb_navxt_admin.php:
|
406 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
407 |
msgstr "Mallen för %s breadcrumb, används endast när den inte är länkad."
|
408 |
|
409 |
-
#: breadcrumb_navxt_admin.php:
|
410 |
msgid "%s Root Page"
|
411 |
msgstr "%s rotsida"
|
412 |
|
413 |
-
#: breadcrumb_navxt_admin.php:
|
414 |
msgid "— Select —"
|
415 |
msgstr "— Välj —"
|
416 |
|
417 |
-
#: breadcrumb_navxt_admin.php:
|
418 |
msgid "%s Archive Display"
|
419 |
msgstr "%s arkiv visning"
|
420 |
|
421 |
-
#: breadcrumb_navxt_admin.php:
|
422 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
423 |
msgstr "Visa breadcrumb för %s post typs arkiv i breadcrumb spåret."
|
424 |
|
425 |
-
#: breadcrumb_navxt_admin.php:
|
426 |
msgid "%s Taxonomy Display"
|
427 |
msgstr "%s Ttaxonomi visning"
|
428 |
|
429 |
-
#: breadcrumb_navxt_admin.php:
|
430 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
431 |
msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
|
432 |
|
433 |
-
#: breadcrumb_navxt_admin.php:
|
434 |
msgid "%s Taxonomy"
|
435 |
msgstr "%s Taxonomi"
|
436 |
|
437 |
-
#: breadcrumb_navxt_admin.php:
|
438 |
msgid "Categories & Tags"
|
439 |
msgstr "Kategorier & Taggar"
|
440 |
|
441 |
-
#: breadcrumb_navxt_admin.php:
|
442 |
msgid "Category Template"
|
443 |
msgstr "Kategori mall"
|
444 |
|
445 |
-
#: breadcrumb_navxt_admin.php:
|
446 |
msgid "The template for category breadcrumbs."
|
447 |
msgstr "Mallen för kategori breadcrumbs"
|
448 |
|
449 |
-
#: breadcrumb_navxt_admin.php:
|
450 |
msgid "Category Template (Unlinked)"
|
451 |
msgstr "Kategori mall (olänkad)"
|
452 |
|
453 |
-
#: breadcrumb_navxt_admin.php:
|
454 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
455 |
msgstr "Mallen för kategori breadcrumb, används endast då den inte är länkad."
|
456 |
|
457 |
-
#: breadcrumb_navxt_admin.php:
|
458 |
msgid "Tag Template"
|
459 |
msgstr "Tagg mall"
|
460 |
|
461 |
-
#: breadcrumb_navxt_admin.php:
|
462 |
msgid "The template for tag breadcrumbs."
|
463 |
msgstr "Mallen för tagg breadcrumbs."
|
464 |
|
465 |
-
#: breadcrumb_navxt_admin.php:
|
466 |
msgid "Tag Template (Unlinked)"
|
467 |
msgstr "Tagg mall (olänkad)"
|
468 |
|
469 |
-
#: breadcrumb_navxt_admin.php:
|
470 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
471 |
msgstr "Mallen för tagg breadcrumb, används endast när den inte är länkad."
|
472 |
|
473 |
-
#: breadcrumb_navxt_admin.php:
|
474 |
msgid "Miscellaneous"
|
475 |
msgstr "Diverse"
|
476 |
|
477 |
-
#: breadcrumb_navxt_admin.php:
|
478 |
msgid "Author Template"
|
479 |
msgstr "Författar mall"
|
480 |
|
481 |
-
#: breadcrumb_navxt_admin.php:
|
482 |
msgid "The template for author breadcrumbs."
|
483 |
msgstr "Mallen för kategori breadcrumbs"
|
484 |
|
485 |
-
#: breadcrumb_navxt_admin.php:
|
486 |
msgid "Author Template (Unlinked)"
|
487 |
msgstr "Författar mall (olänkad)"
|
488 |
|
489 |
-
#: breadcrumb_navxt_admin.php:
|
490 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
491 |
msgstr "Mallen för författar breadcrumb, används endast när den inte är länkad."
|
492 |
|
493 |
-
#: breadcrumb_navxt_admin.php:
|
494 |
msgid "Author Display Format"
|
495 |
msgstr "Författar visnings format"
|
496 |
|
497 |
-
#: breadcrumb_navxt_admin.php:
|
498 |
msgid "display_name uses the name specified in \"Display name publicly as\" under the user profile the others correspond to options in the user profile."
|
499 |
msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
|
500 |
|
501 |
-
#: breadcrumb_navxt_admin.php:
|
502 |
msgid "Date Template"
|
503 |
msgstr "Datum mall"
|
504 |
|
505 |
-
#: breadcrumb_navxt_admin.php:
|
506 |
msgid "The template for date breadcrumbs."
|
507 |
msgstr "Mallen för datum breadcrumbs."
|
508 |
|
509 |
-
#: breadcrumb_navxt_admin.php:
|
510 |
msgid "Date Template (Unlinked)"
|
511 |
msgstr "Datum mall (olänkad)"
|
512 |
|
513 |
-
#: breadcrumb_navxt_admin.php:
|
514 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
515 |
msgstr "Mallen för datum breadcrumb, används endast när den inte är länkad."
|
516 |
|
517 |
-
#: breadcrumb_navxt_admin.php:
|
518 |
msgid "Search Template"
|
519 |
msgstr "Sök mall"
|
520 |
|
521 |
-
#: breadcrumb_navxt_admin.php:
|
522 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
523 |
msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
|
524 |
|
525 |
-
#: breadcrumb_navxt_admin.php:
|
526 |
msgid "Search Template (Unlinked)"
|
527 |
msgstr "Sök mall (olänkad)"
|
528 |
|
529 |
-
#: breadcrumb_navxt_admin.php:
|
530 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
531 |
msgstr "Mallen för sök breadcrumb, används endast när sökresultaten täcker flera sidor och den inte är länkad."
|
532 |
|
533 |
-
#: breadcrumb_navxt_admin.php:
|
534 |
msgid "404 Title"
|
535 |
msgstr "404 Titel"
|
536 |
|
537 |
-
#: breadcrumb_navxt_admin.php:
|
538 |
msgid "404 Template"
|
539 |
msgstr "404 Mall"
|
540 |
|
541 |
-
#: breadcrumb_navxt_admin.php:
|
542 |
msgid "The template for 404 breadcrumbs."
|
543 |
msgstr "Mallen för 404 breadcrumbs."
|
544 |
|
545 |
-
#: breadcrumb_navxt_admin.php:
|
546 |
msgid "Save Changes"
|
547 |
-
msgstr "Spara ändringar"
|
548 |
-
|
549 |
-
#: includes/mtekk_adminkit.php:201
|
550 |
-
msgid "Settings"
|
551 |
-
msgstr "Inställningar"
|
552 |
-
|
553 |
-
#: includes/mtekk_adminkit.php:271
|
554 |
-
msgid "Your settings are out of date."
|
555 |
-
msgstr "Dina inställningar är föråldrade."
|
556 |
-
|
557 |
-
#: includes/mtekk_adminkit.php:271
|
558 |
-
msgid "Migrate the settings now."
|
559 |
-
msgstr "Migrera inställningarna nu."
|
560 |
-
|
561 |
-
#: includes/mtekk_adminkit.php:271
|
562 |
-
msgid "Migrate now."
|
563 |
-
msgstr "Migrera nu."
|
564 |
-
|
565 |
-
#: includes/mtekk_adminkit.php:279
|
566 |
-
msgid "Your plugin install is incomplete."
|
567 |
-
msgstr "Installationen är inte klar."
|
568 |
-
|
569 |
-
#: includes/mtekk_adminkit.php:279
|
570 |
-
msgid "Load default settings now."
|
571 |
-
msgstr "Ladda default inställningarna nu."
|
572 |
-
|
573 |
-
#: includes/mtekk_adminkit.php:279
|
574 |
-
msgid "Complete now."
|
575 |
-
msgstr "Färdigställ nu."
|
576 |
-
|
577 |
-
#: includes/mtekk_adminkit.php:287
|
578 |
-
msgid "Your plugin settings are invalid."
|
579 |
-
msgstr "Dina inställningar är ogiltiga."
|
580 |
-
|
581 |
-
#: includes/mtekk_adminkit.php:287
|
582 |
-
msgid "Attempt to fix settings now."
|
583 |
-
msgstr "Försök fixa inställningarna nu."
|
584 |
-
|
585 |
-
#: includes/mtekk_adminkit.php:287
|
586 |
-
msgid "Fix now."
|
587 |
-
msgstr "Fixa nu."
|
588 |
-
|
589 |
-
#: includes/mtekk_adminkit.php:463
|
590 |
-
msgid "Settings successfully saved."
|
591 |
-
msgstr "Inställningarna sparade."
|
592 |
-
|
593 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
594 |
-
msgid "Undo the options save."
|
595 |
-
msgstr "Ångra sparade inställningar."
|
596 |
-
|
597 |
-
#: includes/mtekk_adminkit.php:463 includes/mtekk_adminkit.php:468
|
598 |
-
#: includes/mtekk_adminkit.php:573 includes/mtekk_adminkit.php:597
|
599 |
-
#: includes/mtekk_adminkit.php:614
|
600 |
-
msgid "Undo"
|
601 |
-
msgstr "Ångra"
|
602 |
-
|
603 |
-
#: includes/mtekk_adminkit.php:468
|
604 |
-
msgid "Some settings were not saved."
|
605 |
-
msgstr "Vissa inställningar sparades inte."
|
606 |
-
|
607 |
-
#: includes/mtekk_adminkit.php:469
|
608 |
-
msgid "The following settings were not saved:"
|
609 |
-
msgstr "Följande inställningar sparades inte:"
|
610 |
-
|
611 |
-
#: includes/mtekk_adminkit.php:474
|
612 |
-
msgid "Please include this message in your %sbug report%s."
|
613 |
-
msgstr "Var vänlig och inkludera detta meddelande i din %sbug rapport%s."
|
614 |
-
|
615 |
-
#: includes/mtekk_adminkit.php:474
|
616 |
-
msgid "Go to the %s support post for your version."
|
617 |
-
msgstr "Gå till %s support och skicka din version."
|
618 |
-
|
619 |
-
#: includes/mtekk_adminkit.php:573
|
620 |
-
msgid "Settings successfully imported from the uploaded file."
|
621 |
-
msgstr "Inställningarna importerades framgångsrikt från filen."
|
622 |
-
|
623 |
-
#: includes/mtekk_adminkit.php:573
|
624 |
-
msgid "Undo the options import."
|
625 |
-
msgstr "Ångra inställnings importeringen."
|
626 |
-
|
627 |
-
#: includes/mtekk_adminkit.php:578
|
628 |
-
msgid "Importing settings from file failed."
|
629 |
-
msgstr "Importering av inställningar från fil misslyckades."
|
630 |
-
|
631 |
-
#: includes/mtekk_adminkit.php:597
|
632 |
-
msgid "Settings successfully reset to the default values."
|
633 |
-
msgstr "Inställningarna återställdes till standardvärdena."
|
634 |
-
|
635 |
-
#: includes/mtekk_adminkit.php:597
|
636 |
-
msgid "Undo the options reset."
|
637 |
-
msgstr "Ångra inställnings återställningen."
|
638 |
-
|
639 |
-
#: includes/mtekk_adminkit.php:614
|
640 |
-
msgid "Settings successfully undid the last operation."
|
641 |
-
msgstr "Inställningarna ogjorde framgångsrikt den senaste åtgärden."
|
642 |
-
|
643 |
-
#: includes/mtekk_adminkit.php:614
|
644 |
-
msgid "Undo the last undo operation."
|
645 |
-
msgstr "Ångra senaste operationen."
|
646 |
-
|
647 |
-
#: includes/mtekk_adminkit.php:649
|
648 |
-
msgid "Settings successfully migrated."
|
649 |
-
msgstr "Inställningarna har migrerats."
|
650 |
-
|
651 |
-
#: includes/mtekk_adminkit.php:656
|
652 |
-
msgid "Default settings successfully installed."
|
653 |
-
msgstr "Default inställningarna sparade."
|
654 |
-
|
655 |
-
#: includes/mtekk_adminkit.php:757
|
656 |
-
msgid "Import settings from a XML file, export the current settings to a XML file, or reset to the default settings."
|
657 |
-
msgstr "Importera inställningar från en XML-fil, exportera de aktuella inställningarna till en XML-fil, eller återställ till standard inställningar."
|
658 |
-
|
659 |
-
#: includes/mtekk_adminkit.php:760
|
660 |
-
msgid "Settings File"
|
661 |
-
msgstr "Inställnings fil"
|
662 |
-
|
663 |
-
#: includes/mtekk_adminkit.php:763
|
664 |
-
msgid "Select a XML settings file to upload and import settings from."
|
665 |
-
msgstr "Välj en XML inställnings fil att ladda upp och importera inställningar från."
|
666 |
-
|
667 |
-
#: breadcrumb_navxt_class.php:203 breadcrumb_navxt_class.php:211
|
668 |
-
msgid "Home"
|
669 |
-
msgstr "Hem"
|
670 |
-
|
671 |
-
#: breadcrumb_navxt_class.php:230
|
672 |
-
msgid "<a title=\"Reload the current page.\" href=\"%link%\">%htitle%</a>"
|
673 |
-
msgstr "<a title=\"Ladda om nuvarande sida.\" href=\"%link%\">%htitle%</a>"
|
674 |
-
|
675 |
-
#: breadcrumb_navxt_class.php:242
|
676 |
-
msgid "Page %htitle%"
|
677 |
-
msgstr "Sid %htitle%"
|
678 |
-
|
679 |
-
#: breadcrumb_navxt_class.php:266
|
680 |
-
msgid "404"
|
681 |
-
msgstr "404"
|
682 |
-
|
683 |
-
#: breadcrumb_navxt_class.php:269
|
684 |
-
msgid "Search results for '<a title=\"Go to the first page of search results for %title%.\" href=\"%link%\">%htitle%</a>'"
|
685 |
-
msgstr "Sök resultat för '<a title=\"Gå till första sökresultatsidan för %title%.\" href=\"%link%\">%htitle%</a>'"
|
686 |
-
|
687 |
-
#: breadcrumb_navxt_class.php:271
|
688 |
-
msgid "Search results for '%htitle%'"
|
689 |
-
msgstr "Sök resultat för '%htitle%'"
|
690 |
-
|
691 |
-
#: breadcrumb_navxt_class.php:274
|
692 |
-
msgid "<a title=\"Go to the %title% tag archives.\" href=\"%link%\">%htitle%</a>"
|
693 |
-
msgstr "<a title=\"Gå till %title% tagg arkiv.\" href=\"%link%\">%htitle%</a>"
|
694 |
-
|
695 |
-
#: breadcrumb_navxt_class.php:279
|
696 |
-
msgid "Articles by: <a title=\"Go to the first page of posts by %title%.\" href=\"%link%\">%htitle%</a>"
|
697 |
-
msgstr "Inlägg av: <a title=\"Gå till första sidan med inlägg i %title%.\" href=\"%link%\">%htitle%</a>"
|
698 |
-
|
699 |
-
#: breadcrumb_navxt_class.php:281
|
700 |
-
msgid "Articles by: %htitle%"
|
701 |
-
msgstr "Inlägg av: %htitle%"
|
702 |
-
|
703 |
-
#: breadcrumb_navxt_class.php:286
|
704 |
-
msgid "<a title=\"Go to the %title% category archives.\" href=\"%link%\">%htitle%</a>"
|
705 |
-
msgstr "<a title=\"Gå till %title% kategorins arkiv.\" href=\"%link%\">%htitle%</a>"
|
706 |
-
|
707 |
-
#: breadcrumb_navxt_class.php:290
|
708 |
-
msgid "<a title=\"Go to the %title% archives.\" href=\"%link%\">%htitle%</a>"
|
709 |
-
msgstr "<a title=\"Gå till %title% arkivet.\" href=\"%link%\">%htitle%</a>"
|
2 |
# This file is distributed under the same license as the Breadcrumb NavXT package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2012-06-06 01:31:20+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/0.1\n"
|
11 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
12 |
|
|
|
|
|
|
|
|
|
13 |
#: breadcrumb_navxt_widget.php:93
|
14 |
+
msgid "Text to show before the trail:"
|
15 |
+
msgstr ""
|
16 |
|
17 |
+
#: breadcrumb_navxt_widget.php:100
|
18 |
+
msgid "Schema.org"
|
19 |
+
msgstr ""
|
20 |
|
21 |
+
#: breadcrumb_navxt_admin.php:227
|
22 |
+
msgid "Go to the Breadcrumb NavXT translation project."
|
23 |
+
msgstr ""
|
24 |
|
25 |
+
#: breadcrumb_navxt_admin.php:36
|
26 |
+
msgid "Your PHP version is too old, please upgrade to a newer version. Your version is %1$s, Breadcrumb NavXT requires %2$s"
|
27 |
+
msgstr ""
|
28 |
|
29 |
+
#: breadcrumb_navxt_widget.php:89
|
30 |
+
msgid "Title:"
|
31 |
+
msgstr "Titel:"
|
32 |
|
33 |
+
#: breadcrumb_navxt_widget.php:101
|
34 |
msgid "Plain"
|
35 |
msgstr "Simpel"
|
36 |
|
37 |
+
#: breadcrumb_navxt_widget.php:106
|
38 |
msgid "Link the breadcrumbs"
|
39 |
msgstr "Länka Breadcrumb"
|
40 |
|
41 |
+
#: breadcrumb_navxt_widget.php:108
|
42 |
msgid "Reverse the order of the trail"
|
43 |
msgstr "Omvänd ordning i breadcrumb"
|
44 |
|
45 |
+
#: breadcrumb_navxt_widget.php:110
|
46 |
msgid "Hide the trail on the front page"
|
47 |
msgstr "Göm spåret på förstasidan"
|
48 |
|
49 |
+
#: breadcrumb_navxt_admin.php:118
|
|
|
|
|
|
|
|
|
50 |
msgid "Insufficient privileges to proceed."
|
51 |
msgstr "Otillräcklig privilegier för att fortsätta."
|
52 |
|
53 |
+
#: breadcrumb_navxt_admin.php:220
|
54 |
msgid "Tips for the settings are located below select options."
|
55 |
msgstr "Tips för inställningarna finns under varje val."
|
56 |
|
57 |
+
#: breadcrumb_navxt_admin.php:221
|
58 |
msgid "Resources"
|
59 |
msgstr "Resurser"
|
60 |
|
61 |
+
#: breadcrumb_navxt_admin.php:222
|
62 |
msgid "%sTutorials and How Tos%s: There are several guides, tutorials, and how tos available on the author's website."
|
63 |
msgstr "%sTutorials och guider%s: Det finns flera guider och tutorials tillgängliga på skaparens hemsida."
|
64 |
|
65 |
+
#: breadcrumb_navxt_admin.php:222
|
66 |
msgid "Go to the Breadcrumb NavXT tag archive."
|
67 |
msgstr "Gå till Breadcrumb NavXT tagg arkiv"
|
68 |
|
69 |
+
#: breadcrumb_navxt_admin.php:223
|
70 |
msgid "%sOnline Documentation%s: Check out the documentation for more indepth technical information."
|
71 |
msgstr "%sOnline dokumentation%s: Kolla dokumentationen för mer teknisk information."
|
72 |
|
73 |
+
#: breadcrumb_navxt_admin.php:223
|
74 |
msgid "Go to the Breadcrumb NavXT online documentation"
|
75 |
msgstr "Gå till Breadcrumb NavXT online dokumentation"
|
76 |
|
77 |
+
#: breadcrumb_navxt_admin.php:224
|
78 |
msgid "%sReport a Bug%s: If you think you have found a bug, please include your WordPress version and details on how to reproduce the bug."
|
79 |
msgstr "%SRapportera en bug%s: Om du tror att du hittat en bug, var vänlig och inkludera WordPress version och detaljer hur man återskapar buggen"
|
80 |
|
81 |
+
#: breadcrumb_navxt_admin.php:224
|
82 |
msgid "Go to the Breadcrumb NavXT support post for your version."
|
83 |
msgstr "Gå till Breadcrumb NavXT support och skicka din version."
|
84 |
|
85 |
+
#: breadcrumb_navxt_admin.php:225
|
86 |
msgid "Giving Back"
|
87 |
msgstr "Ge tillbaka"
|
88 |
|
89 |
+
#: breadcrumb_navxt_admin.php:226
|
90 |
msgid "%sDonate%s: Love Breadcrumb NavXT and want to help development? Consider buying the author a beer."
|
91 |
msgstr "%sDonera%s: Gillar du Breadcrumb NavXT och vill hjälpa utvecklingen? Överväg att köpa skaparen en öl. "
|
92 |
|
93 |
+
#: breadcrumb_navxt_admin.php:226
|
94 |
msgid "Go to PayPal to give a donation to Breadcrumb NavXT."
|
95 |
msgstr "Gå till PayPal för att donera till Breadcrumb NavXT."
|
96 |
|
97 |
+
#: breadcrumb_navxt_admin.php:227
|
98 |
msgid "%sTranslate%s: Is your language not available? Contact John Havlik to get translating."
|
99 |
msgstr "%sÖversätt%s: Finns inte ditt språk? Kontakta John Havlik om översättning."
|
100 |
|
101 |
+
#: breadcrumb_navxt_admin.php:232 breadcrumb_navxt_admin.php:323
|
102 |
msgid "General"
|
103 |
msgstr "Allmänt"
|
104 |
|
105 |
+
#: breadcrumb_navxt_admin.php:235
|
106 |
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."
|
107 |
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."
|
108 |
|
109 |
+
#: breadcrumb_navxt_admin.php:236
|
110 |
msgid "Breadcrumb trail with separators"
|
111 |
msgstr "Breadcrumb spår med separator"
|
112 |
|
113 |
+
#: breadcrumb_navxt_admin.php:242
|
114 |
msgid "Breadcrumb trail in list form"
|
115 |
msgstr "Breadcrumb spår i list form"
|
116 |
|
117 |
+
#: breadcrumb_navxt_admin.php:251
|
118 |
msgid "Quick Start"
|
119 |
msgstr "Snabbstart"
|
120 |
|
121 |
+
#: breadcrumb_navxt_admin.php:254
|
122 |
msgid "Using the code from the Quick Start section above, the following CSS can be used as base for styling your breadcrumb trail."
|
123 |
msgstr "Vid användning av koden från \"Snabb start\" sektionen ovan, följande CSS kan användas som bas för att styla ditt breadcrumb spår."
|
124 |
|
125 |
+
#: breadcrumb_navxt_admin.php:266
|
126 |
msgid "Styling"
|
127 |
msgstr "Styling"
|
128 |
|
129 |
+
#: breadcrumb_navxt_admin.php:272
|
130 |
msgid "Import/Export/Reset"
|
131 |
msgstr "Importera/Exportera/Återställ"
|
132 |
|
133 |
+
#: breadcrumb_navxt_admin.php:296 includes/mtekk_adminkit.php:765
|
134 |
msgid "Import"
|
135 |
msgstr "Importera"
|
136 |
|
137 |
+
#: breadcrumb_navxt_admin.php:297 includes/mtekk_adminkit.php:766
|
138 |
msgid "Export"
|
139 |
msgstr "Exportera"
|
140 |
|
141 |
+
#: breadcrumb_navxt_admin.php:298 includes/mtekk_adminkit.php:767
|
142 |
msgid "Reset"
|
143 |
msgstr "Återställ"
|
144 |
|
145 |
+
#: breadcrumb_navxt_admin.php:311
|
146 |
msgid "Breadcrumb NavXT Settings"
|
147 |
msgstr "Breadcrumb NavXT Inställningar"
|
148 |
|
149 |
+
#: breadcrumb_navxt_admin.php:326
|
150 |
msgid "Breadcrumb Separator"
|
151 |
msgstr "Breadcrumb separator"
|
152 |
|
153 |
+
#: breadcrumb_navxt_admin.php:326
|
154 |
msgid "Placed in between each breadcrumb."
|
155 |
msgstr "Placeras i mellan varje breadcrumb."
|
156 |
|
157 |
+
#: breadcrumb_navxt_admin.php:327
|
158 |
msgid "Breadcrumb Max Title Length"
|
159 |
msgstr "Breadcrumb max titel längd"
|
160 |
|
161 |
+
#: breadcrumb_navxt_admin.php:331
|
162 |
msgid "Home Breadcrumb"
|
163 |
msgstr "Hem Breadcrumb"
|
164 |
|
165 |
+
#: breadcrumb_navxt_admin.php:336
|
166 |
msgid "Place the home breadcrumb in the trail."
|
167 |
msgstr "Placera hem breadcrumb i spåret."
|
168 |
|
169 |
+
#: breadcrumb_navxt_admin.php:341
|
170 |
msgid "Home Title: "
|
171 |
msgstr "Hem titel: "
|
172 |
|
173 |
+
#: breadcrumb_navxt_admin.php:349
|
174 |
msgid "Home Template"
|
175 |
msgstr "Hem mall"
|
176 |
|
177 |
+
#: breadcrumb_navxt_admin.php:349
|
178 |
msgid "The template for the home breadcrumb."
|
179 |
msgstr "Mallen för hem breadcrumb."
|
180 |
|
181 |
+
#: breadcrumb_navxt_admin.php:350
|
182 |
msgid "Home Template (Unlinked)"
|
183 |
msgstr "Hem mall (olänkad)"
|
184 |
|
185 |
+
#: breadcrumb_navxt_admin.php:350
|
186 |
msgid "The template for the home breadcrumb, used when the breadcrumb is not linked."
|
187 |
msgstr "Mallen för hem breadcrumb, används när breadcrumb inte är länkat."
|
188 |
|
189 |
+
#: breadcrumb_navxt_admin.php:351
|
190 |
msgid "Blog Breadcrumb"
|
191 |
msgstr "Blogg breadcrumb"
|
192 |
|
193 |
+
#: breadcrumb_navxt_admin.php:351
|
194 |
msgid "Place the blog breadcrumb in the trail."
|
195 |
msgstr "Placera blogg breadcrumb i spåret."
|
196 |
|
197 |
+
#: breadcrumb_navxt_admin.php:352
|
198 |
msgid "Blog Template"
|
199 |
msgstr "Blogg mall"
|
200 |
|
201 |
+
#: breadcrumb_navxt_admin.php:352
|
202 |
msgid "The template for the blog breadcrumb, used only in static front page environments."
|
203 |
msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida."
|
204 |
|
205 |
+
#: breadcrumb_navxt_admin.php:353
|
206 |
msgid "Blog Template (Unlinked)"
|
207 |
msgstr "Blogg mall (olänkad)"
|
208 |
|
209 |
+
#: breadcrumb_navxt_admin.php:353
|
210 |
msgid "The template for the blog breadcrumb, used only in static front page environments and when the breadcrumb is not linked."
|
211 |
msgstr "Mallen för blogg breadcrumb, används endast vid statisk framsida och när den inte är länkad."
|
212 |
|
213 |
+
#: breadcrumb_navxt_admin.php:357
|
214 |
msgid "Main Site Breadcrumb"
|
215 |
msgstr "Huvudsidans Breadcrumb"
|
216 |
|
217 |
+
#: breadcrumb_navxt_admin.php:362
|
218 |
msgid "Place the main site home breadcrumb in the trail in an multisite setup."
|
219 |
msgstr "Placera huvudsidans hem breadcrumb i spåret i en multisite."
|
220 |
|
221 |
+
#: breadcrumb_navxt_admin.php:367
|
222 |
msgid "Main Site Home Title: "
|
223 |
msgstr "Huvudsidans hem titel: "
|
224 |
|
225 |
+
#: breadcrumb_navxt_admin.php:376
|
226 |
msgid "Main Site Home Template"
|
227 |
msgstr "Huvudsidans hem mall"
|
228 |
|
229 |
+
#: breadcrumb_navxt_admin.php:376
|
230 |
msgid "The template for the main site home breadcrumb, used only in multisite environments."
|
231 |
msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite."
|
232 |
|
233 |
+
#: breadcrumb_navxt_admin.php:377
|
234 |
msgid "Main Site Home Template (Unlinked)"
|
235 |
msgstr "Huvudsidans hem mall (olänkad) "
|
236 |
|
237 |
+
#: breadcrumb_navxt_admin.php:377
|
238 |
msgid "The template for the main site home breadcrumb, used only in multisite environments and when the breadcrumb is not linked."
|
239 |
msgstr "Mallen för huvudsidans hem breadcrumb, används endast i multisite och inte länkad."
|
240 |
|
241 |
+
#: breadcrumb_navxt_admin.php:382
|
242 |
msgid "Current Item"
|
243 |
msgstr "Nuvarande punkt"
|
244 |
|
245 |
+
#: breadcrumb_navxt_admin.php:385
|
246 |
msgid "Link Current Item"
|
247 |
msgstr "Länk Nuvarande punkt"
|
248 |
|
249 |
+
#: breadcrumb_navxt_admin.php:385
|
250 |
msgid "Yes"
|
251 |
msgstr "Ja"
|
252 |
|
253 |
+
#: breadcrumb_navxt_admin.php:386
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Paged Breadcrumb"
|
255 |
msgstr "Flersidig breadcrumb"
|
256 |
|
257 |
+
#: breadcrumb_navxt_admin.php:386
|
258 |
msgid "Include the paged breadcrumb in the breadcrumb trail."
|
259 |
msgstr "Inkludera den paged breadcrumb i breadcrumb spåret."
|
260 |
|
261 |
+
#: breadcrumb_navxt_admin.php:386
|
262 |
msgid "Indicates that the user is on a page other than the first on paginated posts/pages."
|
263 |
msgstr "Betyder att användaren är på en annan sida än den första på ett flersidigt inlägg / sida."
|
264 |
|
265 |
+
#: breadcrumb_navxt_admin.php:387
|
266 |
msgid "Paged Template"
|
267 |
msgstr "Flersidig mall"
|
268 |
|
269 |
+
#: breadcrumb_navxt_admin.php:387
|
270 |
msgid "The template for paged breadcrumbs."
|
271 |
msgstr "Mallen för fler sido breadcrumbs."
|
272 |
|
273 |
+
#: breadcrumb_navxt_admin.php:392
|
274 |
msgid "Posts & Pages"
|
275 |
msgstr "Inlägg & Sidor"
|
276 |
|
277 |
+
#: breadcrumb_navxt_admin.php:395
|
278 |
msgid "Post Template"
|
279 |
msgstr "Inläggs mall"
|
280 |
|
281 |
+
#: breadcrumb_navxt_admin.php:395
|
282 |
msgid "The template for post breadcrumbs."
|
283 |
msgstr "Mallen för inlägg breadcrumb."
|
284 |
|
285 |
+
#: breadcrumb_navxt_admin.php:396
|
286 |
msgid "Post Template (Unlinked)"
|
287 |
msgstr "Inläggs mall (olänkad)"
|
288 |
|
289 |
+
#: breadcrumb_navxt_admin.php:396
|
290 |
msgid "The template for post breadcrumbs, used only when the breadcrumb is not linked."
|
291 |
msgstr "Mallen för inläggs breadcrumbs, använd endast då den inte är länkad."
|
292 |
|
293 |
+
#: breadcrumb_navxt_admin.php:397
|
294 |
msgid "Post Taxonomy Display"
|
295 |
msgstr "Inläggs taxonomi visning"
|
296 |
|
297 |
+
#: breadcrumb_navxt_admin.php:397
|
298 |
msgid "Show the taxonomy leading to a post in the breadcrumb trail."
|
299 |
msgstr "Visa den taxonomi som leder till ett inlägg i breadcrumb spåret."
|
300 |
|
301 |
+
#: breadcrumb_navxt_admin.php:401
|
302 |
msgid "Post Taxonomy"
|
303 |
msgstr "Inäggs taxonomi"
|
304 |
|
305 |
+
#: breadcrumb_navxt_admin.php:405
|
306 |
msgid "Categories"
|
307 |
msgstr "Kategorier"
|
308 |
|
309 |
+
#: breadcrumb_navxt_admin.php:406 breadcrumb_navxt_admin.php:464
|
310 |
msgid "Dates"
|
311 |
msgstr "Datum"
|
312 |
|
313 |
+
#: breadcrumb_navxt_admin.php:407
|
314 |
msgid "Tags"
|
315 |
msgstr "Taggar"
|
316 |
|
317 |
+
#: breadcrumb_navxt_admin.php:408 breadcrumb_navxt_admin.php:465
|
318 |
msgid "Pages"
|
319 |
msgstr "Sidor"
|
320 |
|
321 |
+
#: breadcrumb_navxt_admin.php:419 breadcrumb_navxt_admin.php:476
|
322 |
msgid "The taxonomy which the breadcrumb trail will show."
|
323 |
msgstr "Den taxonomi som breadcrumb kommer att visa."
|
324 |
|
325 |
+
#: breadcrumb_navxt_admin.php:423
|
326 |
msgid "Page Template"
|
327 |
msgstr "Sidmall"
|
328 |
|
329 |
+
#: breadcrumb_navxt_admin.php:423
|
330 |
msgid "The template for page breadcrumbs."
|
331 |
msgstr "Mallen för sido breadcrumbs."
|
332 |
|
333 |
+
#: breadcrumb_navxt_admin.php:424
|
334 |
msgid "Page Template (Unlinked)"
|
335 |
msgstr "Sidmall (olänkad)"
|
336 |
|
337 |
+
#: breadcrumb_navxt_admin.php:424
|
338 |
msgid "The template for page breadcrumbs, used only when the breadcrumb is not linked."
|
339 |
msgstr "Mallen för sido breadcrumbs, endast då den inte är länkad."
|
340 |
|
341 |
+
#: breadcrumb_navxt_admin.php:425
|
342 |
msgid "Attachment Template"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: breadcrumb_navxt_admin.php:425
|
346 |
msgid "The template for attachment breadcrumbs."
|
347 |
msgstr "Mallen för attachments breadcrumbs."
|
348 |
|
349 |
+
#: breadcrumb_navxt_admin.php:426
|
350 |
msgid "Attachment Template (Unlinked)"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: breadcrumb_navxt_admin.php:426
|
354 |
msgid "The template for attachment breadcrumbs, used only when the breadcrumb is not linked."
|
355 |
msgstr "Mallen för attachments breadcrumbs, endast då den inte är länkad."
|
356 |
|
357 |
+
#: breadcrumb_navxt_admin.php:566 breadcrumb_navxt_class.php:56
|
358 |
+
#: breadcrumb_navxt_class.php:205 breadcrumb_navxt_class.php:213
|
359 |
+
#: breadcrumb_navxt_class.php:219 breadcrumb_navxt_class.php:235
|
360 |
+
#: breadcrumb_navxt_class.php:247 breadcrumb_navxt_class.php:259
|
|
|
361 |
msgid "<a title=\"Go to %title%.\" href=\"%link%\">%htitle%</a>"
|
362 |
msgstr "<a title=\"Gå till %title%.\" href=\"%link%\">%htitle%</a>"
|
363 |
|
364 |
+
#: breadcrumb_navxt_admin.php:567
|
365 |
msgid "%htitle%"
|
366 |
msgstr "%htitle%"
|
367 |
|
368 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
369 |
msgid "%s Template"
|
370 |
msgstr "%s mall"
|
371 |
|
372 |
+
#: breadcrumb_navxt_admin.php:442 breadcrumb_navxt_admin.php:507
|
373 |
msgid "The template for %s breadcrumbs."
|
374 |
msgstr "Mallen för %s breadcrumbs."
|
375 |
|
376 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
377 |
msgid "%s Template (Unlinked)"
|
378 |
msgstr "%s mall (olänkad)"
|
379 |
|
380 |
+
#: breadcrumb_navxt_admin.php:443 breadcrumb_navxt_admin.php:508
|
381 |
msgid "The template for %s breadcrumbs, used only when the breadcrumb is not linked."
|
382 |
msgstr "Mallen för %s breadcrumb, används endast när den inte är länkad."
|
383 |
|
384 |
+
#: breadcrumb_navxt_admin.php:448
|
385 |
msgid "%s Root Page"
|
386 |
msgstr "%s rotsida"
|
387 |
|
388 |
+
#: breadcrumb_navxt_admin.php:451
|
389 |
msgid "— Select —"
|
390 |
msgstr "— Välj —"
|
391 |
|
392 |
+
#: breadcrumb_navxt_admin.php:455
|
393 |
msgid "%s Archive Display"
|
394 |
msgstr "%s arkiv visning"
|
395 |
|
396 |
+
#: breadcrumb_navxt_admin.php:455
|
397 |
msgid "Show the breadcrumb for the %s post type archives in the breadcrumb trail."
|
398 |
msgstr "Visa breadcrumb för %s post typs arkiv i breadcrumb spåret."
|
399 |
|
400 |
+
#: breadcrumb_navxt_admin.php:456
|
401 |
msgid "%s Taxonomy Display"
|
402 |
msgstr "%s Ttaxonomi visning"
|
403 |
|
404 |
+
#: breadcrumb_navxt_admin.php:456
|
405 |
msgid "Show the taxonomy leading to a %s in the breadcrumb trail."
|
406 |
msgstr "Visa den taxonomi som leder till /s i breadcrumb spåret."
|
407 |
|
408 |
+
#: breadcrumb_navxt_admin.php:460
|
409 |
msgid "%s Taxonomy"
|
410 |
msgstr "%s Taxonomi"
|
411 |
|
412 |
+
#: breadcrumb_navxt_admin.php:485
|
413 |
msgid "Categories & Tags"
|
414 |
msgstr "Kategorier & Taggar"
|
415 |
|
416 |
+
#: breadcrumb_navxt_admin.php:488
|
417 |
msgid "Category Template"
|
418 |
msgstr "Kategori mall"
|
419 |
|
420 |
+
#: breadcrumb_navxt_admin.php:488
|
421 |
msgid "The template for category breadcrumbs."
|
422 |
msgstr "Mallen för kategori breadcrumbs"
|
423 |
|
424 |
+
#: breadcrumb_navxt_admin.php:489
|
425 |
msgid "Category Template (Unlinked)"
|
426 |
msgstr "Kategori mall (olänkad)"
|
427 |
|
428 |
+
#: breadcrumb_navxt_admin.php:489
|
429 |
msgid "The template for category breadcrumbs, used only when the breadcrumb is not linked."
|
430 |
msgstr "Mallen för kategori breadcrumb, används endast då den inte är länkad."
|
431 |
|
432 |
+
#: breadcrumb_navxt_admin.php:490
|
433 |
msgid "Tag Template"
|
434 |
msgstr "Tagg mall"
|
435 |
|
436 |
+
#: breadcrumb_navxt_admin.php:490
|
437 |
msgid "The template for tag breadcrumbs."
|
438 |
msgstr "Mallen för tagg breadcrumbs."
|
439 |
|
440 |
+
#: breadcrumb_navxt_admin.php:491
|
441 |
msgid "Tag Template (Unlinked)"
|
442 |
msgstr "Tagg mall (olänkad)"
|
443 |
|
444 |
+
#: breadcrumb_navxt_admin.php:491
|
445 |
msgid "The template for tag breadcrumbs, used only when the breadcrumb is not linked."
|
446 |
msgstr "Mallen för tagg breadcrumb, används endast när den inte är länkad."
|
447 |
|
448 |
+
#: breadcrumb_navxt_admin.php:517
|
449 |
msgid "Miscellaneous"
|
450 |
msgstr "Diverse"
|
451 |
|
452 |
+
#: breadcrumb_navxt_admin.php:520
|
453 |
msgid "Author Template"
|
454 |
msgstr "Författar mall"
|
455 |
|
456 |
+
#: breadcrumb_navxt_admin.php:520
|
457 |
msgid "The template for author breadcrumbs."
|
458 |
msgstr "Mallen för kategori breadcrumbs"
|
459 |
|
460 |
+
#: breadcrumb_navxt_admin.php:521
|
461 |
msgid "Author Template (Unlinked)"
|
462 |
msgstr "Författar mall (olänkad)"
|
463 |
|
464 |
+
#: breadcrumb_navxt_admin.php:521
|
465 |
msgid "The template for author breadcrumbs, used only when the breadcrumb is not linked."
|
466 |
msgstr "Mallen för författar breadcrumb, används endast när den inte är länkad."
|
467 |
|
468 |
+
#: breadcrumb_navxt_admin.php:522
|
469 |
msgid "Author Display Format"
|
470 |
msgstr "Författar visnings format"
|
471 |
|
472 |
+
#: breadcrumb_navxt_admin.php:522
|
473 |
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."
|
474 |
msgstr "display_name använder namnet angett i \"Display name publicly as\" enligt användarprofilen andra motsvarar alternativ i användarens profil."
|
475 |
|
476 |
+
#: breadcrumb_navxt_admin.php:523
|
477 |
msgid "Date Template"
|
478 |
msgstr "Datum mall"
|
479 |
|
480 |
+
#: breadcrumb_navxt_admin.php:523
|
481 |
msgid "The template for date breadcrumbs."
|
482 |
msgstr "Mallen för datum breadcrumbs."
|
483 |
|
484 |
+
#: breadcrumb_navxt_admin.php:524
|
485 |
msgid "Date Template (Unlinked)"
|
486 |
msgstr "Datum mall (olänkad)"
|
487 |
|
488 |
+
#: breadcrumb_navxt_admin.php:524
|
489 |
msgid "The template for date breadcrumbs, used only when the breadcrumb is not linked."
|
490 |
msgstr "Mallen för datum breadcrumb, används endast när den inte är länkad."
|
491 |
|
492 |
+
#: breadcrumb_navxt_admin.php:525
|
493 |
msgid "Search Template"
|
494 |
msgstr "Sök mall"
|
495 |
|
496 |
+
#: breadcrumb_navxt_admin.php:525
|
497 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages."
|
498 |
msgstr "Länk mall för sök breadcrumb, används endast när sökresultaten täcker flera sidor."
|
499 |
|
500 |
+
#: breadcrumb_navxt_admin.php:526
|
501 |
msgid "Search Template (Unlinked)"
|
502 |
msgstr "Sök mall (olänkad)"
|
503 |
|
504 |
+
#: breadcrumb_navxt_admin.php:526
|
505 |
msgid "The anchor template for search breadcrumbs, used only when the search results span several pages and the breadcrumb is not linked."
|
506 |
msgstr "Mallen för sök breadcrumb, används endast när sökresultaten täcker flera sidor och den inte är länkad."
|
507 |
|
508 |
+
#: breadcrumb_navxt_admin.php:527
|
509 |
msgid "404 Title"
|
510 |
msgstr "404 Titel"
|
511 |
|
512 |
+
#: breadcrumb_navxt_admin.php:528
|
513 |
msgid "404 Template"
|
514 |
msgstr "404 Mall"
|
515 |
|
516 |
+
#: breadcrumb_navxt_admin.php:528
|
517 |
msgid "The template for 404 breadcrumbs."
|
518 |
msgstr "Mallen för 404 breadcrumbs."
|
519 |
|
520 |
+
#: breadcrumb_navxt_admin.php:533
|
521 |
msgid "Save Changes"
|
522 |
+
msgstr "Spara ändringar"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/{breadcrumb_navxt.mo → breadcrumb-navxt.mo}
RENAMED
Binary file
|
languages/{breadcrumb_navxt.po → breadcrumb-navxt.po}
RENAMED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
5 |
"POT-Creation-Date: 2011-12-03 04:49:09+00:00\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: John Havlik <mtekkmonkey@gmail.com>\n"
|
8 |
"Language-Team: John Havlik <mtekkmonkey@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
3 |
"Project-Id-Version: Breadcrumb NavXT\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/breadcrumb-navxt\n"
|
5 |
"POT-Creation-Date: 2011-12-03 04:49:09+00:00\n"
|
6 |
+
"PO-Revision-Date: 2012-06-05 20:32-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"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: mtekk, hakre
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
Requires at least: 3.2
|
6 |
-
Tested up to: 3.
|
7 |
-
Stable tag: 4.0
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|
10 |
== Description ==
|
@@ -16,18 +16,24 @@ Breadcrumb NavXT, the successor to the popular WordPress plugin Breadcrumb Navig
|
|
16 |
Breadcrumb NavXT distributes with translations for the following languages:
|
17 |
|
18 |
* English - default -
|
19 |
-
*
|
20 |
-
*
|
|
|
|
|
|
|
|
|
21 |
* Estonian by Martin Orn
|
|
|
|
|
22 |
* Azerbaijani by Zaur Bayramov
|
23 |
|
24 |
-
The following
|
|
|
|
|
|
|
25 |
|
26 |
-
|
27 |
-
* French originally maintained by Laurent Grabielle
|
28 |
* Dutch originally maintained by Stan Lenssen
|
29 |
-
* Russian originally maintained by Yuri Gribov
|
30 |
-
* Italian originally maintained by Luca Camellini
|
31 |
* Japanese originally maintained by Kazuhiro Terada
|
32 |
|
33 |
Don't see your language on the list? Stop by [Breadcrumb NavXT's translation project](http://translate.mtekk.us/projects/breadcrumb-navxt "Go to Breadcrumb NavXT's GlotPress based translation project").
|
@@ -37,6 +43,15 @@ Don't see your language on the list? Stop by [Breadcrumb NavXT's translation pro
|
|
37 |
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.
|
38 |
|
39 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
= 4.0.2 =
|
41 |
* New feature: Estonian translation added props to Martin Orn.
|
42 |
* New feature: Azerbaijani translation added props to Zaur Bayramov.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=FD5XEU783BR8U&lc=US&item_name=Breadcrumb%20NavXT%20Donation¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: breadcrumb, breadcrumbs, trail, navigation, menu, widget
|
5 |
Requires at least: 3.2
|
6 |
+
Tested up to: 3.4
|
7 |
+
Stable tag: 4.1.0
|
8 |
Adds breadcrumb navigation showing the visitor's path to their current location.
|
9 |
|
10 |
== Description ==
|
16 |
Breadcrumb NavXT distributes with translations for the following languages:
|
17 |
|
18 |
* English - default -
|
19 |
+
* Russian by Alexander Samsonov
|
20 |
+
* German by Daniel Lang
|
21 |
+
* French (France) by Emmanuel Beziat
|
22 |
+
* Norwegian (Bokm�l) by Jan Rosvoldsve
|
23 |
+
* Spanish (Spain) by Karin Sequen
|
24 |
+
* Portuguese (Portugal) by Lu�s Rodrigues
|
25 |
* Estonian by Martin Orn
|
26 |
+
* Latvian by Martins Dzerve
|
27 |
+
* Swedish by Patrik Spathon
|
28 |
* Azerbaijani by Zaur Bayramov
|
29 |
|
30 |
+
The following were not included, but are in the process of being updated:
|
31 |
+
* Italian by Tamara Balestri
|
32 |
+
* Malay by Ben Di
|
33 |
+
* Hindi by Love Chandel
|
34 |
|
35 |
+
The following translations are in need of a maintainer:
|
|
|
36 |
* Dutch originally maintained by Stan Lenssen
|
|
|
|
|
37 |
* Japanese originally maintained by Kazuhiro Terada
|
38 |
|
39 |
Don't see your language on the list? Stop by [Breadcrumb NavXT's translation project](http://translate.mtekk.us/projects/breadcrumb-navxt "Go to Breadcrumb NavXT's GlotPress based translation project").
|
43 |
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.
|
44 |
|
45 |
== Changelog ==
|
46 |
+
= 4.1.0 =
|
47 |
+
* Behavior change: Made the behavior of posts using flat taxonomies match the behavior of using a hierarchical taxonomy when the post is not assigned a taxonomy term.
|
48 |
+
* New feature: Custom Post Types that are hierarchical can now fall back to a taxonomy if they don�t have a parent.
|
49 |
+
* New feature: Pretext option for the included Widget, allows 'You are here:' type messages in the widget.
|
50 |
+
* Bug fix: Textdomain was changed to the correct one in the widget.
|
51 |
+
* Bug fix: Textdomain was changed from 'breadcrumb_navxt' to 'breadcrumb-navxt' for improved compatibility with the new GlotPress translation flow.
|
52 |
+
* Bug fix: Fixed cause of PHP warnings on empty term archive pages.
|
53 |
+
* Bug fix: Fixed cause of PHP warnings on term archives restricted to a specified post type.
|
54 |
+
* Bug fix: Fixed cause of PHP warnings and improper behavior on author archives if showing the page number in the breadcrumb trail.
|
55 |
= 4.0.2 =
|
56 |
* New feature: Estonian translation added props to Martin Orn.
|
57 |
* New feature: Azerbaijani translation added props to Zaur Bayramov.
|