Nav Menu Roles - Version 1.8.6

Version Description

Download this release

Release Info

Developer deployer
Plugin Icon 128x128 Nav Menu Roles
Version 1.8.6
Comparing to
See all releases

Code changes from version 1.8.5 to 1.8.6

inc/class.Walker_Nav_Menu_Edit_Roles_4.7.php CHANGED
@@ -1,53 +1,20 @@
1
  <?php
2
  /**
3
- * Navigation Menu API: Walker_Nav_Menu_Edit class
 
 
 
4
  *
5
- * @package WordPress
6
- * @subpackage Administration
7
- * @since 4.4.0
8
  */
9
-
10
- /**
11
- * Create HTML list of nav menu input items.
12
- *
13
- * @package WordPress
14
- * @since 3.0.0
15
- * @uses Walker_Nav_Menu
16
- */
17
- class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
18
- /**
19
- * Starts the list before the elements are added.
20
- *
21
- * @see Walker_Nav_Menu::start_lvl()
22
- *
23
- * @since 3.0.0
24
- *
25
- * @param string $output Passed by reference.
26
- * @param int $depth Depth of menu item. Used for padding.
27
- * @param array $args Not used.
28
- */
29
- public function start_lvl( &$output, $depth = 0, $args = array() ) {}
30
-
31
- /**
32
- * Ends the list of after the elements are added.
33
- *
34
- * @see Walker_Nav_Menu::end_lvl()
35
- *
36
- * @since 3.0.0
37
- *
38
- * @param string $output Passed by reference.
39
- * @param int $depth Depth of menu item. Used for padding.
40
- * @param array $args Not used.
41
- */
42
- public function end_lvl( &$output, $depth = 0, $args = array() ) {}
43
 
44
  /**
45
  * Start the element output.
46
  *
47
  * @see Walker_Nav_Menu::start_el()
48
- * @since 3.0.0
49
- *
50
- * @global int $_wp_nav_menu_max_depth
51
  *
52
  * @param string $output Passed by reference. Used to append additional content.
53
  * @param object $item Menu item data object.
@@ -56,192 +23,47 @@ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu {
56
  * @param int $id Not used.
57
  */
58
  public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
59
- global $_wp_nav_menu_max_depth;
60
- $_wp_nav_menu_max_depth = $depth > $_wp_nav_menu_max_depth ? $depth : $_wp_nav_menu_max_depth;
61
-
62
- ob_start();
63
- $item_id = esc_attr( $item->ID );
64
- $removed_args = array(
65
- 'action',
66
- 'customlink-tab',
67
- 'edit-menu-item',
68
- 'menu-item',
69
- 'page-tab',
70
- '_wpnonce',
71
- );
72
-
73
- $original_title = false;
74
- if ( 'taxonomy' == $item->type ) {
75
- $original_title = get_term_field( 'name', $item->object_id, $item->object, 'raw' );
76
- if ( is_wp_error( $original_title ) )
77
- $original_title = false;
78
- } elseif ( 'post_type' == $item->type ) {
79
- $original_object = get_post( $item->object_id );
80
- $original_title = get_the_title( $original_object->ID );
81
- } elseif ( 'post_type_archive' == $item->type ) {
82
- $original_object = get_post_type_object( $item->object );
83
- if ( $original_object ) {
84
- $original_title = $original_object->labels->archives;
85
- }
86
- }
87
-
88
- $classes = array(
89
- 'menu-item menu-item-depth-' . $depth,
90
- 'menu-item-' . esc_attr( $item->object ),
91
- 'menu-item-edit-' . ( ( isset( $_GET['edit-menu-item'] ) && $item_id == $_GET['edit-menu-item'] ) ? 'active' : 'inactive'),
92
  );
 
93
 
94
- $title = $item->title;
95
-
96
- if ( ! empty( $item->_invalid ) ) {
97
- $classes[] = 'menu-item-invalid';
98
- /* translators: %s: title of menu item which is invalid */
99
- $title = sprintf( __( '%s (Invalid)' ), $item->title );
100
- } elseif ( isset( $item->post_status ) && 'draft' == $item->post_status ) {
101
- $classes[] = 'pending';
102
- /* translators: %s: title of menu item in draft status */
103
- $title = sprintf( __('%s (Pending)'), $item->title );
104
- }
105
-
106
- $title = ( ! isset( $item->label ) || '' == $item->label ) ? $title : $item->label;
107
-
108
- $submenu_text = '';
109
- if ( 0 == $depth )
110
- $submenu_text = 'style="display: none;"';
111
-
112
- ?>
113
- <li id="menu-item-<?php echo $item_id; ?>" class="<?php echo implode(' ', $classes ); ?>">
114
- <div class="menu-item-bar">
115
- <div class="menu-item-handle">
116
- <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>
117
- <span class="item-controls">
118
- <span class="item-type"><?php echo esc_html( $item->type_label ); ?></span>
119
- <span class="item-order hide-if-js">
120
- <a href="<?php
121
- echo wp_nonce_url(
122
- add_query_arg(
123
- array(
124
- 'action' => 'move-up-menu-item',
125
- 'menu-item' => $item_id,
126
- ),
127
- remove_query_arg($removed_args, admin_url( 'nav-menus.php' ) )
128
- ),
129
- 'move-menu_item'
130
- );
131
- ?>" class="item-move-up" aria-label="<?php esc_attr_e( 'Move up' ) ?>">&#8593;</a>
132
- |
133
- <a href="<?php
134
- echo wp_nonce_url(
135
- add_query_arg(
136
- array(
137
- 'action' => 'move-down-menu-item',
138
- 'menu-item' => $item_id,
139
- ),
140
- remove_query_arg($removed_args, admin_url( 'nav-menus.php' ) )
141
- ),
142
- 'move-menu_item'
143
- );
144
- ?>" class="item-move-down" aria-label="<?php esc_attr_e( 'Move down' ) ?>">&#8595;</a>
145
- </span>
146
- <a class="item-edit" id="edit-<?php echo $item_id; ?>" href="<?php
147
- 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 ) ) );
148
- ?>" aria-label="<?php esc_attr_e( 'Edit menu item' ); ?>"><?php _e( 'Edit' ); ?></a>
149
- </span>
150
- </div>
151
- </div>
152
-
153
- <div class="menu-item-settings wp-clearfix" id="menu-item-settings-<?php echo $item_id; ?>">
154
- <?php if ( 'custom' == $item->type ) : ?>
155
- <p class="field-url description description-wide">
156
- <label for="edit-menu-item-url-<?php echo $item_id; ?>">
157
- <?php _e( 'URL' ); ?><br />
158
- <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 ); ?>" />
159
- </label>
160
- </p>
161
- <?php endif; ?>
162
- <p class="description description-wide">
163
- <label for="edit-menu-item-title-<?php echo $item_id; ?>">
164
- <?php _e( 'Navigation Label' ); ?><br />
165
- <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 ); ?>" />
166
- </label>
167
- </p>
168
- <p class="field-title-attribute field-attr-title description description-wide">
169
- <label for="edit-menu-item-attr-title-<?php echo $item_id; ?>">
170
- <?php _e( 'Title Attribute' ); ?><br />
171
- <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 ); ?>" />
172
- </label>
173
- </p>
174
- <p class="field-link-target description">
175
- <label for="edit-menu-item-target-<?php echo $item_id; ?>">
176
- <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' ); ?> />
177
- <?php _e( 'Open link in a new tab' ); ?>
178
- </label>
179
- </p>
180
- <p class="field-css-classes description description-thin">
181
- <label for="edit-menu-item-classes-<?php echo $item_id; ?>">
182
- <?php _e( 'CSS Classes (optional)' ); ?><br />
183
- <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 ) ); ?>" />
184
- </label>
185
- </p>
186
- <p class="field-xfn description description-thin">
187
- <label for="edit-menu-item-xfn-<?php echo $item_id; ?>">
188
- <?php _e( 'Link Relationship (XFN)' ); ?><br />
189
- <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 ); ?>" />
190
- </label>
191
- </p>
192
- <p class="field-description description description-wide">
193
- <label for="edit-menu-item-description-<?php echo $item_id; ?>">
194
- <?php _e( 'Description' ); ?><br />
195
- <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>
196
- <span class="description"><?php _e('The description will be displayed in the menu if the current theme supports it.'); ?></span>
197
- </label>
198
- </p>
199
-
200
- <?php
201
- // This is the added section
202
- do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args );
203
- // end added section
204
- ?>
205
-
206
- <fieldset class="field-move hide-if-no-js description description-wide">
207
- <span class="field-move-visual-label" aria-hidden="true"><?php _e( 'Move' ); ?></span>
208
- <button type="button" class="button-link menus-move menus-move-up" data-dir="up"><?php _e( 'Up one' ); ?></button>
209
- <button type="button" class="button-link menus-move menus-move-down" data-dir="down"><?php _e( 'Down one' ); ?></button>
210
- <button type="button" class="button-link menus-move menus-move-left" data-dir="left"></button>
211
- <button type="button" class="button-link menus-move menus-move-right" data-dir="right"></button>
212
- <button type="button" class="button-link menus-move menus-move-top" data-dir="top"><?php _e( 'To the top' ); ?></button>
213
- </fieldset>
214
-
215
- <div class="menu-item-actions description-wide submitbox">
216
- <?php if ( 'custom' != $item->type && $original_title !== false ) : ?>
217
- <p class="link-to-original">
218
- <?php printf( __('Original: %s'), '<a href="' . esc_attr( $item->url ) . '">' . esc_html( $original_title ) . '</a>' ); ?>
219
- </p>
220
- <?php endif; ?>
221
- <a class="item-delete submitdelete deletion" id="delete-<?php echo $item_id; ?>" href="<?php
222
- echo wp_nonce_url(
223
- add_query_arg(
224
- array(
225
- 'action' => 'delete-menu-item',
226
- 'menu-item' => $item_id,
227
- ),
228
- admin_url( 'nav-menus.php' )
229
- ),
230
- 'delete-menu_item_' . $item_id
231
- ); ?>"><?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' ) ) );
232
- ?>#menu-item-settings-<?php echo $item_id; ?>"><?php _e('Cancel'); ?></a>
233
- </div>
234
 
235
- <input class="menu-item-data-db-id" type="hidden" name="menu-item-db-id[<?php echo $item_id; ?>]" value="<?php echo $item_id; ?>" />
236
- <input class="menu-item-data-object-id" type="hidden" name="menu-item-object-id[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->object_id ); ?>" />
237
- <input class="menu-item-data-object" type="hidden" name="menu-item-object[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->object ); ?>" />
238
- <input class="menu-item-data-parent-id" type="hidden" name="menu-item-parent-id[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->menu_item_parent ); ?>" />
239
- <input class="menu-item-data-position" type="hidden" name="menu-item-position[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->menu_order ); ?>" />
240
- <input class="menu-item-data-type" type="hidden" name="menu-item-type[<?php echo $item_id; ?>]" value="<?php echo esc_attr( $item->type ); ?>" />
241
- </div><!-- .menu-item-settings-->
242
- <ul class="menu-item-transport"></ul>
243
- <?php
244
- $output .= ob_get_clean();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  }
246
-
247
  } // Walker_Nav_Menu_Edit
1
  <?php
2
  /**
3
+ * Custom Walker for Nav Menu Editor
4
+ * Add wp_nav_menu_item_custom_fields hook
5
+ * Hat tip to @kucrut and Menu Icons for the preg_replace() idea
6
+ * means I no longer have to translate core strings
7
  *
8
+ * @package Nav Menu Roles
9
+ * @since 1.8.6
10
+ * @uses Walker_Nav_Menu_Edit
11
  */
12
+ class Walker_Nav_Menu_Edit_Roles extends Walker_Nav_Menu_Edit {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  /**
15
  * Start the element output.
16
  *
17
  * @see Walker_Nav_Menu::start_el()
 
 
 
18
  *
19
  * @param string $output Passed by reference. Used to append additional content.
20
  * @param object $item Menu item data object.
23
  * @param int $id Not used.
24
  */
25
  public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
26
+ $item_output = '';
27
+ $output .= parent::start_el( $item_output, $item, $depth, $args, $id );
28
+ $output .= preg_replace(
29
+ // NOTE: Check this regex on major WP version updates!
30
+ '/(?=<fieldset[^>]+class="[^"]*field-move)/',
31
+ $this->get_custom_fields( $item, $depth, $args ),
32
+ $item_output
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  );
34
+ }
35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
+ /**
38
+ * Get custom fields
39
+ *
40
+ * @access protected
41
+ * @since 0.1.0
42
+ * @uses do_action() Calls 'menu_item_custom_fields' hook
43
+ *
44
+ * @param object $item Menu item data object.
45
+ * @param int $depth Depth of menu item. Used for padding.
46
+ * @param array $args Menu item args.
47
+ * @param int $id Nav menu ID.
48
+ *
49
+ * @return string Form fields
50
+ */
51
+ protected function get_custom_fields( $item, $depth, $args = array(), $id = 0 ) {
52
+ ob_start();
53
+ $item_id = intval( $item->ID );
54
+ /**
55
+ * Get menu item custom fields from plugins/themes
56
+ *
57
+ * @since 0.1.0
58
+ *
59
+ * @param int $item_id post ID of menu
60
+ * @param object $item Menu item data object.
61
+ * @param int $depth Depth of menu item. Used for padding.
62
+ * @param array $args Menu item args.
63
+ *
64
+ * @return string Custom fields
65
+ */
66
+ do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args );
67
+ return ob_get_clean();
68
  }
 
69
  } // Walker_Nav_Menu_Edit
js/nav-menu-roles.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! nav-menu-roles 1.8.5 */
2
  !function(a){a(".nav_menu_logged_in_out_field").each(function(b){var c=a(this);c.find("input.nav-menu-id").val();"in"===c.find("input.nav-menu-logged-in-out:checked").val()?c.next(".nav_menu_role_field").show():c.next(".nav_menu_role_field").hide()}),a("#menu-to-edit").on("change","input.nav-menu-logged-in-out",function(){"in"===a(this).val()?a(this).parentsUntil(".nav_menu_logged_in_out").next(".nav_menu_role_field").slideDown():a(this).parentsUntil(".nav_menu_logged_in_out").next(".nav_menu_role_field").slideUp()})}(jQuery);
1
+ /*! nav-menu-roles 1.8.6 */
2
  !function(a){a(".nav_menu_logged_in_out_field").each(function(b){var c=a(this);c.find("input.nav-menu-id").val();"in"===c.find("input.nav-menu-logged-in-out:checked").val()?c.next(".nav_menu_role_field").show():c.next(".nav_menu_role_field").hide()}),a("#menu-to-edit").on("change","input.nav-menu-logged-in-out",function(){"in"===a(this).val()?a(this).parentsUntil(".nav_menu_logged_in_out").next(".nav_menu_role_field").slideDown():a(this).parentsUntil(".nav_menu_logged_in_out").next(".nav_menu_role_field").slideUp()})}(jQuery);
languages/nav-menu-roles-ar.mo DELETED
File without changes
languages/nav-menu-roles-ar.po DELETED
@@ -1,216 +0,0 @@
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
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-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"
15
- "Content-Transfer-Encoding: 8bit\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&#8217;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
-
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 "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&#8217; huh?"
163
- msgstr "تغش، أليس كذلك؟"
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 "استيراد %snav menu roles%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 "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/"
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-en.mo DELETED
File without changes
languages/nav-menu-roles-en.po DELETED
@@ -1,215 +0,0 @@
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"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\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&#8217;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&#8217;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
-
71
- #. translators: %s: title of menu item which is invalid
72
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
73
- msgid "%s (Invalid)"
74
- msgstr "%s (Invalid)"
75
-
76
- #. translators: %s: title of menu item in draft status
77
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
78
- msgid "%s (Pending)"
79
- msgstr "%s (Pending)"
80
-
81
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
82
- msgid "sub item"
83
- msgstr "sub item"
84
-
85
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
86
- msgid "Move up"
87
- msgstr "Move up"
88
-
89
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
90
- msgid "Move down"
91
- msgstr "Move down"
92
-
93
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
94
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
95
- msgid "Edit Menu Item"
96
- msgstr "Edit Menu Item"
97
-
98
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
99
- msgid "URL"
100
- msgstr "URL"
101
-
102
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
103
- msgid "Navigation Label"
104
- msgstr "Navigation Label"
105
-
106
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
107
- msgid "Title Attribute"
108
- msgstr "Title Attribute"
109
-
110
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
111
- msgid "Open link in a new window/tab"
112
- msgstr "Open link in a new window/tab"
113
-
114
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
115
- msgid "CSS Classes (optional)"
116
- msgstr "CSS Classes (optional)"
117
-
118
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
119
- msgid "Link Relationship (XFN)"
120
- msgstr "Link Relationship (XFN)"
121
-
122
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
123
- msgid "Description"
124
- msgstr "Description"
125
-
126
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
127
- msgid ""
128
- "The description will be displayed in the menu if the current theme supports "
129
- "it."
130
- msgstr "The description will be displayed in the menu if the current theme supports it."
131
-
132
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
133
- msgid "Move"
134
- msgstr "Move"
135
-
136
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
137
- msgid "Up one"
138
- msgstr "Up one"
139
-
140
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
141
- msgid "Down one"
142
- msgstr "Down one"
143
-
144
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
145
- msgid "To the top"
146
- msgstr "To the top"
147
-
148
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
149
- msgid "Original: %s"
150
- msgstr "Original: %s"
151
-
152
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
153
- msgid "Remove"
154
- msgstr "Remove"
155
-
156
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
157
- msgid "Cancel"
158
- msgstr "Cancel"
159
-
160
- #: nav-menu-roles.php:76 nav-menu-roles.php:85
161
- msgid "Cheatin&#8217; huh?"
162
- msgstr "Cheatin&#8217; huh?"
163
-
164
- #. Plugin Name of the plugin/theme
165
- msgid "Nav Menu Roles"
166
- msgstr "Nav Menu Roles"
167
-
168
- #: nav-menu-roles.php:163
169
- msgid ""
170
- "Import %snav menu roles%s and other menu item meta skipped by the default "
171
- "importer"
172
- msgstr "Import %snav menu roles%s and other menu item meta skipped by the default importer"
173
-
174
- #: nav-menu-roles.php:219
175
- msgid ""
176
- "Nav Menu Roles has detected a possible conflict with the following functions"
177
- " or classes: %1$s. Please see the %2$sFAQ%3$s for more information and "
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/"
203
- msgstr "http://www.kathyisawesome.com/449/nav-menu-roles/"
204
-
205
- #. Description of the plugin/theme
206
- msgid "Hide custom menu items based on user roles"
207
- msgstr "Hide custom menu items based on user roles"
208
-
209
- #. Author of the plugin/theme
210
- msgid "Kathy Darling"
211
- msgstr "Kathy Darling"
212
-
213
- #. Author URI of the plugin/theme
214
- msgid "http://www.kathyisawesome.com"
215
- msgstr "http://www.kathyisawesome.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/nav-menu-roles-es.mo DELETED
File without changes
languages/nav-menu-roles-es.po DELETED
@@ -1,217 +0,0 @@
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
5
- # Enrique Errando <contacto@enriqueerrando.com>, 2014
6
- 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: 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"
16
- "Content-Transfer-Encoding: 8bit\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&#8217;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
-
73
- #. translators: %s: title of menu item which is invalid
74
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:87
75
- msgid "%s (Invalid)"
76
- msgstr "%s (Inválido)"
77
-
78
- #. translators: %s: title of menu item in draft status
79
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:91
80
- msgid "%s (Pending)"
81
- msgstr "%s (Pendiente)"
82
-
83
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
84
- msgid "sub item"
85
- msgstr "sub ítem"
86
-
87
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
88
- msgid "Move up"
89
- msgstr "Mover hacia arriba"
90
-
91
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
92
- msgid "Move down"
93
- msgstr "Mover hacia abajo"
94
-
95
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:134
96
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:136
97
- msgid "Edit Menu Item"
98
- msgstr "Editar ítem del menú"
99
-
100
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:145
101
- msgid "URL"
102
- msgstr "URL"
103
-
104
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:152
105
- msgid "Navigation Label"
106
- msgstr "Etiqueta de navegación"
107
-
108
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
109
- msgid "Title Attribute"
110
- msgstr "Atributo de título"
111
-
112
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
113
- msgid "Open link in a new window/tab"
114
- msgstr "Abrir enlace en una nueva ventana/pestaña"
115
-
116
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
117
- msgid "CSS Classes (optional)"
118
- msgstr "Clases CSS (opcional)"
119
-
120
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
121
- msgid "Link Relationship (XFN)"
122
- msgstr "Relación de enlace (XFN)"
123
-
124
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
125
- msgid "Description"
126
- msgstr "Descripción"
127
-
128
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:184
129
- msgid ""
130
- "The description will be displayed in the menu if the current theme supports "
131
- "it."
132
- msgstr "La descripción se mostrará en el menú si el tema actual lo soporta."
133
-
134
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
135
- msgid "Move"
136
- msgstr "Mover"
137
-
138
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
139
- msgid "Up one"
140
- msgstr "Subir uno"
141
-
142
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
143
- msgid "Down one"
144
- msgstr "Bajar uno"
145
-
146
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
147
- msgid "To the top"
148
- msgstr "A arriba del todo"
149
-
150
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
151
- msgid "Original: %s"
152
- msgstr "Original: %s"
153
-
154
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
155
- msgid "Remove"
156
- msgstr "Eliminar"
157
-
158
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
159
- msgid "Cancel"
160
- msgstr "Cancelar"
161
-
162
- #: nav-menu-roles.php:76 nav-menu-roles.php:85
163
- msgid "Cheatin&#8217; huh?"
164
- msgstr "Con que haciendo trampas, ¿eh?"
165
-
166
- #. Plugin Name of the plugin/theme
167
- msgid "Nav Menu Roles"
168
- msgstr "Nav Menu Roles"
169
-
170
- #: nav-menu-roles.php:163
171
- msgid ""
172
- "Import %snav menu roles%s and other menu item meta skipped by the default "
173
- "importer"
174
- msgstr "Importar %snav menu roles%s y otros meta de ítems de menú ignorados por el importador por defecto."
175
-
176
- #: nav-menu-roles.php:219
177
- msgid ""
178
- "Nav Menu Roles has detected a possible conflict with the following functions"
179
- " or classes: %1$s. Please see the %2$sFAQ%3$s for more information and "
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/"
205
- msgstr "http://www.kathyisawesome.com/449/nav-menu-roles/"
206
-
207
- #. Description of the plugin/theme
208
- msgid "Hide custom menu items based on user roles"
209
- msgstr "Ocultar ítems personalizados de menú basados en roles de usuarios"
210
-
211
- #. Author of the plugin/theme
212
- msgid "Kathy Darling"
213
- msgstr "Kathy Darling"
214
-
215
- #. Author URI of the plugin/theme
216
- msgid "http://www.kathyisawesome.com"
217
- msgstr "http://www.kathyisawesome.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/nav-menu-roles-fi.mo DELETED
File without changes
languages/nav-menu-roles-fi.po DELETED
@@ -1,216 +0,0 @@
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
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-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"
15
- "Content-Transfer-Encoding: 8bit\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&#8217;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
-
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 (virheellinen)"
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 (Odottaa)"
81
-
82
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
83
- msgid "sub item"
84
- msgstr "alavalinta"
85
-
86
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
87
- msgid "Move up"
88
- msgstr "Siirrä ylöspäin"
89
-
90
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
91
- msgid "Move down"
92
- msgstr "Siirrä alaspäin"
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 "Muokkaa valikon kohtaa"
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 "Valikkoteksti"
106
-
107
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
108
- msgid "Title Attribute"
109
- msgstr "Title-attribuutti"
110
-
111
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
112
- msgid "Open link in a new window/tab"
113
- msgstr "Avaa linkki uuteen ikkunaan tai välilehteen"
114
-
115
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
116
- msgid "CSS Classes (optional)"
117
- msgstr "CSS-luokat (vapaaehtoinen)"
118
-
119
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
120
- msgid "Link Relationship (XFN)"
121
- msgstr "Linkkisuhde (XFN)"
122
-
123
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
124
- msgid "Description"
125
- msgstr "Kuvaus"
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 "Kuvaus näytetään nykyisen teeman valikossa, jos nykyinen teema tukee sitä."
132
-
133
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
134
- msgid "Move"
135
- msgstr "Siirrä"
136
-
137
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
138
- msgid "Up one"
139
- msgstr "Yksi ylöspäin"
140
-
141
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
142
- msgid "Down one"
143
- msgstr "Yksi alaspäin"
144
-
145
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
146
- msgid "To the top"
147
- msgstr "Ylimmäksi"
148
-
149
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:208
150
- msgid "Original: %s"
151
- msgstr "Alkuperäinen: %s"
152
-
153
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:221
154
- msgid "Remove"
155
- msgstr "Poista"
156
-
157
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
158
- msgid "Cancel"
159
- msgstr "Peruuta"
160
-
161
- #: nav-menu-roles.php:76 nav-menu-roles.php:85
162
- msgid "Cheatin&#8217; huh?"
163
- msgstr "Yritätkö huijata?"
164
-
165
- #. Plugin Name of the plugin/theme
166
- msgid "Nav Menu Roles"
167
- msgstr "Valikkoroolit"
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 "Tuo %svalikkorooleja%s ja niiden muita metatietoja"
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 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/"
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 "Piilota valikkolinkkejä käyttäjäroolien perusteella"
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-fr.mo DELETED
File without changes
languages/nav-menu-roles-fr.po DELETED
@@ -1,216 +0,0 @@
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
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-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"
15
- "Content-Transfer-Encoding: 8bit\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&#8217;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
-
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 (Invalide)"
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 (En attente)"
81
-
82
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
83
- msgid "sub item"
84
- msgstr "sous-élément"
85
-
86
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
87
- msgid "Move up"
88
- msgstr "Remonter"
89
-
90
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
91
- msgid "Move down"
92
- msgstr "Descendre"
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 "Modifier l'élément du menu"
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 "Titre de la navigation"
106
-
107
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
108
- msgid "Title Attribute"
109
- msgstr "Attribut de titre"
110
-
111
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
112
- msgid "Open link in a new window/tab"
113
- msgstr "Ouvrir le lien dans une nouvelle fenêtre/un nouvel onglet"
114
-
115
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
116
- msgid "CSS Classes (optional)"
117
- msgstr "Classes CSS (facultatives)"
118
-
119
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
120
- msgid "Link Relationship (XFN)"
121
- msgstr "Relation avec le propriétaire du site lié (XFN)"
122
-
123
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
124
- msgid "Description"
125
- msgstr "Description"
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 "La description sera affichée dans le menu si le thème actuel l’accepte."
132
-
133
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
134
- msgid "Move"
135
- msgstr "Déplacer"
136
-
137
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
138
- msgid "Up one"
139
- msgstr "Un cran vers le haut"
140
-
141
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
142
- msgid "Down one"
143
- msgstr "Un cran vers le bas"
144
-
145
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
146
- msgid "To the top"
147
- msgstr "Tout en haut"
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 "Supprimer"
156
-
157
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
158
- msgid "Cancel"
159
- msgstr "Annuler"
160
-
161
- #: nav-menu-roles.php:76 nav-menu-roles.php:85
162
- msgid "Cheatin&#8217; huh?"
163
- msgstr "Un peu triché, non ?"
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 "Importer les %snav menu roles%s, ainsi que toutes les données meta associées aux éléments de menus, que l'importateur par défaut ne prend pas en charge."
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 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/"
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 "Masque les éléments de menu personnalisés à base de rôles"
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-gu_IN.mo DELETED
File without changes
languages/nav-menu-roles-gu_IN.po DELETED
@@ -1,216 +0,0 @@
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&#8217;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&#8217; 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-pt_BR.mo DELETED
File without changes
languages/nav-menu-roles-pt_BR.po DELETED
@@ -1,216 +0,0 @@
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&#8217;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&#8217; 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 DELETED
File without changes
languages/nav-menu-roles-sv_SE.po DELETED
@@ -1,216 +0,0 @@
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
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-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"
15
- "Content-Transfer-Encoding: 8bit\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&#8217;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
-
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 (Ogiltig)"
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 (Väntande)"
81
-
82
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:104
83
- msgid "sub item"
84
- msgstr "under-val"
85
-
86
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:119
87
- msgid "Move up"
88
- msgstr "Flytta upp"
89
-
90
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:132
91
- msgid "Move down"
92
- msgstr "Flytta ner"
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 "Redigera menyval"
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 "Menyvalsnamn"
106
-
107
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:158
108
- msgid "Title Attribute"
109
- msgstr "Titelattribut"
110
-
111
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:165
112
- msgid "Open link in a new window/tab"
113
- msgstr "Öpnna länk i nytt fönster/ny tabb"
114
-
115
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:170
116
- msgid "CSS Classes (optional)"
117
- msgstr "CSS-klasser (valfritt)"
118
-
119
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:176
120
- msgid "Link Relationship (XFN)"
121
- msgstr "Relationslänk (XFN)"
122
-
123
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:182
124
- msgid "Description"
125
- msgstr "Beskrivning"
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 "Beskrivningen visas i menyn om nuvarande tema har stöd för det."
132
-
133
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:196
134
- msgid "Move"
135
- msgstr "Flytta"
136
-
137
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:197
138
- msgid "Up one"
139
- msgstr "Upp en"
140
-
141
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:198
142
- msgid "Down one"
143
- msgstr "Ner en"
144
-
145
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:201
146
- msgid "To the top"
147
- msgstr "Till toppen"
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 "Ta bort"
156
-
157
- #: inc/class.Walker_Nav_Menu_Edit_Roles.php:222
158
- msgid "Cancel"
159
- msgstr "Avbryt"
160
-
161
- #: nav-menu-roles.php:76 nav-menu-roles.php:85
162
- msgid "Cheatin&#8217; huh?"
163
- msgstr "Fuskar du&#8217; ?"
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 "Importera %nav menu-roller%s och annan menyvalsmeta som hoppades över av standardimporten"
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 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/"
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 "Dölj anpassade menyval baserat på användarroller"
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.pot CHANGED
@@ -1,10 +1,10 @@
1
  # Copyright (C) 2016 Kathy Darling
2
- # This file is distributed under the GPL2.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Nav Menu Roles 1.8.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nav-menu-roles\n"
7
- "POT-Creation-Date: 2016-08-17 02:50:28+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -191,37 +191,37 @@ msgstr ""
191
  msgid "Nav Menu Roles"
192
  msgstr ""
193
 
194
- #: nav-menu-roles.php:174
195
  msgid ""
196
  "Import %snav menu roles%s and other menu item meta skipped by the default "
197
  "importer"
198
  msgstr ""
199
 
200
- #: nav-menu-roles.php:227
201
  msgid "FAQ"
202
  msgstr ""
203
 
204
- #: nav-menu-roles.php:228
205
  msgid "Donate"
206
  msgstr ""
207
 
208
- #: nav-menu-roles.php:297
209
  msgid "Display Mode"
210
  msgstr ""
211
 
212
- #: nav-menu-roles.php:305
213
  msgid "Logged In Users"
214
  msgstr ""
215
 
216
- #: nav-menu-roles.php:312
217
  msgid "Logged Out Users"
218
  msgstr ""
219
 
220
- #: nav-menu-roles.php:319
221
  msgid "Everyone"
222
  msgstr ""
223
 
224
- #: nav-menu-roles.php:326
225
  msgid "Restrict menu item to a minimum role"
226
  msgstr ""
227
 
1
  # Copyright (C) 2016 Kathy Darling
2
+ # This file is distributed under the GPL-3.0.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Nav Menu Roles 1.8.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nav-menu-roles\n"
7
+ "POT-Creation-Date: 2016-12-08 18:08:13+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
191
  msgid "Nav Menu Roles"
192
  msgstr ""
193
 
194
+ #: nav-menu-roles.php:166
195
  msgid ""
196
  "Import %snav menu roles%s and other menu item meta skipped by the default "
197
  "importer"
198
  msgstr ""
199
 
200
+ #: nav-menu-roles.php:219
201
  msgid "FAQ"
202
  msgstr ""
203
 
204
+ #: nav-menu-roles.php:220
205
  msgid "Donate"
206
  msgstr ""
207
 
208
+ #: nav-menu-roles.php:299
209
  msgid "Display Mode"
210
  msgstr ""
211
 
212
+ #: nav-menu-roles.php:307
213
  msgid "Logged In Users"
214
  msgstr ""
215
 
216
+ #: nav-menu-roles.php:314
217
  msgid "Logged Out Users"
218
  msgstr ""
219
 
220
+ #: nav-menu-roles.php:321
221
  msgid "Everyone"
222
  msgstr ""
223
 
224
+ #: nav-menu-roles.php:328
225
  msgid "Restrict menu item to a minimum role"
226
  msgstr ""
227
 
nav-menu-roles.php CHANGED
@@ -3,7 +3,7 @@
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.8.5
7
  Author: Kathy Darling
8
  Author URI: http://www.kathyisawesome.com
9
  License: GPL-3.0
@@ -54,7 +54,7 @@ class Nav_Menu_Roles {
54
  * @constant string version number
55
  * @since 1.7.1
56
  */
57
- CONST VERSION = '1.8.3';
58
 
59
  /**
60
  * Main Nav Menu Roles Instance
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.8.6
7
  Author: Kathy Darling
8
  Author URI: http://www.kathyisawesome.com
9
  License: GPL-3.0
54
  * @constant string version number
55
  * @since 1.7.1
56
  */
57
+ CONST VERSION = '1.8.6';
58
 
59
  /**
60
  * Main Nav Menu Roles Instance