Version Description
- Updated FAQ with patch instructions for conflicting plugins/themes
- add Italian language. props @sododesign
- add Portugeuse language. props @brunobarros
Download this release
Release Info
Developer | helgatheviking |
Plugin | Nav Menu Roles |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0 to 1.7.1
- inc/class.Walker_Nav_Menu_Edit_Roles.php +22 -22
- languages/nav-menu-roles-ar.mo +0 -0
- languages/nav-menu-roles-ar.po +30 -30
- languages/nav-menu-roles-en.mo +0 -0
- languages/nav-menu-roles-en.po +29 -29
- languages/nav-menu-roles-es.mo +0 -0
- languages/nav-menu-roles-es.po +30 -30
- languages/nav-menu-roles-fa.mo +0 -0
- languages/nav-menu-roles-fa.po +216 -0
- languages/nav-menu-roles-fi.mo +0 -0
- languages/nav-menu-roles-fi.po +30 -30
- languages/nav-menu-roles-fr.mo +0 -0
- languages/nav-menu-roles-fr.po +30 -30
- languages/nav-menu-roles-gu_IN.mo +0 -0
- languages/nav-menu-roles-gu_IN.po +216 -225
- languages/nav-menu-roles-it.mo +0 -0
- languages/nav-menu-roles-it.po +26 -26
- languages/nav-menu-roles-pt_BR.mo +0 -0
- languages/nav-menu-roles-pt_BR.po +216 -0
- languages/nav-menu-roles-sv_SE.mo +0 -0
- languages/nav-menu-roles-sv_SE.po +30 -30
- languages/nav-menu-roles.pot +211 -211
- nav-menu-roles.php +9 -2
- readme.txt +55 -5
inc/class.Walker_Nav_Menu_Edit_Roles.php
CHANGED
@@ -84,11 +84,11 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
84 |
if ( ! empty( $item->_invalid ) ) {
|
85 |
$classes[] = 'menu-item-invalid';
|
86 |
/* translators: %s: title of menu item which is invalid */
|
87 |
-
$title = sprintf( __( '%s (Invalid)' ), $item->title );
|
88 |
} elseif ( isset( $item->post_status ) && 'draft' == $item->post_status ) {
|
89 |
$classes[] = 'pending';
|
90 |
/* translators: %s: title of menu item in draft status */
|
91 |
-
$title = sprintf( __('%s (Pending)'), $item->title );
|
92 |
}
|
93 |
|
94 |
$title = ( ! isset( $item->label ) || '' == $item->label ) ? $title : $item->label;
|
@@ -101,7 +101,7 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
101 |
<li id="menu-item-<?php echo $item_id; ?>" class="<?php echo implode(' ', $classes ); ?>">
|
102 |
<dl class="menu-item-bar">
|
103 |
<dt class="menu-item-handle">
|
104 |
-
<span class="item-title"><span class="menu-item-title"><?php echo esc_html( $title ); ?></span> <span class="is-submenu" <?php echo $submenu_text; ?>><?php _e( 'sub item' ); ?></span></span>
|
105 |
<span class="item-controls">
|
106 |
<span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
|
107 |
<span class="item-order hide-if-js">
|
@@ -116,7 +116,7 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
116 |
),
|
117 |
'move-menu_item'
|
118 |
);
|
119 |
-
?>" class="item-move-up"><abbr title="<?php esc_attr_e('Move up'); ?>">↑</abbr></a>
|
120 |
|
|
121 |
<a href="<?php
|
122 |
echo wp_nonce_url(
|
@@ -129,11 +129,11 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
129 |
),
|
130 |
'move-menu_item'
|
131 |
);
|
132 |
-
?>" class="item-move-down"><abbr title="<?php esc_attr_e('Move down'); ?>">↓</abbr></a>
|
133 |
</span>
|
134 |
-
<a class="item-edit" id="edit-<?php echo $item_id; ?>" title="<?php esc_attr_e('Edit Menu Item'); ?>" href="<?php
|
135 |
echo ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? admin_url( 'nav-menus.php' ) : add_query_arg( 'edit-menu-item', $item_id, remove_query_arg( $removed_args, admin_url( 'nav-menus.php#menu-item-settings-' . $item_id ) ) );
|
136 |
-
?>"><?php _e( 'Edit Menu Item' ); ?></a>
|
137 |
</span>
|
138 |
</dt>
|
139 |
</dl>
|
@@ -142,46 +142,46 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
142 |
<?php if( 'custom' == $item->type ) : ?>
|
143 |
<p class="field-url description description-wide">
|
144 |
<label for="edit-menu-item-url-<?php echo $item_id; ?>">
|
145 |
-
<?php _e( 'URL' ); ?><br />
|
146 |
<input type="text" id="edit-menu-item-url-<?php echo $item_id; ?>" class="widefat code edit-menu-item-url" name="menu-item-url[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->url ); ?>" />
|
147 |
</label>
|
148 |
</p>
|
149 |
<?php endif; ?>
|
150 |
<p class="description description-thin">
|
151 |
<label for="edit-menu-item-title-<?php echo $item_id; ?>">
|
152 |
-
<?php _e( 'Navigation Label' ); ?><br />
|
153 |
<input type="text" id="edit-menu-item-title-<?php echo $item_id; ?>" class="widefat edit-menu-item-title" name="menu-item-title[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->title ); ?>" />
|
154 |
</label>
|
155 |
</p>
|
156 |
<p class="description description-thin">
|
157 |
<label for="edit-menu-item-attr-title-<?php echo $item_id; ?>">
|
158 |
-
<?php _e( 'Title Attribute' ); ?><br />
|
159 |
<input type="text" id="edit-menu-item-attr-title-<?php echo $item_id; ?>" class="widefat edit-menu-item-attr-title" name="menu-item-attr-title[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->post_excerpt ); ?>" />
|
160 |
</label>
|
161 |
</p>
|
162 |
<p class="field-link-target description">
|
163 |
<label for="edit-menu-item-target-<?php echo $item_id; ?>">
|
164 |
<input type="checkbox" id="edit-menu-item-target-<?php echo $item_id; ?>" value="_blank" name="menu-item-target[<?php echo $item_id; ?>]"<?php checked( $item->target, '_blank' ); ?> />
|
165 |
-
<?php _e( 'Open link in a new window/tab' ); ?>
|
166 |
</label>
|
167 |
</p>
|
168 |
<p class="field-css-classes description description-thin">
|
169 |
<label for="edit-menu-item-classes-<?php echo $item_id; ?>">
|
170 |
-
<?php _e( 'CSS Classes (optional)' ); ?><br />
|
171 |
<input type="text" id="edit-menu-item-classes-<?php echo $item_id; ?>" class="widefat code edit-menu-item-classes" name="menu-item-classes[<?php echo $item_id; ?>]" value="<?php echo esc_attr( implode(' ', $item->classes ) ); ?>" />
|
172 |
</label>
|
173 |
</p>
|
174 |
<p class="field-xfn description description-thin">
|
175 |
<label for="edit-menu-item-xfn-<?php echo $item_id; ?>">
|
176 |
-
<?php _e( 'Link Relationship (XFN)' ); ?><br />
|
177 |
<input type="text" id="edit-menu-item-xfn-<?php echo $item_id; ?>" class="widefat code edit-menu-item-xfn" name="menu-item-xfn[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->xfn ); ?>" />
|
178 |
</label>
|
179 |
</p>
|
180 |
<p class="field-description description description-wide">
|
181 |
<label for="edit-menu-item-description-<?php echo $item_id; ?>">
|
182 |
-
<?php _e( 'Description' ); ?><br />
|
183 |
<textarea id="edit-menu-item-description-<?php echo $item_id; ?>" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php echo $item_id; ?>]"><?php echo esc_html( $item->description ); // textarea_escaped ?></textarea>
|
184 |
-
<span class="description"><?php _e('The description will be displayed in the menu if the current theme supports it.'); ?></span>
|
185 |
</label>
|
186 |
</p>
|
187 |
|
@@ -193,19 +193,19 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
193 |
|
194 |
<p class="field-move hide-if-no-js description description-wide">
|
195 |
<label>
|
196 |
-
<span><?php _e( 'Move' ); ?></span>
|
197 |
-
<a href="#" class="menus-move-up"><?php _e( 'Up one' ); ?></a>
|
198 |
-
<a href="#" class="menus-move-down"><?php _e( 'Down one' ); ?></a>
|
199 |
<a href="#" class="menus-move-left"></a>
|
200 |
<a href="#" class="menus-move-right"></a>
|
201 |
-
<a href="#" class="menus-move-top"><?php _e( 'To the top' ); ?></a>
|
202 |
</label>
|
203 |
</p>
|
204 |
|
205 |
<div class="menu-item-actions description-wide submitbox">
|
206 |
<?php if( 'custom' != $item->type && $original_title !== false ) : ?>
|
207 |
<p class="link-to-original">
|
208 |
-
<?php printf( __('Original: %s'), '<a href="' . esc_attr( $item->url ) . '">' . esc_html( $original_title ) . '</a>' ); ?>
|
209 |
</p>
|
210 |
<?php endif; ?>
|
211 |
<a class="item-delete submitdelete deletion" id="delete-<?php echo $item_id; ?>" href="<?php
|
@@ -218,8 +218,8 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
|
|
218 |
admin_url( 'nav-menus.php' )
|
219 |
),
|
220 |
'delete-menu_item_' . $item_id
|
221 |
-
); ?>"><?php _e( 'Remove' ); ?></a> <span class="meta-sep hide-if-no-js"> | </span> <a class="item-cancel submitcancel hide-if-no-js" id="cancel-<?php echo $item_id; ?>" href="<?php echo esc_url( add_query_arg( array( 'edit-menu-item' => $item_id, 'cancel' => time() ), admin_url( 'nav-menus.php' ) ) );
|
222 |
-
?>#menu-item-settings-<?php echo $item_id; ?>"><?php _e('Cancel'); ?></a>
|
223 |
</div>
|
224 |
|
225 |
<input class="menu-item-data-db-id" type="hidden" name="menu-item-db-id[<?php echo $item_id; ?>]" value="<?php echo $item_id; ?>" />
|
84 |
if ( ! empty( $item->_invalid ) ) {
|
85 |
$classes[] = 'menu-item-invalid';
|
86 |
/* translators: %s: title of menu item which is invalid */
|
87 |
+
$title = sprintf( __( '%s (Invalid)' , 'nav-menu-roles' ), $item->title );
|
88 |
} elseif ( isset( $item->post_status ) && 'draft' == $item->post_status ) {
|
89 |
$classes[] = 'pending';
|
90 |
/* translators: %s: title of menu item in draft status */
|
91 |
+
$title = sprintf( __('%s (Pending)', 'nav-menu-roles' ), $item->title );
|
92 |
}
|
93 |
|
94 |
$title = ( ! isset( $item->label ) || '' == $item->label ) ? $title : $item->label;
|
101 |
<li id="menu-item-<?php echo $item_id; ?>" class="<?php echo implode(' ', $classes ); ?>">
|
102 |
<dl class="menu-item-bar">
|
103 |
<dt class="menu-item-handle">
|
104 |
+
<span class="item-title"><span class="menu-item-title"><?php echo esc_html( $title ); ?></span> <span class="is-submenu" <?php echo $submenu_text; ?>><?php _e( 'sub item' , 'nav-menu-roles' ); ?></span></span>
|
105 |
<span class="item-controls">
|
106 |
<span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
|
107 |
<span class="item-order hide-if-js">
|
116 |
),
|
117 |
'move-menu_item'
|
118 |
);
|
119 |
+
?>" class="item-move-up"><abbr title="<?php esc_attr_e('Move up', 'nav-menu-roles' ); ?>">↑</abbr></a>
|
120 |
|
|
121 |
<a href="<?php
|
122 |
echo wp_nonce_url(
|
129 |
),
|
130 |
'move-menu_item'
|
131 |
);
|
132 |
+
?>" class="item-move-down"><abbr title="<?php esc_attr_e('Move down', 'nav-menu-roles' ); ?>">↓</abbr></a>
|
133 |
</span>
|
134 |
+
<a class="item-edit" id="edit-<?php echo $item_id; ?>" title="<?php esc_attr_e('Edit Menu Item', 'nav-menu-roles' ); ?>" href="<?php
|
135 |
echo ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? admin_url( 'nav-menus.php' ) : add_query_arg( 'edit-menu-item', $item_id, remove_query_arg( $removed_args, admin_url( 'nav-menus.php#menu-item-settings-' . $item_id ) ) );
|
136 |
+
?>"><?php _e( 'Edit Menu Item' , 'nav-menu-roles' ); ?></a>
|
137 |
</span>
|
138 |
</dt>
|
139 |
</dl>
|
142 |
<?php if( 'custom' == $item->type ) : ?>
|
143 |
<p class="field-url description description-wide">
|
144 |
<label for="edit-menu-item-url-<?php echo $item_id; ?>">
|
145 |
+
<?php _e( 'URL' , 'nav-menu-roles' ); ?><br />
|
146 |
<input type="text" id="edit-menu-item-url-<?php echo $item_id; ?>" class="widefat code edit-menu-item-url" name="menu-item-url[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->url ); ?>" />
|
147 |
</label>
|
148 |
</p>
|
149 |
<?php endif; ?>
|
150 |
<p class="description description-thin">
|
151 |
<label for="edit-menu-item-title-<?php echo $item_id; ?>">
|
152 |
+
<?php _e( 'Navigation Label' , 'nav-menu-roles' ); ?><br />
|
153 |
<input type="text" id="edit-menu-item-title-<?php echo $item_id; ?>" class="widefat edit-menu-item-title" name="menu-item-title[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->title ); ?>" />
|
154 |
</label>
|
155 |
</p>
|
156 |
<p class="description description-thin">
|
157 |
<label for="edit-menu-item-attr-title-<?php echo $item_id; ?>">
|
158 |
+
<?php _e( 'Title Attribute' , 'nav-menu-roles' ); ?><br />
|
159 |
<input type="text" id="edit-menu-item-attr-title-<?php echo $item_id; ?>" class="widefat edit-menu-item-attr-title" name="menu-item-attr-title[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->post_excerpt ); ?>" />
|
160 |
</label>
|
161 |
</p>
|
162 |
<p class="field-link-target description">
|
163 |
<label for="edit-menu-item-target-<?php echo $item_id; ?>">
|
164 |
<input type="checkbox" id="edit-menu-item-target-<?php echo $item_id; ?>" value="_blank" name="menu-item-target[<?php echo $item_id; ?>]"<?php checked( $item->target, '_blank' ); ?> />
|
165 |
+
<?php _e( 'Open link in a new window/tab' , 'nav-menu-roles' ); ?>
|
166 |
</label>
|
167 |
</p>
|
168 |
<p class="field-css-classes description description-thin">
|
169 |
<label for="edit-menu-item-classes-<?php echo $item_id; ?>">
|
170 |
+
<?php _e( 'CSS Classes (optional)' , 'nav-menu-roles' ); ?><br />
|
171 |
<input type="text" id="edit-menu-item-classes-<?php echo $item_id; ?>" class="widefat code edit-menu-item-classes" name="menu-item-classes[<?php echo $item_id; ?>]" value="<?php echo esc_attr( implode(' ', $item->classes ) ); ?>" />
|
172 |
</label>
|
173 |
</p>
|
174 |
<p class="field-xfn description description-thin">
|
175 |
<label for="edit-menu-item-xfn-<?php echo $item_id; ?>">
|
176 |
+
<?php _e( 'Link Relationship (XFN)' , 'nav-menu-roles' ); ?><br />
|
177 |
<input type="text" id="edit-menu-item-xfn-<?php echo $item_id; ?>" class="widefat code edit-menu-item-xfn" name="menu-item-xfn[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->xfn ); ?>" />
|
178 |
</label>
|
179 |
</p>
|
180 |
<p class="field-description description description-wide">
|
181 |
<label for="edit-menu-item-description-<?php echo $item_id; ?>">
|
182 |
+
<?php _e( 'Description' , 'nav-menu-roles' ); ?><br />
|
183 |
<textarea id="edit-menu-item-description-<?php echo $item_id; ?>" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php echo $item_id; ?>]"><?php echo esc_html( $item->description ); // textarea_escaped ?></textarea>
|
184 |
+
<span class="description"><?php _e('The description will be displayed in the menu if the current theme supports it.', 'nav-menu-roles' ); ?></span>
|
185 |
</label>
|
186 |
</p>
|
187 |
|
193 |
|
194 |
<p class="field-move hide-if-no-js description description-wide">
|
195 |
<label>
|
196 |
+
<span><?php _e( 'Move' , 'nav-menu-roles' ); ?></span>
|
197 |
+
<a href="#" class="menus-move-up"><?php _e( 'Up one' , 'nav-menu-roles' ); ?></a>
|
198 |
+
<a href="#" class="menus-move-down"><?php _e( 'Down one' , 'nav-menu-roles' ); ?></a>
|
199 |
<a href="#" class="menus-move-left"></a>
|
200 |
<a href="#" class="menus-move-right"></a>
|
201 |
+
<a href="#" class="menus-move-top"><?php _e( 'To the top' , 'nav-menu-roles' ); ?></a>
|
202 |
</label>
|
203 |
</p>
|
204 |
|
205 |
<div class="menu-item-actions description-wide submitbox">
|
206 |
<?php if( 'custom' != $item->type && $original_title !== false ) : ?>
|
207 |
<p class="link-to-original">
|
208 |
+
<?php printf( __('Original: %s', 'nav-menu-roles' ), '<a href="' . esc_attr( $item->url ) . '">' . esc_html( $original_title ) . '</a>' ); ?>
|
209 |
</p>
|
210 |
<?php endif; ?>
|
211 |
<a class="item-delete submitdelete deletion" id="delete-<?php echo $item_id; ?>" href="<?php
|
218 |
admin_url( 'nav-menus.php' )
|
219 |
),
|
220 |
'delete-menu_item_' . $item_id
|
221 |
+
); ?>"><?php _e( 'Remove' , 'nav-menu-roles' ); ?></a> <span class="meta-sep hide-if-no-js"> | </span> <a class="item-cancel submitcancel hide-if-no-js" id="cancel-<?php echo $item_id; ?>" href="<?php echo esc_url( add_query_arg( array( 'edit-menu-item' => $item_id, 'cancel' => time() ), admin_url( 'nav-menus.php' ) ) );
|
222 |
+
?>#menu-item-settings-<?php echo $item_id; ?>"><?php _e('Cancel', 'nav-menu-roles' ); ?></a>
|
223 |
</div>
|
224 |
|
225 |
<input class="menu-item-data-db-id" type="hidden" name="menu-item-db-id[<?php echo $item_id; ?>]" value="<?php echo $item_id; ?>" />
|
languages/nav-menu-roles-ar.mo
CHANGED
Binary file
|
languages/nav-menu-roles-ar.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Hassan, 2014
|
@@ -6,9 +6,9 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
-
"POT-Creation-Date:
|
10 |
-
"PO-Revision-Date:
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Arabic (http://www.transifex.com/projects/p/nav-menu-roles/language/ar/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -16,56 +16,56 @@ msgstr ""
|
|
16 |
"Language: ar\n"
|
17 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
18 |
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "عفواً، حدث خطأ ما."
|
26 |
|
27 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "الملف غير موجود، الرجاء إعادة المحاولة."
|
30 |
|
31 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
32 |
msgid "All done."
|
33 |
msgstr "انتهى كل شيْ."
|
34 |
|
35 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
36 |
msgid "Have fun!"
|
37 |
msgstr "استمتع!"
|
38 |
|
39 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "لم يتم إيجاد ملف التصدير في <code>%s</code>. على الأرجح أن هذا بسبب مشكلة في التصريحات."
|
44 |
|
45 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "ملف WXR هذا (نسخة %s) ربما لا يكون مدعوماً بواسطة هذه النسخة من المستورد. يرجى النظر في التحديث."
|
50 |
|
51 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "استيراد Nav Menu Roles"
|
54 |
|
55 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "هناك نسخة جديدة من هذا المستورد متوفرة. الرجاء التحديث إلى النسخة %s لضمان التوافق مع ملفات التصدير الجديدة."
|
60 |
|
61 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "قم بإعادة رفع ملف eXtended RSS (WXR) العادي الخاص بالووردبريس وسوف نقوم باستيراد Nav Menu Roles وأي بيانات تدوينات وصفية أخرى مفقود لعناصر القوائم."
|
67 |
|
68 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "اختر ملف WXR (.xml) لرفعه، ثم اضغط على رفع الملف والاستيراد."
|
71 |
|
@@ -179,25 +179,25 @@ msgid ""
|
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles قامت باكتشاف مشكلة محتملة مع الدوال أو التصنيفات التالية: %1$s. رجاء أنظر %2$sFAQ%3$s للمزيد من المعلومات والحلول الممكنة. | %4$sإخفاء التنبيه%3$s"
|
181 |
|
182 |
-
#: nav-menu-roles.php:
|
183 |
msgid "Display Mode"
|
184 |
msgstr "وضع العرض"
|
185 |
|
186 |
-
#: nav-menu-roles.php:
|
187 |
-
msgid "Logged Out Users"
|
188 |
-
msgstr "المستخدمين غير المسجلين"
|
189 |
-
|
190 |
-
#: nav-menu-roles.php:304
|
191 |
msgid "Logged In Users"
|
192 |
msgstr "المستخدمين المسجلين"
|
193 |
|
194 |
-
#: nav-menu-roles.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: nav-menu-roles.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Hassan, 2014
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
11 |
+
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
12 |
"Language-Team: Arabic (http://www.transifex.com/projects/p/nav-menu-roles/language/ar/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Language: ar\n"
|
17 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
18 |
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "عفواً، حدث خطأ ما."
|
26 |
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "الملف غير موجود، الرجاء إعادة المحاولة."
|
30 |
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
msgid "All done."
|
33 |
msgstr "انتهى كل شيْ."
|
34 |
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
msgid "Have fun!"
|
37 |
msgstr "استمتع!"
|
38 |
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "لم يتم إيجاد ملف التصدير في <code>%s</code>. على الأرجح أن هذا بسبب مشكلة في التصريحات."
|
44 |
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "ملف WXR هذا (نسخة %s) ربما لا يكون مدعوماً بواسطة هذه النسخة من المستورد. يرجى النظر في التحديث."
|
50 |
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "استيراد Nav Menu Roles"
|
54 |
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "هناك نسخة جديدة من هذا المستورد متوفرة. الرجاء التحديث إلى النسخة %s لضمان التوافق مع ملفات التصدير الجديدة."
|
60 |
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "قم بإعادة رفع ملف eXtended RSS (WXR) العادي الخاص بالووردبريس وسوف نقوم باستيراد Nav Menu Roles وأي بيانات تدوينات وصفية أخرى مفقود لعناصر القوائم."
|
67 |
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "اختر ملف WXR (.xml) لرفعه، ثم اضغط على رفع الملف والاستيراد."
|
71 |
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles قامت باكتشاف مشكلة محتملة مع الدوال أو التصنيفات التالية: %1$s. رجاء أنظر %2$sFAQ%3$s للمزيد من المعلومات والحلول الممكنة. | %4$sإخفاء التنبيه%3$s"
|
181 |
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
msgid "Display Mode"
|
184 |
msgstr "وضع العرض"
|
185 |
|
186 |
+
#: nav-menu-roles.php:324
|
|
|
|
|
|
|
|
|
187 |
msgid "Logged In Users"
|
188 |
msgstr "المستخدمين المسجلين"
|
189 |
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "المستخدمين غير المسجلين"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr ""
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
languages/nav-menu-roles-en.mo
CHANGED
Binary file
|
languages/nav-menu-roles-en.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Nav Menu Roles\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
10 |
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
11 |
"Language-Team: English (http://www.transifex.com/projects/p/nav-menu-roles/language/en/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
@@ -15,56 +15,56 @@ msgstr ""
|
|
15 |
"Language: en\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
|
18 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
msgid "Sorry, there has been an error."
|
24 |
msgstr "Sorry, there has been an error."
|
25 |
|
26 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
27 |
msgid "The file does not exist, please try again."
|
28 |
msgstr "The file does not exist, please try again."
|
29 |
|
30 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
31 |
msgid "All done."
|
32 |
msgstr "All done."
|
33 |
|
34 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
35 |
msgid "Have fun!"
|
36 |
msgstr "Have fun!"
|
37 |
|
38 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
39 |
msgid ""
|
40 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
41 |
"this was caused by a permissions problem."
|
42 |
msgstr "The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem."
|
43 |
|
44 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
45 |
msgid ""
|
46 |
"This WXR file (version %s) may not be supported by this version of the "
|
47 |
"importer. Please consider updating."
|
48 |
msgstr "This WXR file (version %s) may not be supported by this version of the importer. Please consider updating."
|
49 |
|
50 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
51 |
msgid "Import Nav Menu Roles"
|
52 |
msgstr "Import Nav Menu Roles"
|
53 |
|
54 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
55 |
msgid ""
|
56 |
"A new version of this importer is available. Please update to version %s to "
|
57 |
"ensure compatibility with newer export files."
|
58 |
msgstr "A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files."
|
59 |
|
60 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
61 |
msgid ""
|
62 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
63 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
64 |
"items."
|
65 |
msgstr "Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll import the Nav Menu Roles and any other missing post meta for the Nav Menu items."
|
66 |
|
67 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
68 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
69 |
msgstr "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
|
@@ -178,25 +178,25 @@ msgid ""
|
|
178 |
"possible resolution. | %4$sHide Notice%3$s"
|
179 |
msgstr "Nav Menu Roles has detected a possible conflict with the following functions or classes: %1$s. Please see the %2$sFAQ%3$s for more information and possible resolution. | %4$sHide Notice%3$s"
|
180 |
|
181 |
-
#: nav-menu-roles.php:
|
182 |
msgid "Display Mode"
|
183 |
msgstr "Display Mode"
|
184 |
|
185 |
-
#: nav-menu-roles.php:
|
186 |
-
msgid "Logged Out Users"
|
187 |
-
msgstr "Logged Out Users"
|
188 |
-
|
189 |
-
#: nav-menu-roles.php:304
|
190 |
msgid "Logged In Users"
|
191 |
msgstr "Logged In Users"
|
192 |
|
193 |
-
#: nav-menu-roles.php:
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
|
|
|
|
|
|
|
|
196 |
|
197 |
-
#: nav-menu-roles.php:
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
200 |
|
201 |
#. Plugin URI of the plugin/theme
|
202 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Nav Menu Roles\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
8 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
9 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
10 |
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
11 |
"Language-Team: English (http://www.transifex.com/projects/p/nav-menu-roles/language/en/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
15 |
"Language: en\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
|
18 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
23 |
msgid "Sorry, there has been an error."
|
24 |
msgstr "Sorry, there has been an error."
|
25 |
|
26 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
27 |
msgid "The file does not exist, please try again."
|
28 |
msgstr "The file does not exist, please try again."
|
29 |
|
30 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
31 |
msgid "All done."
|
32 |
msgstr "All done."
|
33 |
|
34 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
35 |
msgid "Have fun!"
|
36 |
msgstr "Have fun!"
|
37 |
|
38 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
39 |
msgid ""
|
40 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
41 |
"this was caused by a permissions problem."
|
42 |
msgstr "The export file could not be found at <code>%s</code>. It is likely that this was caused by a permissions problem."
|
43 |
|
44 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
45 |
msgid ""
|
46 |
"This WXR file (version %s) may not be supported by this version of the "
|
47 |
"importer. Please consider updating."
|
48 |
msgstr "This WXR file (version %s) may not be supported by this version of the importer. Please consider updating."
|
49 |
|
50 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
51 |
msgid "Import Nav Menu Roles"
|
52 |
msgstr "Import Nav Menu Roles"
|
53 |
|
54 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
55 |
msgid ""
|
56 |
"A new version of this importer is available. Please update to version %s to "
|
57 |
"ensure compatibility with newer export files."
|
58 |
msgstr "A new version of this importer is available. Please update to version %s to ensure compatibility with newer export files."
|
59 |
|
60 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
61 |
msgid ""
|
62 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
63 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
64 |
"items."
|
65 |
msgstr "Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll import the Nav Menu Roles and any other missing post meta for the Nav Menu items."
|
66 |
|
67 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
68 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
69 |
msgstr "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
|
178 |
"possible resolution. | %4$sHide Notice%3$s"
|
179 |
msgstr "Nav Menu Roles has detected a possible conflict with the following functions or classes: %1$s. Please see the %2$sFAQ%3$s for more information and possible resolution. | %4$sHide Notice%3$s"
|
180 |
|
181 |
+
#: nav-menu-roles.php:316
|
182 |
msgid "Display Mode"
|
183 |
msgstr "Display Mode"
|
184 |
|
185 |
+
#: nav-menu-roles.php:324
|
|
|
|
|
|
|
|
|
186 |
msgid "Logged In Users"
|
187 |
msgstr "Logged In Users"
|
188 |
|
189 |
+
#: nav-menu-roles.php:331
|
190 |
+
msgid "Logged Out Users"
|
191 |
+
msgstr "Logged Out Users"
|
192 |
+
|
193 |
+
#: nav-menu-roles.php:338
|
194 |
+
msgid "Everyone"
|
195 |
+
msgstr "Everyone"
|
196 |
|
197 |
+
#: nav-menu-roles.php:345
|
198 |
+
msgid "Limit logged in users to specific roles"
|
199 |
+
msgstr "Limit logged in users to specific roles"
|
200 |
|
201 |
#. Plugin URI of the plugin/theme
|
202 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
languages/nav-menu-roles-es.mo
CHANGED
Binary file
|
languages/nav-menu-roles-es.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Enrique Errando <contacto@enriqueerrando.com>, 2014
|
@@ -7,9 +7,9 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Nav Menu Roles\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
10 |
-
"POT-Creation-Date:
|
11 |
-
"PO-Revision-Date:
|
12 |
-
"Last-Translator:
|
13 |
"Language-Team: Spanish (http://www.transifex.com/projects/p/nav-menu-roles/language/es/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -17,56 +17,56 @@ msgstr ""
|
|
17 |
"Language: es\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
24 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
25 |
msgid "Sorry, there has been an error."
|
26 |
msgstr "Lo sentimos, ha ocurrido un error."
|
27 |
|
28 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
29 |
msgid "The file does not exist, please try again."
|
30 |
msgstr "El archivo no existe, por favor, vuélvelo a intentar."
|
31 |
|
32 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
33 |
msgid "All done."
|
34 |
msgstr "Terminado."
|
35 |
|
36 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
37 |
msgid "Have fun!"
|
38 |
msgstr "¡Diviértete!"
|
39 |
|
40 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
41 |
msgid ""
|
42 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
43 |
"this was caused by a permissions problem."
|
44 |
msgstr "El archivo no se ha encontrado en <code>%s</code>. Es probable que se deba a un problema de permisos."
|
45 |
|
46 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
47 |
msgid ""
|
48 |
"This WXR file (version %s) may not be supported by this version of the "
|
49 |
"importer. Please consider updating."
|
50 |
msgstr "Puede que el archivo WXR (versión %s) no esté soportado por esta versión del importador. Por favor, toma en consideración la posibilidad de actualizarlo."
|
51 |
|
52 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
53 |
msgid "Import Nav Menu Roles"
|
54 |
msgstr "Importar Nav Menu Roles"
|
55 |
|
56 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
57 |
msgid ""
|
58 |
"A new version of this importer is available. Please update to version %s to "
|
59 |
"ensure compatibility with newer export files."
|
60 |
msgstr "Está disponible una nueva versión del importador. Por favor, actualiza a la versión %s para garantizar la compatibilidad con nuevos archivos de exportación."
|
61 |
|
62 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
63 |
msgid ""
|
64 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
65 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
66 |
"items."
|
67 |
msgstr "Vuelve a subir tu archivo WordPress eXtended RSS (WXR) y nosotros importaremos el Nav Menu Roles y cualquier otro post meta para los ítems del Nav Menu."
|
68 |
|
69 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
70 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
71 |
msgstr "Escoge un archivo WXR (.xml) a subir y luego clic en \"Subir archivo e importar\"."
|
72 |
|
@@ -180,25 +180,25 @@ msgid ""
|
|
180 |
"possible resolution. | %4$sHide Notice%3$s"
|
181 |
msgstr "Nav Menu Roles ha detectado un conflicto con las siguientes funciones o clases: %1$s. Por favor, para más información y posible solución leer las %2$sPreguntas frecuentes%3$s. %4$sOcultar Alerta%3$s"
|
182 |
|
183 |
-
#: nav-menu-roles.php:
|
184 |
msgid "Display Mode"
|
185 |
msgstr "Modo de visualización"
|
186 |
|
187 |
-
#: nav-menu-roles.php:
|
188 |
-
msgid "Logged Out Users"
|
189 |
-
msgstr "Usuarios no identificados"
|
190 |
-
|
191 |
-
#: nav-menu-roles.php:304
|
192 |
msgid "Logged In Users"
|
193 |
msgstr "Usuarios identificados"
|
194 |
|
195 |
-
#: nav-menu-roles.php:
|
196 |
-
msgid "
|
197 |
-
msgstr "
|
|
|
|
|
|
|
|
|
198 |
|
199 |
-
#: nav-menu-roles.php:
|
200 |
-
msgid "
|
201 |
-
msgstr "
|
202 |
|
203 |
#. Plugin URI of the plugin/theme
|
204 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Enrique Errando <contacto@enriqueerrando.com>, 2014
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: Nav Menu Roles\n"
|
9 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
10 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
11 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
12 |
+
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
13 |
"Language-Team: Spanish (http://www.transifex.com/projects/p/nav-menu-roles/language/es/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Language: es\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
24 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
25 |
msgid "Sorry, there has been an error."
|
26 |
msgstr "Lo sentimos, ha ocurrido un error."
|
27 |
|
28 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
29 |
msgid "The file does not exist, please try again."
|
30 |
msgstr "El archivo no existe, por favor, vuélvelo a intentar."
|
31 |
|
32 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
33 |
msgid "All done."
|
34 |
msgstr "Terminado."
|
35 |
|
36 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
37 |
msgid "Have fun!"
|
38 |
msgstr "¡Diviértete!"
|
39 |
|
40 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
41 |
msgid ""
|
42 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
43 |
"this was caused by a permissions problem."
|
44 |
msgstr "El archivo no se ha encontrado en <code>%s</code>. Es probable que se deba a un problema de permisos."
|
45 |
|
46 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
47 |
msgid ""
|
48 |
"This WXR file (version %s) may not be supported by this version of the "
|
49 |
"importer. Please consider updating."
|
50 |
msgstr "Puede que el archivo WXR (versión %s) no esté soportado por esta versión del importador. Por favor, toma en consideración la posibilidad de actualizarlo."
|
51 |
|
52 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
53 |
msgid "Import Nav Menu Roles"
|
54 |
msgstr "Importar Nav Menu Roles"
|
55 |
|
56 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
57 |
msgid ""
|
58 |
"A new version of this importer is available. Please update to version %s to "
|
59 |
"ensure compatibility with newer export files."
|
60 |
msgstr "Está disponible una nueva versión del importador. Por favor, actualiza a la versión %s para garantizar la compatibilidad con nuevos archivos de exportación."
|
61 |
|
62 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
63 |
msgid ""
|
64 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
65 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
66 |
"items."
|
67 |
msgstr "Vuelve a subir tu archivo WordPress eXtended RSS (WXR) y nosotros importaremos el Nav Menu Roles y cualquier otro post meta para los ítems del Nav Menu."
|
68 |
|
69 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
70 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
71 |
msgstr "Escoge un archivo WXR (.xml) a subir y luego clic en \"Subir archivo e importar\"."
|
72 |
|
180 |
"possible resolution. | %4$sHide Notice%3$s"
|
181 |
msgstr "Nav Menu Roles ha detectado un conflicto con las siguientes funciones o clases: %1$s. Por favor, para más información y posible solución leer las %2$sPreguntas frecuentes%3$s. %4$sOcultar Alerta%3$s"
|
182 |
|
183 |
+
#: nav-menu-roles.php:316
|
184 |
msgid "Display Mode"
|
185 |
msgstr "Modo de visualización"
|
186 |
|
187 |
+
#: nav-menu-roles.php:324
|
|
|
|
|
|
|
|
|
188 |
msgid "Logged In Users"
|
189 |
msgstr "Usuarios identificados"
|
190 |
|
191 |
+
#: nav-menu-roles.php:331
|
192 |
+
msgid "Logged Out Users"
|
193 |
+
msgstr "Usuarios no identificados"
|
194 |
+
|
195 |
+
#: nav-menu-roles.php:338
|
196 |
+
msgid "Everyone"
|
197 |
+
msgstr ""
|
198 |
|
199 |
+
#: nav-menu-roles.php:345
|
200 |
+
msgid "Limit logged in users to specific roles"
|
201 |
+
msgstr ""
|
202 |
|
203 |
#. Plugin URI of the plugin/theme
|
204 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
languages/nav-menu-roles-fa.mo
ADDED
File without changes
|
languages/nav-menu-roles-fa.po
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
+
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
+
# Translators:
|
4 |
+
# Zahed Alfak <tamass4116@gmail.com>, 2015
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-05-07 20:17+0000\n"
|
11 |
+
"Last-Translator: Zahed Alfak <tamass4116@gmail.com>\n"
|
12 |
+
"Language-Team: Persian (http://www.transifex.com/projects/p/nav-menu-roles/language/fa/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: fa\n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
+
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
+
msgid "Sorry, there has been an error."
|
25 |
+
msgstr "با عرض پوزش، خطایی رخ داده است."
|
26 |
+
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
+
msgid "The file does not exist, please try again."
|
29 |
+
msgstr "فایل وجود ندارد، لطفا دوباره سعی کنید."
|
30 |
+
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
+
msgid "All done."
|
33 |
+
msgstr "تمام شد."
|
34 |
+
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
+
msgid "Have fun!"
|
37 |
+
msgstr "خوش بگذره!"
|
38 |
+
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
+
msgid ""
|
41 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
+
"this was caused by a permissions problem."
|
43 |
+
msgstr "ر"
|
44 |
+
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
+
msgid ""
|
47 |
+
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
+
"importer. Please consider updating."
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
+
msgid "Import Nav Menu Roles"
|
53 |
+
msgstr "نقش منوی واردات ناو"
|
54 |
+
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
+
msgid ""
|
57 |
+
"A new version of this importer is available. Please update to version %s to "
|
58 |
+
"ensure compatibility with newer export files."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
+
msgid ""
|
63 |
+
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
+
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
+
"items."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
+
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#. translators: %s: title of menu item which is invalid
|
73 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
|
74 |
+
msgid "%s (Invalid)"
|
75 |
+
msgstr "٪s (نامعتبر)"
|
76 |
+
|
77 |
+
#. translators: %s: title of menu item in draft status
|
78 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
|
79 |
+
msgid "%s (Pending)"
|
80 |
+
msgstr "٪s (در انتظار)"
|
81 |
+
|
82 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
|
83 |
+
msgid "sub item"
|
84 |
+
msgstr "زیرمنو"
|
85 |
+
|
86 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
|
87 |
+
msgid "Move up"
|
88 |
+
msgstr "حرکت به بالا"
|
89 |
+
|
90 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
|
91 |
+
msgid "Move down"
|
92 |
+
msgstr "حرکت به پایین"
|
93 |
+
|
94 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
|
95 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
|
96 |
+
msgid "Edit Menu Item"
|
97 |
+
msgstr "ویرایش آیتم های منو"
|
98 |
+
|
99 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
|
100 |
+
msgid "URL"
|
101 |
+
msgstr "آدرس"
|
102 |
+
|
103 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
|
104 |
+
msgid "Navigation Label"
|
105 |
+
msgstr "برچسب ناوبری"
|
106 |
+
|
107 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
|
108 |
+
msgid "Title Attribute"
|
109 |
+
msgstr "عنوان صفت"
|
110 |
+
|
111 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
|
112 |
+
msgid "Open link in a new window/tab"
|
113 |
+
msgstr "باز کردن پیوند در پنجره جدید / تب"
|
114 |
+
|
115 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
|
116 |
+
msgid "CSS Classes (optional)"
|
117 |
+
msgstr "کلاس های سی اس اس (اختیاری)"
|
118 |
+
|
119 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
|
120 |
+
msgid "Link Relationship (XFN)"
|
121 |
+
msgstr "رابطه لینک (XFN)"
|
122 |
+
|
123 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
|
124 |
+
msgid "Description"
|
125 |
+
msgstr "توضیحات"
|
126 |
+
|
127 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
|
128 |
+
msgid ""
|
129 |
+
"The description will be displayed in the menu if the current theme supports "
|
130 |
+
"it."
|
131 |
+
msgstr "توضیحات منو داده خواهد شد اگر تم مورد نظر را پشتیبانی کند ."
|
132 |
+
|
133 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
|
134 |
+
msgid "Move"
|
135 |
+
msgstr "انتقال"
|
136 |
+
|
137 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
|
138 |
+
msgid "Up one"
|
139 |
+
msgstr "بالا"
|
140 |
+
|
141 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
|
142 |
+
msgid "Down one"
|
143 |
+
msgstr "پایین"
|
144 |
+
|
145 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
|
146 |
+
msgid "To the top"
|
147 |
+
msgstr "به بالا"
|
148 |
+
|
149 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
|
150 |
+
msgid "Original: %s"
|
151 |
+
msgstr "اصلی :"
|
152 |
+
|
153 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
|
154 |
+
msgid "Remove"
|
155 |
+
msgstr "حذف"
|
156 |
+
|
157 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
|
158 |
+
msgid "Cancel"
|
159 |
+
msgstr "لغو"
|
160 |
+
|
161 |
+
#: nav-menu-roles.php:76 nav-menu-roles.php:85
|
162 |
+
msgid "Cheatin’ huh?"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#. Plugin Name of the plugin/theme
|
166 |
+
msgid "Nav Menu Roles"
|
167 |
+
msgstr "قوانین منوی ناوبری"
|
168 |
+
|
169 |
+
#: nav-menu-roles.php:163
|
170 |
+
msgid ""
|
171 |
+
"Import %snav menu roles%s and other menu item meta skipped by the default "
|
172 |
+
"importer"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: nav-menu-roles.php:219
|
176 |
+
msgid ""
|
177 |
+
"Nav Menu Roles has detected a possible conflict with the following functions"
|
178 |
+
" or classes: %1$s. Please see the %2$sFAQ%3$s for more information and "
|
179 |
+
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
+
msgid "Display Mode"
|
184 |
+
msgstr "حالت نمایش"
|
185 |
+
|
186 |
+
#: nav-menu-roles.php:324
|
187 |
+
msgid "Logged In Users"
|
188 |
+
msgstr "کاربران وارد شده"
|
189 |
+
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "کاربران از سیستم خارج شده"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr "همه"
|
197 |
+
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr "محدود کردن کاربر به قوانین خاص"
|
201 |
+
|
202 |
+
#. Plugin URI of the plugin/theme
|
203 |
+
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
204 |
+
msgstr "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
205 |
+
|
206 |
+
#. Description of the plugin/theme
|
207 |
+
msgid "Hide custom menu items based on user roles"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#. Author of the plugin/theme
|
211 |
+
msgid "Kathy Darling"
|
212 |
+
msgstr "Kathy Darling"
|
213 |
+
|
214 |
+
#. Author URI of the plugin/theme
|
215 |
+
msgid "http://www.kathyisawesome.com"
|
216 |
+
msgstr "http://www.kathyisawesome.com"
|
languages/nav-menu-roles-fi.mo
CHANGED
Binary file
|
languages/nav-menu-roles-fi.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# timoleinio <tjlein@gmail.com>, 2014
|
@@ -6,9 +6,9 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
-
"POT-Creation-Date:
|
10 |
-
"PO-Revision-Date:
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Finnish (http://www.transifex.com/projects/p/nav-menu-roles/language/fi/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -16,56 +16,56 @@ msgstr ""
|
|
16 |
"Language: fi\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "Virhe tapahtui."
|
26 |
|
27 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "Tiedostoa ei ole olemassa, yritä uudelleen."
|
30 |
|
31 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
32 |
msgid "All done."
|
33 |
msgstr "Valmista."
|
34 |
|
35 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
36 |
msgid "Have fun!"
|
37 |
msgstr "Pidä hauskaa!"
|
38 |
|
39 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "Vientitiedosta ei löytynyt <code>%s</code>. On todennäköistä, että kyseessä on käyttöoikeusongelma."
|
44 |
|
45 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "Tuontityökalun tämä versio ei välttämättä tue WXR-tiedostoa (versio %s). Harkitse työkalun päivitystä."
|
50 |
|
51 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "Tuo valikkorooleja"
|
54 |
|
55 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "Tuontityökalusta on uusi versio. Ole hyvä ja päivitä versioon %s varmistaaksesi yhteensopivuus uusien vientitiedostojen kanssa."
|
60 |
|
61 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "Lataa WordPressin eXtended RSS (WXR) -tiedosto ja tuomme valikkoroolit."
|
67 |
|
68 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "Valitse ladattava WXR (.xml) -tiedosto ja klikkaa Tuo tiedosto -nappia."
|
71 |
|
@@ -179,25 +179,25 @@ msgid ""
|
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles on havainnut mahdollisen ongelman seuraavan funktion tai luokan kanssa: %1$s. Katso %2$sFAQ%3$s siitä, miten mahdollisesti voit asian korjata. | %4$sPiilota ilmoitus%3$s"
|
181 |
|
182 |
-
#: nav-menu-roles.php:
|
183 |
msgid "Display Mode"
|
184 |
msgstr "Näytä"
|
185 |
|
186 |
-
#: nav-menu-roles.php:
|
187 |
-
msgid "Logged Out Users"
|
188 |
-
msgstr "Kirjautumaton käyttäjä"
|
189 |
-
|
190 |
-
#: nav-menu-roles.php:304
|
191 |
msgid "Logged In Users"
|
192 |
msgstr "Kirjautunut käyttäjä"
|
193 |
|
194 |
-
#: nav-menu-roles.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: nav-menu-roles.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# timoleinio <tjlein@gmail.com>, 2014
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
11 |
+
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
12 |
"Language-Team: Finnish (http://www.transifex.com/projects/p/nav-menu-roles/language/fi/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Language: fi\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "Virhe tapahtui."
|
26 |
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "Tiedostoa ei ole olemassa, yritä uudelleen."
|
30 |
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
msgid "All done."
|
33 |
msgstr "Valmista."
|
34 |
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
msgid "Have fun!"
|
37 |
msgstr "Pidä hauskaa!"
|
38 |
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "Vientitiedosta ei löytynyt <code>%s</code>. On todennäköistä, että kyseessä on käyttöoikeusongelma."
|
44 |
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "Tuontityökalun tämä versio ei välttämättä tue WXR-tiedostoa (versio %s). Harkitse työkalun päivitystä."
|
50 |
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "Tuo valikkorooleja"
|
54 |
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "Tuontityökalusta on uusi versio. Ole hyvä ja päivitä versioon %s varmistaaksesi yhteensopivuus uusien vientitiedostojen kanssa."
|
60 |
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "Lataa WordPressin eXtended RSS (WXR) -tiedosto ja tuomme valikkoroolit."
|
67 |
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "Valitse ladattava WXR (.xml) -tiedosto ja klikkaa Tuo tiedosto -nappia."
|
71 |
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles on havainnut mahdollisen ongelman seuraavan funktion tai luokan kanssa: %1$s. Katso %2$sFAQ%3$s siitä, miten mahdollisesti voit asian korjata. | %4$sPiilota ilmoitus%3$s"
|
181 |
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
msgid "Display Mode"
|
184 |
msgstr "Näytä"
|
185 |
|
186 |
+
#: nav-menu-roles.php:324
|
|
|
|
|
|
|
|
|
187 |
msgid "Logged In Users"
|
188 |
msgstr "Kirjautunut käyttäjä"
|
189 |
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "Kirjautumaton käyttäjä"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr ""
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
languages/nav-menu-roles-fr.mo
CHANGED
Binary file
|
languages/nav-menu-roles-fr.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Philippe GILLES <petilabo@gmail.com>, 2014
|
@@ -6,9 +6,9 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
-
"POT-Creation-Date:
|
10 |
-
"PO-Revision-Date:
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: French (http://www.transifex.com/projects/p/nav-menu-roles/language/fr/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -16,56 +16,56 @@ msgstr ""
|
|
16 |
"Language: fr\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "Désolé, une erreur est survenue."
|
26 |
|
27 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "Ce fichier n'existe pas, veuillez essayer à nouveau."
|
30 |
|
31 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
32 |
msgid "All done."
|
33 |
msgstr "C'est fait."
|
34 |
|
35 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
36 |
msgid "Have fun!"
|
37 |
msgstr "Amusez-vous bien !"
|
38 |
|
39 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "Impossible d'accéder au fichier d'export dans <code>%s</code>. Il s'agit probablement d'un problème de permissions."
|
44 |
|
45 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "Ce fichier WXR (version %s) pourrait ne pas être supporté par cette version de l'importateur. Il est recommandé de procéder à une mise à jour."
|
50 |
|
51 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "Importer les Nav Menu Roles"
|
54 |
|
55 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "Une nouvelle version de cet importateur est disponible. Veuillez installer la version %s pour garantir la compatibilité avec les fichiers d'export plus récents."
|
60 |
|
61 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "Veuillez charger une nouvelle fois le fichier WordPress eXtended RSS (WXR), afin d'importer les Nav Menu Roles ainsi que toutes les données meta manquantes dans les éléments de menu."
|
67 |
|
68 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "Sélectionnez le fichier WXR (.xml) à charger, cliquez sur le bouton \"Choisir un fichier\", puis procédez à l'importation."
|
71 |
|
@@ -179,25 +179,25 @@ msgid ""
|
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles a détecté un possible conflit avec les fonctions ou classes suivantes : %1$s. Veuillez consulter la %2$sFAQ%3$s pour plus d'informations et des solutions possibles. | %4$sMasquer cet avertissement%3$s"
|
181 |
|
182 |
-
#: nav-menu-roles.php:
|
183 |
msgid "Display Mode"
|
184 |
msgstr "Mode d'affichage"
|
185 |
|
186 |
-
#: nav-menu-roles.php:
|
187 |
-
msgid "Logged Out Users"
|
188 |
-
msgstr "Utilisateurs déconnectés"
|
189 |
-
|
190 |
-
#: nav-menu-roles.php:304
|
191 |
msgid "Logged In Users"
|
192 |
msgstr "Utilisateurs connectés"
|
193 |
|
194 |
-
#: nav-menu-roles.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: nav-menu-roles.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Philippe GILLES <petilabo@gmail.com>, 2014
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
11 |
+
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
12 |
"Language-Team: French (http://www.transifex.com/projects/p/nav-menu-roles/language/fr/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Language: fr\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "Désolé, une erreur est survenue."
|
26 |
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "Ce fichier n'existe pas, veuillez essayer à nouveau."
|
30 |
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
msgid "All done."
|
33 |
msgstr "C'est fait."
|
34 |
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
msgid "Have fun!"
|
37 |
msgstr "Amusez-vous bien !"
|
38 |
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "Impossible d'accéder au fichier d'export dans <code>%s</code>. Il s'agit probablement d'un problème de permissions."
|
44 |
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "Ce fichier WXR (version %s) pourrait ne pas être supporté par cette version de l'importateur. Il est recommandé de procéder à une mise à jour."
|
50 |
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "Importer les Nav Menu Roles"
|
54 |
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "Une nouvelle version de cet importateur est disponible. Veuillez installer la version %s pour garantir la compatibilité avec les fichiers d'export plus récents."
|
60 |
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "Veuillez charger une nouvelle fois le fichier WordPress eXtended RSS (WXR), afin d'importer les Nav Menu Roles ainsi que toutes les données meta manquantes dans les éléments de menu."
|
67 |
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "Sélectionnez le fichier WXR (.xml) à charger, cliquez sur le bouton \"Choisir un fichier\", puis procédez à l'importation."
|
71 |
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles a détecté un possible conflit avec les fonctions ou classes suivantes : %1$s. Veuillez consulter la %2$sFAQ%3$s pour plus d'informations et des solutions possibles. | %4$sMasquer cet avertissement%3$s"
|
181 |
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
msgid "Display Mode"
|
184 |
msgstr "Mode d'affichage"
|
185 |
|
186 |
+
#: nav-menu-roles.php:324
|
|
|
|
|
|
|
|
|
187 |
msgid "Logged In Users"
|
188 |
msgstr "Utilisateurs connectés"
|
189 |
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "Utilisateurs déconnectés"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr ""
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
languages/nav-menu-roles-gu_IN.mo
CHANGED
Binary file
|
languages/nav-menu-roles-gu_IN.po
CHANGED
@@ -1,225 +1,216 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
"
|
8 |
-
"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
15 |
-
"
|
16 |
-
"Language: gu_IN\n"
|
17 |
-
|
18 |
-
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
"
|
42 |
-
|
43 |
-
"નિકાસ ફાઈલ <code>%s</code> પર મળી નથી રહી. લાગી રહ્યું છે કે પરવાનગી ની સમસ્યા છે."
|
44 |
-
|
45 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
46 |
-
msgid ""
|
47 |
-
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
-
"importer. Please consider updating."
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
"
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
"
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
"
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
"
|
179 |
-
"
|
180 |
-
msgstr "
|
181 |
-
|
182 |
-
#: nav-menu-roles.php:
|
183 |
-
msgid ""
|
184 |
-
"
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
"
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
msgstr "custom મેનુ વસ્તુ ને વપરાશકર્તા ની ભૂમિકા ઉપર સંતાડો."
|
218 |
-
|
219 |
-
#. Author of the plugin/theme
|
220 |
-
msgid "Kathy Darling"
|
221 |
-
msgstr "Kathy Darling"
|
222 |
-
|
223 |
-
#. Author URI of the plugin/theme
|
224 |
-
msgid "http://www.kathyisawesome.com"
|
225 |
-
msgstr "http://www.kathyisawesome.com"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
+
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
+
# Translators:
|
4 |
+
# Rohil Mistry <rohilmistry93@gmail.com>, 2015
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-07-23 08:40+0000\n"
|
11 |
+
"Last-Translator: Rohil Mistry <rohilmistry93@gmail.com>\n"
|
12 |
+
"Language-Team: Gujarati (India) (http://www.transifex.com/projects/p/nav-menu-roles/language/gu_IN/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: gu_IN\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
+
msgid "Sorry, there has been an error."
|
25 |
+
msgstr "માફ કરશો, પણ કંઈક ભૂલ થયી છે"
|
26 |
+
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
+
msgid "The file does not exist, please try again."
|
29 |
+
msgstr "ફાઇલ અસ્તિત્વમાં નથી, ફરી પ્રયત્ન કરો."
|
30 |
+
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
+
msgid "All done."
|
33 |
+
msgstr "બધું થયી ચુક્યું છે"
|
34 |
+
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
+
msgid "Have fun!"
|
37 |
+
msgstr "મજા કરો"
|
38 |
+
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
+
msgid ""
|
41 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
+
"this was caused by a permissions problem."
|
43 |
+
msgstr "નિકાસ ફાઈલ <code>%s</code> પર મળી નથી રહી. લાગી રહ્યું છે કે પરવાનગી ની સમસ્યા છે."
|
44 |
+
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
+
msgid ""
|
47 |
+
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
+
"importer. Please consider updating."
|
49 |
+
msgstr "આ WXR file (આવૃત્તિ %s) કદાચ આ આયાતકાર ની આવૃત્તિ દ્વારા ટેકો નથી આપતી. મહેરબાની કરી ને નવી મેળવી લો."
|
50 |
+
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
+
msgid "Import Nav Menu Roles"
|
53 |
+
msgstr "આયાત નેવ મેનુ રોલ્સ"
|
54 |
+
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
+
msgid ""
|
57 |
+
"A new version of this importer is available. Please update to version %s to "
|
58 |
+
"ensure compatibility with newer export files."
|
59 |
+
msgstr "આ આયાતકાર માટે ની નવી આવૃત્તિ ઉપલબ્ધ છે. નવી નિવેશ ફાઈલ ને આવૃત્તિ સાથે સુસંગત બનાવા મહેરબાની કરી ને નવી આવૃત્તિ %s મેળવી લો"
|
60 |
+
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
+
msgid ""
|
63 |
+
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
+
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
+
"items."
|
66 |
+
msgstr "તમારી સામાન્ય WordPress eXtended RSS (WXR) ફાઈલ ફરી અપલોડ કરો અને અમે નેવ મેનુ રોલ્સ અને બીજા નેવ મેનુ વસ્તુ માટે ના post meta આયાત કરીશું."
|
67 |
+
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
+
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
+
msgstr "WXR (.xml) ફાઇલ અપલોડ કરવા પસંદ કરો અને પછી અપલોડ ફાઇલ અને આયાત પર ક્લિક કરો"
|
71 |
+
|
72 |
+
#. translators: %s: title of menu item which is invalid
|
73 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
|
74 |
+
msgid "%s (Invalid)"
|
75 |
+
msgstr "%s (અમાન્ય)"
|
76 |
+
|
77 |
+
#. translators: %s: title of menu item in draft status
|
78 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
|
79 |
+
msgid "%s (Pending)"
|
80 |
+
msgstr "%s (બાકી)"
|
81 |
+
|
82 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
|
83 |
+
msgid "sub item"
|
84 |
+
msgstr "પેટા વસ્તુ"
|
85 |
+
|
86 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
|
87 |
+
msgid "Move up"
|
88 |
+
msgstr "ઉપર લઇ જાઓ"
|
89 |
+
|
90 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
|
91 |
+
msgid "Move down"
|
92 |
+
msgstr "નીચે લઇ જાઓ"
|
93 |
+
|
94 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
|
95 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
|
96 |
+
msgid "Edit Menu Item"
|
97 |
+
msgstr "મેનુ ને સુધારો"
|
98 |
+
|
99 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
|
100 |
+
msgid "URL"
|
101 |
+
msgstr "URL"
|
102 |
+
|
103 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
|
104 |
+
msgid "Navigation Label"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
|
108 |
+
msgid "Title Attribute"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
|
112 |
+
msgid "Open link in a new window/tab"
|
113 |
+
msgstr "નવી વિન્ડો / ટૅબમાં ખોલો"
|
114 |
+
|
115 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
|
116 |
+
msgid "CSS Classes (optional)"
|
117 |
+
msgstr "CSS Classes (વૈકલ્પિક)"
|
118 |
+
|
119 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
|
120 |
+
msgid "Link Relationship (XFN)"
|
121 |
+
msgstr "લિંક સંબંધ (XFN)"
|
122 |
+
|
123 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
|
124 |
+
msgid "Description"
|
125 |
+
msgstr "વર્ણન"
|
126 |
+
|
127 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
|
128 |
+
msgid ""
|
129 |
+
"The description will be displayed in the menu if the current theme supports "
|
130 |
+
"it."
|
131 |
+
msgstr "વર્ણન મેનુ માં દેખાશે જો થીમ સમર્થન કરશે તો"
|
132 |
+
|
133 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
|
134 |
+
msgid "Move"
|
135 |
+
msgstr "બીજે લઇ જાઓ"
|
136 |
+
|
137 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
|
138 |
+
msgid "Up one"
|
139 |
+
msgstr "એક ઉપર"
|
140 |
+
|
141 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
|
142 |
+
msgid "Down one"
|
143 |
+
msgstr "એક નીચે"
|
144 |
+
|
145 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
|
146 |
+
msgid "To the top"
|
147 |
+
msgstr "સૌથી ઉપર"
|
148 |
+
|
149 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
|
150 |
+
msgid "Original: %s"
|
151 |
+
msgstr "અસલી: %s"
|
152 |
+
|
153 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
|
154 |
+
msgid "Remove"
|
155 |
+
msgstr "દૂર કરો"
|
156 |
+
|
157 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
|
158 |
+
msgid "Cancel"
|
159 |
+
msgstr "રદ કરો"
|
160 |
+
|
161 |
+
#: nav-menu-roles.php:76 nav-menu-roles.php:85
|
162 |
+
msgid "Cheatin’ huh?"
|
163 |
+
msgstr "છેતરપિંડી હુહ?"
|
164 |
+
|
165 |
+
#. Plugin Name of the plugin/theme
|
166 |
+
msgid "Nav Menu Roles"
|
167 |
+
msgstr "નેવ મેનુ રોલ્સ"
|
168 |
+
|
169 |
+
#: nav-menu-roles.php:163
|
170 |
+
msgid ""
|
171 |
+
"Import %snav menu roles%s and other menu item meta skipped by the default "
|
172 |
+
"importer"
|
173 |
+
msgstr "%sનેવ મેનુ રોલ્સ%s આયાત કરો અને મૂળભૂત આયાતકાર દ્વારા બીજી મેનુ વસ્તુ છોડી દેવાશે"
|
174 |
+
|
175 |
+
#: nav-menu-roles.php:219
|
176 |
+
msgid ""
|
177 |
+
"Nav Menu Roles has detected a possible conflict with the following functions"
|
178 |
+
" or classes: %1$s. Please see the %2$sFAQ%3$s for more information and "
|
179 |
+
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
+
msgstr "નેવ મેનુ રોલ્સ એ શોધેલ છે કે નીચે ના functions અથવા classes અથડામણ કરે છે: %1$s. વધારા ની માહિતી અને ઉકેલ માટે મહેરબાની કરી ને %2$sFAQ%3$s જુઓ. | %4$sસૂચના છુપાડો%3$s"
|
181 |
+
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
+
msgid "Display Mode"
|
184 |
+
msgstr "પ્રદર્શન મોડ"
|
185 |
+
|
186 |
+
#: nav-menu-roles.php:324
|
187 |
+
msgid "Logged In Users"
|
188 |
+
msgstr "લોગ ઇન વપરાશકર્તાઓ"
|
189 |
+
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "લૉગ આઉટ વપરાશકર્તાઓ"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr "બધા"
|
197 |
+
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr "લોગ ઇન વપરાશકર્તાઓ ને ચોક્કસ ભૂમિકા થી મર્યાદિત કરો"
|
201 |
+
|
202 |
+
#. Plugin URI of the plugin/theme
|
203 |
+
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
204 |
+
msgstr "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
205 |
+
|
206 |
+
#. Description of the plugin/theme
|
207 |
+
msgid "Hide custom menu items based on user roles"
|
208 |
+
msgstr "custom મેનુ વસ્તુ ને વપરાશકર્તા ની ભૂમિકા ઉપર સંતાડો."
|
209 |
+
|
210 |
+
#. Author of the plugin/theme
|
211 |
+
msgid "Kathy Darling"
|
212 |
+
msgstr "Kathy Darling"
|
213 |
+
|
214 |
+
#. Author URI of the plugin/theme
|
215 |
+
msgid "http://www.kathyisawesome.com"
|
216 |
+
msgstr "http://www.kathyisawesome.com"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/nav-menu-roles-it.mo
CHANGED
Binary file
|
languages/nav-menu-roles-it.po
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Nav Menu Roles\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
-
"PO-Revision-Date:
|
10 |
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
11 |
"Language-Team: Italian (http://www.transifex.com/projects/p/nav-menu-roles/language/it/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
@@ -15,56 +15,56 @@ msgstr ""
|
|
15 |
"Language: it\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
|
18 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
msgid "Sorry, there has been an error."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
27 |
msgid "The file does not exist, please try again."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
31 |
msgid "All done."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
35 |
msgid "Have fun!"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
39 |
msgid ""
|
40 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
41 |
"this was caused by a permissions problem."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
45 |
msgid ""
|
46 |
"This WXR file (version %s) may not be supported by this version of the "
|
47 |
"importer. Please consider updating."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
51 |
msgid "Import Nav Menu Roles"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
55 |
msgid ""
|
56 |
"A new version of this importer is available. Please update to version %s to "
|
57 |
"ensure compatibility with newer export files."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
61 |
msgid ""
|
62 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
63 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
64 |
"items."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
68 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
69 |
msgstr ""
|
70 |
|
@@ -178,24 +178,24 @@ msgid ""
|
|
178 |
"possible resolution. | %4$sHide Notice%3$s"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: nav-menu-roles.php:
|
182 |
msgid "Display Mode"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: nav-menu-roles.php:
|
186 |
-
msgid "Logged
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: nav-menu-roles.php:
|
190 |
-
msgid "Logged
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: nav-menu-roles.php:
|
194 |
-
msgid "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: nav-menu-roles.php:
|
198 |
-
msgid "
|
199 |
msgstr ""
|
200 |
|
201 |
#. Plugin URI of the plugin/theme
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Nav Menu Roles\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
8 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
9 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
10 |
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
11 |
"Language-Team: Italian (http://www.transifex.com/projects/p/nav-menu-roles/language/it/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
15 |
"Language: it\n"
|
16 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
17 |
|
18 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
23 |
msgid "Sorry, there has been an error."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
27 |
msgid "The file does not exist, please try again."
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
31 |
msgid "All done."
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
35 |
msgid "Have fun!"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
39 |
msgid ""
|
40 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
41 |
"this was caused by a permissions problem."
|
42 |
msgstr ""
|
43 |
|
44 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
45 |
msgid ""
|
46 |
"This WXR file (version %s) may not be supported by this version of the "
|
47 |
"importer. Please consider updating."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
51 |
msgid "Import Nav Menu Roles"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
55 |
msgid ""
|
56 |
"A new version of this importer is available. Please update to version %s to "
|
57 |
"ensure compatibility with newer export files."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
61 |
msgid ""
|
62 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
63 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
64 |
"items."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
68 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
69 |
msgstr ""
|
70 |
|
178 |
"possible resolution. | %4$sHide Notice%3$s"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: nav-menu-roles.php:316
|
182 |
msgid "Display Mode"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: nav-menu-roles.php:324
|
186 |
+
msgid "Logged In Users"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: nav-menu-roles.php:331
|
190 |
+
msgid "Logged Out Users"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: nav-menu-roles.php:338
|
194 |
+
msgid "Everyone"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: nav-menu-roles.php:345
|
198 |
+
msgid "Limit logged in users to specific roles"
|
199 |
msgstr ""
|
200 |
|
201 |
#. Plugin URI of the plugin/theme
|
languages/nav-menu-roles-pt_BR.mo
ADDED
File without changes
|
languages/nav-menu-roles-pt_BR.po
ADDED
@@ -0,0 +1,216 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
+
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
+
# Translators:
|
4 |
+
# Bruno <brunodanca@gmail.com>, 2015
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-07-31 00:06+0000\n"
|
11 |
+
"Last-Translator: Bruno <brunodanca@gmail.com>\n"
|
12 |
+
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/nav-menu-roles/language/pt_BR/)\n"
|
13 |
+
"MIME-Version: 1.0\n"
|
14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
16 |
+
"Language: pt_BR\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
18 |
+
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
+
msgid "Sorry, there has been an error."
|
25 |
+
msgstr "Desculpe, houve um erro."
|
26 |
+
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
+
msgid "The file does not exist, please try again."
|
29 |
+
msgstr "O arquivo não existe, por favor, tente novamente."
|
30 |
+
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
+
msgid "All done."
|
33 |
+
msgstr "Tudo pronto."
|
34 |
+
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
+
msgid "Have fun!"
|
37 |
+
msgstr "Divirta-se!"
|
38 |
+
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
+
msgid ""
|
41 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
+
"this was caused by a permissions problem."
|
43 |
+
msgstr "O arquivo exportado não pôde ser encontrado em <code>%s</code>. \nÉ o tipo de problema causado por permissões incorretas."
|
44 |
+
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
+
msgid ""
|
47 |
+
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
+
"importer. Please consider updating."
|
49 |
+
msgstr "Este arquivo WXR (versão %s) pode não ser suportado por esta versão do importador. Considere fazer a atualização."
|
50 |
+
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
+
msgid "Import Nav Menu Roles"
|
53 |
+
msgstr "Importar Nav Menu Roles"
|
54 |
+
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
+
msgid ""
|
57 |
+
"A new version of this importer is available. Please update to version %s to "
|
58 |
+
"ensure compatibility with newer export files."
|
59 |
+
msgstr "Uma nova versão do importador está disponível. Por favor, atualize para a versão %s e assegure compatibilidade com o novo exportador de arquivos."
|
60 |
+
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
+
msgid ""
|
63 |
+
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
+
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
+
"items."
|
66 |
+
msgstr "Re-faça o upload do arquivo do WordPress eXtended RSS (WXR) e faremos a importação do Nav Menu Roles juntamente com outros metadados perdidos."
|
67 |
+
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
+
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
+
msgstr "Escolha um arquivo WXR (.xml), então clique em Enviar arquivo e importar."
|
71 |
+
|
72 |
+
#. translators: %s: title of menu item which is invalid
|
73 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
|
74 |
+
msgid "%s (Invalid)"
|
75 |
+
msgstr "%s (Inválido)"
|
76 |
+
|
77 |
+
#. translators: %s: title of menu item in draft status
|
78 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
|
79 |
+
msgid "%s (Pending)"
|
80 |
+
msgstr "%s (Pendente)"
|
81 |
+
|
82 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
|
83 |
+
msgid "sub item"
|
84 |
+
msgstr "subitem"
|
85 |
+
|
86 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
|
87 |
+
msgid "Move up"
|
88 |
+
msgstr "Mover para cima"
|
89 |
+
|
90 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
|
91 |
+
msgid "Move down"
|
92 |
+
msgstr "Mover para baixo"
|
93 |
+
|
94 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
|
95 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
|
96 |
+
msgid "Edit Menu Item"
|
97 |
+
msgstr "Editar item do menu"
|
98 |
+
|
99 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
|
100 |
+
msgid "URL"
|
101 |
+
msgstr "Endereço"
|
102 |
+
|
103 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
|
104 |
+
msgid "Navigation Label"
|
105 |
+
msgstr "Rótulo de navegação"
|
106 |
+
|
107 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
|
108 |
+
msgid "Title Attribute"
|
109 |
+
msgstr "Atributo Título"
|
110 |
+
|
111 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
|
112 |
+
msgid "Open link in a new window/tab"
|
113 |
+
msgstr "Abrir link em nova janela"
|
114 |
+
|
115 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
|
116 |
+
msgid "CSS Classes (optional)"
|
117 |
+
msgstr "Classes CSS (opcional)"
|
118 |
+
|
119 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
|
120 |
+
msgid "Link Relationship (XFN)"
|
121 |
+
msgstr "Relacionamento do link (XFN)"
|
122 |
+
|
123 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
|
124 |
+
msgid "Description"
|
125 |
+
msgstr "Descrição"
|
126 |
+
|
127 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
|
128 |
+
msgid ""
|
129 |
+
"The description will be displayed in the menu if the current theme supports "
|
130 |
+
"it."
|
131 |
+
msgstr "A descrição será exibida no menu se o tema atual suportar isso."
|
132 |
+
|
133 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
|
134 |
+
msgid "Move"
|
135 |
+
msgstr "Mover"
|
136 |
+
|
137 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
|
138 |
+
msgid "Up one"
|
139 |
+
msgstr "Um a cima"
|
140 |
+
|
141 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
|
142 |
+
msgid "Down one"
|
143 |
+
msgstr "Um para baixo"
|
144 |
+
|
145 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
|
146 |
+
msgid "To the top"
|
147 |
+
msgstr "Para o topo"
|
148 |
+
|
149 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
|
150 |
+
msgid "Original: %s"
|
151 |
+
msgstr "Original: %s"
|
152 |
+
|
153 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
|
154 |
+
msgid "Remove"
|
155 |
+
msgstr "Remover"
|
156 |
+
|
157 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
|
158 |
+
msgid "Cancel"
|
159 |
+
msgstr "Cancelar"
|
160 |
+
|
161 |
+
#: nav-menu-roles.php:76 nav-menu-roles.php:85
|
162 |
+
msgid "Cheatin’ huh?"
|
163 |
+
msgstr "Trapaceando, heim?"
|
164 |
+
|
165 |
+
#. Plugin Name of the plugin/theme
|
166 |
+
msgid "Nav Menu Roles"
|
167 |
+
msgstr "Nav Menu Roles"
|
168 |
+
|
169 |
+
#: nav-menu-roles.php:163
|
170 |
+
msgid ""
|
171 |
+
"Import %snav menu roles%s and other menu item meta skipped by the default "
|
172 |
+
"importer"
|
173 |
+
msgstr "Importar %snav menu roles%s a outros metadados de itens de menu que foram esquecidos pelo importador padrão."
|
174 |
+
|
175 |
+
#: nav-menu-roles.php:219
|
176 |
+
msgid ""
|
177 |
+
"Nav Menu Roles has detected a possible conflict with the following functions"
|
178 |
+
" or classes: %1$s. Please see the %2$sFAQ%3$s for more information and "
|
179 |
+
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
+
msgstr "Nav Menu Roles detectou um possível conflito com as seguintes funções ou classes: %1$s. Por favor, veja o %2$sFAQ%3$s para mais informações e possíveis soluções. | %4$sDispensar%3$s"
|
181 |
+
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
+
msgid "Display Mode"
|
184 |
+
msgstr "Modo de exibição"
|
185 |
+
|
186 |
+
#: nav-menu-roles.php:324
|
187 |
+
msgid "Logged In Users"
|
188 |
+
msgstr "Usuários logados"
|
189 |
+
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "Usuários não logados"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr "Todo mundo"
|
197 |
+
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr "Limite usuário logados para funções específicas"
|
201 |
+
|
202 |
+
#. Plugin URI of the plugin/theme
|
203 |
+
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
204 |
+
msgstr "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
205 |
+
|
206 |
+
#. Description of the plugin/theme
|
207 |
+
msgid "Hide custom menu items based on user roles"
|
208 |
+
msgstr "Esconda itens personalizados de menu baseado nas funções do usuário"
|
209 |
+
|
210 |
+
#. Author of the plugin/theme
|
211 |
+
msgid "Kathy Darling"
|
212 |
+
msgstr "Kathy Darling"
|
213 |
+
|
214 |
+
#. Author URI of the plugin/theme
|
215 |
+
msgid "http://www.kathyisawesome.com"
|
216 |
+
msgstr "http://www.kathyisawesome.com"
|
languages/nav-menu-roles-sv_SE.mo
CHANGED
Binary file
|
languages/nav-menu-roles-sv_SE.po
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Björn Sennbrink <konsult@sennbrink.se>, 2014
|
@@ -6,9 +6,9 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
-
"POT-Creation-Date:
|
10 |
-
"PO-Revision-Date:
|
11 |
-
"Last-Translator:
|
12 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/nav-menu-roles/language/sv_SE/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -16,56 +16,56 @@ msgstr ""
|
|
16 |
"Language: sv_SE\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
20 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
21 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
22 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
23 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "Tyvärr, något gick fel."
|
26 |
|
27 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "Filen finns inte, vänligen försök igen."
|
30 |
|
31 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
32 |
msgid "All done."
|
33 |
msgstr "Allt klart."
|
34 |
|
35 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
36 |
msgid "Have fun!"
|
37 |
msgstr "Ha det så trevligt!"
|
38 |
|
39 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "Exportfilen kunde inte hittas vid <code>%s</code>. Troligen beror detta på ett behörighetsproblem."
|
44 |
|
45 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "Den här WXR-filen (version %s) saknas det kanske stöd för i den här versionen av importfunktionen. Vänligen överväg att uppdatera."
|
50 |
|
51 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "Importera Nav Meny-roller"
|
54 |
|
55 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "En ny version av den här importversionen finns tillgänglig. Vänligen uppdatera till version %s för att säkra kompatibilitet med nyare exportfiler. "
|
60 |
|
61 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "Återuppladda din normala WordPress eXtended RSS-fil (WXR) och vi kommer att importera Nav Menu-rollerna och all annan saknad postmeta för menyvalen i Nav Menu."
|
67 |
|
68 |
-
#: inc/class.Nav_Menu_Roles_Import.php:
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "Välj en WXR-fil (.xml) att ladda upp, klicka på Ladda upp och importera."
|
71 |
|
@@ -179,25 +179,25 @@ msgid ""
|
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles har upptäckt en möjlig konflikt med följande funktioner eller klasser: %s1$s. Var god se %2$sFAQ%3$s för mer information och en möjlig lösning. | %4$sDölj notis%3$s"
|
181 |
|
182 |
-
#: nav-menu-roles.php:
|
183 |
msgid "Display Mode"
|
184 |
msgstr "Synlighet"
|
185 |
|
186 |
-
#: nav-menu-roles.php:
|
187 |
-
msgid "Logged Out Users"
|
188 |
-
msgstr "Ej inloggade användare"
|
189 |
-
|
190 |
-
#: nav-menu-roles.php:304
|
191 |
msgid "Logged In Users"
|
192 |
msgstr "Inloggade användare"
|
193 |
|
194 |
-
#: nav-menu-roles.php:
|
195 |
-
msgid "
|
196 |
-
msgstr "
|
|
|
|
|
|
|
|
|
197 |
|
198 |
-
#: nav-menu-roles.php:
|
199 |
-
msgid "
|
200 |
-
msgstr "
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
# Translators:
|
4 |
# Björn Sennbrink <konsult@sennbrink.se>, 2014
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: Nav Menu Roles\n"
|
8 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
9 |
+
"POT-Creation-Date: 2015-04-30 07:17:10+00:00\n"
|
10 |
+
"PO-Revision-Date: 2015-04-30 07:38+0000\n"
|
11 |
+
"Last-Translator: Kathy Darling <helgatheviking@gmail.com>\n"
|
12 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/nav-menu-roles/language/sv_SE/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Language: sv_SE\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
20 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
21 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
22 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
24 |
msgid "Sorry, there has been an error."
|
25 |
msgstr "Tyvärr, något gick fel."
|
26 |
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
28 |
msgid "The file does not exist, please try again."
|
29 |
msgstr "Filen finns inte, vänligen försök igen."
|
30 |
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
msgid "All done."
|
33 |
msgstr "Allt klart."
|
34 |
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
36 |
msgid "Have fun!"
|
37 |
msgstr "Ha det så trevligt!"
|
38 |
|
39 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
40 |
msgid ""
|
41 |
"The export file could not be found at <code>%s</code>. It is likely that "
|
42 |
"this was caused by a permissions problem."
|
43 |
msgstr "Exportfilen kunde inte hittas vid <code>%s</code>. Troligen beror detta på ett behörighetsproblem."
|
44 |
|
45 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
46 |
msgid ""
|
47 |
"This WXR file (version %s) may not be supported by this version of the "
|
48 |
"importer. Please consider updating."
|
49 |
msgstr "Den här WXR-filen (version %s) saknas det kanske stöd för i den här versionen av importfunktionen. Vänligen överväg att uppdatera."
|
50 |
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
52 |
msgid "Import Nav Menu Roles"
|
53 |
msgstr "Importera Nav Meny-roller"
|
54 |
|
55 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
56 |
msgid ""
|
57 |
"A new version of this importer is available. Please update to version %s to "
|
58 |
"ensure compatibility with newer export files."
|
59 |
msgstr "En ny version av den här importversionen finns tillgänglig. Vänligen uppdatera till version %s för att säkra kompatibilitet med nyare exportfiler. "
|
60 |
|
61 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
62 |
msgid ""
|
63 |
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
64 |
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
65 |
"items."
|
66 |
msgstr "Återuppladda din normala WordPress eXtended RSS-fil (WXR) och vi kommer att importera Nav Menu-rollerna och all annan saknad postmeta för menyvalen i Nav Menu."
|
67 |
|
68 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
69 |
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
70 |
msgstr "Välj en WXR-fil (.xml) att ladda upp, klicka på Ladda upp och importera."
|
71 |
|
179 |
"possible resolution. | %4$sHide Notice%3$s"
|
180 |
msgstr "Nav Menu Roles har upptäckt en möjlig konflikt med följande funktioner eller klasser: %s1$s. Var god se %2$sFAQ%3$s för mer information och en möjlig lösning. | %4$sDölj notis%3$s"
|
181 |
|
182 |
+
#: nav-menu-roles.php:316
|
183 |
msgid "Display Mode"
|
184 |
msgstr "Synlighet"
|
185 |
|
186 |
+
#: nav-menu-roles.php:324
|
|
|
|
|
|
|
|
|
187 |
msgid "Logged In Users"
|
188 |
msgstr "Inloggade användare"
|
189 |
|
190 |
+
#: nav-menu-roles.php:331
|
191 |
+
msgid "Logged Out Users"
|
192 |
+
msgstr "Ej inloggade användare"
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:338
|
195 |
+
msgid "Everyone"
|
196 |
+
msgstr ""
|
197 |
|
198 |
+
#: nav-menu-roles.php:345
|
199 |
+
msgid "Limit logged in users to specific roles"
|
200 |
+
msgstr ""
|
201 |
|
202 |
#. Plugin URI of the plugin/theme
|
203 |
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
languages/nav-menu-roles.pot
CHANGED
@@ -1,212 +1,212 @@
|
|
1 |
-
# Copyright (C) 2015 Nav Menu Roles
|
2 |
-
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
-
msgid ""
|
4 |
-
msgstr ""
|
5 |
-
"Project-Id-Version: Nav Menu Roles 1.
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
-
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
-
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
12 |
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
-
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
-
|
15 |
-
#: inc/class.Nav_Menu_Roles_Import.php:106
|
16 |
-
#: inc/class.Nav_Menu_Roles_Import.php:115
|
17 |
-
#: inc/class.Nav_Menu_Roles_Import.php:161
|
18 |
-
#: inc/class.Nav_Menu_Roles_Import.php:165
|
19 |
-
#: inc/class.Nav_Menu_Roles_Import.php:174
|
20 |
-
msgid "Sorry, there has been an error."
|
21 |
-
msgstr ""
|
22 |
-
|
23 |
-
#: inc/class.Nav_Menu_Roles_Import.php:107
|
24 |
-
msgid "The file does not exist, please try again."
|
25 |
-
msgstr ""
|
26 |
-
|
27 |
-
#: inc/class.Nav_Menu_Roles_Import.php:146
|
28 |
-
msgid "All done."
|
29 |
-
msgstr ""
|
30 |
-
|
31 |
-
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
-
msgid "Have fun!"
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: inc/class.Nav_Menu_Roles_Import.php:166
|
36 |
-
msgid ""
|
37 |
-
"The export file could not be found at <code>%s</code>. It is likely that "
|
38 |
-
"this was caused by a permissions problem."
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: inc/class.Nav_Menu_Roles_Import.php:182
|
42 |
-
msgid ""
|
43 |
-
"This WXR file (version %s) may not be supported by this version of the "
|
44 |
-
"importer. Please consider updating."
|
45 |
-
msgstr ""
|
46 |
-
|
47 |
-
#: inc/class.Nav_Menu_Roles_Import.php:250
|
48 |
-
msgid "Import Nav Menu Roles"
|
49 |
-
msgstr ""
|
50 |
-
|
51 |
-
#: inc/class.Nav_Menu_Roles_Import.php:257
|
52 |
-
msgid ""
|
53 |
-
"A new version of this importer is available. Please update to version %s to "
|
54 |
-
"ensure compatibility with newer export files."
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: inc/class.Nav_Menu_Roles_Import.php:272
|
58 |
-
msgid ""
|
59 |
-
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
60 |
-
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
61 |
-
"items."
|
62 |
-
msgstr ""
|
63 |
-
|
64 |
-
#: inc/class.Nav_Menu_Roles_Import.php:273
|
65 |
-
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
|
69 |
-
#. translators: %s: title of menu item which is invalid
|
70 |
-
msgid "%s (Invalid)"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
|
74 |
-
#. translators: %s: title of menu item in draft status
|
75 |
-
msgid "%s (Pending)"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
|
79 |
-
msgid "sub item"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
|
83 |
-
msgid "Move up"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
|
87 |
-
msgid "Move down"
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
|
91 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
|
92 |
-
msgid "Edit Menu Item"
|
93 |
-
msgstr ""
|
94 |
-
|
95 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
|
96 |
-
msgid "URL"
|
97 |
-
msgstr ""
|
98 |
-
|
99 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
|
100 |
-
msgid "Navigation Label"
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
|
104 |
-
msgid "Title Attribute"
|
105 |
-
msgstr ""
|
106 |
-
|
107 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
|
108 |
-
msgid "Open link in a new window/tab"
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
|
112 |
-
msgid "CSS Classes (optional)"
|
113 |
-
msgstr ""
|
114 |
-
|
115 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
|
116 |
-
msgid "Link Relationship (XFN)"
|
117 |
-
msgstr ""
|
118 |
-
|
119 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
|
120 |
-
msgid "Description"
|
121 |
-
msgstr ""
|
122 |
-
|
123 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
|
124 |
-
msgid ""
|
125 |
-
"The description will be displayed in the menu if the current theme supports "
|
126 |
-
"it."
|
127 |
-
msgstr ""
|
128 |
-
|
129 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
|
130 |
-
msgid "Move"
|
131 |
-
msgstr ""
|
132 |
-
|
133 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
|
134 |
-
msgid "Up one"
|
135 |
-
msgstr ""
|
136 |
-
|
137 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
|
138 |
-
msgid "Down one"
|
139 |
-
msgstr ""
|
140 |
-
|
141 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
|
142 |
-
msgid "To the top"
|
143 |
-
msgstr ""
|
144 |
-
|
145 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
|
146 |
-
msgid "Original: %s"
|
147 |
-
msgstr ""
|
148 |
-
|
149 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
|
150 |
-
msgid "Remove"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
|
154 |
-
msgid "Cancel"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: nav-menu-roles.php:
|
158 |
-
msgid "Cheatin’ huh?"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#. Plugin Name of the plugin/theme
|
162 |
-
msgid "Nav Menu Roles"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: nav-menu-roles.php:
|
166 |
-
msgid ""
|
167 |
-
"Import %snav menu roles%s and other menu item meta skipped by the default "
|
168 |
-
"importer"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: nav-menu-roles.php:
|
172 |
-
msgid ""
|
173 |
-
"Nav Menu Roles has detected a possible conflict with the following "
|
174 |
-
"functions or classes: %1$s. Please see the %2$sFAQ%3$s for more information "
|
175 |
-
"and possible resolution. | %4$sHide Notice%3$s"
|
176 |
-
msgstr ""
|
177 |
-
|
178 |
-
#: nav-menu-roles.php:
|
179 |
-
msgid "Display Mode"
|
180 |
-
msgstr ""
|
181 |
-
|
182 |
-
#: nav-menu-roles.php:
|
183 |
-
msgid "Logged In Users"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: nav-menu-roles.php:
|
187 |
-
msgid "Logged Out Users"
|
188 |
-
msgstr ""
|
189 |
-
|
190 |
-
#: nav-menu-roles.php:
|
191 |
-
msgid "Everyone"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: nav-menu-roles.php:
|
195 |
-
msgid "Limit logged in users to specific roles"
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#. Plugin URI of the plugin/theme
|
199 |
-
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
200 |
-
msgstr ""
|
201 |
-
|
202 |
-
#. Description of the plugin/theme
|
203 |
-
msgid "Hide custom menu items based on user roles"
|
204 |
-
msgstr ""
|
205 |
-
|
206 |
-
#. Author of the plugin/theme
|
207 |
-
msgid "Kathy Darling"
|
208 |
-
msgstr ""
|
209 |
-
|
210 |
-
#. Author URI of the plugin/theme
|
211 |
-
msgid "http://www.kathyisawesome.com"
|
212 |
msgstr ""
|
1 |
+
# Copyright (C) 2015 Nav Menu Roles
|
2 |
+
# This file is distributed under the same license as the Nav Menu Roles package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Nav Menu Roles 1.7.1\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/nav-menu-roles\n"
|
7 |
+
"POT-Creation-Date: 2015-07-31 01:01:52+00:00\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
12 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
+
|
15 |
+
#: inc/class.Nav_Menu_Roles_Import.php:106
|
16 |
+
#: inc/class.Nav_Menu_Roles_Import.php:115
|
17 |
+
#: inc/class.Nav_Menu_Roles_Import.php:161
|
18 |
+
#: inc/class.Nav_Menu_Roles_Import.php:165
|
19 |
+
#: inc/class.Nav_Menu_Roles_Import.php:174
|
20 |
+
msgid "Sorry, there has been an error."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: inc/class.Nav_Menu_Roles_Import.php:107
|
24 |
+
msgid "The file does not exist, please try again."
|
25 |
+
msgstr ""
|
26 |
+
|
27 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
28 |
+
msgid "All done."
|
29 |
+
msgstr ""
|
30 |
+
|
31 |
+
#: inc/class.Nav_Menu_Roles_Import.php:146
|
32 |
+
msgid "Have fun!"
|
33 |
+
msgstr ""
|
34 |
+
|
35 |
+
#: inc/class.Nav_Menu_Roles_Import.php:166
|
36 |
+
msgid ""
|
37 |
+
"The export file could not be found at <code>%s</code>. It is likely that "
|
38 |
+
"this was caused by a permissions problem."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: inc/class.Nav_Menu_Roles_Import.php:182
|
42 |
+
msgid ""
|
43 |
+
"This WXR file (version %s) may not be supported by this version of the "
|
44 |
+
"importer. Please consider updating."
|
45 |
+
msgstr ""
|
46 |
+
|
47 |
+
#: inc/class.Nav_Menu_Roles_Import.php:250
|
48 |
+
msgid "Import Nav Menu Roles"
|
49 |
+
msgstr ""
|
50 |
+
|
51 |
+
#: inc/class.Nav_Menu_Roles_Import.php:257
|
52 |
+
msgid ""
|
53 |
+
"A new version of this importer is available. Please update to version %s to "
|
54 |
+
"ensure compatibility with newer export files."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: inc/class.Nav_Menu_Roles_Import.php:272
|
58 |
+
msgid ""
|
59 |
+
"Re-Upload your normal WordPress eXtended RSS (WXR) file and we’ll "
|
60 |
+
"import the Nav Menu Roles and any other missing post meta for the Nav Menu "
|
61 |
+
"items."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: inc/class.Nav_Menu_Roles_Import.php:273
|
65 |
+
msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
|
69 |
+
#. translators: %s: title of menu item which is invalid
|
70 |
+
msgid "%s (Invalid)"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
|
74 |
+
#. translators: %s: title of menu item in draft status
|
75 |
+
msgid "%s (Pending)"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
|
79 |
+
msgid "sub item"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
|
83 |
+
msgid "Move up"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
|
87 |
+
msgid "Move down"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
|
91 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
|
92 |
+
msgid "Edit Menu Item"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
|
96 |
+
msgid "URL"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
|
100 |
+
msgid "Navigation Label"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
|
104 |
+
msgid "Title Attribute"
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
|
108 |
+
msgid "Open link in a new window/tab"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
|
112 |
+
msgid "CSS Classes (optional)"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
|
116 |
+
msgid "Link Relationship (XFN)"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
|
120 |
+
msgid "Description"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
|
124 |
+
msgid ""
|
125 |
+
"The description will be displayed in the menu if the current theme supports "
|
126 |
+
"it."
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
|
130 |
+
msgid "Move"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
|
134 |
+
msgid "Up one"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
|
138 |
+
msgid "Down one"
|
139 |
+
msgstr ""
|
140 |
+
|
141 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
|
142 |
+
msgid "To the top"
|
143 |
+
msgstr ""
|
144 |
+
|
145 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
|
146 |
+
msgid "Original: %s"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
|
150 |
+
msgid "Remove"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
|
154 |
+
msgid "Cancel"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: nav-menu-roles.php:82 nav-menu-roles.php:91
|
158 |
+
msgid "Cheatin’ huh?"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#. Plugin Name of the plugin/theme
|
162 |
+
msgid "Nav Menu Roles"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: nav-menu-roles.php:169
|
166 |
+
msgid ""
|
167 |
+
"Import %snav menu roles%s and other menu item meta skipped by the default "
|
168 |
+
"importer"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: nav-menu-roles.php:225
|
172 |
+
msgid ""
|
173 |
+
"Nav Menu Roles has detected a possible conflict with the following "
|
174 |
+
"functions or classes: %1$s. Please see the %2$sFAQ%3$s for more information "
|
175 |
+
"and possible resolution. | %4$sHide Notice%3$s"
|
176 |
+
msgstr ""
|
177 |
+
|
178 |
+
#: nav-menu-roles.php:322
|
179 |
+
msgid "Display Mode"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: nav-menu-roles.php:330
|
183 |
+
msgid "Logged In Users"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: nav-menu-roles.php:337
|
187 |
+
msgid "Logged Out Users"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: nav-menu-roles.php:344
|
191 |
+
msgid "Everyone"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: nav-menu-roles.php:351
|
195 |
+
msgid "Limit logged in users to specific roles"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#. Plugin URI of the plugin/theme
|
199 |
+
msgid "http://www.kathyisawesome.com/449/nav-menu-roles/"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#. Description of the plugin/theme
|
203 |
+
msgid "Hide custom menu items based on user roles"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#. Author of the plugin/theme
|
207 |
+
msgid "Kathy Darling"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#. Author URI of the plugin/theme
|
211 |
+
msgid "http://www.kathyisawesome.com"
|
212 |
msgstr ""
|
nav-menu-roles.php
CHANGED
@@ -3,10 +3,11 @@
|
|
3 |
Plugin Name: Nav Menu Roles
|
4 |
Plugin URI: http://www.kathyisawesome.com/449/nav-menu-roles/
|
5 |
Description: Hide custom menu items based on user roles
|
6 |
-
Version: 1.7.
|
7 |
Author: Kathy Darling
|
8 |
Author URI: http://www.kathyisawesome.com
|
9 |
License: GPL2
|
|
|
10 |
|
11 |
Copyright 2014 Kathy Darling(email: kathy.darling@gmail.com)
|
12 |
|
@@ -50,6 +51,12 @@ class Nav_Menu_Roles {
|
|
50 |
*/
|
51 |
public static $donate_url = "https://inspirepay.com/pay/helgatheviking";
|
52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
/**
|
54 |
* Main Nav Menu Roles Instance
|
55 |
*
|
@@ -379,7 +386,7 @@ class Nav_Menu_Roles {
|
|
379 |
function enqueue_scripts( $hook ){
|
380 |
if ( $hook == 'nav-menus.php' ){
|
381 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
382 |
-
wp_enqueue_script( 'nav-menu-roles', plugins_url( 'js/nav-menu-roles' . $suffix . '.js' , __FILE__ ), array( 'jquery' ),
|
383 |
}
|
384 |
}
|
385 |
|
3 |
Plugin Name: Nav Menu Roles
|
4 |
Plugin URI: http://www.kathyisawesome.com/449/nav-menu-roles/
|
5 |
Description: Hide custom menu items based on user roles
|
6 |
+
Version: 1.7.1
|
7 |
Author: Kathy Darling
|
8 |
Author URI: http://www.kathyisawesome.com
|
9 |
License: GPL2
|
10 |
+
Text Domain: nav-menu-roles
|
11 |
|
12 |
Copyright 2014 Kathy Darling(email: kathy.darling@gmail.com)
|
13 |
|
51 |
*/
|
52 |
public static $donate_url = "https://inspirepay.com/pay/helgatheviking";
|
53 |
|
54 |
+
/**
|
55 |
+
* @var string version number
|
56 |
+
* @since 1.7.1
|
57 |
+
*/
|
58 |
+
public $version = '1.7.1';
|
59 |
+
|
60 |
/**
|
61 |
* Main Nav Menu Roles Instance
|
62 |
*
|
386 |
function enqueue_scripts( $hook ){
|
387 |
if ( $hook == 'nav-menus.php' ){
|
388 |
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
|
389 |
+
wp_enqueue_script( 'nav-menu-roles', plugins_url( 'js/nav-menu-roles' . $suffix . '.js' , __FILE__ ), array( 'jquery' ), $this->version, true );
|
390 |
}
|
391 |
}
|
392 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://inspirepay.com/pay/helgatheviking
|
|
5 |
Tags: menu, menus, nav menu, nav menus
|
6 |
Requires at least: 3.8
|
7 |
Tested up to: 4.2
|
8 |
-
Stable tag: 1.7.
|
9 |
License: GPLv3
|
10 |
|
11 |
Hide custom menu items based on user roles
|
@@ -66,19 +66,64 @@ WordPress does not have sufficient hooks in this area of the admin and until the
|
|
66 |
|
67 |
|
68 |
= <a name="compatibility"></a>Workaround #1 =
|
69 |
-
Shazdeh
|
70 |
|
71 |
-
Therefore, as of version 1.6 I am modifying my admin
|
72 |
|
73 |
`
|
74 |
<?php
|
75 |
-
//
|
76 |
do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args );
|
77 |
// end added section
|
78 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
79 |
`
|
80 |
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
= Workaround #2 =
|
84 |
|
@@ -160,6 +205,11 @@ However, the Import plugin only imports certain post meta for menu items. As of
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
|
|
|
|
163 |
= 1.7.0 =
|
164 |
* adjust admin UI to be more user-friendly. Options are now: show to everyone, show to logged out users, and show to logged in users (optionally, logged in users by specific role)
|
165 |
|
5 |
Tags: menu, menus, nav menu, nav menus
|
6 |
Requires at least: 3.8
|
7 |
Tested up to: 4.2
|
8 |
+
Stable tag: 1.7.1
|
9 |
License: GPLv3
|
10 |
|
11 |
Hide custom menu items based on user roles
|
66 |
|
67 |
|
68 |
= <a name="compatibility"></a>Workaround #1 =
|
69 |
+
[Shazdeh](https://profiles.wordpress.org/shazdeh/) had the genius idea to not wait for a core hook and simply add the hook ourselves. If all plugin and theme authors use the same hook, we can make our plugins play together.
|
70 |
|
71 |
+
Therefore, as of version 1.6 I am modifying my admin nav menu Walker to *only* adding the following lines (right after the description input):
|
72 |
|
73 |
`
|
74 |
<?php
|
75 |
+
// Place this in your admin nav menu Walker
|
76 |
do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args );
|
77 |
// end added section
|
78 |
?>
|
79 |
+
`
|
80 |
+
|
81 |
+
**Ask your conflicting plugin/theme's author to add this code to his plugin or theme and our plugins will become compatible.**
|
82 |
+
|
83 |
+
= <a name="patch"></a>Patching Your Plugin/Theme =
|
84 |
+
|
85 |
+
Should you wish to attempt this patch yourself, you can modify your conflicting plugin/theme's admin menu Walker class. **Reminder: I do not provide support for fixing your plugin/theme. If you aren't comfortable with the following instructions, contact the developer of the conflicting plugin/theme!**
|
86 |
+
|
87 |
+
1. Find the class that extends the `Walker_Nav_Menu`. As a hint, it is filtering `wp_edit_nav_menu_walker` and you might even be getting a warning about it from Nav Menu Roles. Example:
|
88 |
+
|
89 |
+
`
|
90 |
+
add_filter( 'wp_edit_nav_menu_walker', 'sample_edit_nav_menu_walker');
|
91 |
+
function sample_edit_nav_menu_walker( $walker ) {
|
92 |
+
return 'Walker_Nav_Menu_Edit_Roles'; // this is the class name
|
93 |
+
}
|
94 |
`
|
95 |
|
96 |
+
2. Find the file for the extending class. In my plugin this is in a file located at `inc/class.Walker_Nav_Menu_Edit_Roles.php`. I can't know *where* this file is in your plugin/theme. Please don't ask me, but here's what the beginning of that class will look like:
|
97 |
+
|
98 |
+
`class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {}`
|
99 |
+
|
100 |
+
Note that the class name is the same as the class name you found in step 1.
|
101 |
+
|
102 |
+
3. Find the `start_el()` method
|
103 |
+
|
104 |
+
In that file you will eventually see a class method that looks like:
|
105 |
+
|
106 |
+
`function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {`
|
107 |
+
|
108 |
+
4. Paste my action hook somewhere in this method!
|
109 |
+
|
110 |
+
In Nav Menu Roles, I have placed the hook directly after the description, ex:
|
111 |
+
|
112 |
+
`
|
113 |
+
<p class="field-description description description-wide">
|
114 |
+
<label for="edit-menu-item-description-<?php echo $item_id; ?>">
|
115 |
+
<?php _e( 'Description' ); ?><br />
|
116 |
+
<textarea id="edit-menu-item-description-<?php echo $item_id; ?>" class="widefat edit-menu-item-description" rows="3" cols="20" name="menu-item-description[<?php echo $item_id; ?>]"><?php echo esc_html( $item->description ); // textarea_escaped ?></textarea>
|
117 |
+
<span class="description"><?php _e('The description will be displayed in the menu if the current theme supports it.'); ?></span>
|
118 |
+
</label>
|
119 |
+
</p>
|
120 |
+
|
121 |
+
<?php
|
122 |
+
// Add this directly after the description paragraph in the start_el() method
|
123 |
+
do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args );
|
124 |
+
// end added section
|
125 |
+
?>
|
126 |
+
`
|
127 |
|
128 |
= Workaround #2 =
|
129 |
|
205 |
|
206 |
== Changelog ==
|
207 |
|
208 |
+
= 1.7.1 =
|
209 |
+
* Updated FAQ with patch instructions for conflicting plugins/themes
|
210 |
+
* add Italian language. props @sododesign
|
211 |
+
* add Portugeuse language. props @brunobarros
|
212 |
+
|
213 |
= 1.7.0 =
|
214 |
* adjust admin UI to be more user-friendly. Options are now: show to everyone, show to logged out users, and show to logged in users (optionally, logged in users by specific role)
|
215 |
|