Version Description
- 24.02.2015
- Fixed PHP fatal error for roles reset operation.
- Fixed current user capability checking before URE Options page open.
- 3 missed phrases were added to the translations files. Thanks to Morteza
- Hebrew translation updated. Thanks to atar4u
- Persian translation updated. Thanks to Morteza
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.18.3 |
Comparing to | |
See all releases |
Code changes from version 4.18.2 to 4.18.3
- css/index.php +0 -1
- includes/class-ure-lib.php +3 -2
- includes/class-ure-screen-help.php +4 -5
- includes/class-user-role-editor.php +6 -5
- js/index.php +0 -1
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +154 -137
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fa_IR.po +199 -186
- lang/ure-fr_FR.mo +0 -0
- lang/ure-fr_FR.po +153 -138
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +424 -663
- lang/ure-hu_HU.mo +0 -0
- lang/ure-hu_HU.po +152 -137
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +154 -137
- lang/ure-it_IT.mo +0 -0
- lang/ure-it_IT.po +152 -137
- lang/ure-nl.mo +0 -0
- lang/ure-nl.po +154 -137
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +152 -137
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +153 -138
- lang/ure.mo +0 -0
- lang/ure.pot +152 -137
- readme.txt +11 -3
- user-role-editor.php +2 -2
css/index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
// Silence is golden.
|
|
includes/class-ure-lib.php
CHANGED
@@ -1441,7 +1441,8 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1441 |
}
|
1442 |
// end of switch
|
1443 |
if (!empty($url)) {
|
1444 |
-
$link = '<a href="' . $url . '" title="read about ' . $capability .
|
|
|
1445 |
URE_PLUGIN_URL . 'images/help.png" alt="' . esc_html__('Help', 'ure') . '" /></a>';
|
1446 |
} else {
|
1447 |
$link = '';
|
@@ -1698,7 +1699,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1698 |
}
|
1699 |
|
1700 |
$this->wp_roles_reinit();
|
1701 |
-
$this->
|
1702 |
if ($this->is_full_network_synch() || $this->apply_to_all) {
|
1703 |
$this->current_role = '';
|
1704 |
$this->direct_network_roles_update();
|
1441 |
}
|
1442 |
// end of switch
|
1443 |
if (!empty($url)) {
|
1444 |
+
$link = '<a href="' . $url . '" title="' . esc_html__('read about', 'ure') .' '. $capability .' '.
|
1445 |
+
esc_html__('user capability', 'ure') .'" target="new"><img src="' .
|
1446 |
URE_PLUGIN_URL . 'images/help.png" alt="' . esc_html__('Help', 'ure') . '" /></a>';
|
1447 |
} else {
|
1448 |
$link = '';
|
1699 |
}
|
1700 |
|
1701 |
$this->wp_roles_reinit();
|
1702 |
+
$this->init_ure_caps();
|
1703 |
if ($this->is_full_network_synch() || $this->apply_to_all) {
|
1704 |
$this->current_role = '';
|
1705 |
$this->direct_network_roles_update();
|
includes/class-ure-screen-help.php
CHANGED
@@ -9,7 +9,7 @@ class URE_Screen_Help {
|
|
9 |
|
10 |
protected function get_general_tab() {
|
11 |
|
12 |
-
$text = '<h2>User Role Editor Options page help</h2>
|
13 |
<p>
|
14 |
<ul>
|
15 |
<li><strong>' . esc_html__('Show Administrator role at User Role Editor', 'ure').'</strong> - ' .
|
@@ -38,7 +38,7 @@ class URE_Screen_Help {
|
|
38 |
|
39 |
|
40 |
protected function get_additional_modules_tab() {
|
41 |
-
$text = '<h2>User Role Editor Options page help</h2>
|
42 |
<p>
|
43 |
<ul>';
|
44 |
if (!is_multisite()) {
|
@@ -57,7 +57,7 @@ class URE_Screen_Help {
|
|
57 |
|
58 |
|
59 |
protected function get_default_roles_tab() {
|
60 |
-
$text = '<h2>User Role Editor Options page help</h2>
|
61 |
<p>
|
62 |
<ul>
|
63 |
<li><strong>' . esc_html__('Other default roles for new registered user', 'ure').'</strong> - ' .
|
@@ -76,7 +76,7 @@ class URE_Screen_Help {
|
|
76 |
|
77 |
|
78 |
protected function get_multisite_tab() {
|
79 |
-
$text = '<h2>User Role Editor Options page help</h2>
|
80 |
<p>
|
81 |
<ul>
|
82 |
<li><strong>' . esc_html__('Allow non super-admininstrators to create, edit and delete users', 'ure').'</strong> - ' .
|
@@ -117,7 +117,6 @@ class URE_Screen_Help {
|
|
117 |
return $text;
|
118 |
}
|
119 |
// end of get_settings_help()
|
120 |
-
|
121 |
|
122 |
}
|
123 |
// end of URE_Screen_Help
|
9 |
|
10 |
protected function get_general_tab() {
|
11 |
|
12 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'ure') .'</h2>
|
13 |
<p>
|
14 |
<ul>
|
15 |
<li><strong>' . esc_html__('Show Administrator role at User Role Editor', 'ure').'</strong> - ' .
|
38 |
|
39 |
|
40 |
protected function get_additional_modules_tab() {
|
41 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'ure') .'</h2>
|
42 |
<p>
|
43 |
<ul>';
|
44 |
if (!is_multisite()) {
|
57 |
|
58 |
|
59 |
protected function get_default_roles_tab() {
|
60 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'ure') .'</h2>
|
61 |
<p>
|
62 |
<ul>
|
63 |
<li><strong>' . esc_html__('Other default roles for new registered user', 'ure').'</strong> - ' .
|
76 |
|
77 |
|
78 |
protected function get_multisite_tab() {
|
79 |
+
$text = '<h2>'. esc_html__('User Role Editor Options page help', 'ure') .'</h2>
|
80 |
<p>
|
81 |
<ul>
|
82 |
<li><strong>' . esc_html__('Allow non super-admininstrators to create, edit and delete users', 'ure').'</strong> - ' .
|
117 |
return $text;
|
118 |
}
|
119 |
// end of get_settings_help()
|
|
|
120 |
|
121 |
}
|
122 |
// end of URE_Screen_Help
|
includes/class-user-role-editor.php
CHANGED
@@ -588,25 +588,25 @@ class User_Role_Editor {
|
|
588 |
$screen_help = new Ure_Screen_Help();
|
589 |
$screen->add_help_tab( array(
|
590 |
'id' => 'general',
|
591 |
-
'title' => esc_html__('General'),
|
592 |
'content' => $screen_help->get_settings_help('general')
|
593 |
));
|
594 |
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
595 |
$screen->add_help_tab( array(
|
596 |
'id' => 'additional_modules',
|
597 |
-
'title' => esc_html__('Additional Modules'),
|
598 |
'content' => $screen_help->get_settings_help('additional_modules')
|
599 |
));
|
600 |
}
|
601 |
$screen->add_help_tab( array(
|
602 |
'id' => 'default_roles',
|
603 |
-
'title' => esc_html__('Default Roles'),
|
604 |
'content' => $screen_help->get_settings_help('default_roles')
|
605 |
));
|
606 |
if ($this->lib->multisite) {
|
607 |
$screen->add_help_tab( array(
|
608 |
'id' => 'multisite',
|
609 |
-
'title' => esc_html__('Multisite'),
|
610 |
'content' => $screen_help->get_settings_help('multisite')
|
611 |
));
|
612 |
}
|
@@ -774,7 +774,8 @@ class User_Role_Editor {
|
|
774 |
|
775 |
|
776 |
public function settings() {
|
777 |
-
|
|
|
778 |
wp_die(esc_html__( 'You do not have sufficient permissions to manage options for User Role Editor.', 'ure' ));
|
779 |
}
|
780 |
$action = $this->get_settings_action();
|
588 |
$screen_help = new Ure_Screen_Help();
|
589 |
$screen->add_help_tab( array(
|
590 |
'id' => 'general',
|
591 |
+
'title' => esc_html__('General', 'ure'),
|
592 |
'content' => $screen_help->get_settings_help('general')
|
593 |
));
|
594 |
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
595 |
$screen->add_help_tab( array(
|
596 |
'id' => 'additional_modules',
|
597 |
+
'title' => esc_html__('Additional Modules', 'ure'),
|
598 |
'content' => $screen_help->get_settings_help('additional_modules')
|
599 |
));
|
600 |
}
|
601 |
$screen->add_help_tab( array(
|
602 |
'id' => 'default_roles',
|
603 |
+
'title' => esc_html__('Default Roles', 'ure'),
|
604 |
'content' => $screen_help->get_settings_help('default_roles')
|
605 |
));
|
606 |
if ($this->lib->multisite) {
|
607 |
$screen->add_help_tab( array(
|
608 |
'id' => 'multisite',
|
609 |
+
'title' => esc_html__('Multisite', 'ure'),
|
610 |
'content' => $screen_help->get_settings_help('multisite')
|
611 |
));
|
612 |
}
|
774 |
|
775 |
|
776 |
public function settings() {
|
777 |
+
$settings_capability = $this->lib->get_settings_capability();
|
778 |
+
if (!current_user_can($settings_capability)) {
|
779 |
wp_die(esc_html__( 'You do not have sufficient permissions to manage options for User Role Editor.', 'ure' ));
|
780 |
}
|
781 |
$action = $this->get_settings_action();
|
js/index.php
CHANGED
@@ -1,3 +1,2 @@
|
|
1 |
<?php
|
2 |
// Silence is golden.
|
3 |
-
?>
|
1 |
<?php
|
2 |
// Silence is golden.
|
|
lang/ure-es_ES.mo
CHANGED
Binary file
|
lang/ure-es_ES.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -98,20 +98,20 @@ msgstr ""
|
|
98 |
msgid "Allow non super administrators to create, edit, and delete users"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: ../includes/class-user-role-editor.php:
|
102 |
msgid "Change role for users without role"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: ../includes/class-user-role-editor.php:
|
106 |
msgid "No rights"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
msgid "Provide new role"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "You do not have permission to edit this user."
|
116 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
117 |
|
@@ -124,13 +124,13 @@ msgid "Settings"
|
|
124 |
msgstr "Configuración"
|
125 |
|
126 |
#: ../includes/class-user-role-editor.php:569
|
127 |
-
#: ../includes/class-ure-lib.php:
|
128 |
msgid "Changelog"
|
129 |
msgstr "Registro de cambios"
|
130 |
|
131 |
#: ../includes/class-user-role-editor.php:619
|
132 |
#: ../includes/class-user-role-editor.php:648
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
#: ../includes/class-ure-lib.php:337
|
135 |
msgid "User Role Editor"
|
136 |
msgstr "Editor de Roles"
|
@@ -146,54 +146,54 @@ msgstr "Opciones actualizadas"
|
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Rol Predeterminado"
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr "Permisos insuficientes para trabajar"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
-
#: ../includes/class-ure-lib.php:
|
157 |
-
#: ../includes/class-ure-lib.php:
|
158 |
-
#: ../includes/class-ure-lib.php:
|
159 |
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Select All"
|
164 |
msgstr "Seleccionar todo"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Deseleccionar todo"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Reverse"
|
172 |
msgstr "Revertir"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Update"
|
176 |
msgstr "Actualizar"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Agregar nuevo Rol"
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
#, fuzzy
|
189 |
msgid "Rename Role"
|
190 |
msgstr "Eliminar Rol"
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid " Role name (ID) can not be empty!"
|
194 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid ""
|
198 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
"only!"
|
@@ -201,66 +201,66 @@ msgstr ""
|
|
201 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
202 |
"altos o bajos!"
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid ""
|
206 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
"it."
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "Add Role"
|
212 |
msgstr "Agregar Rol"
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Delete Role"
|
216 |
msgstr "Eliminar Rol"
|
217 |
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Cancel"
|
220 |
msgstr "Cancelar"
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Add Capability"
|
224 |
msgstr "Agregar Capacidad"
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid "Delete Capability"
|
229 |
msgstr "Eliminar Capacidades"
|
230 |
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid "Reset"
|
233 |
msgstr "Reiniciar"
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: ../includes/class-user-role-editor.php:
|
240 |
msgid ""
|
241 |
"If any plugins have changed capabilities in any way upon installation (such "
|
242 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: ../includes/class-user-role-editor.php:
|
246 |
msgid ""
|
247 |
"For more information on how to undo changes and restore plugin capabilities "
|
248 |
"go to"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Continue?"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid "Default Role"
|
257 |
msgstr "Rol Predeterminado"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Establecer nuevo Rol"
|
262 |
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
@@ -268,11 +268,11 @@ msgstr ""
|
|
268 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
269 |
"algún plugin o código personalizado"
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
274 |
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
@@ -280,12 +280,12 @@ msgstr ""
|
|
280 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
281 |
"guiones altos o bajos!"
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Otros Roles"
|
287 |
|
288 |
-
#: ../includes/class-user-role-editor.php:
|
289 |
msgid "Edit"
|
290 |
msgstr "Editar"
|
291 |
|
@@ -384,15 +384,24 @@ msgid "User Roles are restored to WordPress default values. "
|
|
384 |
msgstr ""
|
385 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
386 |
|
|
|
|
|
|
|
|
|
387 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
|
|
388 |
msgid "Help"
|
389 |
msgstr "Ayuda"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid "Error is occur. Please check the log file."
|
393 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid ""
|
397 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
398 |
"only!"
|
@@ -400,386 +409,386 @@ msgstr ""
|
|
400 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
401 |
"altos o bajos!"
|
402 |
|
403 |
-
#: ../includes/class-ure-lib.php:
|
404 |
msgid ""
|
405 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
406 |
"characters to it."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "El Rol %s ya existe"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "El Rol %s fue creado exitosamente"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, fuzzy, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "no existe"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
#, fuzzy, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "El Rol %s fue creado exitosamente"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "El Rol %s fue eliminado exitosamente"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Editor"
|
465 |
msgstr "Editor"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Author"
|
469 |
msgstr "Autor"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Contributor"
|
473 |
msgstr "Contribuyente"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Suscriptor"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Cambiar temas (plantillas)"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Editar temas (plantillas)"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Activar plugins"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Editar plugins"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit users"
|
497 |
msgstr "Editar usuarios"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit files"
|
501 |
msgstr "Editar archivos"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Manage options"
|
505 |
msgstr "Administrar opciones"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Moderar comentarios"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Administrar categorías"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage links"
|
517 |
msgstr "Administrar enlaces"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Upload files"
|
521 |
msgstr "Subir archivos"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Import"
|
525 |
msgstr "Importar"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "HTML sin filtrar"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Editar entradas"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Editar entradas ajenas"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Editar entradas publicadas"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Publicar entradas"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Editar páginas"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Read"
|
553 |
msgstr "Leer"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 10"
|
557 |
msgstr "Nivel 10"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 9"
|
561 |
msgstr "Nivel 9"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 8"
|
565 |
msgstr "Nivel 8"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 7"
|
569 |
msgstr "Nivel 7"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 6"
|
573 |
msgstr "Nivel 6"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 5"
|
577 |
msgstr "Nivel 5"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 4"
|
581 |
msgstr "Nivel 4"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 3"
|
585 |
msgstr "Nivel 3"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 2"
|
589 |
msgstr "Nivel 2"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 1"
|
593 |
msgstr "Nivel 1"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 0"
|
597 |
msgstr "Nivel 0"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Editar páginas ajenas"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Editar páginas publicadas"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Publicar páginas"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Eliminar páginas"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Eliminar páginas ajenas"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Eliminar páginas publicadas"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Eliminar entradas"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Eliminar entradas ajenas"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Eliminar entradas publicadas"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Eliminar entradas privadas"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Editar entradas privadas"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Leer entradas privadas"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Eliminar páginas privadas"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Editar páginas privadas"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Leer páginas privadas"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Delete users"
|
661 |
msgstr "Eliminar usuarios"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Create users"
|
665 |
msgstr "Crear usuarios"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Subir sin filtrado"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Editar escritorio"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Actualizar plugins"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Eliminar plugins"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Instalar plugins"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update themes"
|
689 |
msgstr "Actualizar temas (plantillas)"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install themes"
|
693 |
msgstr "Instalar temas (plantillas)"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update core"
|
697 |
msgstr "Actualizar núcleo"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "List users"
|
701 |
msgstr "Listar usuarios"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Remove users"
|
705 |
msgstr "Eliminar usuarios"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Add users"
|
709 |
msgstr "Agregar usuarios"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Promote users"
|
713 |
msgstr "Promover usuarios"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Editar opciones del tema (plantilla)"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Eliminar temas (plantillas)"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Export"
|
725 |
msgstr "Exportar"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr ""
|
730 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, php-format
|
734 |
msgid "Capability %s is added successfully"
|
735 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Capability %s exists already"
|
740 |
msgstr "La Capacidad %s ya existe"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
745 |
msgstr ""
|
746 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
#, php-format
|
750 |
msgid "Capability %s is removed successfully"
|
751 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "Version:"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "Author's website"
|
759 |
msgstr "Sitio web del Autor"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Plugin webpage"
|
763 |
msgstr "Página web del Plugin"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
#, fuzzy
|
767 |
msgid "Plugin download"
|
768 |
msgstr "Página web del Plugin"
|
769 |
|
770 |
-
#: ../includes/class-ure-lib.php:
|
771 |
msgid "FAQ"
|
772 |
msgstr "FAQ"
|
773 |
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
msgid "None"
|
776 |
msgstr "Ninguno"
|
777 |
|
778 |
-
#: ../includes/class-ure-lib.php:
|
779 |
msgid "Delete All Unused Roles"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: ../includes/class-ure-lib.php:
|
783 |
msgid "— No role for this site —"
|
784 |
msgstr ""
|
785 |
|
@@ -803,6 +812,14 @@ msgstr "Rol de bbPress:"
|
|
803 |
msgid "Other Roles:"
|
804 |
msgstr "Otros Roles:"
|
805 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
806 |
#: ../includes/class-ure-screen-help.php:16
|
807 |
msgid ""
|
808 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
98 |
msgid "Allow non super administrators to create, edit, and delete users"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: ../includes/class-user-role-editor.php:234
|
102 |
msgid "Change role for users without role"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: ../includes/class-user-role-editor.php:235
|
106 |
msgid "No rights"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: ../includes/class-user-role-editor.php:236
|
110 |
msgid "Provide new role"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: ../includes/class-user-role-editor.php:320
|
114 |
+
#: ../includes/class-user-role-editor.php:322
|
115 |
msgid "You do not have permission to edit this user."
|
116 |
msgstr "No tienes los suficientes permisos para editar este usuario"
|
117 |
|
124 |
msgstr "Configuración"
|
125 |
|
126 |
#: ../includes/class-user-role-editor.php:569
|
127 |
+
#: ../includes/class-ure-lib.php:2540
|
128 |
msgid "Changelog"
|
129 |
msgstr "Registro de cambios"
|
130 |
|
131 |
#: ../includes/class-user-role-editor.php:619
|
132 |
#: ../includes/class-user-role-editor.php:648
|
133 |
+
#: ../includes/class-user-role-editor.php:1030
|
134 |
#: ../includes/class-ure-lib.php:337
|
135 |
msgid "User Role Editor"
|
136 |
msgstr "Editor de Roles"
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Rol Predeterminado"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:779
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr "Permisos insuficientes para trabajar"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:851
|
156 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
157 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
158 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
159 |
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
161 |
|
162 |
+
#: ../includes/class-user-role-editor.php:977
|
163 |
msgid "Select All"
|
164 |
msgstr "Seleccionar todo"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:978
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Deseleccionar todo"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:979
|
171 |
msgid "Reverse"
|
172 |
msgstr "Revertir"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:980
|
175 |
msgid "Update"
|
176 |
msgstr "Actualizar"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:981
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:982
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Agregar nuevo Rol"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:983
|
187 |
+
#: ../includes/class-user-role-editor.php:988
|
188 |
#, fuzzy
|
189 |
msgid "Rename Role"
|
190 |
msgstr "Eliminar Rol"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:984
|
193 |
msgid " Role name (ID) can not be empty!"
|
194 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
195 |
|
196 |
+
#: ../includes/class-user-role-editor.php:985
|
197 |
msgid ""
|
198 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
"only!"
|
201 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
202 |
"altos o bajos!"
|
203 |
|
204 |
+
#: ../includes/class-user-role-editor.php:986
|
205 |
msgid ""
|
206 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
"it."
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: ../includes/class-user-role-editor.php:987
|
211 |
msgid "Add Role"
|
212 |
msgstr "Agregar Rol"
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:989
|
215 |
msgid "Delete Role"
|
216 |
msgstr "Eliminar Rol"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:990
|
219 |
msgid "Cancel"
|
220 |
msgstr "Cancelar"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:991
|
223 |
msgid "Add Capability"
|
224 |
msgstr "Agregar Capacidad"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:992
|
227 |
+
#: ../includes/class-user-role-editor.php:1001
|
228 |
msgid "Delete Capability"
|
229 |
msgstr "Eliminar Capacidades"
|
230 |
|
231 |
+
#: ../includes/class-user-role-editor.php:993
|
232 |
msgid "Reset"
|
233 |
msgstr "Reiniciar"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:994
|
236 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: ../includes/class-user-role-editor.php:995
|
240 |
msgid ""
|
241 |
"If any plugins have changed capabilities in any way upon installation (such "
|
242 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: ../includes/class-user-role-editor.php:996
|
246 |
msgid ""
|
247 |
"For more information on how to undo changes and restore plugin capabilities "
|
248 |
"go to"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: ../includes/class-user-role-editor.php:998
|
252 |
msgid "Continue?"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../includes/class-user-role-editor.php:999
|
256 |
msgid "Default Role"
|
257 |
msgstr "Rol Predeterminado"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:1000
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Establecer nuevo Rol"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:1002
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
268 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
269 |
"algún plugin o código personalizado"
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:1003
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:1004
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
280 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
281 |
"guiones altos o bajos!"
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:1033
|
284 |
+
#: ../includes/class-user-role-editor.php:1066
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Otros Roles"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:1047
|
289 |
msgid "Edit"
|
290 |
msgstr "Editar"
|
291 |
|
384 |
msgstr ""
|
385 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1444
|
388 |
+
msgid "read about"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
#: ../includes/class-ure-lib.php:1445
|
392 |
+
#, fuzzy
|
393 |
+
msgid "user capability"
|
394 |
+
msgstr "Capacidades personalizadas:"
|
395 |
+
|
396 |
+
#: ../includes/class-ure-lib.php:1446
|
397 |
msgid "Help"
|
398 |
msgstr "Ayuda"
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1914
|
401 |
msgid "Error is occur. Please check the log file."
|
402 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
405 |
msgid ""
|
406 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
407 |
"only!"
|
409 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
410 |
"altos o bajos!"
|
411 |
|
412 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
413 |
msgid ""
|
414 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
415 |
"characters to it."
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1979
|
419 |
#, php-format
|
420 |
msgid "Role %s exists already"
|
421 |
msgstr "El Rol %s ya existe"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1994
|
424 |
msgid "Error is encountered during new role create operation"
|
425 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1996
|
428 |
#, php-format
|
429 |
msgid "Role %s is created successfully"
|
430 |
msgstr "El Rol %s fue creado exitosamente"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:2020
|
433 |
msgid "Error: Role ID is empty!"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:2038
|
437 |
msgid "Error: Empty role display name is not allowed."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:2045
|
441 |
#, fuzzy, php-format
|
442 |
msgid "Role %s does not exists"
|
443 |
msgstr "no existe"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2053
|
446 |
#, fuzzy, php-format
|
447 |
msgid "Role %s is renamed to %s successfully"
|
448 |
msgstr "El Rol %s fue creado exitosamente"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:2126
|
451 |
msgid "Error encountered during role delete operation"
|
452 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2128
|
455 |
msgid "Unused roles are deleted successfully"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:2130
|
459 |
#, php-format
|
460 |
msgid "Role %s is deleted successfully"
|
461 |
msgstr "El Rol %s fue eliminado exitosamente"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:2155
|
464 |
msgid "Error encountered during default role change operation"
|
465 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2161
|
468 |
#, php-format
|
469 |
msgid "Default role for new users is set to %s successfully"
|
470 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:2180
|
473 |
msgid "Editor"
|
474 |
msgstr "Editor"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:2181
|
477 |
msgid "Author"
|
478 |
msgstr "Autor"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:2182
|
481 |
msgid "Contributor"
|
482 |
msgstr "Contribuyente"
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:2183
|
485 |
msgid "Subscriber"
|
486 |
msgstr "Suscriptor"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:2185
|
489 |
msgid "Switch themes"
|
490 |
msgstr "Cambiar temas (plantillas)"
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:2186
|
493 |
msgid "Edit themes"
|
494 |
msgstr "Editar temas (plantillas)"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:2187
|
497 |
msgid "Activate plugins"
|
498 |
msgstr "Activar plugins"
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:2188
|
501 |
msgid "Edit plugins"
|
502 |
msgstr "Editar plugins"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:2189
|
505 |
msgid "Edit users"
|
506 |
msgstr "Editar usuarios"
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:2190
|
509 |
msgid "Edit files"
|
510 |
msgstr "Editar archivos"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:2191
|
513 |
msgid "Manage options"
|
514 |
msgstr "Administrar opciones"
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:2192
|
517 |
msgid "Moderate comments"
|
518 |
msgstr "Moderar comentarios"
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:2193
|
521 |
msgid "Manage categories"
|
522 |
msgstr "Administrar categorías"
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:2194
|
525 |
msgid "Manage links"
|
526 |
msgstr "Administrar enlaces"
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:2195
|
529 |
msgid "Upload files"
|
530 |
msgstr "Subir archivos"
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:2196
|
533 |
msgid "Import"
|
534 |
msgstr "Importar"
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:2197
|
537 |
msgid "Unfiltered html"
|
538 |
msgstr "HTML sin filtrar"
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:2198
|
541 |
msgid "Edit posts"
|
542 |
msgstr "Editar entradas"
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:2199
|
545 |
msgid "Edit others posts"
|
546 |
msgstr "Editar entradas ajenas"
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:2200
|
549 |
msgid "Edit published posts"
|
550 |
msgstr "Editar entradas publicadas"
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:2201
|
553 |
msgid "Publish posts"
|
554 |
msgstr "Publicar entradas"
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:2202
|
557 |
msgid "Edit pages"
|
558 |
msgstr "Editar páginas"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:2203
|
561 |
msgid "Read"
|
562 |
msgstr "Leer"
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:2204
|
565 |
msgid "Level 10"
|
566 |
msgstr "Nivel 10"
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:2205
|
569 |
msgid "Level 9"
|
570 |
msgstr "Nivel 9"
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:2206
|
573 |
msgid "Level 8"
|
574 |
msgstr "Nivel 8"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:2207
|
577 |
msgid "Level 7"
|
578 |
msgstr "Nivel 7"
|
579 |
|
580 |
+
#: ../includes/class-ure-lib.php:2208
|
581 |
msgid "Level 6"
|
582 |
msgstr "Nivel 6"
|
583 |
|
584 |
+
#: ../includes/class-ure-lib.php:2209
|
585 |
msgid "Level 5"
|
586 |
msgstr "Nivel 5"
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:2210
|
589 |
msgid "Level 4"
|
590 |
msgstr "Nivel 4"
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:2211
|
593 |
msgid "Level 3"
|
594 |
msgstr "Nivel 3"
|
595 |
|
596 |
+
#: ../includes/class-ure-lib.php:2212
|
597 |
msgid "Level 2"
|
598 |
msgstr "Nivel 2"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:2213
|
601 |
msgid "Level 1"
|
602 |
msgstr "Nivel 1"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:2214
|
605 |
msgid "Level 0"
|
606 |
msgstr "Nivel 0"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:2215
|
609 |
msgid "Edit others pages"
|
610 |
msgstr "Editar páginas ajenas"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:2216
|
613 |
msgid "Edit published pages"
|
614 |
msgstr "Editar páginas publicadas"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:2217
|
617 |
msgid "Publish pages"
|
618 |
msgstr "Publicar páginas"
|
619 |
|
620 |
+
#: ../includes/class-ure-lib.php:2218
|
621 |
msgid "Delete pages"
|
622 |
msgstr "Eliminar páginas"
|
623 |
|
624 |
+
#: ../includes/class-ure-lib.php:2219
|
625 |
msgid "Delete others pages"
|
626 |
msgstr "Eliminar páginas ajenas"
|
627 |
|
628 |
+
#: ../includes/class-ure-lib.php:2220
|
629 |
msgid "Delete published pages"
|
630 |
msgstr "Eliminar páginas publicadas"
|
631 |
|
632 |
+
#: ../includes/class-ure-lib.php:2221
|
633 |
msgid "Delete posts"
|
634 |
msgstr "Eliminar entradas"
|
635 |
|
636 |
+
#: ../includes/class-ure-lib.php:2222
|
637 |
msgid "Delete others posts"
|
638 |
msgstr "Eliminar entradas ajenas"
|
639 |
|
640 |
+
#: ../includes/class-ure-lib.php:2223
|
641 |
msgid "Delete published posts"
|
642 |
msgstr "Eliminar entradas publicadas"
|
643 |
|
644 |
+
#: ../includes/class-ure-lib.php:2224
|
645 |
msgid "Delete private posts"
|
646 |
msgstr "Eliminar entradas privadas"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:2225
|
649 |
msgid "Edit private posts"
|
650 |
msgstr "Editar entradas privadas"
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:2226
|
653 |
msgid "Read private posts"
|
654 |
msgstr "Leer entradas privadas"
|
655 |
|
656 |
+
#: ../includes/class-ure-lib.php:2227
|
657 |
msgid "Delete private pages"
|
658 |
msgstr "Eliminar páginas privadas"
|
659 |
|
660 |
+
#: ../includes/class-ure-lib.php:2228
|
661 |
msgid "Edit private pages"
|
662 |
msgstr "Editar páginas privadas"
|
663 |
|
664 |
+
#: ../includes/class-ure-lib.php:2229
|
665 |
msgid "Read private pages"
|
666 |
msgstr "Leer páginas privadas"
|
667 |
|
668 |
+
#: ../includes/class-ure-lib.php:2230
|
669 |
msgid "Delete users"
|
670 |
msgstr "Eliminar usuarios"
|
671 |
|
672 |
+
#: ../includes/class-ure-lib.php:2231
|
673 |
msgid "Create users"
|
674 |
msgstr "Crear usuarios"
|
675 |
|
676 |
+
#: ../includes/class-ure-lib.php:2232
|
677 |
msgid "Unfiltered upload"
|
678 |
msgstr "Subir sin filtrado"
|
679 |
|
680 |
+
#: ../includes/class-ure-lib.php:2233
|
681 |
msgid "Edit dashboard"
|
682 |
msgstr "Editar escritorio"
|
683 |
|
684 |
+
#: ../includes/class-ure-lib.php:2234
|
685 |
msgid "Update plugins"
|
686 |
msgstr "Actualizar plugins"
|
687 |
|
688 |
+
#: ../includes/class-ure-lib.php:2235
|
689 |
msgid "Delete plugins"
|
690 |
msgstr "Eliminar plugins"
|
691 |
|
692 |
+
#: ../includes/class-ure-lib.php:2236
|
693 |
msgid "Install plugins"
|
694 |
msgstr "Instalar plugins"
|
695 |
|
696 |
+
#: ../includes/class-ure-lib.php:2237
|
697 |
msgid "Update themes"
|
698 |
msgstr "Actualizar temas (plantillas)"
|
699 |
|
700 |
+
#: ../includes/class-ure-lib.php:2238
|
701 |
msgid "Install themes"
|
702 |
msgstr "Instalar temas (plantillas)"
|
703 |
|
704 |
+
#: ../includes/class-ure-lib.php:2239
|
705 |
msgid "Update core"
|
706 |
msgstr "Actualizar núcleo"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2240
|
709 |
msgid "List users"
|
710 |
msgstr "Listar usuarios"
|
711 |
|
712 |
+
#: ../includes/class-ure-lib.php:2241
|
713 |
msgid "Remove users"
|
714 |
msgstr "Eliminar usuarios"
|
715 |
|
716 |
+
#: ../includes/class-ure-lib.php:2242
|
717 |
msgid "Add users"
|
718 |
msgstr "Agregar usuarios"
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2243
|
721 |
msgid "Promote users"
|
722 |
msgstr "Promover usuarios"
|
723 |
|
724 |
+
#: ../includes/class-ure-lib.php:2244
|
725 |
msgid "Edit theme options"
|
726 |
msgstr "Editar opciones del tema (plantilla)"
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2245
|
729 |
msgid "Delete themes"
|
730 |
msgstr "Eliminar temas (plantillas)"
|
731 |
|
732 |
+
#: ../includes/class-ure-lib.php:2246
|
733 |
msgid "Export"
|
734 |
msgstr "Exportar"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2369
|
737 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
738 |
msgstr ""
|
739 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2382
|
742 |
#, php-format
|
743 |
msgid "Capability %s is added successfully"
|
744 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2384
|
747 |
#, php-format
|
748 |
msgid "Capability %s exists already"
|
749 |
msgstr "La Capacidad %s ya existe"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2413
|
752 |
#, php-format
|
753 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
754 |
msgstr ""
|
755 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2432
|
758 |
#, php-format
|
759 |
msgid "Capability %s is removed successfully"
|
760 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
761 |
|
762 |
+
#: ../includes/class-ure-lib.php:2536
|
763 |
msgid "Version:"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: ../includes/class-ure-lib.php:2537
|
767 |
msgid "Author's website"
|
768 |
msgstr "Sitio web del Autor"
|
769 |
|
770 |
+
#: ../includes/class-ure-lib.php:2538
|
771 |
msgid "Plugin webpage"
|
772 |
msgstr "Página web del Plugin"
|
773 |
|
774 |
+
#: ../includes/class-ure-lib.php:2539
|
775 |
#, fuzzy
|
776 |
msgid "Plugin download"
|
777 |
msgstr "Página web del Plugin"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2541
|
780 |
msgid "FAQ"
|
781 |
msgstr "FAQ"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2589
|
784 |
msgid "None"
|
785 |
msgstr "Ninguno"
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2616
|
788 |
msgid "Delete All Unused Roles"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: ../includes/class-ure-lib.php:2640
|
792 |
msgid "— No role for this site —"
|
793 |
msgstr ""
|
794 |
|
812 |
msgid "Other Roles:"
|
813 |
msgstr "Otros Roles:"
|
814 |
|
815 |
+
#: ../includes/class-ure-screen-help.php:12
|
816 |
+
#: ../includes/class-ure-screen-help.php:41
|
817 |
+
#: ../includes/class-ure-screen-help.php:60
|
818 |
+
#: ../includes/class-ure-screen-help.php:79
|
819 |
+
#, fuzzy
|
820 |
+
msgid "User Role Editor Options page help"
|
821 |
+
msgstr "Editor de Roles"
|
822 |
+
|
823 |
#: ../includes/class-ure-screen-help.php:16
|
824 |
msgid ""
|
825 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-fa_IR.mo
CHANGED
Binary file
|
lang/ure-fa_IR.po
CHANGED
@@ -2,11 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -14,6 +14,7 @@ msgstr ""
|
|
14 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
"X-Poedit-SearchPath-1: ..\n"
|
19 |
|
@@ -62,9 +63,8 @@ msgstr "نمایش قابلیتهای بد دانسته شده"
|
|
62 |
|
63 |
#: ../includes/settings-template.php:77
|
64 |
#: ../includes/class-ure-screen-help.php:25
|
65 |
-
#, fuzzy
|
66 |
msgid "Edit user capabilities"
|
67 |
-
msgstr "قابلیتهای
|
68 |
|
69 |
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
70 |
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
@@ -90,27 +90,27 @@ msgid ""
|
|
90 |
"should exist at the site, in order to be assigned to the new registered "
|
91 |
"users."
|
92 |
msgstr ""
|
93 |
-
"قابل توجه محیط چند سایتی:
|
94 |
-
"
|
95 |
|
96 |
#: ../includes/settings-template.php:177
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
-
msgstr "اجازه به غیر
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr "تغییر نقش برای کاربران بدون نقش"
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "No rights"
|
106 |
-
msgstr "هیچ
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Provide new role"
|
110 |
msgstr "ارائهی نقش جدید"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
msgid "You do not have permission to edit this user."
|
115 |
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
116 |
|
@@ -123,13 +123,13 @@ msgid "Settings"
|
|
123 |
msgstr "تنظیمات"
|
124 |
|
125 |
#: ../includes/class-user-role-editor.php:569
|
126 |
-
#: ../includes/class-ure-lib.php:
|
127 |
msgid "Changelog"
|
128 |
msgstr "گزارش تغییرات"
|
129 |
|
130 |
#: ../includes/class-user-role-editor.php:619
|
131 |
#: ../includes/class-user-role-editor.php:648
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
#: ../includes/class-ure-lib.php:337
|
134 |
msgid "User Role Editor"
|
135 |
msgstr "ویرایشگر نقش کاربر"
|
@@ -144,97 +144,96 @@ msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
|
144 |
msgid "Default Roles are updated"
|
145 |
msgstr "نقشهای پیش فرض بروز شدند"
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid ""
|
149 |
"You do not have sufficient permissions to manage options for User Role "
|
150 |
"Editor."
|
151 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
152 |
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
-
#: ../includes/class-ure-lib.php:
|
155 |
-
#: ../includes/class-ure-lib.php:
|
156 |
-
#: ../includes/class-ure-lib.php:
|
157 |
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Select All"
|
162 |
msgstr "انتخاب همه"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Unselect All"
|
166 |
msgstr "عدمانتخاب همه"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Reverse"
|
170 |
msgstr "وارونه"
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Update"
|
174 |
msgstr "بروزرسانی"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Please confirm permissions update"
|
178 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Add New Role"
|
182 |
msgstr "افزودن نقش جدید"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
-
#, fuzzy
|
187 |
msgid "Rename Role"
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#: ../includes/class-user-role-editor.php:
|
191 |
msgid " Role name (ID) can not be empty!"
|
192 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
193 |
|
194 |
-
#: ../includes/class-user-role-editor.php:
|
195 |
msgid ""
|
196 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
197 |
"only!"
|
198 |
msgstr ""
|
199 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid ""
|
203 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
204 |
"it."
|
205 |
msgstr ""
|
206 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Add Role"
|
210 |
msgstr "افزودن نقش"
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Delete Role"
|
214 |
msgstr "حذف نقش"
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Cancel"
|
218 |
msgstr "لغو"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Add Capability"
|
222 |
msgstr "افزودن قابلیت"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "Delete Capability"
|
227 |
msgstr "حذف قابلیت"
|
228 |
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
msgid "Reset"
|
231 |
msgstr "بازنشانی"
|
232 |
|
233 |
-
#: ../includes/class-user-role-editor.php:
|
234 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
235 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
236 |
|
237 |
-
#: ../includes/class-user-role-editor.php:
|
238 |
msgid ""
|
239 |
"If any plugins have changed capabilities in any way upon installation (such "
|
240 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -242,51 +241,51 @@ msgstr ""
|
|
242 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
243 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
244 |
|
245 |
-
#: ../includes/class-user-role-editor.php:
|
246 |
msgid ""
|
247 |
"For more information on how to undo changes and restore plugin capabilities "
|
248 |
"go to"
|
249 |
msgstr ""
|
250 |
-
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن
|
251 |
"مراجعه کنید به"
|
252 |
|
253 |
-
#: ../includes/class-user-role-editor.php:
|
254 |
msgid "Continue?"
|
255 |
-
msgstr "
|
256 |
|
257 |
-
#: ../includes/class-user-role-editor.php:
|
258 |
msgid "Default Role"
|
259 |
msgstr "نقش پیشفرض"
|
260 |
|
261 |
-
#: ../includes/class-user-role-editor.php:
|
262 |
msgid "Set New Default Role"
|
263 |
msgstr "نشاندن نقش پیشفرض جدید"
|
264 |
|
265 |
-
#: ../includes/class-user-role-editor.php:
|
266 |
msgid ""
|
267 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
268 |
"or other custom code"
|
269 |
msgstr ""
|
270 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
271 |
-
"سفارشی را دچار
|
272 |
|
273 |
-
#: ../includes/class-user-role-editor.php:
|
274 |
msgid " Capability name (ID) can not be empty!"
|
275 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
276 |
|
277 |
-
#: ../includes/class-user-role-editor.php:
|
278 |
msgid ""
|
279 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
280 |
"underscore only!"
|
281 |
msgstr ""
|
282 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
283 |
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
msgid "Other Roles"
|
287 |
msgstr "دیگر نقشها"
|
288 |
|
289 |
-
#: ../includes/class-user-role-editor.php:
|
290 |
msgid "Edit"
|
291 |
msgstr "ویرایش"
|
292 |
|
@@ -328,7 +327,7 @@ msgstr "نام نقش (شناسه): "
|
|
328 |
|
329 |
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
330 |
msgid "Display Role Name: "
|
331 |
-
msgstr "
|
332 |
|
333 |
#: ../includes/class-ure-lib.php:282
|
334 |
msgid "Make copy of: "
|
@@ -382,22 +381,30 @@ msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
384 |
|
|
|
|
|
|
|
|
|
385 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
386 |
msgid "Help"
|
387 |
msgstr "راهنما"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
397 |
msgstr ""
|
398 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
msgid ""
|
402 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
403 |
"characters to it."
|
@@ -405,377 +412,377 @@ msgstr ""
|
|
405 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
406 |
"کنید."
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
#, php-format
|
410 |
msgid "Role %s exists already"
|
411 |
msgstr "نقش %s از پیش موجود است"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Error is encountered during new role create operation"
|
415 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
#, php-format
|
419 |
msgid "Role %s is created successfully"
|
420 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Error: Role ID is empty!"
|
424 |
-
msgstr ""
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
msgid "Error: Empty role display name is not allowed."
|
428 |
-
msgstr ""
|
429 |
|
430 |
-
#: ../includes/class-ure-lib.php:
|
431 |
-
#,
|
432 |
msgid "Role %s does not exists"
|
433 |
-
msgstr "موجود
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
-
#,
|
437 |
msgid "Role %s is renamed to %s successfully"
|
438 |
-
msgstr "نقش %s با موفقیت
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
msgid "Error encountered during role delete operation"
|
442 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Unused roles are deleted successfully"
|
446 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
#, php-format
|
450 |
msgid "Role %s is deleted successfully"
|
451 |
msgstr "نقش %s با موفقیت حذف شد"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Error encountered during default role change operation"
|
455 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
#, php-format
|
459 |
msgid "Default role for new users is set to %s successfully"
|
460 |
-
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Editor"
|
464 |
msgstr "ویرایشگر"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Author"
|
468 |
msgstr "نویسنده"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Contributor"
|
472 |
msgstr "مشارکتکننده"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Subscriber"
|
476 |
msgstr "مشترک"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Switch themes"
|
480 |
msgstr "تغییر پوستهها"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Edit themes"
|
484 |
msgstr "ویرایش پوستهها"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Activate plugins"
|
488 |
msgstr "فعالسازی افزونهها"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Edit plugins"
|
492 |
msgstr "ویرایش افزونهها"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Edit users"
|
496 |
msgstr "ویرایش کاربران"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Edit files"
|
500 |
msgstr "ویرایش فایلها"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Manage options"
|
504 |
msgstr "مدیریت تنظیمات"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Moderate comments"
|
508 |
msgstr "مدیریت دیدگاهها"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Manage categories"
|
512 |
msgstr "مدیریت دستهها"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Manage links"
|
516 |
msgstr "مدیریت پیوندها"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Upload files"
|
520 |
msgstr "بارگذاری فایلها"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Import"
|
524 |
msgstr "درونریزی"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Unfiltered html"
|
528 |
msgstr "اچتیامال فیلترنشده"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Edit posts"
|
532 |
msgstr "ویرایش نوشتهها"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Edit others posts"
|
536 |
msgstr "ویرایش نوشتهی دیگران"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Edit published posts"
|
540 |
msgstr "ویرایش نوشتههای منتشرشده"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Publish posts"
|
544 |
msgstr "انتشار نوشتهها"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Edit pages"
|
548 |
msgstr "ویرایش صفحات"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Read"
|
552 |
msgstr "خواندن"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Level 10"
|
556 |
msgstr "سطح ۱۰"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Level 9"
|
560 |
msgstr "سطح ۹"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Level 8"
|
564 |
msgstr "سطح ۸"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Level 7"
|
568 |
msgstr "سطح ۷"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 6"
|
572 |
msgstr "سطح ۶"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 5"
|
576 |
msgstr "سطح ۵"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 4"
|
580 |
msgstr "سطح ۴"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 3"
|
584 |
msgstr "سطح ۳"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 2"
|
588 |
msgstr "سطح ۲"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Level 1"
|
592 |
msgstr "سطح ۱"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Level 0"
|
596 |
msgstr "سطح ۰"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Edit others pages"
|
600 |
-
msgstr "ویرایش
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Edit published pages"
|
604 |
-
msgstr "ویرایش
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Publish pages"
|
608 |
-
msgstr "انتشار
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Delete pages"
|
612 |
-
msgstr "حذف
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Delete others pages"
|
616 |
-
msgstr "حذف
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Delete published pages"
|
620 |
-
msgstr "حذف
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Delete posts"
|
624 |
-
msgstr "حذف
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete others posts"
|
628 |
msgstr "حذف نوشتههای دیگران"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Delete published posts"
|
632 |
msgstr "حذف نوشتههای منتشرشده"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Delete private posts"
|
636 |
msgstr "حذف نوشتههای خصوصی"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Edit private posts"
|
640 |
msgstr "ویرایش نوشتههای خصوصی"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Read private posts"
|
644 |
msgstr "خواندن نوشتههای خصوصی"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Delete private pages"
|
648 |
-
msgstr "حذف
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Edit private pages"
|
652 |
-
msgstr "ویرایش
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Read private pages"
|
656 |
-
msgstr "خواندن
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Delete users"
|
660 |
msgstr "حذف کاربران"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Create users"
|
664 |
msgstr "ایجاد کاربران"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Unfiltered upload"
|
668 |
msgstr "بارگذاری فیلترشده"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Edit dashboard"
|
672 |
msgstr "ویرایش پیشخوان"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Update plugins"
|
676 |
msgstr "بروزرسانی افزونهها"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Delete plugins"
|
680 |
msgstr "حذف افزونهها"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Install plugins"
|
684 |
msgstr "نصب افزونهها"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Update themes"
|
688 |
msgstr "بروزرسانی پوستهها"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "Install themes"
|
692 |
msgstr "نصب پوستهها"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Update core"
|
696 |
msgstr "بروزرسانی هسته"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "List users"
|
700 |
msgstr "فهرست کاربران"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Remove users"
|
704 |
msgstr "حذف کابران"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Add users"
|
708 |
msgstr "افزودن کاربران"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Promote users"
|
712 |
msgstr "ارتقاء کاربران"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Edit theme options"
|
716 |
msgstr "ویرایش تنظیمات پوسته"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Delete themes"
|
720 |
msgstr "حذف پوستهها"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
msgid "Export"
|
724 |
msgstr "برونریزی"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
728 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
729 |
|
730 |
-
#: ../includes/class-ure-lib.php:
|
731 |
#, php-format
|
732 |
msgid "Capability %s is added successfully"
|
733 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
#, php-format
|
737 |
msgid "Capability %s exists already"
|
738 |
msgstr "قابلیت %s از پیش موجود است"
|
739 |
|
740 |
-
#: ../includes/class-ure-lib.php:
|
741 |
#, php-format
|
742 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
743 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
#, php-format
|
747 |
msgid "Capability %s is removed successfully"
|
748 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
749 |
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
msgid "Version:"
|
752 |
-
msgstr ""
|
753 |
|
754 |
-
#: ../includes/class-ure-lib.php:
|
755 |
msgid "Author's website"
|
756 |
msgstr "وبگاه نویسنده"
|
757 |
|
758 |
-
#: ../includes/class-ure-lib.php:
|
759 |
msgid "Plugin webpage"
|
760 |
-
msgstr "
|
761 |
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
msgid "Plugin download"
|
764 |
msgstr "بارگیری افزونه"
|
765 |
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "FAQ"
|
768 |
msgstr "سوالات مکرر"
|
769 |
|
770 |
-
#: ../includes/class-ure-lib.php:
|
771 |
msgid "None"
|
772 |
msgstr "هیچکدام"
|
773 |
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
msgid "Delete All Unused Roles"
|
776 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
777 |
|
778 |
-
#: ../includes/class-ure-lib.php:
|
779 |
msgid "— No role for this site —"
|
780 |
msgstr "— هیچ نقشی برای این سایت —"
|
781 |
|
@@ -799,15 +806,21 @@ msgstr "نقش بیبیپرس:"
|
|
799 |
msgid "Other Roles:"
|
800 |
msgstr "دیگر نقشها:"
|
801 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
#: ../includes/class-ure-screen-help.php:16
|
803 |
msgid ""
|
804 |
"turn this option on in order to make the \"Administrator\" role available at "
|
805 |
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
806 |
"for security reasons."
|
807 |
msgstr ""
|
808 |
-
"
|
809 |
-
"
|
810 |
-
"مخفی میباشد."
|
811 |
|
812 |
#: ../includes/class-ure-screen-help.php:19
|
813 |
msgid ""
|
@@ -816,8 +829,8 @@ msgid ""
|
|
816 |
"others posts\"."
|
817 |
msgstr ""
|
818 |
"به طور خودکار نام قابلیتها را از حالت فنی به منظور استفادههای داخلی تبدیل "
|
819 |
-
"میکند.
|
820 |
-
"
|
821 |
|
822 |
#: ../includes/class-ure-screen-help.php:22
|
823 |
msgid ""
|
@@ -826,7 +839,7 @@ msgid ""
|
|
826 |
"with the old themes and plugins code. Turning on this option will show those "
|
827 |
"deprecated capabilities."
|
828 |
msgstr ""
|
829 |
-
"قابلیتهایی شبیه
|
830 |
"نمیشوند. این قابلیتها در نقشهای کاربران به منظور سازگاری با پوستههای قدیمی و "
|
831 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
832 |
"شده را نمایش میدهد."
|
@@ -837,44 +850,44 @@ msgid ""
|
|
837 |
"mode. Administrator can not assign capabilities to the user directly. He "
|
838 |
"should make it using roles only."
|
839 |
msgstr ""
|
|
|
|
|
|
|
840 |
|
841 |
#: ../includes/class-ure-screen-help.php:46
|
842 |
msgid ""
|
843 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
844 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
845 |
"users list with role \"No rights\" at the separate tab then."
|
846 |
-
msgstr ""
|
847 |
|
848 |
#: ../includes/class-ure-screen-help.php:63
|
849 |
-
#, fuzzy
|
850 |
msgid "Other default roles for new registered user"
|
851 |
-
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام
|
852 |
|
853 |
#: ../includes/class-ure-screen-help.php:64
|
854 |
-
#, fuzzy
|
855 |
msgid ""
|
856 |
"select roles below to assign them to the new user automatically as an "
|
857 |
"addition to the primary role. Note for multisite environment: take into "
|
858 |
"account that other default roles should exist at the site, in order to be "
|
859 |
"assigned to the new registered users."
|
860 |
msgstr ""
|
861 |
-
"
|
862 |
-
"
|
|
|
863 |
|
864 |
#: ../includes/class-ure-screen-help.php:82
|
865 |
-
#, fuzzy
|
866 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
867 |
-
msgstr "اجازه به غیر
|
868 |
|
869 |
#: ../includes/class-ure-screen-help.php:83
|
870 |
-
#, fuzzy
|
871 |
msgid ""
|
872 |
"Super administrator only may create, edit and delete users under WordPress "
|
873 |
"multi-site by default. Turn this option on in order to remove this "
|
874 |
"limitation."
|
875 |
msgstr ""
|
876 |
-
"در وردپرس
|
877 |
-
"
|
878 |
|
879 |
#, fuzzy
|
880 |
#~ msgid "select roles below"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
9 |
+
"Language: fa_IR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
15 |
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
"X-Poedit-SearchPath-1: ..\n"
|
20 |
|
63 |
|
64 |
#: ../includes/settings-template.php:77
|
65 |
#: ../includes/class-ure-screen-help.php:25
|
|
|
66 |
msgid "Edit user capabilities"
|
67 |
+
msgstr "ویرایش قابلیتهای کاربر"
|
68 |
|
69 |
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
70 |
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
90 |
"should exist at the site, in order to be assigned to the new registered "
|
91 |
"users."
|
92 |
msgstr ""
|
93 |
+
"قابل توجه محیط چند سایتی: به منظور اختصاصدادن نقشها به کاربران تازه ثبتنام "
|
94 |
+
"شده، به حسابی بروید که نقشهای پیشفرض دیگر میبایست در سایت موجود باشد."
|
95 |
|
96 |
#: ../includes/settings-template.php:177
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
+
msgstr "اجازه به مدیران غیر اصلی برای ایجاد، ویرایش و حذف کاربران"
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:234
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr "تغییر نقش برای کاربران بدون نقش"
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:235
|
105 |
msgid "No rights"
|
106 |
+
msgstr "بدون هیچ حقی"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:236
|
109 |
msgid "Provide new role"
|
110 |
msgstr "ارائهی نقش جدید"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:320
|
113 |
+
#: ../includes/class-user-role-editor.php:322
|
114 |
msgid "You do not have permission to edit this user."
|
115 |
msgstr "شما اجازهی ویرایش این کاربر را ندارید."
|
116 |
|
123 |
msgstr "تنظیمات"
|
124 |
|
125 |
#: ../includes/class-user-role-editor.php:569
|
126 |
+
#: ../includes/class-ure-lib.php:2540
|
127 |
msgid "Changelog"
|
128 |
msgstr "گزارش تغییرات"
|
129 |
|
130 |
#: ../includes/class-user-role-editor.php:619
|
131 |
#: ../includes/class-user-role-editor.php:648
|
132 |
+
#: ../includes/class-user-role-editor.php:1030
|
133 |
#: ../includes/class-ure-lib.php:337
|
134 |
msgid "User Role Editor"
|
135 |
msgstr "ویرایشگر نقش کاربر"
|
144 |
msgid "Default Roles are updated"
|
145 |
msgstr "نقشهای پیش فرض بروز شدند"
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:779
|
148 |
msgid ""
|
149 |
"You do not have sufficient permissions to manage options for User Role "
|
150 |
"Editor."
|
151 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:851
|
154 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
155 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
156 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
157 |
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:977
|
161 |
msgid "Select All"
|
162 |
msgstr "انتخاب همه"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:978
|
165 |
msgid "Unselect All"
|
166 |
msgstr "عدمانتخاب همه"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:979
|
169 |
msgid "Reverse"
|
170 |
msgstr "وارونه"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:980
|
173 |
msgid "Update"
|
174 |
msgstr "بروزرسانی"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:981
|
177 |
msgid "Please confirm permissions update"
|
178 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:982
|
181 |
msgid "Add New Role"
|
182 |
msgstr "افزودن نقش جدید"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:983
|
185 |
+
#: ../includes/class-user-role-editor.php:988
|
|
|
186 |
msgid "Rename Role"
|
187 |
+
msgstr "تغییرنام نقش"
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:984
|
190 |
msgid " Role name (ID) can not be empty!"
|
191 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:985
|
194 |
msgid ""
|
195 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
196 |
"only!"
|
197 |
msgstr ""
|
198 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
199 |
|
200 |
+
#: ../includes/class-user-role-editor.php:986
|
201 |
msgid ""
|
202 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
203 |
"it."
|
204 |
msgstr ""
|
205 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:987
|
208 |
msgid "Add Role"
|
209 |
msgstr "افزودن نقش"
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:989
|
212 |
msgid "Delete Role"
|
213 |
msgstr "حذف نقش"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:990
|
216 |
msgid "Cancel"
|
217 |
msgstr "لغو"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:991
|
220 |
msgid "Add Capability"
|
221 |
msgstr "افزودن قابلیت"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:992
|
224 |
+
#: ../includes/class-user-role-editor.php:1001
|
225 |
msgid "Delete Capability"
|
226 |
msgstr "حذف قابلیت"
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:993
|
229 |
msgid "Reset"
|
230 |
msgstr "بازنشانی"
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:994
|
233 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
234 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:995
|
237 |
msgid ""
|
238 |
"If any plugins have changed capabilities in any way upon installation (such "
|
239 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
241 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
242 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:996
|
245 |
msgid ""
|
246 |
"For more information on how to undo changes and restore plugin capabilities "
|
247 |
"go to"
|
248 |
msgstr ""
|
249 |
+
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیتها "
|
250 |
"مراجعه کنید به"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:998
|
253 |
msgid "Continue?"
|
254 |
+
msgstr "ادامه میدهید؟"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:999
|
257 |
msgid "Default Role"
|
258 |
msgstr "نقش پیشفرض"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:1000
|
261 |
msgid "Set New Default Role"
|
262 |
msgstr "نشاندن نقش پیشفرض جدید"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:1002
|
265 |
msgid ""
|
266 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
267 |
"or other custom code"
|
268 |
msgstr ""
|
269 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
270 |
+
"سفارشی را دچار اشکال کند"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:1003
|
273 |
msgid " Capability name (ID) can not be empty!"
|
274 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
275 |
|
276 |
+
#: ../includes/class-user-role-editor.php:1004
|
277 |
msgid ""
|
278 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
279 |
"underscore only!"
|
280 |
msgstr ""
|
281 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:1033
|
284 |
+
#: ../includes/class-user-role-editor.php:1066
|
285 |
msgid "Other Roles"
|
286 |
msgstr "دیگر نقشها"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:1047
|
289 |
msgid "Edit"
|
290 |
msgstr "ویرایش"
|
291 |
|
327 |
|
328 |
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
329 |
msgid "Display Role Name: "
|
330 |
+
msgstr "نام نمایشی نقش:"
|
331 |
|
332 |
#: ../includes/class-ure-lib.php:282
|
333 |
msgid "Make copy of: "
|
381 |
msgid "User Roles are restored to WordPress default values. "
|
382 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1444
|
385 |
+
msgid "read about"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
#: ../includes/class-ure-lib.php:1445
|
389 |
+
msgid "user capability"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: ../includes/class-ure-lib.php:1446
|
393 |
msgid "Help"
|
394 |
msgstr "راهنما"
|
395 |
|
396 |
+
#: ../includes/class-ure-lib.php:1914
|
397 |
msgid "Error is occur. Please check the log file."
|
398 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
401 |
msgid ""
|
402 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
403 |
"only!"
|
404 |
msgstr ""
|
405 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
408 |
msgid ""
|
409 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
410 |
"characters to it."
|
412 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
413 |
"کنید."
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1979
|
416 |
#, php-format
|
417 |
msgid "Role %s exists already"
|
418 |
msgstr "نقش %s از پیش موجود است"
|
419 |
|
420 |
+
#: ../includes/class-ure-lib.php:1994
|
421 |
msgid "Error is encountered during new role create operation"
|
422 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1996
|
425 |
#, php-format
|
426 |
msgid "Role %s is created successfully"
|
427 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:2020
|
430 |
msgid "Error: Role ID is empty!"
|
431 |
+
msgstr "خطا: شناسهی نقش خالی است!"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:2038
|
434 |
msgid "Error: Empty role display name is not allowed."
|
435 |
+
msgstr "خطا: خالی بودن نام نمایشی نقش مجاز نیست."
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:2045
|
438 |
+
#, php-format
|
439 |
msgid "Role %s does not exists"
|
440 |
+
msgstr "نقش %s موجود نیست"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:2053
|
443 |
+
#, php-format
|
444 |
msgid "Role %s is renamed to %s successfully"
|
445 |
+
msgstr "نقش %s با موفقیت به %s تغییرنام داده شد"
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2126
|
448 |
msgid "Error encountered during role delete operation"
|
449 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:2128
|
452 |
msgid "Unused roles are deleted successfully"
|
453 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:2130
|
456 |
#, php-format
|
457 |
msgid "Role %s is deleted successfully"
|
458 |
msgstr "نقش %s با موفقیت حذف شد"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:2155
|
461 |
msgid "Error encountered during default role change operation"
|
462 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:2161
|
465 |
#, php-format
|
466 |
msgid "Default role for new users is set to %s successfully"
|
467 |
+
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s تنظیم شد"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2180
|
470 |
msgid "Editor"
|
471 |
msgstr "ویرایشگر"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:2181
|
474 |
msgid "Author"
|
475 |
msgstr "نویسنده"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2182
|
478 |
msgid "Contributor"
|
479 |
msgstr "مشارکتکننده"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2183
|
482 |
msgid "Subscriber"
|
483 |
msgstr "مشترک"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2185
|
486 |
msgid "Switch themes"
|
487 |
msgstr "تغییر پوستهها"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2186
|
490 |
msgid "Edit themes"
|
491 |
msgstr "ویرایش پوستهها"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2187
|
494 |
msgid "Activate plugins"
|
495 |
msgstr "فعالسازی افزونهها"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2188
|
498 |
msgid "Edit plugins"
|
499 |
msgstr "ویرایش افزونهها"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2189
|
502 |
msgid "Edit users"
|
503 |
msgstr "ویرایش کاربران"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2190
|
506 |
msgid "Edit files"
|
507 |
msgstr "ویرایش فایلها"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:2191
|
510 |
msgid "Manage options"
|
511 |
msgstr "مدیریت تنظیمات"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:2192
|
514 |
msgid "Moderate comments"
|
515 |
msgstr "مدیریت دیدگاهها"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:2193
|
518 |
msgid "Manage categories"
|
519 |
msgstr "مدیریت دستهها"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:2194
|
522 |
msgid "Manage links"
|
523 |
msgstr "مدیریت پیوندها"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:2195
|
526 |
msgid "Upload files"
|
527 |
msgstr "بارگذاری فایلها"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:2196
|
530 |
msgid "Import"
|
531 |
msgstr "درونریزی"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:2197
|
534 |
msgid "Unfiltered html"
|
535 |
msgstr "اچتیامال فیلترنشده"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:2198
|
538 |
msgid "Edit posts"
|
539 |
msgstr "ویرایش نوشتهها"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:2199
|
542 |
msgid "Edit others posts"
|
543 |
msgstr "ویرایش نوشتهی دیگران"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:2200
|
546 |
msgid "Edit published posts"
|
547 |
msgstr "ویرایش نوشتههای منتشرشده"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:2201
|
550 |
msgid "Publish posts"
|
551 |
msgstr "انتشار نوشتهها"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:2202
|
554 |
msgid "Edit pages"
|
555 |
msgstr "ویرایش صفحات"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:2203
|
558 |
msgid "Read"
|
559 |
msgstr "خواندن"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:2204
|
562 |
msgid "Level 10"
|
563 |
msgstr "سطح ۱۰"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2205
|
566 |
msgid "Level 9"
|
567 |
msgstr "سطح ۹"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:2206
|
570 |
msgid "Level 8"
|
571 |
msgstr "سطح ۸"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2207
|
574 |
msgid "Level 7"
|
575 |
msgstr "سطح ۷"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2208
|
578 |
msgid "Level 6"
|
579 |
msgstr "سطح ۶"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:2209
|
582 |
msgid "Level 5"
|
583 |
msgstr "سطح ۵"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:2210
|
586 |
msgid "Level 4"
|
587 |
msgstr "سطح ۴"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:2211
|
590 |
msgid "Level 3"
|
591 |
msgstr "سطح ۳"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2212
|
594 |
msgid "Level 2"
|
595 |
msgstr "سطح ۲"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2213
|
598 |
msgid "Level 1"
|
599 |
msgstr "سطح ۱"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2214
|
602 |
msgid "Level 0"
|
603 |
msgstr "سطح ۰"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2215
|
606 |
msgid "Edit others pages"
|
607 |
+
msgstr "ویرایش برگههای دیگران"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2216
|
610 |
msgid "Edit published pages"
|
611 |
+
msgstr "ویرایش برگههای منتشرشده"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2217
|
614 |
msgid "Publish pages"
|
615 |
+
msgstr "انتشار برگهها"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2218
|
618 |
msgid "Delete pages"
|
619 |
+
msgstr "حذف برگهها"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2219
|
622 |
msgid "Delete others pages"
|
623 |
+
msgstr "حذف برگههای دیگران"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2220
|
626 |
msgid "Delete published pages"
|
627 |
+
msgstr "حذف برگههای منتشرشده"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2221
|
630 |
msgid "Delete posts"
|
631 |
+
msgstr "حذف برگهها"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2222
|
634 |
msgid "Delete others posts"
|
635 |
msgstr "حذف نوشتههای دیگران"
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2223
|
638 |
msgid "Delete published posts"
|
639 |
msgstr "حذف نوشتههای منتشرشده"
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2224
|
642 |
msgid "Delete private posts"
|
643 |
msgstr "حذف نوشتههای خصوصی"
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2225
|
646 |
msgid "Edit private posts"
|
647 |
msgstr "ویرایش نوشتههای خصوصی"
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2226
|
650 |
msgid "Read private posts"
|
651 |
msgstr "خواندن نوشتههای خصوصی"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2227
|
654 |
msgid "Delete private pages"
|
655 |
+
msgstr "حذف برگههای خصوصی"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2228
|
658 |
msgid "Edit private pages"
|
659 |
+
msgstr "ویرایش برگههای خصوصی"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2229
|
662 |
msgid "Read private pages"
|
663 |
+
msgstr "خواندن برگههای خصوصی"
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2230
|
666 |
msgid "Delete users"
|
667 |
msgstr "حذف کاربران"
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2231
|
670 |
msgid "Create users"
|
671 |
msgstr "ایجاد کاربران"
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2232
|
674 |
msgid "Unfiltered upload"
|
675 |
msgstr "بارگذاری فیلترشده"
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2233
|
678 |
msgid "Edit dashboard"
|
679 |
msgstr "ویرایش پیشخوان"
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2234
|
682 |
msgid "Update plugins"
|
683 |
msgstr "بروزرسانی افزونهها"
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2235
|
686 |
msgid "Delete plugins"
|
687 |
msgstr "حذف افزونهها"
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2236
|
690 |
msgid "Install plugins"
|
691 |
msgstr "نصب افزونهها"
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2237
|
694 |
msgid "Update themes"
|
695 |
msgstr "بروزرسانی پوستهها"
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2238
|
698 |
msgid "Install themes"
|
699 |
msgstr "نصب پوستهها"
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2239
|
702 |
msgid "Update core"
|
703 |
msgstr "بروزرسانی هسته"
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2240
|
706 |
msgid "List users"
|
707 |
msgstr "فهرست کاربران"
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2241
|
710 |
msgid "Remove users"
|
711 |
msgstr "حذف کابران"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2242
|
714 |
msgid "Add users"
|
715 |
msgstr "افزودن کاربران"
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2243
|
718 |
msgid "Promote users"
|
719 |
msgstr "ارتقاء کاربران"
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2244
|
722 |
msgid "Edit theme options"
|
723 |
msgstr "ویرایش تنظیمات پوسته"
|
724 |
|
725 |
+
#: ../includes/class-ure-lib.php:2245
|
726 |
msgid "Delete themes"
|
727 |
msgstr "حذف پوستهها"
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2246
|
730 |
msgid "Export"
|
731 |
msgstr "برونریزی"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2369
|
734 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
735 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2382
|
738 |
#, php-format
|
739 |
msgid "Capability %s is added successfully"
|
740 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2384
|
743 |
#, php-format
|
744 |
msgid "Capability %s exists already"
|
745 |
msgstr "قابلیت %s از پیش موجود است"
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2413
|
748 |
#, php-format
|
749 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
750 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2432
|
753 |
#, php-format
|
754 |
msgid "Capability %s is removed successfully"
|
755 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2536
|
758 |
msgid "Version:"
|
759 |
+
msgstr "نسخه:"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2537
|
762 |
msgid "Author's website"
|
763 |
msgstr "وبگاه نویسنده"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2538
|
766 |
msgid "Plugin webpage"
|
767 |
+
msgstr "برگهی افزونه"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2539
|
770 |
msgid "Plugin download"
|
771 |
msgstr "بارگیری افزونه"
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2541
|
774 |
msgid "FAQ"
|
775 |
msgstr "سوالات مکرر"
|
776 |
|
777 |
+
#: ../includes/class-ure-lib.php:2589
|
778 |
msgid "None"
|
779 |
msgstr "هیچکدام"
|
780 |
|
781 |
+
#: ../includes/class-ure-lib.php:2616
|
782 |
msgid "Delete All Unused Roles"
|
783 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
784 |
|
785 |
+
#: ../includes/class-ure-lib.php:2640
|
786 |
msgid "— No role for this site —"
|
787 |
msgstr "— هیچ نقشی برای این سایت —"
|
788 |
|
806 |
msgid "Other Roles:"
|
807 |
msgstr "دیگر نقشها:"
|
808 |
|
809 |
+
#: ../includes/class-ure-screen-help.php:12
|
810 |
+
#: ../includes/class-ure-screen-help.php:41
|
811 |
+
#: ../includes/class-ure-screen-help.php:60
|
812 |
+
#: ../includes/class-ure-screen-help.php:79
|
813 |
+
msgid "User Role Editor Options page help"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
#: ../includes/class-ure-screen-help.php:16
|
817 |
msgid ""
|
818 |
"turn this option on in order to make the \"Administrator\" role available at "
|
819 |
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
820 |
"for security reasons."
|
821 |
msgstr ""
|
822 |
+
"به منظور قابل دسترس شدن نقش «مدیر» در فهرست کشویی ویرایشگر نقش کاربر این "
|
823 |
+
"گزینه را روشن کنید. این امکان به دلیل مسائل امنیتی بهطور پیشفرض مخفی است."
|
|
|
824 |
|
825 |
#: ../includes/class-ure-screen-help.php:19
|
826 |
msgid ""
|
829 |
"others posts\"."
|
830 |
msgstr ""
|
831 |
"به طور خودکار نام قابلیتها را از حالت فنی به منظور استفادههای داخلی تبدیل "
|
832 |
+
"میکند. مانند «edit_others_posts» به حالت کاربر پسندتر، مثلا «ویرایش نوشتههای "
|
833 |
+
"دیگران»."
|
834 |
|
835 |
#: ../includes/class-ure-screen-help.php:22
|
836 |
msgid ""
|
839 |
"with the old themes and plugins code. Turning on this option will show those "
|
840 |
"deprecated capabilities."
|
841 |
msgstr ""
|
842 |
+
"قابلیتهایی شبیه «سطح ۰»، «سطح ۱» بد دانسته شدهاند و توسط وردپرس استفاده "
|
843 |
"نمیشوند. این قابلیتها در نقشهای کاربران به منظور سازگاری با پوستههای قدیمی و "
|
844 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
845 |
"شده را نمایش میدهد."
|
850 |
"mode. Administrator can not assign capabilities to the user directly. He "
|
851 |
"should make it using roles only."
|
852 |
msgstr ""
|
853 |
+
"اگر خاموش شود - بخش قابلیتهای کاربر انتخاب شده در حالت فقط خواندنی نمایش "
|
854 |
+
"داده میشود. مدیران به طور مستقیم نمیتوانند به کاربر قابلیتی اختصاص دهند. او "
|
855 |
+
"باید تنها از نقشها استفاده کند."
|
856 |
|
857 |
#: ../includes/class-ure-screen-help.php:46
|
858 |
msgid ""
|
859 |
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
860 |
"assign all of them an empty role \"No rights\", in order to look on the "
|
861 |
"users list with role \"No rights\" at the separate tab then."
|
862 |
+
msgstr "نمایش کاربران بدون نقش در برگهی «کاربران» "
|
863 |
|
864 |
#: ../includes/class-ure-screen-help.php:63
|
|
|
865 |
msgid "Other default roles for new registered user"
|
866 |
+
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده"
|
867 |
|
868 |
#: ../includes/class-ure-screen-help.php:64
|
|
|
869 |
msgid ""
|
870 |
"select roles below to assign them to the new user automatically as an "
|
871 |
"addition to the primary role. Note for multisite environment: take into "
|
872 |
"account that other default roles should exist at the site, in order to be "
|
873 |
"assigned to the new registered users."
|
874 |
msgstr ""
|
875 |
+
"نقشهای زیر را علاوه بر نقش ابتدایی برای اختصاص خودکار به کاربر جدید انتخاب "
|
876 |
+
"کنید. قابل توجه محیط چند سایتی: به منظور اختصاصدادن نقشها به کاربران تازه "
|
877 |
+
"ثبتنام شده، به حسابی بروید که نقشهای پیشفرض دیگر میبایست در سایت موجود باشد."
|
878 |
|
879 |
#: ../includes/class-ure-screen-help.php:82
|
|
|
880 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
881 |
+
msgstr "اجازه به مدیران غیر اصلی برای ایجاد، ویرایش و حذف کاربران"
|
882 |
|
883 |
#: ../includes/class-ure-screen-help.php:83
|
|
|
884 |
msgid ""
|
885 |
"Super administrator only may create, edit and delete users under WordPress "
|
886 |
"multi-site by default. Turn this option on in order to remove this "
|
887 |
"limitation."
|
888 |
msgstr ""
|
889 |
+
"در وردپرس چندسایتی به طور پیشفرض تنها مدیر اصلی اجازهی ایجاد، ویرایش و حذف "
|
890 |
+
"کاربران را دارد. برای حذف این محدودیت این گزینه را روشن کنید."
|
891 |
|
892 |
#, fuzzy
|
893 |
#~ msgid "select roles below"
|
lang/ure-fr_FR.mo
CHANGED
Binary file
|
lang/ure-fr_FR.po
CHANGED
@@ -6,8 +6,8 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: User Role Editor\n"
|
8 |
"Report-Msgid-Bugs-To: \n"
|
9 |
-
"POT-Creation-Date: 2015-02-
|
10 |
-
"PO-Revision-Date: 2015-02-
|
11 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
12 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/user-"
|
13 |
"role-editor/language/fr_FR/)\n"
|
@@ -104,20 +104,20 @@ msgstr ""
|
|
104 |
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
105 |
"modifier ou supprimer des utilisateurs"
|
106 |
|
107 |
-
#: ../includes/class-user-role-editor.php:
|
108 |
msgid "Change role for users without role"
|
109 |
msgstr "Changer le rôle pour les utilisateurs sans rôle"
|
110 |
|
111 |
-
#: ../includes/class-user-role-editor.php:
|
112 |
msgid "No rights"
|
113 |
msgstr "Aucun droit"
|
114 |
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "Provide new role"
|
117 |
msgstr "Fournir un nouveau rôle"
|
118 |
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
-
#: ../includes/class-user-role-editor.php:
|
121 |
msgid "You do not have permission to edit this user."
|
122 |
msgstr ""
|
123 |
"Vous n’avez pas l’autorisation de modifier cet utilisateur."
|
@@ -131,13 +131,13 @@ msgid "Settings"
|
|
131 |
msgstr "Paramètres"
|
132 |
|
133 |
#: ../includes/class-user-role-editor.php:569
|
134 |
-
#: ../includes/class-ure-lib.php:
|
135 |
msgid "Changelog"
|
136 |
msgstr "Journal des modifications"
|
137 |
|
138 |
#: ../includes/class-user-role-editor.php:619
|
139 |
#: ../includes/class-user-role-editor.php:648
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
#: ../includes/class-ure-lib.php:337
|
142 |
msgid "User Role Editor"
|
143 |
msgstr "User Role Editor"
|
@@ -152,7 +152,7 @@ msgstr "Les options de User Role Editor ont été mises à jour"
|
|
152 |
msgid "Default Roles are updated"
|
153 |
msgstr "Les rôles par défauts ont été mis à jour"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid ""
|
157 |
"You do not have sufficient permissions to manage options for User Role "
|
158 |
"Editor."
|
@@ -160,47 +160,47 @@ msgstr ""
|
|
160 |
"Vous n'avez pas les permissions suffisantes pour gérer les options de User "
|
161 |
"Role Editor."
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
-
#: ../includes/class-ure-lib.php:
|
165 |
-
#: ../includes/class-ure-lib.php:
|
166 |
-
#: ../includes/class-ure-lib.php:
|
167 |
msgid "Insufficient permissions to work with User Role Editor"
|
168 |
msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Select All"
|
172 |
msgstr "Tout sélectionner"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Unselect All"
|
176 |
msgstr "Tout déselectionner"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Reverse"
|
180 |
msgstr "Inverser"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid "Update"
|
184 |
msgstr "Mettre à jour"
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
msgid "Please confirm permissions update"
|
188 |
msgstr "Merci de confirmer la mise à jour des permissions"
|
189 |
|
190 |
-
#: ../includes/class-user-role-editor.php:
|
191 |
msgid "Add New Role"
|
192 |
msgstr "Ajouter un nouveau rôle"
|
193 |
|
194 |
-
#: ../includes/class-user-role-editor.php:
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid "Rename Role"
|
197 |
msgstr "Renommer le Rôle"
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid " Role name (ID) can not be empty!"
|
201 |
msgstr "Le nom du rôle (ID) ne peut pas être vide !"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid ""
|
205 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
206 |
"only!"
|
@@ -208,7 +208,7 @@ msgstr ""
|
|
208 |
"Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
|
209 |
"chiffres, des traits d'union ou des caractères de soulignement !"
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid ""
|
213 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
214 |
"it."
|
@@ -216,38 +216,38 @@ msgstr ""
|
|
216 |
"WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
|
217 |
"caractères latin à celui-ci."
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
msgid "Add Role"
|
221 |
msgstr "Ajouter un rôle"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Delete Role"
|
225 |
msgstr "Supprimer un rôle"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid "Cancel"
|
229 |
msgstr "Annuler"
|
230 |
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid "Add Capability"
|
233 |
msgstr "Ajouter la capacité"
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid "Delete Capability"
|
238 |
msgstr "Supprimer la capacité"
|
239 |
|
240 |
-
#: ../includes/class-user-role-editor.php:
|
241 |
msgid "Reset"
|
242 |
msgstr "Réinitialiser"
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
246 |
msgstr ""
|
247 |
"DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
|
248 |
"de WordPress."
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid ""
|
252 |
"If any plugins have changed capabilities in any way upon installation (such "
|
253 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -255,7 +255,7 @@ msgstr ""
|
|
255 |
"Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
|
256 |
"et bien d'autres), ces capacités seront SUPPRIMÉES ! "
|
257 |
|
258 |
-
#: ../includes/class-user-role-editor.php:
|
259 |
msgid ""
|
260 |
"For more information on how to undo changes and restore plugin capabilities "
|
261 |
"go to"
|
@@ -263,19 +263,19 @@ msgstr ""
|
|
263 |
"Pour de plus amples informations sur la façon d'annuler les modifications et "
|
264 |
"rétablir les fonctions de l'extension, aller sur "
|
265 |
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid "Continue?"
|
268 |
msgstr "Continuer ?"
|
269 |
|
270 |
-
#: ../includes/class-user-role-editor.php:
|
271 |
msgid "Default Role"
|
272 |
msgstr " Rôle par défaut"
|
273 |
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
msgid "Set New Default Role"
|
276 |
msgstr "Régler le nouveau rôle par défaut"
|
277 |
|
278 |
-
#: ../includes/class-user-role-editor.php:
|
279 |
msgid ""
|
280 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
281 |
"or other custom code"
|
@@ -283,11 +283,11 @@ msgstr ""
|
|
283 |
"Attention ! Enlever des capacités critiques pourrait faire planter certaines "
|
284 |
"extension ou autres codes personnalisés"
|
285 |
|
286 |
-
#: ../includes/class-user-role-editor.php:
|
287 |
msgid " Capability name (ID) can not be empty!"
|
288 |
msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
|
289 |
|
290 |
-
#: ../includes/class-user-role-editor.php:
|
291 |
msgid ""
|
292 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
293 |
"underscore only!"
|
@@ -295,12 +295,12 @@ msgstr ""
|
|
295 |
"Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
|
296 |
"des chiffres, des traits d'union ou des caractères de soulignement !"
|
297 |
|
298 |
-
#: ../includes/class-user-role-editor.php:
|
299 |
-
#: ../includes/class-user-role-editor.php:
|
300 |
msgid "Other Roles"
|
301 |
msgstr "Autres rôles"
|
302 |
|
303 |
-
#: ../includes/class-user-role-editor.php:
|
304 |
msgid "Edit"
|
305 |
msgstr "Modifier"
|
306 |
|
@@ -399,15 +399,23 @@ msgstr ""
|
|
399 |
"Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
|
400 |
"WordPress."
|
401 |
|
|
|
|
|
|
|
|
|
402 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
403 |
msgid "Help"
|
404 |
msgstr "Aide"
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "Error is occur. Please check the log file."
|
408 |
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid ""
|
412 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
413 |
"only!"
|
@@ -415,7 +423,7 @@ msgstr ""
|
|
415 |
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
416 |
"traits d'union ou des caractères de soulignement seulement !"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid ""
|
420 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
421 |
"characters to it."
|
@@ -423,382 +431,382 @@ msgstr ""
|
|
423 |
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
424 |
"des caractères latins à celui-ci."
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, php-format
|
428 |
msgid "Role %s exists already"
|
429 |
msgstr "Le rôle %s existe déjà"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error is encountered during new role create operation"
|
433 |
msgstr ""
|
434 |
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
#, php-format
|
438 |
msgid "Role %s is created successfully"
|
439 |
msgstr "Le rôle %s à bien été créé "
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error: Role ID is empty!"
|
443 |
msgstr "Erreur : L'ID du rôle est vide !"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Error: Empty role display name is not allowed."
|
447 |
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Role %s does not exists"
|
452 |
msgstr "Le rôle %s n’existe pas."
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
#, php-format
|
456 |
msgid "Role %s is renamed to %s successfully"
|
457 |
msgstr "Le rôle %s à bien été renommé en %s. "
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Error encountered during role delete operation"
|
461 |
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Unused roles are deleted successfully"
|
465 |
msgstr "Les rôles inutilisés ont bien été supprimés"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
#, php-format
|
469 |
msgid "Role %s is deleted successfully"
|
470 |
msgstr "Le rôle %s à bien été supprimé"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Error encountered during default role change operation"
|
474 |
msgstr ""
|
475 |
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
#, php-format
|
479 |
msgid "Default role for new users is set to %s successfully"
|
480 |
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Editor"
|
484 |
msgstr "Éditeur"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Author"
|
488 |
msgstr "Auteur"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Contributor"
|
492 |
msgstr "Contributeur"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Subscriber"
|
496 |
msgstr "Abonné"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Switch themes"
|
500 |
msgstr "Changer de thèmes"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Edit themes"
|
504 |
msgstr "Modifier les thèmes"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Activate plugins"
|
508 |
msgstr "Activer les extensions"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Edit plugins"
|
512 |
msgstr "Modifier les extensions"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Edit users"
|
516 |
msgstr "Modifier les utilisateurs"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Edit files"
|
520 |
msgstr "Modifier les fichiers"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Manage options"
|
524 |
msgstr "Gérer les options"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Moderate comments"
|
528 |
msgstr "Modérer les commentaires"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Manage categories"
|
532 |
msgstr "Gérer les catégories"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Manage links"
|
536 |
msgstr "Gérer les liens"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Upload files"
|
540 |
msgstr "Mettre en ligne des fichiers"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Import"
|
544 |
msgstr "Importer"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Unfiltered html"
|
548 |
msgstr "HTML non filtré"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Edit posts"
|
552 |
msgstr "Modifier les articles"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Edit others posts"
|
556 |
msgstr "Modifier les autres billets"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Edit published posts"
|
560 |
msgstr "Modifier les billets publiés "
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Publish posts"
|
564 |
msgstr "Publier des articles"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Edit pages"
|
568 |
msgstr "Modifier des pages"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Read"
|
572 |
msgstr "Lire"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 10"
|
576 |
msgstr "Niveau 10"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 9"
|
580 |
msgstr "Niveau 9"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 8"
|
584 |
msgstr "Niveau 8"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 7"
|
588 |
msgstr "Niveau 7"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Level 6"
|
592 |
msgstr "Niveau 6"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Level 5"
|
596 |
msgstr "Niveau 5"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Level 4"
|
600 |
msgstr "Niveau 4"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Level 3"
|
604 |
msgstr "Niveau 3"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Level 2"
|
608 |
msgstr "Niveau 2"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Level 1"
|
612 |
msgstr "Niveau 1"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Level 0"
|
616 |
msgstr "Niveau 0"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Edit others pages"
|
620 |
msgstr "Modifier les autres pages"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Edit published pages"
|
624 |
msgstr "Modifier les pages publiées "
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Publish pages"
|
628 |
msgstr "Publier les pages"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Delete pages"
|
632 |
msgstr "Supprimer les pages"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Delete others pages"
|
636 |
msgstr "Supprimer les autres pages"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete published pages"
|
640 |
msgstr "Supprimer les pages publiées"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Delete posts"
|
644 |
msgstr "Supprimer les articles"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Delete others posts"
|
648 |
msgstr "Supprimer les autres billets"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete published posts"
|
652 |
msgstr "Supprimer les billets publiés"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Delete private posts"
|
656 |
msgstr "Supprimer les billets privés"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Edit private posts"
|
660 |
msgstr "Modifier les billets privés"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Read private posts"
|
664 |
msgstr "Lire les billets privés"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Delete private pages"
|
668 |
msgstr "Supprimer les pages privées "
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Edit private pages"
|
672 |
msgstr "Modifier les pages privées"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Read private pages"
|
676 |
msgstr "Lire les pages privées"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Delete users"
|
680 |
msgstr "Supprimer les utilisateurs"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Create users"
|
684 |
msgstr "Créer des utilisateurs"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Unfiltered upload"
|
688 |
msgstr "Téléchargement non filtré"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "Edit dashboard"
|
692 |
msgstr "Modifier le tableau de bord"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Update plugins"
|
696 |
msgstr "Mettre à jour les extensions"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Delete plugins"
|
700 |
msgstr "Supprimer les extensions"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Install plugins"
|
704 |
msgstr "Installer les extensions"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Update themes"
|
708 |
msgstr "Mettre à jour les thèmes"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Install themes"
|
712 |
msgstr "Installer des thèmes"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Update core"
|
716 |
msgstr "Mettre à jour le cœur"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "List users"
|
720 |
msgstr "Lister les utilisateurs"
|
721 |
|
722 |
-
#: ../includes/class-ure-lib.php:
|
723 |
msgid "Remove users"
|
724 |
msgstr "Supprimer des utilisateurs"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Add users"
|
728 |
msgstr "Ajouter les utilisateurs"
|
729 |
|
730 |
-
#: ../includes/class-ure-lib.php:
|
731 |
msgid "Promote users"
|
732 |
msgstr "Promouvoir des utilisateurs"
|
733 |
|
734 |
-
#: ../includes/class-ure-lib.php:
|
735 |
msgid "Edit theme options"
|
736 |
msgstr "Modifier les options du thème"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
msgid "Delete themes"
|
740 |
msgstr "Supprimer des thèmes"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
msgid "Export"
|
744 |
msgstr "Exporter"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
748 |
msgstr ""
|
749 |
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
750 |
"et des chiffres !"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
#, php-format
|
754 |
msgid "Capability %s is added successfully"
|
755 |
msgstr "La capacité %s à bien été ajoutée "
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
#, php-format
|
759 |
msgid "Capability %s exists already"
|
760 |
msgstr "La capacité %s existe déjà"
|
761 |
|
762 |
-
#: ../includes/class-ure-lib.php:
|
763 |
#, php-format
|
764 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
765 |
msgstr ""
|
766 |
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
#, php-format
|
770 |
msgid "Capability %s is removed successfully"
|
771 |
msgstr "La capacité %s à bien été supprimée "
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "Version:"
|
775 |
msgstr "Version :"
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
msgid "Author's website"
|
779 |
msgstr "Site internet de l'auteur"
|
780 |
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "Plugin webpage"
|
783 |
msgstr "Page web de l'extension"
|
784 |
|
785 |
-
#: ../includes/class-ure-lib.php:
|
786 |
msgid "Plugin download"
|
787 |
msgstr "Téléchargement de l'extension"
|
788 |
|
789 |
-
#: ../includes/class-ure-lib.php:
|
790 |
msgid "FAQ"
|
791 |
msgstr "FAQ"
|
792 |
|
793 |
-
#: ../includes/class-ure-lib.php:
|
794 |
msgid "None"
|
795 |
msgstr "Aucun"
|
796 |
|
797 |
-
#: ../includes/class-ure-lib.php:
|
798 |
msgid "Delete All Unused Roles"
|
799 |
msgstr "Supprimer tous les rôles inutilisés "
|
800 |
|
801 |
-
#: ../includes/class-ure-lib.php:
|
802 |
msgid "— No role for this site —"
|
803 |
msgstr "— Pas de rôle sur ce site —"
|
804 |
|
@@ -822,6 +830,13 @@ msgstr "Rôle bbPress : "
|
|
822 |
msgid "Other Roles:"
|
823 |
msgstr "Autres rôles :"
|
824 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
#: ../includes/class-ure-screen-help.php:16
|
826 |
msgid ""
|
827 |
"turn this option on in order to make the \"Administrator\" role available at "
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: User Role Editor\n"
|
8 |
"Report-Msgid-Bugs-To: \n"
|
9 |
+
"POT-Creation-Date: 2015-02-23 12:05+0700\n"
|
10 |
+
"PO-Revision-Date: 2015-02-23 12:07+0700\n"
|
11 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
12 |
"Language-Team: French (France) (http://www.transifex.com/projects/p/user-"
|
13 |
"role-editor/language/fr_FR/)\n"
|
104 |
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
105 |
"modifier ou supprimer des utilisateurs"
|
106 |
|
107 |
+
#: ../includes/class-user-role-editor.php:234
|
108 |
msgid "Change role for users without role"
|
109 |
msgstr "Changer le rôle pour les utilisateurs sans rôle"
|
110 |
|
111 |
+
#: ../includes/class-user-role-editor.php:235
|
112 |
msgid "No rights"
|
113 |
msgstr "Aucun droit"
|
114 |
|
115 |
+
#: ../includes/class-user-role-editor.php:236
|
116 |
msgid "Provide new role"
|
117 |
msgstr "Fournir un nouveau rôle"
|
118 |
|
119 |
+
#: ../includes/class-user-role-editor.php:320
|
120 |
+
#: ../includes/class-user-role-editor.php:322
|
121 |
msgid "You do not have permission to edit this user."
|
122 |
msgstr ""
|
123 |
"Vous n’avez pas l’autorisation de modifier cet utilisateur."
|
131 |
msgstr "Paramètres"
|
132 |
|
133 |
#: ../includes/class-user-role-editor.php:569
|
134 |
+
#: ../includes/class-ure-lib.php:2540
|
135 |
msgid "Changelog"
|
136 |
msgstr "Journal des modifications"
|
137 |
|
138 |
#: ../includes/class-user-role-editor.php:619
|
139 |
#: ../includes/class-user-role-editor.php:648
|
140 |
+
#: ../includes/class-user-role-editor.php:1030
|
141 |
#: ../includes/class-ure-lib.php:337
|
142 |
msgid "User Role Editor"
|
143 |
msgstr "User Role Editor"
|
152 |
msgid "Default Roles are updated"
|
153 |
msgstr "Les rôles par défauts ont été mis à jour"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:779
|
156 |
msgid ""
|
157 |
"You do not have sufficient permissions to manage options for User Role "
|
158 |
"Editor."
|
160 |
"Vous n'avez pas les permissions suffisantes pour gérer les options de User "
|
161 |
"Role Editor."
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:851
|
164 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
165 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
166 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
167 |
msgid "Insufficient permissions to work with User Role Editor"
|
168 |
msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:977
|
171 |
msgid "Select All"
|
172 |
msgstr "Tout sélectionner"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:978
|
175 |
msgid "Unselect All"
|
176 |
msgstr "Tout déselectionner"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:979
|
179 |
msgid "Reverse"
|
180 |
msgstr "Inverser"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:980
|
183 |
msgid "Update"
|
184 |
msgstr "Mettre à jour"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:981
|
187 |
msgid "Please confirm permissions update"
|
188 |
msgstr "Merci de confirmer la mise à jour des permissions"
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:982
|
191 |
msgid "Add New Role"
|
192 |
msgstr "Ajouter un nouveau rôle"
|
193 |
|
194 |
+
#: ../includes/class-user-role-editor.php:983
|
195 |
+
#: ../includes/class-user-role-editor.php:988
|
196 |
msgid "Rename Role"
|
197 |
msgstr "Renommer le Rôle"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:984
|
200 |
msgid " Role name (ID) can not be empty!"
|
201 |
msgstr "Le nom du rôle (ID) ne peut pas être vide !"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:985
|
204 |
msgid ""
|
205 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
206 |
"only!"
|
208 |
"Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
|
209 |
"chiffres, des traits d'union ou des caractères de soulignement !"
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:986
|
212 |
msgid ""
|
213 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
214 |
"it."
|
216 |
"WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
|
217 |
"caractères latin à celui-ci."
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:987
|
220 |
msgid "Add Role"
|
221 |
msgstr "Ajouter un rôle"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:989
|
224 |
msgid "Delete Role"
|
225 |
msgstr "Supprimer un rôle"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:990
|
228 |
msgid "Cancel"
|
229 |
msgstr "Annuler"
|
230 |
|
231 |
+
#: ../includes/class-user-role-editor.php:991
|
232 |
msgid "Add Capability"
|
233 |
msgstr "Ajouter la capacité"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:992
|
236 |
+
#: ../includes/class-user-role-editor.php:1001
|
237 |
msgid "Delete Capability"
|
238 |
msgstr "Supprimer la capacité"
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:993
|
241 |
msgid "Reset"
|
242 |
msgstr "Réinitialiser"
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:994
|
245 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
246 |
msgstr ""
|
247 |
"DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
|
248 |
"de WordPress."
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:995
|
251 |
msgid ""
|
252 |
"If any plugins have changed capabilities in any way upon installation (such "
|
253 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
255 |
"Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
|
256 |
"et bien d'autres), ces capacités seront SUPPRIMÉES ! "
|
257 |
|
258 |
+
#: ../includes/class-user-role-editor.php:996
|
259 |
msgid ""
|
260 |
"For more information on how to undo changes and restore plugin capabilities "
|
261 |
"go to"
|
263 |
"Pour de plus amples informations sur la façon d'annuler les modifications et "
|
264 |
"rétablir les fonctions de l'extension, aller sur "
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:998
|
267 |
msgid "Continue?"
|
268 |
msgstr "Continuer ?"
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:999
|
271 |
msgid "Default Role"
|
272 |
msgstr " Rôle par défaut"
|
273 |
|
274 |
+
#: ../includes/class-user-role-editor.php:1000
|
275 |
msgid "Set New Default Role"
|
276 |
msgstr "Régler le nouveau rôle par défaut"
|
277 |
|
278 |
+
#: ../includes/class-user-role-editor.php:1002
|
279 |
msgid ""
|
280 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
281 |
"or other custom code"
|
283 |
"Attention ! Enlever des capacités critiques pourrait faire planter certaines "
|
284 |
"extension ou autres codes personnalisés"
|
285 |
|
286 |
+
#: ../includes/class-user-role-editor.php:1003
|
287 |
msgid " Capability name (ID) can not be empty!"
|
288 |
msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
|
289 |
|
290 |
+
#: ../includes/class-user-role-editor.php:1004
|
291 |
msgid ""
|
292 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
293 |
"underscore only!"
|
295 |
"Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
|
296 |
"des chiffres, des traits d'union ou des caractères de soulignement !"
|
297 |
|
298 |
+
#: ../includes/class-user-role-editor.php:1033
|
299 |
+
#: ../includes/class-user-role-editor.php:1066
|
300 |
msgid "Other Roles"
|
301 |
msgstr "Autres rôles"
|
302 |
|
303 |
+
#: ../includes/class-user-role-editor.php:1047
|
304 |
msgid "Edit"
|
305 |
msgstr "Modifier"
|
306 |
|
399 |
"Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
|
400 |
"WordPress."
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:1444
|
403 |
+
msgid "read about"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
#: ../includes/class-ure-lib.php:1445
|
407 |
+
msgid "user capability"
|
408 |
+
msgstr "capacité personnalisées"
|
409 |
+
|
410 |
+
#: ../includes/class-ure-lib.php:1446
|
411 |
msgid "Help"
|
412 |
msgstr "Aide"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1914
|
415 |
msgid "Error is occur. Please check the log file."
|
416 |
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
419 |
msgid ""
|
420 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
421 |
"only!"
|
423 |
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
424 |
"traits d'union ou des caractères de soulignement seulement !"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
427 |
msgid ""
|
428 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
429 |
"characters to it."
|
431 |
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
432 |
"des caractères latins à celui-ci."
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:1979
|
435 |
#, php-format
|
436 |
msgid "Role %s exists already"
|
437 |
msgstr "Le rôle %s existe déjà"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1994
|
440 |
msgid "Error is encountered during new role create operation"
|
441 |
msgstr ""
|
442 |
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:1996
|
445 |
#, php-format
|
446 |
msgid "Role %s is created successfully"
|
447 |
msgstr "Le rôle %s à bien été créé "
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2020
|
450 |
msgid "Error: Role ID is empty!"
|
451 |
msgstr "Erreur : L'ID du rôle est vide !"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2038
|
454 |
msgid "Error: Empty role display name is not allowed."
|
455 |
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2045
|
458 |
#, php-format
|
459 |
msgid "Role %s does not exists"
|
460 |
msgstr "Le rôle %s n’existe pas."
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:2053
|
463 |
#, php-format
|
464 |
msgid "Role %s is renamed to %s successfully"
|
465 |
msgstr "Le rôle %s à bien été renommé en %s. "
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2126
|
468 |
msgid "Error encountered during role delete operation"
|
469 |
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:2128
|
472 |
msgid "Unused roles are deleted successfully"
|
473 |
msgstr "Les rôles inutilisés ont bien été supprimés"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2130
|
476 |
#, php-format
|
477 |
msgid "Role %s is deleted successfully"
|
478 |
msgstr "Le rôle %s à bien été supprimé"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:2155
|
481 |
msgid "Error encountered during default role change operation"
|
482 |
msgstr ""
|
483 |
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2161
|
486 |
#, php-format
|
487 |
msgid "Default role for new users is set to %s successfully"
|
488 |
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:2180
|
491 |
msgid "Editor"
|
492 |
msgstr "Éditeur"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:2181
|
495 |
msgid "Author"
|
496 |
msgstr "Auteur"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:2182
|
499 |
msgid "Contributor"
|
500 |
msgstr "Contributeur"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:2183
|
503 |
msgid "Subscriber"
|
504 |
msgstr "Abonné"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:2185
|
507 |
msgid "Switch themes"
|
508 |
msgstr "Changer de thèmes"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:2186
|
511 |
msgid "Edit themes"
|
512 |
msgstr "Modifier les thèmes"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:2187
|
515 |
msgid "Activate plugins"
|
516 |
msgstr "Activer les extensions"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2188
|
519 |
msgid "Edit plugins"
|
520 |
msgstr "Modifier les extensions"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:2189
|
523 |
msgid "Edit users"
|
524 |
msgstr "Modifier les utilisateurs"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:2190
|
527 |
msgid "Edit files"
|
528 |
msgstr "Modifier les fichiers"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:2191
|
531 |
msgid "Manage options"
|
532 |
msgstr "Gérer les options"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:2192
|
535 |
msgid "Moderate comments"
|
536 |
msgstr "Modérer les commentaires"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:2193
|
539 |
msgid "Manage categories"
|
540 |
msgstr "Gérer les catégories"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:2194
|
543 |
msgid "Manage links"
|
544 |
msgstr "Gérer les liens"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:2195
|
547 |
msgid "Upload files"
|
548 |
msgstr "Mettre en ligne des fichiers"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:2196
|
551 |
msgid "Import"
|
552 |
msgstr "Importer"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:2197
|
555 |
msgid "Unfiltered html"
|
556 |
msgstr "HTML non filtré"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:2198
|
559 |
msgid "Edit posts"
|
560 |
msgstr "Modifier les articles"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:2199
|
563 |
msgid "Edit others posts"
|
564 |
msgstr "Modifier les autres billets"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:2200
|
567 |
msgid "Edit published posts"
|
568 |
msgstr "Modifier les billets publiés "
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:2201
|
571 |
msgid "Publish posts"
|
572 |
msgstr "Publier des articles"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:2202
|
575 |
msgid "Edit pages"
|
576 |
msgstr "Modifier des pages"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:2203
|
579 |
msgid "Read"
|
580 |
msgstr "Lire"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:2204
|
583 |
msgid "Level 10"
|
584 |
msgstr "Niveau 10"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:2205
|
587 |
msgid "Level 9"
|
588 |
msgstr "Niveau 9"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:2206
|
591 |
msgid "Level 8"
|
592 |
msgstr "Niveau 8"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:2207
|
595 |
msgid "Level 7"
|
596 |
msgstr "Niveau 7"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2208
|
599 |
msgid "Level 6"
|
600 |
msgstr "Niveau 6"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:2209
|
603 |
msgid "Level 5"
|
604 |
msgstr "Niveau 5"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:2210
|
607 |
msgid "Level 4"
|
608 |
msgstr "Niveau 4"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:2211
|
611 |
msgid "Level 3"
|
612 |
msgstr "Niveau 3"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:2212
|
615 |
msgid "Level 2"
|
616 |
msgstr "Niveau 2"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:2213
|
619 |
msgid "Level 1"
|
620 |
msgstr "Niveau 1"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2214
|
623 |
msgid "Level 0"
|
624 |
msgstr "Niveau 0"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2215
|
627 |
msgid "Edit others pages"
|
628 |
msgstr "Modifier les autres pages"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:2216
|
631 |
msgid "Edit published pages"
|
632 |
msgstr "Modifier les pages publiées "
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:2217
|
635 |
msgid "Publish pages"
|
636 |
msgstr "Publier les pages"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:2218
|
639 |
msgid "Delete pages"
|
640 |
msgstr "Supprimer les pages"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:2219
|
643 |
msgid "Delete others pages"
|
644 |
msgstr "Supprimer les autres pages"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:2220
|
647 |
msgid "Delete published pages"
|
648 |
msgstr "Supprimer les pages publiées"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:2221
|
651 |
msgid "Delete posts"
|
652 |
msgstr "Supprimer les articles"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:2222
|
655 |
msgid "Delete others posts"
|
656 |
msgstr "Supprimer les autres billets"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:2223
|
659 |
msgid "Delete published posts"
|
660 |
msgstr "Supprimer les billets publiés"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:2224
|
663 |
msgid "Delete private posts"
|
664 |
msgstr "Supprimer les billets privés"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2225
|
667 |
msgid "Edit private posts"
|
668 |
msgstr "Modifier les billets privés"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2226
|
671 |
msgid "Read private posts"
|
672 |
msgstr "Lire les billets privés"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2227
|
675 |
msgid "Delete private pages"
|
676 |
msgstr "Supprimer les pages privées "
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2228
|
679 |
msgid "Edit private pages"
|
680 |
msgstr "Modifier les pages privées"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:2229
|
683 |
msgid "Read private pages"
|
684 |
msgstr "Lire les pages privées"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2230
|
687 |
msgid "Delete users"
|
688 |
msgstr "Supprimer les utilisateurs"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:2231
|
691 |
msgid "Create users"
|
692 |
msgstr "Créer des utilisateurs"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2232
|
695 |
msgid "Unfiltered upload"
|
696 |
msgstr "Téléchargement non filtré"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2233
|
699 |
msgid "Edit dashboard"
|
700 |
msgstr "Modifier le tableau de bord"
|
701 |
|
702 |
+
#: ../includes/class-ure-lib.php:2234
|
703 |
msgid "Update plugins"
|
704 |
msgstr "Mettre à jour les extensions"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2235
|
707 |
msgid "Delete plugins"
|
708 |
msgstr "Supprimer les extensions"
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2236
|
711 |
msgid "Install plugins"
|
712 |
msgstr "Installer les extensions"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2237
|
715 |
msgid "Update themes"
|
716 |
msgstr "Mettre à jour les thèmes"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2238
|
719 |
msgid "Install themes"
|
720 |
msgstr "Installer des thèmes"
|
721 |
|
722 |
+
#: ../includes/class-ure-lib.php:2239
|
723 |
msgid "Update core"
|
724 |
msgstr "Mettre à jour le cœur"
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2240
|
727 |
msgid "List users"
|
728 |
msgstr "Lister les utilisateurs"
|
729 |
|
730 |
+
#: ../includes/class-ure-lib.php:2241
|
731 |
msgid "Remove users"
|
732 |
msgstr "Supprimer des utilisateurs"
|
733 |
|
734 |
+
#: ../includes/class-ure-lib.php:2242
|
735 |
msgid "Add users"
|
736 |
msgstr "Ajouter les utilisateurs"
|
737 |
|
738 |
+
#: ../includes/class-ure-lib.php:2243
|
739 |
msgid "Promote users"
|
740 |
msgstr "Promouvoir des utilisateurs"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2244
|
743 |
msgid "Edit theme options"
|
744 |
msgstr "Modifier les options du thème"
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2245
|
747 |
msgid "Delete themes"
|
748 |
msgstr "Supprimer des thèmes"
|
749 |
|
750 |
+
#: ../includes/class-ure-lib.php:2246
|
751 |
msgid "Export"
|
752 |
msgstr "Exporter"
|
753 |
|
754 |
+
#: ../includes/class-ure-lib.php:2369
|
755 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
756 |
msgstr ""
|
757 |
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
758 |
"et des chiffres !"
|
759 |
|
760 |
+
#: ../includes/class-ure-lib.php:2382
|
761 |
#, php-format
|
762 |
msgid "Capability %s is added successfully"
|
763 |
msgstr "La capacité %s à bien été ajoutée "
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2384
|
766 |
#, php-format
|
767 |
msgid "Capability %s exists already"
|
768 |
msgstr "La capacité %s existe déjà"
|
769 |
|
770 |
+
#: ../includes/class-ure-lib.php:2413
|
771 |
#, php-format
|
772 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
773 |
msgstr ""
|
774 |
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
775 |
|
776 |
+
#: ../includes/class-ure-lib.php:2432
|
777 |
#, php-format
|
778 |
msgid "Capability %s is removed successfully"
|
779 |
msgstr "La capacité %s à bien été supprimée "
|
780 |
|
781 |
+
#: ../includes/class-ure-lib.php:2536
|
782 |
msgid "Version:"
|
783 |
msgstr "Version :"
|
784 |
|
785 |
+
#: ../includes/class-ure-lib.php:2537
|
786 |
msgid "Author's website"
|
787 |
msgstr "Site internet de l'auteur"
|
788 |
|
789 |
+
#: ../includes/class-ure-lib.php:2538
|
790 |
msgid "Plugin webpage"
|
791 |
msgstr "Page web de l'extension"
|
792 |
|
793 |
+
#: ../includes/class-ure-lib.php:2539
|
794 |
msgid "Plugin download"
|
795 |
msgstr "Téléchargement de l'extension"
|
796 |
|
797 |
+
#: ../includes/class-ure-lib.php:2541
|
798 |
msgid "FAQ"
|
799 |
msgstr "FAQ"
|
800 |
|
801 |
+
#: ../includes/class-ure-lib.php:2589
|
802 |
msgid "None"
|
803 |
msgstr "Aucun"
|
804 |
|
805 |
+
#: ../includes/class-ure-lib.php:2616
|
806 |
msgid "Delete All Unused Roles"
|
807 |
msgstr "Supprimer tous les rôles inutilisés "
|
808 |
|
809 |
+
#: ../includes/class-ure-lib.php:2640
|
810 |
msgid "— No role for this site —"
|
811 |
msgstr "— Pas de rôle sur ce site —"
|
812 |
|
830 |
msgid "Other Roles:"
|
831 |
msgstr "Autres rôles :"
|
832 |
|
833 |
+
#: ../includes/class-ure-screen-help.php:12
|
834 |
+
#: ../includes/class-ure-screen-help.php:41
|
835 |
+
#: ../includes/class-ure-screen-help.php:60
|
836 |
+
#: ../includes/class-ure-screen-help.php:79
|
837 |
+
msgid "User Role Editor Options page help"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
#: ../includes/class-ure-screen-help.php:16
|
841 |
msgid ""
|
842 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-he_IL.mo
CHANGED
Binary file
|
lang/ure-he_IL.po
CHANGED
@@ -1,29 +1,26 @@
|
|
1 |
# This file was generated by WPML
|
2 |
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
|
3 |
-
#
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
-
"Project-Id-Version:
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-02-
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
12 |
-
"Language:
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
-
#
|
20 |
-
# esc_html__('User Role Editor', 'ure'),
|
21 |
-
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
22 |
-
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
23 |
#: ../includes/settings-template.php:17
|
24 |
#, fuzzy
|
25 |
msgid "User Role Editor - Options"
|
26 |
-
msgstr "User Role Editor"
|
27 |
|
28 |
#: ../includes/settings-template.php:21
|
29 |
#: ../includes/class-user-role-editor.php:591
|
@@ -35,9 +32,6 @@ msgstr ""
|
|
35 |
msgid "Additional Modules"
|
36 |
msgstr ""
|
37 |
|
38 |
-
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
39 |
-
# 'default_role' => __('Default Role', 'ure'),
|
40 |
-
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
41 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
42 |
#: ../includes/settings-template.php:30
|
43 |
#: ../includes/class-user-role-editor.php:603
|
@@ -50,346 +44,317 @@ msgstr "תפקיד ברירת מחדל"
|
|
50 |
msgid "Multisite"
|
51 |
msgstr ""
|
52 |
|
|
|
53 |
#: ../includes/settings-template.php:39
|
|
|
54 |
msgid "About"
|
55 |
-
msgstr ""
|
56 |
|
57 |
-
#
|
58 |
-
# <td><label for="show_admin_role"><?php esc_html_e('Show Administrator role at User Role Editor:', 'ure'); ?></label></td>
|
59 |
-
# <td><input type="checkbox" name="show_admin_role" id="show_admin_role" value="1"
|
60 |
-
# wpml-name: 03c5b123f148104af580b68ade741c67
|
61 |
#: ../includes/settings-template.php:53
|
62 |
#: ../includes/class-ure-screen-help.php:15
|
|
|
63 |
msgid "Show Administrator role at User Role Editor"
|
64 |
-
msgstr ""
|
65 |
|
66 |
-
#
|
67 |
-
# <td><label for="caps_readable"><?php esc_html_e('Show capabilities in the human readable form:', 'ure'); ?></label></td>
|
68 |
-
# <td>
|
69 |
-
# wpml-name: a19a4f985d31bbbd3d3b6d5dbd368ef0
|
70 |
#: ../includes/settings-template.php:61
|
71 |
#: ../includes/class-ure-screen-help.php:18
|
|
|
72 |
msgid "Show capabilities in the human readable form"
|
73 |
-
msgstr ""
|
74 |
|
75 |
-
# <?php echo $checked; ?> onclick="ure_turn_deprecated_caps(<?php echo $this->user_to_edit->ID; ?>);"/>
|
76 |
-
# <label for="ure_show_deprecated_caps"><?php _e('Show deprecated capabilities', 'ure'); ?></label>
|
77 |
-
# </td>
|
78 |
# wpml-name: 130b09deaec4b13948be95555d546f25
|
79 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
80 |
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
|
|
81 |
msgid "Show deprecated capabilities"
|
82 |
msgstr "הצג הרשאות לפי מספר"
|
83 |
|
84 |
-
#
|
85 |
-
# '">' . __('Capabilities', 'ure') . '</a>';
|
86 |
-
# }
|
87 |
-
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
88 |
#: ../includes/settings-template.php:77
|
89 |
#: ../includes/class-ure-screen-help.php:25
|
90 |
#, fuzzy
|
91 |
msgid "Edit user capabilities"
|
92 |
-
msgstr "יכולות"
|
93 |
|
94 |
-
# <p class="submit">
|
95 |
-
# <input type="submit" class="button-primary" name="user_role_editor_settings_update" value="<?php _e('Save', 'ure') ?>" />
|
96 |
-
# </p>
|
97 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
98 |
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
99 |
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
|
|
100 |
msgid "Save"
|
101 |
msgstr "שמירה"
|
102 |
|
|
|
103 |
#: ../includes/settings-template.php:111
|
104 |
#: ../includes/class-ure-screen-help.php:45
|
|
|
105 |
msgid "Count users without role"
|
106 |
-
msgstr ""
|
107 |
|
|
|
108 |
#: ../includes/settings-template.php:138
|
|
|
109 |
msgid "Primary default role: "
|
110 |
-
msgstr ""
|
111 |
|
|
|
112 |
#: ../includes/settings-template.php:145
|
|
|
113 |
msgid "Other default roles for new registered user: "
|
114 |
-
msgstr ""
|
115 |
|
|
|
116 |
#: ../includes/settings-template.php:151
|
|
|
117 |
msgid ""
|
118 |
"Note for multisite environment: take into account that other default roles "
|
119 |
"should exist at the site, in order to be assigned to the new registered "
|
120 |
"users."
|
121 |
msgstr ""
|
|
|
|
|
122 |
|
|
|
123 |
#: ../includes/settings-template.php:177
|
|
|
124 |
msgid "Allow non super administrators to create, edit, and delete users"
|
125 |
-
msgstr ""
|
126 |
|
127 |
-
|
|
|
|
|
128 |
msgid "Change role for users without role"
|
129 |
-
msgstr ""
|
130 |
|
131 |
-
|
|
|
|
|
132 |
msgid "No rights"
|
133 |
-
msgstr ""
|
134 |
|
135 |
-
|
|
|
|
|
136 |
msgid "Provide new role"
|
137 |
-
msgstr ""
|
138 |
|
139 |
-
# if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
140 |
-
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
141 |
-
# }
|
142 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
145 |
msgid "You do not have permission to edit this user."
|
146 |
-
msgstr ""
|
147 |
|
148 |
-
# wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") .
|
149 |
-
# '">' . __('Capabilities', 'ure') . '</a>';
|
150 |
-
# }
|
151 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
152 |
#: ../includes/class-user-role-editor.php:460
|
|
|
153 |
msgid "Capabilities"
|
154 |
msgstr "יכולות"
|
155 |
|
156 |
-
# if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH).'/'.URE_PLUGIN_FILE)) {
|
157 |
-
# $settings_link = "<a href='options-general.php?page=settings-".URE_PLUGIN_FILE."'>" . __('Settings', 'ure') . "</a>";
|
158 |
-
# array_unshift($links, $settings_link);
|
159 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
160 |
#: ../includes/class-user-role-editor.php:558
|
|
|
161 |
msgid "Settings"
|
162 |
msgstr "הגדרות"
|
163 |
|
164 |
-
# if ($file == plugin_basename(dirname(URE_PLUGIN_FULL_PATH) .'/'.URE_PLUGIN_FILE)) {
|
165 |
-
# $links[] = '<a target="_blank" href="http://role-editor.com/changelog">' . __('Changelog', 'ure') . '</a>';
|
166 |
-
# }
|
167 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
168 |
#: ../includes/class-user-role-editor.php:569
|
169 |
-
#: ../includes/class-ure-lib.php:
|
|
|
170 |
msgid "Changelog"
|
171 |
msgstr "יומן שינויים"
|
172 |
|
173 |
-
# esc_html__('User Role Editor', 'ure'),
|
174 |
-
# esc_html__('User Role Editor', 'ure'),
|
175 |
-
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
176 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
177 |
#: ../includes/class-user-role-editor.php:619
|
178 |
#: ../includes/class-user-role-editor.php:648
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
#: ../includes/class-ure-lib.php:337
|
|
|
181 |
msgid "User Role Editor"
|
182 |
msgstr "User Role Editor"
|
183 |
|
184 |
-
# $this->lib->flush_options();
|
185 |
-
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
186 |
-
# } else { // get options from the options storage
|
187 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
188 |
#: ../includes/class-user-role-editor.php:708
|
189 |
#: ../includes/class-user-role-editor.php:726
|
190 |
#: ../includes/class-user-role-editor.php:770
|
|
|
191 |
msgid "User Role Editor options are updated"
|
192 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
193 |
|
194 |
-
#
|
195 |
-
# 'default_role' => __('Default Role', 'ure'),
|
196 |
-
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
197 |
-
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
198 |
#: ../includes/class-user-role-editor.php:754
|
199 |
#, fuzzy
|
200 |
msgid "Default Roles are updated"
|
201 |
-
msgstr "
|
202 |
|
203 |
-
|
|
|
|
|
204 |
msgid ""
|
205 |
"You do not have sufficient permissions to manage options for User Role "
|
206 |
"Editor."
|
207 |
msgstr ""
|
|
|
208 |
|
209 |
-
|
210 |
-
#: ../includes/class-
|
211 |
-
#: ../includes/class-ure-lib.php:
|
212 |
-
#: ../includes/class-ure-lib.php:
|
|
|
|
|
213 |
msgid "Insufficient permissions to work with User Role Editor"
|
214 |
-
msgstr ""
|
215 |
|
216 |
-
# 'is_multisite' => is_multisite() ? 1 : 0,
|
217 |
-
# 'select_all' => __('Select All', 'ure'),
|
218 |
-
# 'unselect_all' => __('Unselect All', 'ure'),
|
219 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
221 |
msgid "Select All"
|
222 |
msgstr "בחירת הכל"
|
223 |
|
224 |
-
# 'select_all' => __('Select All', 'ure'),
|
225 |
-
# 'unselect_all' => __('Unselect All', 'ure'),
|
226 |
-
# 'reverse' => __('Reverse', 'ure'),
|
227 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
229 |
msgid "Unselect All"
|
230 |
msgstr "לא לבחור שום דבר"
|
231 |
|
232 |
-
# 'unselect_all' => __('Unselect All', 'ure'),
|
233 |
-
# 'reverse' => __('Reverse', 'ure'),
|
234 |
-
# 'update' => __('Update', 'ure'),
|
235 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
237 |
msgid "Reverse"
|
238 |
msgstr "להפוך"
|
239 |
|
240 |
-
# 'reverse' => __('Reverse', 'ure'),
|
241 |
-
# 'update' => __('Update', 'ure'),
|
242 |
-
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
243 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
245 |
msgid "Update"
|
246 |
msgstr "עדכן"
|
247 |
|
248 |
-
# 'update' => __('Update', 'ure'),
|
249 |
-
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
250 |
-
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
251 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
253 |
msgid "Please confirm permissions update"
|
254 |
msgstr "נא לאשר את עדכון ההרשאות"
|
255 |
|
256 |
-
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
257 |
-
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
258 |
-
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
259 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
261 |
msgid "Add New Role"
|
262 |
msgstr "הוסף סוג משתמש חדש"
|
263 |
|
264 |
-
#
|
265 |
-
|
266 |
-
|
267 |
-
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
268 |
-
#: ../includes/class-user-role-editor.php:982
|
269 |
-
#: ../includes/class-user-role-editor.php:987
|
270 |
#, fuzzy
|
271 |
msgid "Rename Role"
|
272 |
-
msgstr "
|
273 |
|
274 |
-
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
275 |
-
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
276 |
-
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
277 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
278 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
279 |
msgid " Role name (ID) can not be empty!"
|
280 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
281 |
|
282 |
-
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
283 |
-
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
284 |
-
# 'add_role' => __('Add Role', 'ure'),
|
285 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
286 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
287 |
msgid ""
|
288 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
289 |
"only!"
|
290 |
msgstr ""
|
291 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
292 |
|
293 |
-
|
|
|
|
|
294 |
msgid ""
|
295 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
296 |
"it."
|
297 |
msgstr ""
|
|
|
298 |
|
299 |
-
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
300 |
-
# 'add_role' => __('Add Role', 'ure'),
|
301 |
-
# 'delete_role' => __('Delete Role', 'ure'),
|
302 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
303 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
304 |
msgid "Add Role"
|
305 |
msgstr "הוספת תפקיד"
|
306 |
|
307 |
-
# 'add_role' => __('Add Role', 'ure'),
|
308 |
-
# 'delete_role' => __('Delete Role', 'ure'),
|
309 |
-
# 'cancel' => __('Cancel', 'ure'),
|
310 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
311 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
312 |
msgid "Delete Role"
|
313 |
msgstr "מחיקת סוג משתמש"
|
314 |
|
315 |
-
# 'delete_role' => __('Delete Role', 'ure'),
|
316 |
-
# 'cancel' => __('Cancel', 'ure'),
|
317 |
-
# 'add_capability' => __('Add Capability', 'ure'),
|
318 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
319 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
320 |
msgid "Cancel"
|
321 |
msgstr "ביטול"
|
322 |
|
323 |
-
# 'cancel' => __('Cancel', 'ure'),
|
324 |
-
# 'add_capability' => __('Add Capability', 'ure'),
|
325 |
-
# 'delete_capability' => __('Delete Capability', 'ure'),
|
326 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
327 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
328 |
msgid "Add Capability"
|
329 |
msgstr "הוספת יכולת"
|
330 |
|
331 |
-
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
332 |
-
# 'delete_capability' => __('Delete Capability', 'ure'),
|
333 |
-
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
334 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
335 |
-
#: ../includes/class-user-role-editor.php:
|
336 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
337 |
msgid "Delete Capability"
|
338 |
msgstr "מחיקת יכולת"
|
339 |
|
340 |
-
# 'delete_capability' => __('Delete Capability', 'ure'),
|
341 |
-
# 'reset' => __('Reset', 'ure'),
|
342 |
-
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
343 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
344 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
345 |
msgid "Reset"
|
346 |
msgstr "איפוס"
|
347 |
|
348 |
-
|
|
|
|
|
349 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
350 |
-
msgstr ""
|
351 |
|
352 |
-
|
|
|
|
|
353 |
msgid ""
|
354 |
"If any plugins have changed capabilities in any way upon installation (such "
|
355 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
356 |
msgstr ""
|
|
|
|
|
357 |
|
358 |
-
|
|
|
|
|
359 |
msgid ""
|
360 |
"For more information on how to undo changes and restore plugin capabilities "
|
361 |
"go to"
|
362 |
-
msgstr ""
|
363 |
|
364 |
-
#
|
365 |
-
|
366 |
-
|
367 |
-
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
368 |
-
#: ../includes/class-user-role-editor.php:997
|
369 |
msgid "Continue?"
|
370 |
-
msgstr ""
|
371 |
|
372 |
-
# 'reset_warning' => __('Reset Roles to WordPress defaults. Be careful, all changes made by you or plugins will be lost. Some plugins, e.g. S2Member, WooCommerce reactivation could be needed. Continue?', 'ure'),
|
373 |
-
# 'default_role' => __('Default Role', 'ure'),
|
374 |
-
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
375 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
376 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
377 |
msgid "Default Role"
|
378 |
msgstr "תפקיד ברירת מחדל"
|
379 |
|
380 |
-
# 'default_role' => __('Default Role', 'ure'),
|
381 |
-
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
382 |
-
# 'delete_capability' => __('Delete Capability', 'ure'),
|
383 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
384 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
385 |
msgid "Set New Default Role"
|
386 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
387 |
|
388 |
-
# 'delete_capability' => __('Delete Capability', 'ure'),
|
389 |
-
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
390 |
-
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
391 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
392 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
393 |
msgid ""
|
394 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
395 |
"or other custom code"
|
@@ -397,996 +362,792 @@ msgstr ""
|
|
397 |
"זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
|
398 |
"לעבוד כשורה"
|
399 |
|
400 |
-
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
401 |
-
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
402 |
-
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
403 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
404 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
405 |
msgid " Capability name (ID) can not be empty!"
|
406 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
407 |
|
408 |
-
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
409 |
-
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
410 |
-
# ) );
|
411 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
412 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
413 |
msgid ""
|
414 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
415 |
"underscore only!"
|
416 |
msgstr ""
|
417 |
" שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
418 |
|
419 |
-
# <tr>
|
420 |
-
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
421 |
-
# <td>
|
422 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
423 |
-
#: ../includes/class-user-role-editor.php:
|
424 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
425 |
msgid "Other Roles"
|
426 |
msgstr "תפקידים אחרים"
|
427 |
|
428 |
-
# $output = $this->lib->roles_text($roles);
|
429 |
-
# echo $output . ' >> <a href="' . wp_nonce_url("users.php?page=users-".URE_PLUGIN_FILE."&object=user&user_id={$user->ID}", "ure_user_{$user->ID}") . '">' . __('Edit', 'ure') . '</a>';
|
430 |
-
# ?>
|
431 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
432 |
-
#: ../includes/class-user-role-editor.php:
|
|
|
433 |
msgid "Edit"
|
434 |
msgstr "עריכה"
|
435 |
|
|
|
436 |
#: ../includes/ure-role-edit.php:17
|
|
|
437 |
msgid "Select Role and change its capabilities:"
|
438 |
-
msgstr ""
|
439 |
|
|
|
440 |
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
|
|
441 |
msgid "Show capabilities in human readable form"
|
442 |
-
msgstr ""
|
443 |
|
444 |
-
#
|
445 |
-
#
|
446 |
-
#
|
447 |
-
# wpml-name: a1fbf81a928fffd1bb4665b5af8952ab
|
448 |
#: ../includes/ure-role-edit.php:44
|
449 |
msgid "If checked, then apply action to ALL sites of this Network"
|
450 |
-
msgstr "
|
451 |
|
|
|
452 |
#: ../includes/ure-role-edit.php:56
|
|
|
453 |
msgid "Apply to All Sites"
|
454 |
-
msgstr ""
|
455 |
|
456 |
-
#
|
457 |
-
# '">' . __('Capabilities', 'ure') . '</a>';
|
458 |
-
# }
|
459 |
-
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
460 |
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
461 |
#, fuzzy
|
462 |
msgid "Core capabilities:"
|
463 |
-
msgstr "יכולות"
|
464 |
|
|
|
465 |
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
|
|
466 |
msgid "Quick filter:"
|
467 |
-
msgstr ""
|
468 |
|
469 |
-
#
|
470 |
-
# '">' . __('Capabilities', 'ure') . '</a>';
|
471 |
-
# }
|
472 |
-
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
473 |
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
474 |
#, fuzzy
|
475 |
msgid "Custom capabilities:"
|
476 |
-
msgstr "
|
477 |
|
478 |
-
# if (!$this->editor_init0()) {
|
479 |
-
# $this->show_message(__('Error: wrong request', 'URE'));
|
480 |
-
# return false;
|
481 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
482 |
#: ../includes/class-ure-lib.php:245
|
|
|
483 |
msgid "Error: wrong request"
|
484 |
msgstr "שגיאה: בקשה מוטעית"
|
485 |
|
486 |
-
#
|
487 |
-
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
488 |
-
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
489 |
-
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
490 |
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
491 |
#, fuzzy
|
492 |
msgid "Role name (ID): "
|
493 |
-
msgstr "
|
494 |
|
|
|
495 |
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
|
|
496 |
msgid "Display Role Name: "
|
497 |
-
msgstr ""
|
498 |
|
|
|
499 |
#: ../includes/class-ure-lib.php:282
|
|
|
500 |
msgid "Make copy of: "
|
501 |
-
msgstr ""
|
502 |
|
503 |
-
#
|
504 |
-
# 'delete_role' => __('Delete Role', 'ure'),
|
505 |
-
# 'cancel' => __('Cancel', 'ure'),
|
506 |
-
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
507 |
#: ../includes/class-ure-lib.php:298
|
508 |
#, fuzzy
|
509 |
msgid "Select Role:"
|
510 |
-
msgstr "
|
511 |
|
512 |
-
#
|
513 |
-
# 'delete_role' => __('Delete Role', 'ure'),
|
514 |
-
# 'cancel' => __('Cancel', 'ure'),
|
515 |
-
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
516 |
#: ../includes/class-ure-lib.php:313
|
517 |
#, fuzzy
|
518 |
msgid "Delete:"
|
519 |
-
msgstr "
|
520 |
|
521 |
-
#
|
522 |
-
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
523 |
-
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
524 |
-
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
525 |
#: ../includes/class-ure-lib.php:320
|
526 |
#, fuzzy
|
527 |
msgid "Capability name (ID): "
|
528 |
-
msgstr "
|
529 |
|
530 |
-
# if (!isset($this->roles[$_POST['user_role']])) {
|
531 |
-
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
532 |
-
# $this->current_role = '';
|
533 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
534 |
#: ../includes/class-ure-lib.php:434
|
|
|
535 |
msgid "Error: "
|
536 |
msgstr "שגיאה:"
|
537 |
|
538 |
-
# if (!isset($this->roles[$_POST['user_role']])) {
|
539 |
-
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
540 |
-
# $this->current_role = '';
|
541 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
542 |
#: ../includes/class-ure-lib.php:434
|
|
|
543 |
msgid "Role"
|
544 |
msgstr "סוג משתמש:"
|
545 |
|
546 |
-
# if (!isset($this->roles[$_POST['user_role']])) {
|
547 |
-
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
548 |
-
# $this->current_role = '';
|
549 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
550 |
#: ../includes/class-ure-lib.php:435
|
|
|
551 |
msgid "does not exist"
|
552 |
msgstr "לא נמצא"
|
553 |
|
554 |
-
# if (!$this->apply_to_all) {
|
555 |
-
# $mess = __('Role is updated successfully', 'ure');
|
556 |
-
# } else {
|
557 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
558 |
#: ../includes/class-ure-lib.php:478
|
|
|
559 |
msgid "Role is updated successfully"
|
560 |
msgstr "התפקיד עודכן בהצלחה"
|
561 |
|
562 |
-
# } else {
|
563 |
-
# $mess = __('Roles are updated for all network', 'ure');
|
564 |
-
# }
|
565 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
566 |
#: ../includes/class-ure-lib.php:480
|
|
|
567 |
msgid "Roles are updated for all network"
|
568 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
569 |
|
570 |
-
# }
|
571 |
-
# $mess = __('Error occured during role(s) update', 'ure');
|
572 |
-
# }
|
573 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
574 |
#: ../includes/class-ure-lib.php:486
|
|
|
575 |
msgid "Error occured during role(s) update"
|
576 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
577 |
|
578 |
-
# }
|
579 |
-
# $mess = __('User capabilities are updated successfully', 'ure');
|
580 |
-
# } else {
|
581 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
582 |
#: ../includes/class-ure-lib.php:493
|
|
|
583 |
msgid "User capabilities are updated successfully"
|
584 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
585 |
|
586 |
-
# }
|
587 |
-
# $mess = __('Error occured during user update', 'ure');
|
588 |
-
# }
|
589 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
590 |
#: ../includes/class-ure-lib.php:498
|
|
|
591 |
msgid "Error occured during user update"
|
592 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
593 |
|
594 |
-
# } else if ($action == 'roles_restore_note') {
|
595 |
-
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
596 |
-
# } else if ($action == 'update') {
|
597 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
598 |
#: ../includes/class-ure-lib.php:556
|
|
|
599 |
msgid "User Roles are restored to WordPress default values. "
|
600 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
601 |
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
|
|
606 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Help"
|
608 |
msgstr "עזרה"
|
609 |
|
610 |
-
# if ($show_message) {
|
611 |
-
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
612 |
-
# }
|
613 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
614 |
-
#: ../includes/class-ure-lib.php:
|
|
|
615 |
msgid "Error is occur. Please check the log file."
|
616 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
617 |
|
618 |
-
# if (!$valid_name || ($valid_name && ($match[0] != $user_role_id))) { // some non-alphanumeric charactes found!
|
619 |
-
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
620 |
-
# }
|
621 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
622 |
-
#: ../includes/class-ure-lib.php:
|
|
|
623 |
msgid ""
|
624 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
625 |
"only!"
|
626 |
msgstr ""
|
627 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
628 |
|
629 |
-
|
|
|
|
|
630 |
msgid ""
|
631 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
632 |
"characters to it."
|
633 |
msgstr ""
|
|
|
634 |
|
635 |
-
# if (isset($wp_roles->roles[$user_role_id])) {
|
636 |
-
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
637 |
-
# }
|
638 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
-
#, php-format
|
641 |
msgid "Role %s exists already"
|
642 |
msgstr "סוג המשתמש %s כבר קיים"
|
643 |
|
644 |
-
# if (!isset($result) || empty($result)) {
|
645 |
-
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
646 |
-
# } else {
|
647 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
648 |
-
#: ../includes/class-ure-lib.php:
|
|
|
649 |
msgid "Error is encountered during new role create operation"
|
650 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
651 |
|
652 |
-
# } else {
|
653 |
-
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
654 |
-
# }
|
655 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
-
#, php-format
|
658 |
msgid "Role %s is created successfully"
|
659 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
660 |
|
661 |
-
|
|
|
|
|
662 |
msgid "Error: Role ID is empty!"
|
663 |
-
msgstr ""
|
664 |
|
665 |
-
|
|
|
|
|
666 |
msgid "Error: Empty role display name is not allowed."
|
667 |
-
msgstr ""
|
668 |
|
669 |
-
#
|
670 |
-
|
671 |
-
# $this->current_role = '';
|
672 |
-
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
673 |
-
#: ../includes/class-ure-lib.php:2044
|
674 |
#, fuzzy, php-format
|
675 |
msgid "Role %s does not exists"
|
676 |
-
msgstr "
|
677 |
|
678 |
-
#
|
679 |
-
|
680 |
-
# }
|
681 |
-
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
682 |
-
#: ../includes/class-ure-lib.php:2052
|
683 |
#, fuzzy, php-format
|
684 |
msgid "Role %s is renamed to %s successfully"
|
685 |
-
msgstr "
|
686 |
|
687 |
-
# if (empty($result)) {
|
688 |
-
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
689 |
-
# } else {
|
690 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
691 |
-
#: ../includes/class-ure-lib.php:
|
|
|
692 |
msgid "Error encountered during role delete operation"
|
693 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
694 |
|
695 |
-
#
|
696 |
-
|
697 |
-
|
698 |
-
# wpml-name: 53552ec95bc8303219e8c39375763370
|
699 |
-
#: ../includes/class-ure-lib.php:2127
|
700 |
msgid "Unused roles are deleted successfully"
|
701 |
-
msgstr ""
|
702 |
|
703 |
-
# } else {
|
704 |
-
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
705 |
-
# }
|
706 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
-
#, php-format
|
709 |
msgid "Role %s is deleted successfully"
|
710 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
711 |
|
712 |
-
# unset($_POST['user_role_id']);
|
713 |
-
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
714 |
-
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
715 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
716 |
-
#: ../includes/class-ure-lib.php:
|
|
|
717 |
msgid "Error encountered during default role change operation"
|
718 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
719 |
|
720 |
-
# } else {
|
721 |
-
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
722 |
-
# }
|
723 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
-
#, php-format
|
726 |
msgid "Default role for new users is set to %s successfully"
|
727 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
728 |
|
729 |
-
# // Standard WordPress roles
|
730 |
-
# __('Editor', 'ure');
|
731 |
-
# __('Author', 'ure');
|
732 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
733 |
-
#: ../includes/class-ure-lib.php:
|
|
|
734 |
msgid "Editor"
|
735 |
msgstr "עורך"
|
736 |
|
737 |
-
# __('Editor', 'ure');
|
738 |
-
# __('Author', 'ure');
|
739 |
-
# __('Contributor', 'ure');
|
740 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
741 |
-
#: ../includes/class-ure-lib.php:
|
|
|
742 |
msgid "Author"
|
743 |
msgstr "כותב"
|
744 |
|
745 |
-
# __('Author', 'ure');
|
746 |
-
# __('Contributor', 'ure');
|
747 |
-
# __('Subscriber', 'ure');
|
748 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
749 |
-
#: ../includes/class-ure-lib.php:
|
|
|
750 |
msgid "Contributor"
|
751 |
msgstr "תורם"
|
752 |
|
753 |
-
# __('Contributor', 'ure');
|
754 |
-
# __('Subscriber', 'ure');
|
755 |
-
# // Standard WordPress capabilities
|
756 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
757 |
-
#: ../includes/class-ure-lib.php:
|
|
|
758 |
msgid "Subscriber"
|
759 |
msgstr "מנוי"
|
760 |
|
761 |
-
# // Standard WordPress capabilities
|
762 |
-
# __('Switch themes', 'ure');
|
763 |
-
# __('Edit themes', 'ure');
|
764 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
765 |
-
#: ../includes/class-ure-lib.php:
|
|
|
766 |
msgid "Switch themes"
|
767 |
msgstr "החלפת תבניות"
|
768 |
|
769 |
-
# __('Switch themes', 'ure');
|
770 |
-
# __('Edit themes', 'ure');
|
771 |
-
# __('Activate plugins', 'ure');
|
772 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
773 |
-
#: ../includes/class-ure-lib.php:
|
|
|
774 |
msgid "Edit themes"
|
775 |
msgstr "עריכת תבניות"
|
776 |
|
777 |
-
# __('Edit themes', 'ure');
|
778 |
-
# __('Activate plugins', 'ure');
|
779 |
-
# __('Edit plugins', 'ure');
|
780 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
781 |
-
#: ../includes/class-ure-lib.php:
|
|
|
782 |
msgid "Activate plugins"
|
783 |
msgstr "הפעלת תוספים"
|
784 |
|
785 |
-
# __('Activate plugins', 'ure');
|
786 |
-
# __('Edit plugins', 'ure');
|
787 |
-
# __('Edit users', 'ure');
|
788 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
789 |
-
#: ../includes/class-ure-lib.php:
|
|
|
790 |
msgid "Edit plugins"
|
791 |
msgstr "עריכת תוספים"
|
792 |
|
793 |
-
# __('Edit plugins', 'ure');
|
794 |
-
# __('Edit users', 'ure');
|
795 |
-
# __('Edit files', 'ure');
|
796 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
797 |
-
#: ../includes/class-ure-lib.php:
|
|
|
798 |
msgid "Edit users"
|
799 |
msgstr "עריכת משתמשים"
|
800 |
|
801 |
-
# __('Edit users', 'ure');
|
802 |
-
# __('Edit files', 'ure');
|
803 |
-
# __('Manage options', 'ure');
|
804 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
805 |
-
#: ../includes/class-ure-lib.php:
|
|
|
806 |
msgid "Edit files"
|
807 |
msgstr "עריכת קבצים"
|
808 |
|
809 |
-
# __('Edit files', 'ure');
|
810 |
-
# __('Manage options', 'ure');
|
811 |
-
# __('Moderate comments', 'ure');
|
812 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
813 |
-
#: ../includes/class-ure-lib.php:
|
|
|
814 |
msgid "Manage options"
|
815 |
msgstr "ניהול אפשרויות אתר"
|
816 |
|
817 |
-
# __('Manage options', 'ure');
|
818 |
-
# __('Moderate comments', 'ure');
|
819 |
-
# __('Manage categories', 'ure');
|
820 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
821 |
-
#: ../includes/class-ure-lib.php:
|
|
|
822 |
msgid "Moderate comments"
|
823 |
msgstr "ניהול תגובות"
|
824 |
|
825 |
-
# __('Moderate comments', 'ure');
|
826 |
-
# __('Manage categories', 'ure');
|
827 |
-
# __('Manage links', 'ure');
|
828 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
829 |
-
#: ../includes/class-ure-lib.php:
|
|
|
830 |
msgid "Manage categories"
|
831 |
msgstr "ניהול קטגוריות"
|
832 |
|
833 |
-
# __('Manage categories', 'ure');
|
834 |
-
# __('Manage links', 'ure');
|
835 |
-
# __('Upload files', 'ure');
|
836 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
837 |
-
#: ../includes/class-ure-lib.php:
|
|
|
838 |
msgid "Manage links"
|
839 |
msgstr "ניהול קישורים"
|
840 |
|
841 |
-
# __('Manage links', 'ure');
|
842 |
-
# __('Upload files', 'ure');
|
843 |
-
# __('Import', 'ure');
|
844 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
845 |
-
#: ../includes/class-ure-lib.php:
|
|
|
846 |
msgid "Upload files"
|
847 |
msgstr "העלאת קבצים"
|
848 |
|
849 |
-
# __('Upload files', 'ure');
|
850 |
-
# __('Import', 'ure');
|
851 |
-
# __('Unfiltered html', 'ure');
|
852 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
853 |
-
#: ../includes/class-ure-lib.php:
|
|
|
854 |
msgid "Import"
|
855 |
msgstr "יבוא"
|
856 |
|
857 |
-
# __('Import', 'ure');
|
858 |
-
# __('Unfiltered html', 'ure');
|
859 |
-
# __('Edit posts', 'ure');
|
860 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
861 |
-
#: ../includes/class-ure-lib.php:
|
|
|
862 |
msgid "Unfiltered html"
|
863 |
msgstr "עריכת HTML"
|
864 |
|
865 |
-
# __('Unfiltered html', 'ure');
|
866 |
-
# __('Edit posts', 'ure');
|
867 |
-
# __('Edit others posts', 'ure');
|
868 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
869 |
-
#: ../includes/class-ure-lib.php:
|
|
|
870 |
msgid "Edit posts"
|
871 |
msgstr "עריכת פוסטים"
|
872 |
|
873 |
-
# __('Edit posts', 'ure');
|
874 |
-
# __('Edit others posts', 'ure');
|
875 |
-
# __('Edit published posts', 'ure');
|
876 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
877 |
-
#: ../includes/class-ure-lib.php:
|
|
|
878 |
msgid "Edit others posts"
|
879 |
msgstr "עריכת פוסטים של אחרים"
|
880 |
|
881 |
-
# __('Edit others posts', 'ure');
|
882 |
-
# __('Edit published posts', 'ure');
|
883 |
-
# __('Publish posts', 'ure');
|
884 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
885 |
-
#: ../includes/class-ure-lib.php:
|
|
|
886 |
msgid "Edit published posts"
|
887 |
msgstr "עריכת פוסטים שפורסמו"
|
888 |
|
889 |
-
# __('Edit published posts', 'ure');
|
890 |
-
# __('Publish posts', 'ure');
|
891 |
-
# __('Edit pages', 'ure');
|
892 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
893 |
-
#: ../includes/class-ure-lib.php:
|
|
|
894 |
msgid "Publish posts"
|
895 |
msgstr "פוסטים שפורסמו"
|
896 |
|
897 |
-
# __('Publish posts', 'ure');
|
898 |
-
# __('Edit pages', 'ure');
|
899 |
-
# __('Read', 'ure');
|
900 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
901 |
-
#: ../includes/class-ure-lib.php:
|
|
|
902 |
msgid "Edit pages"
|
903 |
msgstr "עריכת עמודים"
|
904 |
|
905 |
-
# __('Edit pages', 'ure');
|
906 |
-
# __('Read', 'ure');
|
907 |
-
# __('Level 10', 'ure');
|
908 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
909 |
-
#: ../includes/class-ure-lib.php:
|
|
|
910 |
msgid "Read"
|
911 |
msgstr "קורא"
|
912 |
|
913 |
-
# __('Read', 'ure');
|
914 |
-
# __('Level 10', 'ure');
|
915 |
-
# __('Level 9', 'ure');
|
916 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
917 |
-
#: ../includes/class-ure-lib.php:
|
|
|
918 |
msgid "Level 10"
|
919 |
msgstr "דרגה 10"
|
920 |
|
921 |
-
# __('Level 10', 'ure');
|
922 |
-
# __('Level 9', 'ure');
|
923 |
-
# __('Level 8', 'ure');
|
924 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
925 |
-
#: ../includes/class-ure-lib.php:
|
|
|
926 |
msgid "Level 9"
|
927 |
msgstr "דרגה 9"
|
928 |
|
929 |
-
# __('Level 9', 'ure');
|
930 |
-
# __('Level 8', 'ure');
|
931 |
-
# __('Level 7', 'ure');
|
932 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
933 |
-
#: ../includes/class-ure-lib.php:
|
|
|
934 |
msgid "Level 8"
|
935 |
msgstr "דרגה 8"
|
936 |
|
937 |
-
# __('Level 8', 'ure');
|
938 |
-
# __('Level 7', 'ure');
|
939 |
-
# __('Level 6', 'ure');
|
940 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
941 |
-
#: ../includes/class-ure-lib.php:
|
|
|
942 |
msgid "Level 7"
|
943 |
msgstr "דרגה 7"
|
944 |
|
945 |
-
# __('Level 7', 'ure');
|
946 |
-
# __('Level 6', 'ure');
|
947 |
-
# __('Level 5', 'ure');
|
948 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
949 |
-
#: ../includes/class-ure-lib.php:
|
|
|
950 |
msgid "Level 6"
|
951 |
msgstr "דרגה 6"
|
952 |
|
953 |
-
# __('Level 6', 'ure');
|
954 |
-
# __('Level 5', 'ure');
|
955 |
-
# __('Level 4', 'ure');
|
956 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
957 |
-
#: ../includes/class-ure-lib.php:
|
|
|
958 |
msgid "Level 5"
|
959 |
msgstr "דרגה 5"
|
960 |
|
961 |
-
# __('Level 5', 'ure');
|
962 |
-
# __('Level 4', 'ure');
|
963 |
-
# __('Level 3', 'ure');
|
964 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
965 |
-
#: ../includes/class-ure-lib.php:
|
|
|
966 |
msgid "Level 4"
|
967 |
msgstr "דרגה 4"
|
968 |
|
969 |
-
# __('Level 4', 'ure');
|
970 |
-
# __('Level 3', 'ure');
|
971 |
-
# __('Level 2', 'ure');
|
972 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
973 |
-
#: ../includes/class-ure-lib.php:
|
|
|
974 |
msgid "Level 3"
|
975 |
msgstr "דרגה 3"
|
976 |
|
977 |
-
# __('Level 3', 'ure');
|
978 |
-
# __('Level 2', 'ure');
|
979 |
-
# __('Level 1', 'ure');
|
980 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
981 |
-
#: ../includes/class-ure-lib.php:
|
|
|
982 |
msgid "Level 2"
|
983 |
msgstr "דרגה 2"
|
984 |
|
985 |
-
# __('Level 2', 'ure');
|
986 |
-
# __('Level 1', 'ure');
|
987 |
-
# __('Level 0', 'ure');
|
988 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
989 |
-
#: ../includes/class-ure-lib.php:
|
|
|
990 |
msgid "Level 1"
|
991 |
msgstr "דרגה 1"
|
992 |
|
993 |
-
# __('Level 1', 'ure');
|
994 |
-
# __('Level 0', 'ure');
|
995 |
-
# __('Edit others pages', 'ure');
|
996 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
997 |
-
#: ../includes/class-ure-lib.php:
|
|
|
998 |
msgid "Level 0"
|
999 |
msgstr "דרגה 0"
|
1000 |
|
1001 |
-
# __('Level 0', 'ure');
|
1002 |
-
# __('Edit others pages', 'ure');
|
1003 |
-
# __('Edit published pages', 'ure');
|
1004 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
1005 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1006 |
msgid "Edit others pages"
|
1007 |
msgstr "עריכת דפים של אחרים"
|
1008 |
|
1009 |
-
# __('Edit others pages', 'ure');
|
1010 |
-
# __('Edit published pages', 'ure');
|
1011 |
-
# __('Publish pages', 'ure');
|
1012 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1013 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1014 |
msgid "Edit published pages"
|
1015 |
msgstr "עריכת דפים שפורסמו"
|
1016 |
|
1017 |
-
# __('Edit published pages', 'ure');
|
1018 |
-
# __('Publish pages', 'ure');
|
1019 |
-
# __('Delete pages', 'ure');
|
1020 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1021 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1022 |
msgid "Publish pages"
|
1023 |
msgstr "פרסום דפים"
|
1024 |
|
1025 |
-
# __('Publish pages', 'ure');
|
1026 |
-
# __('Delete pages', 'ure');
|
1027 |
-
# __('Delete others pages', 'ure');
|
1028 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1029 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1030 |
msgid "Delete pages"
|
1031 |
msgstr "מחיקת דפים"
|
1032 |
|
1033 |
-
# __('Delete pages', 'ure');
|
1034 |
-
# __('Delete others pages', 'ure');
|
1035 |
-
# __('Delete published pages', 'ure');
|
1036 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1037 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1038 |
msgid "Delete others pages"
|
1039 |
msgstr "מחיקת דפים של אחרים"
|
1040 |
|
1041 |
-
# __('Delete others pages', 'ure');
|
1042 |
-
# __('Delete published pages', 'ure');
|
1043 |
-
# __('Delete posts', 'ure');
|
1044 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1045 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1046 |
msgid "Delete published pages"
|
1047 |
msgstr "מחיקת דפים שפורסמו"
|
1048 |
|
1049 |
-
# __('Delete published pages', 'ure');
|
1050 |
-
# __('Delete posts', 'ure');
|
1051 |
-
# __('Delete others posts', 'ure');
|
1052 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1053 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1054 |
msgid "Delete posts"
|
1055 |
msgstr "מחיקת פוסטים"
|
1056 |
|
1057 |
-
# __('Delete posts', 'ure');
|
1058 |
-
# __('Delete others posts', 'ure');
|
1059 |
-
# __('Delete published posts', 'ure');
|
1060 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1061 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1062 |
msgid "Delete others posts"
|
1063 |
msgstr "מחיקת פוסטים של אחרים"
|
1064 |
|
1065 |
-
# __('Delete others posts', 'ure');
|
1066 |
-
# __('Delete published posts', 'ure');
|
1067 |
-
# __('Delete private posts', 'ure');
|
1068 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1069 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1070 |
msgid "Delete published posts"
|
1071 |
msgstr "מחיקת פוסטים שפורסמו"
|
1072 |
|
1073 |
-
# __('Delete published posts', 'ure');
|
1074 |
-
# __('Delete private posts', 'ure');
|
1075 |
-
# __('Edit private posts', 'ure');
|
1076 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1077 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1078 |
msgid "Delete private posts"
|
1079 |
msgstr "מחיקת פוסטים פרטיים"
|
1080 |
|
1081 |
-
# __('Delete private posts', 'ure');
|
1082 |
-
# __('Edit private posts', 'ure');
|
1083 |
-
# __('Read private posts', 'ure');
|
1084 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1085 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1086 |
msgid "Edit private posts"
|
1087 |
msgstr "עריכת פוסטים פרטיים"
|
1088 |
|
1089 |
-
# __('Edit private posts', 'ure');
|
1090 |
-
# __('Read private posts', 'ure');
|
1091 |
-
# __('Delete private pages', 'ure');
|
1092 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1093 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1094 |
msgid "Read private posts"
|
1095 |
msgstr "קריאת פוסטים פרטיים"
|
1096 |
|
1097 |
-
# __('Read private posts', 'ure');
|
1098 |
-
# __('Delete private pages', 'ure');
|
1099 |
-
# __('Edit private pages', 'ure');
|
1100 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1101 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1102 |
msgid "Delete private pages"
|
1103 |
msgstr "מחיקת עמודים פרטיים"
|
1104 |
|
1105 |
-
# __('Delete private pages', 'ure');
|
1106 |
-
# __('Edit private pages', 'ure');
|
1107 |
-
# __('Read private pages', 'ure');
|
1108 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1109 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1110 |
msgid "Edit private pages"
|
1111 |
msgstr "מחיקת עמודים פרטיים"
|
1112 |
|
1113 |
-
# __('Edit private pages', 'ure');
|
1114 |
-
# __('Read private pages', 'ure');
|
1115 |
-
# __('Delete users', 'ure');
|
1116 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1117 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1118 |
msgid "Read private pages"
|
1119 |
msgstr "קריאת עמודים פרטיים"
|
1120 |
|
1121 |
-
# __('Read private pages', 'ure');
|
1122 |
-
# __('Delete users', 'ure');
|
1123 |
-
# __('Create users', 'ure');
|
1124 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1125 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1126 |
msgid "Delete users"
|
1127 |
msgstr "מחיקת משתמשים"
|
1128 |
|
1129 |
-
# __('Delete users', 'ure');
|
1130 |
-
# __('Create users', 'ure');
|
1131 |
-
# __('Unfiltered upload', 'ure');
|
1132 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1133 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1134 |
msgid "Create users"
|
1135 |
msgstr "יצירת משתמשים"
|
1136 |
|
1137 |
-
# __('Create users', 'ure');
|
1138 |
-
# __('Unfiltered upload', 'ure');
|
1139 |
-
# __('Edit dashboard', 'ure');
|
1140 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1141 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1142 |
msgid "Unfiltered upload"
|
1143 |
msgstr "העלאת קבצים חופשית"
|
1144 |
|
1145 |
-
# __('Unfiltered upload', 'ure');
|
1146 |
-
# __('Edit dashboard', 'ure');
|
1147 |
-
# __('Update plugins', 'ure');
|
1148 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1149 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1150 |
msgid "Edit dashboard"
|
1151 |
msgstr "שינוי לוח הבקרה"
|
1152 |
|
1153 |
-
# __('Edit dashboard', 'ure');
|
1154 |
-
# __('Update plugins', 'ure');
|
1155 |
-
# __('Delete plugins', 'ure');
|
1156 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1157 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1158 |
msgid "Update plugins"
|
1159 |
msgstr "עדכון תוספים"
|
1160 |
|
1161 |
-
# __('Update plugins', 'ure');
|
1162 |
-
# __('Delete plugins', 'ure');
|
1163 |
-
# __('Install plugins', 'ure');
|
1164 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1165 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1166 |
msgid "Delete plugins"
|
1167 |
msgstr "מחיקת תוספים"
|
1168 |
|
1169 |
-
# __('Delete plugins', 'ure');
|
1170 |
-
# __('Install plugins', 'ure');
|
1171 |
-
# __('Update themes', 'ure');
|
1172 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1173 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1174 |
msgid "Install plugins"
|
1175 |
msgstr "התקנת תוספים"
|
1176 |
|
1177 |
-
# __('Install plugins', 'ure');
|
1178 |
-
# __('Update themes', 'ure');
|
1179 |
-
# __('Install themes', 'ure');
|
1180 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1181 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1182 |
msgid "Update themes"
|
1183 |
msgstr "עדכון תבניות"
|
1184 |
|
1185 |
-
# __('Update themes', 'ure');
|
1186 |
-
# __('Install themes', 'ure');
|
1187 |
-
# __('Update core', 'ure');
|
1188 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1189 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1190 |
msgid "Install themes"
|
1191 |
msgstr "התקנת תבניות חדשות"
|
1192 |
|
1193 |
-
# __('Install themes', 'ure');
|
1194 |
-
# __('Update core', 'ure');
|
1195 |
-
# __('List users', 'ure');
|
1196 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1197 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1198 |
msgid "Update core"
|
1199 |
msgstr "עדכון וורדפרס"
|
1200 |
|
1201 |
-
# __('Update core', 'ure');
|
1202 |
-
# __('List users', 'ure');
|
1203 |
-
# __('Remove users', 'ure');
|
1204 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1205 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1206 |
msgid "List users"
|
1207 |
msgstr "בצפייה במשתמשים"
|
1208 |
|
1209 |
-
# __('List users', 'ure');
|
1210 |
-
# __('Remove users', 'ure');
|
1211 |
-
# __('Add users', 'ure');
|
1212 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1213 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1214 |
msgid "Remove users"
|
1215 |
msgstr "הסרת משתמשים"
|
1216 |
|
1217 |
-
# __('Remove users', 'ure');
|
1218 |
-
# __('Add users', 'ure');
|
1219 |
-
# __('Promote users', 'ure');
|
1220 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1221 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1222 |
msgid "Add users"
|
1223 |
msgstr "הוספת משתמשים"
|
1224 |
|
1225 |
-
# __('Add users', 'ure');
|
1226 |
-
# __('Promote users', 'ure');
|
1227 |
-
# __('Edit theme options', 'ure');
|
1228 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1229 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1230 |
msgid "Promote users"
|
1231 |
msgstr "שינוי משתמשים"
|
1232 |
|
1233 |
-
# __('Promote users', 'ure');
|
1234 |
-
# __('Edit theme options', 'ure');
|
1235 |
-
# __('Delete themes', 'ure');
|
1236 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1237 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1238 |
msgid "Edit theme options"
|
1239 |
msgstr "עריכת אפשרויות התבנית"
|
1240 |
|
1241 |
-
# __('Edit theme options', 'ure');
|
1242 |
-
# __('Delete themes', 'ure');
|
1243 |
-
# __('Export', 'ure');
|
1244 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1245 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1246 |
msgid "Delete themes"
|
1247 |
msgstr "מחיקת תבניות"
|
1248 |
|
1249 |
-
# __('Delete themes', 'ure');
|
1250 |
-
# __('Export', 'ure');
|
1251 |
-
# }
|
1252 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1253 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1254 |
msgid "Export"
|
1255 |
msgstr "ייצוא תוכן"
|
1256 |
|
1257 |
-
# if (!$valid_name || ($valid_name && ($match[0] != $user_capability))) { // some non-alphanumeric charactes found!
|
1258 |
-
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1259 |
-
# ;
|
1260 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1261 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1262 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1263 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1264 |
|
1265 |
-
# $wp_roles->add_cap('administrator', $user_capability);
|
1266 |
-
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1267 |
-
# } else {
|
1268 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1269 |
-
#: ../includes/class-ure-lib.php:
|
1270 |
-
#, php-format
|
1271 |
msgid "Capability %s is added successfully"
|
1272 |
msgstr "היכולת %s נוספה בהצלחה"
|
1273 |
|
1274 |
-
# } else {
|
1275 |
-
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1276 |
-
# }
|
1277 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1278 |
-
#: ../includes/class-ure-lib.php:
|
1279 |
-
#, php-format
|
1280 |
msgid "Capability %s exists already"
|
1281 |
msgstr "כבר קיימת יכולת בשם %s"
|
1282 |
|
1283 |
-
# if (!is_array($caps_to_remove) || count($caps_to_remove) == 0 || !isset($caps_to_remove[$capability_id])) {
|
1284 |
-
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1285 |
-
# }
|
1286 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1287 |
-
#: ../includes/class-ure-lib.php:
|
1288 |
-
#, php-format
|
1289 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1290 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1291 |
|
1292 |
-
#
|
1293 |
-
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1294 |
-
# }
|
1295 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1296 |
-
#: ../includes/class-ure-lib.php:
|
1297 |
-
#, php-format
|
1298 |
msgid "Capability %s is removed successfully"
|
1299 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1300 |
|
1301 |
-
|
|
|
|
|
1302 |
msgid "Version:"
|
1303 |
-
msgstr ""
|
1304 |
|
1305 |
-
# ?>
|
1306 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
1307 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1308 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1309 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1310 |
msgid "Author's website"
|
1311 |
msgstr "אתר היוצר"
|
1312 |
|
1313 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/vladimir.png'; ?>);" target="_blank" href="http://www.shinephp.com/"><?php _e("Author's website", 'ure'); ?></a>
|
1314 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/user-role-editor-icon.png'; ?>);" target="_blank" href="http://role-editor.com"><?php _e('Plugin webpage', 'ure'); ?></a>
|
1315 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1316 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1317 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1318 |
msgid "Plugin webpage"
|
1319 |
msgstr "דף התוסף"
|
1320 |
|
1321 |
-
#
|
1322 |
-
|
1323 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1324 |
-
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1325 |
-
#: ../includes/class-ure-lib.php:2528
|
1326 |
#, fuzzy
|
1327 |
msgid "Plugin download"
|
1328 |
-
msgstr "
|
1329 |
|
1330 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/changelog-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#changelog"><?php _e('Changelog', 'ure'); ?></a>
|
1331 |
-
# <a class="ure_rsb_link" style="background-image:url(<?php echo URE_PLUGIN_URL . 'images/faq-icon.png'; ?>);" target="_blank" href="http://www.shinephp.com/user-role-editor-wordpress-plugin/#faq"><?php _e('FAQ', 'ure'); ?></a>
|
1332 |
-
# <?php
|
1333 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1334 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1335 |
msgid "FAQ"
|
1336 |
msgstr "שאלות נפוצות"
|
1337 |
|
1338 |
-
# $this->role_to_copy_html = '<select id="user_role_copy_from" name="user_role_copy_from" width="200" style="width: 200px">
|
1339 |
-
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1340 |
-
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1341 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1342 |
-
#: ../includes/class-ure-lib.php:
|
|
|
1343 |
msgid "None"
|
1344 |
msgstr "תרום"
|
1345 |
|
1346 |
-
#
|
1347 |
-
|
1348 |
-
|
1349 |
-
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1350 |
-
#: ../includes/class-ure-lib.php:2605
|
1351 |
msgid "Delete All Unused Roles"
|
1352 |
-
msgstr ""
|
1353 |
|
1354 |
-
#: ../includes/class-ure-lib.php:
|
1355 |
msgid "— No role for this site —"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
# if (is_multisite() && is_super_admin($this->user_to_edit->ID)) {
|
1359 |
-
# $user_info .= ' <span style="font-weight: bold; color:red;">'. esc_html__('Network Super Admin', 'ure') .'</span>';
|
1360 |
-
# }
|
1361 |
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
1362 |
#: ../includes/ure-user-edit.php:32
|
|
|
1363 |
msgid "Network Super Admin"
|
1364 |
msgstr "מנהל-על של רשת"
|
1365 |
|
1366 |
-
#
|
1367 |
-
# $this->display_box_start(__('Change capabilities for user', 'ure').$user_info, 'min-width:830px;');
|
1368 |
-
#
|
1369 |
# wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
|
1370 |
#: ../includes/ure-user-edit.php:35
|
|
|
1371 |
msgid "Change capabilities for user"
|
1372 |
msgstr "שינוי יכולות המשתמש"
|
1373 |
|
|
|
1374 |
#: ../includes/ure-user-edit.php:72
|
|
|
1375 |
msgid "Primary Role:"
|
1376 |
-
msgstr ""
|
1377 |
|
|
|
1378 |
#: ../includes/ure-user-edit.php:82
|
|
|
1379 |
msgid "bbPress Role:"
|
1380 |
-
msgstr ""
|
1381 |
|
1382 |
-
#
|
1383 |
-
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
1384 |
-
# <td>
|
1385 |
-
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
1386 |
#: ../includes/ure-user-edit.php:92
|
1387 |
#, fuzzy
|
1388 |
msgid "Other Roles:"
|
1389 |
-
msgstr "תפקידים
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1390 |
|
1391 |
#: ../includes/class-ure-screen-help.php:16
|
1392 |
msgid ""
|
@@ -1424,21 +1185,29 @@ msgid ""
|
|
1424 |
"users list with role \"No rights\" at the separate tab then."
|
1425 |
msgstr ""
|
1426 |
|
|
|
1427 |
#: ../includes/class-ure-screen-help.php:63
|
|
|
1428 |
msgid "Other default roles for new registered user"
|
1429 |
-
msgstr ""
|
1430 |
|
|
|
1431 |
#: ../includes/class-ure-screen-help.php:64
|
|
|
1432 |
msgid ""
|
1433 |
"select roles below to assign them to the new user automatically as an "
|
1434 |
"addition to the primary role. Note for multisite environment: take into "
|
1435 |
"account that other default roles should exist at the site, in order to be "
|
1436 |
"assigned to the new registered users."
|
1437 |
msgstr ""
|
|
|
|
|
1438 |
|
|
|
1439 |
#: ../includes/class-ure-screen-help.php:82
|
|
|
1440 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1441 |
-
msgstr ""
|
1442 |
|
1443 |
#: ../includes/class-ure-screen-help.php:83
|
1444 |
msgid ""
|
@@ -1446,11 +1215,3 @@ msgid ""
|
|
1446 |
"multi-site by default. Turn this option on in order to remove this "
|
1447 |
"limitation."
|
1448 |
msgstr ""
|
1449 |
-
|
1450 |
-
# 'select_all' => __('Select All', 'ure'),
|
1451 |
-
# 'unselect_all' => __('Unselect All', 'ure'),
|
1452 |
-
# 'reverse' => __('Reverse', 'ure'),
|
1453 |
-
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
1454 |
-
#, fuzzy
|
1455 |
-
#~ msgid "select roles below"
|
1456 |
-
#~ msgstr "לא לבחור שום דבר"
|
1 |
# This file was generated by WPML
|
2 |
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
|
3 |
+
# https://wpml.org
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: user-role-editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
9 |
"PO-Revision-Date: \n"
|
10 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
12 |
+
"Language: he\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
|
19 |
+
# wpml-name: ee7816d892f54d4aa67456e2486d8a09
|
|
|
|
|
|
|
20 |
#: ../includes/settings-template.php:17
|
21 |
#, fuzzy
|
22 |
msgid "User Role Editor - Options"
|
23 |
+
msgstr "אפשרויות User Role Editor"
|
24 |
|
25 |
#: ../includes/settings-template.php:21
|
26 |
#: ../includes/class-user-role-editor.php:591
|
32 |
msgid "Additional Modules"
|
33 |
msgstr ""
|
34 |
|
|
|
|
|
|
|
35 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
36 |
#: ../includes/settings-template.php:30
|
37 |
#: ../includes/class-user-role-editor.php:603
|
44 |
msgid "Multisite"
|
45 |
msgstr ""
|
46 |
|
47 |
+
# wpml-name: 8f7f4c1ce7a4f933663d10543562b096
|
48 |
#: ../includes/settings-template.php:39
|
49 |
+
#, fuzzy
|
50 |
msgid "About"
|
51 |
+
msgstr "אודות"
|
52 |
|
53 |
+
# wpml-name: 6a2b000934893502dc6bd0467b009610
|
|
|
|
|
|
|
54 |
#: ../includes/settings-template.php:53
|
55 |
#: ../includes/class-ure-screen-help.php:15
|
56 |
+
#, fuzzy
|
57 |
msgid "Show Administrator role at User Role Editor"
|
58 |
+
msgstr "הצג את תפקיד מנהל בעורך התפקידים"
|
59 |
|
60 |
+
# wpml-name: 97bcfe1a3fd7f909008bffd0318bb09b
|
|
|
|
|
|
|
61 |
#: ../includes/settings-template.php:61
|
62 |
#: ../includes/class-ure-screen-help.php:18
|
63 |
+
#, fuzzy
|
64 |
msgid "Show capabilities in the human readable form"
|
65 |
+
msgstr "הצג יכולות באופן קריא לבני אדם"
|
66 |
|
|
|
|
|
|
|
67 |
# wpml-name: 130b09deaec4b13948be95555d546f25
|
68 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
69 |
#: ../includes/ure-user-edit.php:64 ../includes/class-ure-screen-help.php:21
|
70 |
+
#, fuzzy
|
71 |
msgid "Show deprecated capabilities"
|
72 |
msgstr "הצג הרשאות לפי מספר"
|
73 |
|
74 |
+
# wpml-name: e16363f33a765f63f2a76c656513a3c3
|
|
|
|
|
|
|
75 |
#: ../includes/settings-template.php:77
|
76 |
#: ../includes/class-ure-screen-help.php:25
|
77 |
#, fuzzy
|
78 |
msgid "Edit user capabilities"
|
79 |
+
msgstr "עריכת יכולות משתמש"
|
80 |
|
|
|
|
|
|
|
81 |
# wpml-name: c9cc8cce247e49bae79f15173ce97354
|
82 |
#: ../includes/settings-template.php:90 ../includes/settings-template.php:126
|
83 |
#: ../includes/settings-template.php:158 ../includes/settings-template.php:190
|
84 |
+
#, fuzzy
|
85 |
msgid "Save"
|
86 |
msgstr "שמירה"
|
87 |
|
88 |
+
# wpml-name: e3ab3ebfb2e41f752d1aa68baaed6a82
|
89 |
#: ../includes/settings-template.php:111
|
90 |
#: ../includes/class-ure-screen-help.php:45
|
91 |
+
#, fuzzy
|
92 |
msgid "Count users without role"
|
93 |
+
msgstr "ספור את המשתמשים ללא תפקיד"
|
94 |
|
95 |
+
# wpml-name: c33a7c260a5f56bf1e00ec5b3fe9d2ea
|
96 |
#: ../includes/settings-template.php:138
|
97 |
+
#, fuzzy
|
98 |
msgid "Primary default role: "
|
99 |
+
msgstr "תפקיד ברירת מחדל ראשי: "
|
100 |
|
101 |
+
# wpml-name: 75fcf18acf2e8b995a2cf3e563d57e02
|
102 |
#: ../includes/settings-template.php:145
|
103 |
+
#, fuzzy
|
104 |
msgid "Other default roles for new registered user: "
|
105 |
+
msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש:"
|
106 |
|
107 |
+
# wpml-name: 41b92726cf0352610f9cab72914f101f
|
108 |
#: ../includes/settings-template.php:151
|
109 |
+
#, fuzzy
|
110 |
msgid ""
|
111 |
"Note for multisite environment: take into account that other default roles "
|
112 |
"should exist at the site, in order to be assigned to the new registered "
|
113 |
"users."
|
114 |
msgstr ""
|
115 |
+
"הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
|
116 |
+
"באתר, כדי להקצות למשתמשים נרשמים חדשים."
|
117 |
|
118 |
+
# wpml-name: 4767dba7bf9ad16cdee8714563128ab1
|
119 |
#: ../includes/settings-template.php:177
|
120 |
+
#, fuzzy
|
121 |
msgid "Allow non super administrators to create, edit, and delete users"
|
122 |
+
msgstr "אפשר למנהלי משנה ליצור, לערוך ולמחוק משתמשים"
|
123 |
|
124 |
+
# wpml-name: 811ee91f039ea705795ebf5e09bde9f5
|
125 |
+
#: ../includes/class-user-role-editor.php:234
|
126 |
+
#, fuzzy
|
127 |
msgid "Change role for users without role"
|
128 |
+
msgstr "שנה את התפקיד למשתמשים ללא תפקיד"
|
129 |
|
130 |
+
# wpml-name: a34b1d6b1c46e4b902372075a840c582
|
131 |
+
#: ../includes/class-user-role-editor.php:235
|
132 |
+
#, fuzzy
|
133 |
msgid "No rights"
|
134 |
+
msgstr "ללא זכויות"
|
135 |
|
136 |
+
# wpml-name: 84b4334025ddad442726d6d30fa30bb3
|
137 |
+
#: ../includes/class-user-role-editor.php:236
|
138 |
+
#, fuzzy
|
139 |
msgid "Provide new role"
|
140 |
+
msgstr "קבע תפקיד חדש"
|
141 |
|
|
|
|
|
|
|
142 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
143 |
+
#: ../includes/class-user-role-editor.php:320
|
144 |
+
#: ../includes/class-user-role-editor.php:322
|
145 |
+
#, fuzzy
|
146 |
msgid "You do not have permission to edit this user."
|
147 |
+
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
148 |
|
|
|
|
|
|
|
149 |
# wpml-name: 82ec2cd6fda87713f588da75c3b1d0ed
|
150 |
#: ../includes/class-user-role-editor.php:460
|
151 |
+
#, fuzzy
|
152 |
msgid "Capabilities"
|
153 |
msgstr "יכולות"
|
154 |
|
|
|
|
|
|
|
155 |
# wpml-name: f4f70727dc34561dfde1a3c529b6205c
|
156 |
#: ../includes/class-user-role-editor.php:558
|
157 |
+
#, fuzzy
|
158 |
msgid "Settings"
|
159 |
msgstr "הגדרות"
|
160 |
|
|
|
|
|
|
|
161 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
162 |
#: ../includes/class-user-role-editor.php:569
|
163 |
+
#: ../includes/class-ure-lib.php:2540
|
164 |
+
#, fuzzy
|
165 |
msgid "Changelog"
|
166 |
msgstr "יומן שינויים"
|
167 |
|
|
|
|
|
|
|
168 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
169 |
#: ../includes/class-user-role-editor.php:619
|
170 |
#: ../includes/class-user-role-editor.php:648
|
171 |
+
#: ../includes/class-user-role-editor.php:1030
|
172 |
#: ../includes/class-ure-lib.php:337
|
173 |
+
#, fuzzy
|
174 |
msgid "User Role Editor"
|
175 |
msgstr "User Role Editor"
|
176 |
|
|
|
|
|
|
|
177 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
178 |
#: ../includes/class-user-role-editor.php:708
|
179 |
#: ../includes/class-user-role-editor.php:726
|
180 |
#: ../includes/class-user-role-editor.php:770
|
181 |
+
#, fuzzy
|
182 |
msgid "User Role Editor options are updated"
|
183 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
184 |
|
185 |
+
# wpml-name: 34c0807eb711e6f3442056399143676d
|
|
|
|
|
|
|
186 |
#: ../includes/class-user-role-editor.php:754
|
187 |
#, fuzzy
|
188 |
msgid "Default Roles are updated"
|
189 |
+
msgstr "תפקידי ברירת המחדל עודכנו"
|
190 |
|
191 |
+
# wpml-name: cfa97a379b5b0e4a2b77f09b95ce202d
|
192 |
+
#: ../includes/class-user-role-editor.php:779
|
193 |
+
#, fuzzy
|
194 |
msgid ""
|
195 |
"You do not have sufficient permissions to manage options for User Role "
|
196 |
"Editor."
|
197 |
msgstr ""
|
198 |
+
"אין לך הרשאות מסספיקות לנהל את האפשרויות עבור עורך התפקידים User Role Editor."
|
199 |
|
200 |
+
# wpml-name: 077a0eb06e4c26b3d834fbe4180a1f8e
|
201 |
+
#: ../includes/class-user-role-editor.php:851
|
202 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
203 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
204 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
205 |
+
#, fuzzy
|
206 |
msgid "Insufficient permissions to work with User Role Editor"
|
207 |
+
msgstr "לא מספיק הרשאות להשתמש בעורך התפקידים User Role Editor"
|
208 |
|
|
|
|
|
|
|
209 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
210 |
+
#: ../includes/class-user-role-editor.php:977
|
211 |
+
#, fuzzy
|
212 |
msgid "Select All"
|
213 |
msgstr "בחירת הכל"
|
214 |
|
|
|
|
|
|
|
215 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
216 |
+
#: ../includes/class-user-role-editor.php:978
|
217 |
+
#, fuzzy
|
218 |
msgid "Unselect All"
|
219 |
msgstr "לא לבחור שום דבר"
|
220 |
|
|
|
|
|
|
|
221 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
222 |
+
#: ../includes/class-user-role-editor.php:979
|
223 |
+
#, fuzzy
|
224 |
msgid "Reverse"
|
225 |
msgstr "להפוך"
|
226 |
|
|
|
|
|
|
|
227 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
228 |
+
#: ../includes/class-user-role-editor.php:980
|
229 |
+
#, fuzzy
|
230 |
msgid "Update"
|
231 |
msgstr "עדכן"
|
232 |
|
|
|
|
|
|
|
233 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
234 |
+
#: ../includes/class-user-role-editor.php:981
|
235 |
+
#, fuzzy
|
236 |
msgid "Please confirm permissions update"
|
237 |
msgstr "נא לאשר את עדכון ההרשאות"
|
238 |
|
|
|
|
|
|
|
239 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
240 |
+
#: ../includes/class-user-role-editor.php:982
|
241 |
+
#, fuzzy
|
242 |
msgid "Add New Role"
|
243 |
msgstr "הוסף סוג משתמש חדש"
|
244 |
|
245 |
+
# wpml-name: f0962c89a8b10e2fd876ca0ccab540fe
|
246 |
+
#: ../includes/class-user-role-editor.php:983
|
247 |
+
#: ../includes/class-user-role-editor.php:988
|
|
|
|
|
|
|
248 |
#, fuzzy
|
249 |
msgid "Rename Role"
|
250 |
+
msgstr "שנה שם תפקיד"
|
251 |
|
|
|
|
|
|
|
252 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
253 |
+
#: ../includes/class-user-role-editor.php:984
|
254 |
+
#, fuzzy
|
255 |
msgid " Role name (ID) can not be empty!"
|
256 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
257 |
|
|
|
|
|
|
|
258 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
259 |
+
#: ../includes/class-user-role-editor.php:985
|
260 |
+
#, fuzzy
|
261 |
msgid ""
|
262 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
263 |
"only!"
|
264 |
msgstr ""
|
265 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
266 |
|
267 |
+
# wpml-name: 9d3cb86c91470b14e11d0d1355936ffb
|
268 |
+
#: ../includes/class-user-role-editor.php:986
|
269 |
+
#, fuzzy
|
270 |
msgid ""
|
271 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
272 |
"it."
|
273 |
msgstr ""
|
274 |
+
" וורדפרס אינו תומך בשמות תפקיד מספריים (ID). נא להוסיף לזה אותיות לטיניות."
|
275 |
|
|
|
|
|
|
|
276 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
277 |
+
#: ../includes/class-user-role-editor.php:987
|
278 |
+
#, fuzzy
|
279 |
msgid "Add Role"
|
280 |
msgstr "הוספת תפקיד"
|
281 |
|
|
|
|
|
|
|
282 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
283 |
+
#: ../includes/class-user-role-editor.php:989
|
284 |
+
#, fuzzy
|
285 |
msgid "Delete Role"
|
286 |
msgstr "מחיקת סוג משתמש"
|
287 |
|
|
|
|
|
|
|
288 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
289 |
+
#: ../includes/class-user-role-editor.php:990
|
290 |
+
#, fuzzy
|
291 |
msgid "Cancel"
|
292 |
msgstr "ביטול"
|
293 |
|
|
|
|
|
|
|
294 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
295 |
+
#: ../includes/class-user-role-editor.php:991
|
296 |
+
#, fuzzy
|
297 |
msgid "Add Capability"
|
298 |
msgstr "הוספת יכולת"
|
299 |
|
|
|
|
|
|
|
300 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
301 |
+
#: ../includes/class-user-role-editor.php:992
|
302 |
+
#: ../includes/class-user-role-editor.php:1001
|
303 |
+
#, fuzzy
|
304 |
msgid "Delete Capability"
|
305 |
msgstr "מחיקת יכולת"
|
306 |
|
|
|
|
|
|
|
307 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
308 |
+
#: ../includes/class-user-role-editor.php:993
|
309 |
+
#, fuzzy
|
310 |
msgid "Reset"
|
311 |
msgstr "איפוס"
|
312 |
|
313 |
+
# wpml-name: d72422418711904043670940067cb2eb
|
314 |
+
#: ../includes/class-user-role-editor.php:994
|
315 |
+
#, fuzzy
|
316 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
317 |
+
msgstr "סכנה! איפוס ישחזר את ההגדרות לברירת המחדל של ליבת וורדפרס."
|
318 |
|
319 |
+
# wpml-name: b2e7f2d766ee66eaee3248fe09b3f822
|
320 |
+
#: ../includes/class-user-role-editor.php:995
|
321 |
+
#, fuzzy
|
322 |
msgid ""
|
323 |
"If any plugins have changed capabilities in any way upon installation (such "
|
324 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
325 |
msgstr ""
|
326 |
+
"אם תוסף כלשהו שינה יכולות בצורה כלשהי בהתקנתו (כמו למשל S2Member, "
|
327 |
+
"WooCommerce, ורבים אחרים), יכולות אלו יימחקו!"
|
328 |
|
329 |
+
# wpml-name: 832e2074e0e4c3a18713a810b77da6e3
|
330 |
+
#: ../includes/class-user-role-editor.php:996
|
331 |
+
#, fuzzy
|
332 |
msgid ""
|
333 |
"For more information on how to undo changes and restore plugin capabilities "
|
334 |
"go to"
|
335 |
+
msgstr "למידע נוסף על כיצד לבטל שינויים ולשחזר את יכולות התוסף עבור אל"
|
336 |
|
337 |
+
# wpml-name: 140e317e0077aece29910d4f129b2cdd
|
338 |
+
#: ../includes/class-user-role-editor.php:998
|
339 |
+
#, fuzzy
|
|
|
|
|
340 |
msgid "Continue?"
|
341 |
+
msgstr "להמשיך?"
|
342 |
|
|
|
|
|
|
|
343 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
344 |
+
#: ../includes/class-user-role-editor.php:999
|
345 |
+
#, fuzzy
|
346 |
msgid "Default Role"
|
347 |
msgstr "תפקיד ברירת מחדל"
|
348 |
|
|
|
|
|
|
|
349 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
350 |
+
#: ../includes/class-user-role-editor.php:1000
|
351 |
+
#, fuzzy
|
352 |
msgid "Set New Default Role"
|
353 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
354 |
|
|
|
|
|
|
|
355 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
356 |
+
#: ../includes/class-user-role-editor.php:1002
|
357 |
+
#, fuzzy
|
358 |
msgid ""
|
359 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
360 |
"or other custom code"
|
362 |
"זהירות! הסרה של אפשרויות קריטיות עשוי לגרום לתוספים מסוים או קוד נסמך שלא "
|
363 |
"לעבוד כשורה"
|
364 |
|
|
|
|
|
|
|
365 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
366 |
+
#: ../includes/class-user-role-editor.php:1003
|
367 |
+
#, fuzzy
|
368 |
msgid " Capability name (ID) can not be empty!"
|
369 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
370 |
|
|
|
|
|
|
|
371 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
372 |
+
#: ../includes/class-user-role-editor.php:1004
|
373 |
+
#, fuzzy
|
374 |
msgid ""
|
375 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
376 |
"underscore only!"
|
377 |
msgstr ""
|
378 |
" שם היכולת (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
379 |
|
|
|
|
|
|
|
380 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
381 |
+
#: ../includes/class-user-role-editor.php:1033
|
382 |
+
#: ../includes/class-user-role-editor.php:1066
|
383 |
+
#, fuzzy
|
384 |
msgid "Other Roles"
|
385 |
msgstr "תפקידים אחרים"
|
386 |
|
|
|
|
|
|
|
387 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
388 |
+
#: ../includes/class-user-role-editor.php:1047
|
389 |
+
#, fuzzy
|
390 |
msgid "Edit"
|
391 |
msgstr "עריכה"
|
392 |
|
393 |
+
# wpml-name: cb110c375e91e41d17060cc8723f710b
|
394 |
#: ../includes/ure-role-edit.php:17
|
395 |
+
#, fuzzy
|
396 |
msgid "Select Role and change its capabilities:"
|
397 |
+
msgstr "בחר תפקיד ושנה את היכולות שלו:"
|
398 |
|
399 |
+
# wpml-name: 5e09edd7b2ed1864deffbd964073b27a
|
400 |
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:54
|
401 |
+
#, fuzzy
|
402 |
msgid "Show capabilities in human readable form"
|
403 |
+
msgstr "הצג יכולות באופן קריא לבני אדם"
|
404 |
|
|
|
|
|
|
|
|
|
405 |
#: ../includes/ure-role-edit.php:44
|
406 |
msgid "If checked, then apply action to ALL sites of this Network"
|
407 |
+
msgstr ""
|
408 |
|
409 |
+
# wpml-name: 3c3416f05587ed480626948fab988eea
|
410 |
#: ../includes/ure-role-edit.php:56
|
411 |
+
#, fuzzy
|
412 |
msgid "Apply to All Sites"
|
413 |
+
msgstr "החל על כל האתרים"
|
414 |
|
415 |
+
# wpml-name: cca700a30d083e59a9879c24f255abe3
|
|
|
|
|
|
|
416 |
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:110
|
417 |
#, fuzzy
|
418 |
msgid "Core capabilities:"
|
419 |
+
msgstr "יכולות ליבה:"
|
420 |
|
421 |
+
# wpml-name: dfcd600fb9e5ccb12b8bb4d83f45d35a
|
422 |
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:112
|
423 |
+
#, fuzzy
|
424 |
msgid "Quick filter:"
|
425 |
+
msgstr "סינון מהיר:"
|
426 |
|
427 |
+
# wpml-name: 0e57c9d7615e130906e8fc6e10065ae1
|
|
|
|
|
|
|
428 |
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:131
|
429 |
#, fuzzy
|
430 |
msgid "Custom capabilities:"
|
431 |
+
msgstr "קביעת יכולות:"
|
432 |
|
|
|
|
|
|
|
433 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
434 |
#: ../includes/class-ure-lib.php:245
|
435 |
+
#, fuzzy
|
436 |
msgid "Error: wrong request"
|
437 |
msgstr "שגיאה: בקשה מוטעית"
|
438 |
|
439 |
+
# wpml-name: 37b0a122a7eb7b961dc33e61b8d5df10
|
|
|
|
|
|
|
440 |
#: ../includes/class-ure-lib.php:278 ../includes/class-ure-lib.php:289
|
441 |
#, fuzzy
|
442 |
msgid "Role name (ID): "
|
443 |
+
msgstr "שם התפקיד (ID): "
|
444 |
|
445 |
+
# wpml-name: 246c9066a0e20805752f69f87ffb66af
|
446 |
#: ../includes/class-ure-lib.php:280 ../includes/class-ure-lib.php:291
|
447 |
+
#, fuzzy
|
448 |
msgid "Display Role Name: "
|
449 |
+
msgstr "הצג שם תפקיד: "
|
450 |
|
451 |
+
# wpml-name: 1f2d970e46f567eb2fe77e1f8387f37a
|
452 |
#: ../includes/class-ure-lib.php:282
|
453 |
+
#, fuzzy
|
454 |
msgid "Make copy of: "
|
455 |
+
msgstr "צור העתק של: "
|
456 |
|
457 |
+
# wpml-name: 6ae3f08b992f68a1bf8924945d2c7c98
|
|
|
|
|
|
|
458 |
#: ../includes/class-ure-lib.php:298
|
459 |
#, fuzzy
|
460 |
msgid "Select Role:"
|
461 |
+
msgstr "בחירת תפקיד:"
|
462 |
|
463 |
+
# wpml-name: 62f0d909f4edb78b805e4cf6747a4c36
|
|
|
|
|
|
|
464 |
#: ../includes/class-ure-lib.php:313
|
465 |
#, fuzzy
|
466 |
msgid "Delete:"
|
467 |
+
msgstr "מחיקה:"
|
468 |
|
469 |
+
# wpml-name: 42eabb45e3d2920f6a763458c3c5fffe
|
|
|
|
|
|
|
470 |
#: ../includes/class-ure-lib.php:320
|
471 |
#, fuzzy
|
472 |
msgid "Capability name (ID): "
|
473 |
+
msgstr "שם היכולת (ID): "
|
474 |
|
|
|
|
|
|
|
475 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
476 |
#: ../includes/class-ure-lib.php:434
|
477 |
+
#, fuzzy
|
478 |
msgid "Error: "
|
479 |
msgstr "שגיאה:"
|
480 |
|
|
|
|
|
|
|
481 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
482 |
#: ../includes/class-ure-lib.php:434
|
483 |
+
#, fuzzy
|
484 |
msgid "Role"
|
485 |
msgstr "סוג משתמש:"
|
486 |
|
|
|
|
|
|
|
487 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
488 |
#: ../includes/class-ure-lib.php:435
|
489 |
+
#, fuzzy
|
490 |
msgid "does not exist"
|
491 |
msgstr "לא נמצא"
|
492 |
|
|
|
|
|
|
|
493 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
494 |
#: ../includes/class-ure-lib.php:478
|
495 |
+
#, fuzzy
|
496 |
msgid "Role is updated successfully"
|
497 |
msgstr "התפקיד עודכן בהצלחה"
|
498 |
|
|
|
|
|
|
|
499 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
500 |
#: ../includes/class-ure-lib.php:480
|
501 |
+
#, fuzzy
|
502 |
msgid "Roles are updated for all network"
|
503 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
504 |
|
|
|
|
|
|
|
505 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
506 |
#: ../includes/class-ure-lib.php:486
|
507 |
+
#, fuzzy
|
508 |
msgid "Error occured during role(s) update"
|
509 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
510 |
|
|
|
|
|
|
|
511 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
512 |
#: ../includes/class-ure-lib.php:493
|
513 |
+
#, fuzzy
|
514 |
msgid "User capabilities are updated successfully"
|
515 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
516 |
|
|
|
|
|
|
|
517 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
518 |
#: ../includes/class-ure-lib.php:498
|
519 |
+
#, fuzzy
|
520 |
msgid "Error occured during user update"
|
521 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
522 |
|
|
|
|
|
|
|
523 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
524 |
#: ../includes/class-ure-lib.php:556
|
525 |
+
#, fuzzy
|
526 |
msgid "User Roles are restored to WordPress default values. "
|
527 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1444
|
530 |
+
msgid "read about"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
# wpml-name: e16363f33a765f63f2a76c656513a3c3
|
534 |
#: ../includes/class-ure-lib.php:1445
|
535 |
+
#, fuzzy
|
536 |
+
msgid "user capability"
|
537 |
+
msgstr "עריכת יכולות משתמש"
|
538 |
+
|
539 |
+
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
540 |
+
#: ../includes/class-ure-lib.php:1446
|
541 |
+
#, fuzzy
|
542 |
msgid "Help"
|
543 |
msgstr "עזרה"
|
544 |
|
|
|
|
|
|
|
545 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
546 |
+
#: ../includes/class-ure-lib.php:1914
|
547 |
+
#, fuzzy
|
548 |
msgid "Error is occur. Please check the log file."
|
549 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
550 |
|
|
|
|
|
|
|
551 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
552 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
553 |
+
#, fuzzy
|
554 |
msgid ""
|
555 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
556 |
"only!"
|
557 |
msgstr ""
|
558 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
559 |
|
560 |
+
# wpml-name: a03c6e9d8af7d3cf56f1a0be07b39345
|
561 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
562 |
+
#, fuzzy
|
563 |
msgid ""
|
564 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
565 |
"characters to it."
|
566 |
msgstr ""
|
567 |
+
"שגיאה: וורדפרס אינו תומך בשמות תפקיד מספריים (ID). הוסף לזה אותיות לטיניות."
|
568 |
|
|
|
|
|
|
|
569 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
570 |
+
#: ../includes/class-ure-lib.php:1979
|
571 |
+
#, fuzzy, php-format
|
572 |
msgid "Role %s exists already"
|
573 |
msgstr "סוג המשתמש %s כבר קיים"
|
574 |
|
|
|
|
|
|
|
575 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
576 |
+
#: ../includes/class-ure-lib.php:1994
|
577 |
+
#, fuzzy
|
578 |
msgid "Error is encountered during new role create operation"
|
579 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
580 |
|
|
|
|
|
|
|
581 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
582 |
+
#: ../includes/class-ure-lib.php:1996
|
583 |
+
#, fuzzy, php-format
|
584 |
msgid "Role %s is created successfully"
|
585 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
586 |
|
587 |
+
# wpml-name: dbf31b81647ce1a7605928da07bbc226
|
588 |
+
#: ../includes/class-ure-lib.php:2020
|
589 |
+
#, fuzzy
|
590 |
msgid "Error: Role ID is empty!"
|
591 |
+
msgstr "שגיאה: המזהה (ID) של התפקיד ריק!"
|
592 |
|
593 |
+
# wpml-name: 83403f9d7f4181a9e4ebbc259c8b2a6c
|
594 |
+
#: ../includes/class-ure-lib.php:2038
|
595 |
+
#, fuzzy
|
596 |
msgid "Error: Empty role display name is not allowed."
|
597 |
+
msgstr "שגיאה: אסור להשאיר את שם התצוגה של התפקיד ריק."
|
598 |
|
599 |
+
# wpml-name: f093e6cb4b2e171efb2f25d19479fdd0
|
600 |
+
#: ../includes/class-ure-lib.php:2045
|
|
|
|
|
|
|
601 |
#, fuzzy, php-format
|
602 |
msgid "Role %s does not exists"
|
603 |
+
msgstr "התפקיד %s אינו קיים"
|
604 |
|
605 |
+
# wpml-name: b0125015a614e12676c361c966b6059b
|
606 |
+
#: ../includes/class-ure-lib.php:2053
|
|
|
|
|
|
|
607 |
#, fuzzy, php-format
|
608 |
msgid "Role %s is renamed to %s successfully"
|
609 |
+
msgstr "התפקיד %s iשינה את שמו ל %s בהצלחה"
|
610 |
|
|
|
|
|
|
|
611 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
612 |
+
#: ../includes/class-ure-lib.php:2126
|
613 |
+
#, fuzzy
|
614 |
msgid "Error encountered during role delete operation"
|
615 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
616 |
|
617 |
+
# wpml-name: 0eccd6e6cff8dd08f231a324a0c43d10
|
618 |
+
#: ../includes/class-ure-lib.php:2128
|
619 |
+
#, fuzzy
|
|
|
|
|
620 |
msgid "Unused roles are deleted successfully"
|
621 |
+
msgstr "התפקידים שאינם בשימוש נמחקו בהצלחה"
|
622 |
|
|
|
|
|
|
|
623 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
624 |
+
#: ../includes/class-ure-lib.php:2130
|
625 |
+
#, fuzzy, php-format
|
626 |
msgid "Role %s is deleted successfully"
|
627 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
628 |
|
|
|
|
|
|
|
629 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
630 |
+
#: ../includes/class-ure-lib.php:2155
|
631 |
+
#, fuzzy
|
632 |
msgid "Error encountered during default role change operation"
|
633 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
634 |
|
|
|
|
|
|
|
635 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
636 |
+
#: ../includes/class-ure-lib.php:2161
|
637 |
+
#, fuzzy, php-format
|
638 |
msgid "Default role for new users is set to %s successfully"
|
639 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
640 |
|
|
|
|
|
|
|
641 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
642 |
+
#: ../includes/class-ure-lib.php:2180
|
643 |
+
#, fuzzy
|
644 |
msgid "Editor"
|
645 |
msgstr "עורך"
|
646 |
|
|
|
|
|
|
|
647 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
648 |
+
#: ../includes/class-ure-lib.php:2181
|
649 |
+
#, fuzzy
|
650 |
msgid "Author"
|
651 |
msgstr "כותב"
|
652 |
|
|
|
|
|
|
|
653 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
654 |
+
#: ../includes/class-ure-lib.php:2182
|
655 |
+
#, fuzzy
|
656 |
msgid "Contributor"
|
657 |
msgstr "תורם"
|
658 |
|
|
|
|
|
|
|
659 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
660 |
+
#: ../includes/class-ure-lib.php:2183
|
661 |
+
#, fuzzy
|
662 |
msgid "Subscriber"
|
663 |
msgstr "מנוי"
|
664 |
|
|
|
|
|
|
|
665 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
666 |
+
#: ../includes/class-ure-lib.php:2185
|
667 |
+
#, fuzzy
|
668 |
msgid "Switch themes"
|
669 |
msgstr "החלפת תבניות"
|
670 |
|
|
|
|
|
|
|
671 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
672 |
+
#: ../includes/class-ure-lib.php:2186
|
673 |
+
#, fuzzy
|
674 |
msgid "Edit themes"
|
675 |
msgstr "עריכת תבניות"
|
676 |
|
|
|
|
|
|
|
677 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
678 |
+
#: ../includes/class-ure-lib.php:2187
|
679 |
+
#, fuzzy
|
680 |
msgid "Activate plugins"
|
681 |
msgstr "הפעלת תוספים"
|
682 |
|
|
|
|
|
|
|
683 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
684 |
+
#: ../includes/class-ure-lib.php:2188
|
685 |
+
#, fuzzy
|
686 |
msgid "Edit plugins"
|
687 |
msgstr "עריכת תוספים"
|
688 |
|
|
|
|
|
|
|
689 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
690 |
+
#: ../includes/class-ure-lib.php:2189
|
691 |
+
#, fuzzy
|
692 |
msgid "Edit users"
|
693 |
msgstr "עריכת משתמשים"
|
694 |
|
|
|
|
|
|
|
695 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
696 |
+
#: ../includes/class-ure-lib.php:2190
|
697 |
+
#, fuzzy
|
698 |
msgid "Edit files"
|
699 |
msgstr "עריכת קבצים"
|
700 |
|
|
|
|
|
|
|
701 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
702 |
+
#: ../includes/class-ure-lib.php:2191
|
703 |
+
#, fuzzy
|
704 |
msgid "Manage options"
|
705 |
msgstr "ניהול אפשרויות אתר"
|
706 |
|
|
|
|
|
|
|
707 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
708 |
+
#: ../includes/class-ure-lib.php:2192
|
709 |
+
#, fuzzy
|
710 |
msgid "Moderate comments"
|
711 |
msgstr "ניהול תגובות"
|
712 |
|
|
|
|
|
|
|
713 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
714 |
+
#: ../includes/class-ure-lib.php:2193
|
715 |
+
#, fuzzy
|
716 |
msgid "Manage categories"
|
717 |
msgstr "ניהול קטגוריות"
|
718 |
|
|
|
|
|
|
|
719 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
720 |
+
#: ../includes/class-ure-lib.php:2194
|
721 |
+
#, fuzzy
|
722 |
msgid "Manage links"
|
723 |
msgstr "ניהול קישורים"
|
724 |
|
|
|
|
|
|
|
725 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
726 |
+
#: ../includes/class-ure-lib.php:2195
|
727 |
+
#, fuzzy
|
728 |
msgid "Upload files"
|
729 |
msgstr "העלאת קבצים"
|
730 |
|
|
|
|
|
|
|
731 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
732 |
+
#: ../includes/class-ure-lib.php:2196
|
733 |
+
#, fuzzy
|
734 |
msgid "Import"
|
735 |
msgstr "יבוא"
|
736 |
|
|
|
|
|
|
|
737 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
738 |
+
#: ../includes/class-ure-lib.php:2197
|
739 |
+
#, fuzzy
|
740 |
msgid "Unfiltered html"
|
741 |
msgstr "עריכת HTML"
|
742 |
|
|
|
|
|
|
|
743 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
744 |
+
#: ../includes/class-ure-lib.php:2198
|
745 |
+
#, fuzzy
|
746 |
msgid "Edit posts"
|
747 |
msgstr "עריכת פוסטים"
|
748 |
|
|
|
|
|
|
|
749 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
750 |
+
#: ../includes/class-ure-lib.php:2199
|
751 |
+
#, fuzzy
|
752 |
msgid "Edit others posts"
|
753 |
msgstr "עריכת פוסטים של אחרים"
|
754 |
|
|
|
|
|
|
|
755 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
756 |
+
#: ../includes/class-ure-lib.php:2200
|
757 |
+
#, fuzzy
|
758 |
msgid "Edit published posts"
|
759 |
msgstr "עריכת פוסטים שפורסמו"
|
760 |
|
|
|
|
|
|
|
761 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
762 |
+
#: ../includes/class-ure-lib.php:2201
|
763 |
+
#, fuzzy
|
764 |
msgid "Publish posts"
|
765 |
msgstr "פוסטים שפורסמו"
|
766 |
|
|
|
|
|
|
|
767 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
768 |
+
#: ../includes/class-ure-lib.php:2202
|
769 |
+
#, fuzzy
|
770 |
msgid "Edit pages"
|
771 |
msgstr "עריכת עמודים"
|
772 |
|
|
|
|
|
|
|
773 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
774 |
+
#: ../includes/class-ure-lib.php:2203
|
775 |
+
#, fuzzy
|
776 |
msgid "Read"
|
777 |
msgstr "קורא"
|
778 |
|
|
|
|
|
|
|
779 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
780 |
+
#: ../includes/class-ure-lib.php:2204
|
781 |
+
#, fuzzy
|
782 |
msgid "Level 10"
|
783 |
msgstr "דרגה 10"
|
784 |
|
|
|
|
|
|
|
785 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
786 |
+
#: ../includes/class-ure-lib.php:2205
|
787 |
+
#, fuzzy
|
788 |
msgid "Level 9"
|
789 |
msgstr "דרגה 9"
|
790 |
|
|
|
|
|
|
|
791 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
792 |
+
#: ../includes/class-ure-lib.php:2206
|
793 |
+
#, fuzzy
|
794 |
msgid "Level 8"
|
795 |
msgstr "דרגה 8"
|
796 |
|
|
|
|
|
|
|
797 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
798 |
+
#: ../includes/class-ure-lib.php:2207
|
799 |
+
#, fuzzy
|
800 |
msgid "Level 7"
|
801 |
msgstr "דרגה 7"
|
802 |
|
|
|
|
|
|
|
803 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
804 |
+
#: ../includes/class-ure-lib.php:2208
|
805 |
+
#, fuzzy
|
806 |
msgid "Level 6"
|
807 |
msgstr "דרגה 6"
|
808 |
|
|
|
|
|
|
|
809 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
810 |
+
#: ../includes/class-ure-lib.php:2209
|
811 |
+
#, fuzzy
|
812 |
msgid "Level 5"
|
813 |
msgstr "דרגה 5"
|
814 |
|
|
|
|
|
|
|
815 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
816 |
+
#: ../includes/class-ure-lib.php:2210
|
817 |
+
#, fuzzy
|
818 |
msgid "Level 4"
|
819 |
msgstr "דרגה 4"
|
820 |
|
|
|
|
|
|
|
821 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
822 |
+
#: ../includes/class-ure-lib.php:2211
|
823 |
+
#, fuzzy
|
824 |
msgid "Level 3"
|
825 |
msgstr "דרגה 3"
|
826 |
|
|
|
|
|
|
|
827 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
828 |
+
#: ../includes/class-ure-lib.php:2212
|
829 |
+
#, fuzzy
|
830 |
msgid "Level 2"
|
831 |
msgstr "דרגה 2"
|
832 |
|
|
|
|
|
|
|
833 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
834 |
+
#: ../includes/class-ure-lib.php:2213
|
835 |
+
#, fuzzy
|
836 |
msgid "Level 1"
|
837 |
msgstr "דרגה 1"
|
838 |
|
|
|
|
|
|
|
839 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
840 |
+
#: ../includes/class-ure-lib.php:2214
|
841 |
+
#, fuzzy
|
842 |
msgid "Level 0"
|
843 |
msgstr "דרגה 0"
|
844 |
|
|
|
|
|
|
|
845 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
846 |
+
#: ../includes/class-ure-lib.php:2215
|
847 |
+
#, fuzzy
|
848 |
msgid "Edit others pages"
|
849 |
msgstr "עריכת דפים של אחרים"
|
850 |
|
|
|
|
|
|
|
851 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
852 |
+
#: ../includes/class-ure-lib.php:2216
|
853 |
+
#, fuzzy
|
854 |
msgid "Edit published pages"
|
855 |
msgstr "עריכת דפים שפורסמו"
|
856 |
|
|
|
|
|
|
|
857 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
858 |
+
#: ../includes/class-ure-lib.php:2217
|
859 |
+
#, fuzzy
|
860 |
msgid "Publish pages"
|
861 |
msgstr "פרסום דפים"
|
862 |
|
|
|
|
|
|
|
863 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
864 |
+
#: ../includes/class-ure-lib.php:2218
|
865 |
+
#, fuzzy
|
866 |
msgid "Delete pages"
|
867 |
msgstr "מחיקת דפים"
|
868 |
|
|
|
|
|
|
|
869 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
870 |
+
#: ../includes/class-ure-lib.php:2219
|
871 |
+
#, fuzzy
|
872 |
msgid "Delete others pages"
|
873 |
msgstr "מחיקת דפים של אחרים"
|
874 |
|
|
|
|
|
|
|
875 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
876 |
+
#: ../includes/class-ure-lib.php:2220
|
877 |
+
#, fuzzy
|
878 |
msgid "Delete published pages"
|
879 |
msgstr "מחיקת דפים שפורסמו"
|
880 |
|
|
|
|
|
|
|
881 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
882 |
+
#: ../includes/class-ure-lib.php:2221
|
883 |
+
#, fuzzy
|
884 |
msgid "Delete posts"
|
885 |
msgstr "מחיקת פוסטים"
|
886 |
|
|
|
|
|
|
|
887 |
# wpml-name: c0496287732814df690c8966027a58d6
|
888 |
+
#: ../includes/class-ure-lib.php:2222
|
889 |
+
#, fuzzy
|
890 |
msgid "Delete others posts"
|
891 |
msgstr "מחיקת פוסטים של אחרים"
|
892 |
|
|
|
|
|
|
|
893 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
894 |
+
#: ../includes/class-ure-lib.php:2223
|
895 |
+
#, fuzzy
|
896 |
msgid "Delete published posts"
|
897 |
msgstr "מחיקת פוסטים שפורסמו"
|
898 |
|
|
|
|
|
|
|
899 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
900 |
+
#: ../includes/class-ure-lib.php:2224
|
901 |
+
#, fuzzy
|
902 |
msgid "Delete private posts"
|
903 |
msgstr "מחיקת פוסטים פרטיים"
|
904 |
|
|
|
|
|
|
|
905 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
906 |
+
#: ../includes/class-ure-lib.php:2225
|
907 |
+
#, fuzzy
|
908 |
msgid "Edit private posts"
|
909 |
msgstr "עריכת פוסטים פרטיים"
|
910 |
|
|
|
|
|
|
|
911 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
912 |
+
#: ../includes/class-ure-lib.php:2226
|
913 |
+
#, fuzzy
|
914 |
msgid "Read private posts"
|
915 |
msgstr "קריאת פוסטים פרטיים"
|
916 |
|
|
|
|
|
|
|
917 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
918 |
+
#: ../includes/class-ure-lib.php:2227
|
919 |
+
#, fuzzy
|
920 |
msgid "Delete private pages"
|
921 |
msgstr "מחיקת עמודים פרטיים"
|
922 |
|
|
|
|
|
|
|
923 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
924 |
+
#: ../includes/class-ure-lib.php:2228
|
925 |
+
#, fuzzy
|
926 |
msgid "Edit private pages"
|
927 |
msgstr "מחיקת עמודים פרטיים"
|
928 |
|
|
|
|
|
|
|
929 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
930 |
+
#: ../includes/class-ure-lib.php:2229
|
931 |
+
#, fuzzy
|
932 |
msgid "Read private pages"
|
933 |
msgstr "קריאת עמודים פרטיים"
|
934 |
|
|
|
|
|
|
|
935 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
936 |
+
#: ../includes/class-ure-lib.php:2230
|
937 |
+
#, fuzzy
|
938 |
msgid "Delete users"
|
939 |
msgstr "מחיקת משתמשים"
|
940 |
|
|
|
|
|
|
|
941 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
942 |
+
#: ../includes/class-ure-lib.php:2231
|
943 |
+
#, fuzzy
|
944 |
msgid "Create users"
|
945 |
msgstr "יצירת משתמשים"
|
946 |
|
|
|
|
|
|
|
947 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
948 |
+
#: ../includes/class-ure-lib.php:2232
|
949 |
+
#, fuzzy
|
950 |
msgid "Unfiltered upload"
|
951 |
msgstr "העלאת קבצים חופשית"
|
952 |
|
|
|
|
|
|
|
953 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
954 |
+
#: ../includes/class-ure-lib.php:2233
|
955 |
+
#, fuzzy
|
956 |
msgid "Edit dashboard"
|
957 |
msgstr "שינוי לוח הבקרה"
|
958 |
|
|
|
|
|
|
|
959 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
960 |
+
#: ../includes/class-ure-lib.php:2234
|
961 |
+
#, fuzzy
|
962 |
msgid "Update plugins"
|
963 |
msgstr "עדכון תוספים"
|
964 |
|
|
|
|
|
|
|
965 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
966 |
+
#: ../includes/class-ure-lib.php:2235
|
967 |
+
#, fuzzy
|
968 |
msgid "Delete plugins"
|
969 |
msgstr "מחיקת תוספים"
|
970 |
|
|
|
|
|
|
|
971 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
972 |
+
#: ../includes/class-ure-lib.php:2236
|
973 |
+
#, fuzzy
|
974 |
msgid "Install plugins"
|
975 |
msgstr "התקנת תוספים"
|
976 |
|
|
|
|
|
|
|
977 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
978 |
+
#: ../includes/class-ure-lib.php:2237
|
979 |
+
#, fuzzy
|
980 |
msgid "Update themes"
|
981 |
msgstr "עדכון תבניות"
|
982 |
|
|
|
|
|
|
|
983 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
984 |
+
#: ../includes/class-ure-lib.php:2238
|
985 |
+
#, fuzzy
|
986 |
msgid "Install themes"
|
987 |
msgstr "התקנת תבניות חדשות"
|
988 |
|
|
|
|
|
|
|
989 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
990 |
+
#: ../includes/class-ure-lib.php:2239
|
991 |
+
#, fuzzy
|
992 |
msgid "Update core"
|
993 |
msgstr "עדכון וורדפרס"
|
994 |
|
|
|
|
|
|
|
995 |
# wpml-name: f923f903857a5387d3db70494e074632
|
996 |
+
#: ../includes/class-ure-lib.php:2240
|
997 |
+
#, fuzzy
|
998 |
msgid "List users"
|
999 |
msgstr "בצפייה במשתמשים"
|
1000 |
|
|
|
|
|
|
|
1001 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1002 |
+
#: ../includes/class-ure-lib.php:2241
|
1003 |
+
#, fuzzy
|
1004 |
msgid "Remove users"
|
1005 |
msgstr "הסרת משתמשים"
|
1006 |
|
|
|
|
|
|
|
1007 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1008 |
+
#: ../includes/class-ure-lib.php:2242
|
1009 |
+
#, fuzzy
|
1010 |
msgid "Add users"
|
1011 |
msgstr "הוספת משתמשים"
|
1012 |
|
|
|
|
|
|
|
1013 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1014 |
+
#: ../includes/class-ure-lib.php:2243
|
1015 |
+
#, fuzzy
|
1016 |
msgid "Promote users"
|
1017 |
msgstr "שינוי משתמשים"
|
1018 |
|
|
|
|
|
|
|
1019 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1020 |
+
#: ../includes/class-ure-lib.php:2244
|
1021 |
+
#, fuzzy
|
1022 |
msgid "Edit theme options"
|
1023 |
msgstr "עריכת אפשרויות התבנית"
|
1024 |
|
|
|
|
|
|
|
1025 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1026 |
+
#: ../includes/class-ure-lib.php:2245
|
1027 |
+
#, fuzzy
|
1028 |
msgid "Delete themes"
|
1029 |
msgstr "מחיקת תבניות"
|
1030 |
|
|
|
|
|
|
|
1031 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1032 |
+
#: ../includes/class-ure-lib.php:2246
|
1033 |
+
#, fuzzy
|
1034 |
msgid "Export"
|
1035 |
msgstr "ייצוא תוכן"
|
1036 |
|
|
|
|
|
|
|
1037 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1038 |
+
#: ../includes/class-ure-lib.php:2369
|
1039 |
+
#, fuzzy
|
1040 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1041 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1042 |
|
|
|
|
|
|
|
1043 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1044 |
+
#: ../includes/class-ure-lib.php:2382
|
1045 |
+
#, fuzzy, php-format
|
1046 |
msgid "Capability %s is added successfully"
|
1047 |
msgstr "היכולת %s נוספה בהצלחה"
|
1048 |
|
|
|
|
|
|
|
1049 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1050 |
+
#: ../includes/class-ure-lib.php:2384
|
1051 |
+
#, fuzzy, php-format
|
1052 |
msgid "Capability %s exists already"
|
1053 |
msgstr "כבר קיימת יכולת בשם %s"
|
1054 |
|
|
|
|
|
|
|
1055 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1056 |
+
#: ../includes/class-ure-lib.php:2413
|
1057 |
+
#, fuzzy, php-format
|
1058 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1059 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1060 |
|
|
|
|
|
|
|
1061 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1062 |
+
#: ../includes/class-ure-lib.php:2432
|
1063 |
+
#, fuzzy, php-format
|
1064 |
msgid "Capability %s is removed successfully"
|
1065 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1066 |
|
1067 |
+
# wpml-name: 9d290d3434589e33be3d2cad4f8323ec
|
1068 |
+
#: ../includes/class-ure-lib.php:2536
|
1069 |
+
#, fuzzy
|
1070 |
msgid "Version:"
|
1071 |
+
msgstr "גרסה:"
|
1072 |
|
|
|
|
|
|
|
1073 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1074 |
+
#: ../includes/class-ure-lib.php:2537
|
1075 |
+
#, fuzzy
|
1076 |
msgid "Author's website"
|
1077 |
msgstr "אתר היוצר"
|
1078 |
|
|
|
|
|
|
|
1079 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1080 |
+
#: ../includes/class-ure-lib.php:2538
|
1081 |
+
#, fuzzy
|
1082 |
msgid "Plugin webpage"
|
1083 |
msgstr "דף התוסף"
|
1084 |
|
1085 |
+
# wpml-name: accf3af923a079190cc20507285fd1e8
|
1086 |
+
#: ../includes/class-ure-lib.php:2539
|
|
|
|
|
|
|
1087 |
#, fuzzy
|
1088 |
msgid "Plugin download"
|
1089 |
+
msgstr "הורדת התוסף"
|
1090 |
|
|
|
|
|
|
|
1091 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1092 |
+
#: ../includes/class-ure-lib.php:2541
|
1093 |
+
#, fuzzy
|
1094 |
msgid "FAQ"
|
1095 |
msgstr "שאלות נפוצות"
|
1096 |
|
|
|
|
|
|
|
1097 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1098 |
+
#: ../includes/class-ure-lib.php:2589
|
1099 |
+
#, fuzzy
|
1100 |
msgid "None"
|
1101 |
msgstr "תרום"
|
1102 |
|
1103 |
+
# wpml-name: fb7b42559c6eb7c5e84ae0ad63c315d2
|
1104 |
+
#: ../includes/class-ure-lib.php:2616
|
1105 |
+
#, fuzzy
|
|
|
|
|
1106 |
msgid "Delete All Unused Roles"
|
1107 |
+
msgstr "מחק את כל התפקידים שאינם בשימוש"
|
1108 |
|
1109 |
+
#: ../includes/class-ure-lib.php:2640
|
1110 |
msgid "— No role for this site —"
|
1111 |
msgstr ""
|
1112 |
|
|
|
|
|
|
|
1113 |
# wpml-name: 5213962fd38769a637909d6bc2a37197
|
1114 |
#: ../includes/ure-user-edit.php:32
|
1115 |
+
#, fuzzy
|
1116 |
msgid "Network Super Admin"
|
1117 |
msgstr "מנהל-על של רשת"
|
1118 |
|
|
|
|
|
|
|
1119 |
# wpml-name: 3c4a4bfb7afa015a22eee9e5b9b098e2
|
1120 |
#: ../includes/ure-user-edit.php:35
|
1121 |
+
#, fuzzy
|
1122 |
msgid "Change capabilities for user"
|
1123 |
msgstr "שינוי יכולות המשתמש"
|
1124 |
|
1125 |
+
# wpml-name: 670867664b460254a4dfcb782c811472
|
1126 |
#: ../includes/ure-user-edit.php:72
|
1127 |
+
#, fuzzy
|
1128 |
msgid "Primary Role:"
|
1129 |
+
msgstr "תפקיד עיקרי:"
|
1130 |
|
1131 |
+
# wpml-name: 918b62d985dd5ef7af537376c0a8273b
|
1132 |
#: ../includes/ure-user-edit.php:82
|
1133 |
+
#, fuzzy
|
1134 |
msgid "bbPress Role:"
|
1135 |
+
msgstr "תפקיד bbPress:"
|
1136 |
|
1137 |
+
# wpml-name: 3ebb5c3609cf2634c669e655a7bfb162
|
|
|
|
|
|
|
1138 |
#: ../includes/ure-user-edit.php:92
|
1139 |
#, fuzzy
|
1140 |
msgid "Other Roles:"
|
1141 |
+
msgstr "תפקידים אחרים:"
|
1142 |
+
|
1143 |
+
# wpml-name: ee7816d892f54d4aa67456e2486d8a09
|
1144 |
+
#: ../includes/class-ure-screen-help.php:12
|
1145 |
+
#: ../includes/class-ure-screen-help.php:41
|
1146 |
+
#: ../includes/class-ure-screen-help.php:60
|
1147 |
+
#: ../includes/class-ure-screen-help.php:79
|
1148 |
+
#, fuzzy
|
1149 |
+
msgid "User Role Editor Options page help"
|
1150 |
+
msgstr "אפשרויות User Role Editor"
|
1151 |
|
1152 |
#: ../includes/class-ure-screen-help.php:16
|
1153 |
msgid ""
|
1185 |
"users list with role \"No rights\" at the separate tab then."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
# wpml-name: 31440ac9be0558c6142aaef5938adae9
|
1189 |
#: ../includes/class-ure-screen-help.php:63
|
1190 |
+
#, fuzzy
|
1191 |
msgid "Other default roles for new registered user"
|
1192 |
+
msgstr "תפקידי ברירת מחדל אחרים למשתמש רשום חדש"
|
1193 |
|
1194 |
+
# wpml-name: 41b92726cf0352610f9cab72914f101f
|
1195 |
#: ../includes/class-ure-screen-help.php:64
|
1196 |
+
#, fuzzy
|
1197 |
msgid ""
|
1198 |
"select roles below to assign them to the new user automatically as an "
|
1199 |
"addition to the primary role. Note for multisite environment: take into "
|
1200 |
"account that other default roles should exist at the site, in order to be "
|
1201 |
"assigned to the new registered users."
|
1202 |
msgstr ""
|
1203 |
+
"הערה לאתר רשת: נא לקחת בחשבון שתפקידי ברירת מחדל אחרים צריכים להיות קיימים "
|
1204 |
+
"באתר, כדי להקצות למשתמשים נרשמים חדשים."
|
1205 |
|
1206 |
+
# wpml-name: d6080c04e85946f0eace45b5d1be4672
|
1207 |
#: ../includes/class-ure-screen-help.php:82
|
1208 |
+
#, fuzzy
|
1209 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1210 |
+
msgstr "אפשר ללמנהלי משנה ליצור, לערוך ולמחוק משתמשים"
|
1211 |
|
1212 |
#: ../includes/class-ure-screen-help.php:83
|
1213 |
msgid ""
|
1215 |
"multi-site by default. Turn this option on in order to remove this "
|
1216 |
"limitation."
|
1217 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure-hu_HU.mo
CHANGED
Binary file
|
lang/ure-hu_HU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -99,20 +99,20 @@ msgstr ""
|
|
99 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
100 |
"felhasználókat"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "No rights"
|
108 |
msgstr "Nincs jogosultság"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Új szerepkör megadása"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
|
118 |
|
@@ -125,13 +125,13 @@ msgid "Settings"
|
|
125 |
msgstr "Beállítások"
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:569
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "Changelog"
|
130 |
msgstr "Változások naplója"
|
131 |
|
132 |
#: ../includes/class-user-role-editor.php:619
|
133 |
#: ../includes/class-user-role-editor.php:648
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "Szerepkör szerkesztő"
|
@@ -146,54 +146,54 @@ msgstr "Szerepkör szerkesztő beállításai frissítve"
|
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Alap szerepkörök frissítve"
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr ""
|
154 |
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
-
#: ../includes/class-ure-lib.php:
|
158 |
-
#: ../includes/class-ure-lib.php:
|
159 |
-
#: ../includes/class-ure-lib.php:
|
160 |
msgid "Insufficient permissions to work with User Role Editor"
|
161 |
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Select All"
|
165 |
msgstr "Összeset kijelöl"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Unselect All"
|
169 |
msgstr "Kijelölés megszünt."
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Reverse"
|
173 |
msgstr "Fordított kijelölés"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid "Update"
|
177 |
msgstr "Frissítés"
|
178 |
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
msgid "Please confirm permissions update"
|
181 |
msgstr "Képességek frissítésének megersőítése"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid "Add New Role"
|
185 |
msgstr "Új szerepkör létrehozása"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
msgid "Rename Role"
|
190 |
msgstr "Szerepkör átnevezés"
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid " Role name (ID) can not be empty!"
|
194 |
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid ""
|
198 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
"only!"
|
@@ -201,7 +201,7 @@ msgstr ""
|
|
201 |
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
202 |
"aláhúzást tartalmazhat."
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid ""
|
206 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
"it."
|
@@ -209,38 +209,38 @@ msgstr ""
|
|
209 |
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
210 |
"bele legalább egy latin betű."
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Add Role"
|
214 |
msgstr "Új szerepkör"
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Delete Role"
|
218 |
msgstr "Szerepkör törlése"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Cancel"
|
222 |
msgstr "Mégse"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
msgid "Add Capability"
|
226 |
msgstr "Új képesség"
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
msgid "Delete Capability"
|
231 |
msgstr "Képesség törlése"
|
232 |
|
233 |
-
#: ../includes/class-user-role-editor.php:
|
234 |
msgid "Reset"
|
235 |
msgstr "Alaphelyzet"
|
236 |
|
237 |
-
#: ../includes/class-user-role-editor.php:
|
238 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
239 |
msgstr ""
|
240 |
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
241 |
"újra."
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid ""
|
245 |
"If any plugins have changed capabilities in any way upon installation (such "
|
246 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -248,7 +248,7 @@ msgstr ""
|
|
248 |
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
249 |
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid ""
|
253 |
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
"go to"
|
@@ -256,19 +256,19 @@ msgstr ""
|
|
256 |
"További információ a képességek módosításainak visszavonásáról és "
|
257 |
"helyreállításáról"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Continue?"
|
261 |
msgstr "Folytassuk?"
|
262 |
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid "Default Role"
|
265 |
msgstr "Alap szerepkör"
|
266 |
|
267 |
-
#: ../includes/class-user-role-editor.php:
|
268 |
msgid "Set New Default Role"
|
269 |
msgstr "Új alap szerepkör beállítása"
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid ""
|
273 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
"or other custom code"
|
@@ -276,11 +276,11 @@ msgstr ""
|
|
276 |
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
277 |
"bővítmény vagy egyedi kód."
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid " Capability name (ID) can not be empty!"
|
281 |
msgstr "A képesség név (azonosító) nem lehet üres."
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
msgid ""
|
285 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
"underscore only!"
|
@@ -288,12 +288,12 @@ msgstr ""
|
|
288 |
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
289 |
"aláhúzásból állhat."
|
290 |
|
291 |
-
#: ../includes/class-user-role-editor.php:
|
292 |
-
#: ../includes/class-user-role-editor.php:
|
293 |
msgid "Other Roles"
|
294 |
msgstr "Más szerepkörök"
|
295 |
|
296 |
-
#: ../includes/class-user-role-editor.php:
|
297 |
msgid "Edit"
|
298 |
msgstr "Szerkeszt"
|
299 |
|
@@ -390,15 +390,23 @@ msgstr "Hiba történt a felhasználó frissítése során"
|
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
392 |
|
|
|
|
|
|
|
|
|
393 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
394 |
msgid "Help"
|
395 |
msgstr "Súgó"
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
@@ -406,7 +414,7 @@ msgstr ""
|
|
406 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
407 |
"aláhúzásból állhat."
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
@@ -414,377 +422,377 @@ msgstr ""
|
|
414 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
415 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
#, php-format
|
419 |
msgid "Role %s exists already"
|
420 |
msgstr "%s szerepkör már létezik"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Error is encountered during new role create operation"
|
424 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, php-format
|
428 |
msgid "Role %s is created successfully"
|
429 |
msgstr "%s szerepkör sikeresen létrehozva"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error: Role ID is empty!"
|
433 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Error: Empty role display name is not allowed."
|
437 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
#, php-format
|
441 |
msgid "Role %s does not exists"
|
442 |
msgstr "%s szerepkör nem létezik"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
#, php-format
|
446 |
msgid "Role %s is renamed to %s successfully"
|
447 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Error encountered during role delete operation"
|
451 |
msgstr "Hiba történt a szerepkör törlése során."
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Unused roles are deleted successfully"
|
455 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
#, php-format
|
459 |
msgid "Role %s is deleted successfully"
|
460 |
msgstr "%s szerepkör sikeresen törölve lett."
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Error encountered during default role change operation"
|
464 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
#, php-format
|
468 |
msgid "Default role for new users is set to %s successfully"
|
469 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Editor"
|
473 |
msgstr "Szerkesztő"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Author"
|
477 |
msgstr "Szerző"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Contributor"
|
481 |
msgstr "Közreműködő"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Subscriber"
|
485 |
msgstr "Feliratkozó"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Switch themes"
|
489 |
msgstr "Sablon kiválasztása"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit themes"
|
493 |
msgstr "Sablonok szerkesztése"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Activate plugins"
|
497 |
msgstr "Bővítmény bekapcsolása"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit plugins"
|
501 |
msgstr "Bővítmények szerkesztése"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Edit users"
|
505 |
msgstr "Felhasználók szerkesztése"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit files"
|
509 |
msgstr "Fájlok szerkesztése"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage options"
|
513 |
msgstr "Beállítások kezelése"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Moderate comments"
|
517 |
msgstr "Hozzászólások moderálása"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Manage categories"
|
521 |
msgstr "Kategóriák kezelése"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Manage links"
|
525 |
msgstr "Hivatkozások kezelése"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Upload files"
|
529 |
msgstr "Fájlok feltöltése"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Import"
|
533 |
msgstr "Importálás"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Unfiltered html"
|
537 |
msgstr "Szűretlen HTML"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit posts"
|
541 |
msgstr "Bejegyzések szerkesztése"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit others posts"
|
545 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit published posts"
|
549 |
msgstr "Közzétett bejegyzések szerkesztése"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Publish posts"
|
553 |
msgstr "Bejegyzések közzététele"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Edit pages"
|
557 |
msgstr "Oldalak szerkesztése"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Read"
|
561 |
msgstr "Olvasás"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 10"
|
565 |
msgstr "10. szint"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 9"
|
569 |
msgstr "9. szint"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 8"
|
573 |
msgstr "8. szint"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 7"
|
577 |
msgstr "7. szint"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 6"
|
581 |
msgstr "6. szint"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 5"
|
585 |
msgstr "5. szint"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 4"
|
589 |
msgstr "4. szint"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 3"
|
593 |
msgstr "3. szint"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 2"
|
597 |
msgstr "2. szint"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 1"
|
601 |
msgstr "1. szint"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Level 0"
|
605 |
msgstr "0. szint"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Edit others pages"
|
609 |
msgstr "Mások oldalainak szerkesztése"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Edit published pages"
|
613 |
msgstr "Közzétett oldalak szerkesztése"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Publish pages"
|
617 |
msgstr "Oldalak közzététele"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete pages"
|
621 |
msgstr "Oldalak törlése"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete others pages"
|
625 |
msgstr "Mások oldalainak törlése"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete published pages"
|
629 |
msgstr "Közzétett oldalak törlése"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete posts"
|
633 |
msgstr "Bejegyzések törlése"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete others posts"
|
637 |
msgstr "Mások bejegyzéseinek törlése"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete published posts"
|
641 |
msgstr "Közzétett bejegyzések törlése"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete private posts"
|
645 |
msgstr "Privát bejegyzések törlése"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Edit private posts"
|
649 |
msgstr "Privát bejegyzések szerkesztése"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read private posts"
|
653 |
msgstr "Privát bejegyzések olvasása"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Delete private pages"
|
657 |
msgstr "Privát oldalak törlése"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Edit private pages"
|
661 |
msgstr "Privát oldalak szerkesztése"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Read private pages"
|
665 |
msgstr "Privát oldalak olvasása"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Delete users"
|
669 |
msgstr "Felhasználók törlése"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Create users"
|
673 |
msgstr "Felhasználók létrehozása"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Unfiltered upload"
|
677 |
msgstr "Szűretlen feltöltés"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Edit dashboard"
|
681 |
msgstr "Vezérlőpult szerkesztése"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Update plugins"
|
685 |
msgstr "Bővítmények frissítése"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Delete plugins"
|
689 |
msgstr "Bővítmények törlése"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install plugins"
|
693 |
msgstr "Bővítmények telepítése"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update themes"
|
697 |
msgstr "Sablonok frissítése"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Install themes"
|
701 |
msgstr "Sablonok telepítése"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Update core"
|
705 |
msgstr "Mag frissítése"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "List users"
|
709 |
msgstr "Felhasználók listázása"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Remove users"
|
713 |
msgstr "Felhasználók törlése"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Add users"
|
717 |
msgstr "Felhasználók hozzáadása"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Promote users"
|
721 |
msgstr "Felhasználók előléptetése"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Edit theme options"
|
725 |
msgstr "Sablon beállítások módosítása"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Delete themes"
|
729 |
msgstr "Sablonok törlése"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Export"
|
733 |
msgstr "Exportálás"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
737 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
#, php-format
|
741 |
msgid "Capability %s is added successfully"
|
742 |
msgstr "%s képesség sikeresen hozzáadva"
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
#, php-format
|
746 |
msgid "Capability %s exists already"
|
747 |
msgstr "%s képesség már létezik"
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
#, php-format
|
751 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
752 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
753 |
|
754 |
-
#: ../includes/class-ure-lib.php:
|
755 |
#, php-format
|
756 |
msgid "Capability %s is removed successfully"
|
757 |
msgstr "%s képesség sikeresen törölve"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Version:"
|
761 |
msgstr "Verzió:"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Author's website"
|
765 |
msgstr "Szerző weboldala"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Plugin webpage"
|
769 |
msgstr "Bővítmény weboldala"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Plugin download"
|
773 |
msgstr "Bővítmény letöltése"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "FAQ"
|
777 |
msgstr "GyIK"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "None"
|
781 |
msgstr "Nincs"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
784 |
msgid "Delete All Unused Roles"
|
785 |
msgstr "Minden nem használt szerepkör törlése"
|
786 |
|
787 |
-
#: ../includes/class-ure-lib.php:
|
788 |
msgid "— No role for this site —"
|
789 |
msgstr "— Nincs szerepköre ezen az oldalon —"
|
790 |
|
@@ -808,6 +816,13 @@ msgstr "bbPress szerepkör:"
|
|
808 |
msgid "Other Roles:"
|
809 |
msgstr "Más szerepkörök:"
|
810 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
#: ../includes/class-ure-screen-help.php:16
|
812 |
msgid ""
|
813 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 12:09+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: \n"
|
99 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
100 |
"felhasználókat"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:234
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Szerepkör nélküli felhasználók szerepkörének megadása"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:235
|
107 |
msgid "No rights"
|
108 |
msgstr "Nincs jogosultság"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:236
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Új szerepkör megadása"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:320
|
115 |
+
#: ../includes/class-user-role-editor.php:322
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Nincs jogosultsága a felhasználó szerkesztéséhez."
|
118 |
|
125 |
msgstr "Beállítások"
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:569
|
128 |
+
#: ../includes/class-ure-lib.php:2540
|
129 |
msgid "Changelog"
|
130 |
msgstr "Változások naplója"
|
131 |
|
132 |
#: ../includes/class-user-role-editor.php:619
|
133 |
#: ../includes/class-user-role-editor.php:648
|
134 |
+
#: ../includes/class-user-role-editor.php:1030
|
135 |
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "Szerepkör szerkesztő"
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Alap szerepkörök frissítve"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:779
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr ""
|
154 |
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:851
|
157 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
158 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
159 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
160 |
msgid "Insufficient permissions to work with User Role Editor"
|
161 |
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:977
|
164 |
msgid "Select All"
|
165 |
msgstr "Összeset kijelöl"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:978
|
168 |
msgid "Unselect All"
|
169 |
msgstr "Kijelölés megszünt."
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:979
|
172 |
msgid "Reverse"
|
173 |
msgstr "Fordított kijelölés"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:980
|
176 |
msgid "Update"
|
177 |
msgstr "Frissítés"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:981
|
180 |
msgid "Please confirm permissions update"
|
181 |
msgstr "Képességek frissítésének megersőítése"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:982
|
184 |
msgid "Add New Role"
|
185 |
msgstr "Új szerepkör létrehozása"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:983
|
188 |
+
#: ../includes/class-user-role-editor.php:988
|
189 |
msgid "Rename Role"
|
190 |
msgstr "Szerepkör átnevezés"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:984
|
193 |
msgid " Role name (ID) can not be empty!"
|
194 |
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
195 |
|
196 |
+
#: ../includes/class-user-role-editor.php:985
|
197 |
msgid ""
|
198 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
199 |
"only!"
|
201 |
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
202 |
"aláhúzást tartalmazhat."
|
203 |
|
204 |
+
#: ../includes/class-user-role-editor.php:986
|
205 |
msgid ""
|
206 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
207 |
"it."
|
209 |
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
210 |
"bele legalább egy latin betű."
|
211 |
|
212 |
+
#: ../includes/class-user-role-editor.php:987
|
213 |
msgid "Add Role"
|
214 |
msgstr "Új szerepkör"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:989
|
217 |
msgid "Delete Role"
|
218 |
msgstr "Szerepkör törlése"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:990
|
221 |
msgid "Cancel"
|
222 |
msgstr "Mégse"
|
223 |
|
224 |
+
#: ../includes/class-user-role-editor.php:991
|
225 |
msgid "Add Capability"
|
226 |
msgstr "Új képesség"
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:992
|
229 |
+
#: ../includes/class-user-role-editor.php:1001
|
230 |
msgid "Delete Capability"
|
231 |
msgstr "Képesség törlése"
|
232 |
|
233 |
+
#: ../includes/class-user-role-editor.php:993
|
234 |
msgid "Reset"
|
235 |
msgstr "Alaphelyzet"
|
236 |
|
237 |
+
#: ../includes/class-user-role-editor.php:994
|
238 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
239 |
msgstr ""
|
240 |
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
241 |
"újra."
|
242 |
|
243 |
+
#: ../includes/class-user-role-editor.php:995
|
244 |
msgid ""
|
245 |
"If any plugins have changed capabilities in any way upon installation (such "
|
246 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
248 |
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
249 |
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
250 |
|
251 |
+
#: ../includes/class-user-role-editor.php:996
|
252 |
msgid ""
|
253 |
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
"go to"
|
256 |
"További információ a képességek módosításainak visszavonásáról és "
|
257 |
"helyreállításáról"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:998
|
260 |
msgid "Continue?"
|
261 |
msgstr "Folytassuk?"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:999
|
264 |
msgid "Default Role"
|
265 |
msgstr "Alap szerepkör"
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:1000
|
268 |
msgid "Set New Default Role"
|
269 |
msgstr "Új alap szerepkör beállítása"
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:1002
|
272 |
msgid ""
|
273 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
"or other custom code"
|
276 |
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
277 |
"bővítmény vagy egyedi kód."
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:1003
|
280 |
msgid " Capability name (ID) can not be empty!"
|
281 |
msgstr "A képesség név (azonosító) nem lehet üres."
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:1004
|
284 |
msgid ""
|
285 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
"underscore only!"
|
288 |
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
289 |
"aláhúzásból állhat."
|
290 |
|
291 |
+
#: ../includes/class-user-role-editor.php:1033
|
292 |
+
#: ../includes/class-user-role-editor.php:1066
|
293 |
msgid "Other Roles"
|
294 |
msgstr "Más szerepkörök"
|
295 |
|
296 |
+
#: ../includes/class-user-role-editor.php:1047
|
297 |
msgid "Edit"
|
298 |
msgstr "Szerkeszt"
|
299 |
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1444
|
394 |
+
msgid "read about"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
#: ../includes/class-ure-lib.php:1445
|
398 |
+
msgid "user capability"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: ../includes/class-ure-lib.php:1446
|
402 |
msgid "Help"
|
403 |
msgstr "Súgó"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1914
|
406 |
msgid "Error is occur. Please check the log file."
|
407 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
410 |
msgid ""
|
411 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
412 |
"only!"
|
414 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
415 |
"aláhúzásból állhat."
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
418 |
msgid ""
|
419 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
420 |
"characters to it."
|
422 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
423 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1979
|
426 |
#, php-format
|
427 |
msgid "Role %s exists already"
|
428 |
msgstr "%s szerepkör már létezik"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1994
|
431 |
msgid "Error is encountered during new role create operation"
|
432 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:1996
|
435 |
#, php-format
|
436 |
msgid "Role %s is created successfully"
|
437 |
msgstr "%s szerepkör sikeresen létrehozva"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2020
|
440 |
msgid "Error: Role ID is empty!"
|
441 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2038
|
444 |
msgid "Error: Empty role display name is not allowed."
|
445 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2045
|
448 |
#, php-format
|
449 |
msgid "Role %s does not exists"
|
450 |
msgstr "%s szerepkör nem létezik"
|
451 |
|
452 |
+
#: ../includes/class-ure-lib.php:2053
|
453 |
#, php-format
|
454 |
msgid "Role %s is renamed to %s successfully"
|
455 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2126
|
458 |
msgid "Error encountered during role delete operation"
|
459 |
msgstr "Hiba történt a szerepkör törlése során."
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2128
|
462 |
msgid "Unused roles are deleted successfully"
|
463 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2130
|
466 |
#, php-format
|
467 |
msgid "Role %s is deleted successfully"
|
468 |
msgstr "%s szerepkör sikeresen törölve lett."
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2155
|
471 |
msgid "Error encountered during default role change operation"
|
472 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2161
|
475 |
#, php-format
|
476 |
msgid "Default role for new users is set to %s successfully"
|
477 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2180
|
480 |
msgid "Editor"
|
481 |
msgstr "Szerkesztő"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2181
|
484 |
msgid "Author"
|
485 |
msgstr "Szerző"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2182
|
488 |
msgid "Contributor"
|
489 |
msgstr "Közreműködő"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2183
|
492 |
msgid "Subscriber"
|
493 |
msgstr "Feliratkozó"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2185
|
496 |
msgid "Switch themes"
|
497 |
msgstr "Sablon kiválasztása"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2186
|
500 |
msgid "Edit themes"
|
501 |
msgstr "Sablonok szerkesztése"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2187
|
504 |
msgid "Activate plugins"
|
505 |
msgstr "Bővítmény bekapcsolása"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2188
|
508 |
msgid "Edit plugins"
|
509 |
msgstr "Bővítmények szerkesztése"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2189
|
512 |
msgid "Edit users"
|
513 |
msgstr "Felhasználók szerkesztése"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2190
|
516 |
msgid "Edit files"
|
517 |
msgstr "Fájlok szerkesztése"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2191
|
520 |
msgid "Manage options"
|
521 |
msgstr "Beállítások kezelése"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2192
|
524 |
msgid "Moderate comments"
|
525 |
msgstr "Hozzászólások moderálása"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2193
|
528 |
msgid "Manage categories"
|
529 |
msgstr "Kategóriák kezelése"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2194
|
532 |
msgid "Manage links"
|
533 |
msgstr "Hivatkozások kezelése"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2195
|
536 |
msgid "Upload files"
|
537 |
msgstr "Fájlok feltöltése"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2196
|
540 |
msgid "Import"
|
541 |
msgstr "Importálás"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2197
|
544 |
msgid "Unfiltered html"
|
545 |
msgstr "Szűretlen HTML"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2198
|
548 |
msgid "Edit posts"
|
549 |
msgstr "Bejegyzések szerkesztése"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2199
|
552 |
msgid "Edit others posts"
|
553 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2200
|
556 |
msgid "Edit published posts"
|
557 |
msgstr "Közzétett bejegyzések szerkesztése"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2201
|
560 |
msgid "Publish posts"
|
561 |
msgstr "Bejegyzések közzététele"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2202
|
564 |
msgid "Edit pages"
|
565 |
msgstr "Oldalak szerkesztése"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2203
|
568 |
msgid "Read"
|
569 |
msgstr "Olvasás"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2204
|
572 |
msgid "Level 10"
|
573 |
msgstr "10. szint"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2205
|
576 |
msgid "Level 9"
|
577 |
msgstr "9. szint"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2206
|
580 |
msgid "Level 8"
|
581 |
msgstr "8. szint"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2207
|
584 |
msgid "Level 7"
|
585 |
msgstr "7. szint"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2208
|
588 |
msgid "Level 6"
|
589 |
msgstr "6. szint"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2209
|
592 |
msgid "Level 5"
|
593 |
msgstr "5. szint"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2210
|
596 |
msgid "Level 4"
|
597 |
msgstr "4. szint"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2211
|
600 |
msgid "Level 3"
|
601 |
msgstr "3. szint"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2212
|
604 |
msgid "Level 2"
|
605 |
msgstr "2. szint"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2213
|
608 |
msgid "Level 1"
|
609 |
msgstr "1. szint"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2214
|
612 |
msgid "Level 0"
|
613 |
msgstr "0. szint"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2215
|
616 |
msgid "Edit others pages"
|
617 |
msgstr "Mások oldalainak szerkesztése"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2216
|
620 |
msgid "Edit published pages"
|
621 |
msgstr "Közzétett oldalak szerkesztése"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2217
|
624 |
msgid "Publish pages"
|
625 |
msgstr "Oldalak közzététele"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2218
|
628 |
msgid "Delete pages"
|
629 |
msgstr "Oldalak törlése"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2219
|
632 |
msgid "Delete others pages"
|
633 |
msgstr "Mások oldalainak törlése"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2220
|
636 |
msgid "Delete published pages"
|
637 |
msgstr "Közzétett oldalak törlése"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2221
|
640 |
msgid "Delete posts"
|
641 |
msgstr "Bejegyzések törlése"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2222
|
644 |
msgid "Delete others posts"
|
645 |
msgstr "Mások bejegyzéseinek törlése"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2223
|
648 |
msgid "Delete published posts"
|
649 |
msgstr "Közzétett bejegyzések törlése"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2224
|
652 |
msgid "Delete private posts"
|
653 |
msgstr "Privát bejegyzések törlése"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2225
|
656 |
msgid "Edit private posts"
|
657 |
msgstr "Privát bejegyzések szerkesztése"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2226
|
660 |
msgid "Read private posts"
|
661 |
msgstr "Privát bejegyzések olvasása"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2227
|
664 |
msgid "Delete private pages"
|
665 |
msgstr "Privát oldalak törlése"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2228
|
668 |
msgid "Edit private pages"
|
669 |
msgstr "Privát oldalak szerkesztése"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2229
|
672 |
msgid "Read private pages"
|
673 |
msgstr "Privát oldalak olvasása"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2230
|
676 |
msgid "Delete users"
|
677 |
msgstr "Felhasználók törlése"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2231
|
680 |
msgid "Create users"
|
681 |
msgstr "Felhasználók létrehozása"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2232
|
684 |
msgid "Unfiltered upload"
|
685 |
msgstr "Szűretlen feltöltés"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2233
|
688 |
msgid "Edit dashboard"
|
689 |
msgstr "Vezérlőpult szerkesztése"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2234
|
692 |
msgid "Update plugins"
|
693 |
msgstr "Bővítmények frissítése"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2235
|
696 |
msgid "Delete plugins"
|
697 |
msgstr "Bővítmények törlése"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2236
|
700 |
msgid "Install plugins"
|
701 |
msgstr "Bővítmények telepítése"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2237
|
704 |
msgid "Update themes"
|
705 |
msgstr "Sablonok frissítése"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2238
|
708 |
msgid "Install themes"
|
709 |
msgstr "Sablonok telepítése"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2239
|
712 |
msgid "Update core"
|
713 |
msgstr "Mag frissítése"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2240
|
716 |
msgid "List users"
|
717 |
msgstr "Felhasználók listázása"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2241
|
720 |
msgid "Remove users"
|
721 |
msgstr "Felhasználók törlése"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2242
|
724 |
msgid "Add users"
|
725 |
msgstr "Felhasználók hozzáadása"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2243
|
728 |
msgid "Promote users"
|
729 |
msgstr "Felhasználók előléptetése"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2244
|
732 |
msgid "Edit theme options"
|
733 |
msgstr "Sablon beállítások módosítása"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2245
|
736 |
msgid "Delete themes"
|
737 |
msgstr "Sablonok törlése"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2246
|
740 |
msgid "Export"
|
741 |
msgstr "Exportálás"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2369
|
744 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
745 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2382
|
748 |
#, php-format
|
749 |
msgid "Capability %s is added successfully"
|
750 |
msgstr "%s képesség sikeresen hozzáadva"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2384
|
753 |
#, php-format
|
754 |
msgid "Capability %s exists already"
|
755 |
msgstr "%s képesség már létezik"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2413
|
758 |
#, php-format
|
759 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
760 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
761 |
|
762 |
+
#: ../includes/class-ure-lib.php:2432
|
763 |
#, php-format
|
764 |
msgid "Capability %s is removed successfully"
|
765 |
msgstr "%s képesség sikeresen törölve"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2536
|
768 |
msgid "Version:"
|
769 |
msgstr "Verzió:"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2537
|
772 |
msgid "Author's website"
|
773 |
msgstr "Szerző weboldala"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2538
|
776 |
msgid "Plugin webpage"
|
777 |
msgstr "Bővítmény weboldala"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2539
|
780 |
msgid "Plugin download"
|
781 |
msgstr "Bővítmény letöltése"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2541
|
784 |
msgid "FAQ"
|
785 |
msgstr "GyIK"
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2589
|
788 |
msgid "None"
|
789 |
msgstr "Nincs"
|
790 |
|
791 |
+
#: ../includes/class-ure-lib.php:2616
|
792 |
msgid "Delete All Unused Roles"
|
793 |
msgstr "Minden nem használt szerepkör törlése"
|
794 |
|
795 |
+
#: ../includes/class-ure-lib.php:2640
|
796 |
msgid "— No role for this site —"
|
797 |
msgstr "— Nincs szerepköre ezen az oldalon —"
|
798 |
|
816 |
msgid "Other Roles:"
|
817 |
msgstr "Más szerepkörök:"
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:12
|
820 |
+
#: ../includes/class-ure-screen-help.php:41
|
821 |
+
#: ../includes/class-ure-screen-help.php:60
|
822 |
+
#: ../includes/class-ure-screen-help.php:79
|
823 |
+
msgid "User Role Editor Options page help"
|
824 |
+
msgstr ""
|
825 |
+
|
826 |
#: ../includes/class-ure-screen-help.php:16
|
827 |
msgid ""
|
828 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-id_ID.mo
CHANGED
Binary file
|
lang/ure-id_ID.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
@@ -97,20 +97,20 @@ msgstr ""
|
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "No rights"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Provide new role"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
msgid "You do not have permission to edit this user."
|
115 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
116 |
|
@@ -123,13 +123,13 @@ msgid "Settings"
|
|
123 |
msgstr "Pengaturan"
|
124 |
|
125 |
#: ../includes/class-user-role-editor.php:569
|
126 |
-
#: ../includes/class-ure-lib.php:
|
127 |
msgid "Changelog"
|
128 |
msgstr "log Perubahan"
|
129 |
|
130 |
#: ../includes/class-user-role-editor.php:619
|
131 |
#: ../includes/class-user-role-editor.php:648
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
#: ../includes/class-ure-lib.php:337
|
134 |
msgid "User Role Editor"
|
135 |
msgstr "User Role Editor"
|
@@ -145,7 +145,7 @@ msgstr "Pilihan User Role Editor diperbarui"
|
|
145 |
msgid "Default Roles are updated"
|
146 |
msgstr "Peran "
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid ""
|
150 |
"You do not have sufficient permissions to manage options for User Role "
|
151 |
"Editor."
|
@@ -153,48 +153,48 @@ msgstr ""
|
|
153 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
154 |
"Editor."
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
-
#: ../includes/class-ure-lib.php:
|
158 |
-
#: ../includes/class-ure-lib.php:
|
159 |
-
#: ../includes/class-ure-lib.php:
|
160 |
msgid "Insufficient permissions to work with User Role Editor"
|
161 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Select All"
|
165 |
msgstr "Pilih Semua"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Unselect All"
|
169 |
msgstr "Batalkan Semua"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Reverse"
|
173 |
msgstr "Memutar"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid "Update"
|
177 |
msgstr "Pembaruan"
|
178 |
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
msgid "Please confirm permissions update"
|
181 |
msgstr "Harap konfirmasi pembaruan izin"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid "Add New Role"
|
185 |
msgstr "Tambah Peran Baru"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
#, fuzzy
|
190 |
msgid "Rename Role"
|
191 |
msgstr "Hapus Peran"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid " Role name (ID) can not be empty!"
|
195 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid ""
|
199 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
"only!"
|
@@ -202,43 +202,43 @@ msgstr ""
|
|
202 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
203 |
"bawah saja!"
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid ""
|
207 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
208 |
"it."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Add Role"
|
213 |
msgstr "Tambah Peran"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Hapus Peran"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
msgid "Cancel"
|
221 |
msgstr "Batalkan"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Tambah Kemampuan"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Hapus Kemampuan"
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid "Reset"
|
234 |
msgstr "Atur Ulang"
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
msgstr ""
|
239 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
240 |
|
241 |
-
#: ../includes/class-user-role-editor.php:
|
242 |
msgid ""
|
243 |
"If any plugins have changed capabilities in any way upon installation (such "
|
244 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -247,7 +247,7 @@ msgstr ""
|
|
247 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
248 |
"DIHAPUS!"
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid ""
|
252 |
"For more information on how to undo changes and restore plugin capabilities "
|
253 |
"go to"
|
@@ -255,19 +255,19 @@ msgstr ""
|
|
255 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
256 |
"mengembalikan kemampuan Plugin pergi ke"
|
257 |
|
258 |
-
#: ../includes/class-user-role-editor.php:
|
259 |
msgid "Continue?"
|
260 |
msgstr "Lanjut?"
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
msgid "Default Role"
|
264 |
msgstr "Peran "
|
265 |
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid "Set New Default Role"
|
268 |
msgstr "Atur Peran Baru Default"
|
269 |
|
270 |
-
#: ../includes/class-user-role-editor.php:
|
271 |
msgid ""
|
272 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
273 |
"or other custom code"
|
@@ -275,11 +275,11 @@ msgstr ""
|
|
275 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
276 |
"beberapa Plugin atau kode kustom lainnya"
|
277 |
|
278 |
-
#: ../includes/class-user-role-editor.php:
|
279 |
msgid " Capability name (ID) can not be empty!"
|
280 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
281 |
|
282 |
-
#: ../includes/class-user-role-editor.php:
|
283 |
msgid ""
|
284 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
285 |
"underscore only!"
|
@@ -287,12 +287,12 @@ msgstr ""
|
|
287 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
288 |
"atau garis bawah saja!"
|
289 |
|
290 |
-
#: ../includes/class-user-role-editor.php:
|
291 |
-
#: ../includes/class-user-role-editor.php:
|
292 |
msgid "Other Roles"
|
293 |
msgstr "Peran Lainnya"
|
294 |
|
295 |
-
#: ../includes/class-user-role-editor.php:
|
296 |
msgid "Edit"
|
297 |
msgstr "Sunting"
|
298 |
|
@@ -390,15 +390,24 @@ msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
392 |
|
|
|
|
|
|
|
|
|
393 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
|
|
394 |
msgid "Help"
|
395 |
msgstr "Bantuan"
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
@@ -406,384 +415,384 @@ msgstr ""
|
|
406 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
407 |
"dan garis bawah saja!"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
#, php-format
|
417 |
msgid "Role %s exists already"
|
418 |
msgstr "Peran %s telah ada"
|
419 |
|
420 |
-
#: ../includes/class-ure-lib.php:
|
421 |
msgid "Error is encountered during new role create operation"
|
422 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
#, php-format
|
426 |
msgid "Role %s is created successfully"
|
427 |
msgstr "Peran %s berhasil dibuat"
|
428 |
|
429 |
-
#: ../includes/class-ure-lib.php:
|
430 |
msgid "Error: Role ID is empty!"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Error: Empty role display name is not allowed."
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
#, fuzzy, php-format
|
439 |
msgid "Role %s does not exists"
|
440 |
msgstr "tidak ada"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
#, fuzzy, php-format
|
444 |
msgid "Role %s is renamed to %s successfully"
|
445 |
msgstr "Peran %s berhasil dibuat"
|
446 |
|
447 |
-
#: ../includes/class-ure-lib.php:
|
448 |
msgid "Error encountered during role delete operation"
|
449 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Unused roles are deleted successfully"
|
453 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
#, php-format
|
457 |
msgid "Role %s is deleted successfully"
|
458 |
msgstr "Peran %s berhasil dihapus"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Error encountered during default role change operation"
|
462 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
#, php-format
|
466 |
msgid "Default role for new users is set to %s successfully"
|
467 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Editor"
|
471 |
msgstr "Penyunting"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Author"
|
475 |
msgstr "Pengarang"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Contributor"
|
479 |
msgstr "Kontributor"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Subscriber"
|
483 |
msgstr "Pelanggan"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Switch themes"
|
487 |
msgstr "Ganti tema"
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Edit themes"
|
491 |
msgstr "Sunting tema"
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Activate plugins"
|
495 |
msgstr "Aktifkan plugin"
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Edit plugins"
|
499 |
msgstr "Sunting plugin"
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Edit users"
|
503 |
msgstr "Sunting pengguna"
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Edit files"
|
507 |
msgstr "Sunting data"
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Manage options"
|
511 |
msgstr "kelola pilihan"
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Moderate comments"
|
515 |
msgstr "Moderasi komentar"
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Manage categories"
|
519 |
msgstr "Kelola kategori"
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Manage links"
|
523 |
msgstr "Kelola tautan"
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Upload files"
|
527 |
msgstr "Unggah data"
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Import"
|
531 |
msgstr "Impor"
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Unfiltered html"
|
535 |
msgstr "HTML tidak tersaring"
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Edit posts"
|
539 |
msgstr "Sunting posting"
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Edit others posts"
|
543 |
msgstr "Sunting posting lainnya"
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Edit published posts"
|
547 |
msgstr "Sunting posting terpublikasi"
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Publish posts"
|
551 |
msgstr "Publikasi posting"
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Edit pages"
|
555 |
msgstr "Sunting halaman"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Read"
|
559 |
msgstr "Baca"
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 10"
|
563 |
msgstr "Tingkat 10"
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 9"
|
567 |
msgstr "Tingkat 9"
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 8"
|
571 |
msgstr "Tingkat 8"
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Level 7"
|
575 |
msgstr "Tingkat 7"
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Level 6"
|
579 |
msgstr "Tingkat 6"
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Level 5"
|
583 |
msgstr "Tingkat 5"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Level 4"
|
587 |
msgstr "Tingkat 4"
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Level 3"
|
591 |
msgstr "Tingkat 3"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Level 2"
|
595 |
msgstr "Tingkat 2"
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Level 1"
|
599 |
msgstr "Tingkat 1"
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Level 0"
|
603 |
msgstr "Tingkat 0"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Edit others pages"
|
607 |
msgstr "Sunting halaman lainnya"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Edit published pages"
|
611 |
msgstr "Sunting halaman terpublikasi"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Publish pages"
|
615 |
msgstr "Publikasi halaman"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete pages"
|
619 |
msgstr "Hapus halaman"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete others pages"
|
623 |
msgstr "Hapus halaman lainnya"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Delete published pages"
|
627 |
msgstr "Hapus halaman terpublikasi"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Delete posts"
|
631 |
msgstr "hapus posting"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Delete others posts"
|
635 |
msgstr "Hapus posting lainnya"
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Delete published posts"
|
639 |
msgstr "Hapus posting terpublikasi"
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Delete private posts"
|
643 |
msgstr "Hapus posting pribadi"
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Edit private posts"
|
647 |
msgstr "Sunting posting pribadi"
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Read private posts"
|
651 |
msgstr "Baca posting pribadi"
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Delete private pages"
|
655 |
msgstr "Hapus halaman pribadi"
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Edit private pages"
|
659 |
msgstr "Sunting halaman pribadi"
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Read private pages"
|
663 |
msgstr "baca halaman pribadi"
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Delete users"
|
667 |
msgstr "Hapus pengguna"
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Create users"
|
671 |
msgstr "Buat pengguna"
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "Unfiltered upload"
|
675 |
msgstr "Unggahan tidak tersaring"
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Edit dashboard"
|
679 |
msgstr "Sunting dasbor"
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Update plugins"
|
683 |
msgstr "Perbarui plugin"
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Delete plugins"
|
687 |
msgstr "Hapus plugin"
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "Install plugins"
|
691 |
msgstr "Pasang plugin"
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Update themes"
|
695 |
msgstr "Perbarui tema"
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Install themes"
|
699 |
msgstr "Pasang tema"
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Update core"
|
703 |
msgstr "Perbarui inti"
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
msgid "List users"
|
707 |
msgstr "Daftar pengguna"
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
msgid "Remove users"
|
711 |
msgstr "Hapus pengguna"
|
712 |
|
713 |
-
#: ../includes/class-ure-lib.php:
|
714 |
msgid "Add users"
|
715 |
msgstr "Tambah pengguna"
|
716 |
|
717 |
-
#: ../includes/class-ure-lib.php:
|
718 |
msgid "Promote users"
|
719 |
msgstr "Promosi pengguna"
|
720 |
|
721 |
-
#: ../includes/class-ure-lib.php:
|
722 |
msgid "Edit theme options"
|
723 |
msgstr "Sunting pilihan tema"
|
724 |
|
725 |
-
#: ../includes/class-ure-lib.php:
|
726 |
msgid "Delete themes"
|
727 |
msgstr "Hapus tema"
|
728 |
|
729 |
-
#: ../includes/class-ure-lib.php:
|
730 |
msgid "Export"
|
731 |
msgstr "Ekspor"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
735 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Capability %s is added successfully"
|
740 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Capability %s exists already"
|
745 |
msgstr "Kemampuan %s telah ada"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
#, php-format
|
749 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
750 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
#, php-format
|
754 |
msgid "Capability %s is removed successfully"
|
755 |
msgstr "Kemampuan %s berhasil dihapus"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "Version:"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Author's website"
|
763 |
msgstr "Website pengarang"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Plugin webpage"
|
767 |
msgstr "Halaman web Plugin"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
#, fuzzy
|
771 |
msgid "Plugin download"
|
772 |
msgstr "Halaman web Plugin"
|
773 |
|
774 |
-
#: ../includes/class-ure-lib.php:
|
775 |
msgid "FAQ"
|
776 |
msgstr "FAQ"
|
777 |
|
778 |
-
#: ../includes/class-ure-lib.php:
|
779 |
msgid "None"
|
780 |
msgstr "Nihil"
|
781 |
|
782 |
-
#: ../includes/class-ure-lib.php:
|
783 |
msgid "Delete All Unused Roles"
|
784 |
msgstr "Hapus Peran Tidak Terpakai"
|
785 |
|
786 |
-
#: ../includes/class-ure-lib.php:
|
787 |
msgid "— No role for this site —"
|
788 |
msgstr "— Tidak ada peran untuk situs ini —"
|
789 |
|
@@ -807,6 +816,14 @@ msgstr "Peran bbPress:"
|
|
807 |
msgid "Other Roles:"
|
808 |
msgstr "Peran Lain:"
|
809 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
810 |
#: ../includes/class-ure-screen-help.php:16
|
811 |
msgid ""
|
812 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
97 |
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:234
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:235
|
105 |
msgid "No rights"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:236
|
109 |
msgid "Provide new role"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:320
|
113 |
+
#: ../includes/class-user-role-editor.php:322
|
114 |
msgid "You do not have permission to edit this user."
|
115 |
msgstr "Anda tidak diizinkan untuk menyunting user ini. "
|
116 |
|
123 |
msgstr "Pengaturan"
|
124 |
|
125 |
#: ../includes/class-user-role-editor.php:569
|
126 |
+
#: ../includes/class-ure-lib.php:2540
|
127 |
msgid "Changelog"
|
128 |
msgstr "log Perubahan"
|
129 |
|
130 |
#: ../includes/class-user-role-editor.php:619
|
131 |
#: ../includes/class-user-role-editor.php:648
|
132 |
+
#: ../includes/class-user-role-editor.php:1030
|
133 |
#: ../includes/class-ure-lib.php:337
|
134 |
msgid "User Role Editor"
|
135 |
msgstr "User Role Editor"
|
145 |
msgid "Default Roles are updated"
|
146 |
msgstr "Peran "
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:779
|
149 |
msgid ""
|
150 |
"You do not have sufficient permissions to manage options for User Role "
|
151 |
"Editor."
|
153 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
154 |
"Editor."
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:851
|
157 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
158 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
159 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
160 |
msgid "Insufficient permissions to work with User Role Editor"
|
161 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:977
|
164 |
msgid "Select All"
|
165 |
msgstr "Pilih Semua"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:978
|
168 |
msgid "Unselect All"
|
169 |
msgstr "Batalkan Semua"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:979
|
172 |
msgid "Reverse"
|
173 |
msgstr "Memutar"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:980
|
176 |
msgid "Update"
|
177 |
msgstr "Pembaruan"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:981
|
180 |
msgid "Please confirm permissions update"
|
181 |
msgstr "Harap konfirmasi pembaruan izin"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:982
|
184 |
msgid "Add New Role"
|
185 |
msgstr "Tambah Peran Baru"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:983
|
188 |
+
#: ../includes/class-user-role-editor.php:988
|
189 |
#, fuzzy
|
190 |
msgid "Rename Role"
|
191 |
msgstr "Hapus Peran"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:984
|
194 |
msgid " Role name (ID) can not be empty!"
|
195 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:985
|
198 |
msgid ""
|
199 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
"only!"
|
202 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
203 |
"bawah saja!"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:986
|
206 |
msgid ""
|
207 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
208 |
"it."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:987
|
212 |
msgid "Add Role"
|
213 |
msgstr "Tambah Peran"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:989
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Hapus Peran"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:990
|
220 |
msgid "Cancel"
|
221 |
msgstr "Batalkan"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:991
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Tambah Kemampuan"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:992
|
228 |
+
#: ../includes/class-user-role-editor.php:1001
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Hapus Kemampuan"
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:993
|
233 |
msgid "Reset"
|
234 |
msgstr "Atur Ulang"
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:994
|
237 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
msgstr ""
|
239 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
240 |
|
241 |
+
#: ../includes/class-user-role-editor.php:995
|
242 |
msgid ""
|
243 |
"If any plugins have changed capabilities in any way upon installation (such "
|
244 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
247 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
248 |
"DIHAPUS!"
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:996
|
251 |
msgid ""
|
252 |
"For more information on how to undo changes and restore plugin capabilities "
|
253 |
"go to"
|
255 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
256 |
"mengembalikan kemampuan Plugin pergi ke"
|
257 |
|
258 |
+
#: ../includes/class-user-role-editor.php:998
|
259 |
msgid "Continue?"
|
260 |
msgstr "Lanjut?"
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:999
|
263 |
msgid "Default Role"
|
264 |
msgstr "Peran "
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:1000
|
267 |
msgid "Set New Default Role"
|
268 |
msgstr "Atur Peran Baru Default"
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:1002
|
271 |
msgid ""
|
272 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
273 |
"or other custom code"
|
275 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
276 |
"beberapa Plugin atau kode kustom lainnya"
|
277 |
|
278 |
+
#: ../includes/class-user-role-editor.php:1003
|
279 |
msgid " Capability name (ID) can not be empty!"
|
280 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
281 |
|
282 |
+
#: ../includes/class-user-role-editor.php:1004
|
283 |
msgid ""
|
284 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
285 |
"underscore only!"
|
287 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
288 |
"atau garis bawah saja!"
|
289 |
|
290 |
+
#: ../includes/class-user-role-editor.php:1033
|
291 |
+
#: ../includes/class-user-role-editor.php:1066
|
292 |
msgid "Other Roles"
|
293 |
msgstr "Peran Lainnya"
|
294 |
|
295 |
+
#: ../includes/class-user-role-editor.php:1047
|
296 |
msgid "Edit"
|
297 |
msgstr "Sunting"
|
298 |
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1444
|
394 |
+
msgid "read about"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
#: ../includes/class-ure-lib.php:1445
|
398 |
+
#, fuzzy
|
399 |
+
msgid "user capability"
|
400 |
+
msgstr "Kustom kemampuan:"
|
401 |
+
|
402 |
+
#: ../includes/class-ure-lib.php:1446
|
403 |
msgid "Help"
|
404 |
msgstr "Bantuan"
|
405 |
|
406 |
+
#: ../includes/class-ure-lib.php:1914
|
407 |
msgid "Error is occur. Please check the log file."
|
408 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
411 |
msgid ""
|
412 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
413 |
"only!"
|
415 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
416 |
"dan garis bawah saja!"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
419 |
msgid ""
|
420 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
421 |
"characters to it."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1979
|
425 |
#, php-format
|
426 |
msgid "Role %s exists already"
|
427 |
msgstr "Peran %s telah ada"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1994
|
430 |
msgid "Error is encountered during new role create operation"
|
431 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1996
|
434 |
#, php-format
|
435 |
msgid "Role %s is created successfully"
|
436 |
msgstr "Peran %s berhasil dibuat"
|
437 |
|
438 |
+
#: ../includes/class-ure-lib.php:2020
|
439 |
msgid "Error: Role ID is empty!"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:2038
|
443 |
msgid "Error: Empty role display name is not allowed."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:2045
|
447 |
#, fuzzy, php-format
|
448 |
msgid "Role %s does not exists"
|
449 |
msgstr "tidak ada"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:2053
|
452 |
#, fuzzy, php-format
|
453 |
msgid "Role %s is renamed to %s successfully"
|
454 |
msgstr "Peran %s berhasil dibuat"
|
455 |
|
456 |
+
#: ../includes/class-ure-lib.php:2126
|
457 |
msgid "Error encountered during role delete operation"
|
458 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
459 |
|
460 |
+
#: ../includes/class-ure-lib.php:2128
|
461 |
msgid "Unused roles are deleted successfully"
|
462 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:2130
|
465 |
#, php-format
|
466 |
msgid "Role %s is deleted successfully"
|
467 |
msgstr "Peran %s berhasil dihapus"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2155
|
470 |
msgid "Error encountered during default role change operation"
|
471 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:2161
|
474 |
#, php-format
|
475 |
msgid "Default role for new users is set to %s successfully"
|
476 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:2180
|
479 |
msgid "Editor"
|
480 |
msgstr "Penyunting"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:2181
|
483 |
msgid "Author"
|
484 |
msgstr "Pengarang"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:2182
|
487 |
msgid "Contributor"
|
488 |
msgstr "Kontributor"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:2183
|
491 |
msgid "Subscriber"
|
492 |
msgstr "Pelanggan"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:2185
|
495 |
msgid "Switch themes"
|
496 |
msgstr "Ganti tema"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:2186
|
499 |
msgid "Edit themes"
|
500 |
msgstr "Sunting tema"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:2187
|
503 |
msgid "Activate plugins"
|
504 |
msgstr "Aktifkan plugin"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:2188
|
507 |
msgid "Edit plugins"
|
508 |
msgstr "Sunting plugin"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:2189
|
511 |
msgid "Edit users"
|
512 |
msgstr "Sunting pengguna"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:2190
|
515 |
msgid "Edit files"
|
516 |
msgstr "Sunting data"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:2191
|
519 |
msgid "Manage options"
|
520 |
msgstr "kelola pilihan"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:2192
|
523 |
msgid "Moderate comments"
|
524 |
msgstr "Moderasi komentar"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:2193
|
527 |
msgid "Manage categories"
|
528 |
msgstr "Kelola kategori"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:2194
|
531 |
msgid "Manage links"
|
532 |
msgstr "Kelola tautan"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:2195
|
535 |
msgid "Upload files"
|
536 |
msgstr "Unggah data"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:2196
|
539 |
msgid "Import"
|
540 |
msgstr "Impor"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:2197
|
543 |
msgid "Unfiltered html"
|
544 |
msgstr "HTML tidak tersaring"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:2198
|
547 |
msgid "Edit posts"
|
548 |
msgstr "Sunting posting"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:2199
|
551 |
msgid "Edit others posts"
|
552 |
msgstr "Sunting posting lainnya"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:2200
|
555 |
msgid "Edit published posts"
|
556 |
msgstr "Sunting posting terpublikasi"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:2201
|
559 |
msgid "Publish posts"
|
560 |
msgstr "Publikasi posting"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:2202
|
563 |
msgid "Edit pages"
|
564 |
msgstr "Sunting halaman"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:2203
|
567 |
msgid "Read"
|
568 |
msgstr "Baca"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:2204
|
571 |
msgid "Level 10"
|
572 |
msgstr "Tingkat 10"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:2205
|
575 |
msgid "Level 9"
|
576 |
msgstr "Tingkat 9"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:2206
|
579 |
msgid "Level 8"
|
580 |
msgstr "Tingkat 8"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:2207
|
583 |
msgid "Level 7"
|
584 |
msgstr "Tingkat 7"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:2208
|
587 |
msgid "Level 6"
|
588 |
msgstr "Tingkat 6"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:2209
|
591 |
msgid "Level 5"
|
592 |
msgstr "Tingkat 5"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:2210
|
595 |
msgid "Level 4"
|
596 |
msgstr "Tingkat 4"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:2211
|
599 |
msgid "Level 3"
|
600 |
msgstr "Tingkat 3"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:2212
|
603 |
msgid "Level 2"
|
604 |
msgstr "Tingkat 2"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:2213
|
607 |
msgid "Level 1"
|
608 |
msgstr "Tingkat 1"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:2214
|
611 |
msgid "Level 0"
|
612 |
msgstr "Tingkat 0"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:2215
|
615 |
msgid "Edit others pages"
|
616 |
msgstr "Sunting halaman lainnya"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:2216
|
619 |
msgid "Edit published pages"
|
620 |
msgstr "Sunting halaman terpublikasi"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:2217
|
623 |
msgid "Publish pages"
|
624 |
msgstr "Publikasi halaman"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:2218
|
627 |
msgid "Delete pages"
|
628 |
msgstr "Hapus halaman"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:2219
|
631 |
msgid "Delete others pages"
|
632 |
msgstr "Hapus halaman lainnya"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:2220
|
635 |
msgid "Delete published pages"
|
636 |
msgstr "Hapus halaman terpublikasi"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:2221
|
639 |
msgid "Delete posts"
|
640 |
msgstr "hapus posting"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:2222
|
643 |
msgid "Delete others posts"
|
644 |
msgstr "Hapus posting lainnya"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:2223
|
647 |
msgid "Delete published posts"
|
648 |
msgstr "Hapus posting terpublikasi"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:2224
|
651 |
msgid "Delete private posts"
|
652 |
msgstr "Hapus posting pribadi"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:2225
|
655 |
msgid "Edit private posts"
|
656 |
msgstr "Sunting posting pribadi"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:2226
|
659 |
msgid "Read private posts"
|
660 |
msgstr "Baca posting pribadi"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:2227
|
663 |
msgid "Delete private pages"
|
664 |
msgstr "Hapus halaman pribadi"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2228
|
667 |
msgid "Edit private pages"
|
668 |
msgstr "Sunting halaman pribadi"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2229
|
671 |
msgid "Read private pages"
|
672 |
msgstr "baca halaman pribadi"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2230
|
675 |
msgid "Delete users"
|
676 |
msgstr "Hapus pengguna"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2231
|
679 |
msgid "Create users"
|
680 |
msgstr "Buat pengguna"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:2232
|
683 |
msgid "Unfiltered upload"
|
684 |
msgstr "Unggahan tidak tersaring"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2233
|
687 |
msgid "Edit dashboard"
|
688 |
msgstr "Sunting dasbor"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:2234
|
691 |
msgid "Update plugins"
|
692 |
msgstr "Perbarui plugin"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2235
|
695 |
msgid "Delete plugins"
|
696 |
msgstr "Hapus plugin"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2236
|
699 |
msgid "Install plugins"
|
700 |
msgstr "Pasang plugin"
|
701 |
|
702 |
+
#: ../includes/class-ure-lib.php:2237
|
703 |
msgid "Update themes"
|
704 |
msgstr "Perbarui tema"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2238
|
707 |
msgid "Install themes"
|
708 |
msgstr "Pasang tema"
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2239
|
711 |
msgid "Update core"
|
712 |
msgstr "Perbarui inti"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2240
|
715 |
msgid "List users"
|
716 |
msgstr "Daftar pengguna"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2241
|
719 |
msgid "Remove users"
|
720 |
msgstr "Hapus pengguna"
|
721 |
|
722 |
+
#: ../includes/class-ure-lib.php:2242
|
723 |
msgid "Add users"
|
724 |
msgstr "Tambah pengguna"
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2243
|
727 |
msgid "Promote users"
|
728 |
msgstr "Promosi pengguna"
|
729 |
|
730 |
+
#: ../includes/class-ure-lib.php:2244
|
731 |
msgid "Edit theme options"
|
732 |
msgstr "Sunting pilihan tema"
|
733 |
|
734 |
+
#: ../includes/class-ure-lib.php:2245
|
735 |
msgid "Delete themes"
|
736 |
msgstr "Hapus tema"
|
737 |
|
738 |
+
#: ../includes/class-ure-lib.php:2246
|
739 |
msgid "Export"
|
740 |
msgstr "Ekspor"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2369
|
743 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
744 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2382
|
747 |
#, php-format
|
748 |
msgid "Capability %s is added successfully"
|
749 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2384
|
752 |
#, php-format
|
753 |
msgid "Capability %s exists already"
|
754 |
msgstr "Kemampuan %s telah ada"
|
755 |
|
756 |
+
#: ../includes/class-ure-lib.php:2413
|
757 |
#, php-format
|
758 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
759 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2432
|
762 |
#, php-format
|
763 |
msgid "Capability %s is removed successfully"
|
764 |
msgstr "Kemampuan %s berhasil dihapus"
|
765 |
|
766 |
+
#: ../includes/class-ure-lib.php:2536
|
767 |
msgid "Version:"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: ../includes/class-ure-lib.php:2537
|
771 |
msgid "Author's website"
|
772 |
msgstr "Website pengarang"
|
773 |
|
774 |
+
#: ../includes/class-ure-lib.php:2538
|
775 |
msgid "Plugin webpage"
|
776 |
msgstr "Halaman web Plugin"
|
777 |
|
778 |
+
#: ../includes/class-ure-lib.php:2539
|
779 |
#, fuzzy
|
780 |
msgid "Plugin download"
|
781 |
msgstr "Halaman web Plugin"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2541
|
784 |
msgid "FAQ"
|
785 |
msgstr "FAQ"
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2589
|
788 |
msgid "None"
|
789 |
msgstr "Nihil"
|
790 |
|
791 |
+
#: ../includes/class-ure-lib.php:2616
|
792 |
msgid "Delete All Unused Roles"
|
793 |
msgstr "Hapus Peran Tidak Terpakai"
|
794 |
|
795 |
+
#: ../includes/class-ure-lib.php:2640
|
796 |
msgid "— No role for this site —"
|
797 |
msgstr "— Tidak ada peran untuk situs ini —"
|
798 |
|
816 |
msgid "Other Roles:"
|
817 |
msgstr "Peran Lain:"
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:12
|
820 |
+
#: ../includes/class-ure-screen-help.php:41
|
821 |
+
#: ../includes/class-ure-screen-help.php:60
|
822 |
+
#: ../includes/class-ure-screen-help.php:79
|
823 |
+
#, fuzzy
|
824 |
+
msgid "User Role Editor Options page help"
|
825 |
+
msgstr "User Role Editor"
|
826 |
+
|
827 |
#: ../includes/class-ure-screen-help.php:16
|
828 |
msgid ""
|
829 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-it_IT.mo
CHANGED
Binary file
|
lang/ure-it_IT.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Goldenhawk <giuseppe.velardo@gmail.com>\n"
|
@@ -99,20 +99,20 @@ msgstr ""
|
|
99 |
"Permetti ad un non super amministratore di creare, modificare e cancellare "
|
100 |
"utenti"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Cambia ruolo agli utenti senza alcun ruolo"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "No rights"
|
108 |
msgstr "Nessun diritto"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Fornisci nuovo ruolo"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Non hai i permessi per modificare questo utente."
|
118 |
|
@@ -125,13 +125,13 @@ msgid "Settings"
|
|
125 |
msgstr "Parametri"
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:569
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "Changelog"
|
130 |
msgstr "Changelog"
|
131 |
|
132 |
#: ../includes/class-user-role-editor.php:619
|
133 |
#: ../includes/class-user-role-editor.php:648
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "Editor Ruolo Utente"
|
@@ -146,7 +146,7 @@ msgstr "Le opzioni dell'Editor Ruolo Utente sono aggiornate"
|
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Ruoli di default aggiornati"
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
@@ -154,47 +154,47 @@ msgstr ""
|
|
154 |
"Non hai permessi sufficienti per gesstire le opzioni per l'Editor Ruolo "
|
155 |
"Utente."
|
156 |
|
157 |
-
#: ../includes/class-user-role-editor.php:
|
158 |
-
#: ../includes/class-ure-lib.php:
|
159 |
-
#: ../includes/class-ure-lib.php:
|
160 |
-
#: ../includes/class-ure-lib.php:
|
161 |
msgid "Insufficient permissions to work with User Role Editor"
|
162 |
msgstr "Permessi insufficienti per lavorare con l'Editor Ruolo Utente"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Select All"
|
166 |
msgstr "Seleziona tutti"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Unselect All"
|
170 |
msgstr "Deseleziona tutti"
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Reverse"
|
174 |
msgstr "Revoca"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Update"
|
178 |
msgstr "Aggiorna"
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Please confirm permissions update"
|
182 |
msgstr "Conferma l'aggiornamento dei permessi"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid "Add New Role"
|
186 |
msgstr "Aggiungi nuovo ruolo"
|
187 |
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid "Rename Role"
|
191 |
msgstr "Rinomina ruolo"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid " Role name (ID) can not be empty!"
|
195 |
msgstr "Nome Ruolo (ID) non può essere vuoto!"
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid ""
|
199 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
"only!"
|
@@ -202,7 +202,7 @@ msgstr ""
|
|
202 |
"Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
|
203 |
"underscore!"
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid ""
|
207 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
208 |
"it."
|
@@ -210,37 +210,37 @@ msgstr ""
|
|
210 |
"Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
|
211 |
"caratteri latini."
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Add Role"
|
215 |
msgstr "Aggiungi Ruolo"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "Delete Role"
|
219 |
msgstr "Cancella Ruolo"
|
220 |
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Cancel"
|
223 |
msgstr "Cancella"
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "Add Capability"
|
227 |
msgstr "Aggiungi funzionalità"
|
228 |
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid "Delete Capability"
|
232 |
msgstr "Cancella funzionalità"
|
233 |
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid "Reset"
|
236 |
msgstr "Resetta"
|
237 |
|
238 |
-
#: ../includes/class-user-role-editor.php:
|
239 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
240 |
msgstr ""
|
241 |
"PERICOLO! Il Reset ripristinerà i parametri di default dal nucleo Wordpress."
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid ""
|
245 |
"If any plugins have changed capabilities in any way upon installation (such "
|
246 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -249,7 +249,7 @@ msgstr ""
|
|
249 |
"l'installazione (tipo S2Members, WooCommerce, ed altri), queste funzionalità "
|
250 |
"saranno cancellate!"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid ""
|
254 |
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
"go to"
|
@@ -257,19 +257,19 @@ msgstr ""
|
|
257 |
"Per altre informazioni su come tornare indietro con le modifiche e "
|
258 |
"ripristinare le funzionalità del plugin vai a"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid "Continue?"
|
262 |
msgstr "Continui?"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid "Default Role"
|
266 |
msgstr "Ruolo di default"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid "Set New Default Role"
|
270 |
msgstr "Setta Nuovo Ruolo di Default"
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid ""
|
274 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
"or other custom code"
|
@@ -277,11 +277,11 @@ msgstr ""
|
|
277 |
"Attenzione! rimuovendo le funzionalità critiche può far 'crashare' il plugin "
|
278 |
"o codice personalizzato al crash "
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid " Capability name (ID) can not be empty!"
|
282 |
msgstr "Nome funzionalità (ID) non può essere vuoto!"
|
283 |
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid ""
|
286 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
"underscore only!"
|
@@ -289,12 +289,12 @@ msgstr ""
|
|
289 |
"Nome funzionalità (ID) deve contenere solo caratteri latini, numeri, "
|
290 |
"trattini o underscore!"
|
291 |
|
292 |
-
#: ../includes/class-user-role-editor.php:
|
293 |
-
#: ../includes/class-user-role-editor.php:
|
294 |
msgid "Other Roles"
|
295 |
msgstr "Altri Ruoli"
|
296 |
|
297 |
-
#: ../includes/class-user-role-editor.php:
|
298 |
msgid "Edit"
|
299 |
msgstr "Modifica"
|
300 |
|
@@ -390,15 +390,23 @@ msgstr "Errore di aggiornamento utente"
|
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "i Ruolo Utente sono rirpstinati ai valori di default Wordpress."
|
392 |
|
|
|
|
|
|
|
|
|
393 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
394 |
msgid "Help"
|
395 |
msgstr "Aiuto"
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "Errore. Controlla file log."
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
@@ -406,7 +414,7 @@ msgstr ""
|
|
406 |
"Errore: ID Ruolo deve contenere solo caratteri latini, numeri, trattini o "
|
407 |
"uderscore!"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
@@ -414,378 +422,378 @@ msgstr ""
|
|
414 |
"Errore: WordPress non supporta il nome Ruolo (ID) nel formato numerico. "
|
415 |
"Aggiungi caratteri latini."
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
#, php-format
|
419 |
msgid "Role %s exists already"
|
420 |
msgstr "Il Ruolo %s esiste"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Error is encountered during new role create operation"
|
424 |
msgstr "Errore durante la creazione del nuovo ruolo"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, php-format
|
428 |
msgid "Role %s is created successfully"
|
429 |
msgstr "Ruolo %s creato con successo"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error: Role ID is empty!"
|
433 |
msgstr "Errore: ID Ruolo è vuoto!"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Error: Empty role display name is not allowed."
|
437 |
msgstr "Errore: non è ammesso che il nome visualizzato del Ruolo sia vuoto."
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
#, php-format
|
441 |
msgid "Role %s does not exists"
|
442 |
msgstr "Ruolo %s non esiste"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
#, php-format
|
446 |
msgid "Role %s is renamed to %s successfully"
|
447 |
msgstr "Ruolo %s rinominato in %s con successo"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Error encountered during role delete operation"
|
451 |
msgstr "Errore durante la cancellazione del ruolo"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Unused roles are deleted successfully"
|
455 |
msgstr "I Ruoli inutilizzati sono stati cancellati"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
#, php-format
|
459 |
msgid "Role %s is deleted successfully"
|
460 |
msgstr "Ruolo %s cancellato con successo"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Error encountered during default role change operation"
|
464 |
msgstr "Errore durante la variazione del ruolo di default"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
#, php-format
|
468 |
msgid "Default role for new users is set to %s successfully"
|
469 |
msgstr "Ruolo di default per i nuovi utenti è stato cambiato a %s con successo"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Editor"
|
473 |
msgstr "Editor"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Author"
|
477 |
msgstr "Author"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Contributor"
|
481 |
msgstr "Contributor"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Subscriber"
|
485 |
msgstr "Subscriber"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Switch themes"
|
489 |
msgstr "Cambia temi"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit themes"
|
493 |
msgstr "Modifica temi"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Activate plugins"
|
497 |
msgstr "Attiva plugins"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit plugins"
|
501 |
msgstr "Edita plugins"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Edit users"
|
505 |
msgstr "Edita utenti"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit files"
|
509 |
msgstr "Edita files"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage options"
|
513 |
msgstr "Gestisci opzioni"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Moderate comments"
|
517 |
msgstr "Modera commenti"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Manage categories"
|
521 |
msgstr "Gestisci categorie"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Manage links"
|
525 |
msgstr "Gestisci links"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Upload files"
|
529 |
msgstr "Upload files"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Import"
|
533 |
msgstr "Importa"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Unfiltered html"
|
537 |
msgstr "Html non filtrato"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit posts"
|
541 |
msgstr "Edit posts"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit others posts"
|
545 |
msgstr "Edit altri posts"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit published posts"
|
549 |
msgstr "Edit posts pubblicati"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Publish posts"
|
553 |
msgstr "Pubblica posts"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Edit pages"
|
557 |
msgstr "Edit pagine"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Read"
|
561 |
msgstr "Read"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 10"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 9"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 8"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 7"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 6"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 5"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 4"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 3"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 2"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 1"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Level 0"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Edit others pages"
|
609 |
msgstr "Edit altre pagine"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Edit published pages"
|
613 |
msgstr "Edit pagine pubblicate"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Publish pages"
|
617 |
msgstr "Pubblica pagine"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete pages"
|
621 |
msgstr "Cancella pagine"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete others pages"
|
625 |
msgstr "Cancella altre pagine"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete published pages"
|
629 |
msgstr "Cancella pagine pubblicate"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete posts"
|
633 |
msgstr "Cancella posts"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete others posts"
|
637 |
msgstr "Cancella altri posts"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete published posts"
|
641 |
msgstr "Cancella i posts pubblicati"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete private posts"
|
645 |
msgstr "Cancella posts privati"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Edit private posts"
|
649 |
msgstr "Edit posts privati"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read private posts"
|
653 |
msgstr "Leggi posts privati"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Delete private pages"
|
657 |
msgstr "Cancella pagine private"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Edit private pages"
|
661 |
msgstr "Edit pagine private"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Read private pages"
|
665 |
msgstr "Legge pagine private"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Delete users"
|
669 |
msgstr "Cancella utenti"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Create users"
|
673 |
msgstr "Crea utenti"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Unfiltered upload"
|
677 |
msgstr "Uploads non filtrati"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Edit dashboard"
|
681 |
msgstr "Edit dashboard"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Update plugins"
|
685 |
msgstr "Aggiorna plugins"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Delete plugins"
|
689 |
msgstr "Cancella plugins"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install plugins"
|
693 |
msgstr "Installa plugins"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update themes"
|
697 |
msgstr "Aggiorna temi"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Install themes"
|
701 |
msgstr "Installa temi"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Update core"
|
705 |
msgstr "Aggiorna nucleo"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "List users"
|
709 |
msgstr "Lista utenti"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Remove users"
|
713 |
msgstr "Rimuovi utenti"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Add users"
|
717 |
msgstr "Aggiungi utenti"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Promote users"
|
721 |
msgstr "Promuovi utenti"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Edit theme options"
|
725 |
msgstr "Edit opzioni tema"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Delete themes"
|
729 |
msgstr "Cancella temi"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Export"
|
733 |
msgstr "Esporta"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
737 |
msgstr ""
|
738 |
"Errore: nome funzionalità deve contenere solo caratteri latini o numeri!"
|
739 |
|
740 |
-
#: ../includes/class-ure-lib.php:
|
741 |
#, php-format
|
742 |
msgid "Capability %s is added successfully"
|
743 |
msgstr "Funzionalità %s aggiunta!"
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
#, php-format
|
747 |
msgid "Capability %s exists already"
|
748 |
msgstr "Funzionalità %s già esiste"
|
749 |
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
#, php-format
|
752 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
753 |
msgstr "Errore! Non hai permessi per cancellare questa funzionalità: %s!"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
#, php-format
|
757 |
msgid "Capability %s is removed successfully"
|
758 |
msgstr "Funzionalità %s rimossa con successo"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "Version:"
|
762 |
msgstr "Versione:"
|
763 |
|
764 |
-
#: ../includes/class-ure-lib.php:
|
765 |
msgid "Author's website"
|
766 |
msgstr "Sito web dell'autore"
|
767 |
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "Plugin webpage"
|
770 |
msgstr "Webpabe plugin"
|
771 |
|
772 |
-
#: ../includes/class-ure-lib.php:
|
773 |
msgid "Plugin download"
|
774 |
msgstr "Download plugin"
|
775 |
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "FAQ"
|
778 |
msgstr "FAQ"
|
779 |
|
780 |
-
#: ../includes/class-ure-lib.php:
|
781 |
msgid "None"
|
782 |
msgstr "Nessuno"
|
783 |
|
784 |
-
#: ../includes/class-ure-lib.php:
|
785 |
msgid "Delete All Unused Roles"
|
786 |
msgstr "Cancella tutti i Ruoli inutilizzati"
|
787 |
|
788 |
-
#: ../includes/class-ure-lib.php:
|
789 |
msgid "— No role for this site —"
|
790 |
msgstr "— Nessun ruolo per questo sito —"
|
791 |
|
@@ -809,6 +817,13 @@ msgstr "Ruolo bbPress:"
|
|
809 |
msgid "Other Roles:"
|
810 |
msgstr "Altri Ruoli:"
|
811 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
812 |
#: ../includes/class-ure-screen-help.php:16
|
813 |
msgid ""
|
814 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 12:10+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: Goldenhawk <giuseppe.velardo@gmail.com>\n"
|
99 |
"Permetti ad un non super amministratore di creare, modificare e cancellare "
|
100 |
"utenti"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:234
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Cambia ruolo agli utenti senza alcun ruolo"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:235
|
107 |
msgid "No rights"
|
108 |
msgstr "Nessun diritto"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:236
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Fornisci nuovo ruolo"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:320
|
115 |
+
#: ../includes/class-user-role-editor.php:322
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Non hai i permessi per modificare questo utente."
|
118 |
|
125 |
msgstr "Parametri"
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:569
|
128 |
+
#: ../includes/class-ure-lib.php:2540
|
129 |
msgid "Changelog"
|
130 |
msgstr "Changelog"
|
131 |
|
132 |
#: ../includes/class-user-role-editor.php:619
|
133 |
#: ../includes/class-user-role-editor.php:648
|
134 |
+
#: ../includes/class-user-role-editor.php:1030
|
135 |
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "Editor Ruolo Utente"
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Ruoli di default aggiornati"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:779
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
154 |
"Non hai permessi sufficienti per gesstire le opzioni per l'Editor Ruolo "
|
155 |
"Utente."
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:851
|
158 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
159 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
160 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
161 |
msgid "Insufficient permissions to work with User Role Editor"
|
162 |
msgstr "Permessi insufficienti per lavorare con l'Editor Ruolo Utente"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:977
|
165 |
msgid "Select All"
|
166 |
msgstr "Seleziona tutti"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:978
|
169 |
msgid "Unselect All"
|
170 |
msgstr "Deseleziona tutti"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:979
|
173 |
msgid "Reverse"
|
174 |
msgstr "Revoca"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:980
|
177 |
msgid "Update"
|
178 |
msgstr "Aggiorna"
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:981
|
181 |
msgid "Please confirm permissions update"
|
182 |
msgstr "Conferma l'aggiornamento dei permessi"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:982
|
185 |
msgid "Add New Role"
|
186 |
msgstr "Aggiungi nuovo ruolo"
|
187 |
|
188 |
+
#: ../includes/class-user-role-editor.php:983
|
189 |
+
#: ../includes/class-user-role-editor.php:988
|
190 |
msgid "Rename Role"
|
191 |
msgstr "Rinomina ruolo"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:984
|
194 |
msgid " Role name (ID) can not be empty!"
|
195 |
msgstr "Nome Ruolo (ID) non può essere vuoto!"
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:985
|
198 |
msgid ""
|
199 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
200 |
"only!"
|
202 |
"Il nome Ruolo (ID) deve contenere solo caratteri latini, numeri, trattini o "
|
203 |
"underscore!"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:986
|
206 |
msgid ""
|
207 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
208 |
"it."
|
210 |
"Wordpress non supporta il nome Ruolo (ID) nel formaro numerico. Inserisci "
|
211 |
"caratteri latini."
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:987
|
214 |
msgid "Add Role"
|
215 |
msgstr "Aggiungi Ruolo"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:989
|
218 |
msgid "Delete Role"
|
219 |
msgstr "Cancella Ruolo"
|
220 |
|
221 |
+
#: ../includes/class-user-role-editor.php:990
|
222 |
msgid "Cancel"
|
223 |
msgstr "Cancella"
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:991
|
226 |
msgid "Add Capability"
|
227 |
msgstr "Aggiungi funzionalità"
|
228 |
|
229 |
+
#: ../includes/class-user-role-editor.php:992
|
230 |
+
#: ../includes/class-user-role-editor.php:1001
|
231 |
msgid "Delete Capability"
|
232 |
msgstr "Cancella funzionalità"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:993
|
235 |
msgid "Reset"
|
236 |
msgstr "Resetta"
|
237 |
|
238 |
+
#: ../includes/class-user-role-editor.php:994
|
239 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
240 |
msgstr ""
|
241 |
"PERICOLO! Il Reset ripristinerà i parametri di default dal nucleo Wordpress."
|
242 |
|
243 |
+
#: ../includes/class-user-role-editor.php:995
|
244 |
msgid ""
|
245 |
"If any plugins have changed capabilities in any way upon installation (such "
|
246 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
249 |
"l'installazione (tipo S2Members, WooCommerce, ed altri), queste funzionalità "
|
250 |
"saranno cancellate!"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:996
|
253 |
msgid ""
|
254 |
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
"go to"
|
257 |
"Per altre informazioni su come tornare indietro con le modifiche e "
|
258 |
"ripristinare le funzionalità del plugin vai a"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:998
|
261 |
msgid "Continue?"
|
262 |
msgstr "Continui?"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:999
|
265 |
msgid "Default Role"
|
266 |
msgstr "Ruolo di default"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:1000
|
269 |
msgid "Set New Default Role"
|
270 |
msgstr "Setta Nuovo Ruolo di Default"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:1002
|
273 |
msgid ""
|
274 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
"or other custom code"
|
277 |
"Attenzione! rimuovendo le funzionalità critiche può far 'crashare' il plugin "
|
278 |
"o codice personalizzato al crash "
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:1003
|
281 |
msgid " Capability name (ID) can not be empty!"
|
282 |
msgstr "Nome funzionalità (ID) non può essere vuoto!"
|
283 |
|
284 |
+
#: ../includes/class-user-role-editor.php:1004
|
285 |
msgid ""
|
286 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
"underscore only!"
|
289 |
"Nome funzionalità (ID) deve contenere solo caratteri latini, numeri, "
|
290 |
"trattini o underscore!"
|
291 |
|
292 |
+
#: ../includes/class-user-role-editor.php:1033
|
293 |
+
#: ../includes/class-user-role-editor.php:1066
|
294 |
msgid "Other Roles"
|
295 |
msgstr "Altri Ruoli"
|
296 |
|
297 |
+
#: ../includes/class-user-role-editor.php:1047
|
298 |
msgid "Edit"
|
299 |
msgstr "Modifica"
|
300 |
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "i Ruolo Utente sono rirpstinati ai valori di default Wordpress."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1444
|
394 |
+
msgid "read about"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
#: ../includes/class-ure-lib.php:1445
|
398 |
+
msgid "user capability"
|
399 |
+
msgstr "funzionalità personalizzate"
|
400 |
+
|
401 |
+
#: ../includes/class-ure-lib.php:1446
|
402 |
msgid "Help"
|
403 |
msgstr "Aiuto"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1914
|
406 |
msgid "Error is occur. Please check the log file."
|
407 |
msgstr "Errore. Controlla file log."
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
410 |
msgid ""
|
411 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
412 |
"only!"
|
414 |
"Errore: ID Ruolo deve contenere solo caratteri latini, numeri, trattini o "
|
415 |
"uderscore!"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
418 |
msgid ""
|
419 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
420 |
"characters to it."
|
422 |
"Errore: WordPress non supporta il nome Ruolo (ID) nel formato numerico. "
|
423 |
"Aggiungi caratteri latini."
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1979
|
426 |
#, php-format
|
427 |
msgid "Role %s exists already"
|
428 |
msgstr "Il Ruolo %s esiste"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1994
|
431 |
msgid "Error is encountered during new role create operation"
|
432 |
msgstr "Errore durante la creazione del nuovo ruolo"
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:1996
|
435 |
#, php-format
|
436 |
msgid "Role %s is created successfully"
|
437 |
msgstr "Ruolo %s creato con successo"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2020
|
440 |
msgid "Error: Role ID is empty!"
|
441 |
msgstr "Errore: ID Ruolo è vuoto!"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2038
|
444 |
msgid "Error: Empty role display name is not allowed."
|
445 |
msgstr "Errore: non è ammesso che il nome visualizzato del Ruolo sia vuoto."
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2045
|
448 |
#, php-format
|
449 |
msgid "Role %s does not exists"
|
450 |
msgstr "Ruolo %s non esiste"
|
451 |
|
452 |
+
#: ../includes/class-ure-lib.php:2053
|
453 |
#, php-format
|
454 |
msgid "Role %s is renamed to %s successfully"
|
455 |
msgstr "Ruolo %s rinominato in %s con successo"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2126
|
458 |
msgid "Error encountered during role delete operation"
|
459 |
msgstr "Errore durante la cancellazione del ruolo"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2128
|
462 |
msgid "Unused roles are deleted successfully"
|
463 |
msgstr "I Ruoli inutilizzati sono stati cancellati"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2130
|
466 |
#, php-format
|
467 |
msgid "Role %s is deleted successfully"
|
468 |
msgstr "Ruolo %s cancellato con successo"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2155
|
471 |
msgid "Error encountered during default role change operation"
|
472 |
msgstr "Errore durante la variazione del ruolo di default"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2161
|
475 |
#, php-format
|
476 |
msgid "Default role for new users is set to %s successfully"
|
477 |
msgstr "Ruolo di default per i nuovi utenti è stato cambiato a %s con successo"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2180
|
480 |
msgid "Editor"
|
481 |
msgstr "Editor"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2181
|
484 |
msgid "Author"
|
485 |
msgstr "Author"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2182
|
488 |
msgid "Contributor"
|
489 |
msgstr "Contributor"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2183
|
492 |
msgid "Subscriber"
|
493 |
msgstr "Subscriber"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2185
|
496 |
msgid "Switch themes"
|
497 |
msgstr "Cambia temi"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2186
|
500 |
msgid "Edit themes"
|
501 |
msgstr "Modifica temi"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2187
|
504 |
msgid "Activate plugins"
|
505 |
msgstr "Attiva plugins"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2188
|
508 |
msgid "Edit plugins"
|
509 |
msgstr "Edita plugins"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2189
|
512 |
msgid "Edit users"
|
513 |
msgstr "Edita utenti"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2190
|
516 |
msgid "Edit files"
|
517 |
msgstr "Edita files"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2191
|
520 |
msgid "Manage options"
|
521 |
msgstr "Gestisci opzioni"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2192
|
524 |
msgid "Moderate comments"
|
525 |
msgstr "Modera commenti"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2193
|
528 |
msgid "Manage categories"
|
529 |
msgstr "Gestisci categorie"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2194
|
532 |
msgid "Manage links"
|
533 |
msgstr "Gestisci links"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2195
|
536 |
msgid "Upload files"
|
537 |
msgstr "Upload files"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2196
|
540 |
msgid "Import"
|
541 |
msgstr "Importa"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2197
|
544 |
msgid "Unfiltered html"
|
545 |
msgstr "Html non filtrato"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2198
|
548 |
msgid "Edit posts"
|
549 |
msgstr "Edit posts"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2199
|
552 |
msgid "Edit others posts"
|
553 |
msgstr "Edit altri posts"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2200
|
556 |
msgid "Edit published posts"
|
557 |
msgstr "Edit posts pubblicati"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2201
|
560 |
msgid "Publish posts"
|
561 |
msgstr "Pubblica posts"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2202
|
564 |
msgid "Edit pages"
|
565 |
msgstr "Edit pagine"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2203
|
568 |
msgid "Read"
|
569 |
msgstr "Read"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2204
|
572 |
msgid "Level 10"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2205
|
576 |
msgid "Level 9"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2206
|
580 |
msgid "Level 8"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2207
|
584 |
msgid "Level 7"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2208
|
588 |
msgid "Level 6"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2209
|
592 |
msgid "Level 5"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2210
|
596 |
msgid "Level 4"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2211
|
600 |
msgid "Level 3"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2212
|
604 |
msgid "Level 2"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2213
|
608 |
msgid "Level 1"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2214
|
612 |
msgid "Level 0"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2215
|
616 |
msgid "Edit others pages"
|
617 |
msgstr "Edit altre pagine"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2216
|
620 |
msgid "Edit published pages"
|
621 |
msgstr "Edit pagine pubblicate"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2217
|
624 |
msgid "Publish pages"
|
625 |
msgstr "Pubblica pagine"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2218
|
628 |
msgid "Delete pages"
|
629 |
msgstr "Cancella pagine"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2219
|
632 |
msgid "Delete others pages"
|
633 |
msgstr "Cancella altre pagine"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2220
|
636 |
msgid "Delete published pages"
|
637 |
msgstr "Cancella pagine pubblicate"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2221
|
640 |
msgid "Delete posts"
|
641 |
msgstr "Cancella posts"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2222
|
644 |
msgid "Delete others posts"
|
645 |
msgstr "Cancella altri posts"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2223
|
648 |
msgid "Delete published posts"
|
649 |
msgstr "Cancella i posts pubblicati"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2224
|
652 |
msgid "Delete private posts"
|
653 |
msgstr "Cancella posts privati"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2225
|
656 |
msgid "Edit private posts"
|
657 |
msgstr "Edit posts privati"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2226
|
660 |
msgid "Read private posts"
|
661 |
msgstr "Leggi posts privati"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2227
|
664 |
msgid "Delete private pages"
|
665 |
msgstr "Cancella pagine private"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2228
|
668 |
msgid "Edit private pages"
|
669 |
msgstr "Edit pagine private"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2229
|
672 |
msgid "Read private pages"
|
673 |
msgstr "Legge pagine private"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2230
|
676 |
msgid "Delete users"
|
677 |
msgstr "Cancella utenti"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2231
|
680 |
msgid "Create users"
|
681 |
msgstr "Crea utenti"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2232
|
684 |
msgid "Unfiltered upload"
|
685 |
msgstr "Uploads non filtrati"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2233
|
688 |
msgid "Edit dashboard"
|
689 |
msgstr "Edit dashboard"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2234
|
692 |
msgid "Update plugins"
|
693 |
msgstr "Aggiorna plugins"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2235
|
696 |
msgid "Delete plugins"
|
697 |
msgstr "Cancella plugins"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2236
|
700 |
msgid "Install plugins"
|
701 |
msgstr "Installa plugins"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2237
|
704 |
msgid "Update themes"
|
705 |
msgstr "Aggiorna temi"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2238
|
708 |
msgid "Install themes"
|
709 |
msgstr "Installa temi"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2239
|
712 |
msgid "Update core"
|
713 |
msgstr "Aggiorna nucleo"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2240
|
716 |
msgid "List users"
|
717 |
msgstr "Lista utenti"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2241
|
720 |
msgid "Remove users"
|
721 |
msgstr "Rimuovi utenti"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2242
|
724 |
msgid "Add users"
|
725 |
msgstr "Aggiungi utenti"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2243
|
728 |
msgid "Promote users"
|
729 |
msgstr "Promuovi utenti"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2244
|
732 |
msgid "Edit theme options"
|
733 |
msgstr "Edit opzioni tema"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2245
|
736 |
msgid "Delete themes"
|
737 |
msgstr "Cancella temi"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2246
|
740 |
msgid "Export"
|
741 |
msgstr "Esporta"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2369
|
744 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
745 |
msgstr ""
|
746 |
"Errore: nome funzionalità deve contenere solo caratteri latini o numeri!"
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2382
|
749 |
#, php-format
|
750 |
msgid "Capability %s is added successfully"
|
751 |
msgstr "Funzionalità %s aggiunta!"
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2384
|
754 |
#, php-format
|
755 |
msgid "Capability %s exists already"
|
756 |
msgstr "Funzionalità %s già esiste"
|
757 |
|
758 |
+
#: ../includes/class-ure-lib.php:2413
|
759 |
#, php-format
|
760 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
761 |
msgstr "Errore! Non hai permessi per cancellare questa funzionalità: %s!"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2432
|
764 |
#, php-format
|
765 |
msgid "Capability %s is removed successfully"
|
766 |
msgstr "Funzionalità %s rimossa con successo"
|
767 |
|
768 |
+
#: ../includes/class-ure-lib.php:2536
|
769 |
msgid "Version:"
|
770 |
msgstr "Versione:"
|
771 |
|
772 |
+
#: ../includes/class-ure-lib.php:2537
|
773 |
msgid "Author's website"
|
774 |
msgstr "Sito web dell'autore"
|
775 |
|
776 |
+
#: ../includes/class-ure-lib.php:2538
|
777 |
msgid "Plugin webpage"
|
778 |
msgstr "Webpabe plugin"
|
779 |
|
780 |
+
#: ../includes/class-ure-lib.php:2539
|
781 |
msgid "Plugin download"
|
782 |
msgstr "Download plugin"
|
783 |
|
784 |
+
#: ../includes/class-ure-lib.php:2541
|
785 |
msgid "FAQ"
|
786 |
msgstr "FAQ"
|
787 |
|
788 |
+
#: ../includes/class-ure-lib.php:2589
|
789 |
msgid "None"
|
790 |
msgstr "Nessuno"
|
791 |
|
792 |
+
#: ../includes/class-ure-lib.php:2616
|
793 |
msgid "Delete All Unused Roles"
|
794 |
msgstr "Cancella tutti i Ruoli inutilizzati"
|
795 |
|
796 |
+
#: ../includes/class-ure-lib.php:2640
|
797 |
msgid "— No role for this site —"
|
798 |
msgstr "— Nessun ruolo per questo sito —"
|
799 |
|
817 |
msgid "Other Roles:"
|
818 |
msgstr "Altri Ruoli:"
|
819 |
|
820 |
+
#: ../includes/class-ure-screen-help.php:12
|
821 |
+
#: ../includes/class-ure-screen-help.php:41
|
822 |
+
#: ../includes/class-ure-screen-help.php:60
|
823 |
+
#: ../includes/class-ure-screen-help.php:79
|
824 |
+
msgid "User Role Editor Options page help"
|
825 |
+
msgstr "User Role Editor Opzioni"
|
826 |
+
|
827 |
#: ../includes/class-ure-screen-help.php:16
|
828 |
msgid ""
|
829 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-nl.mo
CHANGED
Binary file
|
lang/ure-nl.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -99,20 +99,20 @@ msgstr ""
|
|
99 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
100 |
"verwijderen"
|
101 |
|
102 |
-
#: ../includes/class-user-role-editor.php:
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Wijzig de rol van gebruikers zonder rol"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "No rights"
|
108 |
msgstr "Geen rechten"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Creëer een nieuwe rol"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
-
#: ../includes/class-user-role-editor.php:
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
|
118 |
|
@@ -125,13 +125,13 @@ msgid "Settings"
|
|
125 |
msgstr "Instellingen"
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:569
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "Changelog"
|
130 |
msgstr "Changelog"
|
131 |
|
132 |
#: ../includes/class-user-role-editor.php:619
|
133 |
#: ../includes/class-user-role-editor.php:648
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "User Rol Editor"
|
@@ -146,53 +146,53 @@ msgstr "User Role Editor opties zijn ge-update"
|
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Standaard Rollen zijn ge-update"
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
-
#: ../includes/class-ure-lib.php:
|
157 |
-
#: ../includes/class-ure-lib.php:
|
158 |
-
#: ../includes/class-ure-lib.php:
|
159 |
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Select All"
|
164 |
msgstr "Alles selecteren"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Alles deselecteren"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Reverse"
|
172 |
msgstr "Omzetten"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Update"
|
176 |
msgstr "Update"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Bevestig toestemming om te mogen updaten"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Nieuwe Rol Toevoegen"
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid "Rename Role"
|
189 |
msgstr "Hernoem Rol"
|
190 |
|
191 |
-
#: ../includes/class-user-role-editor.php:
|
192 |
msgid " Role name (ID) can not be empty!"
|
193 |
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
198 |
"only!"
|
@@ -200,7 +200,7 @@ msgstr ""
|
|
200 |
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
201 |
"bevatten!"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid ""
|
205 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
206 |
"it."
|
@@ -208,38 +208,38 @@ msgstr ""
|
|
208 |
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
209 |
"aan toe."
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Add Role"
|
213 |
msgstr "Rol toevoegen"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Rol verwijderen"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
msgid "Cancel"
|
221 |
msgstr "Annuleren"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Recht toevoegen"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Recht verwijderen"
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid "Reset"
|
234 |
msgstr "Terugkeren naar de basisinstellingen"
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
msgstr ""
|
239 |
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
240 |
"Core"
|
241 |
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid ""
|
244 |
"If any plugins have changed capabilities in any way upon installation (such "
|
245 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -248,7 +248,7 @@ msgstr ""
|
|
248 |
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
249 |
"instellingen worden VERWIJDERD!"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid ""
|
253 |
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
"go to"
|
@@ -256,19 +256,19 @@ msgstr ""
|
|
256 |
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
257 |
"van de plugin kunt herstellen ga naar"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Continue?"
|
261 |
msgstr "Doorgaan?"
|
262 |
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid "Default Role"
|
265 |
msgstr "Standaard Rol"
|
266 |
|
267 |
-
#: ../includes/class-user-role-editor.php:
|
268 |
msgid "Set New Default Role"
|
269 |
msgstr "Maak een nieuwe standaard rol aan"
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid ""
|
273 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
"or other custom code"
|
@@ -276,11 +276,11 @@ msgstr ""
|
|
276 |
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
277 |
"plugins of aangepaste code crashen"
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid " Capability name (ID) can not be empty!"
|
281 |
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
msgid ""
|
285 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
"underscore only!"
|
@@ -288,12 +288,12 @@ msgstr ""
|
|
288 |
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
289 |
"underscores bevatten!!"
|
290 |
|
291 |
-
#: ../includes/class-user-role-editor.php:
|
292 |
-
#: ../includes/class-user-role-editor.php:
|
293 |
msgid "Other Roles"
|
294 |
msgstr "Andere Rollen"
|
295 |
|
296 |
-
#: ../includes/class-user-role-editor.php:
|
297 |
msgid "Edit"
|
298 |
msgstr "Wijzigen"
|
299 |
|
@@ -391,15 +391,24 @@ msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
|
391 |
msgid "User Roles are restored to WordPress default values. "
|
392 |
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
393 |
|
|
|
|
|
|
|
|
|
394 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
|
|
395 |
msgid "Help"
|
396 |
msgstr "Help"
|
397 |
|
398 |
-
#: ../includes/class-ure-lib.php:
|
399 |
msgid "Error is occur. Please check the log file."
|
400 |
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid ""
|
404 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
405 |
"only!"
|
@@ -407,7 +416,7 @@ msgstr ""
|
|
407 |
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
408 |
"underscores bevatten!"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid ""
|
412 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
413 |
"characters to it."
|
@@ -415,378 +424,378 @@ msgstr ""
|
|
415 |
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
416 |
"tekens aan toe."
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s exists already"
|
421 |
msgstr "Deze Rol %s bestaat al"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error is encountered during new role create operation"
|
425 |
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, php-format
|
429 |
msgid "Role %s is created successfully"
|
430 |
msgstr "De Rol %s werd succesvol gecreërd"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Error: Role ID is empty!"
|
434 |
msgstr "Fout: Rol ID is niet gevuld!"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Error: Empty role display name is not allowed."
|
438 |
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, php-format
|
442 |
msgid "Role %s does not exists"
|
443 |
msgstr "Rol %s bestaat niet"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
#, php-format
|
447 |
msgid "Role %s is renamed to %s successfully"
|
448 |
msgstr "Rol %s is succesvol vernoemd naar %s"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Error encountered during role delete operation"
|
452 |
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Unused roles are deleted successfully"
|
456 |
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Role %s is deleted successfully"
|
461 |
msgstr "Rol %s succesvol verwijderd"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Error encountered during default role change operation"
|
465 |
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
#, php-format
|
469 |
msgid "Default role for new users is set to %s successfully"
|
470 |
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Editor"
|
474 |
msgstr "Redacteur"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Author"
|
478 |
msgstr "Editor"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Contributor"
|
482 |
msgstr "Inzender"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Subscriber"
|
486 |
msgstr "Abonnee"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Switch themes"
|
490 |
msgstr "Van thema wisselen"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Edit themes"
|
494 |
msgstr "Thema's bewerken"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Activate plugins"
|
498 |
msgstr "Plugins activeren"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Edit plugins"
|
502 |
msgstr "Plugins bewerken"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Edit users"
|
506 |
msgstr "Gebruikers bewerken"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Edit files"
|
510 |
msgstr "Bestanden bewerken"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Manage options"
|
514 |
msgstr "Opties beheren"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Moderate comments"
|
518 |
msgstr "Reacties beheren"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Manage categories"
|
522 |
msgstr "Categorieën beheren"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Manage links"
|
526 |
msgstr "Links beheren"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Upload files"
|
530 |
msgstr "Bestanden uploaden"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Import"
|
534 |
msgstr "Importeren"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Unfiltered html"
|
538 |
msgstr "Ongefilterd html"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Edit posts"
|
542 |
msgstr "Berichten bewerken"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Edit others posts"
|
546 |
msgstr "Berichten van anderen bewerken"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Edit published posts"
|
550 |
msgstr "Gepubliceerde berichten bewerken"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Publish posts"
|
554 |
msgstr "Berichten publiceren"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Edit pages"
|
558 |
msgstr "Pagina's bewerken"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Read"
|
562 |
msgstr "Lezen"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 10"
|
566 |
msgstr "Level 10"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 9"
|
570 |
msgstr "Level 9"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 8"
|
574 |
msgstr "Level 8"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 7"
|
578 |
msgstr "Level 7"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 6"
|
582 |
msgstr "Level 6"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 5"
|
586 |
msgstr "Level 5"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Level 4"
|
590 |
msgstr "Level 4"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Level 3"
|
594 |
msgstr "Level 3"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Level 2"
|
598 |
msgstr "Level 2"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Level 1"
|
602 |
msgstr "Level 1"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Level 0"
|
606 |
msgstr "Level 0"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Edit others pages"
|
610 |
msgstr "Pagina's van anderen bewerken"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Edit published pages"
|
614 |
msgstr "Gepubliceerde pagina's bewerken"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Publish pages"
|
618 |
msgstr "Pagina's publiceren"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete pages"
|
622 |
msgstr "Pagina's verwijderen"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Delete others pages"
|
626 |
msgstr "Pagina's verwijderen van anderen"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Delete published pages"
|
630 |
msgstr "Gepubliceerde pagina's verwijderen"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete posts"
|
634 |
msgstr "Berichten verwijderen"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete others posts"
|
638 |
msgstr "Verwijder berichten van anderen"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Delete published posts"
|
642 |
msgstr "Gepubliceerde berichten verwijderen"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Delete private posts"
|
646 |
msgstr "Privé berichten verwijderen"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Edit private posts"
|
650 |
msgstr "Privé berichten bewerken"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Read private posts"
|
654 |
msgstr "Privé berichten lezen"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Delete private pages"
|
658 |
msgstr "Privé berichten verwijderen"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Edit private pages"
|
662 |
msgstr "Privé pagina's bewerken"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Read private pages"
|
666 |
msgstr "Privé pagina's lezen"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Delete users"
|
670 |
msgstr "Gebruikers verwijderen"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Create users"
|
674 |
msgstr "Maak gebruikers aan"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Unfiltered upload"
|
678 |
msgstr "Ongefilterd uploaden"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Edit dashboard"
|
682 |
msgstr "Bewerk het dashboard"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Update plugins"
|
686 |
msgstr "Plugins updaten"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Delete plugins"
|
690 |
msgstr "Plugins verwijderen"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Install plugins"
|
694 |
msgstr "Plugins installeren"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Update themes"
|
698 |
msgstr "Thema's updaten"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "Install themes"
|
702 |
msgstr "Thema's installeren"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Update core"
|
706 |
msgstr "Core updaten"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "List users"
|
710 |
msgstr "Lijst van gebruikers aanmaken"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Remove users"
|
714 |
msgstr "Gebruikers verwijderen"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Add users"
|
718 |
msgstr "Gebruikers toevoegen"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Promote users"
|
722 |
msgstr "Gebruikers bevorderen"
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Edit theme options"
|
726 |
msgstr "Thema opties bewerken"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Delete themes"
|
730 |
msgstr "Thema's verwijderen"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
msgid "Export"
|
734 |
msgstr "Exporteren"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
738 |
msgstr ""
|
739 |
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
#, php-format
|
743 |
msgid "Capability %s is added successfully"
|
744 |
msgstr "Recht %s is succesvol toegevoegd"
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
#, php-format
|
748 |
msgid "Capability %s exists already"
|
749 |
msgstr "Recht %s bestaat al"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
#, php-format
|
753 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
754 |
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
#, php-format
|
758 |
msgid "Capability %s is removed successfully"
|
759 |
msgstr "Recht %s is succesvol verwijderd"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Version:"
|
763 |
msgstr "Versie:"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Author's website"
|
767 |
msgstr "Website van de auteur"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "Plugin webpage"
|
771 |
msgstr "Plugin webpagina "
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "Plugin download"
|
775 |
msgstr "Plugin download "
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
msgid "FAQ"
|
779 |
msgstr "FAQ"
|
780 |
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "None"
|
783 |
msgstr "Geen"
|
784 |
|
785 |
-
#: ../includes/class-ure-lib.php:
|
786 |
msgid "Delete All Unused Roles"
|
787 |
msgstr "Verwijder alle niet gebruikte Rollen"
|
788 |
|
789 |
-
#: ../includes/class-ure-lib.php:
|
790 |
msgid "— No role for this site —"
|
791 |
msgstr "— Geen rol voor deze website —"
|
792 |
|
@@ -810,6 +819,14 @@ msgstr "bbPress Rol:"
|
|
810 |
msgid "Other Roles:"
|
811 |
msgstr "Andere Rollen:"
|
812 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
813 |
#: ../includes/class-ure-screen-help.php:16
|
814 |
msgid ""
|
815 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
99 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
100 |
"verwijderen"
|
101 |
|
102 |
+
#: ../includes/class-user-role-editor.php:234
|
103 |
msgid "Change role for users without role"
|
104 |
msgstr "Wijzig de rol van gebruikers zonder rol"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:235
|
107 |
msgid "No rights"
|
108 |
msgstr "Geen rechten"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:236
|
111 |
msgid "Provide new role"
|
112 |
msgstr "Creëer een nieuwe rol"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:320
|
115 |
+
#: ../includes/class-user-role-editor.php:322
|
116 |
msgid "You do not have permission to edit this user."
|
117 |
msgstr "Je hebt toestemming om gegevens van deze gebruiker te wijzigen"
|
118 |
|
125 |
msgstr "Instellingen"
|
126 |
|
127 |
#: ../includes/class-user-role-editor.php:569
|
128 |
+
#: ../includes/class-ure-lib.php:2540
|
129 |
msgid "Changelog"
|
130 |
msgstr "Changelog"
|
131 |
|
132 |
#: ../includes/class-user-role-editor.php:619
|
133 |
#: ../includes/class-user-role-editor.php:648
|
134 |
+
#: ../includes/class-user-role-editor.php:1030
|
135 |
#: ../includes/class-ure-lib.php:337
|
136 |
msgid "User Role Editor"
|
137 |
msgstr "User Rol Editor"
|
146 |
msgid "Default Roles are updated"
|
147 |
msgstr "Standaard Rollen zijn ge-update"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:779
|
150 |
msgid ""
|
151 |
"You do not have sufficient permissions to manage options for User Role "
|
152 |
"Editor."
|
153 |
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:851
|
156 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
157 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
158 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
159 |
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
161 |
|
162 |
+
#: ../includes/class-user-role-editor.php:977
|
163 |
msgid "Select All"
|
164 |
msgstr "Alles selecteren"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:978
|
167 |
msgid "Unselect All"
|
168 |
msgstr "Alles deselecteren"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:979
|
171 |
msgid "Reverse"
|
172 |
msgstr "Omzetten"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:980
|
175 |
msgid "Update"
|
176 |
msgstr "Update"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:981
|
179 |
msgid "Please confirm permissions update"
|
180 |
msgstr "Bevestig toestemming om te mogen updaten"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:982
|
183 |
msgid "Add New Role"
|
184 |
msgstr "Nieuwe Rol Toevoegen"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:983
|
187 |
+
#: ../includes/class-user-role-editor.php:988
|
188 |
msgid "Rename Role"
|
189 |
msgstr "Hernoem Rol"
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:984
|
192 |
msgid " Role name (ID) can not be empty!"
|
193 |
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:985
|
196 |
msgid ""
|
197 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
198 |
"only!"
|
200 |
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
201 |
"bevatten!"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:986
|
204 |
msgid ""
|
205 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
206 |
"it."
|
208 |
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
209 |
"aan toe."
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:987
|
212 |
msgid "Add Role"
|
213 |
msgstr "Rol toevoegen"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:989
|
216 |
msgid "Delete Role"
|
217 |
msgstr "Rol verwijderen"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:990
|
220 |
msgid "Cancel"
|
221 |
msgstr "Annuleren"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:991
|
224 |
msgid "Add Capability"
|
225 |
msgstr "Recht toevoegen"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:992
|
228 |
+
#: ../includes/class-user-role-editor.php:1001
|
229 |
msgid "Delete Capability"
|
230 |
msgstr "Recht verwijderen"
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:993
|
233 |
msgid "Reset"
|
234 |
msgstr "Terugkeren naar de basisinstellingen"
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:994
|
237 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
msgstr ""
|
239 |
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
240 |
"Core"
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:995
|
243 |
msgid ""
|
244 |
"If any plugins have changed capabilities in any way upon installation (such "
|
245 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
248 |
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
249 |
"instellingen worden VERWIJDERD!"
|
250 |
|
251 |
+
#: ../includes/class-user-role-editor.php:996
|
252 |
msgid ""
|
253 |
"For more information on how to undo changes and restore plugin capabilities "
|
254 |
"go to"
|
256 |
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
257 |
"van de plugin kunt herstellen ga naar"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:998
|
260 |
msgid "Continue?"
|
261 |
msgstr "Doorgaan?"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:999
|
264 |
msgid "Default Role"
|
265 |
msgstr "Standaard Rol"
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:1000
|
268 |
msgid "Set New Default Role"
|
269 |
msgstr "Maak een nieuwe standaard rol aan"
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:1002
|
272 |
msgid ""
|
273 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
274 |
"or other custom code"
|
276 |
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
277 |
"plugins of aangepaste code crashen"
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:1003
|
280 |
msgid " Capability name (ID) can not be empty!"
|
281 |
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:1004
|
284 |
msgid ""
|
285 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
286 |
"underscore only!"
|
288 |
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
289 |
"underscores bevatten!!"
|
290 |
|
291 |
+
#: ../includes/class-user-role-editor.php:1033
|
292 |
+
#: ../includes/class-user-role-editor.php:1066
|
293 |
msgid "Other Roles"
|
294 |
msgstr "Andere Rollen"
|
295 |
|
296 |
+
#: ../includes/class-user-role-editor.php:1047
|
297 |
msgid "Edit"
|
298 |
msgstr "Wijzigen"
|
299 |
|
391 |
msgid "User Roles are restored to WordPress default values. "
|
392 |
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1444
|
395 |
+
msgid "read about"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
#: ../includes/class-ure-lib.php:1445
|
399 |
+
#, fuzzy
|
400 |
+
msgid "user capability"
|
401 |
+
msgstr "Wijzigen gebruikelijke rechten"
|
402 |
+
|
403 |
+
#: ../includes/class-ure-lib.php:1446
|
404 |
msgid "Help"
|
405 |
msgstr "Help"
|
406 |
|
407 |
+
#: ../includes/class-ure-lib.php:1914
|
408 |
msgid "Error is occur. Please check the log file."
|
409 |
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
410 |
|
411 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
412 |
msgid ""
|
413 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
414 |
"only!"
|
416 |
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
417 |
"underscores bevatten!"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
420 |
msgid ""
|
421 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
422 |
"characters to it."
|
424 |
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
425 |
"tekens aan toe."
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1979
|
428 |
#, php-format
|
429 |
msgid "Role %s exists already"
|
430 |
msgstr "Deze Rol %s bestaat al"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1994
|
433 |
msgid "Error is encountered during new role create operation"
|
434 |
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1996
|
437 |
#, php-format
|
438 |
msgid "Role %s is created successfully"
|
439 |
msgstr "De Rol %s werd succesvol gecreërd"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:2020
|
442 |
msgid "Error: Role ID is empty!"
|
443 |
msgstr "Fout: Rol ID is niet gevuld!"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:2038
|
446 |
msgid "Error: Empty role display name is not allowed."
|
447 |
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:2045
|
450 |
#, php-format
|
451 |
msgid "Role %s does not exists"
|
452 |
msgstr "Rol %s bestaat niet"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:2053
|
455 |
#, php-format
|
456 |
msgid "Role %s is renamed to %s successfully"
|
457 |
msgstr "Rol %s is succesvol vernoemd naar %s"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:2126
|
460 |
msgid "Error encountered during role delete operation"
|
461 |
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:2128
|
464 |
msgid "Unused roles are deleted successfully"
|
465 |
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:2130
|
468 |
#, php-format
|
469 |
msgid "Role %s is deleted successfully"
|
470 |
msgstr "Rol %s succesvol verwijderd"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:2155
|
473 |
msgid "Error encountered during default role change operation"
|
474 |
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:2161
|
477 |
#, php-format
|
478 |
msgid "Default role for new users is set to %s successfully"
|
479 |
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2180
|
482 |
msgid "Editor"
|
483 |
msgstr "Redacteur"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2181
|
486 |
msgid "Author"
|
487 |
msgstr "Editor"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2182
|
490 |
msgid "Contributor"
|
491 |
msgstr "Inzender"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2183
|
494 |
msgid "Subscriber"
|
495 |
msgstr "Abonnee"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2185
|
498 |
msgid "Switch themes"
|
499 |
msgstr "Van thema wisselen"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2186
|
502 |
msgid "Edit themes"
|
503 |
msgstr "Thema's bewerken"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2187
|
506 |
msgid "Activate plugins"
|
507 |
msgstr "Plugins activeren"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:2188
|
510 |
msgid "Edit plugins"
|
511 |
msgstr "Plugins bewerken"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:2189
|
514 |
msgid "Edit users"
|
515 |
msgstr "Gebruikers bewerken"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:2190
|
518 |
msgid "Edit files"
|
519 |
msgstr "Bestanden bewerken"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:2191
|
522 |
msgid "Manage options"
|
523 |
msgstr "Opties beheren"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:2192
|
526 |
msgid "Moderate comments"
|
527 |
msgstr "Reacties beheren"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:2193
|
530 |
msgid "Manage categories"
|
531 |
msgstr "Categorieën beheren"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:2194
|
534 |
msgid "Manage links"
|
535 |
msgstr "Links beheren"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:2195
|
538 |
msgid "Upload files"
|
539 |
msgstr "Bestanden uploaden"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:2196
|
542 |
msgid "Import"
|
543 |
msgstr "Importeren"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:2197
|
546 |
msgid "Unfiltered html"
|
547 |
msgstr "Ongefilterd html"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:2198
|
550 |
msgid "Edit posts"
|
551 |
msgstr "Berichten bewerken"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:2199
|
554 |
msgid "Edit others posts"
|
555 |
msgstr "Berichten van anderen bewerken"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:2200
|
558 |
msgid "Edit published posts"
|
559 |
msgstr "Gepubliceerde berichten bewerken"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:2201
|
562 |
msgid "Publish posts"
|
563 |
msgstr "Berichten publiceren"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2202
|
566 |
msgid "Edit pages"
|
567 |
msgstr "Pagina's bewerken"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:2203
|
570 |
msgid "Read"
|
571 |
msgstr "Lezen"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2204
|
574 |
msgid "Level 10"
|
575 |
msgstr "Level 10"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2205
|
578 |
msgid "Level 9"
|
579 |
msgstr "Level 9"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:2206
|
582 |
msgid "Level 8"
|
583 |
msgstr "Level 8"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:2207
|
586 |
msgid "Level 7"
|
587 |
msgstr "Level 7"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:2208
|
590 |
msgid "Level 6"
|
591 |
msgstr "Level 6"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2209
|
594 |
msgid "Level 5"
|
595 |
msgstr "Level 5"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2210
|
598 |
msgid "Level 4"
|
599 |
msgstr "Level 4"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2211
|
602 |
msgid "Level 3"
|
603 |
msgstr "Level 3"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2212
|
606 |
msgid "Level 2"
|
607 |
msgstr "Level 2"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2213
|
610 |
msgid "Level 1"
|
611 |
msgstr "Level 1"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2214
|
614 |
msgid "Level 0"
|
615 |
msgstr "Level 0"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2215
|
618 |
msgid "Edit others pages"
|
619 |
msgstr "Pagina's van anderen bewerken"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2216
|
622 |
msgid "Edit published pages"
|
623 |
msgstr "Gepubliceerde pagina's bewerken"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2217
|
626 |
msgid "Publish pages"
|
627 |
msgstr "Pagina's publiceren"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2218
|
630 |
msgid "Delete pages"
|
631 |
msgstr "Pagina's verwijderen"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2219
|
634 |
msgid "Delete others pages"
|
635 |
msgstr "Pagina's verwijderen van anderen"
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2220
|
638 |
msgid "Delete published pages"
|
639 |
msgstr "Gepubliceerde pagina's verwijderen"
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2221
|
642 |
msgid "Delete posts"
|
643 |
msgstr "Berichten verwijderen"
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2222
|
646 |
msgid "Delete others posts"
|
647 |
msgstr "Verwijder berichten van anderen"
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2223
|
650 |
msgid "Delete published posts"
|
651 |
msgstr "Gepubliceerde berichten verwijderen"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2224
|
654 |
msgid "Delete private posts"
|
655 |
msgstr "Privé berichten verwijderen"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2225
|
658 |
msgid "Edit private posts"
|
659 |
msgstr "Privé berichten bewerken"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2226
|
662 |
msgid "Read private posts"
|
663 |
msgstr "Privé berichten lezen"
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2227
|
666 |
msgid "Delete private pages"
|
667 |
msgstr "Privé berichten verwijderen"
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2228
|
670 |
msgid "Edit private pages"
|
671 |
msgstr "Privé pagina's bewerken"
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2229
|
674 |
msgid "Read private pages"
|
675 |
msgstr "Privé pagina's lezen"
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2230
|
678 |
msgid "Delete users"
|
679 |
msgstr "Gebruikers verwijderen"
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2231
|
682 |
msgid "Create users"
|
683 |
msgstr "Maak gebruikers aan"
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2232
|
686 |
msgid "Unfiltered upload"
|
687 |
msgstr "Ongefilterd uploaden"
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2233
|
690 |
msgid "Edit dashboard"
|
691 |
msgstr "Bewerk het dashboard"
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2234
|
694 |
msgid "Update plugins"
|
695 |
msgstr "Plugins updaten"
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2235
|
698 |
msgid "Delete plugins"
|
699 |
msgstr "Plugins verwijderen"
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2236
|
702 |
msgid "Install plugins"
|
703 |
msgstr "Plugins installeren"
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2237
|
706 |
msgid "Update themes"
|
707 |
msgstr "Thema's updaten"
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2238
|
710 |
msgid "Install themes"
|
711 |
msgstr "Thema's installeren"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2239
|
714 |
msgid "Update core"
|
715 |
msgstr "Core updaten"
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2240
|
718 |
msgid "List users"
|
719 |
msgstr "Lijst van gebruikers aanmaken"
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2241
|
722 |
msgid "Remove users"
|
723 |
msgstr "Gebruikers verwijderen"
|
724 |
|
725 |
+
#: ../includes/class-ure-lib.php:2242
|
726 |
msgid "Add users"
|
727 |
msgstr "Gebruikers toevoegen"
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2243
|
730 |
msgid "Promote users"
|
731 |
msgstr "Gebruikers bevorderen"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2244
|
734 |
msgid "Edit theme options"
|
735 |
msgstr "Thema opties bewerken"
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2245
|
738 |
msgid "Delete themes"
|
739 |
msgstr "Thema's verwijderen"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2246
|
742 |
msgid "Export"
|
743 |
msgstr "Exporteren"
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2369
|
746 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
747 |
msgstr ""
|
748 |
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
749 |
|
750 |
+
#: ../includes/class-ure-lib.php:2382
|
751 |
#, php-format
|
752 |
msgid "Capability %s is added successfully"
|
753 |
msgstr "Recht %s is succesvol toegevoegd"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2384
|
756 |
#, php-format
|
757 |
msgid "Capability %s exists already"
|
758 |
msgstr "Recht %s bestaat al"
|
759 |
|
760 |
+
#: ../includes/class-ure-lib.php:2413
|
761 |
#, php-format
|
762 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
763 |
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2432
|
766 |
#, php-format
|
767 |
msgid "Capability %s is removed successfully"
|
768 |
msgstr "Recht %s is succesvol verwijderd"
|
769 |
|
770 |
+
#: ../includes/class-ure-lib.php:2536
|
771 |
msgid "Version:"
|
772 |
msgstr "Versie:"
|
773 |
|
774 |
+
#: ../includes/class-ure-lib.php:2537
|
775 |
msgid "Author's website"
|
776 |
msgstr "Website van de auteur"
|
777 |
|
778 |
+
#: ../includes/class-ure-lib.php:2538
|
779 |
msgid "Plugin webpage"
|
780 |
msgstr "Plugin webpagina "
|
781 |
|
782 |
+
#: ../includes/class-ure-lib.php:2539
|
783 |
msgid "Plugin download"
|
784 |
msgstr "Plugin download "
|
785 |
|
786 |
+
#: ../includes/class-ure-lib.php:2541
|
787 |
msgid "FAQ"
|
788 |
msgstr "FAQ"
|
789 |
|
790 |
+
#: ../includes/class-ure-lib.php:2589
|
791 |
msgid "None"
|
792 |
msgstr "Geen"
|
793 |
|
794 |
+
#: ../includes/class-ure-lib.php:2616
|
795 |
msgid "Delete All Unused Roles"
|
796 |
msgstr "Verwijder alle niet gebruikte Rollen"
|
797 |
|
798 |
+
#: ../includes/class-ure-lib.php:2640
|
799 |
msgid "— No role for this site —"
|
800 |
msgstr "— Geen rol voor deze website —"
|
801 |
|
819 |
msgid "Other Roles:"
|
820 |
msgstr "Andere Rollen:"
|
821 |
|
822 |
+
#: ../includes/class-ure-screen-help.php:12
|
823 |
+
#: ../includes/class-ure-screen-help.php:41
|
824 |
+
#: ../includes/class-ure-screen-help.php:60
|
825 |
+
#: ../includes/class-ure-screen-help.php:79
|
826 |
+
#, fuzzy
|
827 |
+
msgid "User Role Editor Options page help"
|
828 |
+
msgstr "User Rol Editor - Opties"
|
829 |
+
|
830 |
#: ../includes/class-ure-screen-help.php:16
|
831 |
msgid ""
|
832 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-ru_RU.mo
CHANGED
Binary file
|
lang/ure-ru_RU.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -97,20 +97,20 @@ msgid "Allow non super administrators to create, edit, and delete users"
|
|
97 |
msgstr ""
|
98 |
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr "Изменить роль для пользователей без роли"
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "No rights"
|
106 |
msgstr "Нет прав"
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
msgid "Provide new role"
|
110 |
msgstr "Выберите новую роль"
|
111 |
|
112 |
-
#: ../includes/class-user-role-editor.php:
|
113 |
-
#: ../includes/class-user-role-editor.php:
|
114 |
msgid "You do not have permission to edit this user."
|
115 |
msgstr "Нет прав на редактирование этого пользователя"
|
116 |
|
@@ -123,13 +123,13 @@ msgid "Settings"
|
|
123 |
msgstr "Установки"
|
124 |
|
125 |
#: ../includes/class-user-role-editor.php:569
|
126 |
-
#: ../includes/class-ure-lib.php:
|
127 |
msgid "Changelog"
|
128 |
msgstr "Журнал изменений"
|
129 |
|
130 |
#: ../includes/class-user-role-editor.php:619
|
131 |
#: ../includes/class-user-role-editor.php:648
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
#: ../includes/class-ure-lib.php:337
|
134 |
msgid "User Role Editor"
|
135 |
msgstr "Редактор ролей пользователей"
|
@@ -144,53 +144,53 @@ msgstr "Изменения в настройках Редактора ролей
|
|
144 |
msgid "Default Roles are updated"
|
145 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid ""
|
149 |
"You do not have sufficient permissions to manage options for User Role "
|
150 |
"Editor."
|
151 |
msgstr "У вас нет прав на изменение настроек плагина"
|
152 |
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
-
#: ../includes/class-ure-lib.php:
|
155 |
-
#: ../includes/class-ure-lib.php:
|
156 |
-
#: ../includes/class-ure-lib.php:
|
157 |
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Select All"
|
162 |
msgstr "Выбрать все"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Unselect All"
|
166 |
msgstr "Исключить все"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Reverse"
|
170 |
msgstr "Обратить"
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Update"
|
174 |
msgstr "Сохранить"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Please confirm permissions update"
|
178 |
msgstr "Пожалуйста, подтвердите продолжение "
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Add New Role"
|
182 |
msgstr "Добавить новую роль"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid "Rename Role"
|
187 |
msgstr "Переименовать роль"
|
188 |
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid " Role name (ID) can not be empty!"
|
191 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid ""
|
195 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
196 |
"only!"
|
@@ -198,7 +198,7 @@ msgstr ""
|
|
198 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
199 |
"тире и знак подчеркивания"
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid ""
|
203 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
204 |
"it."
|
@@ -206,38 +206,38 @@ msgstr ""
|
|
206 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
207 |
"латинских символов."
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Add Role"
|
211 |
msgstr "Добавить роль"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Delete Role"
|
215 |
msgstr "Удалить роль"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
msgid "Cancel"
|
219 |
msgstr "Отмена"
|
220 |
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Add Capability"
|
223 |
msgstr "Новая возм."
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "Delete Capability"
|
228 |
msgstr "Удалить возм."
|
229 |
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid "Reset"
|
232 |
msgstr "Сброс"
|
233 |
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
236 |
msgstr ""
|
237 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
238 |
"WordPress."
|
239 |
|
240 |
-
#: ../includes/class-user-role-editor.php:
|
241 |
msgid ""
|
242 |
"If any plugins have changed capabilities in any way upon installation (such "
|
243 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -245,7 +245,7 @@ msgstr ""
|
|
245 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
246 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid ""
|
250 |
"For more information on how to undo changes and restore plugin capabilities "
|
251 |
"go to"
|
@@ -253,19 +253,19 @@ msgstr ""
|
|
253 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
254 |
"для плагинов, можно узнать здесь"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid "Continue?"
|
258 |
msgstr "Продолжить?"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid "Default Role"
|
262 |
msgstr "Роль по-умолчанию"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid "Set New Default Role"
|
266 |
msgstr "Установить"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid ""
|
270 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
271 |
"or other custom code"
|
@@ -273,11 +273,11 @@ msgstr ""
|
|
273 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
274 |
"прекращеню работы одного из плагинов или другого кода."
|
275 |
|
276 |
-
#: ../includes/class-user-role-editor.php:
|
277 |
msgid " Capability name (ID) can not be empty!"
|
278 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid ""
|
282 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
283 |
"underscore only!"
|
@@ -285,12 +285,12 @@ msgstr ""
|
|
285 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
286 |
"цифры, знаки подчеркивания"
|
287 |
|
288 |
-
#: ../includes/class-user-role-editor.php:
|
289 |
-
#: ../includes/class-user-role-editor.php:
|
290 |
msgid "Other Roles"
|
291 |
msgstr "Другие роли"
|
292 |
|
293 |
-
#: ../includes/class-user-role-editor.php:
|
294 |
msgid "Edit"
|
295 |
msgstr "Изменить"
|
296 |
|
@@ -386,15 +386,23 @@ msgstr "При изменении прав пользователя произо
|
|
386 |
msgid "User Roles are restored to WordPress default values. "
|
387 |
msgstr "Роли возвращены к начальному состоянию"
|
388 |
|
|
|
|
|
|
|
|
|
389 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
390 |
msgid "Help"
|
391 |
msgstr "Помощь"
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid "Error is occur. Please check the log file."
|
395 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid ""
|
399 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
400 |
"only!"
|
@@ -402,7 +410,7 @@ msgstr ""
|
|
402 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
403 |
"цифры, знак подчеркивания и дефис."
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid ""
|
407 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
408 |
"characters to it."
|
@@ -410,377 +418,377 @@ msgstr ""
|
|
410 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
411 |
"роли с латинских символов."
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
#, php-format
|
415 |
msgid "Role %s exists already"
|
416 |
msgstr "Роль %s уже существует"
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Error is encountered during new role create operation"
|
420 |
msgstr "Произошла ошибка при создании новой роли"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
#, php-format
|
424 |
msgid "Role %s is created successfully"
|
425 |
msgstr "Роль %s создана успешно"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error: Role ID is empty!"
|
429 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error: Empty role display name is not allowed."
|
433 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
#, php-format
|
437 |
msgid "Role %s does not exists"
|
438 |
msgstr "Роль %s не существует"
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, php-format
|
442 |
msgid "Role %s is renamed to %s successfully"
|
443 |
msgstr "Роль %s успешно переименована в %s"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Error encountered during role delete operation"
|
447 |
msgstr "Произошла ошибка при удалении роли"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Unused roles are deleted successfully"
|
451 |
msgstr "Неиспользуемые роли удалены успешно"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
#, php-format
|
455 |
msgid "Role %s is deleted successfully"
|
456 |
msgstr "Роль %s удалена успешно"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Error encountered during default role change operation"
|
460 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
#, php-format
|
464 |
msgid "Default role for new users is set to %s successfully"
|
465 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Editor"
|
469 |
msgstr "Редактор"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Author"
|
473 |
msgstr "Автор"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Contributor"
|
477 |
msgstr "Участник"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Subscriber"
|
481 |
msgstr "Подписчик"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Switch themes"
|
485 |
msgstr "Менять темы"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Edit themes"
|
489 |
msgstr "Изменять темы"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Activate plugins"
|
493 |
msgstr "Активировать плагины"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit plugins"
|
497 |
msgstr "Редактировать плагины"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit users"
|
501 |
msgstr "Изменять пользователей"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Edit files"
|
505 |
msgstr "Изменять файлы"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Manage options"
|
509 |
msgstr "Управлять установками"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Moderate comments"
|
513 |
msgstr "Модерировать комментарии"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage categories"
|
517 |
msgstr "Управлять категориями"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Manage links"
|
521 |
msgstr "Управлять ссылками"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Upload files"
|
525 |
msgstr "Загружать файлы"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Import"
|
529 |
msgstr "Импорт"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Unfiltered html"
|
533 |
msgstr "html без фильтра"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit posts"
|
537 |
msgstr "Изменять статьи"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit others posts"
|
541 |
msgstr "Изменять чужие статьи"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit published posts"
|
545 |
msgstr "Редактировать опубликованные статьи"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Publish posts"
|
549 |
msgstr "Публиковать статьи"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Edit pages"
|
553 |
msgstr "Изменять страницы"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Read"
|
557 |
msgstr "Чтение"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 10"
|
561 |
msgstr "Уровень 10"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 9"
|
565 |
msgstr "Уровень 9"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 8"
|
569 |
msgstr "Уровень 9"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 7"
|
573 |
msgstr "Уровень 7"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 6"
|
577 |
msgstr "Уровень 6"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 5"
|
581 |
msgstr "Уровень 5"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 4"
|
585 |
msgstr "Уровень 4"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 3"
|
589 |
msgstr "Уровень 3"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 2"
|
593 |
msgstr "Уровень 2"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 1"
|
597 |
msgstr "Уровень 1"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 0"
|
601 |
msgstr "Уровень 0"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Edit others pages"
|
605 |
msgstr "Редактировать чужие страницы"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Edit published pages"
|
609 |
msgstr "Редактировать опубликованные страницы"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Publish pages"
|
613 |
msgstr "Публиковать страницы"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete pages"
|
617 |
msgstr "Удалять страницы"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete others pages"
|
621 |
msgstr "Удалить чужие страницы"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete published pages"
|
625 |
msgstr "Удалять опубликованные страницы"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete posts"
|
629 |
msgstr "Удалять статьи"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete others posts"
|
633 |
msgstr "Удалять чужие статьи"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete published posts"
|
637 |
msgstr "Удалять опубликованные статьи"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete private posts"
|
641 |
msgstr "Удалять частные статьи"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Edit private posts"
|
645 |
msgstr "Редактировать частные статьи"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Read private posts"
|
649 |
msgstr "Читать частные статьи"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Delete private pages"
|
653 |
msgstr "Удалять частные страницы"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Edit private pages"
|
657 |
msgstr "Редактировать частные страницы"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Read private pages"
|
661 |
msgstr "Читать частные страницы"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Delete users"
|
665 |
msgstr "Удалять пользователей"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Create users"
|
669 |
msgstr "Создавать пользователей"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Unfiltered upload"
|
673 |
msgstr "Загрузка без фильтра"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Edit dashboard"
|
677 |
msgstr "Изменять панель администратора"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Update plugins"
|
681 |
msgstr "Обновлять плагины"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Delete plugins"
|
685 |
msgstr "Удалять плагины"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Install plugins"
|
689 |
msgstr "Устанавливать плагины"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Update themes"
|
693 |
msgstr "Обновлять темы"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Install themes"
|
697 |
msgstr "Устанавливать темы"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Update core"
|
701 |
msgstr "Обновлять ядро"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "List users"
|
705 |
msgstr "Список пользователей"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Remove users"
|
709 |
msgstr "Удалять пользователей"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Add users"
|
713 |
msgstr "Добавлять пользователей"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Promote users"
|
717 |
msgstr "Продвигать пользователей"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Edit theme options"
|
721 |
msgstr "Изменять настройки темы"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Delete themes"
|
725 |
msgstr "Удалять темы"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Export"
|
729 |
msgstr "Экспорт"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
733 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
#, php-format
|
737 |
msgid "Capability %s is added successfully"
|
738 |
msgstr "Возможность %s добавлена успешно"
|
739 |
|
740 |
-
#: ../includes/class-ure-lib.php:
|
741 |
#, php-format
|
742 |
msgid "Capability %s exists already"
|
743 |
msgstr "Возможность %s уже существует"
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
#, php-format
|
747 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
748 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
749 |
|
750 |
-
#: ../includes/class-ure-lib.php:
|
751 |
#, php-format
|
752 |
msgid "Capability %s is removed successfully"
|
753 |
msgstr "Возможность %s удалена успешно"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Version:"
|
757 |
msgstr "Версия:"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Author's website"
|
761 |
msgstr "Вебсайт автора"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Plugin webpage"
|
765 |
msgstr "Страница плагина"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Plugin download"
|
769 |
msgstr "Загрузить плагин"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "FAQ"
|
773 |
msgstr "Часто задаваемые вопросы"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "None"
|
777 |
msgstr "Нет"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "Delete All Unused Roles"
|
781 |
msgstr "Удалить все неиспользуемые роли"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
784 |
msgid "— No role for this site —"
|
785 |
msgstr "— Нет роли для этого сайта —"
|
786 |
|
@@ -804,6 +812,13 @@ msgstr "Роль bbPress:"
|
|
804 |
msgid "Other Roles:"
|
805 |
msgstr "Другие Роли:"
|
806 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
807 |
#: ../includes/class-ure-screen-help.php:16
|
808 |
msgid ""
|
809 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
97 |
msgstr ""
|
98 |
"Разрешить простым администраторам создавать, изменять, удалять пользователей"
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:234
|
101 |
msgid "Change role for users without role"
|
102 |
msgstr "Изменить роль для пользователей без роли"
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:235
|
105 |
msgid "No rights"
|
106 |
msgstr "Нет прав"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:236
|
109 |
msgid "Provide new role"
|
110 |
msgstr "Выберите новую роль"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:320
|
113 |
+
#: ../includes/class-user-role-editor.php:322
|
114 |
msgid "You do not have permission to edit this user."
|
115 |
msgstr "Нет прав на редактирование этого пользователя"
|
116 |
|
123 |
msgstr "Установки"
|
124 |
|
125 |
#: ../includes/class-user-role-editor.php:569
|
126 |
+
#: ../includes/class-ure-lib.php:2540
|
127 |
msgid "Changelog"
|
128 |
msgstr "Журнал изменений"
|
129 |
|
130 |
#: ../includes/class-user-role-editor.php:619
|
131 |
#: ../includes/class-user-role-editor.php:648
|
132 |
+
#: ../includes/class-user-role-editor.php:1030
|
133 |
#: ../includes/class-ure-lib.php:337
|
134 |
msgid "User Role Editor"
|
135 |
msgstr "Редактор ролей пользователей"
|
144 |
msgid "Default Roles are updated"
|
145 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:779
|
148 |
msgid ""
|
149 |
"You do not have sufficient permissions to manage options for User Role "
|
150 |
"Editor."
|
151 |
msgstr "У вас нет прав на изменение настроек плагина"
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:851
|
154 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
155 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
156 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
157 |
msgid "Insufficient permissions to work with User Role Editor"
|
158 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:977
|
161 |
msgid "Select All"
|
162 |
msgstr "Выбрать все"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:978
|
165 |
msgid "Unselect All"
|
166 |
msgstr "Исключить все"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:979
|
169 |
msgid "Reverse"
|
170 |
msgstr "Обратить"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:980
|
173 |
msgid "Update"
|
174 |
msgstr "Сохранить"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:981
|
177 |
msgid "Please confirm permissions update"
|
178 |
msgstr "Пожалуйста, подтвердите продолжение "
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:982
|
181 |
msgid "Add New Role"
|
182 |
msgstr "Добавить новую роль"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:983
|
185 |
+
#: ../includes/class-user-role-editor.php:988
|
186 |
msgid "Rename Role"
|
187 |
msgstr "Переименовать роль"
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:984
|
190 |
msgid " Role name (ID) can not be empty!"
|
191 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:985
|
194 |
msgid ""
|
195 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
196 |
"only!"
|
198 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
199 |
"тире и знак подчеркивания"
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:986
|
202 |
msgid ""
|
203 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
204 |
"it."
|
206 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
207 |
"латинских символов."
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:987
|
210 |
msgid "Add Role"
|
211 |
msgstr "Добавить роль"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:989
|
214 |
msgid "Delete Role"
|
215 |
msgstr "Удалить роль"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:990
|
218 |
msgid "Cancel"
|
219 |
msgstr "Отмена"
|
220 |
|
221 |
+
#: ../includes/class-user-role-editor.php:991
|
222 |
msgid "Add Capability"
|
223 |
msgstr "Новая возм."
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:992
|
226 |
+
#: ../includes/class-user-role-editor.php:1001
|
227 |
msgid "Delete Capability"
|
228 |
msgstr "Удалить возм."
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:993
|
231 |
msgid "Reset"
|
232 |
msgstr "Сброс"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:994
|
235 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
236 |
msgstr ""
|
237 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
238 |
"WordPress."
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:995
|
241 |
msgid ""
|
242 |
"If any plugins have changed capabilities in any way upon installation (such "
|
243 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
245 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
246 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
247 |
|
248 |
+
#: ../includes/class-user-role-editor.php:996
|
249 |
msgid ""
|
250 |
"For more information on how to undo changes and restore plugin capabilities "
|
251 |
"go to"
|
253 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
254 |
"для плагинов, можно узнать здесь"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:998
|
257 |
msgid "Continue?"
|
258 |
msgstr "Продолжить?"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:999
|
261 |
msgid "Default Role"
|
262 |
msgstr "Роль по-умолчанию"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:1000
|
265 |
msgid "Set New Default Role"
|
266 |
msgstr "Установить"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:1002
|
269 |
msgid ""
|
270 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
271 |
"or other custom code"
|
273 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
274 |
"прекращеню работы одного из плагинов или другого кода."
|
275 |
|
276 |
+
#: ../includes/class-user-role-editor.php:1003
|
277 |
msgid " Capability name (ID) can not be empty!"
|
278 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:1004
|
281 |
msgid ""
|
282 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
283 |
"underscore only!"
|
285 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
286 |
"цифры, знаки подчеркивания"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:1033
|
289 |
+
#: ../includes/class-user-role-editor.php:1066
|
290 |
msgid "Other Roles"
|
291 |
msgstr "Другие роли"
|
292 |
|
293 |
+
#: ../includes/class-user-role-editor.php:1047
|
294 |
msgid "Edit"
|
295 |
msgstr "Изменить"
|
296 |
|
386 |
msgid "User Roles are restored to WordPress default values. "
|
387 |
msgstr "Роли возвращены к начальному состоянию"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1444
|
390 |
+
msgid "read about"
|
391 |
+
msgstr "прочесть о"
|
392 |
+
|
393 |
#: ../includes/class-ure-lib.php:1445
|
394 |
+
msgid "user capability"
|
395 |
+
msgstr "праве пользователя"
|
396 |
+
|
397 |
+
#: ../includes/class-ure-lib.php:1446
|
398 |
msgid "Help"
|
399 |
msgstr "Помощь"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1914
|
402 |
msgid "Error is occur. Please check the log file."
|
403 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
406 |
msgid ""
|
407 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
408 |
"only!"
|
410 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
411 |
"цифры, знак подчеркивания и дефис."
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
414 |
msgid ""
|
415 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
416 |
"characters to it."
|
418 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
419 |
"роли с латинских символов."
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1979
|
422 |
#, php-format
|
423 |
msgid "Role %s exists already"
|
424 |
msgstr "Роль %s уже существует"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1994
|
427 |
msgid "Error is encountered during new role create operation"
|
428 |
msgstr "Произошла ошибка при создании новой роли"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1996
|
431 |
#, php-format
|
432 |
msgid "Role %s is created successfully"
|
433 |
msgstr "Роль %s создана успешно"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2020
|
436 |
msgid "Error: Role ID is empty!"
|
437 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2038
|
440 |
msgid "Error: Empty role display name is not allowed."
|
441 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2045
|
444 |
#, php-format
|
445 |
msgid "Role %s does not exists"
|
446 |
msgstr "Роль %s не существует"
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:2053
|
449 |
#, php-format
|
450 |
msgid "Role %s is renamed to %s successfully"
|
451 |
msgstr "Роль %s успешно переименована в %s"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2126
|
454 |
msgid "Error encountered during role delete operation"
|
455 |
msgstr "Произошла ошибка при удалении роли"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2128
|
458 |
msgid "Unused roles are deleted successfully"
|
459 |
msgstr "Неиспользуемые роли удалены успешно"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2130
|
462 |
#, php-format
|
463 |
msgid "Role %s is deleted successfully"
|
464 |
msgstr "Роль %s удалена успешно"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:2155
|
467 |
msgid "Error encountered during default role change operation"
|
468 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2161
|
471 |
#, php-format
|
472 |
msgid "Default role for new users is set to %s successfully"
|
473 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:2180
|
476 |
msgid "Editor"
|
477 |
msgstr "Редактор"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2181
|
480 |
msgid "Author"
|
481 |
msgstr "Автор"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2182
|
484 |
msgid "Contributor"
|
485 |
msgstr "Участник"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2183
|
488 |
msgid "Subscriber"
|
489 |
msgstr "Подписчик"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2185
|
492 |
msgid "Switch themes"
|
493 |
msgstr "Менять темы"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2186
|
496 |
msgid "Edit themes"
|
497 |
msgstr "Изменять темы"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2187
|
500 |
msgid "Activate plugins"
|
501 |
msgstr "Активировать плагины"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2188
|
504 |
msgid "Edit plugins"
|
505 |
msgstr "Редактировать плагины"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2189
|
508 |
msgid "Edit users"
|
509 |
msgstr "Изменять пользователей"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2190
|
512 |
msgid "Edit files"
|
513 |
msgstr "Изменять файлы"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2191
|
516 |
msgid "Manage options"
|
517 |
msgstr "Управлять установками"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2192
|
520 |
msgid "Moderate comments"
|
521 |
msgstr "Модерировать комментарии"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2193
|
524 |
msgid "Manage categories"
|
525 |
msgstr "Управлять категориями"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2194
|
528 |
msgid "Manage links"
|
529 |
msgstr "Управлять ссылками"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2195
|
532 |
msgid "Upload files"
|
533 |
msgstr "Загружать файлы"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2196
|
536 |
msgid "Import"
|
537 |
msgstr "Импорт"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2197
|
540 |
msgid "Unfiltered html"
|
541 |
msgstr "html без фильтра"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2198
|
544 |
msgid "Edit posts"
|
545 |
msgstr "Изменять статьи"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2199
|
548 |
msgid "Edit others posts"
|
549 |
msgstr "Изменять чужие статьи"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2200
|
552 |
msgid "Edit published posts"
|
553 |
msgstr "Редактировать опубликованные статьи"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2201
|
556 |
msgid "Publish posts"
|
557 |
msgstr "Публиковать статьи"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2202
|
560 |
msgid "Edit pages"
|
561 |
msgstr "Изменять страницы"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2203
|
564 |
msgid "Read"
|
565 |
msgstr "Чтение"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2204
|
568 |
msgid "Level 10"
|
569 |
msgstr "Уровень 10"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2205
|
572 |
msgid "Level 9"
|
573 |
msgstr "Уровень 9"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2206
|
576 |
msgid "Level 8"
|
577 |
msgstr "Уровень 9"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2207
|
580 |
msgid "Level 7"
|
581 |
msgstr "Уровень 7"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2208
|
584 |
msgid "Level 6"
|
585 |
msgstr "Уровень 6"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2209
|
588 |
msgid "Level 5"
|
589 |
msgstr "Уровень 5"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2210
|
592 |
msgid "Level 4"
|
593 |
msgstr "Уровень 4"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2211
|
596 |
msgid "Level 3"
|
597 |
msgstr "Уровень 3"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2212
|
600 |
msgid "Level 2"
|
601 |
msgstr "Уровень 2"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2213
|
604 |
msgid "Level 1"
|
605 |
msgstr "Уровень 1"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2214
|
608 |
msgid "Level 0"
|
609 |
msgstr "Уровень 0"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2215
|
612 |
msgid "Edit others pages"
|
613 |
msgstr "Редактировать чужие страницы"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2216
|
616 |
msgid "Edit published pages"
|
617 |
msgstr "Редактировать опубликованные страницы"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2217
|
620 |
msgid "Publish pages"
|
621 |
msgstr "Публиковать страницы"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2218
|
624 |
msgid "Delete pages"
|
625 |
msgstr "Удалять страницы"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2219
|
628 |
msgid "Delete others pages"
|
629 |
msgstr "Удалить чужие страницы"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2220
|
632 |
msgid "Delete published pages"
|
633 |
msgstr "Удалять опубликованные страницы"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2221
|
636 |
msgid "Delete posts"
|
637 |
msgstr "Удалять статьи"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2222
|
640 |
msgid "Delete others posts"
|
641 |
msgstr "Удалять чужие статьи"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2223
|
644 |
msgid "Delete published posts"
|
645 |
msgstr "Удалять опубликованные статьи"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2224
|
648 |
msgid "Delete private posts"
|
649 |
msgstr "Удалять частные статьи"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2225
|
652 |
msgid "Edit private posts"
|
653 |
msgstr "Редактировать частные статьи"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2226
|
656 |
msgid "Read private posts"
|
657 |
msgstr "Читать частные статьи"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2227
|
660 |
msgid "Delete private pages"
|
661 |
msgstr "Удалять частные страницы"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2228
|
664 |
msgid "Edit private pages"
|
665 |
msgstr "Редактировать частные страницы"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2229
|
668 |
msgid "Read private pages"
|
669 |
msgstr "Читать частные страницы"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2230
|
672 |
msgid "Delete users"
|
673 |
msgstr "Удалять пользователей"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2231
|
676 |
msgid "Create users"
|
677 |
msgstr "Создавать пользователей"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2232
|
680 |
msgid "Unfiltered upload"
|
681 |
msgstr "Загрузка без фильтра"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2233
|
684 |
msgid "Edit dashboard"
|
685 |
msgstr "Изменять панель администратора"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2234
|
688 |
msgid "Update plugins"
|
689 |
msgstr "Обновлять плагины"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2235
|
692 |
msgid "Delete plugins"
|
693 |
msgstr "Удалять плагины"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2236
|
696 |
msgid "Install plugins"
|
697 |
msgstr "Устанавливать плагины"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2237
|
700 |
msgid "Update themes"
|
701 |
msgstr "Обновлять темы"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2238
|
704 |
msgid "Install themes"
|
705 |
msgstr "Устанавливать темы"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2239
|
708 |
msgid "Update core"
|
709 |
msgstr "Обновлять ядро"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2240
|
712 |
msgid "List users"
|
713 |
msgstr "Список пользователей"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2241
|
716 |
msgid "Remove users"
|
717 |
msgstr "Удалять пользователей"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2242
|
720 |
msgid "Add users"
|
721 |
msgstr "Добавлять пользователей"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2243
|
724 |
msgid "Promote users"
|
725 |
msgstr "Продвигать пользователей"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2244
|
728 |
msgid "Edit theme options"
|
729 |
msgstr "Изменять настройки темы"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2245
|
732 |
msgid "Delete themes"
|
733 |
msgstr "Удалять темы"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2246
|
736 |
msgid "Export"
|
737 |
msgstr "Экспорт"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2369
|
740 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
741 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2382
|
744 |
#, php-format
|
745 |
msgid "Capability %s is added successfully"
|
746 |
msgstr "Возможность %s добавлена успешно"
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2384
|
749 |
#, php-format
|
750 |
msgid "Capability %s exists already"
|
751 |
msgstr "Возможность %s уже существует"
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2413
|
754 |
#, php-format
|
755 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
756 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
757 |
|
758 |
+
#: ../includes/class-ure-lib.php:2432
|
759 |
#, php-format
|
760 |
msgid "Capability %s is removed successfully"
|
761 |
msgstr "Возможность %s удалена успешно"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2536
|
764 |
msgid "Version:"
|
765 |
msgstr "Версия:"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2537
|
768 |
msgid "Author's website"
|
769 |
msgstr "Вебсайт автора"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2538
|
772 |
msgid "Plugin webpage"
|
773 |
msgstr "Страница плагина"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2539
|
776 |
msgid "Plugin download"
|
777 |
msgstr "Загрузить плагин"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2541
|
780 |
msgid "FAQ"
|
781 |
msgstr "Часто задаваемые вопросы"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2589
|
784 |
msgid "None"
|
785 |
msgstr "Нет"
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2616
|
788 |
msgid "Delete All Unused Roles"
|
789 |
msgstr "Удалить все неиспользуемые роли"
|
790 |
|
791 |
+
#: ../includes/class-ure-lib.php:2640
|
792 |
msgid "— No role for this site —"
|
793 |
msgstr "— Нет роли для этого сайта —"
|
794 |
|
812 |
msgid "Other Roles:"
|
813 |
msgstr "Другие Роли:"
|
814 |
|
815 |
+
#: ../includes/class-ure-screen-help.php:12
|
816 |
+
#: ../includes/class-ure-screen-help.php:41
|
817 |
+
#: ../includes/class-ure-screen-help.php:60
|
818 |
+
#: ../includes/class-ure-screen-help.php:79
|
819 |
+
msgid "User Role Editor Options page help"
|
820 |
+
msgstr "Редактор ролей пользователей - Опции - помощь"
|
821 |
+
|
822 |
#: ../includes/class-ure-screen-help.php:16
|
823 |
msgid ""
|
824 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure-tr_TR.mo
CHANGED
Binary file
|
lang/ure-tr_TR.po
CHANGED
@@ -5,8 +5,8 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2015-02-
|
9 |
-
"PO-Revision-Date: 2015-02-
|
10 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
11 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/user-"
|
12 |
"role-editor/language/tr_TR/)\n"
|
@@ -103,20 +103,20 @@ msgstr ""
|
|
103 |
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
104 |
"izin ver"
|
105 |
|
106 |
-
#: ../includes/class-user-role-editor.php:
|
107 |
msgid "Change role for users without role"
|
108 |
msgstr "Rolsüz kullanıcıların rolünü değiştir"
|
109 |
|
110 |
-
#: ../includes/class-user-role-editor.php:
|
111 |
msgid "No rights"
|
112 |
msgstr "İzin yok"
|
113 |
|
114 |
-
#: ../includes/class-user-role-editor.php:
|
115 |
msgid "Provide new role"
|
116 |
msgstr "Yeni rol sağla"
|
117 |
|
118 |
-
#: ../includes/class-user-role-editor.php:
|
119 |
-
#: ../includes/class-user-role-editor.php:
|
120 |
msgid "You do not have permission to edit this user."
|
121 |
msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
|
122 |
|
@@ -129,13 +129,13 @@ msgid "Settings"
|
|
129 |
msgstr "Ayarlar"
|
130 |
|
131 |
#: ../includes/class-user-role-editor.php:569
|
132 |
-
#: ../includes/class-ure-lib.php:
|
133 |
msgid "Changelog"
|
134 |
msgstr "Değişiklik Günlüğü"
|
135 |
|
136 |
#: ../includes/class-user-role-editor.php:619
|
137 |
#: ../includes/class-user-role-editor.php:648
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
#: ../includes/class-ure-lib.php:337
|
140 |
msgid "User Role Editor"
|
141 |
msgstr "Kullanıcı Rol Editörü"
|
@@ -150,53 +150,53 @@ msgstr "Kullanıcı Rol Editörü seçenekleri güncellendi"
|
|
150 |
msgid "Default Roles are updated"
|
151 |
msgstr "Varsayılan Roller güncellendi"
|
152 |
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
msgid ""
|
155 |
"You do not have sufficient permissions to manage options for User Role "
|
156 |
"Editor."
|
157 |
msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
-
#: ../includes/class-ure-lib.php:
|
161 |
-
#: ../includes/class-ure-lib.php:
|
162 |
-
#: ../includes/class-ure-lib.php:
|
163 |
msgid "Insufficient permissions to work with User Role Editor"
|
164 |
msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Select All"
|
168 |
msgstr "Hepsini Seç"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Unselect All"
|
172 |
msgstr "Hiçbirini Seçme"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Reverse"
|
176 |
msgstr "Evir"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
msgid "Update"
|
180 |
msgstr "Güncelle"
|
181 |
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid "Please confirm permissions update"
|
184 |
msgstr "Lütfen izin güncellemesini onaylayın"
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
msgid "Add New Role"
|
188 |
msgstr "Yeni Rol Ekle"
|
189 |
|
190 |
-
#: ../includes/class-user-role-editor.php:
|
191 |
-
#: ../includes/class-user-role-editor.php:
|
192 |
msgid "Rename Role"
|
193 |
msgstr "Rol İsmi Değiştir"
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid " Role name (ID) can not be empty!"
|
197 |
msgstr "Rol ismi (ID) boş olamaz!"
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid ""
|
201 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
202 |
"only!"
|
@@ -204,44 +204,44 @@ msgstr ""
|
|
204 |
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
205 |
"çizgiler içermeli!"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid ""
|
209 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
210 |
"it."
|
211 |
msgstr ""
|
212 |
"WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Add Role"
|
216 |
msgstr "Rol Ekle"
|
217 |
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Delete Role"
|
220 |
msgstr "Rol Sil"
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Cancel"
|
224 |
msgstr "İptal"
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "Add Capability"
|
228 |
msgstr "Kabiliyet Ekle"
|
229 |
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid "Delete Capability"
|
233 |
msgstr "Kabiliyet Sil"
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid "Reset"
|
237 |
msgstr "Sıfırla"
|
238 |
|
239 |
-
#: ../includes/class-user-role-editor.php:
|
240 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
241 |
msgstr ""
|
242 |
"TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid ""
|
246 |
"If any plugins have changed capabilities in any way upon installation (such "
|
247 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -249,7 +249,7 @@ msgstr ""
|
|
249 |
"Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
|
250 |
"yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid ""
|
254 |
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
"go to"
|
@@ -257,19 +257,19 @@ msgstr ""
|
|
257 |
"Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
|
258 |
"daha fazla bilgi için gideceğiniz adres:"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid "Continue?"
|
262 |
msgstr "Devam mı?"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid "Default Role"
|
266 |
msgstr "Varsayılan Rol"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid "Set New Default Role"
|
270 |
msgstr "Yeni Varsayılan Rol Belirle"
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid ""
|
274 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
"or other custom code"
|
@@ -277,11 +277,11 @@ msgstr ""
|
|
277 |
"Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
|
278 |
"diğer özel kodları bozabilir"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid " Capability name (ID) can not be empty!"
|
282 |
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
283 |
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid ""
|
286 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
"underscore only!"
|
@@ -289,12 +289,12 @@ msgstr ""
|
|
289 |
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
290 |
"çizgiler içermeli!"
|
291 |
|
292 |
-
#: ../includes/class-user-role-editor.php:
|
293 |
-
#: ../includes/class-user-role-editor.php:
|
294 |
msgid "Other Roles"
|
295 |
msgstr "Diğer Roller"
|
296 |
|
297 |
-
#: ../includes/class-user-role-editor.php:
|
298 |
msgid "Edit"
|
299 |
msgstr "Düzenle"
|
300 |
|
@@ -390,15 +390,23 @@ msgstr "Kullanıcı güncellemesi esnasında hata meydana geldi"
|
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
|
392 |
|
|
|
|
|
|
|
|
|
393 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
394 |
msgid "Help"
|
395 |
msgstr "Yardım"
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Error is occur. Please check the log file."
|
399 |
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
404 |
"only!"
|
@@ -406,7 +414,7 @@ msgstr ""
|
|
406 |
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
407 |
"çizgiler içermeli!"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid ""
|
411 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
412 |
"characters to it."
|
@@ -414,377 +422,377 @@ msgstr ""
|
|
414 |
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
415 |
"karakterleri ekleyin."
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
#, php-format
|
419 |
msgid "Role %s exists already"
|
420 |
msgstr "%s rolü zaten mevcut"
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
msgid "Error is encountered during new role create operation"
|
424 |
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, php-format
|
428 |
msgid "Role %s is created successfully"
|
429 |
msgstr "%s rolü başarıyla oluşturuldu"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error: Role ID is empty!"
|
433 |
msgstr "Hata: Rol ID'si boş!"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Error: Empty role display name is not allowed."
|
437 |
msgstr "Hata: Boş görünen rol adına izin yok."
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
#, php-format
|
441 |
msgid "Role %s does not exists"
|
442 |
msgstr "%s rolü mevcut değil"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
#, php-format
|
446 |
msgid "Role %s is renamed to %s successfully"
|
447 |
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Error encountered during role delete operation"
|
451 |
msgstr "Rol silme işlemi sırasında hata oluştu"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Unused roles are deleted successfully"
|
455 |
msgstr "Kullanılmayan roller başarıyla silindi"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
#, php-format
|
459 |
msgid "Role %s is deleted successfully"
|
460 |
msgstr "%s rolü başarıyla silindi"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Error encountered during default role change operation"
|
464 |
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
#, php-format
|
468 |
msgid "Default role for new users is set to %s successfully"
|
469 |
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Editor"
|
473 |
msgstr "Editör"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Author"
|
477 |
msgstr "Yazar"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Contributor"
|
481 |
msgstr "İçerik Sağlayıcı"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Subscriber"
|
485 |
msgstr "Abone"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Switch themes"
|
489 |
msgstr "Tema değiştirme"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit themes"
|
493 |
msgstr "Tema düzenleme"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Activate plugins"
|
497 |
msgstr "Eklenti etkinleştirme"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit plugins"
|
501 |
msgstr "Eklenti düzenleme"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Edit users"
|
505 |
msgstr "Kullanıcı düzenleme"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Edit files"
|
509 |
msgstr "Dosya düzenleme"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage options"
|
513 |
msgstr "Seçenek yönetme"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Moderate comments"
|
517 |
msgstr "Yorum ılıtma"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Manage categories"
|
521 |
msgstr "Kategori yönetme"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Manage links"
|
525 |
msgstr "Bağlantı yönetme"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Upload files"
|
529 |
msgstr "Dosya yükleme"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Import"
|
533 |
msgstr "İçe Aktarma"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Unfiltered html"
|
537 |
msgstr "Süzülmemiş html"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit posts"
|
541 |
msgstr "Yazı düzenleme"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit others posts"
|
545 |
msgstr "Başkalarının yazılarını düzenleme"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit published posts"
|
549 |
msgstr "Yayımdaki yazıları düzenleme"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Publish posts"
|
553 |
msgstr "Yazı yayımlama"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Edit pages"
|
557 |
msgstr "Sayfa düzenleme"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Read"
|
561 |
msgstr "Okuma"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 10"
|
565 |
msgstr "Seviye 10"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 9"
|
569 |
msgstr "Seviye 9"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 8"
|
573 |
msgstr "Seviye 8"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 7"
|
577 |
msgstr "Seviye 7"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 6"
|
581 |
msgstr "Seviye 6"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 5"
|
585 |
msgstr "Seviye 5"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 4"
|
589 |
msgstr "Seviye 4"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 3"
|
593 |
msgstr "Seviye 3"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 2"
|
597 |
msgstr "Seviye 2"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Level 1"
|
601 |
msgstr "Seviye 1"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Level 0"
|
605 |
msgstr "Seviye 0"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Edit others pages"
|
609 |
msgstr "Başkalarının sayfalarını düzenleme"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Edit published pages"
|
613 |
msgstr "Yayımdaki sayfaları düzenleme"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Publish pages"
|
617 |
msgstr "Sayfa yayımlama"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete pages"
|
621 |
msgstr "Sayfa silme"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete others pages"
|
625 |
msgstr "Başkalarının sayfalarını silme"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete published pages"
|
629 |
msgstr "Yayımdaki sayfaları silme"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete posts"
|
633 |
msgstr "Yazı silme"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete others posts"
|
637 |
msgstr "Başkalarının yazılarını silme"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete published posts"
|
641 |
msgstr "Yayımdaki yazıları silme"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete private posts"
|
645 |
msgstr "Kişisel yazıları silme"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Edit private posts"
|
649 |
msgstr "Kişisel yazıları düzenleme"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read private posts"
|
653 |
msgstr "Kişisel yazıları okuma"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Delete private pages"
|
657 |
msgstr "Kişisel sayfaları silme"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Edit private pages"
|
661 |
msgstr "Kişisel sayfaları düzenleme"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Read private pages"
|
665 |
msgstr "Kişisel sayfaları okuma"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Delete users"
|
669 |
msgstr "Kullanıcı silme"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Create users"
|
673 |
msgstr "Kullanıcı oluşturma"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Unfiltered upload"
|
677 |
msgstr "Süzülmemiş yükleme"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Edit dashboard"
|
681 |
msgstr "Panel düzenleme"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Update plugins"
|
685 |
msgstr "Eklenti güncelleme"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Delete plugins"
|
689 |
msgstr "Eklenti silme"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install plugins"
|
693 |
msgstr "Eklenti kurma"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update themes"
|
697 |
msgstr "Tema güncelleme"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Install themes"
|
701 |
msgstr "Tema kurma"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Update core"
|
705 |
msgstr "Çekirdek güncelleme"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "List users"
|
709 |
msgstr "Kullanıcı listeleme"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Remove users"
|
713 |
msgstr "Kullanıcı kaldırma"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Add users"
|
717 |
msgstr "Kullanıcı ekleme"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Promote users"
|
721 |
msgstr "Kullanıcı teşvik etme"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Edit theme options"
|
725 |
msgstr "Tema seçenekleri düzenleme"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Delete themes"
|
729 |
msgstr "Tema silme"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Export"
|
733 |
msgstr "Dışa Aktarma"
|
734 |
|
735 |
-
#: ../includes/class-ure-lib.php:
|
736 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
737 |
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
#, php-format
|
741 |
msgid "Capability %s is added successfully"
|
742 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
#, php-format
|
746 |
msgid "Capability %s exists already"
|
747 |
msgstr "%s kabiliyeti zaten mevcut"
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
#, php-format
|
751 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
752 |
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
753 |
|
754 |
-
#: ../includes/class-ure-lib.php:
|
755 |
#, php-format
|
756 |
msgid "Capability %s is removed successfully"
|
757 |
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Version:"
|
761 |
msgstr "Sürüm:"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Author's website"
|
765 |
msgstr "Yazarın web sitesi"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "Plugin webpage"
|
769 |
msgstr "Eklenti web sayfası"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Plugin download"
|
773 |
msgstr "Eklenti indirme"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "FAQ"
|
777 |
msgstr "S.S.S."
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "None"
|
781 |
msgstr "Hiçbiri"
|
782 |
|
783 |
-
#: ../includes/class-ure-lib.php:
|
784 |
msgid "Delete All Unused Roles"
|
785 |
msgstr "Tüm Kullanılmayan Rolleri Sil"
|
786 |
|
787 |
-
#: ../includes/class-ure-lib.php:
|
788 |
msgid "— No role for this site —"
|
789 |
msgstr "— Bu site için hiç rol yok —"
|
790 |
|
@@ -808,6 +816,13 @@ msgstr "bbPress Rolü:"
|
|
808 |
msgid "Other Roles:"
|
809 |
msgstr "Diğer Roller:"
|
810 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
#: ../includes/class-ure-screen-help.php:16
|
812 |
msgid ""
|
813 |
"turn this option on in order to make the \"Administrator\" role available at "
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
9 |
+
"PO-Revision-Date: 2015-02-23 12:13+0700\n"
|
10 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
11 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/user-"
|
12 |
"role-editor/language/tr_TR/)\n"
|
103 |
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
104 |
"izin ver"
|
105 |
|
106 |
+
#: ../includes/class-user-role-editor.php:234
|
107 |
msgid "Change role for users without role"
|
108 |
msgstr "Rolsüz kullanıcıların rolünü değiştir"
|
109 |
|
110 |
+
#: ../includes/class-user-role-editor.php:235
|
111 |
msgid "No rights"
|
112 |
msgstr "İzin yok"
|
113 |
|
114 |
+
#: ../includes/class-user-role-editor.php:236
|
115 |
msgid "Provide new role"
|
116 |
msgstr "Yeni rol sağla"
|
117 |
|
118 |
+
#: ../includes/class-user-role-editor.php:320
|
119 |
+
#: ../includes/class-user-role-editor.php:322
|
120 |
msgid "You do not have permission to edit this user."
|
121 |
msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
|
122 |
|
129 |
msgstr "Ayarlar"
|
130 |
|
131 |
#: ../includes/class-user-role-editor.php:569
|
132 |
+
#: ../includes/class-ure-lib.php:2540
|
133 |
msgid "Changelog"
|
134 |
msgstr "Değişiklik Günlüğü"
|
135 |
|
136 |
#: ../includes/class-user-role-editor.php:619
|
137 |
#: ../includes/class-user-role-editor.php:648
|
138 |
+
#: ../includes/class-user-role-editor.php:1030
|
139 |
#: ../includes/class-ure-lib.php:337
|
140 |
msgid "User Role Editor"
|
141 |
msgstr "Kullanıcı Rol Editörü"
|
150 |
msgid "Default Roles are updated"
|
151 |
msgstr "Varsayılan Roller güncellendi"
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:779
|
154 |
msgid ""
|
155 |
"You do not have sufficient permissions to manage options for User Role "
|
156 |
"Editor."
|
157 |
msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:851
|
160 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
161 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
162 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
163 |
msgid "Insufficient permissions to work with User Role Editor"
|
164 |
msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:977
|
167 |
msgid "Select All"
|
168 |
msgstr "Hepsini Seç"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:978
|
171 |
msgid "Unselect All"
|
172 |
msgstr "Hiçbirini Seçme"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:979
|
175 |
msgid "Reverse"
|
176 |
msgstr "Evir"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:980
|
179 |
msgid "Update"
|
180 |
msgstr "Güncelle"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:981
|
183 |
msgid "Please confirm permissions update"
|
184 |
msgstr "Lütfen izin güncellemesini onaylayın"
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:982
|
187 |
msgid "Add New Role"
|
188 |
msgstr "Yeni Rol Ekle"
|
189 |
|
190 |
+
#: ../includes/class-user-role-editor.php:983
|
191 |
+
#: ../includes/class-user-role-editor.php:988
|
192 |
msgid "Rename Role"
|
193 |
msgstr "Rol İsmi Değiştir"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:984
|
196 |
msgid " Role name (ID) can not be empty!"
|
197 |
msgstr "Rol ismi (ID) boş olamaz!"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:985
|
200 |
msgid ""
|
201 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
202 |
"only!"
|
204 |
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
205 |
"çizgiler içermeli!"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:986
|
208 |
msgid ""
|
209 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
210 |
"it."
|
211 |
msgstr ""
|
212 |
"WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:987
|
215 |
msgid "Add Role"
|
216 |
msgstr "Rol Ekle"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:989
|
219 |
msgid "Delete Role"
|
220 |
msgstr "Rol Sil"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:990
|
223 |
msgid "Cancel"
|
224 |
msgstr "İptal"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:991
|
227 |
msgid "Add Capability"
|
228 |
msgstr "Kabiliyet Ekle"
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:992
|
231 |
+
#: ../includes/class-user-role-editor.php:1001
|
232 |
msgid "Delete Capability"
|
233 |
msgstr "Kabiliyet Sil"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:993
|
236 |
msgid "Reset"
|
237 |
msgstr "Sıfırla"
|
238 |
|
239 |
+
#: ../includes/class-user-role-editor.php:994
|
240 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
241 |
msgstr ""
|
242 |
"TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:995
|
245 |
msgid ""
|
246 |
"If any plugins have changed capabilities in any way upon installation (such "
|
247 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
249 |
"Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
|
250 |
"yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:996
|
253 |
msgid ""
|
254 |
"For more information on how to undo changes and restore plugin capabilities "
|
255 |
"go to"
|
257 |
"Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
|
258 |
"daha fazla bilgi için gideceğiniz adres:"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:998
|
261 |
msgid "Continue?"
|
262 |
msgstr "Devam mı?"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:999
|
265 |
msgid "Default Role"
|
266 |
msgstr "Varsayılan Rol"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:1000
|
269 |
msgid "Set New Default Role"
|
270 |
msgstr "Yeni Varsayılan Rol Belirle"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:1002
|
273 |
msgid ""
|
274 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
275 |
"or other custom code"
|
277 |
"Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
|
278 |
"diğer özel kodları bozabilir"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:1003
|
281 |
msgid " Capability name (ID) can not be empty!"
|
282 |
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
283 |
|
284 |
+
#: ../includes/class-user-role-editor.php:1004
|
285 |
msgid ""
|
286 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
287 |
"underscore only!"
|
289 |
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
290 |
"çizgiler içermeli!"
|
291 |
|
292 |
+
#: ../includes/class-user-role-editor.php:1033
|
293 |
+
#: ../includes/class-user-role-editor.php:1066
|
294 |
msgid "Other Roles"
|
295 |
msgstr "Diğer Roller"
|
296 |
|
297 |
+
#: ../includes/class-user-role-editor.php:1047
|
298 |
msgid "Edit"
|
299 |
msgstr "Düzenle"
|
300 |
|
390 |
msgid "User Roles are restored to WordPress default values. "
|
391 |
msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1444
|
394 |
+
msgid "read about"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
#: ../includes/class-ure-lib.php:1445
|
398 |
+
msgid "user capability"
|
399 |
+
msgstr ""
|
400 |
+
|
401 |
+
#: ../includes/class-ure-lib.php:1446
|
402 |
msgid "Help"
|
403 |
msgstr "Yardım"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1914
|
406 |
msgid "Error is occur. Please check the log file."
|
407 |
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
410 |
msgid ""
|
411 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
412 |
"only!"
|
414 |
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
415 |
"çizgiler içermeli!"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
418 |
msgid ""
|
419 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
420 |
"characters to it."
|
422 |
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
423 |
"karakterleri ekleyin."
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1979
|
426 |
#, php-format
|
427 |
msgid "Role %s exists already"
|
428 |
msgstr "%s rolü zaten mevcut"
|
429 |
|
430 |
+
#: ../includes/class-ure-lib.php:1994
|
431 |
msgid "Error is encountered during new role create operation"
|
432 |
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
433 |
|
434 |
+
#: ../includes/class-ure-lib.php:1996
|
435 |
#, php-format
|
436 |
msgid "Role %s is created successfully"
|
437 |
msgstr "%s rolü başarıyla oluşturuldu"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2020
|
440 |
msgid "Error: Role ID is empty!"
|
441 |
msgstr "Hata: Rol ID'si boş!"
|
442 |
|
443 |
+
#: ../includes/class-ure-lib.php:2038
|
444 |
msgid "Error: Empty role display name is not allowed."
|
445 |
msgstr "Hata: Boş görünen rol adına izin yok."
|
446 |
|
447 |
+
#: ../includes/class-ure-lib.php:2045
|
448 |
#, php-format
|
449 |
msgid "Role %s does not exists"
|
450 |
msgstr "%s rolü mevcut değil"
|
451 |
|
452 |
+
#: ../includes/class-ure-lib.php:2053
|
453 |
#, php-format
|
454 |
msgid "Role %s is renamed to %s successfully"
|
455 |
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2126
|
458 |
msgid "Error encountered during role delete operation"
|
459 |
msgstr "Rol silme işlemi sırasında hata oluştu"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2128
|
462 |
msgid "Unused roles are deleted successfully"
|
463 |
msgstr "Kullanılmayan roller başarıyla silindi"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2130
|
466 |
#, php-format
|
467 |
msgid "Role %s is deleted successfully"
|
468 |
msgstr "%s rolü başarıyla silindi"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:2155
|
471 |
msgid "Error encountered during default role change operation"
|
472 |
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:2161
|
475 |
#, php-format
|
476 |
msgid "Default role for new users is set to %s successfully"
|
477 |
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:2180
|
480 |
msgid "Editor"
|
481 |
msgstr "Editör"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:2181
|
484 |
msgid "Author"
|
485 |
msgstr "Yazar"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:2182
|
488 |
msgid "Contributor"
|
489 |
msgstr "İçerik Sağlayıcı"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:2183
|
492 |
msgid "Subscriber"
|
493 |
msgstr "Abone"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:2185
|
496 |
msgid "Switch themes"
|
497 |
msgstr "Tema değiştirme"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:2186
|
500 |
msgid "Edit themes"
|
501 |
msgstr "Tema düzenleme"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:2187
|
504 |
msgid "Activate plugins"
|
505 |
msgstr "Eklenti etkinleştirme"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:2188
|
508 |
msgid "Edit plugins"
|
509 |
msgstr "Eklenti düzenleme"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:2189
|
512 |
msgid "Edit users"
|
513 |
msgstr "Kullanıcı düzenleme"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:2190
|
516 |
msgid "Edit files"
|
517 |
msgstr "Dosya düzenleme"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:2191
|
520 |
msgid "Manage options"
|
521 |
msgstr "Seçenek yönetme"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:2192
|
524 |
msgid "Moderate comments"
|
525 |
msgstr "Yorum ılıtma"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:2193
|
528 |
msgid "Manage categories"
|
529 |
msgstr "Kategori yönetme"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:2194
|
532 |
msgid "Manage links"
|
533 |
msgstr "Bağlantı yönetme"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:2195
|
536 |
msgid "Upload files"
|
537 |
msgstr "Dosya yükleme"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:2196
|
540 |
msgid "Import"
|
541 |
msgstr "İçe Aktarma"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:2197
|
544 |
msgid "Unfiltered html"
|
545 |
msgstr "Süzülmemiş html"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:2198
|
548 |
msgid "Edit posts"
|
549 |
msgstr "Yazı düzenleme"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:2199
|
552 |
msgid "Edit others posts"
|
553 |
msgstr "Başkalarının yazılarını düzenleme"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:2200
|
556 |
msgid "Edit published posts"
|
557 |
msgstr "Yayımdaki yazıları düzenleme"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:2201
|
560 |
msgid "Publish posts"
|
561 |
msgstr "Yazı yayımlama"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:2202
|
564 |
msgid "Edit pages"
|
565 |
msgstr "Sayfa düzenleme"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:2203
|
568 |
msgid "Read"
|
569 |
msgstr "Okuma"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:2204
|
572 |
msgid "Level 10"
|
573 |
msgstr "Seviye 10"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:2205
|
576 |
msgid "Level 9"
|
577 |
msgstr "Seviye 9"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:2206
|
580 |
msgid "Level 8"
|
581 |
msgstr "Seviye 8"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:2207
|
584 |
msgid "Level 7"
|
585 |
msgstr "Seviye 7"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:2208
|
588 |
msgid "Level 6"
|
589 |
msgstr "Seviye 6"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:2209
|
592 |
msgid "Level 5"
|
593 |
msgstr "Seviye 5"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:2210
|
596 |
msgid "Level 4"
|
597 |
msgstr "Seviye 4"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:2211
|
600 |
msgid "Level 3"
|
601 |
msgstr "Seviye 3"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:2212
|
604 |
msgid "Level 2"
|
605 |
msgstr "Seviye 2"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:2213
|
608 |
msgid "Level 1"
|
609 |
msgstr "Seviye 1"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:2214
|
612 |
msgid "Level 0"
|
613 |
msgstr "Seviye 0"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:2215
|
616 |
msgid "Edit others pages"
|
617 |
msgstr "Başkalarının sayfalarını düzenleme"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:2216
|
620 |
msgid "Edit published pages"
|
621 |
msgstr "Yayımdaki sayfaları düzenleme"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:2217
|
624 |
msgid "Publish pages"
|
625 |
msgstr "Sayfa yayımlama"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:2218
|
628 |
msgid "Delete pages"
|
629 |
msgstr "Sayfa silme"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:2219
|
632 |
msgid "Delete others pages"
|
633 |
msgstr "Başkalarının sayfalarını silme"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:2220
|
636 |
msgid "Delete published pages"
|
637 |
msgstr "Yayımdaki sayfaları silme"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:2221
|
640 |
msgid "Delete posts"
|
641 |
msgstr "Yazı silme"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2222
|
644 |
msgid "Delete others posts"
|
645 |
msgstr "Başkalarının yazılarını silme"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2223
|
648 |
msgid "Delete published posts"
|
649 |
msgstr "Yayımdaki yazıları silme"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2224
|
652 |
msgid "Delete private posts"
|
653 |
msgstr "Kişisel yazıları silme"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2225
|
656 |
msgid "Edit private posts"
|
657 |
msgstr "Kişisel yazıları düzenleme"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2226
|
660 |
msgid "Read private posts"
|
661 |
msgstr "Kişisel yazıları okuma"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2227
|
664 |
msgid "Delete private pages"
|
665 |
msgstr "Kişisel sayfaları silme"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2228
|
668 |
msgid "Edit private pages"
|
669 |
msgstr "Kişisel sayfaları düzenleme"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2229
|
672 |
msgid "Read private pages"
|
673 |
msgstr "Kişisel sayfaları okuma"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2230
|
676 |
msgid "Delete users"
|
677 |
msgstr "Kullanıcı silme"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2231
|
680 |
msgid "Create users"
|
681 |
msgstr "Kullanıcı oluşturma"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2232
|
684 |
msgid "Unfiltered upload"
|
685 |
msgstr "Süzülmemiş yükleme"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2233
|
688 |
msgid "Edit dashboard"
|
689 |
msgstr "Panel düzenleme"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2234
|
692 |
msgid "Update plugins"
|
693 |
msgstr "Eklenti güncelleme"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2235
|
696 |
msgid "Delete plugins"
|
697 |
msgstr "Eklenti silme"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2236
|
700 |
msgid "Install plugins"
|
701 |
msgstr "Eklenti kurma"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2237
|
704 |
msgid "Update themes"
|
705 |
msgstr "Tema güncelleme"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2238
|
708 |
msgid "Install themes"
|
709 |
msgstr "Tema kurma"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2239
|
712 |
msgid "Update core"
|
713 |
msgstr "Çekirdek güncelleme"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2240
|
716 |
msgid "List users"
|
717 |
msgstr "Kullanıcı listeleme"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2241
|
720 |
msgid "Remove users"
|
721 |
msgstr "Kullanıcı kaldırma"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2242
|
724 |
msgid "Add users"
|
725 |
msgstr "Kullanıcı ekleme"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2243
|
728 |
msgid "Promote users"
|
729 |
msgstr "Kullanıcı teşvik etme"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2244
|
732 |
msgid "Edit theme options"
|
733 |
msgstr "Tema seçenekleri düzenleme"
|
734 |
|
735 |
+
#: ../includes/class-ure-lib.php:2245
|
736 |
msgid "Delete themes"
|
737 |
msgstr "Tema silme"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2246
|
740 |
msgid "Export"
|
741 |
msgstr "Dışa Aktarma"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2369
|
744 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
745 |
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2382
|
748 |
#, php-format
|
749 |
msgid "Capability %s is added successfully"
|
750 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2384
|
753 |
#, php-format
|
754 |
msgid "Capability %s exists already"
|
755 |
msgstr "%s kabiliyeti zaten mevcut"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2413
|
758 |
#, php-format
|
759 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
760 |
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
761 |
|
762 |
+
#: ../includes/class-ure-lib.php:2432
|
763 |
#, php-format
|
764 |
msgid "Capability %s is removed successfully"
|
765 |
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2536
|
768 |
msgid "Version:"
|
769 |
msgstr "Sürüm:"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2537
|
772 |
msgid "Author's website"
|
773 |
msgstr "Yazarın web sitesi"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2538
|
776 |
msgid "Plugin webpage"
|
777 |
msgstr "Eklenti web sayfası"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2539
|
780 |
msgid "Plugin download"
|
781 |
msgstr "Eklenti indirme"
|
782 |
|
783 |
+
#: ../includes/class-ure-lib.php:2541
|
784 |
msgid "FAQ"
|
785 |
msgstr "S.S.S."
|
786 |
|
787 |
+
#: ../includes/class-ure-lib.php:2589
|
788 |
msgid "None"
|
789 |
msgstr "Hiçbiri"
|
790 |
|
791 |
+
#: ../includes/class-ure-lib.php:2616
|
792 |
msgid "Delete All Unused Roles"
|
793 |
msgstr "Tüm Kullanılmayan Rolleri Sil"
|
794 |
|
795 |
+
#: ../includes/class-ure-lib.php:2640
|
796 |
msgid "— No role for this site —"
|
797 |
msgstr "— Bu site için hiç rol yok —"
|
798 |
|
816 |
msgid "Other Roles:"
|
817 |
msgstr "Diğer Roller:"
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:12
|
820 |
+
#: ../includes/class-ure-screen-help.php:41
|
821 |
+
#: ../includes/class-ure-screen-help.php:60
|
822 |
+
#: ../includes/class-ure-screen-help.php:79
|
823 |
+
msgid "User Role Editor Options page help"
|
824 |
+
msgstr "Kullanıcı Rol Editörü Seçenekler"
|
825 |
+
|
826 |
#: ../includes/class-ure-screen-help.php:16
|
827 |
msgid ""
|
828 |
"turn this option on in order to make the \"Administrator\" role available at "
|
lang/ure.mo
CHANGED
Binary file
|
lang/ure.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-02-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
@@ -93,20 +93,20 @@ msgstr ""
|
|
93 |
msgid "Allow non super administrators to create, edit, and delete users"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: ../includes/class-user-role-editor.php:
|
97 |
msgid "Change role for users without role"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: ../includes/class-user-role-editor.php:
|
101 |
msgid "No rights"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: ../includes/class-user-role-editor.php:
|
105 |
msgid "Provide new role"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: ../includes/class-user-role-editor.php:
|
109 |
-
#: ../includes/class-user-role-editor.php:
|
110 |
msgid "You do not have permission to edit this user."
|
111 |
msgstr ""
|
112 |
|
@@ -119,13 +119,13 @@ msgid "Settings"
|
|
119 |
msgstr ""
|
120 |
|
121 |
#: ../includes/class-user-role-editor.php:569
|
122 |
-
#: ../includes/class-ure-lib.php:
|
123 |
msgid "Changelog"
|
124 |
msgstr ""
|
125 |
|
126 |
#: ../includes/class-user-role-editor.php:619
|
127 |
#: ../includes/class-user-role-editor.php:648
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
#: ../includes/class-ure-lib.php:337
|
130 |
msgid "User Role Editor"
|
131 |
msgstr ""
|
@@ -140,139 +140,139 @@ msgstr ""
|
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: ../includes/class-user-role-editor.php:
|
144 |
msgid ""
|
145 |
"You do not have sufficient permissions to manage options for User Role "
|
146 |
"Editor."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
-
#: ../includes/class-ure-lib.php:
|
151 |
-
#: ../includes/class-ure-lib.php:
|
152 |
-
#: ../includes/class-ure-lib.php:
|
153 |
msgid "Insufficient permissions to work with User Role Editor"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Select All"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Unselect All"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Reverse"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Update"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Please confirm permissions update"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
msgid "Add New Role"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid "Rename Role"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid " Role name (ID) can not be empty!"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: ../includes/class-user-role-editor.php:
|
190 |
msgid ""
|
191 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
192 |
"only!"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: ../includes/class-user-role-editor.php:
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Add Role"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Delete Role"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Cancel"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Add Capability"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Delete Capability"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Reset"
|
224 |
msgstr ""
|
225 |
|
226 |
-
#: ../includes/class-user-role-editor.php:
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: ../includes/class-user-role-editor.php:
|
231 |
msgid ""
|
232 |
"If any plugins have changed capabilities in any way upon installation (such "
|
233 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: ../includes/class-user-role-editor.php:
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid "Continue?"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid "Default Role"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: ../includes/class-user-role-editor.php:
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid " Capability name (ID) can not be empty!"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid ""
|
266 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
267 |
"underscore only!"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: ../includes/class-user-role-editor.php:
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid "Other Roles"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid "Edit"
|
277 |
msgstr ""
|
278 |
|
@@ -368,397 +368,405 @@ msgstr ""
|
|
368 |
msgid "User Roles are restored to WordPress default values. "
|
369 |
msgstr ""
|
370 |
|
|
|
|
|
|
|
|
|
371 |
#: ../includes/class-ure-lib.php:1445
|
|
|
|
|
|
|
|
|
372 |
msgid "Help"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "Error is occur. Please check the log file."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid ""
|
381 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
382 |
"only!"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid ""
|
387 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
388 |
"characters to it."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
#, php-format
|
393 |
msgid "Role %s exists already"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: ../includes/class-ure-lib.php:
|
397 |
msgid "Error is encountered during new role create operation"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
#, php-format
|
402 |
msgid "Role %s is created successfully"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Error: Role ID is empty!"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
msgid "Error: Empty role display name is not allowed."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
#, php-format
|
415 |
msgid "Role %s does not exists"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s is renamed to %s successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error encountered during role delete operation"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Unused roles are deleted successfully"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Role %s is deleted successfully"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Error encountered during default role change operation"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, php-format
|
442 |
msgid "Default role for new users is set to %s successfully"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Editor"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Author"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Contributor"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Subscriber"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Switch themes"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Edit themes"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Activate plugins"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Edit plugins"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Edit users"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Edit files"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Manage options"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Moderate comments"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Manage categories"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Manage links"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Upload files"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Import"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Unfiltered html"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Edit posts"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Edit others posts"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Edit published posts"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Publish posts"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Edit pages"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Read"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Level 10"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Level 9"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Level 8"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Level 7"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Level 6"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Level 5"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 4"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 3"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 2"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Level 1"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Level 0"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Edit others pages"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Edit published pages"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Publish pages"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Delete pages"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Delete others pages"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Delete published pages"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Delete posts"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Delete others posts"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Delete published posts"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete private posts"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Edit private posts"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Read private posts"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Delete private pages"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Edit private pages"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Read private pages"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Delete users"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Create users"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Unfiltered upload"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Edit dashboard"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Update plugins"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Delete plugins"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Install plugins"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Update themes"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "Install themes"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Update core"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "List users"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Remove users"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "Add users"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Promote users"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Edit theme options"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Delete themes"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
msgid "Export"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: ../includes/class-ure-lib.php:
|
714 |
#, php-format
|
715 |
msgid "Capability %s is added successfully"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
#, php-format
|
720 |
msgid "Capability %s exists already"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
#, php-format
|
725 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
#, php-format
|
730 |
msgid "Capability %s is removed successfully"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
msgid "Version:"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
msgid "Author's website"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "Plugin webpage"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
msgid "Plugin download"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
msgid "FAQ"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "None"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "Delete All Unused Roles"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "— No role for this site —"
|
763 |
msgstr ""
|
764 |
|
@@ -782,6 +790,13 @@ msgstr ""
|
|
782 |
msgid "Other Roles:"
|
783 |
msgstr ""
|
784 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
785 |
#: ../includes/class-ure-screen-help.php:16
|
786 |
msgid ""
|
787 |
"turn this option on in order to make the \"Administrator\" role available at "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-02-23 11:48+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
93 |
msgid "Allow non super administrators to create, edit, and delete users"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: ../includes/class-user-role-editor.php:234
|
97 |
msgid "Change role for users without role"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: ../includes/class-user-role-editor.php:235
|
101 |
msgid "No rights"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:236
|
105 |
msgid "Provide new role"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:320
|
109 |
+
#: ../includes/class-user-role-editor.php:322
|
110 |
msgid "You do not have permission to edit this user."
|
111 |
msgstr ""
|
112 |
|
119 |
msgstr ""
|
120 |
|
121 |
#: ../includes/class-user-role-editor.php:569
|
122 |
+
#: ../includes/class-ure-lib.php:2540
|
123 |
msgid "Changelog"
|
124 |
msgstr ""
|
125 |
|
126 |
#: ../includes/class-user-role-editor.php:619
|
127 |
#: ../includes/class-user-role-editor.php:648
|
128 |
+
#: ../includes/class-user-role-editor.php:1030
|
129 |
#: ../includes/class-ure-lib.php:337
|
130 |
msgid "User Role Editor"
|
131 |
msgstr ""
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:779
|
144 |
msgid ""
|
145 |
"You do not have sufficient permissions to manage options for User Role "
|
146 |
"Editor."
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:851
|
150 |
+
#: ../includes/class-ure-lib.php:1698 ../includes/class-ure-lib.php:1951
|
151 |
+
#: ../includes/class-ure-lib.php:2067 ../includes/class-ure-lib.php:2115
|
152 |
+
#: ../includes/class-ure-lib.php:2361 ../includes/class-ure-lib.php:2406
|
153 |
msgid "Insufficient permissions to work with User Role Editor"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:977
|
157 |
msgid "Select All"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:978
|
161 |
msgid "Unselect All"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:979
|
165 |
msgid "Reverse"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:980
|
169 |
msgid "Update"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:981
|
173 |
msgid "Please confirm permissions update"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:982
|
177 |
msgid "Add New Role"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: ../includes/class-user-role-editor.php:983
|
181 |
+
#: ../includes/class-user-role-editor.php:988
|
182 |
msgid "Rename Role"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:984
|
186 |
msgid " Role name (ID) can not be empty!"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: ../includes/class-user-role-editor.php:985
|
190 |
msgid ""
|
191 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
192 |
"only!"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:986
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:987
|
202 |
msgid "Add Role"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:989
|
206 |
msgid "Delete Role"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:990
|
210 |
msgid "Cancel"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:991
|
214 |
msgid "Add Capability"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:992
|
218 |
+
#: ../includes/class-user-role-editor.php:1001
|
219 |
msgid "Delete Capability"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:993
|
223 |
msgid "Reset"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:994
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:995
|
231 |
msgid ""
|
232 |
"If any plugins have changed capabilities in any way upon installation (such "
|
233 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:996
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:998
|
243 |
msgid "Continue?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:999
|
247 |
msgid "Default Role"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:1000
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: ../includes/class-user-role-editor.php:1002
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:1003
|
261 |
msgid " Capability name (ID) can not be empty!"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:1004
|
265 |
msgid ""
|
266 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
267 |
"underscore only!"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: ../includes/class-user-role-editor.php:1033
|
271 |
+
#: ../includes/class-user-role-editor.php:1066
|
272 |
msgid "Other Roles"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:1047
|
276 |
msgid "Edit"
|
277 |
msgstr ""
|
278 |
|
368 |
msgid "User Roles are restored to WordPress default values. "
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1444
|
372 |
+
msgid "read about"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
#: ../includes/class-ure-lib.php:1445
|
376 |
+
msgid "user capability"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: ../includes/class-ure-lib.php:1446
|
380 |
msgid "Help"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1914
|
384 |
msgid "Error is occur. Please check the log file."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../includes/class-ure-lib.php:1960 ../includes/class-ure-lib.php:2027
|
388 |
msgid ""
|
389 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
390 |
"only!"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1964 ../includes/class-ure-lib.php:2031
|
394 |
msgid ""
|
395 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
396 |
"characters to it."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1979
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1994
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1996
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:2020
|
414 |
msgid "Error: Role ID is empty!"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:2038
|
418 |
msgid "Error: Empty role display name is not allowed."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:2045
|
422 |
#, php-format
|
423 |
msgid "Role %s does not exists"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:2053
|
427 |
#, php-format
|
428 |
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:2126
|
432 |
msgid "Error encountered during role delete operation"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:2128
|
436 |
msgid "Unused roles are deleted successfully"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:2130
|
440 |
#, php-format
|
441 |
msgid "Role %s is deleted successfully"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:2155
|
445 |
msgid "Error encountered during default role change operation"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:2161
|
449 |
#, php-format
|
450 |
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:2180
|
454 |
msgid "Editor"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:2181
|
458 |
msgid "Author"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:2182
|
462 |
msgid "Contributor"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:2183
|
466 |
msgid "Subscriber"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:2185
|
470 |
msgid "Switch themes"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:2186
|
474 |
msgid "Edit themes"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:2187
|
478 |
msgid "Activate plugins"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:2188
|
482 |
msgid "Edit plugins"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:2189
|
486 |
msgid "Edit users"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:2190
|
490 |
msgid "Edit files"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:2191
|
494 |
msgid "Manage options"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:2192
|
498 |
msgid "Moderate comments"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:2193
|
502 |
msgid "Manage categories"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:2194
|
506 |
msgid "Manage links"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:2195
|
510 |
msgid "Upload files"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:2196
|
514 |
msgid "Import"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:2197
|
518 |
msgid "Unfiltered html"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:2198
|
522 |
msgid "Edit posts"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:2199
|
526 |
msgid "Edit others posts"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:2200
|
530 |
msgid "Edit published posts"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:2201
|
534 |
msgid "Publish posts"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:2202
|
538 |
msgid "Edit pages"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:2203
|
542 |
msgid "Read"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:2204
|
546 |
msgid "Level 10"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:2205
|
550 |
msgid "Level 9"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:2206
|
554 |
msgid "Level 8"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:2207
|
558 |
msgid "Level 7"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:2208
|
562 |
msgid "Level 6"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2209
|
566 |
msgid "Level 5"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:2210
|
570 |
msgid "Level 4"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2211
|
574 |
msgid "Level 3"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2212
|
578 |
msgid "Level 2"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:2213
|
582 |
msgid "Level 1"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:2214
|
586 |
msgid "Level 0"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:2215
|
590 |
msgid "Edit others pages"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2216
|
594 |
msgid "Edit published pages"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2217
|
598 |
msgid "Publish pages"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2218
|
602 |
msgid "Delete pages"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2219
|
606 |
msgid "Delete others pages"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2220
|
610 |
msgid "Delete published pages"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2221
|
614 |
msgid "Delete posts"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2222
|
618 |
msgid "Delete others posts"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2223
|
622 |
msgid "Delete published posts"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2224
|
626 |
msgid "Delete private posts"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2225
|
630 |
msgid "Edit private posts"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2226
|
634 |
msgid "Read private posts"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2227
|
638 |
msgid "Delete private pages"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2228
|
642 |
msgid "Edit private pages"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2229
|
646 |
msgid "Read private pages"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2230
|
650 |
msgid "Delete users"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2231
|
654 |
msgid "Create users"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2232
|
658 |
msgid "Unfiltered upload"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2233
|
662 |
msgid "Edit dashboard"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2234
|
666 |
msgid "Update plugins"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2235
|
670 |
msgid "Delete plugins"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2236
|
674 |
msgid "Install plugins"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2237
|
678 |
msgid "Update themes"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2238
|
682 |
msgid "Install themes"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2239
|
686 |
msgid "Update core"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2240
|
690 |
msgid "List users"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2241
|
694 |
msgid "Remove users"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2242
|
698 |
msgid "Add users"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2243
|
702 |
msgid "Promote users"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2244
|
706 |
msgid "Edit theme options"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2245
|
710 |
msgid "Delete themes"
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2246
|
714 |
msgid "Export"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2369
|
718 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2382
|
722 |
#, php-format
|
723 |
msgid "Capability %s is added successfully"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2384
|
727 |
#, php-format
|
728 |
msgid "Capability %s exists already"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2413
|
732 |
#, php-format
|
733 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
734 |
msgstr ""
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2432
|
737 |
#, php-format
|
738 |
msgid "Capability %s is removed successfully"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2536
|
742 |
msgid "Version:"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2537
|
746 |
msgid "Author's website"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2538
|
750 |
msgid "Plugin webpage"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2539
|
754 |
msgid "Plugin download"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2541
|
758 |
msgid "FAQ"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2589
|
762 |
msgid "None"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2616
|
766 |
msgid "Delete All Unused Roles"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2640
|
770 |
msgid "— No role for this site —"
|
771 |
msgstr ""
|
772 |
|
790 |
msgid "Other Roles:"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: ../includes/class-ure-screen-help.php:12
|
794 |
+
#: ../includes/class-ure-screen-help.php:41
|
795 |
+
#: ../includes/class-ure-screen-help.php:60
|
796 |
+
#: ../includes/class-ure-screen-help.php:79
|
797 |
+
msgid "User Role Editor Options page help"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
#: ../includes/class-ure-screen-help.php:16
|
801 |
msgid ""
|
802 |
"turn this option on in order to make the \"Administrator\" role available at "
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: shinephp
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: user, role, editor, security, access, permission, capability
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.1
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -70,10 +70,10 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
|
|
70 |
= Translations =
|
71 |
* Dutch: Arjan Bosch - needs update;
|
72 |
* French: [Transifex](https://www.transifex.com);
|
73 |
-
* Hebrew: [atar4u](http://atar4u.com)
|
74 |
* Hungarian: Németh Balázs;
|
75 |
* Italian: [Giuseppe Velardo](http://www.comprensivoleopardi.gov.it/);
|
76 |
-
* Persian: Morteza
|
77 |
* Russian: [Vladimir Garagulya](https://www.role-editor.com)
|
78 |
* Spanish: [Dario Ferrer](http://darioferrer.com/) - needs update;
|
79 |
* Turkish: [Transifex](https://www.transifex.com).
|
@@ -86,6 +86,14 @@ Some translations may be outdated. If you have better translation for some phras
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
= 4.18.2 =
|
90 |
* 06.02.2015
|
91 |
* New option "Edit user capabilities" was added. If it is unchecked - capabilities section of selected user will be shown in the readonly mode. Administrator (except superadmin for multisite) can not assign capabilities to the user directly. He should make it using roles only.
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=vladimir%40shinephp%2ecom&lc=RU&item_name=ShinePHP%2ecom&item_number=User%20Role%20Editor%20WordPress%20plugin¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
|
4 |
Tags: user, role, editor, security, access, permission, capability
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.1.1
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
70 |
= Translations =
|
71 |
* Dutch: Arjan Bosch - needs update;
|
72 |
* French: [Transifex](https://www.transifex.com);
|
73 |
+
* Hebrew: [atar4u](http://atar4u.com);
|
74 |
* Hungarian: Németh Balázs;
|
75 |
* Italian: [Giuseppe Velardo](http://www.comprensivoleopardi.gov.it/);
|
76 |
+
* Persian: [Morteza](https://wordpress.org/support/profile/mo0orteza);
|
77 |
* Russian: [Vladimir Garagulya](https://www.role-editor.com)
|
78 |
* Spanish: [Dario Ferrer](http://darioferrer.com/) - needs update;
|
79 |
* Turkish: [Transifex](https://www.transifex.com).
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
= 4.18.3 =
|
90 |
+
* 24.02.2015
|
91 |
+
* Fixed PHP fatal error for roles reset operation.
|
92 |
+
* Fixed current user capability checking before URE Options page open.
|
93 |
+
* 3 missed phrases were added to the translations files. Thanks to [Morteza](https://wordpress.org/support/profile/mo0orteza)
|
94 |
+
* Hebrew translation updated. Thanks to [atar4u](http://atar4u.com)
|
95 |
+
* Persian translation updated. Thanks to [Morteza](https://wordpress.org/support/profile/mo0orteza)
|
96 |
+
|
97 |
= 4.18.2 =
|
98 |
* 06.02.2015
|
99 |
* New option "Edit user capabilities" was added. If it is unchecked - capabilities section of selected user will be shown in the readonly mode. Administrator (except superadmin for multisite) can not assign capabilities to the user directly. He should make it using roles only.
|
user-role-editor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
-
Version: 4.18.
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
@@ -23,7 +23,7 @@ if (defined('URE_PLUGIN_URL')) {
|
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
-
define('URE_VERSION', '4.18.
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
|
3 |
Plugin Name: User Role Editor
|
4 |
Plugin URI: http://role-editor.com
|
5 |
Description: Change/add/delete WordPress user roles and capabilities.
|
6 |
+
Version: 4.18.3
|
7 |
Author: Vladimir Garagulya
|
8 |
Author URI: http://www.shinephp.com
|
9 |
Text Domain: ure
|
23 |
wp_die('It seems that other version of User Role Editor is active. Please deactivate it before use this version');
|
24 |
}
|
25 |
|
26 |
+
define('URE_VERSION', '4.18.3');
|
27 |
define('URE_PLUGIN_URL', plugin_dir_url(__FILE__));
|
28 |
define('URE_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
29 |
define('URE_PLUGIN_BASE_NAME', plugin_basename(__FILE__));
|