Version Description
- 21.10.2014
- Notice: "Undefined property: Ure_Lib::$pro in .../class-user-role-editor.php on line 550" was fixed.
- Settings help screen text was updated.
- Russian translation was updated.
- Hungarian translation was updated. Thanks to Nmeth Balzs.
- French and Turkish translation are updated. Thanks to Transifex translation team.
Download this release
Release Info
Developer | shinephp |
Plugin | User Role Editor |
Version | 4.17.2 |
Comparing to | |
See all releases |
Code changes from version 4.17.1 to 4.17.2
- includes/class-ure-lib.php +1 -1
- includes/class-ure-screen-help.php +6 -3
- includes/class-user-role-editor.php +8 -6
- lang/ure-ca.mo +0 -0
- lang/ure-ca.po +200 -179
- lang/ure-es_ES.mo +0 -0
- lang/ure-es_ES.po +170 -164
- lang/ure-fa_IR.mo +0 -0
- lang/ure-fa_IR.po +170 -164
- lang/ure-fr_FR.mo +0 -0
- lang/ure-fr_FR.po +890 -0
- lang/ure-he_IL.mo +0 -0
- lang/ure-he_IL.po +174 -168
- lang/ure-hu_HU.mo +0 -0
- lang/ure-hu_HU.po +172 -178
- lang/ure-id_ID.mo +0 -0
- lang/ure-id_ID.po +246 -281
- lang/ure-nl.mo +0 -0
- lang/ure-nl.po +170 -164
- lang/ure-ru_RU.mo +0 -0
- lang/ure-ru_RU.po +172 -163
- lang/ure-tr_TR.mo +0 -0
- lang/ure-tr_TR.po +343 -872
- lang/ure.mo +0 -0
- lang/ure.pot +165 -162
- readme.txt +13 -3
- user-role-editor.php +2 -2
includes/class-ure-lib.php
CHANGED
@@ -1334,7 +1334,7 @@ class Ure_Lib extends Garvs_WP_Lib {
|
|
1334 |
// end of switch
|
1335 |
if (!empty($url)) {
|
1336 |
$link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' .
|
1337 |
-
URE_PLUGIN_URL . '
|
1338 |
} else {
|
1339 |
$link = '';
|
1340 |
}
|
1334 |
// end of switch
|
1335 |
if (!empty($url)) {
|
1336 |
$link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' .
|
1337 |
+
URE_PLUGIN_URL . 'images/help.png" alt="' . esc_html__('Help', 'ure') . '" /></a>';
|
1338 |
} else {
|
1339 |
$link = '';
|
1340 |
}
|
includes/class-ure-screen-help.php
CHANGED
@@ -36,9 +36,12 @@ class URE_Screen_Help {
|
|
36 |
protected function get_additional_modules_tab() {
|
37 |
$text = '<h2>User Role Editor Options page help</h2>
|
38 |
<p>
|
39 |
-
<ul>
|
40 |
-
|
41 |
-
|
|
|
|
|
|
|
42 |
$text = apply_filters('ure_get_settings_additional_modules_tab_help', $text);
|
43 |
$text .='
|
44 |
</ul>
|
36 |
protected function get_additional_modules_tab() {
|
37 |
$text = '<h2>User Role Editor Options page help</h2>
|
38 |
<p>
|
39 |
+
<ul>';
|
40 |
+
if (!is_multisite()) {
|
41 |
+
$text .= '<li><strong>' . esc_html__('Count users without role', 'ure').'</strong> - ' .
|
42 |
+
esc_html__('Show at the "Users" page a quant of users without role. Module allows to assign all of them '.
|
43 |
+
'an empty role "No rights", in order to look on the users list with role "No rights" at the separate tab then.','ure') . '</li>';
|
44 |
+
}
|
45 |
$text = apply_filters('ure_get_settings_additional_modules_tab_help', $text);
|
46 |
$text .='
|
47 |
</ul>
|
includes/class-user-role-editor.php
CHANGED
@@ -547,7 +547,7 @@ class User_Role_Editor {
|
|
547 |
'title' => esc_html__('General'),
|
548 |
'content' => $screen_help->get_settings_help('general')
|
549 |
));
|
550 |
-
if ($this->lib->
|
551 |
$screen->add_help_tab( array(
|
552 |
'id' => 'additional_modules',
|
553 |
'title' => esc_html__('Additional Modules'),
|
@@ -559,11 +559,13 @@ class User_Role_Editor {
|
|
559 |
'title' => esc_html__('Default Roles'),
|
560 |
'content' => $screen_help->get_settings_help('default_roles')
|
561 |
));
|
562 |
-
$
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
|
|
|
|
567 |
}
|
568 |
// end of settings_screen_configure()
|
569 |
|
547 |
'title' => esc_html__('General'),
|
548 |
'content' => $screen_help->get_settings_help('general')
|
549 |
));
|
550 |
+
if ($this->lib->is_pro() || !$this->lib->multisite) {
|
551 |
$screen->add_help_tab( array(
|
552 |
'id' => 'additional_modules',
|
553 |
'title' => esc_html__('Additional Modules'),
|
559 |
'title' => esc_html__('Default Roles'),
|
560 |
'content' => $screen_help->get_settings_help('default_roles')
|
561 |
));
|
562 |
+
if ($this->lib->multisite) {
|
563 |
+
$screen->add_help_tab( array(
|
564 |
+
'id' => 'multisite',
|
565 |
+
'title' => esc_html__('Multisite'),
|
566 |
+
'content' => $screen_help->get_settings_help('multisite')
|
567 |
+
));
|
568 |
+
}
|
569 |
}
|
570 |
// end of settings_screen_configure()
|
571 |
|
lang/ure-ca.mo
CHANGED
Binary file
|
lang/ure-ca.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: es_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -27,70 +27,75 @@ msgid "User Role Editor - Options"
|
|
27 |
msgstr "User Role Editor"
|
28 |
|
29 |
#: ../includes/settings-template.php:21
|
|
|
30 |
msgid "General"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../includes/settings-template.php:
|
|
|
34 |
msgid "Additional Modules"
|
35 |
msgstr ""
|
36 |
|
37 |
# @ ure
|
38 |
-
#: ../includes/settings-template.php:
|
|
|
39 |
#, fuzzy
|
40 |
msgid "Default Roles"
|
41 |
msgstr "Rol predeterminat"
|
42 |
|
43 |
-
#: ../includes/settings-template.php:
|
|
|
44 |
msgid "Multisite"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: ../includes/settings-template.php:
|
48 |
msgid "About"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: ../includes/settings-template.php:
|
52 |
#: ../includes/class-ure-screen-help.php:15
|
53 |
msgid "Show Administrator role at User Role Editor"
|
54 |
msgstr ""
|
55 |
|
56 |
# @ ure
|
57 |
-
#: ../includes/settings-template.php:
|
58 |
#: ../includes/class-ure-screen-help.php:18
|
59 |
#, fuzzy
|
60 |
msgid "Show capabilities in the human readable form"
|
61 |
msgstr "Mostra privilegis de forma llegible"
|
62 |
|
63 |
# @ ure
|
64 |
-
#: ../includes/settings-template.php:
|
65 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
66 |
msgid "Show deprecated capabilities"
|
67 |
msgstr "Mostrar privilegis obsolets"
|
68 |
|
69 |
-
#: ../includes/settings-template.php:
|
70 |
-
#: ../includes/settings-template.php:
|
71 |
msgid "Save"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: ../includes/settings-template.php:
|
|
|
75 |
msgid "Count users without role"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: ../includes/settings-template.php:
|
79 |
msgid "Primary default role: "
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: ../includes/settings-template.php:
|
83 |
msgid "Other default roles for new registered user: "
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: ../includes/settings-template.php:
|
87 |
msgid ""
|
88 |
"Note for multisite environment: take into account that other default roles "
|
89 |
"should exist at the site, in order to be assigned to the new registered "
|
90 |
"users."
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: ../includes/settings-template.php:
|
94 |
msgid "Allow non super administrators to create, edit, and delete users"
|
95 |
msgstr ""
|
96 |
|
@@ -113,175 +118,171 @@ msgid "You do not have permission to edit this user."
|
|
113 |
msgstr ""
|
114 |
|
115 |
# @ ure
|
116 |
-
#: ../includes/class-user-role-editor.php:
|
117 |
msgid "Capabilities"
|
118 |
msgstr "Capacitats"
|
119 |
|
120 |
# @ ure
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
msgid "Settings"
|
123 |
msgstr "Opcions"
|
124 |
|
125 |
# @ ure
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-ure-lib.php:
|
128 |
msgid "Changelog"
|
129 |
msgstr "Registre de canvis"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:552
|
132 |
-
msgid "Overview"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
# @ ure
|
136 |
# @ default
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
-
#: ../includes/class-user-role-editor.php:
|
140 |
-
#: ../includes/class-ure-lib.php:
|
141 |
msgid "User Role Editor"
|
142 |
msgstr "User Role Editor"
|
143 |
|
144 |
# @ ure
|
145 |
# @ default
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "User Role Editor options are updated"
|
150 |
msgstr ""
|
151 |
|
152 |
# @ ure
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
#, fuzzy
|
155 |
msgid "Default Roles are updated"
|
156 |
msgstr "Rol predeterminat"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
msgid ""
|
160 |
"You do not have sufficient permissions to manage options for User Role "
|
161 |
"Editor."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Insufficient permissions to work with User Role Editor"
|
166 |
msgstr ""
|
167 |
|
168 |
# @ ure
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
msgid "Select All"
|
171 |
msgstr "Seleccionar-ho tot"
|
172 |
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Unselect All"
|
175 |
msgstr "De-selecciona-ho tot"
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid "Reverse"
|
179 |
msgstr "Invertir"
|
180 |
|
181 |
# @ ure
|
182 |
-
#: ../includes/class-user-role-editor.php:
|
183 |
msgid "Update"
|
184 |
msgstr "Actualitzar"
|
185 |
|
186 |
# @ ure
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid "Please confirm permissions update"
|
189 |
msgstr "Si us plau confirmeu l'actualització de permisos "
|
190 |
|
191 |
# @ ure
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid "Add New Role"
|
194 |
msgstr "Afegir nou Rol"
|
195 |
|
196 |
# @ ure
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
-
#: ../includes/class-user-role-editor.php:
|
199 |
#, fuzzy
|
200 |
msgid "Rename Role"
|
201 |
msgstr "Eliminar Rol"
|
202 |
|
203 |
# @ ure
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid " Role name (ID) can not be empty!"
|
206 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
207 |
|
208 |
# @ ure
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid ""
|
211 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
212 |
"only!"
|
213 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid ""
|
217 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
218 |
"it."
|
219 |
msgstr ""
|
220 |
|
221 |
# @ ure
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Add Role"
|
224 |
msgstr "Afegir nou Rol"
|
225 |
|
226 |
# @ ure
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid "Delete Role"
|
229 |
msgstr "Eliminar Rol"
|
230 |
|
231 |
# @ ure
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid "Cancel"
|
234 |
msgstr "Cancel·lar"
|
235 |
|
236 |
# @ ure
|
237 |
-
#: ../includes/class-user-role-editor.php:
|
238 |
msgid "Add Capability"
|
239 |
msgstr "Afegir nou privilegi"
|
240 |
|
241 |
# @ ure
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid "Delete Capability"
|
245 |
msgstr "Eliminar privilegi"
|
246 |
|
247 |
# @ ure
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Reset"
|
250 |
msgstr "Reiniciar"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
"If any plugins have changed capabilities in any way upon installation (such "
|
259 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
msgid ""
|
264 |
"For more information on how to undo changes and restore plugin capabilities "
|
265 |
"go to"
|
266 |
msgstr ""
|
267 |
|
268 |
# @ ure
|
269 |
-
#: ../includes/class-user-role-editor.php:
|
270 |
msgid "Continue?"
|
271 |
msgstr ""
|
272 |
|
273 |
# @ ure
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
msgid "Default Role"
|
276 |
msgstr "Rol predeterminat"
|
277 |
|
278 |
# @ ure
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid "Set New Default Role"
|
281 |
msgstr "Assignar com a rol predeterminat"
|
282 |
|
283 |
# @ ure
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid ""
|
286 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
287 |
"or other custom code"
|
@@ -290,12 +291,12 @@ msgstr ""
|
|
290 |
"algun connector o algun altre codi personalitzat."
|
291 |
|
292 |
# @ ure
|
293 |
-
#: ../includes/class-user-role-editor.php:
|
294 |
msgid " Capability name (ID) can not be empty!"
|
295 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
296 |
|
297 |
# @ ure
|
298 |
-
#: ../includes/class-user-role-editor.php:
|
299 |
msgid ""
|
300 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
301 |
"underscore only!"
|
@@ -304,13 +305,13 @@ msgstr ""
|
|
304 |
"dígits."
|
305 |
|
306 |
# @ ure
|
307 |
-
#: ../includes/class-user-role-editor.php:
|
308 |
-
#: ../includes/class-user-role-editor.php:
|
309 |
msgid "Other Roles"
|
310 |
msgstr "Altres rols"
|
311 |
|
312 |
# @ ure
|
313 |
-
#: ../includes/class-user-role-editor.php:
|
314 |
msgid "Edit"
|
315 |
msgstr "Editar"
|
316 |
|
@@ -349,570 +350,570 @@ msgstr ""
|
|
349 |
msgid "Custom capabilities:"
|
350 |
msgstr "Capacitats"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Error: wrong request"
|
354 |
msgstr ""
|
355 |
|
356 |
# @ ure
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
#, fuzzy
|
359 |
msgid "Role name (ID): "
|
360 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Display Role Name: "
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Make copy of: "
|
368 |
msgstr ""
|
369 |
|
370 |
# @ ure
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
#, fuzzy
|
373 |
msgid "Select Role:"
|
374 |
msgstr "Eliminar Rol"
|
375 |
|
376 |
# @ ure
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
#, fuzzy
|
379 |
msgid "Delete:"
|
380 |
msgstr "Eliminar Rol"
|
381 |
|
382 |
# @ ure
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
#, fuzzy
|
385 |
msgid "Capability name (ID): "
|
386 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
387 |
|
388 |
# @ ure
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Error: "
|
391 |
msgstr "Error:"
|
392 |
|
393 |
# @ ure
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid "Role"
|
396 |
msgstr "Rol"
|
397 |
|
398 |
# @ ure
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
msgid "does not exist"
|
401 |
msgstr "no existeix"
|
402 |
|
403 |
# @ ure
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid "Role is updated successfully"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
msgid "Roles are updated for all network"
|
410 |
msgstr ""
|
411 |
|
412 |
# @ ure
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Error occured during role(s) update"
|
415 |
msgstr ""
|
416 |
|
417 |
# @ ure
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "User capabilities are updated successfully"
|
420 |
msgstr ""
|
421 |
|
422 |
# @ ure
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error occured during user update"
|
425 |
msgstr "Error trobat durant l'actualització del rol"
|
426 |
|
427 |
# @ ure
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "User Roles are restored to WordPress default values. "
|
430 |
msgstr ""
|
431 |
"Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
432 |
|
433 |
# @ ure
|
434 |
-
#: ../includes/class-ure-lib.php:
|
435 |
msgid "Help"
|
436 |
msgstr "Ajuda"
|
437 |
|
438 |
# ure
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
msgid "Error is occur. Please check the log file."
|
441 |
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
442 |
|
443 |
# @ ure
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid ""
|
446 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
447 |
"only!"
|
448 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid ""
|
452 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
453 |
"characters to it."
|
454 |
msgstr ""
|
455 |
|
456 |
# @ ure
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
#, php-format
|
459 |
msgid "Role %s exists already"
|
460 |
msgstr "Rol %s ja existeix"
|
461 |
|
462 |
# @ ure
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Error is encountered during new role create operation"
|
465 |
msgstr "Error trobat durant la creació d'un nou Rol"
|
466 |
|
467 |
# @ ure
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
#, php-format
|
470 |
msgid "Role %s is created successfully"
|
471 |
msgstr "Rol %s s'ha creat correctament"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Error: Role ID is empty!"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Error: Empty role display name is not allowed."
|
479 |
msgstr ""
|
480 |
|
481 |
# @ ure
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
#, fuzzy, php-format
|
484 |
msgid "Role %s does not exists"
|
485 |
msgstr "no existeix"
|
486 |
|
487 |
# @ ure
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
#, fuzzy, php-format
|
490 |
msgid "Role %s is renamed to %s successfully"
|
491 |
msgstr "Rol %s s'ha creat correctament"
|
492 |
|
493 |
# @ ure
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Error encountered during role delete operation"
|
496 |
msgstr "Error trobat durant l'eliminació del Rol"
|
497 |
|
498 |
# @ ure
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Unused roles are deleted successfully"
|
501 |
msgstr ""
|
502 |
|
503 |
# @ ure
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
#, php-format
|
506 |
msgid "Role %s is deleted successfully"
|
507 |
msgstr "Rol %s s'elimina amb èxit"
|
508 |
|
509 |
# @ ure
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Error encountered during default role change operation"
|
512 |
msgstr "Error trobat durant el canvi de Rol per defecte"
|
513 |
|
514 |
# @ ure
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
#, php-format
|
517 |
msgid "Default role for new users is set to %s successfully"
|
518 |
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
519 |
|
520 |
# @ ure
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Editor"
|
523 |
msgstr "Editor"
|
524 |
|
525 |
# @ ure
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Author"
|
528 |
msgstr "Autor"
|
529 |
|
530 |
# @ ure
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Contributor"
|
533 |
msgstr "Col·laborador"
|
534 |
|
535 |
# @ ure
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Subscriber"
|
538 |
msgstr "Subscriptor"
|
539 |
|
540 |
# @ ure
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Switch themes"
|
543 |
msgstr "Canviar plantilles"
|
544 |
|
545 |
# @ ure
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Edit themes"
|
548 |
msgstr "Editar plantilles"
|
549 |
|
550 |
# @ ure
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Activate plugins"
|
553 |
msgstr "Activar connectors"
|
554 |
|
555 |
# @ ure
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Edit plugins"
|
558 |
msgstr "Editar connectors"
|
559 |
|
560 |
# @ ure
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Edit users"
|
563 |
msgstr "Editar usuaris"
|
564 |
|
565 |
# @ ure
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Edit files"
|
568 |
msgstr "Editar arxius"
|
569 |
|
570 |
# @ ure
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Manage options"
|
573 |
msgstr "Administrar opcions"
|
574 |
|
575 |
# @ ure
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Moderate comments"
|
578 |
msgstr "Moderar comentaris"
|
579 |
|
580 |
# @ ure
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Manage categories"
|
583 |
msgstr "Administrar categories"
|
584 |
|
585 |
# @ ure
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Manage links"
|
588 |
msgstr "Administrar enllaços"
|
589 |
|
590 |
# @ ure
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Upload files"
|
593 |
msgstr "Pujar arxius"
|
594 |
|
595 |
# @ ure
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Import"
|
598 |
msgstr "Importar"
|
599 |
|
600 |
# @ ure
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Unfiltered html"
|
603 |
msgstr "Ometre Filtrat d'HTML"
|
604 |
|
605 |
# @ ure
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Edit posts"
|
608 |
msgstr "Editar missatges"
|
609 |
|
610 |
# @ ure
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Edit others posts"
|
613 |
msgstr "Editar missatges de altres"
|
614 |
|
615 |
# @ ure
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Edit published posts"
|
618 |
msgstr "Editar els missatges publicats"
|
619 |
|
620 |
# @ ure
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Publish posts"
|
623 |
msgstr "Publicar missatges"
|
624 |
|
625 |
# @ ure
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Edit pages"
|
628 |
msgstr "Editar pàgines"
|
629 |
|
630 |
# @ ure
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Read"
|
633 |
msgstr "Llegir"
|
634 |
|
635 |
# @ ure
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Level 10"
|
638 |
msgstr "Nivell 10"
|
639 |
|
640 |
# @ ure
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Level 9"
|
643 |
msgstr "Nivell 9"
|
644 |
|
645 |
# @ ure
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Level 8"
|
648 |
msgstr "Nivell 8"
|
649 |
|
650 |
# @ ure
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Level 7"
|
653 |
msgstr "Nivell 7"
|
654 |
|
655 |
# @ ure
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Level 6"
|
658 |
msgstr "Nivell 6"
|
659 |
|
660 |
# @ ure
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Level 5"
|
663 |
msgstr "Nivell 5"
|
664 |
|
665 |
# @ ure
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Level 4"
|
668 |
msgstr "Nivell 4"
|
669 |
|
670 |
# @ ure
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Level 3"
|
673 |
msgstr "Nivell 3"
|
674 |
|
675 |
# @ ure
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Level 2"
|
678 |
msgstr "Nivell 2"
|
679 |
|
680 |
# @ ure
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Level 1"
|
683 |
msgstr "Nivell 1"
|
684 |
|
685 |
# @ ure
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Level 0"
|
688 |
msgstr "Nivell 0"
|
689 |
|
690 |
# @ ure
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Edit others pages"
|
693 |
msgstr "Editar pàgines de altres"
|
694 |
|
695 |
# @ ure
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Edit published pages"
|
698 |
msgstr "Editar pàgines publicades"
|
699 |
|
700 |
# @ ure
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Publish pages"
|
703 |
msgstr "Publicar pàgines"
|
704 |
|
705 |
# @ ure
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Delete pages"
|
708 |
msgstr "Eliminar pàgines"
|
709 |
|
710 |
# ure
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Delete others pages"
|
713 |
msgstr "Eliminar pàgines de altres"
|
714 |
|
715 |
# @ ure
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Delete published pages"
|
718 |
msgstr "Eliminar pàgines publicades"
|
719 |
|
720 |
# ure
|
721 |
-
#: ../includes/class-ure-lib.php:
|
722 |
msgid "Delete posts"
|
723 |
msgstr "Eliminar missatges"
|
724 |
|
725 |
# @ ure
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
msgid "Delete others posts"
|
728 |
msgstr "Eliminar missatges de altres"
|
729 |
|
730 |
# ure
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
msgid "Delete published posts"
|
733 |
msgstr "Eliminar missatges publicats"
|
734 |
|
735 |
# ure
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Delete private posts"
|
738 |
msgstr "Eliminar missatges privats"
|
739 |
|
740 |
# @ ure
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "Edit private posts"
|
743 |
msgstr "Editar missatges privats"
|
744 |
|
745 |
# @ ure
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
msgid "Read private posts"
|
748 |
msgstr "Llegir missatges privats"
|
749 |
|
750 |
# @ ure
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Delete private pages"
|
753 |
msgstr "Eliminar pàgines privades"
|
754 |
|
755 |
# @ ure
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
msgid "Edit private pages"
|
758 |
msgstr "Editar pàgines privades"
|
759 |
|
760 |
# @ ure
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Read private pages"
|
763 |
msgstr "Llegir pàgines privades"
|
764 |
|
765 |
# @ ure
|
766 |
-
#: ../includes/class-ure-lib.php:
|
767 |
msgid "Delete users"
|
768 |
msgstr "Eliminar usuaris"
|
769 |
|
770 |
# @ ure
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Create users"
|
773 |
msgstr "Crear usuaris"
|
774 |
|
775 |
# @ ure
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "Unfiltered upload"
|
778 |
msgstr "Sense filtre de càrrega"
|
779 |
|
780 |
# @ ure
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "Edit dashboard"
|
783 |
msgstr "Editar taulell"
|
784 |
|
785 |
# @ ure
|
786 |
-
#: ../includes/class-ure-lib.php:
|
787 |
msgid "Update plugins"
|
788 |
msgstr "Actualitzar connectors"
|
789 |
|
790 |
# @ ure
|
791 |
-
#: ../includes/class-ure-lib.php:
|
792 |
msgid "Delete plugins"
|
793 |
msgstr "Eliminar connectors"
|
794 |
|
795 |
# @ ure
|
796 |
-
#: ../includes/class-ure-lib.php:
|
797 |
msgid "Install plugins"
|
798 |
msgstr "Instal·lar connectors"
|
799 |
|
800 |
# @ ure
|
801 |
-
#: ../includes/class-ure-lib.php:
|
802 |
msgid "Update themes"
|
803 |
msgstr "Actualitzar plantilles"
|
804 |
|
805 |
# @ ure
|
806 |
-
#: ../includes/class-ure-lib.php:
|
807 |
msgid "Install themes"
|
808 |
msgstr "Instal·lar plantilles"
|
809 |
|
810 |
# @ ure
|
811 |
-
#: ../includes/class-ure-lib.php:
|
812 |
msgid "Update core"
|
813 |
msgstr "Actualitzar nucli"
|
814 |
|
815 |
# @ ure
|
816 |
-
#: ../includes/class-ure-lib.php:
|
817 |
msgid "List users"
|
818 |
msgstr "Llistar usuaris"
|
819 |
|
820 |
# @ ure
|
821 |
-
#: ../includes/class-ure-lib.php:
|
822 |
msgid "Remove users"
|
823 |
msgstr "Eliminar usuaris"
|
824 |
|
825 |
# @ ure
|
826 |
-
#: ../includes/class-ure-lib.php:
|
827 |
msgid "Add users"
|
828 |
msgstr "Afegir usuaris"
|
829 |
|
830 |
# @ ure
|
831 |
-
#: ../includes/class-ure-lib.php:
|
832 |
msgid "Promote users"
|
833 |
msgstr "Promoure usuaris"
|
834 |
|
835 |
# @ ure
|
836 |
-
#: ../includes/class-ure-lib.php:
|
837 |
msgid "Edit theme options"
|
838 |
msgstr "Editar opcions de plantilla"
|
839 |
|
840 |
# @ ure
|
841 |
-
#: ../includes/class-ure-lib.php:
|
842 |
msgid "Delete themes"
|
843 |
msgstr "Eliminar plantilles"
|
844 |
|
845 |
# @ ure
|
846 |
-
#: ../includes/class-ure-lib.php:
|
847 |
msgid "Export"
|
848 |
msgstr "Exportar"
|
849 |
|
850 |
# @ ure
|
851 |
-
#: ../includes/class-ure-lib.php:
|
852 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
853 |
msgstr ""
|
854 |
"Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
|
855 |
|
856 |
# @ ure
|
857 |
-
#: ../includes/class-ure-lib.php:
|
858 |
#, php-format
|
859 |
msgid "Capability %s is added successfully"
|
860 |
msgstr "Privilegi %s s'ha afegit correctament"
|
861 |
|
862 |
# @ ure
|
863 |
-
#: ../includes/class-ure-lib.php:
|
864 |
#, php-format
|
865 |
msgid "Capability %s exists already"
|
866 |
msgstr "Ja existeix el privilegi %s"
|
867 |
|
868 |
# @ ure
|
869 |
-
#: ../includes/class-ure-lib.php:
|
870 |
#, php-format
|
871 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
872 |
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
873 |
|
874 |
# @ ure
|
875 |
-
#: ../includes/class-ure-lib.php:
|
876 |
#, php-format
|
877 |
msgid "Capability %s is removed successfully"
|
878 |
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
879 |
|
880 |
-
#: ../includes/class-ure-lib.php:
|
881 |
msgid "Version:"
|
882 |
msgstr ""
|
883 |
|
884 |
# @ ure
|
885 |
-
#: ../includes/class-ure-lib.php:
|
886 |
msgid "Author's website"
|
887 |
msgstr "Lloc web del autor"
|
888 |
|
889 |
# @ ure
|
890 |
-
#: ../includes/class-ure-lib.php:
|
891 |
msgid "Plugin webpage"
|
892 |
msgstr "Pàgina web del connector"
|
893 |
|
894 |
# @ ure
|
895 |
-
#: ../includes/class-ure-lib.php:
|
896 |
#, fuzzy
|
897 |
msgid "Plugin download"
|
898 |
msgstr "Pàgina web del connector"
|
899 |
|
900 |
# @ ure
|
901 |
-
#: ../includes/class-ure-lib.php:
|
902 |
msgid "FAQ"
|
903 |
msgstr "FAQ"
|
904 |
|
905 |
# @ ure
|
906 |
-
#: ../includes/class-ure-lib.php:
|
907 |
msgid "None"
|
908 |
msgstr "Cap"
|
909 |
|
910 |
# @ ure
|
911 |
-
#: ../includes/class-ure-lib.php:
|
912 |
msgid "Delete All Unused Roles"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../includes/class-ure-lib.php:
|
916 |
msgid "— No role for this site —"
|
917 |
msgstr ""
|
918 |
|
@@ -961,12 +962,32 @@ msgid ""
|
|
961 |
"deprecated capabilities."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: ../includes/class-ure-screen-help.php:
|
965 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: ../includes/class-ure-screen-help.php:
|
969 |
msgid ""
|
970 |
"Super administrator only may create, edit and delete users under WordPress "
|
971 |
-
"multi-site. Turn this option on in order to remove this
|
|
|
972 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v. 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:21+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"
|
9 |
"Language: es_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
27 |
msgstr "User Role Editor"
|
28 |
|
29 |
#: ../includes/settings-template.php:21
|
30 |
+
#: ../includes/class-user-role-editor.php:547
|
31 |
msgid "General"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: ../includes/settings-template.php:26
|
35 |
+
#: ../includes/class-user-role-editor.php:553
|
36 |
msgid "Additional Modules"
|
37 |
msgstr ""
|
38 |
|
39 |
# @ ure
|
40 |
+
#: ../includes/settings-template.php:30
|
41 |
+
#: ../includes/class-user-role-editor.php:559
|
42 |
#, fuzzy
|
43 |
msgid "Default Roles"
|
44 |
msgstr "Rol predeterminat"
|
45 |
|
46 |
+
#: ../includes/settings-template.php:34
|
47 |
+
#: ../includes/class-user-role-editor.php:565
|
48 |
msgid "Multisite"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: ../includes/settings-template.php:39
|
52 |
msgid "About"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ../includes/settings-template.php:53
|
56 |
#: ../includes/class-ure-screen-help.php:15
|
57 |
msgid "Show Administrator role at User Role Editor"
|
58 |
msgstr ""
|
59 |
|
60 |
# @ ure
|
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 "Mostra privilegis de forma llegible"
|
66 |
|
67 |
# @ ure
|
68 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
69 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
70 |
msgid "Show deprecated capabilities"
|
71 |
msgstr "Mostrar privilegis obsolets"
|
72 |
|
73 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
74 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
75 |
msgid "Save"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: ../includes/settings-template.php:102
|
79 |
+
#: ../includes/class-ure-screen-help.php:41
|
80 |
msgid "Count users without role"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: ../includes/settings-template.php:129
|
84 |
msgid "Primary default role: "
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: ../includes/settings-template.php:136
|
88 |
msgid "Other default roles for new registered user: "
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: ../includes/settings-template.php:142
|
92 |
msgid ""
|
93 |
"Note for multisite environment: take into account that other default roles "
|
94 |
"should exist at the site, in order to be assigned to the new registered "
|
95 |
"users."
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: ../includes/settings-template.php:168
|
99 |
msgid "Allow non super administrators to create, edit, and delete users"
|
100 |
msgstr ""
|
101 |
|
118 |
msgstr ""
|
119 |
|
120 |
# @ ure
|
121 |
+
#: ../includes/class-user-role-editor.php:422
|
122 |
msgid "Capabilities"
|
123 |
msgstr "Capacitats"
|
124 |
|
125 |
# @ ure
|
126 |
+
#: ../includes/class-user-role-editor.php:514
|
127 |
msgid "Settings"
|
128 |
msgstr "Opcions"
|
129 |
|
130 |
# @ ure
|
131 |
+
#: ../includes/class-user-role-editor.php:525
|
132 |
+
#: ../includes/class-ure-lib.php:2295
|
133 |
msgid "Changelog"
|
134 |
msgstr "Registre de canvis"
|
135 |
|
|
|
|
|
|
|
|
|
136 |
# @ ure
|
137 |
# @ default
|
138 |
+
#: ../includes/class-user-role-editor.php:575
|
139 |
+
#: ../includes/class-user-role-editor.php:603
|
140 |
+
#: ../includes/class-user-role-editor.php:948
|
141 |
+
#: ../includes/class-ure-lib.php:251
|
142 |
msgid "User Role Editor"
|
143 |
msgstr "User Role Editor"
|
144 |
|
145 |
# @ ure
|
146 |
# @ default
|
147 |
+
#: ../includes/class-user-role-editor.php:660
|
148 |
+
#: ../includes/class-user-role-editor.php:678
|
149 |
+
#: ../includes/class-user-role-editor.php:722
|
150 |
msgid "User Role Editor options are updated"
|
151 |
msgstr ""
|
152 |
|
153 |
# @ ure
|
154 |
+
#: ../includes/class-user-role-editor.php:706
|
155 |
#, fuzzy
|
156 |
msgid "Default Roles are updated"
|
157 |
msgstr "Rol predeterminat"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:730
|
160 |
msgid ""
|
161 |
"You do not have sufficient permissions to manage options for User Role "
|
162 |
"Editor."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ../includes/class-user-role-editor.php:809
|
166 |
msgid "Insufficient permissions to work with User Role Editor"
|
167 |
msgstr ""
|
168 |
|
169 |
# @ ure
|
170 |
+
#: ../includes/class-user-role-editor.php:890
|
171 |
msgid "Select All"
|
172 |
msgstr "Seleccionar-ho tot"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:891
|
175 |
msgid "Unselect All"
|
176 |
msgstr "De-selecciona-ho tot"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:892
|
179 |
msgid "Reverse"
|
180 |
msgstr "Invertir"
|
181 |
|
182 |
# @ ure
|
183 |
+
#: ../includes/class-user-role-editor.php:893
|
184 |
msgid "Update"
|
185 |
msgstr "Actualitzar"
|
186 |
|
187 |
# @ ure
|
188 |
+
#: ../includes/class-user-role-editor.php:894
|
189 |
msgid "Please confirm permissions update"
|
190 |
msgstr "Si us plau confirmeu l'actualització de permisos "
|
191 |
|
192 |
# @ ure
|
193 |
+
#: ../includes/class-user-role-editor.php:895
|
194 |
msgid "Add New Role"
|
195 |
msgstr "Afegir nou Rol"
|
196 |
|
197 |
# @ ure
|
198 |
+
#: ../includes/class-user-role-editor.php:896
|
199 |
+
#: ../includes/class-user-role-editor.php:901
|
200 |
#, fuzzy
|
201 |
msgid "Rename Role"
|
202 |
msgstr "Eliminar Rol"
|
203 |
|
204 |
# @ ure
|
205 |
+
#: ../includes/class-user-role-editor.php:897
|
206 |
msgid " Role name (ID) can not be empty!"
|
207 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
208 |
|
209 |
# @ ure
|
210 |
+
#: ../includes/class-user-role-editor.php:898
|
211 |
msgid ""
|
212 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
213 |
"only!"
|
214 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:899
|
217 |
msgid ""
|
218 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
219 |
"it."
|
220 |
msgstr ""
|
221 |
|
222 |
# @ ure
|
223 |
+
#: ../includes/class-user-role-editor.php:900
|
224 |
msgid "Add Role"
|
225 |
msgstr "Afegir nou Rol"
|
226 |
|
227 |
# @ ure
|
228 |
+
#: ../includes/class-user-role-editor.php:902
|
229 |
msgid "Delete Role"
|
230 |
msgstr "Eliminar Rol"
|
231 |
|
232 |
# @ ure
|
233 |
+
#: ../includes/class-user-role-editor.php:903
|
234 |
msgid "Cancel"
|
235 |
msgstr "Cancel·lar"
|
236 |
|
237 |
# @ ure
|
238 |
+
#: ../includes/class-user-role-editor.php:904
|
239 |
msgid "Add Capability"
|
240 |
msgstr "Afegir nou privilegi"
|
241 |
|
242 |
# @ ure
|
243 |
+
#: ../includes/class-user-role-editor.php:905
|
244 |
+
#: ../includes/class-user-role-editor.php:914
|
245 |
msgid "Delete Capability"
|
246 |
msgstr "Eliminar privilegi"
|
247 |
|
248 |
# @ ure
|
249 |
+
#: ../includes/class-user-role-editor.php:906
|
250 |
msgid "Reset"
|
251 |
msgstr "Reiniciar"
|
252 |
|
253 |
+
#: ../includes/class-user-role-editor.php:907
|
254 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: ../includes/class-user-role-editor.php:908
|
258 |
msgid ""
|
259 |
"If any plugins have changed capabilities in any way upon installation (such "
|
260 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:909
|
264 |
msgid ""
|
265 |
"For more information on how to undo changes and restore plugin capabilities "
|
266 |
"go to"
|
267 |
msgstr ""
|
268 |
|
269 |
# @ ure
|
270 |
+
#: ../includes/class-user-role-editor.php:911
|
271 |
msgid "Continue?"
|
272 |
msgstr ""
|
273 |
|
274 |
# @ ure
|
275 |
+
#: ../includes/class-user-role-editor.php:912
|
276 |
msgid "Default Role"
|
277 |
msgstr "Rol predeterminat"
|
278 |
|
279 |
# @ ure
|
280 |
+
#: ../includes/class-user-role-editor.php:913
|
281 |
msgid "Set New Default Role"
|
282 |
msgstr "Assignar com a rol predeterminat"
|
283 |
|
284 |
# @ ure
|
285 |
+
#: ../includes/class-user-role-editor.php:915
|
286 |
msgid ""
|
287 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
288 |
"or other custom code"
|
291 |
"algun connector o algun altre codi personalitzat."
|
292 |
|
293 |
# @ ure
|
294 |
+
#: ../includes/class-user-role-editor.php:916
|
295 |
msgid " Capability name (ID) can not be empty!"
|
296 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
297 |
|
298 |
# @ ure
|
299 |
+
#: ../includes/class-user-role-editor.php:917
|
300 |
msgid ""
|
301 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
302 |
"underscore only!"
|
305 |
"dígits."
|
306 |
|
307 |
# @ ure
|
308 |
+
#: ../includes/class-user-role-editor.php:951
|
309 |
+
#: ../includes/class-user-role-editor.php:980
|
310 |
msgid "Other Roles"
|
311 |
msgstr "Altres rols"
|
312 |
|
313 |
# @ ure
|
314 |
+
#: ../includes/class-user-role-editor.php:962
|
315 |
msgid "Edit"
|
316 |
msgstr "Editar"
|
317 |
|
350 |
msgid "Custom capabilities:"
|
351 |
msgstr "Capacitats"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:159
|
354 |
msgid "Error: wrong request"
|
355 |
msgstr ""
|
356 |
|
357 |
# @ ure
|
358 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
359 |
#, fuzzy
|
360 |
msgid "Role name (ID): "
|
361 |
msgstr "El nom de rol (ID) no pot estar buit!"
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
364 |
msgid "Display Role Name: "
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:196
|
368 |
msgid "Make copy of: "
|
369 |
msgstr ""
|
370 |
|
371 |
# @ ure
|
372 |
+
#: ../includes/class-ure-lib.php:212
|
373 |
#, fuzzy
|
374 |
msgid "Select Role:"
|
375 |
msgstr "Eliminar Rol"
|
376 |
|
377 |
# @ ure
|
378 |
+
#: ../includes/class-ure-lib.php:227
|
379 |
#, fuzzy
|
380 |
msgid "Delete:"
|
381 |
msgstr "Eliminar Rol"
|
382 |
|
383 |
# @ ure
|
384 |
+
#: ../includes/class-ure-lib.php:234
|
385 |
#, fuzzy
|
386 |
msgid "Capability name (ID): "
|
387 |
msgstr "El nom de priviliegi (ID) no pot estar buit!"
|
388 |
|
389 |
# @ ure
|
390 |
+
#: ../includes/class-ure-lib.php:348
|
391 |
msgid "Error: "
|
392 |
msgstr "Error:"
|
393 |
|
394 |
# @ ure
|
395 |
+
#: ../includes/class-ure-lib.php:348
|
396 |
msgid "Role"
|
397 |
msgstr "Rol"
|
398 |
|
399 |
# @ ure
|
400 |
+
#: ../includes/class-ure-lib.php:349
|
401 |
msgid "does not exist"
|
402 |
msgstr "no existeix"
|
403 |
|
404 |
# @ ure
|
405 |
+
#: ../includes/class-ure-lib.php:392
|
406 |
msgid "Role is updated successfully"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:394
|
410 |
msgid "Roles are updated for all network"
|
411 |
msgstr ""
|
412 |
|
413 |
# @ ure
|
414 |
+
#: ../includes/class-ure-lib.php:400
|
415 |
msgid "Error occured during role(s) update"
|
416 |
msgstr ""
|
417 |
|
418 |
# @ ure
|
419 |
+
#: ../includes/class-ure-lib.php:407
|
420 |
msgid "User capabilities are updated successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
# @ ure
|
424 |
+
#: ../includes/class-ure-lib.php:412
|
425 |
msgid "Error occured during user update"
|
426 |
msgstr "Error trobat durant l'actualització del rol"
|
427 |
|
428 |
# @ ure
|
429 |
+
#: ../includes/class-ure-lib.php:470
|
430 |
msgid "User Roles are restored to WordPress default values. "
|
431 |
msgstr ""
|
432 |
"Els rols d'usuari es restableixen als valors predeterminats de WordPress."
|
433 |
|
434 |
# @ ure
|
435 |
+
#: ../includes/class-ure-lib.php:1337
|
436 |
msgid "Help"
|
437 |
msgstr "Ajuda"
|
438 |
|
439 |
# ure
|
440 |
+
#: ../includes/class-ure-lib.php:1695
|
441 |
msgid "Error is occur. Please check the log file."
|
442 |
msgstr "Ha ocorregut un error. Si us plau revisa l'arxiu de registres."
|
443 |
|
444 |
# @ ure
|
445 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
446 |
msgid ""
|
447 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
448 |
"only!"
|
449 |
msgstr "Error: nom del rol (ID) ha de tenir només lletres llatines i dígits!"
|
450 |
|
451 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
452 |
msgid ""
|
453 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
454 |
"characters to it."
|
455 |
msgstr ""
|
456 |
|
457 |
# @ ure
|
458 |
+
#: ../includes/class-ure-lib.php:1757
|
459 |
#, php-format
|
460 |
msgid "Role %s exists already"
|
461 |
msgstr "Rol %s ja existeix"
|
462 |
|
463 |
# @ ure
|
464 |
+
#: ../includes/class-ure-lib.php:1772
|
465 |
msgid "Error is encountered during new role create operation"
|
466 |
msgstr "Error trobat durant la creació d'un nou Rol"
|
467 |
|
468 |
# @ ure
|
469 |
+
#: ../includes/class-ure-lib.php:1774
|
470 |
#, php-format
|
471 |
msgid "Role %s is created successfully"
|
472 |
msgstr "Rol %s s'ha creat correctament"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:1798
|
475 |
msgid "Error: Role ID is empty!"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:1816
|
479 |
msgid "Error: Empty role display name is not allowed."
|
480 |
msgstr ""
|
481 |
|
482 |
# @ ure
|
483 |
+
#: ../includes/class-ure-lib.php:1823
|
484 |
#, fuzzy, php-format
|
485 |
msgid "Role %s does not exists"
|
486 |
msgstr "no existeix"
|
487 |
|
488 |
# @ ure
|
489 |
+
#: ../includes/class-ure-lib.php:1831
|
490 |
#, fuzzy, php-format
|
491 |
msgid "Role %s is renamed to %s successfully"
|
492 |
msgstr "Rol %s s'ha creat correctament"
|
493 |
|
494 |
# @ ure
|
495 |
+
#: ../includes/class-ure-lib.php:1898
|
496 |
msgid "Error encountered during role delete operation"
|
497 |
msgstr "Error trobat durant l'eliminació del Rol"
|
498 |
|
499 |
# @ ure
|
500 |
+
#: ../includes/class-ure-lib.php:1900
|
501 |
msgid "Unused roles are deleted successfully"
|
502 |
msgstr ""
|
503 |
|
504 |
# @ ure
|
505 |
+
#: ../includes/class-ure-lib.php:1902
|
506 |
#, php-format
|
507 |
msgid "Role %s is deleted successfully"
|
508 |
msgstr "Rol %s s'elimina amb èxit"
|
509 |
|
510 |
# @ ure
|
511 |
+
#: ../includes/class-ure-lib.php:1927
|
512 |
msgid "Error encountered during default role change operation"
|
513 |
msgstr "Error trobat durant el canvi de Rol per defecte"
|
514 |
|
515 |
# @ ure
|
516 |
+
#: ../includes/class-ure-lib.php:1933
|
517 |
#, php-format
|
518 |
msgid "Default role for new users is set to %s successfully"
|
519 |
msgstr "Rol predeterminat per a nous usuaris està establert en %s amb èxit"
|
520 |
|
521 |
# @ ure
|
522 |
+
#: ../includes/class-ure-lib.php:1952
|
523 |
msgid "Editor"
|
524 |
msgstr "Editor"
|
525 |
|
526 |
# @ ure
|
527 |
+
#: ../includes/class-ure-lib.php:1953
|
528 |
msgid "Author"
|
529 |
msgstr "Autor"
|
530 |
|
531 |
# @ ure
|
532 |
+
#: ../includes/class-ure-lib.php:1954
|
533 |
msgid "Contributor"
|
534 |
msgstr "Col·laborador"
|
535 |
|
536 |
# @ ure
|
537 |
+
#: ../includes/class-ure-lib.php:1955
|
538 |
msgid "Subscriber"
|
539 |
msgstr "Subscriptor"
|
540 |
|
541 |
# @ ure
|
542 |
+
#: ../includes/class-ure-lib.php:1957
|
543 |
msgid "Switch themes"
|
544 |
msgstr "Canviar plantilles"
|
545 |
|
546 |
# @ ure
|
547 |
+
#: ../includes/class-ure-lib.php:1958
|
548 |
msgid "Edit themes"
|
549 |
msgstr "Editar plantilles"
|
550 |
|
551 |
# @ ure
|
552 |
+
#: ../includes/class-ure-lib.php:1959
|
553 |
msgid "Activate plugins"
|
554 |
msgstr "Activar connectors"
|
555 |
|
556 |
# @ ure
|
557 |
+
#: ../includes/class-ure-lib.php:1960
|
558 |
msgid "Edit plugins"
|
559 |
msgstr "Editar connectors"
|
560 |
|
561 |
# @ ure
|
562 |
+
#: ../includes/class-ure-lib.php:1961
|
563 |
msgid "Edit users"
|
564 |
msgstr "Editar usuaris"
|
565 |
|
566 |
# @ ure
|
567 |
+
#: ../includes/class-ure-lib.php:1962
|
568 |
msgid "Edit files"
|
569 |
msgstr "Editar arxius"
|
570 |
|
571 |
# @ ure
|
572 |
+
#: ../includes/class-ure-lib.php:1963
|
573 |
msgid "Manage options"
|
574 |
msgstr "Administrar opcions"
|
575 |
|
576 |
# @ ure
|
577 |
+
#: ../includes/class-ure-lib.php:1964
|
578 |
msgid "Moderate comments"
|
579 |
msgstr "Moderar comentaris"
|
580 |
|
581 |
# @ ure
|
582 |
+
#: ../includes/class-ure-lib.php:1965
|
583 |
msgid "Manage categories"
|
584 |
msgstr "Administrar categories"
|
585 |
|
586 |
# @ ure
|
587 |
+
#: ../includes/class-ure-lib.php:1966
|
588 |
msgid "Manage links"
|
589 |
msgstr "Administrar enllaços"
|
590 |
|
591 |
# @ ure
|
592 |
+
#: ../includes/class-ure-lib.php:1967
|
593 |
msgid "Upload files"
|
594 |
msgstr "Pujar arxius"
|
595 |
|
596 |
# @ ure
|
597 |
+
#: ../includes/class-ure-lib.php:1968
|
598 |
msgid "Import"
|
599 |
msgstr "Importar"
|
600 |
|
601 |
# @ ure
|
602 |
+
#: ../includes/class-ure-lib.php:1969
|
603 |
msgid "Unfiltered html"
|
604 |
msgstr "Ometre Filtrat d'HTML"
|
605 |
|
606 |
# @ ure
|
607 |
+
#: ../includes/class-ure-lib.php:1970
|
608 |
msgid "Edit posts"
|
609 |
msgstr "Editar missatges"
|
610 |
|
611 |
# @ ure
|
612 |
+
#: ../includes/class-ure-lib.php:1971
|
613 |
msgid "Edit others posts"
|
614 |
msgstr "Editar missatges de altres"
|
615 |
|
616 |
# @ ure
|
617 |
+
#: ../includes/class-ure-lib.php:1972
|
618 |
msgid "Edit published posts"
|
619 |
msgstr "Editar els missatges publicats"
|
620 |
|
621 |
# @ ure
|
622 |
+
#: ../includes/class-ure-lib.php:1973
|
623 |
msgid "Publish posts"
|
624 |
msgstr "Publicar missatges"
|
625 |
|
626 |
# @ ure
|
627 |
+
#: ../includes/class-ure-lib.php:1974
|
628 |
msgid "Edit pages"
|
629 |
msgstr "Editar pàgines"
|
630 |
|
631 |
# @ ure
|
632 |
+
#: ../includes/class-ure-lib.php:1975
|
633 |
msgid "Read"
|
634 |
msgstr "Llegir"
|
635 |
|
636 |
# @ ure
|
637 |
+
#: ../includes/class-ure-lib.php:1976
|
638 |
msgid "Level 10"
|
639 |
msgstr "Nivell 10"
|
640 |
|
641 |
# @ ure
|
642 |
+
#: ../includes/class-ure-lib.php:1977
|
643 |
msgid "Level 9"
|
644 |
msgstr "Nivell 9"
|
645 |
|
646 |
# @ ure
|
647 |
+
#: ../includes/class-ure-lib.php:1978
|
648 |
msgid "Level 8"
|
649 |
msgstr "Nivell 8"
|
650 |
|
651 |
# @ ure
|
652 |
+
#: ../includes/class-ure-lib.php:1979
|
653 |
msgid "Level 7"
|
654 |
msgstr "Nivell 7"
|
655 |
|
656 |
# @ ure
|
657 |
+
#: ../includes/class-ure-lib.php:1980
|
658 |
msgid "Level 6"
|
659 |
msgstr "Nivell 6"
|
660 |
|
661 |
# @ ure
|
662 |
+
#: ../includes/class-ure-lib.php:1981
|
663 |
msgid "Level 5"
|
664 |
msgstr "Nivell 5"
|
665 |
|
666 |
# @ ure
|
667 |
+
#: ../includes/class-ure-lib.php:1982
|
668 |
msgid "Level 4"
|
669 |
msgstr "Nivell 4"
|
670 |
|
671 |
# @ ure
|
672 |
+
#: ../includes/class-ure-lib.php:1983
|
673 |
msgid "Level 3"
|
674 |
msgstr "Nivell 3"
|
675 |
|
676 |
# @ ure
|
677 |
+
#: ../includes/class-ure-lib.php:1984
|
678 |
msgid "Level 2"
|
679 |
msgstr "Nivell 2"
|
680 |
|
681 |
# @ ure
|
682 |
+
#: ../includes/class-ure-lib.php:1985
|
683 |
msgid "Level 1"
|
684 |
msgstr "Nivell 1"
|
685 |
|
686 |
# @ ure
|
687 |
+
#: ../includes/class-ure-lib.php:1986
|
688 |
msgid "Level 0"
|
689 |
msgstr "Nivell 0"
|
690 |
|
691 |
# @ ure
|
692 |
+
#: ../includes/class-ure-lib.php:1987
|
693 |
msgid "Edit others pages"
|
694 |
msgstr "Editar pàgines de altres"
|
695 |
|
696 |
# @ ure
|
697 |
+
#: ../includes/class-ure-lib.php:1988
|
698 |
msgid "Edit published pages"
|
699 |
msgstr "Editar pàgines publicades"
|
700 |
|
701 |
# @ ure
|
702 |
+
#: ../includes/class-ure-lib.php:1989
|
703 |
msgid "Publish pages"
|
704 |
msgstr "Publicar pàgines"
|
705 |
|
706 |
# @ ure
|
707 |
+
#: ../includes/class-ure-lib.php:1990
|
708 |
msgid "Delete pages"
|
709 |
msgstr "Eliminar pàgines"
|
710 |
|
711 |
# ure
|
712 |
+
#: ../includes/class-ure-lib.php:1991
|
713 |
msgid "Delete others pages"
|
714 |
msgstr "Eliminar pàgines de altres"
|
715 |
|
716 |
# @ ure
|
717 |
+
#: ../includes/class-ure-lib.php:1992
|
718 |
msgid "Delete published pages"
|
719 |
msgstr "Eliminar pàgines publicades"
|
720 |
|
721 |
# ure
|
722 |
+
#: ../includes/class-ure-lib.php:1993
|
723 |
msgid "Delete posts"
|
724 |
msgstr "Eliminar missatges"
|
725 |
|
726 |
# @ ure
|
727 |
+
#: ../includes/class-ure-lib.php:1994
|
728 |
msgid "Delete others posts"
|
729 |
msgstr "Eliminar missatges de altres"
|
730 |
|
731 |
# ure
|
732 |
+
#: ../includes/class-ure-lib.php:1995
|
733 |
msgid "Delete published posts"
|
734 |
msgstr "Eliminar missatges publicats"
|
735 |
|
736 |
# ure
|
737 |
+
#: ../includes/class-ure-lib.php:1996
|
738 |
msgid "Delete private posts"
|
739 |
msgstr "Eliminar missatges privats"
|
740 |
|
741 |
# @ ure
|
742 |
+
#: ../includes/class-ure-lib.php:1997
|
743 |
msgid "Edit private posts"
|
744 |
msgstr "Editar missatges privats"
|
745 |
|
746 |
# @ ure
|
747 |
+
#: ../includes/class-ure-lib.php:1998
|
748 |
msgid "Read private posts"
|
749 |
msgstr "Llegir missatges privats"
|
750 |
|
751 |
# @ ure
|
752 |
+
#: ../includes/class-ure-lib.php:1999
|
753 |
msgid "Delete private pages"
|
754 |
msgstr "Eliminar pàgines privades"
|
755 |
|
756 |
# @ ure
|
757 |
+
#: ../includes/class-ure-lib.php:2000
|
758 |
msgid "Edit private pages"
|
759 |
msgstr "Editar pàgines privades"
|
760 |
|
761 |
# @ ure
|
762 |
+
#: ../includes/class-ure-lib.php:2001
|
763 |
msgid "Read private pages"
|
764 |
msgstr "Llegir pàgines privades"
|
765 |
|
766 |
# @ ure
|
767 |
+
#: ../includes/class-ure-lib.php:2002
|
768 |
msgid "Delete users"
|
769 |
msgstr "Eliminar usuaris"
|
770 |
|
771 |
# @ ure
|
772 |
+
#: ../includes/class-ure-lib.php:2003
|
773 |
msgid "Create users"
|
774 |
msgstr "Crear usuaris"
|
775 |
|
776 |
# @ ure
|
777 |
+
#: ../includes/class-ure-lib.php:2004
|
778 |
msgid "Unfiltered upload"
|
779 |
msgstr "Sense filtre de càrrega"
|
780 |
|
781 |
# @ ure
|
782 |
+
#: ../includes/class-ure-lib.php:2005
|
783 |
msgid "Edit dashboard"
|
784 |
msgstr "Editar taulell"
|
785 |
|
786 |
# @ ure
|
787 |
+
#: ../includes/class-ure-lib.php:2006
|
788 |
msgid "Update plugins"
|
789 |
msgstr "Actualitzar connectors"
|
790 |
|
791 |
# @ ure
|
792 |
+
#: ../includes/class-ure-lib.php:2007
|
793 |
msgid "Delete plugins"
|
794 |
msgstr "Eliminar connectors"
|
795 |
|
796 |
# @ ure
|
797 |
+
#: ../includes/class-ure-lib.php:2008
|
798 |
msgid "Install plugins"
|
799 |
msgstr "Instal·lar connectors"
|
800 |
|
801 |
# @ ure
|
802 |
+
#: ../includes/class-ure-lib.php:2009
|
803 |
msgid "Update themes"
|
804 |
msgstr "Actualitzar plantilles"
|
805 |
|
806 |
# @ ure
|
807 |
+
#: ../includes/class-ure-lib.php:2010
|
808 |
msgid "Install themes"
|
809 |
msgstr "Instal·lar plantilles"
|
810 |
|
811 |
# @ ure
|
812 |
+
#: ../includes/class-ure-lib.php:2011
|
813 |
msgid "Update core"
|
814 |
msgstr "Actualitzar nucli"
|
815 |
|
816 |
# @ ure
|
817 |
+
#: ../includes/class-ure-lib.php:2012
|
818 |
msgid "List users"
|
819 |
msgstr "Llistar usuaris"
|
820 |
|
821 |
# @ ure
|
822 |
+
#: ../includes/class-ure-lib.php:2013
|
823 |
msgid "Remove users"
|
824 |
msgstr "Eliminar usuaris"
|
825 |
|
826 |
# @ ure
|
827 |
+
#: ../includes/class-ure-lib.php:2014
|
828 |
msgid "Add users"
|
829 |
msgstr "Afegir usuaris"
|
830 |
|
831 |
# @ ure
|
832 |
+
#: ../includes/class-ure-lib.php:2015
|
833 |
msgid "Promote users"
|
834 |
msgstr "Promoure usuaris"
|
835 |
|
836 |
# @ ure
|
837 |
+
#: ../includes/class-ure-lib.php:2016
|
838 |
msgid "Edit theme options"
|
839 |
msgstr "Editar opcions de plantilla"
|
840 |
|
841 |
# @ ure
|
842 |
+
#: ../includes/class-ure-lib.php:2017
|
843 |
msgid "Delete themes"
|
844 |
msgstr "Eliminar plantilles"
|
845 |
|
846 |
# @ ure
|
847 |
+
#: ../includes/class-ure-lib.php:2018
|
848 |
msgid "Export"
|
849 |
msgstr "Exportar"
|
850 |
|
851 |
# @ ure
|
852 |
+
#: ../includes/class-ure-lib.php:2128
|
853 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
854 |
msgstr ""
|
855 |
"Error: el nom del Privilegi només ha de contenir caràcters llatins i dígits."
|
856 |
|
857 |
# @ ure
|
858 |
+
#: ../includes/class-ure-lib.php:2141
|
859 |
#, php-format
|
860 |
msgid "Capability %s is added successfully"
|
861 |
msgstr "Privilegi %s s'ha afegit correctament"
|
862 |
|
863 |
# @ ure
|
864 |
+
#: ../includes/class-ure-lib.php:2143
|
865 |
#, php-format
|
866 |
msgid "Capability %s exists already"
|
867 |
msgstr "Ja existeix el privilegi %s"
|
868 |
|
869 |
# @ ure
|
870 |
+
#: ../includes/class-ure-lib.php:2168
|
871 |
#, php-format
|
872 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
873 |
msgstr "¡Error! No tens permisos per esborrar aquest privilegi: %s !"
|
874 |
|
875 |
# @ ure
|
876 |
+
#: ../includes/class-ure-lib.php:2187
|
877 |
#, php-format
|
878 |
msgid "Capability %s is removed successfully"
|
879 |
msgstr "El privilegi %s s'ha eliminat amb èxit"
|
880 |
|
881 |
+
#: ../includes/class-ure-lib.php:2291
|
882 |
msgid "Version:"
|
883 |
msgstr ""
|
884 |
|
885 |
# @ ure
|
886 |
+
#: ../includes/class-ure-lib.php:2292
|
887 |
msgid "Author's website"
|
888 |
msgstr "Lloc web del autor"
|
889 |
|
890 |
# @ ure
|
891 |
+
#: ../includes/class-ure-lib.php:2293
|
892 |
msgid "Plugin webpage"
|
893 |
msgstr "Pàgina web del connector"
|
894 |
|
895 |
# @ ure
|
896 |
+
#: ../includes/class-ure-lib.php:2294
|
897 |
#, fuzzy
|
898 |
msgid "Plugin download"
|
899 |
msgstr "Pàgina web del connector"
|
900 |
|
901 |
# @ ure
|
902 |
+
#: ../includes/class-ure-lib.php:2296
|
903 |
msgid "FAQ"
|
904 |
msgstr "FAQ"
|
905 |
|
906 |
# @ ure
|
907 |
+
#: ../includes/class-ure-lib.php:2344
|
908 |
msgid "None"
|
909 |
msgstr "Cap"
|
910 |
|
911 |
# @ ure
|
912 |
+
#: ../includes/class-ure-lib.php:2371
|
913 |
msgid "Delete All Unused Roles"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../includes/class-ure-lib.php:2395
|
917 |
msgid "— No role for this site —"
|
918 |
msgstr ""
|
919 |
|
962 |
"deprecated capabilities."
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: ../includes/class-ure-screen-help.php:42
|
966 |
+
msgid ""
|
967 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
968 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
969 |
+
"users list with role \"No rights\" at the separate tab then."
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: ../includes/class-ure-screen-help.php:59
|
973 |
+
msgid "Other default roles for new registered user"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: ../includes/class-ure-screen-help.php:60
|
977 |
+
msgid ""
|
978 |
+
"select roles below to assign them to the new user automatically as an "
|
979 |
+
"addition to the primary role. Note for multisite environment: take into "
|
980 |
+
"account that other default roles should exist at the site, in order to be "
|
981 |
+
"assigned to the new registered users."
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: ../includes/class-ure-screen-help.php:78
|
985 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: ../includes/class-ure-screen-help.php:79
|
989 |
msgid ""
|
990 |
"Super administrator only may create, edit and delete users under WordPress "
|
991 |
+
"multi-site by default. Turn this option on in order to remove this "
|
992 |
+
"limitation."
|
993 |
msgstr ""
|
lang/ure-es_ES.mo
CHANGED
Binary file
|
lang/ure-es_ES.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -38,7 +38,7 @@ msgid "Default Roles"
|
|
38 |
msgstr "Rol Predeterminado"
|
39 |
|
40 |
#: ../includes/settings-template.php:34
|
41 |
-
#: ../includes/class-user-role-editor.php:
|
42 |
msgid "Multisite"
|
43 |
msgstr ""
|
44 |
|
@@ -68,7 +68,7 @@ msgid "Save"
|
|
68 |
msgstr "Guardar"
|
69 |
|
70 |
#: ../includes/settings-template.php:102
|
71 |
-
#: ../includes/class-ure-screen-help.php:
|
72 |
msgid "Count users without role"
|
73 |
msgstr ""
|
74 |
|
@@ -118,73 +118,73 @@ msgid "Settings"
|
|
118 |
msgstr "Configuración"
|
119 |
|
120 |
#: ../includes/class-user-role-editor.php:525
|
121 |
-
#: ../includes/class-ure-lib.php:
|
122 |
msgid "Changelog"
|
123 |
msgstr "Registro de cambios"
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Editor de Roles"
|
131 |
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Opciones actualizadas"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
#, fuzzy
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr "Rol Predeterminado"
|
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 "Permisos insuficientes para trabajar"
|
148 |
|
149 |
-
#: ../includes/class-user-role-editor.php:
|
150 |
msgid "Insufficient permissions to work with User Role Editor"
|
151 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
152 |
|
153 |
-
#: ../includes/class-user-role-editor.php:
|
154 |
msgid "Select All"
|
155 |
msgstr "Seleccionar todo"
|
156 |
|
157 |
-
#: ../includes/class-user-role-editor.php:
|
158 |
msgid "Unselect All"
|
159 |
msgstr "Deseleccionar todo"
|
160 |
|
161 |
-
#: ../includes/class-user-role-editor.php:
|
162 |
msgid "Reverse"
|
163 |
msgstr "Revertir"
|
164 |
|
165 |
-
#: ../includes/class-user-role-editor.php:
|
166 |
msgid "Update"
|
167 |
msgstr "Actualizar"
|
168 |
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
msgid "Please confirm permissions update"
|
171 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
172 |
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Add New Role"
|
175 |
msgstr "Agregar nuevo Rol"
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
#, fuzzy
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Eliminar Rol"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
@@ -192,66 +192,66 @@ msgstr ""
|
|
192 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
193 |
"altos o bajos!"
|
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 "Agregar Rol"
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Eliminar Rol"
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
msgid "Cancel"
|
211 |
msgstr "Cancelar"
|
212 |
|
213 |
-
#: ../includes/class-user-role-editor.php:
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Agregar Capacidad"
|
216 |
|
217 |
-
#: ../includes/class-user-role-editor.php:
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Eliminar Capacidades"
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid "Reset"
|
224 |
msgstr "Reiniciar"
|
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 "Rol Predeterminado"
|
249 |
|
250 |
-
#: ../includes/class-user-role-editor.php:
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr "Establecer nuevo Rol"
|
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"
|
@@ -259,11 +259,11 @@ msgstr ""
|
|
259 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
260 |
"algún plugin o código personalizado"
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
msgid " Capability name (ID) can not be empty!"
|
264 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
265 |
|
266 |
-
#: ../includes/class-user-role-editor.php:
|
267 |
msgid ""
|
268 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
269 |
"underscore only!"
|
@@ -271,12 +271,12 @@ msgstr ""
|
|
271 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
272 |
"guiones altos o bajos!"
|
273 |
|
274 |
-
#: ../includes/class-user-role-editor.php:
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
msgid "Other Roles"
|
277 |
msgstr "Otros Roles"
|
278 |
|
279 |
-
#: ../includes/class-user-role-editor.php:
|
280 |
msgid "Edit"
|
281 |
msgstr "Editar"
|
282 |
|
@@ -310,80 +310,80 @@ msgstr "Filtro rápido:"
|
|
310 |
msgid "Custom capabilities:"
|
311 |
msgstr "Capacidades personalizadas:"
|
312 |
|
313 |
-
#: ../includes/class-ure-lib.php:
|
314 |
msgid "Error: wrong request"
|
315 |
msgstr "Error: Petición inválida"
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
msgid "Role name (ID): "
|
319 |
msgstr "Nombre del Rol (ID):"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Display Role Name: "
|
323 |
msgstr "Mostrar nombre del Rol:"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Make copy of: "
|
327 |
msgstr "Hacer copia de:"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Select Role:"
|
331 |
msgstr "Seleccionar Rol:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Delete:"
|
335 |
msgstr "Eliminar:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Capability name (ID): "
|
339 |
msgstr "Nombre de la Capacidad (ID):"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Error: "
|
343 |
msgstr "Error:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Role"
|
347 |
msgstr "Rol"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "does not exist"
|
351 |
msgstr "no existe"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Role is updated successfully"
|
355 |
msgstr "El Rol fue exitosamente actualizado"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Roles are updated for all network"
|
359 |
msgstr "Roles actualizados en toda la Red"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Error occured during role(s) update"
|
363 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "User capabilities are updated successfully"
|
367 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Error occured during user update"
|
371 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "User Roles are restored to WordPress default values. "
|
375 |
msgstr ""
|
376 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Help"
|
380 |
msgstr "Ayuda"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "Error is occur. Please check the log file."
|
384 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid ""
|
388 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
389 |
"only!"
|
@@ -391,386 +391,386 @@ msgstr ""
|
|
391 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
392 |
"altos o bajos!"
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid ""
|
396 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
397 |
"characters to it."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: ../includes/class-ure-lib.php:
|
401 |
#, php-format
|
402 |
msgid "Role %s exists already"
|
403 |
msgstr "El Rol %s ya existe"
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
msgid "Error is encountered during new role create operation"
|
407 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s is created successfully"
|
412 |
msgstr "El Rol %s fue creado exitosamente"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error: Role ID is empty!"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
msgid "Error: Empty role display name is not allowed."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: ../includes/class-ure-lib.php:
|
423 |
#, fuzzy, php-format
|
424 |
msgid "Role %s does not exists"
|
425 |
msgstr "no existe"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, fuzzy, php-format
|
429 |
msgid "Role %s is renamed to %s successfully"
|
430 |
msgstr "El Rol %s fue creado exitosamente"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
msgid "Error encountered during role delete operation"
|
434 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
msgid "Unused roles are deleted successfully"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: ../includes/class-ure-lib.php:
|
441 |
#, php-format
|
442 |
msgid "Role %s is deleted successfully"
|
443 |
msgstr "El Rol %s fue eliminado exitosamente"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Error encountered during default role change operation"
|
447 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Default role for new users is set to %s successfully"
|
452 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Editor"
|
456 |
msgstr "Editor"
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
msgid "Author"
|
460 |
msgstr "Autor"
|
461 |
|
462 |
-
#: ../includes/class-ure-lib.php:
|
463 |
msgid "Contributor"
|
464 |
msgstr "Contribuyente"
|
465 |
|
466 |
-
#: ../includes/class-ure-lib.php:
|
467 |
msgid "Subscriber"
|
468 |
msgstr "Suscriptor"
|
469 |
|
470 |
-
#: ../includes/class-ure-lib.php:
|
471 |
msgid "Switch themes"
|
472 |
msgstr "Cambiar temas (plantillas)"
|
473 |
|
474 |
-
#: ../includes/class-ure-lib.php:
|
475 |
msgid "Edit themes"
|
476 |
msgstr "Editar temas (plantillas)"
|
477 |
|
478 |
-
#: ../includes/class-ure-lib.php:
|
479 |
msgid "Activate plugins"
|
480 |
msgstr "Activar plugins"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Edit plugins"
|
484 |
msgstr "Editar plugins"
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Edit users"
|
488 |
msgstr "Editar usuarios"
|
489 |
|
490 |
-
#: ../includes/class-ure-lib.php:
|
491 |
msgid "Edit files"
|
492 |
msgstr "Editar archivos"
|
493 |
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
msgid "Manage options"
|
496 |
msgstr "Administrar opciones"
|
497 |
|
498 |
-
#: ../includes/class-ure-lib.php:
|
499 |
msgid "Moderate comments"
|
500 |
msgstr "Moderar comentarios"
|
501 |
|
502 |
-
#: ../includes/class-ure-lib.php:
|
503 |
msgid "Manage categories"
|
504 |
msgstr "Administrar categorías"
|
505 |
|
506 |
-
#: ../includes/class-ure-lib.php:
|
507 |
msgid "Manage links"
|
508 |
msgstr "Administrar enlaces"
|
509 |
|
510 |
-
#: ../includes/class-ure-lib.php:
|
511 |
msgid "Upload files"
|
512 |
msgstr "Subir archivos"
|
513 |
|
514 |
-
#: ../includes/class-ure-lib.php:
|
515 |
msgid "Import"
|
516 |
msgstr "Importar"
|
517 |
|
518 |
-
#: ../includes/class-ure-lib.php:
|
519 |
msgid "Unfiltered html"
|
520 |
msgstr "HTML sin filtrar"
|
521 |
|
522 |
-
#: ../includes/class-ure-lib.php:
|
523 |
msgid "Edit posts"
|
524 |
msgstr "Editar entradas"
|
525 |
|
526 |
-
#: ../includes/class-ure-lib.php:
|
527 |
msgid "Edit others posts"
|
528 |
msgstr "Editar entradas ajenas"
|
529 |
|
530 |
-
#: ../includes/class-ure-lib.php:
|
531 |
msgid "Edit published posts"
|
532 |
msgstr "Editar entradas publicadas"
|
533 |
|
534 |
-
#: ../includes/class-ure-lib.php:
|
535 |
msgid "Publish posts"
|
536 |
msgstr "Publicar entradas"
|
537 |
|
538 |
-
#: ../includes/class-ure-lib.php:
|
539 |
msgid "Edit pages"
|
540 |
msgstr "Editar páginas"
|
541 |
|
542 |
-
#: ../includes/class-ure-lib.php:
|
543 |
msgid "Read"
|
544 |
msgstr "Leer"
|
545 |
|
546 |
-
#: ../includes/class-ure-lib.php:
|
547 |
msgid "Level 10"
|
548 |
msgstr "Nivel 10"
|
549 |
|
550 |
-
#: ../includes/class-ure-lib.php:
|
551 |
msgid "Level 9"
|
552 |
msgstr "Nivel 9"
|
553 |
|
554 |
-
#: ../includes/class-ure-lib.php:
|
555 |
msgid "Level 8"
|
556 |
msgstr "Nivel 8"
|
557 |
|
558 |
-
#: ../includes/class-ure-lib.php:
|
559 |
msgid "Level 7"
|
560 |
msgstr "Nivel 7"
|
561 |
|
562 |
-
#: ../includes/class-ure-lib.php:
|
563 |
msgid "Level 6"
|
564 |
msgstr "Nivel 6"
|
565 |
|
566 |
-
#: ../includes/class-ure-lib.php:
|
567 |
msgid "Level 5"
|
568 |
msgstr "Nivel 5"
|
569 |
|
570 |
-
#: ../includes/class-ure-lib.php:
|
571 |
msgid "Level 4"
|
572 |
msgstr "Nivel 4"
|
573 |
|
574 |
-
#: ../includes/class-ure-lib.php:
|
575 |
msgid "Level 3"
|
576 |
msgstr "Nivel 3"
|
577 |
|
578 |
-
#: ../includes/class-ure-lib.php:
|
579 |
msgid "Level 2"
|
580 |
msgstr "Nivel 2"
|
581 |
|
582 |
-
#: ../includes/class-ure-lib.php:
|
583 |
msgid "Level 1"
|
584 |
msgstr "Nivel 1"
|
585 |
|
586 |
-
#: ../includes/class-ure-lib.php:
|
587 |
msgid "Level 0"
|
588 |
msgstr "Nivel 0"
|
589 |
|
590 |
-
#: ../includes/class-ure-lib.php:
|
591 |
msgid "Edit others pages"
|
592 |
msgstr "Editar páginas ajenas"
|
593 |
|
594 |
-
#: ../includes/class-ure-lib.php:
|
595 |
msgid "Edit published pages"
|
596 |
msgstr "Editar páginas publicadas"
|
597 |
|
598 |
-
#: ../includes/class-ure-lib.php:
|
599 |
msgid "Publish pages"
|
600 |
msgstr "Publicar páginas"
|
601 |
|
602 |
-
#: ../includes/class-ure-lib.php:
|
603 |
msgid "Delete pages"
|
604 |
msgstr "Eliminar páginas"
|
605 |
|
606 |
-
#: ../includes/class-ure-lib.php:
|
607 |
msgid "Delete others pages"
|
608 |
msgstr "Eliminar páginas ajenas"
|
609 |
|
610 |
-
#: ../includes/class-ure-lib.php:
|
611 |
msgid "Delete published pages"
|
612 |
msgstr "Eliminar páginas publicadas"
|
613 |
|
614 |
-
#: ../includes/class-ure-lib.php:
|
615 |
msgid "Delete posts"
|
616 |
msgstr "Eliminar entradas"
|
617 |
|
618 |
-
#: ../includes/class-ure-lib.php:
|
619 |
msgid "Delete others posts"
|
620 |
msgstr "Eliminar entradas ajenas"
|
621 |
|
622 |
-
#: ../includes/class-ure-lib.php:
|
623 |
msgid "Delete published posts"
|
624 |
msgstr "Eliminar entradas publicadas"
|
625 |
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
msgid "Delete private posts"
|
628 |
msgstr "Eliminar entradas privadas"
|
629 |
|
630 |
-
#: ../includes/class-ure-lib.php:
|
631 |
msgid "Edit private posts"
|
632 |
msgstr "Editar entradas privadas"
|
633 |
|
634 |
-
#: ../includes/class-ure-lib.php:
|
635 |
msgid "Read private posts"
|
636 |
msgstr "Leer entradas privadas"
|
637 |
|
638 |
-
#: ../includes/class-ure-lib.php:
|
639 |
msgid "Delete private pages"
|
640 |
msgstr "Eliminar páginas privadas"
|
641 |
|
642 |
-
#: ../includes/class-ure-lib.php:
|
643 |
msgid "Edit private pages"
|
644 |
msgstr "Editar páginas privadas"
|
645 |
|
646 |
-
#: ../includes/class-ure-lib.php:
|
647 |
msgid "Read private pages"
|
648 |
msgstr "Leer páginas privadas"
|
649 |
|
650 |
-
#: ../includes/class-ure-lib.php:
|
651 |
msgid "Delete users"
|
652 |
msgstr "Eliminar usuarios"
|
653 |
|
654 |
-
#: ../includes/class-ure-lib.php:
|
655 |
msgid "Create users"
|
656 |
msgstr "Crear usuarios"
|
657 |
|
658 |
-
#: ../includes/class-ure-lib.php:
|
659 |
msgid "Unfiltered upload"
|
660 |
msgstr "Subir sin filtrado"
|
661 |
|
662 |
-
#: ../includes/class-ure-lib.php:
|
663 |
msgid "Edit dashboard"
|
664 |
msgstr "Editar escritorio"
|
665 |
|
666 |
-
#: ../includes/class-ure-lib.php:
|
667 |
msgid "Update plugins"
|
668 |
msgstr "Actualizar plugins"
|
669 |
|
670 |
-
#: ../includes/class-ure-lib.php:
|
671 |
msgid "Delete plugins"
|
672 |
msgstr "Eliminar plugins"
|
673 |
|
674 |
-
#: ../includes/class-ure-lib.php:
|
675 |
msgid "Install plugins"
|
676 |
msgstr "Instalar plugins"
|
677 |
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Update themes"
|
680 |
msgstr "Actualizar temas (plantillas)"
|
681 |
|
682 |
-
#: ../includes/class-ure-lib.php:
|
683 |
msgid "Install themes"
|
684 |
msgstr "Instalar temas (plantillas)"
|
685 |
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Update core"
|
688 |
msgstr "Actualizar núcleo"
|
689 |
|
690 |
-
#: ../includes/class-ure-lib.php:
|
691 |
msgid "List users"
|
692 |
msgstr "Listar usuarios"
|
693 |
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
msgid "Remove users"
|
696 |
msgstr "Eliminar usuarios"
|
697 |
|
698 |
-
#: ../includes/class-ure-lib.php:
|
699 |
msgid "Add users"
|
700 |
msgstr "Agregar usuarios"
|
701 |
|
702 |
-
#: ../includes/class-ure-lib.php:
|
703 |
msgid "Promote users"
|
704 |
msgstr "Promover usuarios"
|
705 |
|
706 |
-
#: ../includes/class-ure-lib.php:
|
707 |
msgid "Edit theme options"
|
708 |
msgstr "Editar opciones del tema (plantilla)"
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
msgid "Delete themes"
|
712 |
msgstr "Eliminar temas (plantillas)"
|
713 |
|
714 |
-
#: ../includes/class-ure-lib.php:
|
715 |
msgid "Export"
|
716 |
msgstr "Exportar"
|
717 |
|
718 |
-
#: ../includes/class-ure-lib.php:
|
719 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
720 |
msgstr ""
|
721 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
#, php-format
|
725 |
msgid "Capability %s is added successfully"
|
726 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
#, php-format
|
730 |
msgid "Capability %s exists already"
|
731 |
msgstr "La Capacidad %s ya existe"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
#, php-format
|
735 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
736 |
msgstr ""
|
737 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
#, php-format
|
741 |
msgid "Capability %s is removed successfully"
|
742 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Version:"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
msgid "Author's website"
|
750 |
msgstr "Sitio web del Autor"
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Plugin webpage"
|
754 |
msgstr "Página web del Plugin"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
#, fuzzy
|
758 |
msgid "Plugin download"
|
759 |
msgstr "Página web del Plugin"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "FAQ"
|
763 |
msgstr "FAQ"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "None"
|
767 |
msgstr "Ninguno"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "Delete All Unused Roles"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "— No role for this site —"
|
775 |
msgstr ""
|
776 |
|
@@ -816,16 +816,18 @@ msgid ""
|
|
816 |
"deprecated capabilities."
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../includes/class-ure-screen-help.php:
|
820 |
-
|
821 |
-
|
822 |
-
|
|
|
|
|
823 |
|
824 |
-
#: ../includes/class-ure-screen-help.php:
|
825 |
msgid "Other default roles for new registered user"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../includes/class-ure-screen-help.php:
|
829 |
msgid ""
|
830 |
"select roles below to assign them to the new user automatically as an "
|
831 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -833,17 +835,21 @@ msgid ""
|
|
833 |
"assigned to the new registered users."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../includes/class-ure-screen-help.php:
|
837 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../includes/class-ure-screen-help.php:
|
841 |
msgid ""
|
842 |
"Super administrator only may create, edit and delete users under WordPress "
|
843 |
"multi-site by default. Turn this option on in order to remove this "
|
844 |
"limitation."
|
845 |
msgstr ""
|
846 |
|
|
|
|
|
|
|
|
|
847 |
#~ msgid "About this Plugin:"
|
848 |
#~ msgstr "Acerca de este Plugin:"
|
849 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:21+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"
|
9 |
"Language: es_ES\n"
|
10 |
"MIME-Version: 1.0\n"
|
38 |
msgstr "Rol Predeterminado"
|
39 |
|
40 |
#: ../includes/settings-template.php:34
|
41 |
+
#: ../includes/class-user-role-editor.php:565
|
42 |
msgid "Multisite"
|
43 |
msgstr ""
|
44 |
|
68 |
msgstr "Guardar"
|
69 |
|
70 |
#: ../includes/settings-template.php:102
|
71 |
+
#: ../includes/class-ure-screen-help.php:41
|
72 |
msgid "Count users without role"
|
73 |
msgstr ""
|
74 |
|
118 |
msgstr "Configuración"
|
119 |
|
120 |
#: ../includes/class-user-role-editor.php:525
|
121 |
+
#: ../includes/class-ure-lib.php:2295
|
122 |
msgid "Changelog"
|
123 |
msgstr "Registro de cambios"
|
124 |
|
125 |
+
#: ../includes/class-user-role-editor.php:575
|
126 |
+
#: ../includes/class-user-role-editor.php:603
|
127 |
+
#: ../includes/class-user-role-editor.php:948
|
128 |
+
#: ../includes/class-ure-lib.php:251
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Editor de Roles"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:660
|
133 |
+
#: ../includes/class-user-role-editor.php:678
|
134 |
+
#: ../includes/class-user-role-editor.php:722
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Opciones actualizadas"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:706
|
139 |
#, fuzzy
|
140 |
msgid "Default Roles are updated"
|
141 |
msgstr "Rol Predeterminado"
|
142 |
|
143 |
+
#: ../includes/class-user-role-editor.php:730
|
144 |
msgid ""
|
145 |
"You do not have sufficient permissions to manage options for User Role "
|
146 |
"Editor."
|
147 |
msgstr "Permisos insuficientes para trabajar"
|
148 |
|
149 |
+
#: ../includes/class-user-role-editor.php:809
|
150 |
msgid "Insufficient permissions to work with User Role Editor"
|
151 |
msgstr "Permisos insuficientes para trabajar con el Editor de Roles"
|
152 |
|
153 |
+
#: ../includes/class-user-role-editor.php:890
|
154 |
msgid "Select All"
|
155 |
msgstr "Seleccionar todo"
|
156 |
|
157 |
+
#: ../includes/class-user-role-editor.php:891
|
158 |
msgid "Unselect All"
|
159 |
msgstr "Deseleccionar todo"
|
160 |
|
161 |
+
#: ../includes/class-user-role-editor.php:892
|
162 |
msgid "Reverse"
|
163 |
msgstr "Revertir"
|
164 |
|
165 |
+
#: ../includes/class-user-role-editor.php:893
|
166 |
msgid "Update"
|
167 |
msgstr "Actualizar"
|
168 |
|
169 |
+
#: ../includes/class-user-role-editor.php:894
|
170 |
msgid "Please confirm permissions update"
|
171 |
msgstr "Por favor confirma las actualizaciones de permisos"
|
172 |
|
173 |
+
#: ../includes/class-user-role-editor.php:895
|
174 |
msgid "Add New Role"
|
175 |
msgstr "Agregar nuevo Rol"
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:896
|
178 |
+
#: ../includes/class-user-role-editor.php:901
|
179 |
#, fuzzy
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Eliminar Rol"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:897
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "¡El nombre del Rol (ID) no puede estar vacío!"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:898
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
192 |
"¡El nombre del Rol (ID) sólo debe contener caracteres alfanuméricos, guiones "
|
193 |
"altos o bajos!"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:899
|
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:900
|
202 |
msgid "Add Role"
|
203 |
msgstr "Agregar Rol"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:902
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Eliminar Rol"
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:903
|
210 |
msgid "Cancel"
|
211 |
msgstr "Cancelar"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:904
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Agregar Capacidad"
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:905
|
218 |
+
#: ../includes/class-user-role-editor.php:914
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Eliminar Capacidades"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:906
|
223 |
msgid "Reset"
|
224 |
msgstr "Reiniciar"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:907
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: ../includes/class-user-role-editor.php:908
|
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:909
|
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:911
|
243 |
msgid "Continue?"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:912
|
247 |
msgid "Default Role"
|
248 |
msgstr "Rol Predeterminado"
|
249 |
|
250 |
+
#: ../includes/class-user-role-editor.php:913
|
251 |
msgid "Set New Default Role"
|
252 |
msgstr "Establecer nuevo Rol"
|
253 |
|
254 |
+
#: ../includes/class-user-role-editor.php:915
|
255 |
msgid ""
|
256 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
257 |
"or other custom code"
|
259 |
"¡Atención! Ten cuidado - Eliminar Capacidadess esenciales podría inhabilitar "
|
260 |
"algún plugin o código personalizado"
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:916
|
263 |
msgid " Capability name (ID) can not be empty!"
|
264 |
msgstr "¡El nombre de la Capacidad (ID) no puede estar vacío!"
|
265 |
|
266 |
+
#: ../includes/class-user-role-editor.php:917
|
267 |
msgid ""
|
268 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
269 |
"underscore only!"
|
271 |
"¡El nombre de la Capacidad (ID) sólo debe contener caracteres alfanuméricos, "
|
272 |
"guiones altos o bajos!"
|
273 |
|
274 |
+
#: ../includes/class-user-role-editor.php:951
|
275 |
+
#: ../includes/class-user-role-editor.php:980
|
276 |
msgid "Other Roles"
|
277 |
msgstr "Otros Roles"
|
278 |
|
279 |
+
#: ../includes/class-user-role-editor.php:962
|
280 |
msgid "Edit"
|
281 |
msgstr "Editar"
|
282 |
|
310 |
msgid "Custom capabilities:"
|
311 |
msgstr "Capacidades personalizadas:"
|
312 |
|
313 |
+
#: ../includes/class-ure-lib.php:159
|
314 |
msgid "Error: wrong request"
|
315 |
msgstr "Error: Petición inválida"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
318 |
msgid "Role name (ID): "
|
319 |
msgstr "Nombre del Rol (ID):"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
322 |
msgid "Display Role Name: "
|
323 |
msgstr "Mostrar nombre del Rol:"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:196
|
326 |
msgid "Make copy of: "
|
327 |
msgstr "Hacer copia de:"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:212
|
330 |
msgid "Select Role:"
|
331 |
msgstr "Seleccionar Rol:"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:227
|
334 |
msgid "Delete:"
|
335 |
msgstr "Eliminar:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:234
|
338 |
msgid "Capability name (ID): "
|
339 |
msgstr "Nombre de la Capacidad (ID):"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:348
|
342 |
msgid "Error: "
|
343 |
msgstr "Error:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:348
|
346 |
msgid "Role"
|
347 |
msgstr "Rol"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:349
|
350 |
msgid "does not exist"
|
351 |
msgstr "no existe"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:392
|
354 |
msgid "Role is updated successfully"
|
355 |
msgstr "El Rol fue exitosamente actualizado"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:394
|
358 |
msgid "Roles are updated for all network"
|
359 |
msgstr "Roles actualizados en toda la Red"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:400
|
362 |
msgid "Error occured during role(s) update"
|
363 |
msgstr "Ocurrió un error durante la actualización del Rol"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:407
|
366 |
msgid "User capabilities are updated successfully"
|
367 |
msgstr "Las Capacidades de Usuario fueron actualizadas exitosamente"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:412
|
370 |
msgid "Error occured during user update"
|
371 |
msgstr "Ocurrió un error durante la actualización del Usuario"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:470
|
374 |
msgid "User Roles are restored to WordPress default values. "
|
375 |
msgstr ""
|
376 |
"Los Roles de Usuario fueron restaurados a los predeterminados de WordPress"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:1337
|
379 |
msgid "Help"
|
380 |
msgstr "Ayuda"
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:1695
|
383 |
msgid "Error is occur. Please check the log file."
|
384 |
msgstr "Un error ha ocurrido. Por favor revisa el archivo de registro."
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
387 |
msgid ""
|
388 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
389 |
"only!"
|
391 |
"Error: ¡La ID del Rol sólo debe contener caracteres alfanuméricos, guiones "
|
392 |
"altos o bajos!"
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
395 |
msgid ""
|
396 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
397 |
"characters to it."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: ../includes/class-ure-lib.php:1757
|
401 |
#, php-format
|
402 |
msgid "Role %s exists already"
|
403 |
msgstr "El Rol %s ya existe"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1772
|
406 |
msgid "Error is encountered during new role create operation"
|
407 |
msgstr "Un error fue encontrado durante la creación del nuevo Rol"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1774
|
410 |
#, php-format
|
411 |
msgid "Role %s is created successfully"
|
412 |
msgstr "El Rol %s fue creado exitosamente"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1798
|
415 |
msgid "Error: Role ID is empty!"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1816
|
419 |
msgid "Error: Empty role display name is not allowed."
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: ../includes/class-ure-lib.php:1823
|
423 |
#, fuzzy, php-format
|
424 |
msgid "Role %s does not exists"
|
425 |
msgstr "no existe"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1831
|
428 |
#, fuzzy, php-format
|
429 |
msgid "Role %s is renamed to %s successfully"
|
430 |
msgstr "El Rol %s fue creado exitosamente"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1898
|
433 |
msgid "Error encountered during role delete operation"
|
434 |
msgstr "Un error fue encontrado durante la eliminación del Rol"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1900
|
437 |
msgid "Unused roles are deleted successfully"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: ../includes/class-ure-lib.php:1902
|
441 |
#, php-format
|
442 |
msgid "Role %s is deleted successfully"
|
443 |
msgstr "El Rol %s fue eliminado exitosamente"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1927
|
446 |
msgid "Error encountered during default role change operation"
|
447 |
msgstr "Un error fue encontrado durante el cambio del Rol predeterminado"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1933
|
450 |
#, php-format
|
451 |
msgid "Default role for new users is set to %s successfully"
|
452 |
msgstr "El Rol predeterminado para nuevos usuarios ha sido establecido a %s"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1952
|
455 |
msgid "Editor"
|
456 |
msgstr "Editor"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:1953
|
459 |
msgid "Author"
|
460 |
msgstr "Autor"
|
461 |
|
462 |
+
#: ../includes/class-ure-lib.php:1954
|
463 |
msgid "Contributor"
|
464 |
msgstr "Contribuyente"
|
465 |
|
466 |
+
#: ../includes/class-ure-lib.php:1955
|
467 |
msgid "Subscriber"
|
468 |
msgstr "Suscriptor"
|
469 |
|
470 |
+
#: ../includes/class-ure-lib.php:1957
|
471 |
msgid "Switch themes"
|
472 |
msgstr "Cambiar temas (plantillas)"
|
473 |
|
474 |
+
#: ../includes/class-ure-lib.php:1958
|
475 |
msgid "Edit themes"
|
476 |
msgstr "Editar temas (plantillas)"
|
477 |
|
478 |
+
#: ../includes/class-ure-lib.php:1959
|
479 |
msgid "Activate plugins"
|
480 |
msgstr "Activar plugins"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:1960
|
483 |
msgid "Edit plugins"
|
484 |
msgstr "Editar plugins"
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:1961
|
487 |
msgid "Edit users"
|
488 |
msgstr "Editar usuarios"
|
489 |
|
490 |
+
#: ../includes/class-ure-lib.php:1962
|
491 |
msgid "Edit files"
|
492 |
msgstr "Editar archivos"
|
493 |
|
494 |
+
#: ../includes/class-ure-lib.php:1963
|
495 |
msgid "Manage options"
|
496 |
msgstr "Administrar opciones"
|
497 |
|
498 |
+
#: ../includes/class-ure-lib.php:1964
|
499 |
msgid "Moderate comments"
|
500 |
msgstr "Moderar comentarios"
|
501 |
|
502 |
+
#: ../includes/class-ure-lib.php:1965
|
503 |
msgid "Manage categories"
|
504 |
msgstr "Administrar categorías"
|
505 |
|
506 |
+
#: ../includes/class-ure-lib.php:1966
|
507 |
msgid "Manage links"
|
508 |
msgstr "Administrar enlaces"
|
509 |
|
510 |
+
#: ../includes/class-ure-lib.php:1967
|
511 |
msgid "Upload files"
|
512 |
msgstr "Subir archivos"
|
513 |
|
514 |
+
#: ../includes/class-ure-lib.php:1968
|
515 |
msgid "Import"
|
516 |
msgstr "Importar"
|
517 |
|
518 |
+
#: ../includes/class-ure-lib.php:1969
|
519 |
msgid "Unfiltered html"
|
520 |
msgstr "HTML sin filtrar"
|
521 |
|
522 |
+
#: ../includes/class-ure-lib.php:1970
|
523 |
msgid "Edit posts"
|
524 |
msgstr "Editar entradas"
|
525 |
|
526 |
+
#: ../includes/class-ure-lib.php:1971
|
527 |
msgid "Edit others posts"
|
528 |
msgstr "Editar entradas ajenas"
|
529 |
|
530 |
+
#: ../includes/class-ure-lib.php:1972
|
531 |
msgid "Edit published posts"
|
532 |
msgstr "Editar entradas publicadas"
|
533 |
|
534 |
+
#: ../includes/class-ure-lib.php:1973
|
535 |
msgid "Publish posts"
|
536 |
msgstr "Publicar entradas"
|
537 |
|
538 |
+
#: ../includes/class-ure-lib.php:1974
|
539 |
msgid "Edit pages"
|
540 |
msgstr "Editar páginas"
|
541 |
|
542 |
+
#: ../includes/class-ure-lib.php:1975
|
543 |
msgid "Read"
|
544 |
msgstr "Leer"
|
545 |
|
546 |
+
#: ../includes/class-ure-lib.php:1976
|
547 |
msgid "Level 10"
|
548 |
msgstr "Nivel 10"
|
549 |
|
550 |
+
#: ../includes/class-ure-lib.php:1977
|
551 |
msgid "Level 9"
|
552 |
msgstr "Nivel 9"
|
553 |
|
554 |
+
#: ../includes/class-ure-lib.php:1978
|
555 |
msgid "Level 8"
|
556 |
msgstr "Nivel 8"
|
557 |
|
558 |
+
#: ../includes/class-ure-lib.php:1979
|
559 |
msgid "Level 7"
|
560 |
msgstr "Nivel 7"
|
561 |
|
562 |
+
#: ../includes/class-ure-lib.php:1980
|
563 |
msgid "Level 6"
|
564 |
msgstr "Nivel 6"
|
565 |
|
566 |
+
#: ../includes/class-ure-lib.php:1981
|
567 |
msgid "Level 5"
|
568 |
msgstr "Nivel 5"
|
569 |
|
570 |
+
#: ../includes/class-ure-lib.php:1982
|
571 |
msgid "Level 4"
|
572 |
msgstr "Nivel 4"
|
573 |
|
574 |
+
#: ../includes/class-ure-lib.php:1983
|
575 |
msgid "Level 3"
|
576 |
msgstr "Nivel 3"
|
577 |
|
578 |
+
#: ../includes/class-ure-lib.php:1984
|
579 |
msgid "Level 2"
|
580 |
msgstr "Nivel 2"
|
581 |
|
582 |
+
#: ../includes/class-ure-lib.php:1985
|
583 |
msgid "Level 1"
|
584 |
msgstr "Nivel 1"
|
585 |
|
586 |
+
#: ../includes/class-ure-lib.php:1986
|
587 |
msgid "Level 0"
|
588 |
msgstr "Nivel 0"
|
589 |
|
590 |
+
#: ../includes/class-ure-lib.php:1987
|
591 |
msgid "Edit others pages"
|
592 |
msgstr "Editar páginas ajenas"
|
593 |
|
594 |
+
#: ../includes/class-ure-lib.php:1988
|
595 |
msgid "Edit published pages"
|
596 |
msgstr "Editar páginas publicadas"
|
597 |
|
598 |
+
#: ../includes/class-ure-lib.php:1989
|
599 |
msgid "Publish pages"
|
600 |
msgstr "Publicar páginas"
|
601 |
|
602 |
+
#: ../includes/class-ure-lib.php:1990
|
603 |
msgid "Delete pages"
|
604 |
msgstr "Eliminar páginas"
|
605 |
|
606 |
+
#: ../includes/class-ure-lib.php:1991
|
607 |
msgid "Delete others pages"
|
608 |
msgstr "Eliminar páginas ajenas"
|
609 |
|
610 |
+
#: ../includes/class-ure-lib.php:1992
|
611 |
msgid "Delete published pages"
|
612 |
msgstr "Eliminar páginas publicadas"
|
613 |
|
614 |
+
#: ../includes/class-ure-lib.php:1993
|
615 |
msgid "Delete posts"
|
616 |
msgstr "Eliminar entradas"
|
617 |
|
618 |
+
#: ../includes/class-ure-lib.php:1994
|
619 |
msgid "Delete others posts"
|
620 |
msgstr "Eliminar entradas ajenas"
|
621 |
|
622 |
+
#: ../includes/class-ure-lib.php:1995
|
623 |
msgid "Delete published posts"
|
624 |
msgstr "Eliminar entradas publicadas"
|
625 |
|
626 |
+
#: ../includes/class-ure-lib.php:1996
|
627 |
msgid "Delete private posts"
|
628 |
msgstr "Eliminar entradas privadas"
|
629 |
|
630 |
+
#: ../includes/class-ure-lib.php:1997
|
631 |
msgid "Edit private posts"
|
632 |
msgstr "Editar entradas privadas"
|
633 |
|
634 |
+
#: ../includes/class-ure-lib.php:1998
|
635 |
msgid "Read private posts"
|
636 |
msgstr "Leer entradas privadas"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:1999
|
639 |
msgid "Delete private pages"
|
640 |
msgstr "Eliminar páginas privadas"
|
641 |
|
642 |
+
#: ../includes/class-ure-lib.php:2000
|
643 |
msgid "Edit private pages"
|
644 |
msgstr "Editar páginas privadas"
|
645 |
|
646 |
+
#: ../includes/class-ure-lib.php:2001
|
647 |
msgid "Read private pages"
|
648 |
msgstr "Leer páginas privadas"
|
649 |
|
650 |
+
#: ../includes/class-ure-lib.php:2002
|
651 |
msgid "Delete users"
|
652 |
msgstr "Eliminar usuarios"
|
653 |
|
654 |
+
#: ../includes/class-ure-lib.php:2003
|
655 |
msgid "Create users"
|
656 |
msgstr "Crear usuarios"
|
657 |
|
658 |
+
#: ../includes/class-ure-lib.php:2004
|
659 |
msgid "Unfiltered upload"
|
660 |
msgstr "Subir sin filtrado"
|
661 |
|
662 |
+
#: ../includes/class-ure-lib.php:2005
|
663 |
msgid "Edit dashboard"
|
664 |
msgstr "Editar escritorio"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2006
|
667 |
msgid "Update plugins"
|
668 |
msgstr "Actualizar plugins"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2007
|
671 |
msgid "Delete plugins"
|
672 |
msgstr "Eliminar plugins"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2008
|
675 |
msgid "Install plugins"
|
676 |
msgstr "Instalar plugins"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2009
|
679 |
msgid "Update themes"
|
680 |
msgstr "Actualizar temas (plantillas)"
|
681 |
|
682 |
+
#: ../includes/class-ure-lib.php:2010
|
683 |
msgid "Install themes"
|
684 |
msgstr "Instalar temas (plantillas)"
|
685 |
|
686 |
+
#: ../includes/class-ure-lib.php:2011
|
687 |
msgid "Update core"
|
688 |
msgstr "Actualizar núcleo"
|
689 |
|
690 |
+
#: ../includes/class-ure-lib.php:2012
|
691 |
msgid "List users"
|
692 |
msgstr "Listar usuarios"
|
693 |
|
694 |
+
#: ../includes/class-ure-lib.php:2013
|
695 |
msgid "Remove users"
|
696 |
msgstr "Eliminar usuarios"
|
697 |
|
698 |
+
#: ../includes/class-ure-lib.php:2014
|
699 |
msgid "Add users"
|
700 |
msgstr "Agregar usuarios"
|
701 |
|
702 |
+
#: ../includes/class-ure-lib.php:2015
|
703 |
msgid "Promote users"
|
704 |
msgstr "Promover usuarios"
|
705 |
|
706 |
+
#: ../includes/class-ure-lib.php:2016
|
707 |
msgid "Edit theme options"
|
708 |
msgstr "Editar opciones del tema (plantilla)"
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2017
|
711 |
msgid "Delete themes"
|
712 |
msgstr "Eliminar temas (plantillas)"
|
713 |
|
714 |
+
#: ../includes/class-ure-lib.php:2018
|
715 |
msgid "Export"
|
716 |
msgstr "Exportar"
|
717 |
|
718 |
+
#: ../includes/class-ure-lib.php:2128
|
719 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
720 |
msgstr ""
|
721 |
"Error: El nombre de la Capacidad sólo debe contener caracteres alfanuméricos!"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2141
|
724 |
#, php-format
|
725 |
msgid "Capability %s is added successfully"
|
726 |
msgstr "La Capacidad %s fue agregada exitosamente"
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2143
|
729 |
#, php-format
|
730 |
msgid "Capability %s exists already"
|
731 |
msgstr "La Capacidad %s ya existe"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2168
|
734 |
#, php-format
|
735 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
736 |
msgstr ""
|
737 |
"¡Error! No cuentas con suficientes permisos para eliminar esta Capacidad: %s!"
|
738 |
|
739 |
+
#: ../includes/class-ure-lib.php:2187
|
740 |
#, php-format
|
741 |
msgid "Capability %s is removed successfully"
|
742 |
msgstr "La Capacidad %s fue eliminada exitosamente"
|
743 |
|
744 |
+
#: ../includes/class-ure-lib.php:2291
|
745 |
msgid "Version:"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2292
|
749 |
msgid "Author's website"
|
750 |
msgstr "Sitio web del Autor"
|
751 |
|
752 |
+
#: ../includes/class-ure-lib.php:2293
|
753 |
msgid "Plugin webpage"
|
754 |
msgstr "Página web del Plugin"
|
755 |
|
756 |
+
#: ../includes/class-ure-lib.php:2294
|
757 |
#, fuzzy
|
758 |
msgid "Plugin download"
|
759 |
msgstr "Página web del Plugin"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2296
|
762 |
msgid "FAQ"
|
763 |
msgstr "FAQ"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2344
|
766 |
msgid "None"
|
767 |
msgstr "Ninguno"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2371
|
770 |
msgid "Delete All Unused Roles"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2395
|
774 |
msgid "— No role for this site —"
|
775 |
msgstr ""
|
776 |
|
816 |
"deprecated capabilities."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../includes/class-ure-screen-help.php:42
|
820 |
+
msgid ""
|
821 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
822 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
823 |
+
"users list with role \"No rights\" at the separate tab then."
|
824 |
+
msgstr ""
|
825 |
|
826 |
+
#: ../includes/class-ure-screen-help.php:59
|
827 |
msgid "Other default roles for new registered user"
|
828 |
msgstr ""
|
829 |
|
830 |
+
#: ../includes/class-ure-screen-help.php:60
|
831 |
msgid ""
|
832 |
"select roles below to assign them to the new user automatically as an "
|
833 |
"addition to the primary role. Note for multisite environment: take into "
|
835 |
"assigned to the new registered users."
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: ../includes/class-ure-screen-help.php:78
|
839 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: ../includes/class-ure-screen-help.php:79
|
843 |
msgid ""
|
844 |
"Super administrator only may create, edit and delete users under WordPress "
|
845 |
"multi-site by default. Turn this option on in order to remove this "
|
846 |
"limitation."
|
847 |
msgstr ""
|
848 |
|
849 |
+
#, fuzzy
|
850 |
+
#~ msgid "select roles below"
|
851 |
+
#~ msgstr "Deseleccionar todo"
|
852 |
+
|
853 |
#~ msgid "About this Plugin:"
|
854 |
#~ msgstr "Acerca de este Plugin:"
|
855 |
|
lang/ure-fa_IR.mo
CHANGED
Binary file
|
lang/ure-fa_IR.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
|
9 |
"Language: en_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -37,7 +37,7 @@ msgid "Default Roles"
|
|
37 |
msgstr "نقشهای پیشفرض"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "چندسایتی"
|
43 |
|
@@ -66,7 +66,7 @@ msgid "Save"
|
|
66 |
msgstr "ذخیره"
|
67 |
|
68 |
#: ../includes/settings-template.php:102
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "شمارش کاربران بدون نقش"
|
72 |
|
@@ -117,115 +117,115 @@ msgid "Settings"
|
|
117 |
msgstr "تنظیمات"
|
118 |
|
119 |
#: ../includes/class-user-role-editor.php:525
|
120 |
-
#: ../includes/class-ure-lib.php:
|
121 |
msgid "Changelog"
|
122 |
msgstr "گزارش تغییرات"
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-ure-lib.php:
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "ویرایشگر نقش کاربر"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
136 |
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "نقشهای پیش فرض بروز شدند"
|
140 |
|
141 |
-
#: ../includes/class-user-role-editor.php:
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
145 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
146 |
|
147 |
-
#: ../includes/class-user-role-editor.php:
|
148 |
msgid "Insufficient permissions to work with User Role Editor"
|
149 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Select All"
|
153 |
msgstr "انتخاب همه"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Unselect All"
|
157 |
msgstr "عدمانتخاب همه"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Reverse"
|
161 |
msgstr "وارونه"
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Update"
|
165 |
msgstr "بروزرسانی"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Please confirm permissions update"
|
169 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Add New Role"
|
173 |
msgstr "افزودن نقش جدید"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
#, fuzzy
|
178 |
msgid "Rename Role"
|
179 |
msgstr "حذف نقش"
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
189 |
msgstr ""
|
190 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
191 |
|
192 |
-
#: ../includes/class-user-role-editor.php:
|
193 |
msgid ""
|
194 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
195 |
"it."
|
196 |
msgstr ""
|
197 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid "Add Role"
|
201 |
msgstr "افزودن نقش"
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid "Delete Role"
|
205 |
msgstr "حذف نقش"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Cancel"
|
209 |
msgstr "لغو"
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Add Capability"
|
213 |
msgstr "افزودن قابلیت"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Delete Capability"
|
218 |
msgstr "حذف قابلیت"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Reset"
|
222 |
msgstr "بازنشانی"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
226 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid ""
|
230 |
"If any plugins have changed capabilities in any way upon installation (such "
|
231 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -233,7 +233,7 @@ msgstr ""
|
|
233 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
234 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
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"
|
@@ -241,19 +241,19 @@ msgstr ""
|
|
241 |
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
242 |
"مراجعه کنید به"
|
243 |
|
244 |
-
#: ../includes/class-user-role-editor.php:
|
245 |
msgid "Continue?"
|
246 |
msgstr "ادامه؟"
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Default Role"
|
250 |
msgstr "نقش پیشفرض"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Set New Default Role"
|
254 |
msgstr "نشاندن نقش پیشفرض جدید"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
259 |
"or other custom code"
|
@@ -261,23 +261,23 @@ msgstr ""
|
|
261 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
262 |
"سفارشی را دچار سانحه کند"
|
263 |
|
264 |
-
#: ../includes/class-user-role-editor.php:
|
265 |
msgid " Capability name (ID) can not be empty!"
|
266 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid ""
|
270 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
271 |
"underscore only!"
|
272 |
msgstr ""
|
273 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
274 |
|
275 |
-
#: ../includes/class-user-role-editor.php:
|
276 |
-
#: ../includes/class-user-role-editor.php:
|
277 |
msgid "Other Roles"
|
278 |
msgstr "دیگر نقشها"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid "Edit"
|
282 |
msgstr "ویرایش"
|
283 |
|
@@ -309,86 +309,86 @@ msgstr "فیلتر سریع:"
|
|
309 |
msgid "Custom capabilities:"
|
310 |
msgstr "قابلیتهای سفارشی:"
|
311 |
|
312 |
-
#: ../includes/class-ure-lib.php:
|
313 |
msgid "Error: wrong request"
|
314 |
msgstr "خطا: درخواست اشتباه"
|
315 |
|
316 |
-
#: ../includes/class-ure-lib.php:
|
317 |
msgid "Role name (ID): "
|
318 |
msgstr "نام نقش (شناسه): "
|
319 |
|
320 |
-
#: ../includes/class-ure-lib.php:
|
321 |
msgid "Display Role Name: "
|
322 |
msgstr "نمایش نام نقش: "
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
msgid "Make copy of: "
|
326 |
msgstr "ایجاد رونوشت از: "
|
327 |
|
328 |
-
#: ../includes/class-ure-lib.php:
|
329 |
msgid "Select Role:"
|
330 |
msgstr "انتخاب نقش:"
|
331 |
|
332 |
-
#: ../includes/class-ure-lib.php:
|
333 |
msgid "Delete:"
|
334 |
msgstr "حذف:"
|
335 |
|
336 |
-
#: ../includes/class-ure-lib.php:
|
337 |
msgid "Capability name (ID): "
|
338 |
msgstr "نام قابلیت (شناسه): "
|
339 |
|
340 |
-
#: ../includes/class-ure-lib.php:
|
341 |
msgid "Error: "
|
342 |
msgstr "خطا: "
|
343 |
|
344 |
-
#: ../includes/class-ure-lib.php:
|
345 |
msgid "Role"
|
346 |
msgstr "نقش"
|
347 |
|
348 |
-
#: ../includes/class-ure-lib.php:
|
349 |
msgid "does not exist"
|
350 |
msgstr "موجود نمیباشد"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Role is updated successfully"
|
354 |
msgstr "نقش با موفقیت بروز شد"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "Roles are updated for all network"
|
358 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Error occured during role(s) update"
|
362 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "User capabilities are updated successfully"
|
366 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Error occured during user update"
|
370 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "User Roles are restored to WordPress default values. "
|
374 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Help"
|
378 |
msgstr "راهنما"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "Error is occur. Please check the log file."
|
382 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid ""
|
386 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
387 |
"only!"
|
388 |
msgstr ""
|
389 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
390 |
|
391 |
-
#: ../includes/class-ure-lib.php:
|
392 |
msgid ""
|
393 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
394 |
"characters to it."
|
@@ -396,377 +396,377 @@ msgstr ""
|
|
396 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
397 |
"کنید."
|
398 |
|
399 |
-
#: ../includes/class-ure-lib.php:
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "نقش %s از پیش موجود است"
|
403 |
|
404 |
-
#: ../includes/class-ure-lib.php:
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
407 |
|
408 |
-
#: ../includes/class-ure-lib.php:
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
412 |
|
413 |
-
#: ../includes/class-ure-lib.php:
|
414 |
msgid "Error: Role ID is empty!"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: ../includes/class-ure-lib.php:
|
418 |
msgid "Error: Empty role display name is not allowed."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../includes/class-ure-lib.php:
|
422 |
#, fuzzy, php-format
|
423 |
msgid "Role %s does not exists"
|
424 |
msgstr "موجود نمیباشد"
|
425 |
|
426 |
-
#: ../includes/class-ure-lib.php:
|
427 |
#, fuzzy, php-format
|
428 |
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
msgid "Error encountered during role delete operation"
|
433 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
434 |
|
435 |
-
#: ../includes/class-ure-lib.php:
|
436 |
msgid "Unused roles are deleted successfully"
|
437 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
438 |
|
439 |
-
#: ../includes/class-ure-lib.php:
|
440 |
#, php-format
|
441 |
msgid "Role %s is deleted successfully"
|
442 |
msgstr "نقش %s با موفقیت حذف شد"
|
443 |
|
444 |
-
#: ../includes/class-ure-lib.php:
|
445 |
msgid "Error encountered during default role change operation"
|
446 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
447 |
|
448 |
-
#: ../includes/class-ure-lib.php:
|
449 |
#, php-format
|
450 |
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Editor"
|
455 |
msgstr "ویرایشگر"
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Author"
|
459 |
msgstr "نویسنده"
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Contributor"
|
463 |
msgstr "مشارکتکننده"
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Subscriber"
|
467 |
msgstr "مشترک"
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Switch themes"
|
471 |
msgstr "تغییر پوستهها"
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Edit themes"
|
475 |
msgstr "ویرایش پوستهها"
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Activate plugins"
|
479 |
msgstr "فعالسازی افزونهها"
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Edit plugins"
|
483 |
msgstr "ویرایش افزونهها"
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Edit users"
|
487 |
msgstr "ویرایش کاربران"
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Edit files"
|
491 |
msgstr "ویرایش فایلها"
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Manage options"
|
495 |
msgstr "مدیریت تنظیمات"
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Moderate comments"
|
499 |
msgstr "مدیریت دیدگاهها"
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Manage categories"
|
503 |
msgstr "مدیریت دستهها"
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Manage links"
|
507 |
msgstr "مدیریت پیوندها"
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Upload files"
|
511 |
msgstr "بارگذاری فایلها"
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Import"
|
515 |
msgstr "درونریزی"
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Unfiltered html"
|
519 |
msgstr "اچتیامال فیلترنشده"
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Edit posts"
|
523 |
msgstr "ویرایش نوشتهها"
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Edit others posts"
|
527 |
msgstr "ویرایش نوشتهی دیگران"
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Edit published posts"
|
531 |
msgstr "ویرایش نوشتههای منتشرشده"
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Publish posts"
|
535 |
msgstr "انتشار نوشتهها"
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Edit pages"
|
539 |
msgstr "ویرایش صفحات"
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Read"
|
543 |
msgstr "خواندن"
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Level 10"
|
547 |
msgstr "سطح ۱۰"
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Level 9"
|
551 |
msgstr "سطح ۹"
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Level 8"
|
555 |
msgstr "سطح ۸"
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Level 7"
|
559 |
msgstr "سطح ۷"
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 6"
|
563 |
msgstr "سطح ۶"
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 5"
|
567 |
msgstr "سطح ۵"
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 4"
|
571 |
msgstr "سطح ۴"
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Level 3"
|
575 |
msgstr "سطح ۳"
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Level 2"
|
579 |
msgstr "سطح ۲"
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Level 1"
|
583 |
msgstr "سطح ۱"
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Level 0"
|
587 |
msgstr "سطح ۰"
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Edit others pages"
|
591 |
msgstr "ویرایش صفحات دیگران"
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Edit published pages"
|
595 |
msgstr "ویرایش صفحات منتشرشده"
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Publish pages"
|
599 |
msgstr "انتشار صفحات"
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Delete pages"
|
603 |
msgstr "حذف صفحات"
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Delete others pages"
|
607 |
msgstr "حذف صفحات دیگران"
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Delete published pages"
|
611 |
msgstr "حذف صفحات منتشرشده"
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Delete posts"
|
615 |
msgstr "حذف صفحات"
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Delete others posts"
|
619 |
msgstr "حذف نوشتههای دیگران"
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete published posts"
|
623 |
msgstr "حذف نوشتههای منتشرشده"
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Delete private posts"
|
627 |
msgstr "حذف نوشتههای خصوصی"
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Edit private posts"
|
631 |
msgstr "ویرایش نوشتههای خصوصی"
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Read private posts"
|
635 |
msgstr "خواندن نوشتههای خصوصی"
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Delete private pages"
|
639 |
msgstr "حذف صفحات خصوصی"
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Edit private pages"
|
643 |
msgstr "ویرایش صفحات خصوصی"
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Read private pages"
|
647 |
msgstr "خواندن صفحات خصوصی"
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Delete users"
|
651 |
msgstr "حذف کاربران"
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Create users"
|
655 |
msgstr "ایجاد کاربران"
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Unfiltered upload"
|
659 |
msgstr "بارگذاری فیلترشده"
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Edit dashboard"
|
663 |
msgstr "ویرایش پیشخوان"
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Update plugins"
|
667 |
msgstr "بروزرسانی افزونهها"
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Delete plugins"
|
671 |
msgstr "حذف افزونهها"
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "Install plugins"
|
675 |
msgstr "نصب افزونهها"
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Update themes"
|
679 |
msgstr "بروزرسانی پوستهها"
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Install themes"
|
683 |
msgstr "نصب پوستهها"
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Update core"
|
687 |
msgstr "بروزرسانی هسته"
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "List users"
|
691 |
msgstr "فهرست کاربران"
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Remove users"
|
695 |
msgstr "حذف کابران"
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Add users"
|
699 |
msgstr "افزودن کاربران"
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Promote users"
|
703 |
msgstr "ارتقاء کاربران"
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
msgid "Edit theme options"
|
707 |
msgstr "ویرایش تنظیمات پوسته"
|
708 |
|
709 |
-
#: ../includes/class-ure-lib.php:
|
710 |
msgid "Delete themes"
|
711 |
msgstr "حذف پوستهها"
|
712 |
|
713 |
-
#: ../includes/class-ure-lib.php:
|
714 |
msgid "Export"
|
715 |
msgstr "برونریزی"
|
716 |
|
717 |
-
#: ../includes/class-ure-lib.php:
|
718 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
719 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
720 |
|
721 |
-
#: ../includes/class-ure-lib.php:
|
722 |
#, php-format
|
723 |
msgid "Capability %s is added successfully"
|
724 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
725 |
|
726 |
-
#: ../includes/class-ure-lib.php:
|
727 |
#, php-format
|
728 |
msgid "Capability %s exists already"
|
729 |
msgstr "قابلیت %s از پیش موجود است"
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
#, php-format
|
733 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
734 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
#, php-format
|
738 |
msgid "Capability %s is removed successfully"
|
739 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "Version:"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
msgid "Author's website"
|
747 |
msgstr "وبگاه نویسنده"
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
msgid "Plugin webpage"
|
751 |
msgstr "صفحه افزونه"
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "Plugin download"
|
755 |
msgstr "بارگیری افزونه"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "FAQ"
|
759 |
msgstr "سوالات مکرر"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "None"
|
763 |
msgstr "هیچکدام"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Delete All Unused Roles"
|
767 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "— No role for this site —"
|
771 |
msgstr "— هیچ نقشی برای این سایت —"
|
772 |
|
@@ -822,17 +822,19 @@ msgstr ""
|
|
822 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
823 |
"شده را نمایش میدهد."
|
824 |
|
825 |
-
#: ../includes/class-ure-screen-help.php:
|
826 |
-
|
827 |
-
|
828 |
-
|
|
|
|
|
829 |
|
830 |
-
#: ../includes/class-ure-screen-help.php:
|
831 |
#, fuzzy
|
832 |
msgid "Other default roles for new registered user"
|
833 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
834 |
|
835 |
-
#: ../includes/class-ure-screen-help.php:
|
836 |
#, fuzzy
|
837 |
msgid ""
|
838 |
"select roles below to assign them to the new user automatically as an "
|
@@ -843,12 +845,12 @@ msgstr ""
|
|
843 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
844 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
845 |
|
846 |
-
#: ../includes/class-ure-screen-help.php:
|
847 |
#, fuzzy
|
848 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
849 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
850 |
|
851 |
-
#: ../includes/class-ure-screen-help.php:
|
852 |
#, fuzzy
|
853 |
msgid ""
|
854 |
"Super administrator only may create, edit and delete users under WordPress "
|
@@ -858,6 +860,10 @@ msgstr ""
|
|
858 |
"در وردپرس چند سایتی تنها مدیران اصلی اجازهی ایجاد، ویرایش و حذف کاربران را "
|
859 |
"دارند. این "
|
860 |
|
|
|
|
|
|
|
|
|
861 |
#~ msgid "Overview"
|
862 |
#~ msgstr "مرور کلی"
|
863 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:21+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: en_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
37 |
msgstr "نقشهای پیشفرض"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:565
|
41 |
msgid "Multisite"
|
42 |
msgstr "چندسایتی"
|
43 |
|
66 |
msgstr "ذخیره"
|
67 |
|
68 |
#: ../includes/settings-template.php:102
|
69 |
+
#: ../includes/class-ure-screen-help.php:41
|
70 |
msgid "Count users without role"
|
71 |
msgstr "شمارش کاربران بدون نقش"
|
72 |
|
117 |
msgstr "تنظیمات"
|
118 |
|
119 |
#: ../includes/class-user-role-editor.php:525
|
120 |
+
#: ../includes/class-ure-lib.php:2295
|
121 |
msgid "Changelog"
|
122 |
msgstr "گزارش تغییرات"
|
123 |
|
124 |
+
#: ../includes/class-user-role-editor.php:575
|
125 |
+
#: ../includes/class-user-role-editor.php:603
|
126 |
+
#: ../includes/class-user-role-editor.php:948
|
127 |
+
#: ../includes/class-ure-lib.php:251
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "ویرایشگر نقش کاربر"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:660
|
132 |
+
#: ../includes/class-user-role-editor.php:678
|
133 |
+
#: ../includes/class-user-role-editor.php:722
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "تنظیمات ویرایشگر نقش کاربر بروز شد"
|
136 |
|
137 |
+
#: ../includes/class-user-role-editor.php:706
|
138 |
msgid "Default Roles are updated"
|
139 |
msgstr "نقشهای پیش فرض بروز شدند"
|
140 |
|
141 |
+
#: ../includes/class-user-role-editor.php:730
|
142 |
msgid ""
|
143 |
"You do not have sufficient permissions to manage options for User Role "
|
144 |
"Editor."
|
145 |
msgstr "شما مجوز کافی برای مدیریت تنظیمات ویرایشگر نقش کاربر را ندارید."
|
146 |
|
147 |
+
#: ../includes/class-user-role-editor.php:809
|
148 |
msgid "Insufficient permissions to work with User Role Editor"
|
149 |
msgstr "مجوز ناکافی برای کار با ویرایشگر نقش کاربر"
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:890
|
152 |
msgid "Select All"
|
153 |
msgstr "انتخاب همه"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:891
|
156 |
msgid "Unselect All"
|
157 |
msgstr "عدمانتخاب همه"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:892
|
160 |
msgid "Reverse"
|
161 |
msgstr "وارونه"
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:893
|
164 |
msgid "Update"
|
165 |
msgstr "بروزرسانی"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:894
|
168 |
msgid "Please confirm permissions update"
|
169 |
msgstr "لطفا مجوز بروزرسانی را تایید کنید"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:895
|
172 |
msgid "Add New Role"
|
173 |
msgstr "افزودن نقش جدید"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:896
|
176 |
+
#: ../includes/class-user-role-editor.php:901
|
177 |
#, fuzzy
|
178 |
msgid "Rename Role"
|
179 |
msgstr "حذف نقش"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:897
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr " نام نقش (شناسه) نمی تواند خالی باشد!"
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:898
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
189 |
msgstr ""
|
190 |
" نام نقش (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
191 |
|
192 |
+
#: ../includes/class-user-role-editor.php:899
|
193 |
msgid ""
|
194 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
195 |
"it."
|
196 |
msgstr ""
|
197 |
" وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه کنید."
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:900
|
200 |
msgid "Add Role"
|
201 |
msgstr "افزودن نقش"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:902
|
204 |
msgid "Delete Role"
|
205 |
msgstr "حذف نقش"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:903
|
208 |
msgid "Cancel"
|
209 |
msgstr "لغو"
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:904
|
212 |
msgid "Add Capability"
|
213 |
msgstr "افزودن قابلیت"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:905
|
216 |
+
#: ../includes/class-user-role-editor.php:914
|
217 |
msgid "Delete Capability"
|
218 |
msgstr "حذف قابلیت"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:906
|
221 |
msgid "Reset"
|
222 |
msgstr "بازنشانی"
|
223 |
|
224 |
+
#: ../includes/class-user-role-editor.php:907
|
225 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
226 |
msgstr "خطر! بازنشانی، تنظیمات پیشفرض را از هستهی وردپرس بازمیگرداند."
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:908
|
229 |
msgid ""
|
230 |
"If any plugins have changed capabilities in any way upon installation (such "
|
231 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
233 |
"اگر هریک از افزونهها پس از نصب به هر نحو قابلیتها را تغییر دهند (مانند "
|
234 |
"S2Member ، WooCommerce و بسیاری دیگر) آن قابلیتها حذف خواهند شد!"
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:909
|
237 |
msgid ""
|
238 |
"For more information on how to undo changes and restore plugin capabilities "
|
239 |
"go to"
|
241 |
"برای کسب اطلاعات بیشتر درباره چگونگی خنثیسازی تغییرات و ترمیمکردن قابلیت ها "
|
242 |
"مراجعه کنید به"
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:911
|
245 |
msgid "Continue?"
|
246 |
msgstr "ادامه؟"
|
247 |
|
248 |
+
#: ../includes/class-user-role-editor.php:912
|
249 |
msgid "Default Role"
|
250 |
msgstr "نقش پیشفرض"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:913
|
253 |
msgid "Set New Default Role"
|
254 |
msgstr "نشاندن نقش پیشفرض جدید"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:915
|
257 |
msgid ""
|
258 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
259 |
"or other custom code"
|
261 |
"اخطار! مراقب باشید - حذف قابلیت مهم میتواند برخی از افزونهها یا دیگر کدهای "
|
262 |
"سفارشی را دچار سانحه کند"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:916
|
265 |
msgid " Capability name (ID) can not be empty!"
|
266 |
msgstr " نام قابلیت (شناسه) نمی تواند خالی باشد!"
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:917
|
269 |
msgid ""
|
270 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
271 |
"underscore only!"
|
272 |
msgstr ""
|
273 |
" نام قابلیت (شناسه) باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:951
|
276 |
+
#: ../includes/class-user-role-editor.php:980
|
277 |
msgid "Other Roles"
|
278 |
msgstr "دیگر نقشها"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:962
|
281 |
msgid "Edit"
|
282 |
msgstr "ویرایش"
|
283 |
|
309 |
msgid "Custom capabilities:"
|
310 |
msgstr "قابلیتهای سفارشی:"
|
311 |
|
312 |
+
#: ../includes/class-ure-lib.php:159
|
313 |
msgid "Error: wrong request"
|
314 |
msgstr "خطا: درخواست اشتباه"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
317 |
msgid "Role name (ID): "
|
318 |
msgstr "نام نقش (شناسه): "
|
319 |
|
320 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
321 |
msgid "Display Role Name: "
|
322 |
msgstr "نمایش نام نقش: "
|
323 |
|
324 |
+
#: ../includes/class-ure-lib.php:196
|
325 |
msgid "Make copy of: "
|
326 |
msgstr "ایجاد رونوشت از: "
|
327 |
|
328 |
+
#: ../includes/class-ure-lib.php:212
|
329 |
msgid "Select Role:"
|
330 |
msgstr "انتخاب نقش:"
|
331 |
|
332 |
+
#: ../includes/class-ure-lib.php:227
|
333 |
msgid "Delete:"
|
334 |
msgstr "حذف:"
|
335 |
|
336 |
+
#: ../includes/class-ure-lib.php:234
|
337 |
msgid "Capability name (ID): "
|
338 |
msgstr "نام قابلیت (شناسه): "
|
339 |
|
340 |
+
#: ../includes/class-ure-lib.php:348
|
341 |
msgid "Error: "
|
342 |
msgstr "خطا: "
|
343 |
|
344 |
+
#: ../includes/class-ure-lib.php:348
|
345 |
msgid "Role"
|
346 |
msgstr "نقش"
|
347 |
|
348 |
+
#: ../includes/class-ure-lib.php:349
|
349 |
msgid "does not exist"
|
350 |
msgstr "موجود نمیباشد"
|
351 |
|
352 |
+
#: ../includes/class-ure-lib.php:392
|
353 |
msgid "Role is updated successfully"
|
354 |
msgstr "نقش با موفقیت بروز شد"
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:394
|
357 |
msgid "Roles are updated for all network"
|
358 |
msgstr "نقشها برای تمامی شبکه بروز شد"
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:400
|
361 |
msgid "Error occured during role(s) update"
|
362 |
msgstr "خطایی در هنگام بروزسانی نقش(ها) رخ داد"
|
363 |
|
364 |
+
#: ../includes/class-ure-lib.php:407
|
365 |
msgid "User capabilities are updated successfully"
|
366 |
msgstr "قابلیتهای کاربر با موفقیت بروز شدند"
|
367 |
|
368 |
+
#: ../includes/class-ure-lib.php:412
|
369 |
msgid "Error occured during user update"
|
370 |
msgstr "خطایی در هنگام بروزرسانی کاربر رخ داد"
|
371 |
|
372 |
+
#: ../includes/class-ure-lib.php:470
|
373 |
msgid "User Roles are restored to WordPress default values. "
|
374 |
msgstr "نقشهای کاربر به مقدار پیشفرض وردپرس ترمیم شد."
|
375 |
|
376 |
+
#: ../includes/class-ure-lib.php:1337
|
377 |
msgid "Help"
|
378 |
msgstr "راهنما"
|
379 |
|
380 |
+
#: ../includes/class-ure-lib.php:1695
|
381 |
msgid "Error is occur. Please check the log file."
|
382 |
msgstr "خطایی رخ داده است. لطفا فایل گزارش را چک کنید."
|
383 |
|
384 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
385 |
msgid ""
|
386 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
387 |
"only!"
|
388 |
msgstr ""
|
389 |
"خطا: شناسهی نقش باید فقط شامل حروف لاتین، اعداد، خط فاصله یا زیرخط باشد!"
|
390 |
|
391 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
392 |
msgid ""
|
393 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
394 |
"characters to it."
|
396 |
"خطا: وردپرس از نام نقش (شناسه) عددی پشتیبانی نمیکند. حروف لاتین به آن اضافه "
|
397 |
"کنید."
|
398 |
|
399 |
+
#: ../includes/class-ure-lib.php:1757
|
400 |
#, php-format
|
401 |
msgid "Role %s exists already"
|
402 |
msgstr "نقش %s از پیش موجود است"
|
403 |
|
404 |
+
#: ../includes/class-ure-lib.php:1772
|
405 |
msgid "Error is encountered during new role create operation"
|
406 |
msgstr "با خطایی در هنگام عملیات ساخت نقش جدید روبرو شدیم"
|
407 |
|
408 |
+
#: ../includes/class-ure-lib.php:1774
|
409 |
#, php-format
|
410 |
msgid "Role %s is created successfully"
|
411 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1798
|
414 |
msgid "Error: Role ID is empty!"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1816
|
418 |
msgid "Error: Empty role display name is not allowed."
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1823
|
422 |
#, fuzzy, php-format
|
423 |
msgid "Role %s does not exists"
|
424 |
msgstr "موجود نمیباشد"
|
425 |
|
426 |
+
#: ../includes/class-ure-lib.php:1831
|
427 |
#, fuzzy, php-format
|
428 |
msgid "Role %s is renamed to %s successfully"
|
429 |
msgstr "نقش %s با موفقیت ایجاد شد"
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1898
|
432 |
msgid "Error encountered during role delete operation"
|
433 |
msgstr "با خطایی در هنگام عملیات حذف نقش روبرو شدیم"
|
434 |
|
435 |
+
#: ../includes/class-ure-lib.php:1900
|
436 |
msgid "Unused roles are deleted successfully"
|
437 |
msgstr "نقشهای استفاده نشده با موفقیت حذف شدند"
|
438 |
|
439 |
+
#: ../includes/class-ure-lib.php:1902
|
440 |
#, php-format
|
441 |
msgid "Role %s is deleted successfully"
|
442 |
msgstr "نقش %s با موفقیت حذف شد"
|
443 |
|
444 |
+
#: ../includes/class-ure-lib.php:1927
|
445 |
msgid "Error encountered during default role change operation"
|
446 |
msgstr "با خطایی در هنگام عملیات تغییر نقش پیشفرض روبرو شدیم"
|
447 |
|
448 |
+
#: ../includes/class-ure-lib.php:1933
|
449 |
#, php-format
|
450 |
msgid "Default role for new users is set to %s successfully"
|
451 |
msgstr "نقش پیشفرض برای کاربران جدید با موفقیت روی %s نشانده شد"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1952
|
454 |
msgid "Editor"
|
455 |
msgstr "ویرایشگر"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1953
|
458 |
msgid "Author"
|
459 |
msgstr "نویسنده"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1954
|
462 |
msgid "Contributor"
|
463 |
msgstr "مشارکتکننده"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1955
|
466 |
msgid "Subscriber"
|
467 |
msgstr "مشترک"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1957
|
470 |
msgid "Switch themes"
|
471 |
msgstr "تغییر پوستهها"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1958
|
474 |
msgid "Edit themes"
|
475 |
msgstr "ویرایش پوستهها"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1959
|
478 |
msgid "Activate plugins"
|
479 |
msgstr "فعالسازی افزونهها"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1960
|
482 |
msgid "Edit plugins"
|
483 |
msgstr "ویرایش افزونهها"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1961
|
486 |
msgid "Edit users"
|
487 |
msgstr "ویرایش کاربران"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1962
|
490 |
msgid "Edit files"
|
491 |
msgstr "ویرایش فایلها"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1963
|
494 |
msgid "Manage options"
|
495 |
msgstr "مدیریت تنظیمات"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1964
|
498 |
msgid "Moderate comments"
|
499 |
msgstr "مدیریت دیدگاهها"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1965
|
502 |
msgid "Manage categories"
|
503 |
msgstr "مدیریت دستهها"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1966
|
506 |
msgid "Manage links"
|
507 |
msgstr "مدیریت پیوندها"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1967
|
510 |
msgid "Upload files"
|
511 |
msgstr "بارگذاری فایلها"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1968
|
514 |
msgid "Import"
|
515 |
msgstr "درونریزی"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1969
|
518 |
msgid "Unfiltered html"
|
519 |
msgstr "اچتیامال فیلترنشده"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1970
|
522 |
msgid "Edit posts"
|
523 |
msgstr "ویرایش نوشتهها"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1971
|
526 |
msgid "Edit others posts"
|
527 |
msgstr "ویرایش نوشتهی دیگران"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1972
|
530 |
msgid "Edit published posts"
|
531 |
msgstr "ویرایش نوشتههای منتشرشده"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1973
|
534 |
msgid "Publish posts"
|
535 |
msgstr "انتشار نوشتهها"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1974
|
538 |
msgid "Edit pages"
|
539 |
msgstr "ویرایش صفحات"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1975
|
542 |
msgid "Read"
|
543 |
msgstr "خواندن"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1976
|
546 |
msgid "Level 10"
|
547 |
msgstr "سطح ۱۰"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1977
|
550 |
msgid "Level 9"
|
551 |
msgstr "سطح ۹"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1978
|
554 |
msgid "Level 8"
|
555 |
msgstr "سطح ۸"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1979
|
558 |
msgid "Level 7"
|
559 |
msgstr "سطح ۷"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1980
|
562 |
msgid "Level 6"
|
563 |
msgstr "سطح ۶"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1981
|
566 |
msgid "Level 5"
|
567 |
msgstr "سطح ۵"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1982
|
570 |
msgid "Level 4"
|
571 |
msgstr "سطح ۴"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1983
|
574 |
msgid "Level 3"
|
575 |
msgstr "سطح ۳"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1984
|
578 |
msgid "Level 2"
|
579 |
msgstr "سطح ۲"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1985
|
582 |
msgid "Level 1"
|
583 |
msgstr "سطح ۱"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1986
|
586 |
msgid "Level 0"
|
587 |
msgstr "سطح ۰"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1987
|
590 |
msgid "Edit others pages"
|
591 |
msgstr "ویرایش صفحات دیگران"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1988
|
594 |
msgid "Edit published pages"
|
595 |
msgstr "ویرایش صفحات منتشرشده"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1989
|
598 |
msgid "Publish pages"
|
599 |
msgstr "انتشار صفحات"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1990
|
602 |
msgid "Delete pages"
|
603 |
msgstr "حذف صفحات"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1991
|
606 |
msgid "Delete others pages"
|
607 |
msgstr "حذف صفحات دیگران"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:1992
|
610 |
msgid "Delete published pages"
|
611 |
msgstr "حذف صفحات منتشرشده"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:1993
|
614 |
msgid "Delete posts"
|
615 |
msgstr "حذف صفحات"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:1994
|
618 |
msgid "Delete others posts"
|
619 |
msgstr "حذف نوشتههای دیگران"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:1995
|
622 |
msgid "Delete published posts"
|
623 |
msgstr "حذف نوشتههای منتشرشده"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:1996
|
626 |
msgid "Delete private posts"
|
627 |
msgstr "حذف نوشتههای خصوصی"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:1997
|
630 |
msgid "Edit private posts"
|
631 |
msgstr "ویرایش نوشتههای خصوصی"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:1998
|
634 |
msgid "Read private posts"
|
635 |
msgstr "خواندن نوشتههای خصوصی"
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:1999
|
638 |
msgid "Delete private pages"
|
639 |
msgstr "حذف صفحات خصوصی"
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2000
|
642 |
msgid "Edit private pages"
|
643 |
msgstr "ویرایش صفحات خصوصی"
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2001
|
646 |
msgid "Read private pages"
|
647 |
msgstr "خواندن صفحات خصوصی"
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2002
|
650 |
msgid "Delete users"
|
651 |
msgstr "حذف کاربران"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2003
|
654 |
msgid "Create users"
|
655 |
msgstr "ایجاد کاربران"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2004
|
658 |
msgid "Unfiltered upload"
|
659 |
msgstr "بارگذاری فیلترشده"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2005
|
662 |
msgid "Edit dashboard"
|
663 |
msgstr "ویرایش پیشخوان"
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2006
|
666 |
msgid "Update plugins"
|
667 |
msgstr "بروزرسانی افزونهها"
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2007
|
670 |
msgid "Delete plugins"
|
671 |
msgstr "حذف افزونهها"
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2008
|
674 |
msgid "Install plugins"
|
675 |
msgstr "نصب افزونهها"
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2009
|
678 |
msgid "Update themes"
|
679 |
msgstr "بروزرسانی پوستهها"
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2010
|
682 |
msgid "Install themes"
|
683 |
msgstr "نصب پوستهها"
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2011
|
686 |
msgid "Update core"
|
687 |
msgstr "بروزرسانی هسته"
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2012
|
690 |
msgid "List users"
|
691 |
msgstr "فهرست کاربران"
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2013
|
694 |
msgid "Remove users"
|
695 |
msgstr "حذف کابران"
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2014
|
698 |
msgid "Add users"
|
699 |
msgstr "افزودن کاربران"
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2015
|
702 |
msgid "Promote users"
|
703 |
msgstr "ارتقاء کاربران"
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2016
|
706 |
msgid "Edit theme options"
|
707 |
msgstr "ویرایش تنظیمات پوسته"
|
708 |
|
709 |
+
#: ../includes/class-ure-lib.php:2017
|
710 |
msgid "Delete themes"
|
711 |
msgstr "حذف پوستهها"
|
712 |
|
713 |
+
#: ../includes/class-ure-lib.php:2018
|
714 |
msgid "Export"
|
715 |
msgstr "برونریزی"
|
716 |
|
717 |
+
#: ../includes/class-ure-lib.php:2128
|
718 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
719 |
msgstr "خطا: نام قابلیت باید فقط شامل حروف لاتین و اعداد باشد!"
|
720 |
|
721 |
+
#: ../includes/class-ure-lib.php:2141
|
722 |
#, php-format
|
723 |
msgid "Capability %s is added successfully"
|
724 |
msgstr "قابلیت %s با موفقیت افزوده شد"
|
725 |
|
726 |
+
#: ../includes/class-ure-lib.php:2143
|
727 |
#, php-format
|
728 |
msgid "Capability %s exists already"
|
729 |
msgstr "قابلیت %s از پیش موجود است"
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2168
|
732 |
#, php-format
|
733 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
734 |
msgstr "خطا! شما اجازهی حذف این قابلیت را ندارید: %s!"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2187
|
737 |
#, php-format
|
738 |
msgid "Capability %s is removed successfully"
|
739 |
msgstr "قابلیت %s با موفقیت حذف شد"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2291
|
742 |
msgid "Version:"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2292
|
746 |
msgid "Author's website"
|
747 |
msgstr "وبگاه نویسنده"
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2293
|
750 |
msgid "Plugin webpage"
|
751 |
msgstr "صفحه افزونه"
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2294
|
754 |
msgid "Plugin download"
|
755 |
msgstr "بارگیری افزونه"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2296
|
758 |
msgid "FAQ"
|
759 |
msgstr "سوالات مکرر"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2344
|
762 |
msgid "None"
|
763 |
msgstr "هیچکدام"
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2371
|
766 |
msgid "Delete All Unused Roles"
|
767 |
msgstr "حذف همهی نقشهای استفادهنشده"
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2395
|
770 |
msgid "— No role for this site —"
|
771 |
msgstr "— هیچ نقشی برای این سایت —"
|
772 |
|
822 |
"کد افزونهها باقی گذاشته شدهاند. روشن کردن این گزینه، آن قابلیتهای بد دانسته "
|
823 |
"شده را نمایش میدهد."
|
824 |
|
825 |
+
#: ../includes/class-ure-screen-help.php:42
|
826 |
+
msgid ""
|
827 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
828 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
829 |
+
"users list with role \"No rights\" at the separate tab then."
|
830 |
+
msgstr ""
|
831 |
|
832 |
+
#: ../includes/class-ure-screen-help.php:59
|
833 |
#, fuzzy
|
834 |
msgid "Other default roles for new registered user"
|
835 |
msgstr "دیگر نقشهای پیشفرض برای کاربران تازه ثبتنام شده: "
|
836 |
|
837 |
+
#: ../includes/class-ure-screen-help.php:60
|
838 |
#, fuzzy
|
839 |
msgid ""
|
840 |
"select roles below to assign them to the new user automatically as an "
|
845 |
"قابل توجه محیط چند سایتی: رفتن به حسابی که در سایت نقشهای پیش فرض دیگری "
|
846 |
"موجود است، به منظور اختصاص دادن به کاربران تازه ثبتنام شده."
|
847 |
|
848 |
+
#: ../includes/class-ure-screen-help.php:78
|
849 |
#, fuzzy
|
850 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
851 |
msgstr "اجازه به غیر مدیران اصلی برای ایجاد، ویرایش و حذف کاربران"
|
852 |
|
853 |
+
#: ../includes/class-ure-screen-help.php:79
|
854 |
#, fuzzy
|
855 |
msgid ""
|
856 |
"Super administrator only may create, edit and delete users under WordPress "
|
860 |
"در وردپرس چند سایتی تنها مدیران اصلی اجازهی ایجاد، ویرایش و حذف کاربران را "
|
861 |
"دارند. این "
|
862 |
|
863 |
+
#, fuzzy
|
864 |
+
#~ msgid "select roles below"
|
865 |
+
#~ msgstr "عدمانتخاب همه"
|
866 |
+
|
867 |
#~ msgid "Overview"
|
868 |
#~ msgstr "مرور کلی"
|
869 |
|
lang/ure-fr_FR.mo
ADDED
Binary file
|
lang/ure-fr_FR.po
ADDED
@@ -0,0 +1,890 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#
|
2 |
+
# Translators:
|
3 |
+
# FxB <fxb@wp-translations.org>, 2014
|
4 |
+
# Sébastien Grillot <sebastien@insidedaweb.fr>, 2014
|
5 |
+
msgid ""
|
6 |
+
msgstr ""
|
7 |
+
"Project-Id-Version: User Role Editor\n"
|
8 |
+
"Report-Msgid-Bugs-To: \n"
|
9 |
+
"POT-Creation-Date: 2014-10-21 10:23+0700\n"
|
10 |
+
"PO-Revision-Date: 2014-10-21 10:24+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"
|
14 |
+
"Language: fr_FR\n"
|
15 |
+
"MIME-Version: 1.0\n"
|
16 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
+
"Content-Transfer-Encoding: 8bit\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
19 |
+
"X-Generator: Poedit 1.5.4\n"
|
20 |
+
"X-Poedit-Basepath: .\n"
|
21 |
+
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
+
"X-Poedit-SearchPath-0: ..\n"
|
24 |
+
|
25 |
+
#: ../includes/settings-template.php:17
|
26 |
+
msgid "User Role Editor - Options"
|
27 |
+
msgstr "User Role Editor - Options"
|
28 |
+
|
29 |
+
#: ../includes/settings-template.php:21
|
30 |
+
#: ../includes/class-user-role-editor.php:547
|
31 |
+
msgid "General"
|
32 |
+
msgstr "Général"
|
33 |
+
|
34 |
+
#: ../includes/settings-template.php:26
|
35 |
+
#: ../includes/class-user-role-editor.php:553
|
36 |
+
msgid "Additional Modules"
|
37 |
+
msgstr "Modules complémentaires"
|
38 |
+
|
39 |
+
#: ../includes/settings-template.php:30
|
40 |
+
#: ../includes/class-user-role-editor.php:559
|
41 |
+
msgid "Default Roles"
|
42 |
+
msgstr " Rôles par défaut"
|
43 |
+
|
44 |
+
#: ../includes/settings-template.php:34
|
45 |
+
#: ../includes/class-user-role-editor.php:565
|
46 |
+
msgid "Multisite"
|
47 |
+
msgstr "Multisite"
|
48 |
+
|
49 |
+
#: ../includes/settings-template.php:39
|
50 |
+
msgid "About"
|
51 |
+
msgstr "À propos"
|
52 |
+
|
53 |
+
#: ../includes/settings-template.php:53
|
54 |
+
#: ../includes/class-ure-screen-help.php:15
|
55 |
+
msgid "Show Administrator role at User Role Editor"
|
56 |
+
msgstr "Montrer le rôle Administrateur dans User Role Editor"
|
57 |
+
|
58 |
+
#: ../includes/settings-template.php:61
|
59 |
+
#: ../includes/class-ure-screen-help.php:18
|
60 |
+
msgid "Show capabilities in the human readable form"
|
61 |
+
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
62 |
+
|
63 |
+
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
64 |
+
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
65 |
+
msgid "Show deprecated capabilities"
|
66 |
+
msgstr "Voir les capacités obsolètes"
|
67 |
+
|
68 |
+
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
69 |
+
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
70 |
+
msgid "Save"
|
71 |
+
msgstr "Sauvegarder"
|
72 |
+
|
73 |
+
#: ../includes/settings-template.php:102
|
74 |
+
#: ../includes/class-ure-screen-help.php:41
|
75 |
+
msgid "Count users without role"
|
76 |
+
msgstr "Compter les utilisateurs sans rôle"
|
77 |
+
|
78 |
+
#: ../includes/settings-template.php:129
|
79 |
+
msgid "Primary default role: "
|
80 |
+
msgstr "Rôle primaire par défaut : "
|
81 |
+
|
82 |
+
#: ../includes/settings-template.php:136
|
83 |
+
msgid "Other default roles for new registered user: "
|
84 |
+
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés : "
|
85 |
+
|
86 |
+
#: ../includes/settings-template.php:142
|
87 |
+
msgid ""
|
88 |
+
"Note for multisite environment: take into account that other default roles "
|
89 |
+
"should exist at the site, in order to be assigned to the new registered "
|
90 |
+
"users."
|
91 |
+
msgstr ""
|
92 |
+
"Note pour les environnements multisite : Prenez en considération que "
|
93 |
+
"d'autres rôles par défauts doivent exister sur le site, afin qu'ils soient "
|
94 |
+
"assignés aux nouveaux utilisateurs enregistrés."
|
95 |
+
|
96 |
+
#: ../includes/settings-template.php:168
|
97 |
+
msgid "Allow non super administrators to create, edit, and delete users"
|
98 |
+
msgstr ""
|
99 |
+
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
100 |
+
"modifier ou supprimer des utilisateurs"
|
101 |
+
|
102 |
+
#: ../includes/class-user-role-editor.php:195
|
103 |
+
msgid "Change role for users without role"
|
104 |
+
msgstr "Changer le rôle pour les utilisateurs sans rôle"
|
105 |
+
|
106 |
+
#: ../includes/class-user-role-editor.php:196
|
107 |
+
msgid "No rights"
|
108 |
+
msgstr "Aucun droit"
|
109 |
+
|
110 |
+
#: ../includes/class-user-role-editor.php:197
|
111 |
+
msgid "Provide new role"
|
112 |
+
msgstr "Fournir un nouveau rôle"
|
113 |
+
|
114 |
+
#: ../includes/class-user-role-editor.php:281
|
115 |
+
#: ../includes/class-user-role-editor.php:283
|
116 |
+
msgid "You do not have permission to edit this user."
|
117 |
+
msgstr ""
|
118 |
+
"Vous n’avez pas l’autorisation de modifier cet utilisateur."
|
119 |
+
|
120 |
+
#: ../includes/class-user-role-editor.php:422
|
121 |
+
msgid "Capabilities"
|
122 |
+
msgstr "Capacités"
|
123 |
+
|
124 |
+
#: ../includes/class-user-role-editor.php:514
|
125 |
+
msgid "Settings"
|
126 |
+
msgstr "Paramètres"
|
127 |
+
|
128 |
+
#: ../includes/class-user-role-editor.php:525
|
129 |
+
#: ../includes/class-ure-lib.php:2295
|
130 |
+
msgid "Changelog"
|
131 |
+
msgstr "Journal des modifications"
|
132 |
+
|
133 |
+
#: ../includes/class-user-role-editor.php:575
|
134 |
+
#: ../includes/class-user-role-editor.php:603
|
135 |
+
#: ../includes/class-user-role-editor.php:948
|
136 |
+
#: ../includes/class-ure-lib.php:251
|
137 |
+
msgid "User Role Editor"
|
138 |
+
msgstr "User Role Editor"
|
139 |
+
|
140 |
+
#: ../includes/class-user-role-editor.php:660
|
141 |
+
#: ../includes/class-user-role-editor.php:678
|
142 |
+
#: ../includes/class-user-role-editor.php:722
|
143 |
+
msgid "User Role Editor options are updated"
|
144 |
+
msgstr "Les options de User Role Editor ont été mises à jour"
|
145 |
+
|
146 |
+
#: ../includes/class-user-role-editor.php:706
|
147 |
+
msgid "Default Roles are updated"
|
148 |
+
msgstr "Les rôles par défauts ont été mis à jour"
|
149 |
+
|
150 |
+
#: ../includes/class-user-role-editor.php:730
|
151 |
+
msgid ""
|
152 |
+
"You do not have sufficient permissions to manage options for User Role "
|
153 |
+
"Editor."
|
154 |
+
msgstr ""
|
155 |
+
"Vous n'avez pas les permissions suffisantes pour gérer les options de User "
|
156 |
+
"Role Editor."
|
157 |
+
|
158 |
+
#: ../includes/class-user-role-editor.php:809
|
159 |
+
msgid "Insufficient permissions to work with User Role Editor"
|
160 |
+
msgstr "Permissions insuffisantes pour travailler avec User Role Editor"
|
161 |
+
|
162 |
+
#: ../includes/class-user-role-editor.php:890
|
163 |
+
msgid "Select All"
|
164 |
+
msgstr "Tout sélectionner"
|
165 |
+
|
166 |
+
#: ../includes/class-user-role-editor.php:891
|
167 |
+
msgid "Unselect All"
|
168 |
+
msgstr "Tout déselectionner"
|
169 |
+
|
170 |
+
#: ../includes/class-user-role-editor.php:892
|
171 |
+
msgid "Reverse"
|
172 |
+
msgstr "Inverser"
|
173 |
+
|
174 |
+
#: ../includes/class-user-role-editor.php:893
|
175 |
+
msgid "Update"
|
176 |
+
msgstr "Mettre à jour"
|
177 |
+
|
178 |
+
#: ../includes/class-user-role-editor.php:894
|
179 |
+
msgid "Please confirm permissions update"
|
180 |
+
msgstr "Merci de confirmer la mise à jour des permissions"
|
181 |
+
|
182 |
+
#: ../includes/class-user-role-editor.php:895
|
183 |
+
msgid "Add New Role"
|
184 |
+
msgstr "Ajouter un nouveau rôle"
|
185 |
+
|
186 |
+
#: ../includes/class-user-role-editor.php:896
|
187 |
+
#: ../includes/class-user-role-editor.php:901
|
188 |
+
msgid "Rename Role"
|
189 |
+
msgstr "Renommer le Rôle"
|
190 |
+
|
191 |
+
#: ../includes/class-user-role-editor.php:897
|
192 |
+
msgid " Role name (ID) can not be empty!"
|
193 |
+
msgstr "Le nom du rôle (ID) ne peut pas être vide !"
|
194 |
+
|
195 |
+
#: ../includes/class-user-role-editor.php:898
|
196 |
+
msgid ""
|
197 |
+
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
198 |
+
"only!"
|
199 |
+
msgstr ""
|
200 |
+
"Le nom du rôle (ID) peut contenir seulement des caractères latin, des "
|
201 |
+
"chiffres, des traits d'union ou des caractères de soulignement !"
|
202 |
+
|
203 |
+
#: ../includes/class-user-role-editor.php:899
|
204 |
+
msgid ""
|
205 |
+
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
206 |
+
"it."
|
207 |
+
msgstr ""
|
208 |
+
"WordPress ne supporte pas les noms de rôle (ID) alphanumériques. Ajouter des "
|
209 |
+
"caractères latin à celui-ci."
|
210 |
+
|
211 |
+
#: ../includes/class-user-role-editor.php:900
|
212 |
+
msgid "Add Role"
|
213 |
+
msgstr "Ajouter un rôle"
|
214 |
+
|
215 |
+
#: ../includes/class-user-role-editor.php:902
|
216 |
+
msgid "Delete Role"
|
217 |
+
msgstr "Supprimer un rôle"
|
218 |
+
|
219 |
+
#: ../includes/class-user-role-editor.php:903
|
220 |
+
msgid "Cancel"
|
221 |
+
msgstr "Annuler"
|
222 |
+
|
223 |
+
#: ../includes/class-user-role-editor.php:904
|
224 |
+
msgid "Add Capability"
|
225 |
+
msgstr "Ajouter la capacité"
|
226 |
+
|
227 |
+
#: ../includes/class-user-role-editor.php:905
|
228 |
+
#: ../includes/class-user-role-editor.php:914
|
229 |
+
msgid "Delete Capability"
|
230 |
+
msgstr "Supprimer la capacité"
|
231 |
+
|
232 |
+
#: ../includes/class-user-role-editor.php:906
|
233 |
+
msgid "Reset"
|
234 |
+
msgstr "Réinitialiser"
|
235 |
+
|
236 |
+
#: ../includes/class-user-role-editor.php:907
|
237 |
+
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
238 |
+
msgstr ""
|
239 |
+
"DANGER ! La réinitialisation va restaurer les paramètres par défaut du cœur "
|
240 |
+
"de WordPress."
|
241 |
+
|
242 |
+
#: ../includes/class-user-role-editor.php:908
|
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!"
|
246 |
+
msgstr ""
|
247 |
+
"Si aucune extension n'a modifié les capacités (comme S2Member ou WooCommerce "
|
248 |
+
"et bien d'autres), ces capacités seront SUPPRIMÉES ! "
|
249 |
+
|
250 |
+
#: ../includes/class-user-role-editor.php:909
|
251 |
+
msgid ""
|
252 |
+
"For more information on how to undo changes and restore plugin capabilities "
|
253 |
+
"go to"
|
254 |
+
msgstr ""
|
255 |
+
"Pour de plus amples informations sur la façon d'annuler les modifications et "
|
256 |
+
"rétablir les fonctions de l'extension, aller sur "
|
257 |
+
|
258 |
+
#: ../includes/class-user-role-editor.php:911
|
259 |
+
msgid "Continue?"
|
260 |
+
msgstr "Continuer ?"
|
261 |
+
|
262 |
+
#: ../includes/class-user-role-editor.php:912
|
263 |
+
msgid "Default Role"
|
264 |
+
msgstr " Rôle par défaut"
|
265 |
+
|
266 |
+
#: ../includes/class-user-role-editor.php:913
|
267 |
+
msgid "Set New Default Role"
|
268 |
+
msgstr "Régler le nouveau rôle par défaut"
|
269 |
+
|
270 |
+
#: ../includes/class-user-role-editor.php:915
|
271 |
+
msgid ""
|
272 |
+
"Warning! Be careful - removing critical capability could crash some plugin "
|
273 |
+
"or other custom code"
|
274 |
+
msgstr ""
|
275 |
+
"Attention ! Enlever des capacités critiques pourrait faire planter certaines "
|
276 |
+
"extension ou autres codes personnalisés"
|
277 |
+
|
278 |
+
#: ../includes/class-user-role-editor.php:916
|
279 |
+
msgid " Capability name (ID) can not be empty!"
|
280 |
+
msgstr "Le nom de la capacité (ID) ne peut pas être vide !"
|
281 |
+
|
282 |
+
#: ../includes/class-user-role-editor.php:917
|
283 |
+
msgid ""
|
284 |
+
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
285 |
+
"underscore only!"
|
286 |
+
msgstr ""
|
287 |
+
"Le nom de la capacité (ID) doit contenir seulement des caractères latins, "
|
288 |
+
"des chiffres, des traits d'union ou des caractères de soulignement !"
|
289 |
+
|
290 |
+
#: ../includes/class-user-role-editor.php:951
|
291 |
+
#: ../includes/class-user-role-editor.php:980
|
292 |
+
msgid "Other Roles"
|
293 |
+
msgstr "Autres rôles"
|
294 |
+
|
295 |
+
#: ../includes/class-user-role-editor.php:962
|
296 |
+
msgid "Edit"
|
297 |
+
msgstr "Modifier"
|
298 |
+
|
299 |
+
#: ../includes/ure-role-edit.php:17
|
300 |
+
msgid "Select Role and change its capabilities:"
|
301 |
+
msgstr "Sélectionner un rôle et changer ses capacités : "
|
302 |
+
|
303 |
+
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
304 |
+
msgid "Show capabilities in human readable form"
|
305 |
+
msgstr "Montrer les capacités dans une forme lisible par l'homme"
|
306 |
+
|
307 |
+
#: ../includes/ure-role-edit.php:44
|
308 |
+
msgid "If checked, then apply action to ALL sites of this Network"
|
309 |
+
msgstr ""
|
310 |
+
"Si coché, alors appliquer toutes les actions à tous les sites du réseau"
|
311 |
+
|
312 |
+
#: ../includes/ure-role-edit.php:56
|
313 |
+
msgid "Apply to All Sites"
|
314 |
+
msgstr "Appliquer à tous les sites"
|
315 |
+
|
316 |
+
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
317 |
+
msgid "Core capabilities:"
|
318 |
+
msgstr "Capacités du core :"
|
319 |
+
|
320 |
+
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
321 |
+
msgid "Quick filter:"
|
322 |
+
msgstr "Filtre rapide : "
|
323 |
+
|
324 |
+
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
325 |
+
msgid "Custom capabilities:"
|
326 |
+
msgstr "Capacités personnalisées :"
|
327 |
+
|
328 |
+
#: ../includes/class-ure-lib.php:159
|
329 |
+
msgid "Error: wrong request"
|
330 |
+
msgstr "Erreur : mauvaise requête"
|
331 |
+
|
332 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
333 |
+
msgid "Role name (ID): "
|
334 |
+
msgstr "Nom du rôle (ID) :"
|
335 |
+
|
336 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
337 |
+
msgid "Display Role Name: "
|
338 |
+
msgstr "Afficher le nom du rôle : "
|
339 |
+
|
340 |
+
#: ../includes/class-ure-lib.php:196
|
341 |
+
msgid "Make copy of: "
|
342 |
+
msgstr "Faire une copie de : "
|
343 |
+
|
344 |
+
#: ../includes/class-ure-lib.php:212
|
345 |
+
msgid "Select Role:"
|
346 |
+
msgstr "Sélectionner le rôle :"
|
347 |
+
|
348 |
+
#: ../includes/class-ure-lib.php:227
|
349 |
+
msgid "Delete:"
|
350 |
+
msgstr "Supprimer :"
|
351 |
+
|
352 |
+
#: ../includes/class-ure-lib.php:234
|
353 |
+
msgid "Capability name (ID): "
|
354 |
+
msgstr "Nom de la capacité (ID) : "
|
355 |
+
|
356 |
+
#: ../includes/class-ure-lib.php:348
|
357 |
+
msgid "Error: "
|
358 |
+
msgstr "Erreur : "
|
359 |
+
|
360 |
+
#: ../includes/class-ure-lib.php:348
|
361 |
+
msgid "Role"
|
362 |
+
msgstr "Rôle"
|
363 |
+
|
364 |
+
#: ../includes/class-ure-lib.php:349
|
365 |
+
msgid "does not exist"
|
366 |
+
msgstr "N'existe pas"
|
367 |
+
|
368 |
+
#: ../includes/class-ure-lib.php:392
|
369 |
+
msgid "Role is updated successfully"
|
370 |
+
msgstr "Le rôle à été bien été mis à jour"
|
371 |
+
|
372 |
+
#: ../includes/class-ure-lib.php:394
|
373 |
+
msgid "Roles are updated for all network"
|
374 |
+
msgstr "Les rôles ont été mis à jour sur tous les réseaux"
|
375 |
+
|
376 |
+
#: ../includes/class-ure-lib.php:400
|
377 |
+
msgid "Error occured during role(s) update"
|
378 |
+
msgstr "Une erreur est survenue pendant la mise à jour du (des) rôle(s)"
|
379 |
+
|
380 |
+
#: ../includes/class-ure-lib.php:407
|
381 |
+
msgid "User capabilities are updated successfully"
|
382 |
+
msgstr "Les capacités de l'utilisateur ont bien été mises à jour"
|
383 |
+
|
384 |
+
#: ../includes/class-ure-lib.php:412
|
385 |
+
msgid "Error occured during user update"
|
386 |
+
msgstr "Une erreur est survenue pendant le mise à jour de l'utilisateur"
|
387 |
+
|
388 |
+
#: ../includes/class-ure-lib.php:470
|
389 |
+
msgid "User Roles are restored to WordPress default values. "
|
390 |
+
msgstr ""
|
391 |
+
"Les rôles utilisateurs ont été restaurées selon les valeurs par défauts de "
|
392 |
+
"WordPress."
|
393 |
+
|
394 |
+
#: ../includes/class-ure-lib.php:1337
|
395 |
+
msgid "Help"
|
396 |
+
msgstr "Aide"
|
397 |
+
|
398 |
+
#: ../includes/class-ure-lib.php:1695
|
399 |
+
msgid "Error is occur. Please check the log file."
|
400 |
+
msgstr "Une erreur s'est produite. Merci de vérifier les journaux."
|
401 |
+
|
402 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
403 |
+
msgid ""
|
404 |
+
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
405 |
+
"only!"
|
406 |
+
msgstr ""
|
407 |
+
"Erreur : L'ID du rôle doit contenir des caractères latins, des chiffres, des "
|
408 |
+
"traits d'union ou des caractères de soulignement seulement !"
|
409 |
+
|
410 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
411 |
+
msgid ""
|
412 |
+
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
413 |
+
"characters to it."
|
414 |
+
msgstr ""
|
415 |
+
"Erreur : WordPress ne supporte pas les noms de rôles (ID) numérique. Ajouter "
|
416 |
+
"des caractères latins à celui-ci."
|
417 |
+
|
418 |
+
#: ../includes/class-ure-lib.php:1757
|
419 |
+
#, php-format
|
420 |
+
msgid "Role %s exists already"
|
421 |
+
msgstr "Le rôle %s existe déjà"
|
422 |
+
|
423 |
+
#: ../includes/class-ure-lib.php:1772
|
424 |
+
msgid "Error is encountered during new role create operation"
|
425 |
+
msgstr ""
|
426 |
+
"Une erreur est survenue pendant l'opération de création du nouveau rôle"
|
427 |
+
|
428 |
+
#: ../includes/class-ure-lib.php:1774
|
429 |
+
#, php-format
|
430 |
+
msgid "Role %s is created successfully"
|
431 |
+
msgstr "Le rôle %s à bien été créé "
|
432 |
+
|
433 |
+
#: ../includes/class-ure-lib.php:1798
|
434 |
+
msgid "Error: Role ID is empty!"
|
435 |
+
msgstr "Erreur : L'ID du rôle est vide !"
|
436 |
+
|
437 |
+
#: ../includes/class-ure-lib.php:1816
|
438 |
+
msgid "Error: Empty role display name is not allowed."
|
439 |
+
msgstr "Erreur : Un nom d'affichage de rôle vide n'est pas autorisé."
|
440 |
+
|
441 |
+
#: ../includes/class-ure-lib.php:1823
|
442 |
+
#, php-format
|
443 |
+
msgid "Role %s does not exists"
|
444 |
+
msgstr "Le rôle %s n’existe pas."
|
445 |
+
|
446 |
+
#: ../includes/class-ure-lib.php:1831
|
447 |
+
#, php-format
|
448 |
+
msgid "Role %s is renamed to %s successfully"
|
449 |
+
msgstr "Le rôle %s à bien été renommé en %s. "
|
450 |
+
|
451 |
+
#: ../includes/class-ure-lib.php:1898
|
452 |
+
msgid "Error encountered during role delete operation"
|
453 |
+
msgstr "Une erreur est survenue pendant l'opération de suppression du rôle"
|
454 |
+
|
455 |
+
#: ../includes/class-ure-lib.php:1900
|
456 |
+
msgid "Unused roles are deleted successfully"
|
457 |
+
msgstr "Les rôles inutilisés ont bien été supprimés"
|
458 |
+
|
459 |
+
#: ../includes/class-ure-lib.php:1902
|
460 |
+
#, php-format
|
461 |
+
msgid "Role %s is deleted successfully"
|
462 |
+
msgstr "Le rôle %s à bien été supprimé"
|
463 |
+
|
464 |
+
#: ../includes/class-ure-lib.php:1927
|
465 |
+
msgid "Error encountered during default role change operation"
|
466 |
+
msgstr ""
|
467 |
+
"Une erreur est survenue pendant l'opération de changement du rôle par défaut"
|
468 |
+
|
469 |
+
#: ../includes/class-ure-lib.php:1933
|
470 |
+
#, php-format
|
471 |
+
msgid "Default role for new users is set to %s successfully"
|
472 |
+
msgstr "Le rôle par défaut pour les nouveaux utilisateur à bien été mis à %s"
|
473 |
+
|
474 |
+
#: ../includes/class-ure-lib.php:1952
|
475 |
+
msgid "Editor"
|
476 |
+
msgstr "Éditeur"
|
477 |
+
|
478 |
+
#: ../includes/class-ure-lib.php:1953
|
479 |
+
msgid "Author"
|
480 |
+
msgstr "Auteur"
|
481 |
+
|
482 |
+
#: ../includes/class-ure-lib.php:1954
|
483 |
+
msgid "Contributor"
|
484 |
+
msgstr "Contributeur"
|
485 |
+
|
486 |
+
#: ../includes/class-ure-lib.php:1955
|
487 |
+
msgid "Subscriber"
|
488 |
+
msgstr "Abonné"
|
489 |
+
|
490 |
+
#: ../includes/class-ure-lib.php:1957
|
491 |
+
msgid "Switch themes"
|
492 |
+
msgstr "Changer de thèmes"
|
493 |
+
|
494 |
+
#: ../includes/class-ure-lib.php:1958
|
495 |
+
msgid "Edit themes"
|
496 |
+
msgstr "Modifier les thèmes"
|
497 |
+
|
498 |
+
#: ../includes/class-ure-lib.php:1959
|
499 |
+
msgid "Activate plugins"
|
500 |
+
msgstr "Activer les extensions"
|
501 |
+
|
502 |
+
#: ../includes/class-ure-lib.php:1960
|
503 |
+
msgid "Edit plugins"
|
504 |
+
msgstr "Modifier les extensions"
|
505 |
+
|
506 |
+
#: ../includes/class-ure-lib.php:1961
|
507 |
+
msgid "Edit users"
|
508 |
+
msgstr "Modifier les utilisateurs"
|
509 |
+
|
510 |
+
#: ../includes/class-ure-lib.php:1962
|
511 |
+
msgid "Edit files"
|
512 |
+
msgstr "Modifier les fichiers"
|
513 |
+
|
514 |
+
#: ../includes/class-ure-lib.php:1963
|
515 |
+
msgid "Manage options"
|
516 |
+
msgstr "Gérer les options"
|
517 |
+
|
518 |
+
#: ../includes/class-ure-lib.php:1964
|
519 |
+
msgid "Moderate comments"
|
520 |
+
msgstr "Modérer les commentaires"
|
521 |
+
|
522 |
+
#: ../includes/class-ure-lib.php:1965
|
523 |
+
msgid "Manage categories"
|
524 |
+
msgstr "Gérer les catégories"
|
525 |
+
|
526 |
+
#: ../includes/class-ure-lib.php:1966
|
527 |
+
msgid "Manage links"
|
528 |
+
msgstr "Gérer les liens"
|
529 |
+
|
530 |
+
#: ../includes/class-ure-lib.php:1967
|
531 |
+
msgid "Upload files"
|
532 |
+
msgstr "Mettre en ligne des fichiers"
|
533 |
+
|
534 |
+
#: ../includes/class-ure-lib.php:1968
|
535 |
+
msgid "Import"
|
536 |
+
msgstr "Importer"
|
537 |
+
|
538 |
+
#: ../includes/class-ure-lib.php:1969
|
539 |
+
msgid "Unfiltered html"
|
540 |
+
msgstr "HTML non filtré"
|
541 |
+
|
542 |
+
#: ../includes/class-ure-lib.php:1970
|
543 |
+
msgid "Edit posts"
|
544 |
+
msgstr "Modifier les articles"
|
545 |
+
|
546 |
+
#: ../includes/class-ure-lib.php:1971
|
547 |
+
msgid "Edit others posts"
|
548 |
+
msgstr "Modifier les autres billets"
|
549 |
+
|
550 |
+
#: ../includes/class-ure-lib.php:1972
|
551 |
+
msgid "Edit published posts"
|
552 |
+
msgstr "Modifier les billets publiés "
|
553 |
+
|
554 |
+
#: ../includes/class-ure-lib.php:1973
|
555 |
+
msgid "Publish posts"
|
556 |
+
msgstr "Publier des articles"
|
557 |
+
|
558 |
+
#: ../includes/class-ure-lib.php:1974
|
559 |
+
msgid "Edit pages"
|
560 |
+
msgstr "Modifier des pages"
|
561 |
+
|
562 |
+
#: ../includes/class-ure-lib.php:1975
|
563 |
+
msgid "Read"
|
564 |
+
msgstr "Lire"
|
565 |
+
|
566 |
+
#: ../includes/class-ure-lib.php:1976
|
567 |
+
msgid "Level 10"
|
568 |
+
msgstr "Niveau 10"
|
569 |
+
|
570 |
+
#: ../includes/class-ure-lib.php:1977
|
571 |
+
msgid "Level 9"
|
572 |
+
msgstr "Niveau 9"
|
573 |
+
|
574 |
+
#: ../includes/class-ure-lib.php:1978
|
575 |
+
msgid "Level 8"
|
576 |
+
msgstr "Niveau 8"
|
577 |
+
|
578 |
+
#: ../includes/class-ure-lib.php:1979
|
579 |
+
msgid "Level 7"
|
580 |
+
msgstr "Niveau 7"
|
581 |
+
|
582 |
+
#: ../includes/class-ure-lib.php:1980
|
583 |
+
msgid "Level 6"
|
584 |
+
msgstr "Niveau 6"
|
585 |
+
|
586 |
+
#: ../includes/class-ure-lib.php:1981
|
587 |
+
msgid "Level 5"
|
588 |
+
msgstr "Niveau 5"
|
589 |
+
|
590 |
+
#: ../includes/class-ure-lib.php:1982
|
591 |
+
msgid "Level 4"
|
592 |
+
msgstr "Niveau 4"
|
593 |
+
|
594 |
+
#: ../includes/class-ure-lib.php:1983
|
595 |
+
msgid "Level 3"
|
596 |
+
msgstr "Niveau 3"
|
597 |
+
|
598 |
+
#: ../includes/class-ure-lib.php:1984
|
599 |
+
msgid "Level 2"
|
600 |
+
msgstr "Niveau 2"
|
601 |
+
|
602 |
+
#: ../includes/class-ure-lib.php:1985
|
603 |
+
msgid "Level 1"
|
604 |
+
msgstr "Niveau 1"
|
605 |
+
|
606 |
+
#: ../includes/class-ure-lib.php:1986
|
607 |
+
msgid "Level 0"
|
608 |
+
msgstr "Niveau 0"
|
609 |
+
|
610 |
+
#: ../includes/class-ure-lib.php:1987
|
611 |
+
msgid "Edit others pages"
|
612 |
+
msgstr "Modifier les autres pages"
|
613 |
+
|
614 |
+
#: ../includes/class-ure-lib.php:1988
|
615 |
+
msgid "Edit published pages"
|
616 |
+
msgstr "Modifier les pages publiées "
|
617 |
+
|
618 |
+
#: ../includes/class-ure-lib.php:1989
|
619 |
+
msgid "Publish pages"
|
620 |
+
msgstr "Publier les pages"
|
621 |
+
|
622 |
+
#: ../includes/class-ure-lib.php:1990
|
623 |
+
msgid "Delete pages"
|
624 |
+
msgstr "Supprimer les pages"
|
625 |
+
|
626 |
+
#: ../includes/class-ure-lib.php:1991
|
627 |
+
msgid "Delete others pages"
|
628 |
+
msgstr "Supprimer les autres pages"
|
629 |
+
|
630 |
+
#: ../includes/class-ure-lib.php:1992
|
631 |
+
msgid "Delete published pages"
|
632 |
+
msgstr "Supprimer les pages publiées"
|
633 |
+
|
634 |
+
#: ../includes/class-ure-lib.php:1993
|
635 |
+
msgid "Delete posts"
|
636 |
+
msgstr "Supprimer les articles"
|
637 |
+
|
638 |
+
#: ../includes/class-ure-lib.php:1994
|
639 |
+
msgid "Delete others posts"
|
640 |
+
msgstr "Supprimer les autres billets"
|
641 |
+
|
642 |
+
#: ../includes/class-ure-lib.php:1995
|
643 |
+
msgid "Delete published posts"
|
644 |
+
msgstr "Supprimer les billets publiés"
|
645 |
+
|
646 |
+
#: ../includes/class-ure-lib.php:1996
|
647 |
+
msgid "Delete private posts"
|
648 |
+
msgstr "Supprimer les billets privés"
|
649 |
+
|
650 |
+
#: ../includes/class-ure-lib.php:1997
|
651 |
+
msgid "Edit private posts"
|
652 |
+
msgstr "Modifier les billets privés"
|
653 |
+
|
654 |
+
#: ../includes/class-ure-lib.php:1998
|
655 |
+
msgid "Read private posts"
|
656 |
+
msgstr "Lire les billets privés"
|
657 |
+
|
658 |
+
#: ../includes/class-ure-lib.php:1999
|
659 |
+
msgid "Delete private pages"
|
660 |
+
msgstr "Supprimer les pages privées "
|
661 |
+
|
662 |
+
#: ../includes/class-ure-lib.php:2000
|
663 |
+
msgid "Edit private pages"
|
664 |
+
msgstr "Modifier les pages privées"
|
665 |
+
|
666 |
+
#: ../includes/class-ure-lib.php:2001
|
667 |
+
msgid "Read private pages"
|
668 |
+
msgstr "Lire les pages privées"
|
669 |
+
|
670 |
+
#: ../includes/class-ure-lib.php:2002
|
671 |
+
msgid "Delete users"
|
672 |
+
msgstr "Supprimer les utilisateurs"
|
673 |
+
|
674 |
+
#: ../includes/class-ure-lib.php:2003
|
675 |
+
msgid "Create users"
|
676 |
+
msgstr "Créer des utilisateurs"
|
677 |
+
|
678 |
+
#: ../includes/class-ure-lib.php:2004
|
679 |
+
msgid "Unfiltered upload"
|
680 |
+
msgstr "Téléchargement non filtré"
|
681 |
+
|
682 |
+
#: ../includes/class-ure-lib.php:2005
|
683 |
+
msgid "Edit dashboard"
|
684 |
+
msgstr "Modifier le tableau de bord"
|
685 |
+
|
686 |
+
#: ../includes/class-ure-lib.php:2006
|
687 |
+
msgid "Update plugins"
|
688 |
+
msgstr "Mettre à jour les extensions"
|
689 |
+
|
690 |
+
#: ../includes/class-ure-lib.php:2007
|
691 |
+
msgid "Delete plugins"
|
692 |
+
msgstr "Supprimer les extensions"
|
693 |
+
|
694 |
+
#: ../includes/class-ure-lib.php:2008
|
695 |
+
msgid "Install plugins"
|
696 |
+
msgstr "Installer les extensions"
|
697 |
+
|
698 |
+
#: ../includes/class-ure-lib.php:2009
|
699 |
+
msgid "Update themes"
|
700 |
+
msgstr "Mettre à jour les thèmes"
|
701 |
+
|
702 |
+
#: ../includes/class-ure-lib.php:2010
|
703 |
+
msgid "Install themes"
|
704 |
+
msgstr "Installer des thèmes"
|
705 |
+
|
706 |
+
#: ../includes/class-ure-lib.php:2011
|
707 |
+
msgid "Update core"
|
708 |
+
msgstr "Mettre à jour le cœur"
|
709 |
+
|
710 |
+
#: ../includes/class-ure-lib.php:2012
|
711 |
+
msgid "List users"
|
712 |
+
msgstr "Lister les utilisateurs"
|
713 |
+
|
714 |
+
#: ../includes/class-ure-lib.php:2013
|
715 |
+
msgid "Remove users"
|
716 |
+
msgstr "Supprimer des utilisateurs"
|
717 |
+
|
718 |
+
#: ../includes/class-ure-lib.php:2014
|
719 |
+
msgid "Add users"
|
720 |
+
msgstr "Ajouter les utilisateurs"
|
721 |
+
|
722 |
+
#: ../includes/class-ure-lib.php:2015
|
723 |
+
msgid "Promote users"
|
724 |
+
msgstr "Promouvoir des utilisateurs"
|
725 |
+
|
726 |
+
#: ../includes/class-ure-lib.php:2016
|
727 |
+
msgid "Edit theme options"
|
728 |
+
msgstr "Modifier les options du thème"
|
729 |
+
|
730 |
+
#: ../includes/class-ure-lib.php:2017
|
731 |
+
msgid "Delete themes"
|
732 |
+
msgstr "Supprimer des thèmes"
|
733 |
+
|
734 |
+
#: ../includes/class-ure-lib.php:2018
|
735 |
+
msgid "Export"
|
736 |
+
msgstr "Exporter"
|
737 |
+
|
738 |
+
#: ../includes/class-ure-lib.php:2128
|
739 |
+
msgid "Error: Capability name must contain latin characters and digits only!"
|
740 |
+
msgstr ""
|
741 |
+
"Erreur : Le nom de la capacité doit seulement contenir des caractères latins "
|
742 |
+
"et des chiffres !"
|
743 |
+
|
744 |
+
#: ../includes/class-ure-lib.php:2141
|
745 |
+
#, php-format
|
746 |
+
msgid "Capability %s is added successfully"
|
747 |
+
msgstr "La capacité %s à bien été ajoutée "
|
748 |
+
|
749 |
+
#: ../includes/class-ure-lib.php:2143
|
750 |
+
#, php-format
|
751 |
+
msgid "Capability %s exists already"
|
752 |
+
msgstr "La capacité %s existe déjà"
|
753 |
+
|
754 |
+
#: ../includes/class-ure-lib.php:2168
|
755 |
+
#, php-format
|
756 |
+
msgid "Error! You do not have permission to delete this capability: %s!"
|
757 |
+
msgstr ""
|
758 |
+
"Erreur ! Vous n'avez pas la permission de supprimer cette capacité. %s !"
|
759 |
+
|
760 |
+
#: ../includes/class-ure-lib.php:2187
|
761 |
+
#, php-format
|
762 |
+
msgid "Capability %s is removed successfully"
|
763 |
+
msgstr "La capacité %s à bien été supprimée "
|
764 |
+
|
765 |
+
#: ../includes/class-ure-lib.php:2291
|
766 |
+
msgid "Version:"
|
767 |
+
msgstr "Version :"
|
768 |
+
|
769 |
+
#: ../includes/class-ure-lib.php:2292
|
770 |
+
msgid "Author's website"
|
771 |
+
msgstr "Site internet de l'auteur"
|
772 |
+
|
773 |
+
#: ../includes/class-ure-lib.php:2293
|
774 |
+
msgid "Plugin webpage"
|
775 |
+
msgstr "Page web de l'extension"
|
776 |
+
|
777 |
+
#: ../includes/class-ure-lib.php:2294
|
778 |
+
msgid "Plugin download"
|
779 |
+
msgstr "Téléchargement de l'extension"
|
780 |
+
|
781 |
+
#: ../includes/class-ure-lib.php:2296
|
782 |
+
msgid "FAQ"
|
783 |
+
msgstr "FAQ"
|
784 |
+
|
785 |
+
#: ../includes/class-ure-lib.php:2344
|
786 |
+
msgid "None"
|
787 |
+
msgstr "Aucun"
|
788 |
+
|
789 |
+
#: ../includes/class-ure-lib.php:2371
|
790 |
+
msgid "Delete All Unused Roles"
|
791 |
+
msgstr "Supprimer tous les rôles inutilisés "
|
792 |
+
|
793 |
+
#: ../includes/class-ure-lib.php:2395
|
794 |
+
msgid "— No role for this site —"
|
795 |
+
msgstr "— Pas de rôle sur ce site —"
|
796 |
+
|
797 |
+
#: ../includes/ure-user-edit.php:31
|
798 |
+
msgid "Network Super Admin"
|
799 |
+
msgstr "Super Administrateur du réseau"
|
800 |
+
|
801 |
+
#: ../includes/ure-user-edit.php:34
|
802 |
+
msgid "Change capabilities for user"
|
803 |
+
msgstr "Changer les capacité pour l'utilisateur"
|
804 |
+
|
805 |
+
#: ../includes/ure-user-edit.php:71
|
806 |
+
msgid "Primary Role:"
|
807 |
+
msgstr "Rôle primaire : "
|
808 |
+
|
809 |
+
#: ../includes/ure-user-edit.php:81
|
810 |
+
msgid "bbPress Role:"
|
811 |
+
msgstr "Rôle bbPress : "
|
812 |
+
|
813 |
+
#: ../includes/ure-user-edit.php:91
|
814 |
+
msgid "Other Roles:"
|
815 |
+
msgstr "Autres rôles :"
|
816 |
+
|
817 |
+
#: ../includes/class-ure-screen-help.php:16
|
818 |
+
msgid ""
|
819 |
+
"turn this option on in order to make the \"Administrator\" role available at "
|
820 |
+
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
821 |
+
"for security reasons."
|
822 |
+
msgstr ""
|
823 |
+
"activer cette option pour rendre le rôle \"Administrateur\" disponible dans "
|
824 |
+
"la liste de sélection de User Role Editor. Cela est caché par défaut pour "
|
825 |
+
"des raisons de sécurité."
|
826 |
+
|
827 |
+
#: ../includes/class-ure-screen-help.php:19
|
828 |
+
msgid ""
|
829 |
+
"automatically converts capability names from the technical form for internal "
|
830 |
+
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
831 |
+
"others posts\"."
|
832 |
+
msgstr ""
|
833 |
+
"converti automatiquement les noms techniques des capacités comme "
|
834 |
+
"\"modifier_autres_articles\" en une version plus lisible, p. ex. \"Modifier "
|
835 |
+
"autres articles\"."
|
836 |
+
|
837 |
+
#: ../includes/class-ure-screen-help.php:22
|
838 |
+
msgid ""
|
839 |
+
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
840 |
+
"by WordPress. They are left at the user roles for the compatibility purpose "
|
841 |
+
"with the old themes and plugins code. Turning on this option will show those "
|
842 |
+
"deprecated capabilities."
|
843 |
+
msgstr ""
|
844 |
+
"Les capacités de \"level_0\", \"level_1\" sont dépréciées et ne sont plus "
|
845 |
+
"utilisées par WordPress. Elles sont réglées au niveau utilisateur pour des "
|
846 |
+
"raisons de compatibilité avec les anciens thèmes et extensions. Activer "
|
847 |
+
"cette option affichera ces capacités dépréciées."
|
848 |
+
|
849 |
+
#: ../includes/class-ure-screen-help.php:42
|
850 |
+
msgid ""
|
851 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
852 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
853 |
+
"users list with role \"No rights\" at the separate tab then."
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: ../includes/class-ure-screen-help.php:59
|
857 |
+
msgid "Other default roles for new registered user"
|
858 |
+
msgstr "Autres rôles par défaut pour les nouveaux utilisateurs enregistrés"
|
859 |
+
|
860 |
+
#: ../includes/class-ure-screen-help.php:60
|
861 |
+
msgid ""
|
862 |
+
"select roles below to assign them to the new user automatically as an "
|
863 |
+
"addition to the primary role. Note for multisite environment: take into "
|
864 |
+
"account that other default roles should exist at the site, in order to be "
|
865 |
+
"assigned to the new registered users."
|
866 |
+
msgstr ""
|
867 |
+
"sélectionner les rôles ci-dessous a assigner automatiquement aux nouveaux "
|
868 |
+
"utilisateurs en plus de leur rôle premier. Remarque pour les environnements "
|
869 |
+
"multisite : Prenez en considération que d'autres rôles par défauts doivent "
|
870 |
+
"exister sur le site, afin qu'ils soient assignés aux nouveaux utilisateurs "
|
871 |
+
"enregistrés."
|
872 |
+
|
873 |
+
#: ../includes/class-ure-screen-help.php:78
|
874 |
+
msgid "Allow non super-admininstrators to create, edit and delete users"
|
875 |
+
msgstr ""
|
876 |
+
"Autoriser les utilisateurs qui ne sont pas super-administrateurs à créer, "
|
877 |
+
"modifier ou supprimer des utilisateurs"
|
878 |
+
|
879 |
+
#: ../includes/class-ure-screen-help.php:79
|
880 |
+
msgid ""
|
881 |
+
"Super administrator only may create, edit and delete users under WordPress "
|
882 |
+
"multi-site by default. Turn this option on in order to remove this "
|
883 |
+
"limitation."
|
884 |
+
msgstr ""
|
885 |
+
"Seul le Super Administrateur peut créer, modifier ou supprimer des "
|
886 |
+
"utilisateurs sur des installations WordPress multisite par défaut. Activer "
|
887 |
+
"cette option pour supprimer cette limitation."
|
888 |
+
|
889 |
+
#~ msgid "select roles below"
|
890 |
+
#~ msgstr "sélectionner le rôle ci-dessous"
|
lang/ure-he_IL.mo
CHANGED
Binary file
|
lang/ure-he_IL.po
CHANGED
@@ -5,9 +5,9 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
-
"POT-Creation-Date: 2014-10-
|
9 |
"PO-Revision-Date: \n"
|
10 |
-
"Last-Translator: Vladimir Garagulya <
|
11 |
"Language-Team: Ahrale, Atar4U.com <contact@atar4u.com>\n"
|
12 |
"Language: Hebrew עברית he_IL\n"
|
13 |
"MIME-Version: 1.0\n"
|
@@ -46,7 +46,7 @@ msgid "Default Roles"
|
|
46 |
msgstr "תפקיד ברירת מחדל"
|
47 |
|
48 |
#: ../includes/settings-template.php:34
|
49 |
-
#: ../includes/class-user-role-editor.php:
|
50 |
msgid "Multisite"
|
51 |
msgstr ""
|
52 |
|
@@ -91,7 +91,7 @@ msgid "Save"
|
|
91 |
msgstr "שמירה"
|
92 |
|
93 |
#: ../includes/settings-template.php:102
|
94 |
-
#: ../includes/class-ure-screen-help.php:
|
95 |
msgid "Count users without role"
|
96 |
msgstr ""
|
97 |
|
@@ -156,7 +156,7 @@ msgstr "הגדרות"
|
|
156 |
# }
|
157 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
158 |
#: ../includes/class-user-role-editor.php:525
|
159 |
-
#: ../includes/class-ure-lib.php:
|
160 |
msgid "Changelog"
|
161 |
msgstr "יומן שינויים"
|
162 |
|
@@ -164,10 +164,10 @@ msgstr "יומן שינויים"
|
|
164 |
# esc_html__('User Role Editor', 'ure'),
|
165 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
166 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
-
#: ../includes/class-user-role-editor.php:
|
170 |
-
#: ../includes/class-ure-lib.php:
|
171 |
msgid "User Role Editor"
|
172 |
msgstr "User Role Editor"
|
173 |
|
@@ -175,9 +175,9 @@ msgstr "User Role Editor"
|
|
175 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
176 |
# } else { // get options from the options storage
|
177 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "User Role Editor options are updated"
|
182 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
183 |
|
@@ -185,18 +185,18 @@ msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
|
185 |
# 'default_role' => __('Default Role', 'ure'),
|
186 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
187 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
#, fuzzy
|
190 |
msgid "Default Roles are updated"
|
191 |
msgstr "תפקיד ברירת מחדל"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid ""
|
195 |
"You do not have sufficient permissions to manage options for User Role "
|
196 |
"Editor."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: ../includes/class-user-role-editor.php:
|
200 |
msgid "Insufficient permissions to work with User Role Editor"
|
201 |
msgstr ""
|
202 |
|
@@ -204,7 +204,7 @@ msgstr ""
|
|
204 |
# 'select_all' => __('Select All', 'ure'),
|
205 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
206 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Select All"
|
209 |
msgstr "בחירת הכל"
|
210 |
|
@@ -212,7 +212,7 @@ msgstr "בחירת הכל"
|
|
212 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
213 |
# 'reverse' => __('Reverse', 'ure'),
|
214 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Unselect All"
|
217 |
msgstr "לא לבחור שום דבר"
|
218 |
|
@@ -220,7 +220,7 @@ msgstr "לא לבחור שום דבר"
|
|
220 |
# 'reverse' => __('Reverse', 'ure'),
|
221 |
# 'update' => __('Update', 'ure'),
|
222 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Reverse"
|
225 |
msgstr "להפוך"
|
226 |
|
@@ -228,7 +228,7 @@ msgstr "להפוך"
|
|
228 |
# 'update' => __('Update', 'ure'),
|
229 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
230 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
231 |
-
#: ../includes/class-user-role-editor.php:
|
232 |
msgid "Update"
|
233 |
msgstr "עדכן"
|
234 |
|
@@ -236,7 +236,7 @@ msgstr "עדכן"
|
|
236 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
237 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
238 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
239 |
-
#: ../includes/class-user-role-editor.php:
|
240 |
msgid "Please confirm permissions update"
|
241 |
msgstr "נא לאשר את עדכון ההרשאות"
|
242 |
|
@@ -244,7 +244,7 @@ msgstr "נא לאשר את עדכון ההרשאות"
|
|
244 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
245 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
246 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
247 |
-
#: ../includes/class-user-role-editor.php:
|
248 |
msgid "Add New Role"
|
249 |
msgstr "הוסף סוג משתמש חדש"
|
250 |
|
@@ -252,8 +252,8 @@ msgstr "הוסף סוג משתמש חדש"
|
|
252 |
# 'delete_role' => __('Delete Role', 'ure'),
|
253 |
# 'cancel' => __('Cancel', 'ure'),
|
254 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
#, fuzzy
|
258 |
msgid "Rename Role"
|
259 |
msgstr "מחיקת סוג משתמש"
|
@@ -262,7 +262,7 @@ msgstr "מחיקת סוג משתמש"
|
|
262 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
263 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
264 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
265 |
-
#: ../includes/class-user-role-editor.php:
|
266 |
msgid " Role name (ID) can not be empty!"
|
267 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
268 |
|
@@ -270,14 +270,14 @@ msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
|
270 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
271 |
# 'add_role' => __('Add Role', 'ure'),
|
272 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
273 |
-
#: ../includes/class-user-role-editor.php:
|
274 |
msgid ""
|
275 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
276 |
"only!"
|
277 |
msgstr ""
|
278 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
msgid ""
|
282 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
283 |
"it."
|
@@ -287,7 +287,7 @@ msgstr ""
|
|
287 |
# 'add_role' => __('Add Role', 'ure'),
|
288 |
# 'delete_role' => __('Delete Role', 'ure'),
|
289 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
290 |
-
#: ../includes/class-user-role-editor.php:
|
291 |
msgid "Add Role"
|
292 |
msgstr "הוספת תפקיד"
|
293 |
|
@@ -295,7 +295,7 @@ msgstr "הוספת תפקיד"
|
|
295 |
# 'delete_role' => __('Delete Role', 'ure'),
|
296 |
# 'cancel' => __('Cancel', 'ure'),
|
297 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
298 |
-
#: ../includes/class-user-role-editor.php:
|
299 |
msgid "Delete Role"
|
300 |
msgstr "מחיקת סוג משתמש"
|
301 |
|
@@ -303,7 +303,7 @@ msgstr "מחיקת סוג משתמש"
|
|
303 |
# 'cancel' => __('Cancel', 'ure'),
|
304 |
# 'add_capability' => __('Add Capability', 'ure'),
|
305 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
306 |
-
#: ../includes/class-user-role-editor.php:
|
307 |
msgid "Cancel"
|
308 |
msgstr "ביטול"
|
309 |
|
@@ -311,7 +311,7 @@ msgstr "ביטול"
|
|
311 |
# 'add_capability' => __('Add Capability', 'ure'),
|
312 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
313 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
314 |
-
#: ../includes/class-user-role-editor.php:
|
315 |
msgid "Add Capability"
|
316 |
msgstr "הוספת יכולת"
|
317 |
|
@@ -319,8 +319,8 @@ msgstr "הוספת יכולת"
|
|
319 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
320 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
321 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
322 |
-
#: ../includes/class-user-role-editor.php:
|
323 |
-
#: ../includes/class-user-role-editor.php:
|
324 |
msgid "Delete Capability"
|
325 |
msgstr "מחיקת יכולת"
|
326 |
|
@@ -328,21 +328,21 @@ msgstr "מחיקת יכולת"
|
|
328 |
# 'reset' => __('Reset', 'ure'),
|
329 |
# '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'),
|
330 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
331 |
-
#: ../includes/class-user-role-editor.php:
|
332 |
msgid "Reset"
|
333 |
msgstr "איפוס"
|
334 |
|
335 |
-
#: ../includes/class-user-role-editor.php:
|
336 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../includes/class-user-role-editor.php:
|
340 |
msgid ""
|
341 |
"If any plugins have changed capabilities in any way upon installation (such "
|
342 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ../includes/class-user-role-editor.php:
|
346 |
msgid ""
|
347 |
"For more information on how to undo changes and restore plugin capabilities "
|
348 |
"go to"
|
@@ -352,7 +352,7 @@ msgstr ""
|
|
352 |
# __('Contributor', 'ure');
|
353 |
# __('Subscriber', 'ure');
|
354 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
355 |
-
#: ../includes/class-user-role-editor.php:
|
356 |
msgid "Continue?"
|
357 |
msgstr ""
|
358 |
|
@@ -360,7 +360,7 @@ msgstr ""
|
|
360 |
# 'default_role' => __('Default Role', 'ure'),
|
361 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
362 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
363 |
-
#: ../includes/class-user-role-editor.php:
|
364 |
msgid "Default Role"
|
365 |
msgstr "תפקיד ברירת מחדל"
|
366 |
|
@@ -368,7 +368,7 @@ msgstr "תפקיד ברירת מחדל"
|
|
368 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
369 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
370 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
371 |
-
#: ../includes/class-user-role-editor.php:
|
372 |
msgid "Set New Default Role"
|
373 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
374 |
|
@@ -376,7 +376,7 @@ msgstr "הגדר תפקיד ברירת מחדל חדש"
|
|
376 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
377 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
378 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
379 |
-
#: ../includes/class-user-role-editor.php:
|
380 |
msgid ""
|
381 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
382 |
"or other custom code"
|
@@ -388,7 +388,7 @@ msgstr ""
|
|
388 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
389 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
390 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
391 |
-
#: ../includes/class-user-role-editor.php:
|
392 |
msgid " Capability name (ID) can not be empty!"
|
393 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
394 |
|
@@ -396,7 +396,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
396 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
397 |
# ) );
|
398 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
399 |
-
#: ../includes/class-user-role-editor.php:
|
400 |
msgid ""
|
401 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
402 |
"underscore only!"
|
@@ -407,8 +407,8 @@ msgstr ""
|
|
407 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
408 |
# <td>
|
409 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
410 |
-
#: ../includes/class-user-role-editor.php:
|
411 |
-
#: ../includes/class-user-role-editor.php:
|
412 |
msgid "Other Roles"
|
413 |
msgstr "תפקידים אחרים"
|
414 |
|
@@ -416,7 +416,7 @@ msgstr "תפקידים אחרים"
|
|
416 |
# 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>';
|
417 |
# ?>
|
418 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
419 |
-
#: ../includes/class-user-role-editor.php:
|
420 |
msgid "Edit"
|
421 |
msgstr "עריכה"
|
422 |
|
@@ -466,7 +466,7 @@ msgstr "יכולות"
|
|
466 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
467 |
# return false;
|
468 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Error: wrong request"
|
471 |
msgstr "שגיאה: בקשה מוטעית"
|
472 |
|
@@ -474,16 +474,16 @@ msgstr "שגיאה: בקשה מוטעית"
|
|
474 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
475 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
476 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
#, fuzzy
|
479 |
msgid "Role name (ID): "
|
480 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
481 |
|
482 |
-
#: ../includes/class-ure-lib.php:
|
483 |
msgid "Display Role Name: "
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: ../includes/class-ure-lib.php:
|
487 |
msgid "Make copy of: "
|
488 |
msgstr ""
|
489 |
|
@@ -491,7 +491,7 @@ msgstr ""
|
|
491 |
# 'delete_role' => __('Delete Role', 'ure'),
|
492 |
# 'cancel' => __('Cancel', 'ure'),
|
493 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
494 |
-
#: ../includes/class-ure-lib.php:
|
495 |
#, fuzzy
|
496 |
msgid "Select Role:"
|
497 |
msgstr "מחיקת סוג משתמש"
|
@@ -500,7 +500,7 @@ msgstr "מחיקת סוג משתמש"
|
|
500 |
# 'delete_role' => __('Delete Role', 'ure'),
|
501 |
# 'cancel' => __('Cancel', 'ure'),
|
502 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
#, fuzzy
|
505 |
msgid "Delete:"
|
506 |
msgstr "מחיקת סוג משתמש"
|
@@ -509,7 +509,7 @@ msgstr "מחיקת סוג משתמש"
|
|
509 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
510 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
511 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
#, fuzzy
|
514 |
msgid "Capability name (ID): "
|
515 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
@@ -518,7 +518,7 @@ msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
|
518 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
519 |
# $this->current_role = '';
|
520 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Error: "
|
523 |
msgstr "שגיאה:"
|
524 |
|
@@ -526,7 +526,7 @@ msgstr "שגיאה:"
|
|
526 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
527 |
# $this->current_role = '';
|
528 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Role"
|
531 |
msgstr "סוג משתמש:"
|
532 |
|
@@ -534,7 +534,7 @@ msgstr "סוג משתמש:"
|
|
534 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
535 |
# $this->current_role = '';
|
536 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "does not exist"
|
539 |
msgstr "לא נמצא"
|
540 |
|
@@ -542,7 +542,7 @@ msgstr "לא נמצא"
|
|
542 |
# $mess = __('Role is updated successfully', 'ure');
|
543 |
# } else {
|
544 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Role is updated successfully"
|
547 |
msgstr "התפקיד עודכן בהצלחה"
|
548 |
|
@@ -550,7 +550,7 @@ msgstr "התפקיד עודכן בהצלחה"
|
|
550 |
# $mess = __('Roles are updated for all network', 'ure');
|
551 |
# }
|
552 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Roles are updated for all network"
|
555 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
556 |
|
@@ -558,7 +558,7 @@ msgstr "התפקידים עודכנו עבור כל הרשת"
|
|
558 |
# $mess = __('Error occured during role(s) update', 'ure');
|
559 |
# }
|
560 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Error occured during role(s) update"
|
563 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
564 |
|
@@ -566,7 +566,7 @@ msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
|
566 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
567 |
# } else {
|
568 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "User capabilities are updated successfully"
|
571 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
572 |
|
@@ -574,7 +574,7 @@ msgstr "יכולות המשתמש עודכנו בהצלחה"
|
|
574 |
# $mess = __('Error occured during user update', 'ure');
|
575 |
# }
|
576 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Error occured during user update"
|
579 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
580 |
|
@@ -582,7 +582,7 @@ msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
|
582 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
583 |
# } else if ($action == 'update') {
|
584 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "User Roles are restored to WordPress default values. "
|
587 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
588 |
|
@@ -590,7 +590,7 @@ msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל ש
|
|
590 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
591 |
# } else {
|
592 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Help"
|
595 |
msgstr "עזרה"
|
596 |
|
@@ -598,7 +598,7 @@ msgstr "עזרה"
|
|
598 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
599 |
# }
|
600 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Error is occur. Please check the log file."
|
603 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
604 |
|
@@ -606,14 +606,14 @@ msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
|
606 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
607 |
# }
|
608 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid ""
|
611 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
612 |
"only!"
|
613 |
msgstr ""
|
614 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid ""
|
618 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
619 |
"characters to it."
|
@@ -623,7 +623,7 @@ msgstr ""
|
|
623 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
624 |
# }
|
625 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
626 |
-
#: ../includes/class-ure-lib.php:
|
627 |
#, php-format
|
628 |
msgid "Role %s exists already"
|
629 |
msgstr "סוג המשתמש %s כבר קיים"
|
@@ -632,7 +632,7 @@ msgstr "סוג המשתמש %s כבר קיים"
|
|
632 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
633 |
# } else {
|
634 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Error is encountered during new role create operation"
|
637 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
638 |
|
@@ -640,16 +640,16 @@ msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
|
640 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
641 |
# }
|
642 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
#, php-format
|
645 |
msgid "Role %s is created successfully"
|
646 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Error: Role ID is empty!"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Error: Empty role display name is not allowed."
|
654 |
msgstr ""
|
655 |
|
@@ -657,7 +657,7 @@ msgstr ""
|
|
657 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
658 |
# $this->current_role = '';
|
659 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
#, fuzzy, php-format
|
662 |
msgid "Role %s does not exists"
|
663 |
msgstr "לא נמצא"
|
@@ -666,7 +666,7 @@ msgstr "לא נמצא"
|
|
666 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
667 |
# }
|
668 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
#, fuzzy, php-format
|
671 |
msgid "Role %s is renamed to %s successfully"
|
672 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
@@ -675,7 +675,7 @@ msgstr "סוג המשתמש %s נוצר בהצלחה"
|
|
675 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
676 |
# } else {
|
677 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
678 |
-
#: ../includes/class-ure-lib.php:
|
679 |
msgid "Error encountered during role delete operation"
|
680 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
681 |
|
@@ -683,7 +683,7 @@ msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המ
|
|
683 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
684 |
# }
|
685 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
686 |
-
#: ../includes/class-ure-lib.php:
|
687 |
msgid "Unused roles are deleted successfully"
|
688 |
msgstr ""
|
689 |
|
@@ -691,7 +691,7 @@ msgstr ""
|
|
691 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
692 |
# }
|
693 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
694 |
-
#: ../includes/class-ure-lib.php:
|
695 |
#, php-format
|
696 |
msgid "Role %s is deleted successfully"
|
697 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
@@ -700,7 +700,7 @@ msgstr "סוג המשתמש %s נמחק בהצלחה"
|
|
700 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
701 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
702 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Error encountered during default role change operation"
|
705 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
706 |
|
@@ -708,7 +708,7 @@ msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמ
|
|
708 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
709 |
# }
|
710 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
#, php-format
|
713 |
msgid "Default role for new users is set to %s successfully"
|
714 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
@@ -717,7 +717,7 @@ msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
|
717 |
# __('Editor', 'ure');
|
718 |
# __('Author', 'ure');
|
719 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Editor"
|
722 |
msgstr "עורך"
|
723 |
|
@@ -725,7 +725,7 @@ msgstr "עורך"
|
|
725 |
# __('Author', 'ure');
|
726 |
# __('Contributor', 'ure');
|
727 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Author"
|
730 |
msgstr "כותב"
|
731 |
|
@@ -733,7 +733,7 @@ msgstr "כותב"
|
|
733 |
# __('Contributor', 'ure');
|
734 |
# __('Subscriber', 'ure');
|
735 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
msgid "Contributor"
|
738 |
msgstr "תורם"
|
739 |
|
@@ -741,7 +741,7 @@ msgstr "תורם"
|
|
741 |
# __('Subscriber', 'ure');
|
742 |
# // Standard WordPress capabilities
|
743 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Subscriber"
|
746 |
msgstr "מנוי"
|
747 |
|
@@ -749,7 +749,7 @@ msgstr "מנוי"
|
|
749 |
# __('Switch themes', 'ure');
|
750 |
# __('Edit themes', 'ure');
|
751 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Switch themes"
|
754 |
msgstr "החלפת תבניות"
|
755 |
|
@@ -757,7 +757,7 @@ msgstr "החלפת תבניות"
|
|
757 |
# __('Edit themes', 'ure');
|
758 |
# __('Activate plugins', 'ure');
|
759 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
msgid "Edit themes"
|
762 |
msgstr "עריכת תבניות"
|
763 |
|
@@ -765,7 +765,7 @@ msgstr "עריכת תבניות"
|
|
765 |
# __('Activate plugins', 'ure');
|
766 |
# __('Edit plugins', 'ure');
|
767 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
768 |
-
#: ../includes/class-ure-lib.php:
|
769 |
msgid "Activate plugins"
|
770 |
msgstr "הפעלת תוספים"
|
771 |
|
@@ -773,7 +773,7 @@ msgstr "הפעלת תוספים"
|
|
773 |
# __('Edit plugins', 'ure');
|
774 |
# __('Edit users', 'ure');
|
775 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
776 |
-
#: ../includes/class-ure-lib.php:
|
777 |
msgid "Edit plugins"
|
778 |
msgstr "עריכת תוספים"
|
779 |
|
@@ -781,7 +781,7 @@ msgstr "עריכת תוספים"
|
|
781 |
# __('Edit users', 'ure');
|
782 |
# __('Edit files', 'ure');
|
783 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
784 |
-
#: ../includes/class-ure-lib.php:
|
785 |
msgid "Edit users"
|
786 |
msgstr "עריכת משתמשים"
|
787 |
|
@@ -789,7 +789,7 @@ msgstr "עריכת משתמשים"
|
|
789 |
# __('Edit files', 'ure');
|
790 |
# __('Manage options', 'ure');
|
791 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
792 |
-
#: ../includes/class-ure-lib.php:
|
793 |
msgid "Edit files"
|
794 |
msgstr "עריכת קבצים"
|
795 |
|
@@ -797,7 +797,7 @@ msgstr "עריכת קבצים"
|
|
797 |
# __('Manage options', 'ure');
|
798 |
# __('Moderate comments', 'ure');
|
799 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
800 |
-
#: ../includes/class-ure-lib.php:
|
801 |
msgid "Manage options"
|
802 |
msgstr "ניהול אפשרויות אתר"
|
803 |
|
@@ -805,7 +805,7 @@ msgstr "ניהול אפשרויות אתר"
|
|
805 |
# __('Moderate comments', 'ure');
|
806 |
# __('Manage categories', 'ure');
|
807 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
808 |
-
#: ../includes/class-ure-lib.php:
|
809 |
msgid "Moderate comments"
|
810 |
msgstr "ניהול תגובות"
|
811 |
|
@@ -813,7 +813,7 @@ msgstr "ניהול תגובות"
|
|
813 |
# __('Manage categories', 'ure');
|
814 |
# __('Manage links', 'ure');
|
815 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
816 |
-
#: ../includes/class-ure-lib.php:
|
817 |
msgid "Manage categories"
|
818 |
msgstr "ניהול קטגוריות"
|
819 |
|
@@ -821,7 +821,7 @@ msgstr "ניהול קטגוריות"
|
|
821 |
# __('Manage links', 'ure');
|
822 |
# __('Upload files', 'ure');
|
823 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
824 |
-
#: ../includes/class-ure-lib.php:
|
825 |
msgid "Manage links"
|
826 |
msgstr "ניהול קישורים"
|
827 |
|
@@ -829,7 +829,7 @@ msgstr "ניהול קישורים"
|
|
829 |
# __('Upload files', 'ure');
|
830 |
# __('Import', 'ure');
|
831 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
832 |
-
#: ../includes/class-ure-lib.php:
|
833 |
msgid "Upload files"
|
834 |
msgstr "העלאת קבצים"
|
835 |
|
@@ -837,7 +837,7 @@ msgstr "העלאת קבצים"
|
|
837 |
# __('Import', 'ure');
|
838 |
# __('Unfiltered html', 'ure');
|
839 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
840 |
-
#: ../includes/class-ure-lib.php:
|
841 |
msgid "Import"
|
842 |
msgstr "יבוא"
|
843 |
|
@@ -845,7 +845,7 @@ msgstr "יבוא"
|
|
845 |
# __('Unfiltered html', 'ure');
|
846 |
# __('Edit posts', 'ure');
|
847 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
848 |
-
#: ../includes/class-ure-lib.php:
|
849 |
msgid "Unfiltered html"
|
850 |
msgstr "עריכת HTML"
|
851 |
|
@@ -853,7 +853,7 @@ msgstr "עריכת HTML"
|
|
853 |
# __('Edit posts', 'ure');
|
854 |
# __('Edit others posts', 'ure');
|
855 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
856 |
-
#: ../includes/class-ure-lib.php:
|
857 |
msgid "Edit posts"
|
858 |
msgstr "עריכת פוסטים"
|
859 |
|
@@ -861,7 +861,7 @@ msgstr "עריכת פוסטים"
|
|
861 |
# __('Edit others posts', 'ure');
|
862 |
# __('Edit published posts', 'ure');
|
863 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
864 |
-
#: ../includes/class-ure-lib.php:
|
865 |
msgid "Edit others posts"
|
866 |
msgstr "עריכת פוסטים של אחרים"
|
867 |
|
@@ -869,7 +869,7 @@ msgstr "עריכת פוסטים של אחרים"
|
|
869 |
# __('Edit published posts', 'ure');
|
870 |
# __('Publish posts', 'ure');
|
871 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
872 |
-
#: ../includes/class-ure-lib.php:
|
873 |
msgid "Edit published posts"
|
874 |
msgstr "עריכת פוסטים שפורסמו"
|
875 |
|
@@ -877,7 +877,7 @@ msgstr "עריכת פוסטים שפורסמו"
|
|
877 |
# __('Publish posts', 'ure');
|
878 |
# __('Edit pages', 'ure');
|
879 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
880 |
-
#: ../includes/class-ure-lib.php:
|
881 |
msgid "Publish posts"
|
882 |
msgstr "פוסטים שפורסמו"
|
883 |
|
@@ -885,7 +885,7 @@ msgstr "פוסטים שפורסמו"
|
|
885 |
# __('Edit pages', 'ure');
|
886 |
# __('Read', 'ure');
|
887 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
888 |
-
#: ../includes/class-ure-lib.php:
|
889 |
msgid "Edit pages"
|
890 |
msgstr "עריכת עמודים"
|
891 |
|
@@ -893,7 +893,7 @@ msgstr "עריכת עמודים"
|
|
893 |
# __('Read', 'ure');
|
894 |
# __('Level 10', 'ure');
|
895 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
896 |
-
#: ../includes/class-ure-lib.php:
|
897 |
msgid "Read"
|
898 |
msgstr "קורא"
|
899 |
|
@@ -901,7 +901,7 @@ msgstr "קורא"
|
|
901 |
# __('Level 10', 'ure');
|
902 |
# __('Level 9', 'ure');
|
903 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
904 |
-
#: ../includes/class-ure-lib.php:
|
905 |
msgid "Level 10"
|
906 |
msgstr "דרגה 10"
|
907 |
|
@@ -909,7 +909,7 @@ msgstr "דרגה 10"
|
|
909 |
# __('Level 9', 'ure');
|
910 |
# __('Level 8', 'ure');
|
911 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
912 |
-
#: ../includes/class-ure-lib.php:
|
913 |
msgid "Level 9"
|
914 |
msgstr "דרגה 9"
|
915 |
|
@@ -917,7 +917,7 @@ msgstr "דרגה 9"
|
|
917 |
# __('Level 8', 'ure');
|
918 |
# __('Level 7', 'ure');
|
919 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
920 |
-
#: ../includes/class-ure-lib.php:
|
921 |
msgid "Level 8"
|
922 |
msgstr "דרגה 8"
|
923 |
|
@@ -925,7 +925,7 @@ msgstr "דרגה 8"
|
|
925 |
# __('Level 7', 'ure');
|
926 |
# __('Level 6', 'ure');
|
927 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
928 |
-
#: ../includes/class-ure-lib.php:
|
929 |
msgid "Level 7"
|
930 |
msgstr "דרגה 7"
|
931 |
|
@@ -933,7 +933,7 @@ msgstr "דרגה 7"
|
|
933 |
# __('Level 6', 'ure');
|
934 |
# __('Level 5', 'ure');
|
935 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
936 |
-
#: ../includes/class-ure-lib.php:
|
937 |
msgid "Level 6"
|
938 |
msgstr "דרגה 6"
|
939 |
|
@@ -941,7 +941,7 @@ msgstr "דרגה 6"
|
|
941 |
# __('Level 5', 'ure');
|
942 |
# __('Level 4', 'ure');
|
943 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
944 |
-
#: ../includes/class-ure-lib.php:
|
945 |
msgid "Level 5"
|
946 |
msgstr "דרגה 5"
|
947 |
|
@@ -949,7 +949,7 @@ msgstr "דרגה 5"
|
|
949 |
# __('Level 4', 'ure');
|
950 |
# __('Level 3', 'ure');
|
951 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
952 |
-
#: ../includes/class-ure-lib.php:
|
953 |
msgid "Level 4"
|
954 |
msgstr "דרגה 4"
|
955 |
|
@@ -957,7 +957,7 @@ msgstr "דרגה 4"
|
|
957 |
# __('Level 3', 'ure');
|
958 |
# __('Level 2', 'ure');
|
959 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
960 |
-
#: ../includes/class-ure-lib.php:
|
961 |
msgid "Level 3"
|
962 |
msgstr "דרגה 3"
|
963 |
|
@@ -965,7 +965,7 @@ msgstr "דרגה 3"
|
|
965 |
# __('Level 2', 'ure');
|
966 |
# __('Level 1', 'ure');
|
967 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
968 |
-
#: ../includes/class-ure-lib.php:
|
969 |
msgid "Level 2"
|
970 |
msgstr "דרגה 2"
|
971 |
|
@@ -973,7 +973,7 @@ msgstr "דרגה 2"
|
|
973 |
# __('Level 1', 'ure');
|
974 |
# __('Level 0', 'ure');
|
975 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
976 |
-
#: ../includes/class-ure-lib.php:
|
977 |
msgid "Level 1"
|
978 |
msgstr "דרגה 1"
|
979 |
|
@@ -981,7 +981,7 @@ msgstr "דרגה 1"
|
|
981 |
# __('Level 0', 'ure');
|
982 |
# __('Edit others pages', 'ure');
|
983 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
984 |
-
#: ../includes/class-ure-lib.php:
|
985 |
msgid "Level 0"
|
986 |
msgstr "דרגה 0"
|
987 |
|
@@ -989,7 +989,7 @@ msgstr "דרגה 0"
|
|
989 |
# __('Edit others pages', 'ure');
|
990 |
# __('Edit published pages', 'ure');
|
991 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
992 |
-
#: ../includes/class-ure-lib.php:
|
993 |
msgid "Edit others pages"
|
994 |
msgstr "עריכת דפים של אחרים"
|
995 |
|
@@ -997,7 +997,7 @@ msgstr "עריכת דפים של אחרים"
|
|
997 |
# __('Edit published pages', 'ure');
|
998 |
# __('Publish pages', 'ure');
|
999 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1000 |
-
#: ../includes/class-ure-lib.php:
|
1001 |
msgid "Edit published pages"
|
1002 |
msgstr "עריכת דפים שפורסמו"
|
1003 |
|
@@ -1005,7 +1005,7 @@ msgstr "עריכת דפים שפורסמו"
|
|
1005 |
# __('Publish pages', 'ure');
|
1006 |
# __('Delete pages', 'ure');
|
1007 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1008 |
-
#: ../includes/class-ure-lib.php:
|
1009 |
msgid "Publish pages"
|
1010 |
msgstr "פרסום דפים"
|
1011 |
|
@@ -1013,7 +1013,7 @@ msgstr "פרסום דפים"
|
|
1013 |
# __('Delete pages', 'ure');
|
1014 |
# __('Delete others pages', 'ure');
|
1015 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1016 |
-
#: ../includes/class-ure-lib.php:
|
1017 |
msgid "Delete pages"
|
1018 |
msgstr "מחיקת דפים"
|
1019 |
|
@@ -1021,7 +1021,7 @@ msgstr "מחיקת דפים"
|
|
1021 |
# __('Delete others pages', 'ure');
|
1022 |
# __('Delete published pages', 'ure');
|
1023 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1024 |
-
#: ../includes/class-ure-lib.php:
|
1025 |
msgid "Delete others pages"
|
1026 |
msgstr "מחיקת דפים של אחרים"
|
1027 |
|
@@ -1029,7 +1029,7 @@ msgstr "מחיקת דפים של אחרים"
|
|
1029 |
# __('Delete published pages', 'ure');
|
1030 |
# __('Delete posts', 'ure');
|
1031 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1032 |
-
#: ../includes/class-ure-lib.php:
|
1033 |
msgid "Delete published pages"
|
1034 |
msgstr "מחיקת דפים שפורסמו"
|
1035 |
|
@@ -1037,7 +1037,7 @@ msgstr "מחיקת דפים שפורסמו"
|
|
1037 |
# __('Delete posts', 'ure');
|
1038 |
# __('Delete others posts', 'ure');
|
1039 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1040 |
-
#: ../includes/class-ure-lib.php:
|
1041 |
msgid "Delete posts"
|
1042 |
msgstr "מחיקת פוסטים"
|
1043 |
|
@@ -1045,7 +1045,7 @@ msgstr "מחיקת פוסטים"
|
|
1045 |
# __('Delete others posts', 'ure');
|
1046 |
# __('Delete published posts', 'ure');
|
1047 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1048 |
-
#: ../includes/class-ure-lib.php:
|
1049 |
msgid "Delete others posts"
|
1050 |
msgstr "מחיקת פוסטים של אחרים"
|
1051 |
|
@@ -1053,7 +1053,7 @@ msgstr "מחיקת פוסטים של אחרים"
|
|
1053 |
# __('Delete published posts', 'ure');
|
1054 |
# __('Delete private posts', 'ure');
|
1055 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1056 |
-
#: ../includes/class-ure-lib.php:
|
1057 |
msgid "Delete published posts"
|
1058 |
msgstr "מחיקת פוסטים שפורסמו"
|
1059 |
|
@@ -1061,7 +1061,7 @@ msgstr "מחיקת פוסטים שפורסמו"
|
|
1061 |
# __('Delete private posts', 'ure');
|
1062 |
# __('Edit private posts', 'ure');
|
1063 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1064 |
-
#: ../includes/class-ure-lib.php:
|
1065 |
msgid "Delete private posts"
|
1066 |
msgstr "מחיקת פוסטים פרטיים"
|
1067 |
|
@@ -1069,7 +1069,7 @@ msgstr "מחיקת פוסטים פרטיים"
|
|
1069 |
# __('Edit private posts', 'ure');
|
1070 |
# __('Read private posts', 'ure');
|
1071 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1072 |
-
#: ../includes/class-ure-lib.php:
|
1073 |
msgid "Edit private posts"
|
1074 |
msgstr "עריכת פוסטים פרטיים"
|
1075 |
|
@@ -1077,7 +1077,7 @@ msgstr "עריכת פוסטים פרטיים"
|
|
1077 |
# __('Read private posts', 'ure');
|
1078 |
# __('Delete private pages', 'ure');
|
1079 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1080 |
-
#: ../includes/class-ure-lib.php:
|
1081 |
msgid "Read private posts"
|
1082 |
msgstr "קריאת פוסטים פרטיים"
|
1083 |
|
@@ -1085,7 +1085,7 @@ msgstr "קריאת פוסטים פרטיים"
|
|
1085 |
# __('Delete private pages', 'ure');
|
1086 |
# __('Edit private pages', 'ure');
|
1087 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1088 |
-
#: ../includes/class-ure-lib.php:
|
1089 |
msgid "Delete private pages"
|
1090 |
msgstr "מחיקת עמודים פרטיים"
|
1091 |
|
@@ -1093,7 +1093,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
1093 |
# __('Edit private pages', 'ure');
|
1094 |
# __('Read private pages', 'ure');
|
1095 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1096 |
-
#: ../includes/class-ure-lib.php:
|
1097 |
msgid "Edit private pages"
|
1098 |
msgstr "מחיקת עמודים פרטיים"
|
1099 |
|
@@ -1101,7 +1101,7 @@ msgstr "מחיקת עמודים פרטיים"
|
|
1101 |
# __('Read private pages', 'ure');
|
1102 |
# __('Delete users', 'ure');
|
1103 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1104 |
-
#: ../includes/class-ure-lib.php:
|
1105 |
msgid "Read private pages"
|
1106 |
msgstr "קריאת עמודים פרטיים"
|
1107 |
|
@@ -1109,7 +1109,7 @@ msgstr "קריאת עמודים פרטיים"
|
|
1109 |
# __('Delete users', 'ure');
|
1110 |
# __('Create users', 'ure');
|
1111 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1112 |
-
#: ../includes/class-ure-lib.php:
|
1113 |
msgid "Delete users"
|
1114 |
msgstr "מחיקת משתמשים"
|
1115 |
|
@@ -1117,7 +1117,7 @@ msgstr "מחיקת משתמשים"
|
|
1117 |
# __('Create users', 'ure');
|
1118 |
# __('Unfiltered upload', 'ure');
|
1119 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1120 |
-
#: ../includes/class-ure-lib.php:
|
1121 |
msgid "Create users"
|
1122 |
msgstr "יצירת משתמשים"
|
1123 |
|
@@ -1125,7 +1125,7 @@ msgstr "יצירת משתמשים"
|
|
1125 |
# __('Unfiltered upload', 'ure');
|
1126 |
# __('Edit dashboard', 'ure');
|
1127 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1128 |
-
#: ../includes/class-ure-lib.php:
|
1129 |
msgid "Unfiltered upload"
|
1130 |
msgstr "העלאת קבצים חופשית"
|
1131 |
|
@@ -1133,7 +1133,7 @@ msgstr "העלאת קבצים חופשית"
|
|
1133 |
# __('Edit dashboard', 'ure');
|
1134 |
# __('Update plugins', 'ure');
|
1135 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1136 |
-
#: ../includes/class-ure-lib.php:
|
1137 |
msgid "Edit dashboard"
|
1138 |
msgstr "שינוי לוח הבקרה"
|
1139 |
|
@@ -1141,7 +1141,7 @@ msgstr "שינוי לוח הבקרה"
|
|
1141 |
# __('Update plugins', 'ure');
|
1142 |
# __('Delete plugins', 'ure');
|
1143 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1144 |
-
#: ../includes/class-ure-lib.php:
|
1145 |
msgid "Update plugins"
|
1146 |
msgstr "עדכון תוספים"
|
1147 |
|
@@ -1149,7 +1149,7 @@ msgstr "עדכון תוספים"
|
|
1149 |
# __('Delete plugins', 'ure');
|
1150 |
# __('Install plugins', 'ure');
|
1151 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1152 |
-
#: ../includes/class-ure-lib.php:
|
1153 |
msgid "Delete plugins"
|
1154 |
msgstr "מחיקת תוספים"
|
1155 |
|
@@ -1157,7 +1157,7 @@ msgstr "מחיקת תוספים"
|
|
1157 |
# __('Install plugins', 'ure');
|
1158 |
# __('Update themes', 'ure');
|
1159 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1160 |
-
#: ../includes/class-ure-lib.php:
|
1161 |
msgid "Install plugins"
|
1162 |
msgstr "התקנת תוספים"
|
1163 |
|
@@ -1165,7 +1165,7 @@ msgstr "התקנת תוספים"
|
|
1165 |
# __('Update themes', 'ure');
|
1166 |
# __('Install themes', 'ure');
|
1167 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1168 |
-
#: ../includes/class-ure-lib.php:
|
1169 |
msgid "Update themes"
|
1170 |
msgstr "עדכון תבניות"
|
1171 |
|
@@ -1173,7 +1173,7 @@ msgstr "עדכון תבניות"
|
|
1173 |
# __('Install themes', 'ure');
|
1174 |
# __('Update core', 'ure');
|
1175 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1176 |
-
#: ../includes/class-ure-lib.php:
|
1177 |
msgid "Install themes"
|
1178 |
msgstr "התקנת תבניות חדשות"
|
1179 |
|
@@ -1181,7 +1181,7 @@ msgstr "התקנת תבניות חדשות"
|
|
1181 |
# __('Update core', 'ure');
|
1182 |
# __('List users', 'ure');
|
1183 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1184 |
-
#: ../includes/class-ure-lib.php:
|
1185 |
msgid "Update core"
|
1186 |
msgstr "עדכון וורדפרס"
|
1187 |
|
@@ -1189,7 +1189,7 @@ msgstr "עדכון וורדפרס"
|
|
1189 |
# __('List users', 'ure');
|
1190 |
# __('Remove users', 'ure');
|
1191 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1192 |
-
#: ../includes/class-ure-lib.php:
|
1193 |
msgid "List users"
|
1194 |
msgstr "בצפייה במשתמשים"
|
1195 |
|
@@ -1197,7 +1197,7 @@ msgstr "בצפייה במשתמשים"
|
|
1197 |
# __('Remove users', 'ure');
|
1198 |
# __('Add users', 'ure');
|
1199 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1200 |
-
#: ../includes/class-ure-lib.php:
|
1201 |
msgid "Remove users"
|
1202 |
msgstr "הסרת משתמשים"
|
1203 |
|
@@ -1205,7 +1205,7 @@ msgstr "הסרת משתמשים"
|
|
1205 |
# __('Add users', 'ure');
|
1206 |
# __('Promote users', 'ure');
|
1207 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1208 |
-
#: ../includes/class-ure-lib.php:
|
1209 |
msgid "Add users"
|
1210 |
msgstr "הוספת משתמשים"
|
1211 |
|
@@ -1213,7 +1213,7 @@ msgstr "הוספת משתמשים"
|
|
1213 |
# __('Promote users', 'ure');
|
1214 |
# __('Edit theme options', 'ure');
|
1215 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1216 |
-
#: ../includes/class-ure-lib.php:
|
1217 |
msgid "Promote users"
|
1218 |
msgstr "שינוי משתמשים"
|
1219 |
|
@@ -1221,7 +1221,7 @@ msgstr "שינוי משתמשים"
|
|
1221 |
# __('Edit theme options', 'ure');
|
1222 |
# __('Delete themes', 'ure');
|
1223 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1224 |
-
#: ../includes/class-ure-lib.php:
|
1225 |
msgid "Edit theme options"
|
1226 |
msgstr "עריכת אפשרויות התבנית"
|
1227 |
|
@@ -1229,7 +1229,7 @@ msgstr "עריכת אפשרויות התבנית"
|
|
1229 |
# __('Delete themes', 'ure');
|
1230 |
# __('Export', 'ure');
|
1231 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1232 |
-
#: ../includes/class-ure-lib.php:
|
1233 |
msgid "Delete themes"
|
1234 |
msgstr "מחיקת תבניות"
|
1235 |
|
@@ -1237,7 +1237,7 @@ msgstr "מחיקת תבניות"
|
|
1237 |
# __('Export', 'ure');
|
1238 |
# }
|
1239 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1240 |
-
#: ../includes/class-ure-lib.php:
|
1241 |
msgid "Export"
|
1242 |
msgstr "ייצוא תוכן"
|
1243 |
|
@@ -1245,7 +1245,7 @@ msgstr "ייצוא תוכן"
|
|
1245 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1246 |
# ;
|
1247 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1248 |
-
#: ../includes/class-ure-lib.php:
|
1249 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1250 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1251 |
|
@@ -1253,7 +1253,7 @@ msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגל
|
|
1253 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1254 |
# } else {
|
1255 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1256 |
-
#: ../includes/class-ure-lib.php:
|
1257 |
#, php-format
|
1258 |
msgid "Capability %s is added successfully"
|
1259 |
msgstr "היכולת %s נוספה בהצלחה"
|
@@ -1262,7 +1262,7 @@ msgstr "היכולת %s נוספה בהצלחה"
|
|
1262 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1263 |
# }
|
1264 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1265 |
-
#: ../includes/class-ure-lib.php:
|
1266 |
#, php-format
|
1267 |
msgid "Capability %s exists already"
|
1268 |
msgstr "כבר קיימת יכולת בשם %s"
|
@@ -1271,7 +1271,7 @@ msgstr "כבר קיימת יכולת בשם %s"
|
|
1271 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1272 |
# }
|
1273 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1274 |
-
#: ../includes/class-ure-lib.php:
|
1275 |
#, php-format
|
1276 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1277 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
@@ -1280,12 +1280,12 @@ msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
|
1280 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1281 |
# }
|
1282 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1283 |
-
#: ../includes/class-ure-lib.php:
|
1284 |
#, php-format
|
1285 |
msgid "Capability %s is removed successfully"
|
1286 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1287 |
|
1288 |
-
#: ../includes/class-ure-lib.php:
|
1289 |
msgid "Version:"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1293,7 +1293,7 @@ msgstr ""
|
|
1293 |
# <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>
|
1294 |
# <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>
|
1295 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1296 |
-
#: ../includes/class-ure-lib.php:
|
1297 |
msgid "Author's website"
|
1298 |
msgstr "אתר היוצר"
|
1299 |
|
@@ -1301,7 +1301,7 @@ msgstr "אתר היוצר"
|
|
1301 |
# <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>
|
1302 |
# <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>
|
1303 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1304 |
-
#: ../includes/class-ure-lib.php:
|
1305 |
msgid "Plugin webpage"
|
1306 |
msgstr "דף התוסף"
|
1307 |
|
@@ -1309,7 +1309,7 @@ msgstr "דף התוסף"
|
|
1309 |
# <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>
|
1310 |
# <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>
|
1311 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1312 |
-
#: ../includes/class-ure-lib.php:
|
1313 |
#, fuzzy
|
1314 |
msgid "Plugin download"
|
1315 |
msgstr "דף התוסף"
|
@@ -1318,7 +1318,7 @@ msgstr "דף התוסף"
|
|
1318 |
# <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>
|
1319 |
# <?php
|
1320 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1321 |
-
#: ../includes/class-ure-lib.php:
|
1322 |
msgid "FAQ"
|
1323 |
msgstr "שאלות נפוצות"
|
1324 |
|
@@ -1326,7 +1326,7 @@ msgstr "שאלות נפוצות"
|
|
1326 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1327 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1328 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1329 |
-
#: ../includes/class-ure-lib.php:
|
1330 |
msgid "None"
|
1331 |
msgstr "תרום"
|
1332 |
|
@@ -1334,11 +1334,11 @@ msgstr "תרום"
|
|
1334 |
#
|
1335 |
#
|
1336 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1337 |
-
#: ../includes/class-ure-lib.php:
|
1338 |
msgid "Delete All Unused Roles"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: ../includes/class-ure-lib.php:
|
1342 |
msgid "— No role for this site —"
|
1343 |
msgstr ""
|
1344 |
|
@@ -1397,20 +1397,18 @@ msgid ""
|
|
1397 |
"deprecated capabilities."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
msgid "select roles below"
|
1407 |
-
msgstr "לא לבחור שום דבר"
|
1408 |
|
1409 |
-
#: ../includes/class-ure-screen-help.php:
|
1410 |
msgid "Other default roles for new registered user"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: ../includes/class-ure-screen-help.php:
|
1414 |
msgid ""
|
1415 |
"select roles below to assign them to the new user automatically as an "
|
1416 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -1418,13 +1416,21 @@ msgid ""
|
|
1418 |
"assigned to the new registered users."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: ../includes/class-ure-screen-help.php:
|
1422 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: ../includes/class-ure-screen-help.php:
|
1426 |
msgid ""
|
1427 |
"Super administrator only may create, edit and delete users under WordPress "
|
1428 |
"multi-site by default. Turn this option on in order to remove this "
|
1429 |
"limitation."
|
1430 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2014-10-21 10:21+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: Hebrew עברית he_IL\n"
|
13 |
"MIME-Version: 1.0\n"
|
46 |
msgstr "תפקיד ברירת מחדל"
|
47 |
|
48 |
#: ../includes/settings-template.php:34
|
49 |
+
#: ../includes/class-user-role-editor.php:565
|
50 |
msgid "Multisite"
|
51 |
msgstr ""
|
52 |
|
91 |
msgstr "שמירה"
|
92 |
|
93 |
#: ../includes/settings-template.php:102
|
94 |
+
#: ../includes/class-ure-screen-help.php:41
|
95 |
msgid "Count users without role"
|
96 |
msgstr ""
|
97 |
|
156 |
# }
|
157 |
# wpml-name: c49182dc0c7a70b9cd2e10853d9ec6c7
|
158 |
#: ../includes/class-user-role-editor.php:525
|
159 |
+
#: ../includes/class-ure-lib.php:2295
|
160 |
msgid "Changelog"
|
161 |
msgstr "יומן שינויים"
|
162 |
|
164 |
# esc_html__('User Role Editor', 'ure'),
|
165 |
# $this->key_capability, 'settings-'.URE_PLUGIN_FILE, array(&$this, 'settings'));
|
166 |
# wpml-name: c26ad3b67c7211a5872194d68cb5a8eb
|
167 |
+
#: ../includes/class-user-role-editor.php:575
|
168 |
+
#: ../includes/class-user-role-editor.php:603
|
169 |
+
#: ../includes/class-user-role-editor.php:948
|
170 |
+
#: ../includes/class-ure-lib.php:251
|
171 |
msgid "User Role Editor"
|
172 |
msgstr "User Role Editor"
|
173 |
|
175 |
# $this->lib->show_message(__('User Role Editor options are updated', 'ure'));
|
176 |
# } else { // get options from the options storage
|
177 |
# wpml-name: aef323fbbd25d577170fff17c15cf857
|
178 |
+
#: ../includes/class-user-role-editor.php:660
|
179 |
+
#: ../includes/class-user-role-editor.php:678
|
180 |
+
#: ../includes/class-user-role-editor.php:722
|
181 |
msgid "User Role Editor options are updated"
|
182 |
msgstr "אפשרויות עורך תפקיד משתמש עודכנו"
|
183 |
|
185 |
# 'default_role' => __('Default Role', 'ure'),
|
186 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
187 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
188 |
+
#: ../includes/class-user-role-editor.php:706
|
189 |
#, fuzzy
|
190 |
msgid "Default Roles are updated"
|
191 |
msgstr "תפקיד ברירת מחדל"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:730
|
194 |
msgid ""
|
195 |
"You do not have sufficient permissions to manage options for User Role "
|
196 |
"Editor."
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:809
|
200 |
msgid "Insufficient permissions to work with User Role Editor"
|
201 |
msgstr ""
|
202 |
|
204 |
# 'select_all' => __('Select All', 'ure'),
|
205 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
206 |
# wpml-name: 45e96c0a422ce8a1a6ec1bd5eb9625c6
|
207 |
+
#: ../includes/class-user-role-editor.php:890
|
208 |
msgid "Select All"
|
209 |
msgstr "בחירת הכל"
|
210 |
|
212 |
# 'unselect_all' => __('Unselect All', 'ure'),
|
213 |
# 'reverse' => __('Reverse', 'ure'),
|
214 |
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
215 |
+
#: ../includes/class-user-role-editor.php:891
|
216 |
msgid "Unselect All"
|
217 |
msgstr "לא לבחור שום דבר"
|
218 |
|
220 |
# 'reverse' => __('Reverse', 'ure'),
|
221 |
# 'update' => __('Update', 'ure'),
|
222 |
# wpml-name: 67f115c1fddc4ce1aeb1c754001585bc
|
223 |
+
#: ../includes/class-user-role-editor.php:892
|
224 |
msgid "Reverse"
|
225 |
msgstr "להפוך"
|
226 |
|
228 |
# 'update' => __('Update', 'ure'),
|
229 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
230 |
# wpml-name: 06933067aafd48425d67bcb01bba5cb6
|
231 |
+
#: ../includes/class-user-role-editor.php:893
|
232 |
msgid "Update"
|
233 |
msgstr "עדכן"
|
234 |
|
236 |
# 'confirm_submit' => __('Please confirm permissions update', 'ure'),
|
237 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
238 |
# wpml-name: 85251872440cc94c6080a90451e018c4
|
239 |
+
#: ../includes/class-user-role-editor.php:894
|
240 |
msgid "Please confirm permissions update"
|
241 |
msgstr "נא לאשר את עדכון ההרשאות"
|
242 |
|
244 |
# 'add_new_role_title' => __('Add New Role', 'ure'),
|
245 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
246 |
# wpml-name: cf46e7fb1093a47a76f35fc61ab5d432
|
247 |
+
#: ../includes/class-user-role-editor.php:895
|
248 |
msgid "Add New Role"
|
249 |
msgstr "הוסף סוג משתמש חדש"
|
250 |
|
252 |
# 'delete_role' => __('Delete Role', 'ure'),
|
253 |
# 'cancel' => __('Cancel', 'ure'),
|
254 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
255 |
+
#: ../includes/class-user-role-editor.php:896
|
256 |
+
#: ../includes/class-user-role-editor.php:901
|
257 |
#, fuzzy
|
258 |
msgid "Rename Role"
|
259 |
msgstr "מחיקת סוג משתמש"
|
262 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
263 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
264 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
265 |
+
#: ../includes/class-user-role-editor.php:897
|
266 |
msgid " Role name (ID) can not be empty!"
|
267 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
268 |
|
270 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
271 |
# 'add_role' => __('Add Role', 'ure'),
|
272 |
# wpml-name: 7b94f04285f5efc287652bd40338e730
|
273 |
+
#: ../includes/class-user-role-editor.php:898
|
274 |
msgid ""
|
275 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
276 |
"only!"
|
277 |
msgstr ""
|
278 |
" שם התפקיד (מזהה) חייב להכיל אותיות לטיניות, ספרות, מקפים או קו תחתון בלבד!"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:899
|
281 |
msgid ""
|
282 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
283 |
"it."
|
287 |
# 'add_role' => __('Add Role', 'ure'),
|
288 |
# 'delete_role' => __('Delete Role', 'ure'),
|
289 |
# wpml-name: 1453b39dcc15a372640d960c6db7db25
|
290 |
+
#: ../includes/class-user-role-editor.php:900
|
291 |
msgid "Add Role"
|
292 |
msgstr "הוספת תפקיד"
|
293 |
|
295 |
# 'delete_role' => __('Delete Role', 'ure'),
|
296 |
# 'cancel' => __('Cancel', 'ure'),
|
297 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
298 |
+
#: ../includes/class-user-role-editor.php:902
|
299 |
msgid "Delete Role"
|
300 |
msgstr "מחיקת סוג משתמש"
|
301 |
|
303 |
# 'cancel' => __('Cancel', 'ure'),
|
304 |
# 'add_capability' => __('Add Capability', 'ure'),
|
305 |
# wpml-name: ea4788705e6873b424c65e91c2846b19
|
306 |
+
#: ../includes/class-user-role-editor.php:903
|
307 |
msgid "Cancel"
|
308 |
msgstr "ביטול"
|
309 |
|
311 |
# 'add_capability' => __('Add Capability', 'ure'),
|
312 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
313 |
# wpml-name: 39cc0b416ba0d26679547346b8c5cf8d
|
314 |
+
#: ../includes/class-user-role-editor.php:904
|
315 |
msgid "Add Capability"
|
316 |
msgstr "הוספת יכולת"
|
317 |
|
319 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
320 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
321 |
# wpml-name: 06844dd4ec4b29fa8a354aaacbd4861a
|
322 |
+
#: ../includes/class-user-role-editor.php:905
|
323 |
+
#: ../includes/class-user-role-editor.php:914
|
324 |
msgid "Delete Capability"
|
325 |
msgstr "מחיקת יכולת"
|
326 |
|
328 |
# 'reset' => __('Reset', 'ure'),
|
329 |
# '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'),
|
330 |
# wpml-name: 526d688f37a86d3c3f27d0c5016eb71d
|
331 |
+
#: ../includes/class-user-role-editor.php:906
|
332 |
msgid "Reset"
|
333 |
msgstr "איפוס"
|
334 |
|
335 |
+
#: ../includes/class-user-role-editor.php:907
|
336 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../includes/class-user-role-editor.php:908
|
340 |
msgid ""
|
341 |
"If any plugins have changed capabilities in any way upon installation (such "
|
342 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ../includes/class-user-role-editor.php:909
|
346 |
msgid ""
|
347 |
"For more information on how to undo changes and restore plugin capabilities "
|
348 |
"go to"
|
352 |
# __('Contributor', 'ure');
|
353 |
# __('Subscriber', 'ure');
|
354 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
355 |
+
#: ../includes/class-user-role-editor.php:911
|
356 |
msgid "Continue?"
|
357 |
msgstr ""
|
358 |
|
360 |
# 'default_role' => __('Default Role', 'ure'),
|
361 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
362 |
# wpml-name: db135301eaf77a955b2b016f9b9d6a99
|
363 |
+
#: ../includes/class-user-role-editor.php:912
|
364 |
msgid "Default Role"
|
365 |
msgstr "תפקיד ברירת מחדל"
|
366 |
|
368 |
# 'set_new_default_role' => __('Set New Default Role', 'ure'),
|
369 |
# 'delete_capability' => __('Delete Capability', 'ure'),
|
370 |
# wpml-name: f28d52a1096a73cff427d1216dc578ad
|
371 |
+
#: ../includes/class-user-role-editor.php:913
|
372 |
msgid "Set New Default Role"
|
373 |
msgstr "הגדר תפקיד ברירת מחדל חדש"
|
374 |
|
376 |
# 'delete_capability_warning' => __('Warning! Be careful - removing critical capability could crash some plugin or other custom code', 'ure'),
|
377 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
378 |
# wpml-name: b8827a096ab461b8e26931adf82c8d85
|
379 |
+
#: ../includes/class-user-role-editor.php:915
|
380 |
msgid ""
|
381 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
382 |
"or other custom code"
|
388 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
389 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
390 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
391 |
+
#: ../includes/class-user-role-editor.php:916
|
392 |
msgid " Capability name (ID) can not be empty!"
|
393 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
394 |
|
396 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
397 |
# ) );
|
398 |
# wpml-name: 6d4c115be3e7b4f1fd70112642c9a72d
|
399 |
+
#: ../includes/class-user-role-editor.php:917
|
400 |
msgid ""
|
401 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
402 |
"underscore only!"
|
407 |
# <th scope="row"><?php _e('Other Roles', 'ure'); ?></th>
|
408 |
# <td>
|
409 |
# wpml-name: a5f40dc2b5f2552187d0326e77e267eb
|
410 |
+
#: ../includes/class-user-role-editor.php:951
|
411 |
+
#: ../includes/class-user-role-editor.php:980
|
412 |
msgid "Other Roles"
|
413 |
msgstr "תפקידים אחרים"
|
414 |
|
416 |
# 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>';
|
417 |
# ?>
|
418 |
# wpml-name: 7dce122004969d56ae2e0245cb754d35
|
419 |
+
#: ../includes/class-user-role-editor.php:962
|
420 |
msgid "Edit"
|
421 |
msgstr "עריכה"
|
422 |
|
466 |
# $this->show_message(__('Error: wrong request', 'URE'));
|
467 |
# return false;
|
468 |
# wpml-name: a4b9ac7e09dc5996d763f6bae29fd31a
|
469 |
+
#: ../includes/class-ure-lib.php:159
|
470 |
msgid "Error: wrong request"
|
471 |
msgstr "שגיאה: בקשה מוטעית"
|
472 |
|
474 |
# 'role_name_required' => __(' Role name (ID) can not be empty!', 'ure'),
|
475 |
# 'role_name_valid_chars' => __(' Role name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
476 |
# wpml-name: 1400ecabfd5a7c9527f71723da18dad0
|
477 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
478 |
#, fuzzy
|
479 |
msgid "Role name (ID): "
|
480 |
msgstr " שם התפקיד (מזהה) אינו יכול להישאר ריק!"
|
481 |
|
482 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
483 |
msgid "Display Role Name: "
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: ../includes/class-ure-lib.php:196
|
487 |
msgid "Make copy of: "
|
488 |
msgstr ""
|
489 |
|
491 |
# 'delete_role' => __('Delete Role', 'ure'),
|
492 |
# 'cancel' => __('Cancel', 'ure'),
|
493 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
494 |
+
#: ../includes/class-ure-lib.php:212
|
495 |
#, fuzzy
|
496 |
msgid "Select Role:"
|
497 |
msgstr "מחיקת סוג משתמש"
|
500 |
# 'delete_role' => __('Delete Role', 'ure'),
|
501 |
# 'cancel' => __('Cancel', 'ure'),
|
502 |
# wpml-name: 4e2626418b461869a386850b0f3b437f
|
503 |
+
#: ../includes/class-ure-lib.php:227
|
504 |
#, fuzzy
|
505 |
msgid "Delete:"
|
506 |
msgstr "מחיקת סוג משתמש"
|
509 |
# 'capability_name_required' => __(' Capability name (ID) can not be empty!', 'ure'),
|
510 |
# 'capability_name_valid_chars' => __(' Capability name (ID) must contain latin characters, digits, hyphens or underscore only!', 'ure'),
|
511 |
# wpml-name: ba38256d66e3ae37b7b16052a0f94729
|
512 |
+
#: ../includes/class-ure-lib.php:234
|
513 |
#, fuzzy
|
514 |
msgid "Capability name (ID): "
|
515 |
msgstr " שם היכולת (מזהה) לא יכול להיות ריק!"
|
518 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
519 |
# $this->current_role = '';
|
520 |
# wpml-name: f97d2eb0a66987899d02bb180936afa3
|
521 |
+
#: ../includes/class-ure-lib.php:348
|
522 |
msgid "Error: "
|
523 |
msgstr "שגיאה:"
|
524 |
|
526 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
527 |
# $this->current_role = '';
|
528 |
# wpml-name: bbbabdbe1b262f75d99d62880b953be1
|
529 |
+
#: ../includes/class-ure-lib.php:348
|
530 |
msgid "Role"
|
531 |
msgstr "סוג משתמש:"
|
532 |
|
534 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
535 |
# $this->current_role = '';
|
536 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
537 |
+
#: ../includes/class-ure-lib.php:349
|
538 |
msgid "does not exist"
|
539 |
msgstr "לא נמצא"
|
540 |
|
542 |
# $mess = __('Role is updated successfully', 'ure');
|
543 |
# } else {
|
544 |
# wpml-name: 9fd866f99b55510d60384b7efeb22018
|
545 |
+
#: ../includes/class-ure-lib.php:392
|
546 |
msgid "Role is updated successfully"
|
547 |
msgstr "התפקיד עודכן בהצלחה"
|
548 |
|
550 |
# $mess = __('Roles are updated for all network', 'ure');
|
551 |
# }
|
552 |
# wpml-name: f89c187756348dad944b0fcca790fde6
|
553 |
+
#: ../includes/class-ure-lib.php:394
|
554 |
msgid "Roles are updated for all network"
|
555 |
msgstr "התפקידים עודכנו עבור כל הרשת"
|
556 |
|
558 |
# $mess = __('Error occured during role(s) update', 'ure');
|
559 |
# }
|
560 |
# wpml-name: 9f528ca4741155f636c4331b19f2b170
|
561 |
+
#: ../includes/class-ure-lib.php:400
|
562 |
msgid "Error occured during role(s) update"
|
563 |
msgstr "קרתה שגיאה בעת עדכון תפקידי המשתמש"
|
564 |
|
566 |
# $mess = __('User capabilities are updated successfully', 'ure');
|
567 |
# } else {
|
568 |
# wpml-name: ee37618edaa53156b3a18d543ec60412
|
569 |
+
#: ../includes/class-ure-lib.php:407
|
570 |
msgid "User capabilities are updated successfully"
|
571 |
msgstr "יכולות המשתמש עודכנו בהצלחה"
|
572 |
|
574 |
# $mess = __('Error occured during user update', 'ure');
|
575 |
# }
|
576 |
# wpml-name: f7283da5501e7e1cb13255d323859feb
|
577 |
+
#: ../includes/class-ure-lib.php:412
|
578 |
msgid "Error occured during user update"
|
579 |
msgstr "קרתה שגיאה בזמן עדכון המשתמש"
|
580 |
|
582 |
# $this->notification = __('User Roles are restored to WordPress default values. ', 'ure');
|
583 |
# } else if ($action == 'update') {
|
584 |
# wpml-name: 7182950b4f92d446844be24cfea6276a
|
585 |
+
#: ../includes/class-ure-lib.php:470
|
586 |
msgid "User Roles are restored to WordPress default values. "
|
587 |
msgstr "תפקידי משתמש שוחזרו לערכי ברירת המחדל של וורדפרס."
|
588 |
|
590 |
# $link = '<a href="' . $url . '" title="read about ' . $capability . ' user capability" target="new"><img src="' . URE_PLUGIN_URL . '/images/help.png" alt="' . __('Help', 'ure') . '" /></a>';
|
591 |
# } else {
|
592 |
# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0
|
593 |
+
#: ../includes/class-ure-lib.php:1337
|
594 |
msgid "Help"
|
595 |
msgstr "עזרה"
|
596 |
|
598 |
# $this->show_message('Error! ' . __('Error is occur. Please check the log file.', 'ure'));
|
599 |
# }
|
600 |
# wpml-name: 766a60ac9e13c76c28bdf714ddecaa25
|
601 |
+
#: ../includes/class-ure-lib.php:1695
|
602 |
msgid "Error is occur. Please check the log file."
|
603 |
msgstr "ארעה שגיאה, אנא בדוק את קובץ היומן."
|
604 |
|
606 |
# return __('Error: Role ID must contain latin characters, digits, hyphens or underscore only!', 'ure');
|
607 |
# }
|
608 |
# wpml-name: f9182094e24a9e2fbb7317b1724a69c9
|
609 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
610 |
msgid ""
|
611 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
612 |
"only!"
|
613 |
msgstr ""
|
614 |
"שגיאה: תפקיד המשתמש חייב לכלול אותיות לטיניות, ספרות, מקפים וקו תחתון בלבד!"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
617 |
msgid ""
|
618 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
619 |
"characters to it."
|
623 |
# return sprintf('Error! ' . __('Role %s exists already', 'ure'), $user_role_id);
|
624 |
# }
|
625 |
# wpml-name: 61b6d86154b5437be56e6565f2820391
|
626 |
+
#: ../includes/class-ure-lib.php:1757
|
627 |
#, php-format
|
628 |
msgid "Role %s exists already"
|
629 |
msgstr "סוג המשתמש %s כבר קיים"
|
632 |
# $mess = 'Error! ' . __('Error is encountered during new role create operation', 'ure');
|
633 |
# } else {
|
634 |
# wpml-name: e0618b1a4160611a46b1b95acab0821c
|
635 |
+
#: ../includes/class-ure-lib.php:1772
|
636 |
msgid "Error is encountered during new role create operation"
|
637 |
msgstr "ארעה שגיאה בעת יצירת סוג המשתמש החדש"
|
638 |
|
640 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
641 |
# }
|
642 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
643 |
+
#: ../includes/class-ure-lib.php:1774
|
644 |
#, php-format
|
645 |
msgid "Role %s is created successfully"
|
646 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:1798
|
649 |
msgid "Error: Role ID is empty!"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:1816
|
653 |
msgid "Error: Empty role display name is not allowed."
|
654 |
msgstr ""
|
655 |
|
657 |
# $mess = __('Error: ', 'ure') . __('Role', 'ure') . ' <em>' . esc_html($_POST['user_role']) . '</em> ' . __('does not exist', 'ure');
|
658 |
# $this->current_role = '';
|
659 |
# wpml-name: 9416a531e05cf18f1c26b97263e3c96b
|
660 |
+
#: ../includes/class-ure-lib.php:1823
|
661 |
#, fuzzy, php-format
|
662 |
msgid "Role %s does not exists"
|
663 |
msgstr "לא נמצא"
|
666 |
# $mess = sprintf(__('Role %s is created successfully', 'ure'), $user_role_name);
|
667 |
# }
|
668 |
# wpml-name: 1613afddcbdf86bd48660e5443be00ff
|
669 |
+
#: ../includes/class-ure-lib.php:1831
|
670 |
#, fuzzy, php-format
|
671 |
msgid "Role %s is renamed to %s successfully"
|
672 |
msgstr "סוג המשתמש %s נוצר בהצלחה"
|
675 |
# $mess = 'Error! ' . __('Error encountered during role delete operation', 'ure');
|
676 |
# } else {
|
677 |
# wpml-name: 5ca27dda122445e597586a22e18088e6
|
678 |
+
#: ../includes/class-ure-lib.php:1898
|
679 |
msgid "Error encountered during role delete operation"
|
680 |
msgstr "ארעה שגיאה במהלך נסיון המחיקה של סוג המשתמש"
|
681 |
|
683 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
684 |
# }
|
685 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
686 |
+
#: ../includes/class-ure-lib.php:1900
|
687 |
msgid "Unused roles are deleted successfully"
|
688 |
msgstr ""
|
689 |
|
691 |
# $mess = sprintf(__('Role %s is deleted successfully', 'ure'), $role);
|
692 |
# }
|
693 |
# wpml-name: 53552ec95bc8303219e8c39375763370
|
694 |
+
#: ../includes/class-ure-lib.php:1902
|
695 |
#, php-format
|
696 |
msgid "Role %s is deleted successfully"
|
697 |
msgstr "סוג המשתמש %s נמחק בהצלחה"
|
700 |
# $errorMessage = 'Error! ' . __('Error encountered during default role change operation', 'ure');
|
701 |
# if (isset($wp_roles->role_objects[$user_role_id]) && $user_role_id !== 'administrator') {
|
702 |
# wpml-name: b64bfe4842bc0638b79a24687976394e
|
703 |
+
#: ../includes/class-ure-lib.php:1927
|
704 |
msgid "Error encountered during default role change operation"
|
705 |
msgstr "ארעה שגיאה בעת הנסיון לשנות את סוג משתמש ברירת מחדל"
|
706 |
|
708 |
# $mess = sprintf(__('Default role for new users is set to %s successfully', 'ure'), $wp_roles->role_names[$user_role_id]);
|
709 |
# }
|
710 |
# wpml-name: 94978d82edc73eba0f44bc7bceb299f4
|
711 |
+
#: ../includes/class-ure-lib.php:1933
|
712 |
#, php-format
|
713 |
msgid "Default role for new users is set to %s successfully"
|
714 |
msgstr "סוג המשתמש %s נקבע כברירת מחדל"
|
717 |
# __('Editor', 'ure');
|
718 |
# __('Author', 'ure');
|
719 |
# wpml-name: 344a7f427fb765610ef96eb7bce95257
|
720 |
+
#: ../includes/class-ure-lib.php:1952
|
721 |
msgid "Editor"
|
722 |
msgstr "עורך"
|
723 |
|
725 |
# __('Author', 'ure');
|
726 |
# __('Contributor', 'ure');
|
727 |
# wpml-name: a517747c3d12f99244ae598910d979c5
|
728 |
+
#: ../includes/class-ure-lib.php:1953
|
729 |
msgid "Author"
|
730 |
msgstr "כותב"
|
731 |
|
733 |
# __('Contributor', 'ure');
|
734 |
# __('Subscriber', 'ure');
|
735 |
# wpml-name: 23d21ad4dea7aadf907e5e601b1905e6
|
736 |
+
#: ../includes/class-ure-lib.php:1954
|
737 |
msgid "Contributor"
|
738 |
msgstr "תורם"
|
739 |
|
741 |
# __('Subscriber', 'ure');
|
742 |
# // Standard WordPress capabilities
|
743 |
# wpml-name: 992c4a5b4628d8ebf671cf460254ee81
|
744 |
+
#: ../includes/class-ure-lib.php:1955
|
745 |
msgid "Subscriber"
|
746 |
msgstr "מנוי"
|
747 |
|
749 |
# __('Switch themes', 'ure');
|
750 |
# __('Edit themes', 'ure');
|
751 |
# wpml-name: 87d980c0c79638536655ce7fa0a4b85d
|
752 |
+
#: ../includes/class-ure-lib.php:1957
|
753 |
msgid "Switch themes"
|
754 |
msgstr "החלפת תבניות"
|
755 |
|
757 |
# __('Edit themes', 'ure');
|
758 |
# __('Activate plugins', 'ure');
|
759 |
# wpml-name: 8395d1904c778ee1b2762e07a6a03878
|
760 |
+
#: ../includes/class-ure-lib.php:1958
|
761 |
msgid "Edit themes"
|
762 |
msgstr "עריכת תבניות"
|
763 |
|
765 |
# __('Activate plugins', 'ure');
|
766 |
# __('Edit plugins', 'ure');
|
767 |
# wpml-name: c38bc47406355ef06ad3e10a98505536
|
768 |
+
#: ../includes/class-ure-lib.php:1959
|
769 |
msgid "Activate plugins"
|
770 |
msgstr "הפעלת תוספים"
|
771 |
|
773 |
# __('Edit plugins', 'ure');
|
774 |
# __('Edit users', 'ure');
|
775 |
# wpml-name: a6e42eb142c87e881a0d0c92acf4ef9f
|
776 |
+
#: ../includes/class-ure-lib.php:1960
|
777 |
msgid "Edit plugins"
|
778 |
msgstr "עריכת תוספים"
|
779 |
|
781 |
# __('Edit users', 'ure');
|
782 |
# __('Edit files', 'ure');
|
783 |
# wpml-name: 70118d8574d7c13da8c0a7c2acc0f659
|
784 |
+
#: ../includes/class-ure-lib.php:1961
|
785 |
msgid "Edit users"
|
786 |
msgstr "עריכת משתמשים"
|
787 |
|
789 |
# __('Edit files', 'ure');
|
790 |
# __('Manage options', 'ure');
|
791 |
# wpml-name: 91c6e7a54b91cdc161f71958c597ed11
|
792 |
+
#: ../includes/class-ure-lib.php:1962
|
793 |
msgid "Edit files"
|
794 |
msgstr "עריכת קבצים"
|
795 |
|
797 |
# __('Manage options', 'ure');
|
798 |
# __('Moderate comments', 'ure');
|
799 |
# wpml-name: 9f285ad90d3e9f5122241f2e8abd3836
|
800 |
+
#: ../includes/class-ure-lib.php:1963
|
801 |
msgid "Manage options"
|
802 |
msgstr "ניהול אפשרויות אתר"
|
803 |
|
805 |
# __('Moderate comments', 'ure');
|
806 |
# __('Manage categories', 'ure');
|
807 |
# wpml-name: abb293cb5d17f4acca429ea13d74c593
|
808 |
+
#: ../includes/class-ure-lib.php:1964
|
809 |
msgid "Moderate comments"
|
810 |
msgstr "ניהול תגובות"
|
811 |
|
813 |
# __('Manage categories', 'ure');
|
814 |
# __('Manage links', 'ure');
|
815 |
# wpml-name: 74c12b9adae95b65772e8c9c9c8e5af3
|
816 |
+
#: ../includes/class-ure-lib.php:1965
|
817 |
msgid "Manage categories"
|
818 |
msgstr "ניהול קטגוריות"
|
819 |
|
821 |
# __('Manage links', 'ure');
|
822 |
# __('Upload files', 'ure');
|
823 |
# wpml-name: fa1a08e2a749c9f330c9a8e60cac9cc3
|
824 |
+
#: ../includes/class-ure-lib.php:1966
|
825 |
msgid "Manage links"
|
826 |
msgstr "ניהול קישורים"
|
827 |
|
829 |
# __('Upload files', 'ure');
|
830 |
# __('Import', 'ure');
|
831 |
# wpml-name: c7de86f69db264c3950d8ae46ed2e33f
|
832 |
+
#: ../includes/class-ure-lib.php:1967
|
833 |
msgid "Upload files"
|
834 |
msgstr "העלאת קבצים"
|
835 |
|
837 |
# __('Import', 'ure');
|
838 |
# __('Unfiltered html', 'ure');
|
839 |
# wpml-name: 72d6d7a1885885bb55a565fd1070581a
|
840 |
+
#: ../includes/class-ure-lib.php:1968
|
841 |
msgid "Import"
|
842 |
msgstr "יבוא"
|
843 |
|
845 |
# __('Unfiltered html', 'ure');
|
846 |
# __('Edit posts', 'ure');
|
847 |
# wpml-name: fdd95e5640d6d73230b7544ac261457a
|
848 |
+
#: ../includes/class-ure-lib.php:1969
|
849 |
msgid "Unfiltered html"
|
850 |
msgstr "עריכת HTML"
|
851 |
|
853 |
# __('Edit posts', 'ure');
|
854 |
# __('Edit others posts', 'ure');
|
855 |
# wpml-name: 9cd92b1d45220e13e5e257f185f3fec3
|
856 |
+
#: ../includes/class-ure-lib.php:1970
|
857 |
msgid "Edit posts"
|
858 |
msgstr "עריכת פוסטים"
|
859 |
|
861 |
# __('Edit others posts', 'ure');
|
862 |
# __('Edit published posts', 'ure');
|
863 |
# wpml-name: 5fbf3fd2d5fd1e393df2c639fa16dbc9
|
864 |
+
#: ../includes/class-ure-lib.php:1971
|
865 |
msgid "Edit others posts"
|
866 |
msgstr "עריכת פוסטים של אחרים"
|
867 |
|
869 |
# __('Edit published posts', 'ure');
|
870 |
# __('Publish posts', 'ure');
|
871 |
# wpml-name: d42efc04e7900de59ed3667c971e9e9d
|
872 |
+
#: ../includes/class-ure-lib.php:1972
|
873 |
msgid "Edit published posts"
|
874 |
msgstr "עריכת פוסטים שפורסמו"
|
875 |
|
877 |
# __('Publish posts', 'ure');
|
878 |
# __('Edit pages', 'ure');
|
879 |
# wpml-name: 64a4f8f7a855c54e1ca7c910439f5e90
|
880 |
+
#: ../includes/class-ure-lib.php:1973
|
881 |
msgid "Publish posts"
|
882 |
msgstr "פוסטים שפורסמו"
|
883 |
|
885 |
# __('Edit pages', 'ure');
|
886 |
# __('Read', 'ure');
|
887 |
# wpml-name: e7a51430fa0fbb32587c083ffae4b525
|
888 |
+
#: ../includes/class-ure-lib.php:1974
|
889 |
msgid "Edit pages"
|
890 |
msgstr "עריכת עמודים"
|
891 |
|
893 |
# __('Read', 'ure');
|
894 |
# __('Level 10', 'ure');
|
895 |
# wpml-name: 7a1a5f3e79fdc91edf2f5ead9d66abb4
|
896 |
+
#: ../includes/class-ure-lib.php:1975
|
897 |
msgid "Read"
|
898 |
msgstr "קורא"
|
899 |
|
901 |
# __('Level 10', 'ure');
|
902 |
# __('Level 9', 'ure');
|
903 |
# wpml-name: b3ef2f43e2782f8d95a4c22d577cb1bc
|
904 |
+
#: ../includes/class-ure-lib.php:1976
|
905 |
msgid "Level 10"
|
906 |
msgstr "דרגה 10"
|
907 |
|
909 |
# __('Level 9', 'ure');
|
910 |
# __('Level 8', 'ure');
|
911 |
# wpml-name: d48252bc9cffec4bed5028a7c71d8196
|
912 |
+
#: ../includes/class-ure-lib.php:1977
|
913 |
msgid "Level 9"
|
914 |
msgstr "דרגה 9"
|
915 |
|
917 |
# __('Level 8', 'ure');
|
918 |
# __('Level 7', 'ure');
|
919 |
# wpml-name: 625fef0c34a92b3685266a47f16c85dd
|
920 |
+
#: ../includes/class-ure-lib.php:1978
|
921 |
msgid "Level 8"
|
922 |
msgstr "דרגה 8"
|
923 |
|
925 |
# __('Level 7', 'ure');
|
926 |
# __('Level 6', 'ure');
|
927 |
# wpml-name: a9acd6f427950dc61cac50b4e9ee6bc4
|
928 |
+
#: ../includes/class-ure-lib.php:1979
|
929 |
msgid "Level 7"
|
930 |
msgstr "דרגה 7"
|
931 |
|
933 |
# __('Level 6', 'ure');
|
934 |
# __('Level 5', 'ure');
|
935 |
# wpml-name: b30ce92fb9295725ef29254ba5ae17e1
|
936 |
+
#: ../includes/class-ure-lib.php:1980
|
937 |
msgid "Level 6"
|
938 |
msgstr "דרגה 6"
|
939 |
|
941 |
# __('Level 5', 'ure');
|
942 |
# __('Level 4', 'ure');
|
943 |
# wpml-name: 05988e43e8f2eb5efdddc2b467c4b2f3
|
944 |
+
#: ../includes/class-ure-lib.php:1981
|
945 |
msgid "Level 5"
|
946 |
msgstr "דרגה 5"
|
947 |
|
949 |
# __('Level 4', 'ure');
|
950 |
# __('Level 3', 'ure');
|
951 |
# wpml-name: 309531bbe9a9d3228cd0687ec6e66bed
|
952 |
+
#: ../includes/class-ure-lib.php:1982
|
953 |
msgid "Level 4"
|
954 |
msgstr "דרגה 4"
|
955 |
|
957 |
# __('Level 3', 'ure');
|
958 |
# __('Level 2', 'ure');
|
959 |
# wpml-name: 8f60a63315c55e659b1a2dd5064ceae8
|
960 |
+
#: ../includes/class-ure-lib.php:1983
|
961 |
msgid "Level 3"
|
962 |
msgstr "דרגה 3"
|
963 |
|
965 |
# __('Level 2', 'ure');
|
966 |
# __('Level 1', 'ure');
|
967 |
# wpml-name: 228e9da47384bacde793a2b78d488bb0
|
968 |
+
#: ../includes/class-ure-lib.php:1984
|
969 |
msgid "Level 2"
|
970 |
msgstr "דרגה 2"
|
971 |
|
973 |
# __('Level 1', 'ure');
|
974 |
# __('Level 0', 'ure');
|
975 |
# wpml-name: 5afaf1679ad0887adebaddb40e0bd3f7
|
976 |
+
#: ../includes/class-ure-lib.php:1985
|
977 |
msgid "Level 1"
|
978 |
msgstr "דרגה 1"
|
979 |
|
981 |
# __('Level 0', 'ure');
|
982 |
# __('Edit others pages', 'ure');
|
983 |
# wpml-name: 057e95a59e032dbed970592dd1245092
|
984 |
+
#: ../includes/class-ure-lib.php:1986
|
985 |
msgid "Level 0"
|
986 |
msgstr "דרגה 0"
|
987 |
|
989 |
# __('Edit others pages', 'ure');
|
990 |
# __('Edit published pages', 'ure');
|
991 |
# wpml-name: b10af907824940fe6a5aa0a77c62be6f
|
992 |
+
#: ../includes/class-ure-lib.php:1987
|
993 |
msgid "Edit others pages"
|
994 |
msgstr "עריכת דפים של אחרים"
|
995 |
|
997 |
# __('Edit published pages', 'ure');
|
998 |
# __('Publish pages', 'ure');
|
999 |
# wpml-name: c5bfc24b0b891c9465134b83b2c6c259
|
1000 |
+
#: ../includes/class-ure-lib.php:1988
|
1001 |
msgid "Edit published pages"
|
1002 |
msgstr "עריכת דפים שפורסמו"
|
1003 |
|
1005 |
# __('Publish pages', 'ure');
|
1006 |
# __('Delete pages', 'ure');
|
1007 |
# wpml-name: 70d789f104acf7aa83b1c5ab230f8e7c
|
1008 |
+
#: ../includes/class-ure-lib.php:1989
|
1009 |
msgid "Publish pages"
|
1010 |
msgstr "פרסום דפים"
|
1011 |
|
1013 |
# __('Delete pages', 'ure');
|
1014 |
# __('Delete others pages', 'ure');
|
1015 |
# wpml-name: b665a2b3cb33c08decc52b8a3f3d1742
|
1016 |
+
#: ../includes/class-ure-lib.php:1990
|
1017 |
msgid "Delete pages"
|
1018 |
msgstr "מחיקת דפים"
|
1019 |
|
1021 |
# __('Delete others pages', 'ure');
|
1022 |
# __('Delete published pages', 'ure');
|
1023 |
# wpml-name: 23eaa8e106fde2a76d80bc907f55ab7e
|
1024 |
+
#: ../includes/class-ure-lib.php:1991
|
1025 |
msgid "Delete others pages"
|
1026 |
msgstr "מחיקת דפים של אחרים"
|
1027 |
|
1029 |
# __('Delete published pages', 'ure');
|
1030 |
# __('Delete posts', 'ure');
|
1031 |
# wpml-name: 75c6bfee9157bbc48bfc4d50baab89e0
|
1032 |
+
#: ../includes/class-ure-lib.php:1992
|
1033 |
msgid "Delete published pages"
|
1034 |
msgstr "מחיקת דפים שפורסמו"
|
1035 |
|
1037 |
# __('Delete posts', 'ure');
|
1038 |
# __('Delete others posts', 'ure');
|
1039 |
# wpml-name: 3dce6f688c85f06c63224b5c3be13919
|
1040 |
+
#: ../includes/class-ure-lib.php:1993
|
1041 |
msgid "Delete posts"
|
1042 |
msgstr "מחיקת פוסטים"
|
1043 |
|
1045 |
# __('Delete others posts', 'ure');
|
1046 |
# __('Delete published posts', 'ure');
|
1047 |
# wpml-name: c0496287732814df690c8966027a58d6
|
1048 |
+
#: ../includes/class-ure-lib.php:1994
|
1049 |
msgid "Delete others posts"
|
1050 |
msgstr "מחיקת פוסטים של אחרים"
|
1051 |
|
1053 |
# __('Delete published posts', 'ure');
|
1054 |
# __('Delete private posts', 'ure');
|
1055 |
# wpml-name: b0a2d2039494d73f81f4e476bfda24da
|
1056 |
+
#: ../includes/class-ure-lib.php:1995
|
1057 |
msgid "Delete published posts"
|
1058 |
msgstr "מחיקת פוסטים שפורסמו"
|
1059 |
|
1061 |
# __('Delete private posts', 'ure');
|
1062 |
# __('Edit private posts', 'ure');
|
1063 |
# wpml-name: dcd02c374764e49b36f0f959cc2917bb
|
1064 |
+
#: ../includes/class-ure-lib.php:1996
|
1065 |
msgid "Delete private posts"
|
1066 |
msgstr "מחיקת פוסטים פרטיים"
|
1067 |
|
1069 |
# __('Edit private posts', 'ure');
|
1070 |
# __('Read private posts', 'ure');
|
1071 |
# wpml-name: da9ee842794f7caf9fa32271073d5f7a
|
1072 |
+
#: ../includes/class-ure-lib.php:1997
|
1073 |
msgid "Edit private posts"
|
1074 |
msgstr "עריכת פוסטים פרטיים"
|
1075 |
|
1077 |
# __('Read private posts', 'ure');
|
1078 |
# __('Delete private pages', 'ure');
|
1079 |
# wpml-name: eab0355307288f6480f8c53a0d953d79
|
1080 |
+
#: ../includes/class-ure-lib.php:1998
|
1081 |
msgid "Read private posts"
|
1082 |
msgstr "קריאת פוסטים פרטיים"
|
1083 |
|
1085 |
# __('Delete private pages', 'ure');
|
1086 |
# __('Edit private pages', 'ure');
|
1087 |
# wpml-name: 2136c12e2beeadfe0da80a36ef967eca
|
1088 |
+
#: ../includes/class-ure-lib.php:1999
|
1089 |
msgid "Delete private pages"
|
1090 |
msgstr "מחיקת עמודים פרטיים"
|
1091 |
|
1093 |
# __('Edit private pages', 'ure');
|
1094 |
# __('Read private pages', 'ure');
|
1095 |
# wpml-name: 4f3859ba470cb61f22a600a93c4ce11f
|
1096 |
+
#: ../includes/class-ure-lib.php:2000
|
1097 |
msgid "Edit private pages"
|
1098 |
msgstr "מחיקת עמודים פרטיים"
|
1099 |
|
1101 |
# __('Read private pages', 'ure');
|
1102 |
# __('Delete users', 'ure');
|
1103 |
# wpml-name: 5faa3f2e9585e107dc5f23748a825882
|
1104 |
+
#: ../includes/class-ure-lib.php:2001
|
1105 |
msgid "Read private pages"
|
1106 |
msgstr "קריאת עמודים פרטיים"
|
1107 |
|
1109 |
# __('Delete users', 'ure');
|
1110 |
# __('Create users', 'ure');
|
1111 |
# wpml-name: 61c484c7f1638a9dd4237cb666b91c1f
|
1112 |
+
#: ../includes/class-ure-lib.php:2002
|
1113 |
msgid "Delete users"
|
1114 |
msgstr "מחיקת משתמשים"
|
1115 |
|
1117 |
# __('Create users', 'ure');
|
1118 |
# __('Unfiltered upload', 'ure');
|
1119 |
# wpml-name: 6cf6d76fc00f8dd12af98a37d11f623e
|
1120 |
+
#: ../includes/class-ure-lib.php:2003
|
1121 |
msgid "Create users"
|
1122 |
msgstr "יצירת משתמשים"
|
1123 |
|
1125 |
# __('Unfiltered upload', 'ure');
|
1126 |
# __('Edit dashboard', 'ure');
|
1127 |
# wpml-name: 7110d42a34cbb3316d6d0c658fa34c86
|
1128 |
+
#: ../includes/class-ure-lib.php:2004
|
1129 |
msgid "Unfiltered upload"
|
1130 |
msgstr "העלאת קבצים חופשית"
|
1131 |
|
1133 |
# __('Edit dashboard', 'ure');
|
1134 |
# __('Update plugins', 'ure');
|
1135 |
# wpml-name: b5577d27ebfdd60a3bda83ae726d574b
|
1136 |
+
#: ../includes/class-ure-lib.php:2005
|
1137 |
msgid "Edit dashboard"
|
1138 |
msgstr "שינוי לוח הבקרה"
|
1139 |
|
1141 |
# __('Update plugins', 'ure');
|
1142 |
# __('Delete plugins', 'ure');
|
1143 |
# wpml-name: 23c5b17dc24e40fa47ca6588932d32f7
|
1144 |
+
#: ../includes/class-ure-lib.php:2006
|
1145 |
msgid "Update plugins"
|
1146 |
msgstr "עדכון תוספים"
|
1147 |
|
1149 |
# __('Delete plugins', 'ure');
|
1150 |
# __('Install plugins', 'ure');
|
1151 |
# wpml-name: f2a839940dae3934317d8d6a6f647ebd
|
1152 |
+
#: ../includes/class-ure-lib.php:2007
|
1153 |
msgid "Delete plugins"
|
1154 |
msgstr "מחיקת תוספים"
|
1155 |
|
1157 |
# __('Install plugins', 'ure');
|
1158 |
# __('Update themes', 'ure');
|
1159 |
# wpml-name: 9d06472988c53bfc768bc7b6a788b697
|
1160 |
+
#: ../includes/class-ure-lib.php:2008
|
1161 |
msgid "Install plugins"
|
1162 |
msgstr "התקנת תוספים"
|
1163 |
|
1165 |
# __('Update themes', 'ure');
|
1166 |
# __('Install themes', 'ure');
|
1167 |
# wpml-name: 504ea4a27260ac1e8822c5877ffe526b
|
1168 |
+
#: ../includes/class-ure-lib.php:2009
|
1169 |
msgid "Update themes"
|
1170 |
msgstr "עדכון תבניות"
|
1171 |
|
1173 |
# __('Install themes', 'ure');
|
1174 |
# __('Update core', 'ure');
|
1175 |
# wpml-name: a7d67fb17876569a4590902d3566a6fd
|
1176 |
+
#: ../includes/class-ure-lib.php:2010
|
1177 |
msgid "Install themes"
|
1178 |
msgstr "התקנת תבניות חדשות"
|
1179 |
|
1181 |
# __('Update core', 'ure');
|
1182 |
# __('List users', 'ure');
|
1183 |
# wpml-name: e56e5b87db548cd42be7a8a0f916205d
|
1184 |
+
#: ../includes/class-ure-lib.php:2011
|
1185 |
msgid "Update core"
|
1186 |
msgstr "עדכון וורדפרס"
|
1187 |
|
1189 |
# __('List users', 'ure');
|
1190 |
# __('Remove users', 'ure');
|
1191 |
# wpml-name: f923f903857a5387d3db70494e074632
|
1192 |
+
#: ../includes/class-ure-lib.php:2012
|
1193 |
msgid "List users"
|
1194 |
msgstr "בצפייה במשתמשים"
|
1195 |
|
1197 |
# __('Remove users', 'ure');
|
1198 |
# __('Add users', 'ure');
|
1199 |
# wpml-name: 8c7e9f2dfcd0125922dfbce36a1a4c2a
|
1200 |
+
#: ../includes/class-ure-lib.php:2013
|
1201 |
msgid "Remove users"
|
1202 |
msgstr "הסרת משתמשים"
|
1203 |
|
1205 |
# __('Add users', 'ure');
|
1206 |
# __('Promote users', 'ure');
|
1207 |
# wpml-name: 3bf6330f5f4c7c3dfddc9670cfaf4a22
|
1208 |
+
#: ../includes/class-ure-lib.php:2014
|
1209 |
msgid "Add users"
|
1210 |
msgstr "הוספת משתמשים"
|
1211 |
|
1213 |
# __('Promote users', 'ure');
|
1214 |
# __('Edit theme options', 'ure');
|
1215 |
# wpml-name: 12f4ba95cdfd04b791820b9c20887913
|
1216 |
+
#: ../includes/class-ure-lib.php:2015
|
1217 |
msgid "Promote users"
|
1218 |
msgstr "שינוי משתמשים"
|
1219 |
|
1221 |
# __('Edit theme options', 'ure');
|
1222 |
# __('Delete themes', 'ure');
|
1223 |
# wpml-name: 8841974497684dad4d55beaf2b6c52ef
|
1224 |
+
#: ../includes/class-ure-lib.php:2016
|
1225 |
msgid "Edit theme options"
|
1226 |
msgstr "עריכת אפשרויות התבנית"
|
1227 |
|
1229 |
# __('Delete themes', 'ure');
|
1230 |
# __('Export', 'ure');
|
1231 |
# wpml-name: 335e9dea5f21dc3f591f3aceefdeed54
|
1232 |
+
#: ../includes/class-ure-lib.php:2017
|
1233 |
msgid "Delete themes"
|
1234 |
msgstr "מחיקת תבניות"
|
1235 |
|
1237 |
# __('Export', 'ure');
|
1238 |
# }
|
1239 |
# wpml-name: 0095a9fa74d1713e43e370a7d7846224
|
1240 |
+
#: ../includes/class-ure-lib.php:2018
|
1241 |
msgid "Export"
|
1242 |
msgstr "ייצוא תוכן"
|
1243 |
|
1245 |
# return 'Error! ' . __('Error: Capability name must contain latin characters and digits only!', 'ure');
|
1246 |
# ;
|
1247 |
# wpml-name: 03766b9586d3012af6fc788e85d39530
|
1248 |
+
#: ../includes/class-ure-lib.php:2128
|
1249 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
1250 |
msgstr "שגיאה! שם יכולת חייב להכיל אותיות באנגלית וספרות בלבד"
|
1251 |
|
1253 |
# $mess = sprintf(__('Capability %s is added successfully', 'ure'), $user_capability);
|
1254 |
# } else {
|
1255 |
# wpml-name: 6dcaae98207ba2673da987515b02fe31
|
1256 |
+
#: ../includes/class-ure-lib.php:2141
|
1257 |
#, php-format
|
1258 |
msgid "Capability %s is added successfully"
|
1259 |
msgstr "היכולת %s נוספה בהצלחה"
|
1262 |
# $mess = sprintf('Error! ' . __('Capability %s exists already', 'ure'), $user_capability);
|
1263 |
# }
|
1264 |
# wpml-name: d5c1ec0556aadfa88cadffb62266b83d
|
1265 |
+
#: ../includes/class-ure-lib.php:2143
|
1266 |
#, php-format
|
1267 |
msgid "Capability %s exists already"
|
1268 |
msgstr "כבר קיימת יכולת בשם %s"
|
1271 |
# return sprintf(__('Error! You do not have permission to delete this capability: %s!', 'ure'), $capability_id);
|
1272 |
# }
|
1273 |
# wpml-name: 0e132e68574d9609d956f9be409f7384
|
1274 |
+
#: ../includes/class-ure-lib.php:2168
|
1275 |
#, php-format
|
1276 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
1277 |
msgstr "שגיאה! אין לך הרשאה למחוק את היכולת %s"
|
1280 |
# $mess = sprintf(__('Capability %s is removed successfully', 'ure'), $capability_id);
|
1281 |
# }
|
1282 |
# wpml-name: d819128cbb44d0e2fe4eb8b8b6397871
|
1283 |
+
#: ../includes/class-ure-lib.php:2187
|
1284 |
#, php-format
|
1285 |
msgid "Capability %s is removed successfully"
|
1286 |
msgstr "היכולת %s הוסרה בהצלחה"
|
1287 |
|
1288 |
+
#: ../includes/class-ure-lib.php:2291
|
1289 |
msgid "Version:"
|
1290 |
msgstr ""
|
1291 |
|
1293 |
# <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>
|
1294 |
# <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>
|
1295 |
# wpml-name: b63bc6c033363c8ee66beaf4ea4d5bc3
|
1296 |
+
#: ../includes/class-ure-lib.php:2292
|
1297 |
msgid "Author's website"
|
1298 |
msgstr "אתר היוצר"
|
1299 |
|
1301 |
# <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>
|
1302 |
# <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>
|
1303 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1304 |
+
#: ../includes/class-ure-lib.php:2293
|
1305 |
msgid "Plugin webpage"
|
1306 |
msgstr "דף התוסף"
|
1307 |
|
1309 |
# <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>
|
1310 |
# <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>
|
1311 |
# wpml-name: f919d1248270e1eca5cc6a39253264f7
|
1312 |
+
#: ../includes/class-ure-lib.php:2294
|
1313 |
#, fuzzy
|
1314 |
msgid "Plugin download"
|
1315 |
msgstr "דף התוסף"
|
1318 |
# <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>
|
1319 |
# <?php
|
1320 |
# wpml-name: 1fe917b01f9a3f87fa2d7d3b7643fac1
|
1321 |
+
#: ../includes/class-ure-lib.php:2296
|
1322 |
msgid "FAQ"
|
1323 |
msgstr "שאלות נפוצות"
|
1324 |
|
1326 |
# <option value="none" selected="selected">' . __('None', 'ure') . '</option>';
|
1327 |
# $this->role_select_html = '<select id="user_role" name="user_role" onchange="ure_role_change(this.value);">';
|
1328 |
# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754
|
1329 |
+
#: ../includes/class-ure-lib.php:2344
|
1330 |
msgid "None"
|
1331 |
msgstr "תרום"
|
1332 |
|
1334 |
#
|
1335 |
#
|
1336 |
# wpml-name: 7aa3fd37413ab803143d28fcc65287cf
|
1337 |
+
#: ../includes/class-ure-lib.php:2371
|
1338 |
msgid "Delete All Unused Roles"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: ../includes/class-ure-lib.php:2395
|
1342 |
msgid "— No role for this site —"
|
1343 |
msgstr ""
|
1344 |
|
1397 |
"deprecated capabilities."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: ../includes/class-ure-screen-help.php:42
|
1401 |
+
msgid ""
|
1402 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
1403 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
1404 |
+
"users list with role \"No rights\" at the separate tab then."
|
1405 |
+
msgstr ""
|
|
|
|
|
1406 |
|
1407 |
+
#: ../includes/class-ure-screen-help.php:59
|
1408 |
msgid "Other default roles for new registered user"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: ../includes/class-ure-screen-help.php:60
|
1412 |
msgid ""
|
1413 |
"select roles below to assign them to the new user automatically as an "
|
1414 |
"addition to the primary role. Note for multisite environment: take into "
|
1416 |
"assigned to the new registered users."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: ../includes/class-ure-screen-help.php:78
|
1420 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: ../includes/class-ure-screen-help.php:79
|
1424 |
msgid ""
|
1425 |
"Super administrator only may create, edit and delete users under WordPress "
|
1426 |
"multi-site by default. Turn this option on in order to remove this "
|
1427 |
"limitation."
|
1428 |
msgstr ""
|
1429 |
+
|
1430 |
+
# 'select_all' => __('Select All', 'ure'),
|
1431 |
+
# 'unselect_all' => __('Unselect All', 'ure'),
|
1432 |
+
# 'reverse' => __('Reverse', 'ure'),
|
1433 |
+
# wpml-name: 016269c0d83a19a19a2ee0a4294740b4
|
1434 |
+
#, fuzzy
|
1435 |
+
#~ msgid "select roles below"
|
1436 |
+
#~ msgstr "לא לבחור שום דבר"
|
lang/ure-hu_HU.mo
CHANGED
Binary file
|
lang/ure-hu_HU.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: \n"
|
9 |
"Language: hu_HU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -37,7 +37,7 @@ msgid "Default Roles"
|
|
37 |
msgstr "Alap szerepkörök"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
@@ -66,7 +66,7 @@ msgid "Save"
|
|
66 |
msgstr "Mentés"
|
67 |
|
68 |
#: ../includes/settings-template.php:102
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Szerepkör nélküli felhasználók számlálása"
|
72 |
|
@@ -120,72 +120,72 @@ msgid "Settings"
|
|
120 |
msgstr "Beállítások"
|
121 |
|
122 |
#: ../includes/class-user-role-editor.php:525
|
123 |
-
#: ../includes/class-ure-lib.php:
|
124 |
msgid "Changelog"
|
125 |
msgstr "Változások naplója"
|
126 |
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-ure-lib.php:
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "Szerepkör szerkesztő"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "Szerepkör szerkesztő beállításai frissítve"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Alap szerepkörök frissítve"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
148 |
msgstr ""
|
149 |
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
150 |
|
151 |
-
#: ../includes/class-user-role-editor.php:
|
152 |
msgid "Insufficient permissions to work with User Role Editor"
|
153 |
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
154 |
|
155 |
-
#: ../includes/class-user-role-editor.php:
|
156 |
msgid "Select All"
|
157 |
msgstr "Összeset kijelöl"
|
158 |
|
159 |
-
#: ../includes/class-user-role-editor.php:
|
160 |
msgid "Unselect All"
|
161 |
msgstr "Kijelölés megszünt."
|
162 |
|
163 |
-
#: ../includes/class-user-role-editor.php:
|
164 |
msgid "Reverse"
|
165 |
msgstr "Fordított kijelölés"
|
166 |
|
167 |
-
#: ../includes/class-user-role-editor.php:
|
168 |
msgid "Update"
|
169 |
msgstr "Frissítés"
|
170 |
|
171 |
-
#: ../includes/class-user-role-editor.php:
|
172 |
msgid "Please confirm permissions update"
|
173 |
msgstr "Képességek frissítésének megersőítése"
|
174 |
|
175 |
-
#: ../includes/class-user-role-editor.php:
|
176 |
msgid "Add New Role"
|
177 |
msgstr "Új szerepkör létrehozása"
|
178 |
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
msgid "Rename Role"
|
182 |
msgstr "Szerepkör átnevezés"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid " Role name (ID) can not be empty!"
|
186 |
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
187 |
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
msgid ""
|
190 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
191 |
"only!"
|
@@ -193,7 +193,7 @@ msgstr ""
|
|
193 |
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
194 |
"aláhúzást tartalmazhat."
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid ""
|
198 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
199 |
"it."
|
@@ -201,38 +201,38 @@ msgstr ""
|
|
201 |
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
202 |
"bele legalább egy latin betű."
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid "Add Role"
|
206 |
msgstr "Új szerepkör"
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Delete Role"
|
210 |
msgstr "Szerepkör törlése"
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Cancel"
|
214 |
msgstr "Mégse"
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Add Capability"
|
218 |
msgstr "Új képesség"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Delete Capability"
|
223 |
msgstr "Képesség törlése"
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "Reset"
|
227 |
msgstr "Alaphelyzet"
|
228 |
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
231 |
msgstr ""
|
232 |
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
233 |
"újra."
|
234 |
|
235 |
-
#: ../includes/class-user-role-editor.php:
|
236 |
msgid ""
|
237 |
"If any plugins have changed capabilities in any way upon installation (such "
|
238 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -240,7 +240,7 @@ msgstr ""
|
|
240 |
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
241 |
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid ""
|
245 |
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
"go to"
|
@@ -248,19 +248,19 @@ msgstr ""
|
|
248 |
"További információ a képességek módosításainak visszavonásáról és "
|
249 |
"helyreállításáról"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Continue?"
|
253 |
msgstr "Folytassuk?"
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid "Default Role"
|
257 |
msgstr "Alap szerepkör"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Új alap szerepkör beállítása"
|
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 |
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
269 |
"bővítmény vagy egyedi kód."
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "A képesség név (azonosító) nem lehet üres."
|
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 |
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
281 |
"aláhúzásból állhat."
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Más szerepkörök"
|
287 |
|
288 |
-
#: ../includes/class-user-role-editor.php:
|
289 |
msgid "Edit"
|
290 |
msgstr "Szerkeszt"
|
291 |
|
@@ -318,79 +318,79 @@ msgstr "Gyors szűrés:"
|
|
318 |
msgid "Custom capabilities:"
|
319 |
msgstr "Egyedi képességek:"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Error: wrong request"
|
323 |
msgstr "Hiba: hibás kérés"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Role name (ID): "
|
327 |
msgstr "Szerepkör név (azonosító):"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Display Role Name: "
|
331 |
msgstr "Szerepkör megnevezése:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Make copy of: "
|
335 |
msgstr "Ennek a másolata:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Select Role:"
|
339 |
msgstr "Válasszon szerepkört:"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Delete:"
|
343 |
msgstr "Törlés:"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Capability name (ID): "
|
347 |
msgstr "Képesség név (azonosító):"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Error: "
|
351 |
msgstr "Hiba:"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "Role"
|
355 |
msgstr "Szerepkör"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "does not exist"
|
359 |
msgstr "nem létezik"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Role is updated successfully"
|
363 |
msgstr "Szerepkör sikeresen frissítve"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Roles are updated for all network"
|
367 |
msgstr "Szerepkörök frissítése a teljes hálózaton"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "Error occured during role(s) update"
|
371 |
msgstr "Hiba történt a szerepkör(ök) frissítése során"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
msgstr "Felhasználó képességei sikeresen frissítve"
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "Error occured during user update"
|
379 |
msgstr "Hiba történt a felhasználó frissítése során"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Help"
|
387 |
msgstr "Súgó"
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
392 |
|
393 |
-
#: ../includes/class-ure-lib.php:
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
@@ -398,7 +398,7 @@ msgstr ""
|
|
398 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
399 |
"aláhúzásból állhat."
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid ""
|
403 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
"characters to it."
|
@@ -406,377 +406,377 @@ msgstr ""
|
|
406 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
407 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
408 |
|
409 |
-
#: ../includes/class-ure-lib.php:
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "%s szerepkör már létezik"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
417 |
|
418 |
-
#: ../includes/class-ure-lib.php:
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "%s szerepkör sikeresen létrehozva"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
430 |
|
431 |
-
#: ../includes/class-ure-lib.php:
|
432 |
#, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "%s szerepkör nem létezik"
|
435 |
|
436 |
-
#: ../includes/class-ure-lib.php:
|
437 |
#, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Hiba történt a szerepkör törlése során."
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "%s szerepkör sikeresen törölve lett."
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
457 |
|
458 |
-
#: ../includes/class-ure-lib.php:
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Editor"
|
465 |
msgstr "Szerkesztő"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Author"
|
469 |
msgstr "Szerző"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Contributor"
|
473 |
msgstr "Közreműködő"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Feliratkozó"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Sablon kiválasztása"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Sablonok szerkesztése"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Bővítmény bekapcsolása"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Bővítmények szerkesztése"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit users"
|
497 |
msgstr "Felhasználók szerkesztése"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Edit files"
|
501 |
msgstr "Fájlok szerkesztése"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Manage options"
|
505 |
msgstr "Beállítások kezelése"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Hozzászólások moderálása"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Kategóriák kezelése"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Manage links"
|
517 |
msgstr "Hivatkozások kezelése"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Upload files"
|
521 |
msgstr "Fájlok feltöltése"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Import"
|
525 |
msgstr "Importálás"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "Szűretlen HTML"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Bejegyzések szerkesztése"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Közzétett bejegyzések szerkesztése"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Bejegyzések közzététele"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Oldalak szerkesztése"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Read"
|
553 |
msgstr "Olvasás"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 10"
|
557 |
msgstr "10. szint"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 9"
|
561 |
msgstr "9. szint"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 8"
|
565 |
msgstr "8. szint"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 7"
|
569 |
msgstr "7. szint"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 6"
|
573 |
msgstr "6. szint"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 5"
|
577 |
msgstr "5. szint"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 4"
|
581 |
msgstr "4. szint"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 3"
|
585 |
msgstr "3. szint"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 2"
|
589 |
msgstr "2. szint"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 1"
|
593 |
msgstr "1. szint"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Level 0"
|
597 |
msgstr "0. szint"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Mások oldalainak szerkesztése"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Közzétett oldalak szerkesztése"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Oldalak közzététele"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Oldalak törlése"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Mások oldalainak törlése"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Közzétett oldalak törlése"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Bejegyzések törlése"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Mások bejegyzéseinek törlése"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Közzétett bejegyzések törlése"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Privát bejegyzések törlése"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Privát bejegyzések szerkesztése"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Privát bejegyzések olvasása"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Privát oldalak törlése"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Privát oldalak szerkesztése"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Privát oldalak olvasása"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Delete users"
|
661 |
msgstr "Felhasználók törlése"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Create users"
|
665 |
msgstr "Felhasználók létrehozása"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Szűretlen feltöltés"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Vezérlőpult szerkesztése"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Bővítmények frissítése"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Bővítmények törlése"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Bővítmények telepítése"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update themes"
|
689 |
msgstr "Sablonok frissítése"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Install themes"
|
693 |
msgstr "Sablonok telepítése"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Update core"
|
697 |
msgstr "Mag frissítése"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "List users"
|
701 |
msgstr "Felhasználók listázása"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Remove users"
|
705 |
msgstr "Felhasználók törlése"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Add users"
|
709 |
msgstr "Felhasználók hozzáadása"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Promote users"
|
713 |
msgstr "Felhasználók előléptetése"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Sablon beállítások módosítása"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Sablonok törlése"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Export"
|
725 |
msgstr "Exportálás"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
730 |
|
731 |
-
#: ../includes/class-ure-lib.php:
|
732 |
#, php-format
|
733 |
msgid "Capability %s is added successfully"
|
734 |
msgstr "%s képesség sikeresen hozzáadva"
|
735 |
|
736 |
-
#: ../includes/class-ure-lib.php:
|
737 |
#, php-format
|
738 |
msgid "Capability %s exists already"
|
739 |
msgstr "%s képesség már létezik"
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
#, php-format
|
743 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
744 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
745 |
|
746 |
-
#: ../includes/class-ure-lib.php:
|
747 |
#, php-format
|
748 |
msgid "Capability %s is removed successfully"
|
749 |
msgstr "%s képesség sikeresen törölve"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Version:"
|
753 |
msgstr "Verzió:"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Author's website"
|
757 |
msgstr "Szerző weboldala"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Plugin webpage"
|
761 |
msgstr "Bővítmény weboldala"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "Plugin download"
|
765 |
msgstr "Bővítmény letöltése"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "FAQ"
|
769 |
msgstr "GyIK"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "None"
|
773 |
msgstr "Nincs"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "Delete All Unused Roles"
|
777 |
msgstr "Minden nem használt szerepkör törlése"
|
778 |
|
779 |
-
#: ../includes/class-ure-lib.php:
|
780 |
msgid "— No role for this site —"
|
781 |
msgstr "— Nincs szerepköre ezen az oldalon —"
|
782 |
|
@@ -830,37 +830,36 @@ msgstr ""
|
|
830 |
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
831 |
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
832 |
|
833 |
-
#: ../includes/class-ure-screen-help.php:
|
834 |
-
|
835 |
-
|
836 |
-
|
|
|
|
|
837 |
|
838 |
-
#: ../includes/class-ure-screen-help.php:
|
839 |
-
#, fuzzy
|
840 |
msgid "Other default roles for new registered user"
|
841 |
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
842 |
|
843 |
-
#: ../includes/class-ure-screen-help.php:
|
844 |
-
#, fuzzy
|
845 |
msgid ""
|
846 |
"select roles below to assign them to the new user automatically as an "
|
847 |
"addition to the primary role. Note for multisite environment: take into "
|
848 |
"account that other default roles should exist at the site, in order to be "
|
849 |
"assigned to the new registered users."
|
850 |
msgstr ""
|
851 |
-
"
|
852 |
-
"
|
853 |
-
"
|
|
|
854 |
|
855 |
-
#: ../includes/class-ure-screen-help.php:
|
856 |
-
#, fuzzy
|
857 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
858 |
msgstr ""
|
859 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
860 |
"felhasználókat"
|
861 |
|
862 |
-
#: ../includes/class-ure-screen-help.php:
|
863 |
-
#, fuzzy
|
864 |
msgid ""
|
865 |
"Super administrator only may create, edit and delete users under WordPress "
|
866 |
"multi-site by default. Turn this option on in order to remove this "
|
@@ -870,10 +869,5 @@ msgstr ""
|
|
870 |
"módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
|
871 |
"feloldható."
|
872 |
|
873 |
-
#~ msgid "
|
874 |
-
#~ msgstr ""
|
875 |
-
#~ "Engedély felhasználó létrehozására, módosítására és törlésére a nem "
|
876 |
-
#~ "szuperadminoknak"
|
877 |
-
|
878 |
-
#~ msgid "Overview"
|
879 |
-
#~ msgstr "Áttekintés"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 4.16\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:24+0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Vladimir Garagulya <support@role-editor.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: hu_HU\n"
|
10 |
"MIME-Version: 1.0\n"
|
37 |
msgstr "Alap szerepkörök"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:565
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
66 |
msgstr "Mentés"
|
67 |
|
68 |
#: ../includes/settings-template.php:102
|
69 |
+
#: ../includes/class-ure-screen-help.php:41
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Szerepkör nélküli felhasználók számlálása"
|
72 |
|
120 |
msgstr "Beállítások"
|
121 |
|
122 |
#: ../includes/class-user-role-editor.php:525
|
123 |
+
#: ../includes/class-ure-lib.php:2295
|
124 |
msgid "Changelog"
|
125 |
msgstr "Változások naplója"
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:575
|
128 |
+
#: ../includes/class-user-role-editor.php:603
|
129 |
+
#: ../includes/class-user-role-editor.php:948
|
130 |
+
#: ../includes/class-ure-lib.php:251
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "Szerepkör szerkesztő"
|
133 |
|
134 |
+
#: ../includes/class-user-role-editor.php:660
|
135 |
+
#: ../includes/class-user-role-editor.php:678
|
136 |
+
#: ../includes/class-user-role-editor.php:722
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "Szerepkör szerkesztő beállításai frissítve"
|
139 |
|
140 |
+
#: ../includes/class-user-role-editor.php:706
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Alap szerepkörök frissítve"
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:730
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
148 |
msgstr ""
|
149 |
"Nincs elég jogosultsága a Szerepkör szerkesztő beállításainak kezeléséhez."
|
150 |
|
151 |
+
#: ../includes/class-user-role-editor.php:809
|
152 |
msgid "Insufficient permissions to work with User Role Editor"
|
153 |
msgstr "Nincs elég jogosultsága a Szerepkör szerkesztő használatához"
|
154 |
|
155 |
+
#: ../includes/class-user-role-editor.php:890
|
156 |
msgid "Select All"
|
157 |
msgstr "Összeset kijelöl"
|
158 |
|
159 |
+
#: ../includes/class-user-role-editor.php:891
|
160 |
msgid "Unselect All"
|
161 |
msgstr "Kijelölés megszünt."
|
162 |
|
163 |
+
#: ../includes/class-user-role-editor.php:892
|
164 |
msgid "Reverse"
|
165 |
msgstr "Fordított kijelölés"
|
166 |
|
167 |
+
#: ../includes/class-user-role-editor.php:893
|
168 |
msgid "Update"
|
169 |
msgstr "Frissítés"
|
170 |
|
171 |
+
#: ../includes/class-user-role-editor.php:894
|
172 |
msgid "Please confirm permissions update"
|
173 |
msgstr "Képességek frissítésének megersőítése"
|
174 |
|
175 |
+
#: ../includes/class-user-role-editor.php:895
|
176 |
msgid "Add New Role"
|
177 |
msgstr "Új szerepkör létrehozása"
|
178 |
|
179 |
+
#: ../includes/class-user-role-editor.php:896
|
180 |
+
#: ../includes/class-user-role-editor.php:901
|
181 |
msgid "Rename Role"
|
182 |
msgstr "Szerepkör átnevezés"
|
183 |
|
184 |
+
#: ../includes/class-user-role-editor.php:897
|
185 |
msgid " Role name (ID) can not be empty!"
|
186 |
msgstr "A szerepkör neve (azonosító) nem lehet üres!"
|
187 |
|
188 |
+
#: ../includes/class-user-role-editor.php:898
|
189 |
msgid ""
|
190 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
191 |
"only!"
|
193 |
"A szerepkör neve (azonosítója) csak latin betűket, szűmokat, kötőjelet és "
|
194 |
"aláhúzást tartalmazhat."
|
195 |
|
196 |
+
#: ../includes/class-user-role-editor.php:899
|
197 |
msgid ""
|
198 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
199 |
"it."
|
201 |
"A WordPress nem támoagtja a numeriks szerepkör neveket (azonosító). Kell "
|
202 |
"bele legalább egy latin betű."
|
203 |
|
204 |
+
#: ../includes/class-user-role-editor.php:900
|
205 |
msgid "Add Role"
|
206 |
msgstr "Új szerepkör"
|
207 |
|
208 |
+
#: ../includes/class-user-role-editor.php:902
|
209 |
msgid "Delete Role"
|
210 |
msgstr "Szerepkör törlése"
|
211 |
|
212 |
+
#: ../includes/class-user-role-editor.php:903
|
213 |
msgid "Cancel"
|
214 |
msgstr "Mégse"
|
215 |
|
216 |
+
#: ../includes/class-user-role-editor.php:904
|
217 |
msgid "Add Capability"
|
218 |
msgstr "Új képesség"
|
219 |
|
220 |
+
#: ../includes/class-user-role-editor.php:905
|
221 |
+
#: ../includes/class-user-role-editor.php:914
|
222 |
msgid "Delete Capability"
|
223 |
msgstr "Képesség törlése"
|
224 |
|
225 |
+
#: ../includes/class-user-role-editor.php:906
|
226 |
msgid "Reset"
|
227 |
msgstr "Alaphelyzet"
|
228 |
|
229 |
+
#: ../includes/class-user-role-editor.php:907
|
230 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
231 |
msgstr ""
|
232 |
"VESZÉLY! Az alaphelyzetre állítás a WordPress mag beállításait állítja be "
|
233 |
"újra."
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:908
|
236 |
msgid ""
|
237 |
"If any plugins have changed capabilities in any way upon installation (such "
|
238 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
240 |
"Ha bármilyen bővítmény módosított a képességeket bármilyen módon (pl.: "
|
241 |
"S2Member, WooCommerce, és sok másik), ezek a módosítások TÖRÖLVE lesznek!"
|
242 |
|
243 |
+
#: ../includes/class-user-role-editor.php:909
|
244 |
msgid ""
|
245 |
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
"go to"
|
248 |
"További információ a képességek módosításainak visszavonásáról és "
|
249 |
"helyreállításáról"
|
250 |
|
251 |
+
#: ../includes/class-user-role-editor.php:911
|
252 |
msgid "Continue?"
|
253 |
msgstr "Folytassuk?"
|
254 |
|
255 |
+
#: ../includes/class-user-role-editor.php:912
|
256 |
msgid "Default Role"
|
257 |
msgstr "Alap szerepkör"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:913
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Új alap szerepkör beállítása"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:915
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
268 |
"Figyelem! Legyen óvatos - kritikus képesség törlésétől leállhat néhány "
|
269 |
"bővítmény vagy egyedi kód."
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:916
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "A képesség név (azonosító) nem lehet üres."
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:917
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
280 |
"A képesség név (azonosító) csak latin betűkből, számokból, kötőjelből és "
|
281 |
"aláhúzásból állhat."
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:951
|
284 |
+
#: ../includes/class-user-role-editor.php:980
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Más szerepkörök"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:962
|
289 |
msgid "Edit"
|
290 |
msgstr "Szerkeszt"
|
291 |
|
318 |
msgid "Custom capabilities:"
|
319 |
msgstr "Egyedi képességek:"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:159
|
322 |
msgid "Error: wrong request"
|
323 |
msgstr "Hiba: hibás kérés"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
326 |
msgid "Role name (ID): "
|
327 |
msgstr "Szerepkör név (azonosító):"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
330 |
msgid "Display Role Name: "
|
331 |
msgstr "Szerepkör megnevezése:"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:196
|
334 |
msgid "Make copy of: "
|
335 |
msgstr "Ennek a másolata:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:212
|
338 |
msgid "Select Role:"
|
339 |
msgstr "Válasszon szerepkört:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:227
|
342 |
msgid "Delete:"
|
343 |
msgstr "Törlés:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:234
|
346 |
msgid "Capability name (ID): "
|
347 |
msgstr "Képesség név (azonosító):"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:348
|
350 |
msgid "Error: "
|
351 |
msgstr "Hiba:"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:348
|
354 |
msgid "Role"
|
355 |
msgstr "Szerepkör"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:349
|
358 |
msgid "does not exist"
|
359 |
msgstr "nem létezik"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:392
|
362 |
msgid "Role is updated successfully"
|
363 |
msgstr "Szerepkör sikeresen frissítve"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:394
|
366 |
msgid "Roles are updated for all network"
|
367 |
msgstr "Szerepkörök frissítése a teljes hálózaton"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:400
|
370 |
msgid "Error occured during role(s) update"
|
371 |
msgstr "Hiba történt a szerepkör(ök) frissítése során"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:407
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
msgstr "Felhasználó képességei sikeresen frissítve"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:412
|
378 |
msgid "Error occured during user update"
|
379 |
msgstr "Hiba történt a felhasználó frissítése során"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:470
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
msgstr "Felhasználói szerepkörök visszaállítva a WordPress alaphelyzetébe."
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1337
|
386 |
msgid "Help"
|
387 |
msgstr "Súgó"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1695
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
msgstr "Hiba történt. Nézze meg a naplófájlt!"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
398 |
"Hiba: a szerepkör azonosító csak latin betűkből, számokból, kötőjelből és "
|
399 |
"aláhúzásból állhat."
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
402 |
msgid ""
|
403 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
"characters to it."
|
406 |
"Hiba: a WordPress nem támogatja a numerikus szerepkör neveket "
|
407 |
"(azonosítókat). Legyen benn legalább egy latin betű."
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1757
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "%s szerepkör már létezik"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1772
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
msgstr "Hiba történt az új szerepkör létrehozása során."
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1774
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "%s szerepkör sikeresen létrehozva"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1798
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
msgstr "Hiba: a szerepkör azonosító üres!"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1816
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
msgstr "Hiba: nem lehet üres a szerepkör megjelenítendő neve."
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1823
|
432 |
#, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
msgstr "%s szerepkör nem létezik"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1831
|
437 |
#, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
msgstr "%s szerepkör sikeresen átnevezve erre: %s"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1898
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
msgstr "Hiba történt a szerepkör törlése során."
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1900
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
msgstr "A nem használt szerepkörök sikeresen törölve lettek."
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1902
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "%s szerepkör sikeresen törölve lett."
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1927
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
msgstr "Hiba történt az alap szerepkör módosítása során."
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:1933
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
msgstr "Az új felhasználók alap szerepköre sikeresen módosítva erre: %s"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1952
|
464 |
msgid "Editor"
|
465 |
msgstr "Szerkesztő"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1953
|
468 |
msgid "Author"
|
469 |
msgstr "Szerző"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1954
|
472 |
msgid "Contributor"
|
473 |
msgstr "Közreműködő"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1955
|
476 |
msgid "Subscriber"
|
477 |
msgstr "Feliratkozó"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1957
|
480 |
msgid "Switch themes"
|
481 |
msgstr "Sablon kiválasztása"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1958
|
484 |
msgid "Edit themes"
|
485 |
msgstr "Sablonok szerkesztése"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1959
|
488 |
msgid "Activate plugins"
|
489 |
msgstr "Bővítmény bekapcsolása"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1960
|
492 |
msgid "Edit plugins"
|
493 |
msgstr "Bővítmények szerkesztése"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1961
|
496 |
msgid "Edit users"
|
497 |
msgstr "Felhasználók szerkesztése"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1962
|
500 |
msgid "Edit files"
|
501 |
msgstr "Fájlok szerkesztése"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1963
|
504 |
msgid "Manage options"
|
505 |
msgstr "Beállítások kezelése"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1964
|
508 |
msgid "Moderate comments"
|
509 |
msgstr "Hozzászólások moderálása"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1965
|
512 |
msgid "Manage categories"
|
513 |
msgstr "Kategóriák kezelése"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1966
|
516 |
msgid "Manage links"
|
517 |
msgstr "Hivatkozások kezelése"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1967
|
520 |
msgid "Upload files"
|
521 |
msgstr "Fájlok feltöltése"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1968
|
524 |
msgid "Import"
|
525 |
msgstr "Importálás"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1969
|
528 |
msgid "Unfiltered html"
|
529 |
msgstr "Szűretlen HTML"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1970
|
532 |
msgid "Edit posts"
|
533 |
msgstr "Bejegyzések szerkesztése"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1971
|
536 |
msgid "Edit others posts"
|
537 |
msgstr "Mások bejegyzéseinek szerkeszése"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1972
|
540 |
msgid "Edit published posts"
|
541 |
msgstr "Közzétett bejegyzések szerkesztése"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1973
|
544 |
msgid "Publish posts"
|
545 |
msgstr "Bejegyzések közzététele"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1974
|
548 |
msgid "Edit pages"
|
549 |
msgstr "Oldalak szerkesztése"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1975
|
552 |
msgid "Read"
|
553 |
msgstr "Olvasás"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1976
|
556 |
msgid "Level 10"
|
557 |
msgstr "10. szint"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1977
|
560 |
msgid "Level 9"
|
561 |
msgstr "9. szint"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1978
|
564 |
msgid "Level 8"
|
565 |
msgstr "8. szint"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1979
|
568 |
msgid "Level 7"
|
569 |
msgstr "7. szint"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1980
|
572 |
msgid "Level 6"
|
573 |
msgstr "6. szint"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1981
|
576 |
msgid "Level 5"
|
577 |
msgstr "5. szint"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1982
|
580 |
msgid "Level 4"
|
581 |
msgstr "4. szint"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1983
|
584 |
msgid "Level 3"
|
585 |
msgstr "3. szint"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1984
|
588 |
msgid "Level 2"
|
589 |
msgstr "2. szint"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1985
|
592 |
msgid "Level 1"
|
593 |
msgstr "1. szint"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1986
|
596 |
msgid "Level 0"
|
597 |
msgstr "0. szint"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1987
|
600 |
msgid "Edit others pages"
|
601 |
msgstr "Mások oldalainak szerkesztése"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1988
|
604 |
msgid "Edit published pages"
|
605 |
msgstr "Közzétett oldalak szerkesztése"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1989
|
608 |
msgid "Publish pages"
|
609 |
msgstr "Oldalak közzététele"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1990
|
612 |
msgid "Delete pages"
|
613 |
msgstr "Oldalak törlése"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1991
|
616 |
msgid "Delete others pages"
|
617 |
msgstr "Mások oldalainak törlése"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1992
|
620 |
msgid "Delete published pages"
|
621 |
msgstr "Közzétett oldalak törlése"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1993
|
624 |
msgid "Delete posts"
|
625 |
msgstr "Bejegyzések törlése"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1994
|
628 |
msgid "Delete others posts"
|
629 |
msgstr "Mások bejegyzéseinek törlése"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1995
|
632 |
msgid "Delete published posts"
|
633 |
msgstr "Közzétett bejegyzések törlése"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1996
|
636 |
msgid "Delete private posts"
|
637 |
msgstr "Privát bejegyzések törlése"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1997
|
640 |
msgid "Edit private posts"
|
641 |
msgstr "Privát bejegyzések szerkesztése"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1998
|
644 |
msgid "Read private posts"
|
645 |
msgstr "Privát bejegyzések olvasása"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:1999
|
648 |
msgid "Delete private pages"
|
649 |
msgstr "Privát oldalak törlése"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2000
|
652 |
msgid "Edit private pages"
|
653 |
msgstr "Privát oldalak szerkesztése"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2001
|
656 |
msgid "Read private pages"
|
657 |
msgstr "Privát oldalak olvasása"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2002
|
660 |
msgid "Delete users"
|
661 |
msgstr "Felhasználók törlése"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2003
|
664 |
msgid "Create users"
|
665 |
msgstr "Felhasználók létrehozása"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2004
|
668 |
msgid "Unfiltered upload"
|
669 |
msgstr "Szűretlen feltöltés"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2005
|
672 |
msgid "Edit dashboard"
|
673 |
msgstr "Vezérlőpult szerkesztése"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2006
|
676 |
msgid "Update plugins"
|
677 |
msgstr "Bővítmények frissítése"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2007
|
680 |
msgid "Delete plugins"
|
681 |
msgstr "Bővítmények törlése"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2008
|
684 |
msgid "Install plugins"
|
685 |
msgstr "Bővítmények telepítése"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2009
|
688 |
msgid "Update themes"
|
689 |
msgstr "Sablonok frissítése"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2010
|
692 |
msgid "Install themes"
|
693 |
msgstr "Sablonok telepítése"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2011
|
696 |
msgid "Update core"
|
697 |
msgstr "Mag frissítése"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2012
|
700 |
msgid "List users"
|
701 |
msgstr "Felhasználók listázása"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2013
|
704 |
msgid "Remove users"
|
705 |
msgstr "Felhasználók törlése"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2014
|
708 |
msgid "Add users"
|
709 |
msgstr "Felhasználók hozzáadása"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2015
|
712 |
msgid "Promote users"
|
713 |
msgstr "Felhasználók előléptetése"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2016
|
716 |
msgid "Edit theme options"
|
717 |
msgstr "Sablon beállítások módosítása"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2017
|
720 |
msgid "Delete themes"
|
721 |
msgstr "Sablonok törlése"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2018
|
724 |
msgid "Export"
|
725 |
msgstr "Exportálás"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2128
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
msgstr "Hiba: a képesség neve csak latin betűkből és számokból állhat."
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2141
|
732 |
#, php-format
|
733 |
msgid "Capability %s is added successfully"
|
734 |
msgstr "%s képesség sikeresen hozzáadva"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2143
|
737 |
#, php-format
|
738 |
msgid "Capability %s exists already"
|
739 |
msgstr "%s képesség már létezik"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2168
|
742 |
#, php-format
|
743 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
744 |
msgstr "Hiba! Nincs jogosultsága a képesség (%s) törléséhez."
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2187
|
747 |
#, php-format
|
748 |
msgid "Capability %s is removed successfully"
|
749 |
msgstr "%s képesség sikeresen törölve"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2291
|
752 |
msgid "Version:"
|
753 |
msgstr "Verzió:"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2292
|
756 |
msgid "Author's website"
|
757 |
msgstr "Szerző weboldala"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2293
|
760 |
msgid "Plugin webpage"
|
761 |
msgstr "Bővítmény weboldala"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2294
|
764 |
msgid "Plugin download"
|
765 |
msgstr "Bővítmény letöltése"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2296
|
768 |
msgid "FAQ"
|
769 |
msgstr "GyIK"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2344
|
772 |
msgid "None"
|
773 |
msgstr "Nincs"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2371
|
776 |
msgid "Delete All Unused Roles"
|
777 |
msgstr "Minden nem használt szerepkör törlése"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2395
|
780 |
msgid "— No role for this site —"
|
781 |
msgstr "— Nincs szerepköre ezen az oldalon —"
|
782 |
|
830 |
"használja. Csak a régi sablonokkal és bővítményekkel való kompatíbilitás "
|
831 |
"miatt maradtak meg. Ez az opció ezeket az elavult képességeket jeleníti meg."
|
832 |
|
833 |
+
#: ../includes/class-ure-screen-help.php:42
|
834 |
+
msgid ""
|
835 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
836 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
837 |
+
"users list with role \"No rights\" at the separate tab then."
|
838 |
+
msgstr ""
|
839 |
|
840 |
+
#: ../includes/class-ure-screen-help.php:59
|
|
|
841 |
msgid "Other default roles for new registered user"
|
842 |
msgstr "Egyéb alap szerepkörök újonnan regisztrált felhasználók számára:"
|
843 |
|
844 |
+
#: ../includes/class-ure-screen-help.php:60
|
|
|
845 |
msgid ""
|
846 |
"select roles below to assign them to the new user automatically as an "
|
847 |
"addition to the primary role. Note for multisite environment: take into "
|
848 |
"account that other default roles should exist at the site, in order to be "
|
849 |
"assigned to the new registered users."
|
850 |
msgstr ""
|
851 |
+
"válassza ki alább az új felhasználókhoz (az elsődlegesen kívül) "
|
852 |
+
"automatikusan hozzárendelendő szerepköröket. Megjegyzés a MultiSite "
|
853 |
+
"környezethez: vegye figyelembe, hogy több alap szerepkörnek is léteznie kell "
|
854 |
+
"a weboldalon, az új felhasználók létrehozásához."
|
855 |
|
856 |
+
#: ../includes/class-ure-screen-help.php:78
|
|
|
857 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
858 |
msgstr ""
|
859 |
"Nem szuperadminok is hozhassanak létre, módosíthassanak és törölhessenek "
|
860 |
"felhasználókat"
|
861 |
|
862 |
+
#: ../includes/class-ure-screen-help.php:79
|
|
|
863 |
msgid ""
|
864 |
"Super administrator only may create, edit and delete users under WordPress "
|
865 |
"multi-site by default. Turn this option on in order to remove this "
|
869 |
"módosíthatnak és törölhetnek felhasználókat. Ezzel az opcióval ez a megkötés "
|
870 |
"feloldható."
|
871 |
|
872 |
+
#~ msgid "select roles below"
|
873 |
+
#~ msgstr "válasszon szerepköröket alább"
|
|
|
|
|
|
|
|
|
|
lang/ure-id_ID.mo
CHANGED
Binary file
|
lang/ure-id_ID.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: http://al-badar.net <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,70 +16,11 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
-
#: ../includes/settings-template.php:17
|
20 |
-
#, fuzzy
|
21 |
-
msgid "User Role Editor - Options"
|
22 |
-
msgstr "User Role Editor"
|
23 |
-
|
24 |
-
#: ../includes/settings-template.php:21
|
25 |
-
#: ../includes/class-user-role-editor.php:547
|
26 |
-
msgid "General"
|
27 |
-
msgstr ""
|
28 |
-
|
29 |
-
#: ../includes/settings-template.php:26
|
30 |
-
#: ../includes/class-user-role-editor.php:553
|
31 |
-
msgid "Additional Modules"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: ../includes/settings-template.php:30
|
35 |
-
#: ../includes/class-user-role-editor.php:559
|
36 |
-
#, fuzzy
|
37 |
-
msgid "Default Roles"
|
38 |
-
msgstr "Peran "
|
39 |
-
|
40 |
-
#: ../includes/settings-template.php:34
|
41 |
-
#: ../includes/class-user-role-editor.php:564
|
42 |
-
msgid "Multisite"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: ../includes/settings-template.php:39
|
46 |
-
msgid "About"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: ../includes/settings-template.php:53
|
50 |
-
#: ../includes/class-ure-screen-help.php:15
|
51 |
-
msgid "Show Administrator role at User Role Editor"
|
52 |
-
msgstr "Tampilkan peran Administrator di User Role Editor"
|
53 |
-
|
54 |
-
#: ../includes/settings-template.php:61
|
55 |
-
#: ../includes/class-ure-screen-help.php:18
|
56 |
-
msgid "Show capabilities in the human readable form"
|
57 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
58 |
-
|
59 |
-
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
60 |
-
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
61 |
-
msgid "Show deprecated capabilities"
|
62 |
-
msgstr "Tampilkan kemampuan usang"
|
63 |
-
|
64 |
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
65 |
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
66 |
msgid "Save"
|
67 |
msgstr "Simpan"
|
68 |
|
69 |
-
#: ../includes/settings-template.php:102
|
70 |
-
#: ../includes/class-ure-screen-help.php:40
|
71 |
-
msgid "Count users without role"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
-
#: ../includes/settings-template.php:129
|
75 |
-
#, fuzzy
|
76 |
-
msgid "Primary default role: "
|
77 |
-
msgstr "Peran Utama:"
|
78 |
-
|
79 |
-
#: ../includes/settings-template.php:136
|
80 |
-
msgid "Other default roles for new registered user: "
|
81 |
-
msgstr ""
|
82 |
-
|
83 |
#: ../includes/settings-template.php:142
|
84 |
msgid ""
|
85 |
"Note for multisite environment: take into account that other default roles "
|
@@ -87,10 +28,6 @@ msgid ""
|
|
87 |
"users."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: ../includes/settings-template.php:168
|
91 |
-
msgid "Allow non super administrators to create, edit, and delete users"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
#: ../includes/class-user-role-editor.php:195
|
95 |
msgid "Change role for users without role"
|
96 |
msgstr ""
|
@@ -117,29 +54,46 @@ msgid "Settings"
|
|
117 |
msgstr "Pengaturan"
|
118 |
|
119 |
#: ../includes/class-user-role-editor.php:525
|
120 |
-
#: ../includes/class-ure-lib.php:
|
121 |
msgid "Changelog"
|
122 |
msgstr "log Perubahan"
|
123 |
|
124 |
-
#: ../includes/class-user-role-editor.php:
|
125 |
-
|
126 |
-
|
127 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid "User Role Editor"
|
129 |
msgstr "User Role Editor"
|
130 |
|
131 |
-
#: ../includes/class-user-role-editor.php:
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
msgid "User Role Editor options are updated"
|
135 |
msgstr "Pilihan User Role Editor diperbarui"
|
136 |
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
#, fuzzy
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Peran "
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
@@ -147,45 +101,45 @@ msgstr ""
|
|
147 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
148 |
"Editor."
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid "Insufficient permissions to work with User Role Editor"
|
152 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
msgid "Select All"
|
156 |
msgstr "Pilih Semua"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
msgid "Unselect All"
|
160 |
msgstr "Batalkan Semua"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Reverse"
|
164 |
msgstr "Memutar"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Update"
|
168 |
msgstr "Pembaruan"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Please confirm permissions update"
|
172 |
msgstr "Harap konfirmasi pembaruan izin"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Add New Role"
|
176 |
msgstr "Tambah Peran Baru"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
#, fuzzy
|
181 |
msgid "Rename Role"
|
182 |
msgstr "Hapus Peran"
|
183 |
|
184 |
-
#: ../includes/class-user-role-editor.php:
|
185 |
msgid " Role name (ID) can not be empty!"
|
186 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
187 |
|
188 |
-
#: ../includes/class-user-role-editor.php:
|
189 |
msgid ""
|
190 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
191 |
"only!"
|
@@ -193,43 +147,43 @@ msgstr ""
|
|
193 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
194 |
"bawah saja!"
|
195 |
|
196 |
-
#: ../includes/class-user-role-editor.php:
|
197 |
msgid ""
|
198 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
199 |
"it."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: ../includes/class-user-role-editor.php:
|
203 |
msgid "Add Role"
|
204 |
msgstr "Tambah Peran"
|
205 |
|
206 |
-
#: ../includes/class-user-role-editor.php:
|
207 |
msgid "Delete Role"
|
208 |
msgstr "Hapus Peran"
|
209 |
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "Cancel"
|
212 |
msgstr "Batalkan"
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Add Capability"
|
216 |
msgstr "Tambah Kemampuan"
|
217 |
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
msgid "Delete Capability"
|
221 |
msgstr "Hapus Kemampuan"
|
222 |
|
223 |
-
#: ../includes/class-user-role-editor.php:
|
224 |
msgid "Reset"
|
225 |
msgstr "Atur Ulang"
|
226 |
|
227 |
-
#: ../includes/class-user-role-editor.php:
|
228 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
229 |
msgstr ""
|
230 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -238,7 +192,7 @@ msgstr ""
|
|
238 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
239 |
"DIHAPUS!"
|
240 |
|
241 |
-
#: ../includes/class-user-role-editor.php:
|
242 |
msgid ""
|
243 |
"For more information on how to undo changes and restore plugin capabilities "
|
244 |
"go to"
|
@@ -246,19 +200,19 @@ msgstr ""
|
|
246 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
247 |
"mengembalikan kemampuan Plugin pergi ke"
|
248 |
|
249 |
-
#: ../includes/class-user-role-editor.php:
|
250 |
msgid "Continue?"
|
251 |
msgstr "Lanjut?"
|
252 |
|
253 |
-
#: ../includes/class-user-role-editor.php:
|
254 |
msgid "Default Role"
|
255 |
msgstr "Peran "
|
256 |
|
257 |
-
#: ../includes/class-user-role-editor.php:
|
258 |
msgid "Set New Default Role"
|
259 |
msgstr "Atur Peran Baru Default"
|
260 |
|
261 |
-
#: ../includes/class-user-role-editor.php:
|
262 |
msgid ""
|
263 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
264 |
"or other custom code"
|
@@ -266,11 +220,11 @@ msgstr ""
|
|
266 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
267 |
"beberapa Plugin atau kode kustom lainnya"
|
268 |
|
269 |
-
#: ../includes/class-user-role-editor.php:
|
270 |
msgid " Capability name (ID) can not be empty!"
|
271 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
272 |
|
273 |
-
#: ../includes/class-user-role-editor.php:
|
274 |
msgid ""
|
275 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
276 |
"underscore only!"
|
@@ -278,118 +232,69 @@ msgstr ""
|
|
278 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
279 |
"atau garis bawah saja!"
|
280 |
|
281 |
-
#: ../includes/class-user-role-editor.php:
|
282 |
-
#: ../includes/class-user-role-editor.php:
|
283 |
msgid "Other Roles"
|
284 |
msgstr "Peran Lainnya"
|
285 |
|
286 |
-
#: ../includes/class-user-role-editor.php:
|
287 |
msgid "Edit"
|
288 |
msgstr "Sunting"
|
289 |
|
290 |
-
#: ../includes/ure-role-edit.php:17
|
291 |
-
#, fuzzy
|
292 |
-
msgid "Select Role and change its capabilities:"
|
293 |
-
msgstr "Pilih Peran dan ubah daftar kemampuan"
|
294 |
-
|
295 |
-
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
296 |
-
msgid "Show capabilities in human readable form"
|
297 |
-
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
298 |
-
|
299 |
#: ../includes/ure-role-edit.php:44
|
300 |
msgid "If checked, then apply action to ALL sites of this Network"
|
301 |
msgstr ""
|
302 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
303 |
|
304 |
-
#: ../includes/ure-
|
305 |
-
msgid "Apply to All Sites"
|
306 |
-
msgstr "Terapkan ke Semua Situs"
|
307 |
-
|
308 |
-
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
309 |
-
msgid "Core capabilities:"
|
310 |
-
msgstr "Kemampuan inti:"
|
311 |
-
|
312 |
-
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
313 |
-
msgid "Quick filter:"
|
314 |
-
msgstr "Saring Cepat:"
|
315 |
-
|
316 |
-
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
317 |
-
msgid "Custom capabilities:"
|
318 |
-
msgstr "Kustom kemampuan:"
|
319 |
-
|
320 |
-
#: ../includes/class-ure-lib.php:156
|
321 |
msgid "Error: wrong request"
|
322 |
msgstr "Salah: salah permintaan"
|
323 |
|
324 |
-
#: ../includes/class-ure-lib.php:
|
325 |
-
msgid "Role name (ID): "
|
326 |
-
msgstr "Nama Peran (ID):"
|
327 |
-
|
328 |
-
#: ../includes/class-ure-lib.php:191 ../includes/class-ure-lib.php:202
|
329 |
-
msgid "Display Role Name: "
|
330 |
-
msgstr "Tampilkan Nama Peran:"
|
331 |
-
|
332 |
-
#: ../includes/class-ure-lib.php:193
|
333 |
-
msgid "Make copy of: "
|
334 |
-
msgstr "buat salinan:"
|
335 |
-
|
336 |
-
#: ../includes/class-ure-lib.php:209
|
337 |
-
msgid "Select Role:"
|
338 |
-
msgstr "Pilih Peran:"
|
339 |
-
|
340 |
-
#: ../includes/class-ure-lib.php:224
|
341 |
-
msgid "Delete:"
|
342 |
-
msgstr "Hapus:"
|
343 |
-
|
344 |
-
#: ../includes/class-ure-lib.php:231
|
345 |
-
msgid "Capability name (ID): "
|
346 |
-
msgstr "Nama Kemampuan (ID):"
|
347 |
-
|
348 |
-
#: ../includes/class-ure-lib.php:345
|
349 |
msgid "Error: "
|
350 |
msgstr "Salah:"
|
351 |
|
352 |
-
#: ../includes/class-ure-lib.php:
|
353 |
msgid "Role"
|
354 |
msgstr "Peran"
|
355 |
|
356 |
-
#: ../includes/class-ure-lib.php:
|
357 |
msgid "does not exist"
|
358 |
msgstr "tidak ada"
|
359 |
|
360 |
-
#: ../includes/class-ure-lib.php:
|
361 |
msgid "Role is updated successfully"
|
362 |
msgstr "Peran berhasil diperbarui"
|
363 |
|
364 |
-
#: ../includes/class-ure-lib.php:
|
365 |
msgid "Roles are updated for all network"
|
366 |
msgstr "Peran diperbarui untuk semua jaringan"
|
367 |
|
368 |
-
#: ../includes/class-ure-lib.php:
|
369 |
msgid "Error occured during role(s) update"
|
370 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
371 |
|
372 |
-
#: ../includes/class-ure-lib.php:
|
373 |
msgid "User capabilities are updated successfully"
|
374 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
375 |
|
376 |
-
#: ../includes/class-ure-lib.php:
|
377 |
msgid "Error occured during user update"
|
378 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
379 |
|
380 |
-
#: ../includes/class-ure-lib.php:
|
381 |
msgid "User Roles are restored to WordPress default values. "
|
382 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
383 |
|
384 |
-
#: ../includes/class-ure-lib.php:
|
385 |
msgid "Help"
|
386 |
msgstr "Bantuan"
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "Error is occur. Please check the log file."
|
390 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
msgid ""
|
394 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
395 |
"only!"
|
@@ -397,384 +302,380 @@ msgstr ""
|
|
397 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
398 |
"dan garis bawah saja!"
|
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."
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
#, php-format
|
408 |
msgid "Role %s exists already"
|
409 |
msgstr "Peran %s telah ada"
|
410 |
|
411 |
-
#: ../includes/class-ure-lib.php:
|
412 |
msgid "Error is encountered during new role create operation"
|
413 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
#, php-format
|
417 |
msgid "Role %s is created successfully"
|
418 |
msgstr "Peran %s berhasil dibuat"
|
419 |
|
420 |
-
#: ../includes/class-ure-lib.php:
|
421 |
msgid "Error: Role ID is empty!"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
msgid "Error: Empty role display name is not allowed."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
#, fuzzy, php-format
|
430 |
msgid "Role %s does not exists"
|
431 |
msgstr "tidak ada"
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
#, fuzzy, php-format
|
435 |
msgid "Role %s is renamed to %s successfully"
|
436 |
msgstr "Peran %s berhasil dibuat"
|
437 |
|
438 |
-
#: ../includes/class-ure-lib.php:
|
439 |
msgid "Error encountered during role delete operation"
|
440 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Unused roles are deleted successfully"
|
444 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
#, php-format
|
448 |
msgid "Role %s is deleted successfully"
|
449 |
msgstr "Peran %s berhasil dihapus"
|
450 |
|
451 |
-
#: ../includes/class-ure-lib.php:
|
452 |
msgid "Error encountered during default role change operation"
|
453 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
#, php-format
|
457 |
msgid "Default role for new users is set to %s successfully"
|
458 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
459 |
|
460 |
-
#: ../includes/class-ure-lib.php:
|
461 |
msgid "Editor"
|
462 |
msgstr "Penyunting"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Author"
|
466 |
msgstr "Pengarang"
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Contributor"
|
470 |
msgstr "Kontributor"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Subscriber"
|
474 |
msgstr "Pelanggan"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Switch themes"
|
478 |
msgstr "Ganti tema"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Edit themes"
|
482 |
msgstr "Sunting tema"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Activate plugins"
|
486 |
msgstr "Aktifkan plugin"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Edit plugins"
|
490 |
msgstr "Sunting plugin"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Edit users"
|
494 |
msgstr "Sunting pengguna"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Edit files"
|
498 |
msgstr "Sunting data"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Manage options"
|
502 |
msgstr "kelola pilihan"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Moderate comments"
|
506 |
msgstr "Moderasi komentar"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Manage categories"
|
510 |
msgstr "Kelola kategori"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Manage links"
|
514 |
msgstr "Kelola tautan"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Upload files"
|
518 |
msgstr "Unggah data"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Import"
|
522 |
msgstr "Impor"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Unfiltered html"
|
526 |
msgstr "HTML tidak tersaring"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Edit posts"
|
530 |
msgstr "Sunting posting"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Edit others posts"
|
534 |
msgstr "Sunting posting lainnya"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Edit published posts"
|
538 |
msgstr "Sunting posting terpublikasi"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Publish posts"
|
542 |
msgstr "Publikasi posting"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Edit pages"
|
546 |
msgstr "Sunting halaman"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Read"
|
550 |
msgstr "Baca"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Level 10"
|
554 |
msgstr "Tingkat 10"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Level 9"
|
558 |
msgstr "Tingkat 9"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Level 8"
|
562 |
msgstr "Tingkat 8"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 7"
|
566 |
msgstr "Tingkat 7"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 6"
|
570 |
msgstr "Tingkat 6"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 5"
|
574 |
msgstr "Tingkat 5"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 4"
|
578 |
msgstr "Tingkat 4"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 3"
|
582 |
msgstr "Tingkat 3"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 2"
|
586 |
msgstr "Tingkat 2"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Level 1"
|
590 |
msgstr "Tingkat 1"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Level 0"
|
594 |
msgstr "Tingkat 0"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Edit others pages"
|
598 |
msgstr "Sunting halaman lainnya"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Edit published pages"
|
602 |
msgstr "Sunting halaman terpublikasi"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Publish pages"
|
606 |
msgstr "Publikasi halaman"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Delete pages"
|
610 |
msgstr "Hapus halaman"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Delete others pages"
|
614 |
msgstr "Hapus halaman lainnya"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Delete published pages"
|
618 |
msgstr "Hapus halaman terpublikasi"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete posts"
|
622 |
msgstr "hapus posting"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Delete others posts"
|
626 |
msgstr "Hapus posting lainnya"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Delete published posts"
|
630 |
msgstr "Hapus posting terpublikasi"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete private posts"
|
634 |
msgstr "Hapus posting pribadi"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Edit private posts"
|
638 |
msgstr "Sunting posting pribadi"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Read private posts"
|
642 |
msgstr "Baca posting pribadi"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Delete private pages"
|
646 |
msgstr "Hapus halaman pribadi"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Edit private pages"
|
650 |
msgstr "Sunting halaman pribadi"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Read private pages"
|
654 |
msgstr "baca halaman pribadi"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Delete users"
|
658 |
msgstr "Hapus pengguna"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Create users"
|
662 |
msgstr "Buat pengguna"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Unfiltered upload"
|
666 |
msgstr "Unggahan tidak tersaring"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Edit dashboard"
|
670 |
msgstr "Sunting dasbor"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Update plugins"
|
674 |
msgstr "Perbarui plugin"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Delete plugins"
|
678 |
msgstr "Hapus plugin"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Install plugins"
|
682 |
msgstr "Pasang plugin"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Update themes"
|
686 |
msgstr "Perbarui tema"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Install themes"
|
690 |
msgstr "Pasang tema"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Update core"
|
694 |
msgstr "Perbarui inti"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "List users"
|
698 |
msgstr "Daftar pengguna"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "Remove users"
|
702 |
msgstr "Hapus pengguna"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Add users"
|
706 |
msgstr "Tambah pengguna"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "Promote users"
|
710 |
msgstr "Promosi pengguna"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Edit theme options"
|
714 |
msgstr "Sunting pilihan tema"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Delete themes"
|
718 |
msgstr "Hapus tema"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Export"
|
722 |
msgstr "Ekspor"
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
726 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
#, php-format
|
730 |
msgid "Capability %s is added successfully"
|
731 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
#, php-format
|
735 |
msgid "Capability %s exists already"
|
736 |
msgstr "Kemampuan %s telah ada"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
#, php-format
|
740 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
741 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
#, php-format
|
745 |
msgid "Capability %s is removed successfully"
|
746 |
msgstr "Kemampuan %s berhasil dihapus"
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
-
msgid "Version:"
|
750 |
-
msgstr ""
|
751 |
-
|
752 |
-
#: ../includes/class-ure-lib.php:2289
|
753 |
msgid "Author's website"
|
754 |
msgstr "Website pengarang"
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
msgid "Plugin webpage"
|
758 |
msgstr "Halaman web Plugin"
|
759 |
|
760 |
-
#: ../includes/class-ure-lib.php:
|
761 |
#, fuzzy
|
762 |
msgid "Plugin download"
|
763 |
msgstr "Halaman web Plugin"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "FAQ"
|
767 |
msgstr "FAQ"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "None"
|
771 |
msgstr "Nihil"
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "Delete All Unused Roles"
|
775 |
msgstr "Hapus Peran Tidak Terpakai"
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
msgid "— No role for this site —"
|
779 |
msgstr "— Tidak ada peran untuk situs ini —"
|
780 |
|
@@ -786,17 +687,9 @@ msgstr "Jaringan Super Admin"
|
|
786 |
msgid "Change capabilities for user"
|
787 |
msgstr "Ubah kemampuan untuk pengguna"
|
788 |
|
789 |
-
#: ../includes/ure-
|
790 |
-
msgid "
|
791 |
-
msgstr "
|
792 |
-
|
793 |
-
#: ../includes/ure-user-edit.php:81
|
794 |
-
msgid "bbPress Role:"
|
795 |
-
msgstr "Peran bbPress:"
|
796 |
-
|
797 |
-
#: ../includes/ure-user-edit.php:91
|
798 |
-
msgid "Other Roles:"
|
799 |
-
msgstr "Peran Lain:"
|
800 |
|
801 |
#: ../includes/class-ure-screen-help.php:16
|
802 |
msgid ""
|
@@ -808,6 +701,10 @@ msgstr ""
|
|
808 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
809 |
"default demi alasan keamanan."
|
810 |
|
|
|
|
|
|
|
|
|
811 |
#: ../includes/class-ure-screen-help.php:19
|
812 |
msgid ""
|
813 |
"automatically converts capability names from the technical form for internal "
|
@@ -818,6 +715,10 @@ msgstr ""
|
|
818 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
819 |
"friendly, misalnya \"Edit posting orang lain\"."
|
820 |
|
|
|
|
|
|
|
|
|
821 |
#: ../includes/class-ure-screen-help.php:22
|
822 |
msgid ""
|
823 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
@@ -831,15 +732,21 @@ msgstr ""
|
|
831 |
"menunjukkan kemampuan mereka usang."
|
832 |
|
833 |
#: ../includes/class-ure-screen-help.php:41
|
834 |
-
|
835 |
-
|
836 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
837 |
|
838 |
-
#: ../includes/class-ure-screen-help.php:
|
839 |
msgid "Other default roles for new registered user"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: ../includes/class-ure-screen-help.php:
|
843 |
msgid ""
|
844 |
"select roles below to assign them to the new user automatically as an "
|
845 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -847,11 +754,11 @@ msgid ""
|
|
847 |
"assigned to the new registered users."
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: ../includes/class-ure-screen-help.php:
|
851 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../includes/class-ure-screen-help.php:
|
855 |
#, fuzzy
|
856 |
msgid ""
|
857 |
"Super administrator only may create, edit and delete users under WordPress "
|
@@ -862,6 +769,64 @@ msgstr ""
|
|
862 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
863 |
"keterbatasan ini."
|
864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
#~ msgid "Overview"
|
866 |
#~ msgstr "Ikhtisar"
|
867 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:25+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"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
20 |
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
21 |
msgid "Save"
|
22 |
msgstr "Simpan"
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
#: ../includes/settings-template.php:142
|
25 |
msgid ""
|
26 |
"Note for multisite environment: take into account that other default roles "
|
28 |
"users."
|
29 |
msgstr ""
|
30 |
|
|
|
|
|
|
|
|
|
31 |
#: ../includes/class-user-role-editor.php:195
|
32 |
msgid "Change role for users without role"
|
33 |
msgstr ""
|
54 |
msgstr "Pengaturan"
|
55 |
|
56 |
#: ../includes/class-user-role-editor.php:525
|
57 |
+
#: ../includes/class-ure-lib.php:2295
|
58 |
msgid "Changelog"
|
59 |
msgstr "log Perubahan"
|
60 |
|
61 |
+
#: ../includes/class-user-role-editor.php:547
|
62 |
+
msgid "General"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: ../includes/class-user-role-editor.php:553
|
66 |
+
msgid "Additional Modules"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: ../includes/class-user-role-editor.php:559
|
70 |
+
#, fuzzy
|
71 |
+
msgid "Default Roles"
|
72 |
+
msgstr "Peran "
|
73 |
+
|
74 |
+
#: ../includes/class-user-role-editor.php:565
|
75 |
+
msgid "Multisite"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: ../includes/class-user-role-editor.php:575
|
79 |
+
#: ../includes/class-user-role-editor.php:603
|
80 |
+
#: ../includes/class-user-role-editor.php:948
|
81 |
+
#: ../includes/class-ure-lib.php:251
|
82 |
msgid "User Role Editor"
|
83 |
msgstr "User Role Editor"
|
84 |
|
85 |
+
#: ../includes/class-user-role-editor.php:660
|
86 |
+
#: ../includes/class-user-role-editor.php:678
|
87 |
+
#: ../includes/class-user-role-editor.php:722
|
88 |
msgid "User Role Editor options are updated"
|
89 |
msgstr "Pilihan User Role Editor diperbarui"
|
90 |
|
91 |
+
#: ../includes/class-user-role-editor.php:706
|
92 |
#, fuzzy
|
93 |
msgid "Default Roles are updated"
|
94 |
msgstr "Peran "
|
95 |
|
96 |
+
#: ../includes/class-user-role-editor.php:730
|
97 |
msgid ""
|
98 |
"You do not have sufficient permissions to manage options for User Role "
|
99 |
"Editor."
|
101 |
"Anda tidak memiliki izin yang memadai untuk mengelola pilihan User Role "
|
102 |
"Editor."
|
103 |
|
104 |
+
#: ../includes/class-user-role-editor.php:809
|
105 |
msgid "Insufficient permissions to work with User Role Editor"
|
106 |
msgstr "Izin yang tidak sesuai untuk bekerja dengan User Role Editor"
|
107 |
|
108 |
+
#: ../includes/class-user-role-editor.php:890
|
109 |
msgid "Select All"
|
110 |
msgstr "Pilih Semua"
|
111 |
|
112 |
+
#: ../includes/class-user-role-editor.php:891
|
113 |
msgid "Unselect All"
|
114 |
msgstr "Batalkan Semua"
|
115 |
|
116 |
+
#: ../includes/class-user-role-editor.php:892
|
117 |
msgid "Reverse"
|
118 |
msgstr "Memutar"
|
119 |
|
120 |
+
#: ../includes/class-user-role-editor.php:893
|
121 |
msgid "Update"
|
122 |
msgstr "Pembaruan"
|
123 |
|
124 |
+
#: ../includes/class-user-role-editor.php:894
|
125 |
msgid "Please confirm permissions update"
|
126 |
msgstr "Harap konfirmasi pembaruan izin"
|
127 |
|
128 |
+
#: ../includes/class-user-role-editor.php:895
|
129 |
msgid "Add New Role"
|
130 |
msgstr "Tambah Peran Baru"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:896
|
133 |
+
#: ../includes/class-user-role-editor.php:901
|
134 |
#, fuzzy
|
135 |
msgid "Rename Role"
|
136 |
msgstr "Hapus Peran"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:897
|
139 |
msgid " Role name (ID) can not be empty!"
|
140 |
msgstr "Nama peran (ID) tidak boleh kosong!"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:898
|
143 |
msgid ""
|
144 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
145 |
"only!"
|
147 |
"Nama peran (ID) harus berisi karakter latin, angka, tanda hubung atau garis "
|
148 |
"bawah saja!"
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:899
|
151 |
msgid ""
|
152 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
153 |
"it."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:900
|
157 |
msgid "Add Role"
|
158 |
msgstr "Tambah Peran"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:902
|
161 |
msgid "Delete Role"
|
162 |
msgstr "Hapus Peran"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:903
|
165 |
msgid "Cancel"
|
166 |
msgstr "Batalkan"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:904
|
169 |
msgid "Add Capability"
|
170 |
msgstr "Tambah Kemampuan"
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:905
|
173 |
+
#: ../includes/class-user-role-editor.php:914
|
174 |
msgid "Delete Capability"
|
175 |
msgstr "Hapus Kemampuan"
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:906
|
178 |
msgid "Reset"
|
179 |
msgstr "Atur Ulang"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:907
|
182 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
183 |
msgstr ""
|
184 |
"BAHAYA! Reset akan mengembalikan pengaturan default dari WordPress Inti."
|
185 |
|
186 |
+
#: ../includes/class-user-role-editor.php:908
|
187 |
msgid ""
|
188 |
"If any plugins have changed capabilities in any way upon installation (such "
|
189 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
192 |
"(seperti S2Member, WooCommerce, dan banyak lagi), kemampuan mereka akan "
|
193 |
"DIHAPUS!"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:909
|
196 |
msgid ""
|
197 |
"For more information on how to undo changes and restore plugin capabilities "
|
198 |
"go to"
|
200 |
"Untuk informasi lebih lanjut tentang cara membatalkan perubahan dan "
|
201 |
"mengembalikan kemampuan Plugin pergi ke"
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:911
|
204 |
msgid "Continue?"
|
205 |
msgstr "Lanjut?"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:912
|
208 |
msgid "Default Role"
|
209 |
msgstr "Peran "
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:913
|
212 |
msgid "Set New Default Role"
|
213 |
msgstr "Atur Peran Baru Default"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:915
|
216 |
msgid ""
|
217 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
218 |
"or other custom code"
|
220 |
"Peringatan! Hati-hati - menghapus kemampuan kritis dapat menyebabkan crash "
|
221 |
"beberapa Plugin atau kode kustom lainnya"
|
222 |
|
223 |
+
#: ../includes/class-user-role-editor.php:916
|
224 |
msgid " Capability name (ID) can not be empty!"
|
225 |
msgstr "Nama Kemampuan (ID) tidak boleh kosong!"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:917
|
228 |
msgid ""
|
229 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
230 |
"underscore only!"
|
232 |
"Nama Kemampuan (ID) harus mengandung karakter latin, angka, kata penghubung "
|
233 |
"atau garis bawah saja!"
|
234 |
|
235 |
+
#: ../includes/class-user-role-editor.php:951
|
236 |
+
#: ../includes/class-user-role-editor.php:980
|
237 |
msgid "Other Roles"
|
238 |
msgstr "Peran Lainnya"
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:962
|
241 |
msgid "Edit"
|
242 |
msgstr "Sunting"
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
#: ../includes/ure-role-edit.php:44
|
245 |
msgid "If checked, then apply action to ALL sites of this Network"
|
246 |
msgstr ""
|
247 |
"Jika dicentang, kemudian terapkan tindakan untuk SEMUA situs Jaringan ini"
|
248 |
|
249 |
+
#: ../includes/class-ure-lib.php:159
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
250 |
msgid "Error: wrong request"
|
251 |
msgstr "Salah: salah permintaan"
|
252 |
|
253 |
+
#: ../includes/class-ure-lib.php:348
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "Error: "
|
255 |
msgstr "Salah:"
|
256 |
|
257 |
+
#: ../includes/class-ure-lib.php:348
|
258 |
msgid "Role"
|
259 |
msgstr "Peran"
|
260 |
|
261 |
+
#: ../includes/class-ure-lib.php:349
|
262 |
msgid "does not exist"
|
263 |
msgstr "tidak ada"
|
264 |
|
265 |
+
#: ../includes/class-ure-lib.php:392
|
266 |
msgid "Role is updated successfully"
|
267 |
msgstr "Peran berhasil diperbarui"
|
268 |
|
269 |
+
#: ../includes/class-ure-lib.php:394
|
270 |
msgid "Roles are updated for all network"
|
271 |
msgstr "Peran diperbarui untuk semua jaringan"
|
272 |
|
273 |
+
#: ../includes/class-ure-lib.php:400
|
274 |
msgid "Error occured during role(s) update"
|
275 |
msgstr "Kesalahan terjadi selama pembaruan peran"
|
276 |
|
277 |
+
#: ../includes/class-ure-lib.php:407
|
278 |
msgid "User capabilities are updated successfully"
|
279 |
msgstr "Kemampuan pengguna berhasil diperbarui"
|
280 |
|
281 |
+
#: ../includes/class-ure-lib.php:412
|
282 |
msgid "Error occured during user update"
|
283 |
msgstr "Kesalahan terjadi sepanjang pembaruan pengguna"
|
284 |
|
285 |
+
#: ../includes/class-ure-lib.php:470
|
286 |
msgid "User Roles are restored to WordPress default values. "
|
287 |
msgstr "Peran Pengguna dikembalikan ke nilai Wordpress default."
|
288 |
|
289 |
+
#: ../includes/class-ure-lib.php:1337
|
290 |
msgid "Help"
|
291 |
msgstr "Bantuan"
|
292 |
|
293 |
+
#: ../includes/class-ure-lib.php:1695
|
294 |
msgid "Error is occur. Please check the log file."
|
295 |
msgstr "kesalahan terjadi, Harap periksa log data."
|
296 |
|
297 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
298 |
msgid ""
|
299 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
300 |
"only!"
|
302 |
"Kesalahan: ID Peran harus mengandung karakter latin, angka, kata penghubung "
|
303 |
"dan garis bawah saja!"
|
304 |
|
305 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
306 |
msgid ""
|
307 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
308 |
"characters to it."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:1757
|
312 |
#, php-format
|
313 |
msgid "Role %s exists already"
|
314 |
msgstr "Peran %s telah ada"
|
315 |
|
316 |
+
#: ../includes/class-ure-lib.php:1772
|
317 |
msgid "Error is encountered during new role create operation"
|
318 |
msgstr "Kesalahan ditemui selama peran baru membuat operasi"
|
319 |
|
320 |
+
#: ../includes/class-ure-lib.php:1774
|
321 |
#, php-format
|
322 |
msgid "Role %s is created successfully"
|
323 |
msgstr "Peran %s berhasil dibuat"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:1798
|
326 |
msgid "Error: Role ID is empty!"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:1816
|
330 |
msgid "Error: Empty role display name is not allowed."
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:1823
|
334 |
#, fuzzy, php-format
|
335 |
msgid "Role %s does not exists"
|
336 |
msgstr "tidak ada"
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:1831
|
339 |
#, fuzzy, php-format
|
340 |
msgid "Role %s is renamed to %s successfully"
|
341 |
msgstr "Peran %s berhasil dibuat"
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:1898
|
344 |
msgid "Error encountered during role delete operation"
|
345 |
msgstr "Kesalahan ditemui selama operasi penghapusan peran"
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:1900
|
348 |
msgid "Unused roles are deleted successfully"
|
349 |
msgstr "Peran yang tidak digunakan berhasil dihapus"
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:1902
|
352 |
#, php-format
|
353 |
msgid "Role %s is deleted successfully"
|
354 |
msgstr "Peran %s berhasil dihapus"
|
355 |
|
356 |
+
#: ../includes/class-ure-lib.php:1927
|
357 |
msgid "Error encountered during default role change operation"
|
358 |
msgstr "Kesalahan ditemui selama operasi perubahan peran standar"
|
359 |
|
360 |
+
#: ../includes/class-ure-lib.php:1933
|
361 |
#, php-format
|
362 |
msgid "Default role for new users is set to %s successfully"
|
363 |
msgstr "Peran standar untuk pengguna baru diatur ke %s dengan sukses"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:1952
|
366 |
msgid "Editor"
|
367 |
msgstr "Penyunting"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:1953
|
370 |
msgid "Author"
|
371 |
msgstr "Pengarang"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:1954
|
374 |
msgid "Contributor"
|
375 |
msgstr "Kontributor"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1955
|
378 |
msgid "Subscriber"
|
379 |
msgstr "Pelanggan"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1957
|
382 |
msgid "Switch themes"
|
383 |
msgstr "Ganti tema"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1958
|
386 |
msgid "Edit themes"
|
387 |
msgstr "Sunting tema"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1959
|
390 |
msgid "Activate plugins"
|
391 |
msgstr "Aktifkan plugin"
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1960
|
394 |
msgid "Edit plugins"
|
395 |
msgstr "Sunting plugin"
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1961
|
398 |
msgid "Edit users"
|
399 |
msgstr "Sunting pengguna"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1962
|
402 |
msgid "Edit files"
|
403 |
msgstr "Sunting data"
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1963
|
406 |
msgid "Manage options"
|
407 |
msgstr "kelola pilihan"
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1964
|
410 |
msgid "Moderate comments"
|
411 |
msgstr "Moderasi komentar"
|
412 |
|
413 |
+
#: ../includes/class-ure-lib.php:1965
|
414 |
msgid "Manage categories"
|
415 |
msgstr "Kelola kategori"
|
416 |
|
417 |
+
#: ../includes/class-ure-lib.php:1966
|
418 |
msgid "Manage links"
|
419 |
msgstr "Kelola tautan"
|
420 |
|
421 |
+
#: ../includes/class-ure-lib.php:1967
|
422 |
msgid "Upload files"
|
423 |
msgstr "Unggah data"
|
424 |
|
425 |
+
#: ../includes/class-ure-lib.php:1968
|
426 |
msgid "Import"
|
427 |
msgstr "Impor"
|
428 |
|
429 |
+
#: ../includes/class-ure-lib.php:1969
|
430 |
msgid "Unfiltered html"
|
431 |
msgstr "HTML tidak tersaring"
|
432 |
|
433 |
+
#: ../includes/class-ure-lib.php:1970
|
434 |
msgid "Edit posts"
|
435 |
msgstr "Sunting posting"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1971
|
438 |
msgid "Edit others posts"
|
439 |
msgstr "Sunting posting lainnya"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1972
|
442 |
msgid "Edit published posts"
|
443 |
msgstr "Sunting posting terpublikasi"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1973
|
446 |
msgid "Publish posts"
|
447 |
msgstr "Publikasi posting"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1974
|
450 |
msgid "Edit pages"
|
451 |
msgstr "Sunting halaman"
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1975
|
454 |
msgid "Read"
|
455 |
msgstr "Baca"
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1976
|
458 |
msgid "Level 10"
|
459 |
msgstr "Tingkat 10"
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1977
|
462 |
msgid "Level 9"
|
463 |
msgstr "Tingkat 9"
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1978
|
466 |
msgid "Level 8"
|
467 |
msgstr "Tingkat 8"
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1979
|
470 |
msgid "Level 7"
|
471 |
msgstr "Tingkat 7"
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1980
|
474 |
msgid "Level 6"
|
475 |
msgstr "Tingkat 6"
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1981
|
478 |
msgid "Level 5"
|
479 |
msgstr "Tingkat 5"
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1982
|
482 |
msgid "Level 4"
|
483 |
msgstr "Tingkat 4"
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1983
|
486 |
msgid "Level 3"
|
487 |
msgstr "Tingkat 3"
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1984
|
490 |
msgid "Level 2"
|
491 |
msgstr "Tingkat 2"
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1985
|
494 |
msgid "Level 1"
|
495 |
msgstr "Tingkat 1"
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1986
|
498 |
msgid "Level 0"
|
499 |
msgstr "Tingkat 0"
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1987
|
502 |
msgid "Edit others pages"
|
503 |
msgstr "Sunting halaman lainnya"
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1988
|
506 |
msgid "Edit published pages"
|
507 |
msgstr "Sunting halaman terpublikasi"
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1989
|
510 |
msgid "Publish pages"
|
511 |
msgstr "Publikasi halaman"
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1990
|
514 |
msgid "Delete pages"
|
515 |
msgstr "Hapus halaman"
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1991
|
518 |
msgid "Delete others pages"
|
519 |
msgstr "Hapus halaman lainnya"
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1992
|
522 |
msgid "Delete published pages"
|
523 |
msgstr "Hapus halaman terpublikasi"
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1993
|
526 |
msgid "Delete posts"
|
527 |
msgstr "hapus posting"
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1994
|
530 |
msgid "Delete others posts"
|
531 |
msgstr "Hapus posting lainnya"
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1995
|
534 |
msgid "Delete published posts"
|
535 |
msgstr "Hapus posting terpublikasi"
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1996
|
538 |
msgid "Delete private posts"
|
539 |
msgstr "Hapus posting pribadi"
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1997
|
542 |
msgid "Edit private posts"
|
543 |
msgstr "Sunting posting pribadi"
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1998
|
546 |
msgid "Read private posts"
|
547 |
msgstr "Baca posting pribadi"
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1999
|
550 |
msgid "Delete private pages"
|
551 |
msgstr "Hapus halaman pribadi"
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:2000
|
554 |
msgid "Edit private pages"
|
555 |
msgstr "Sunting halaman pribadi"
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:2001
|
558 |
msgid "Read private pages"
|
559 |
msgstr "baca halaman pribadi"
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:2002
|
562 |
msgid "Delete users"
|
563 |
msgstr "Hapus pengguna"
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:2003
|
566 |
msgid "Create users"
|
567 |
msgstr "Buat pengguna"
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:2004
|
570 |
msgid "Unfiltered upload"
|
571 |
msgstr "Unggahan tidak tersaring"
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:2005
|
574 |
msgid "Edit dashboard"
|
575 |
msgstr "Sunting dasbor"
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:2006
|
578 |
msgid "Update plugins"
|
579 |
msgstr "Perbarui plugin"
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:2007
|
582 |
msgid "Delete plugins"
|
583 |
msgstr "Hapus plugin"
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:2008
|
586 |
msgid "Install plugins"
|
587 |
msgstr "Pasang plugin"
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:2009
|
590 |
msgid "Update themes"
|
591 |
msgstr "Perbarui tema"
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:2010
|
594 |
msgid "Install themes"
|
595 |
msgstr "Pasang tema"
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:2011
|
598 |
msgid "Update core"
|
599 |
msgstr "Perbarui inti"
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:2012
|
602 |
msgid "List users"
|
603 |
msgstr "Daftar pengguna"
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:2013
|
606 |
msgid "Remove users"
|
607 |
msgstr "Hapus pengguna"
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:2014
|
610 |
msgid "Add users"
|
611 |
msgstr "Tambah pengguna"
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:2015
|
614 |
msgid "Promote users"
|
615 |
msgstr "Promosi pengguna"
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:2016
|
618 |
msgid "Edit theme options"
|
619 |
msgstr "Sunting pilihan tema"
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:2017
|
622 |
msgid "Delete themes"
|
623 |
msgstr "Hapus tema"
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2018
|
626 |
msgid "Export"
|
627 |
msgstr "Ekspor"
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2128
|
630 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
631 |
msgstr "Salah: Kemampuan nama harus mengandung karakter latin dan angka saja!"
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2141
|
634 |
#, php-format
|
635 |
msgid "Capability %s is added successfully"
|
636 |
msgstr "Kemampuan %s berhasil ditambahkan"
|
637 |
|
638 |
+
#: ../includes/class-ure-lib.php:2143
|
639 |
#, php-format
|
640 |
msgid "Capability %s exists already"
|
641 |
msgstr "Kemampuan %s telah ada"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:2168
|
644 |
#, php-format
|
645 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
646 |
msgstr "Salah! Anda tidak memiliki izin untuk menghapus kemampuan ini: %s!"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:2187
|
649 |
#, php-format
|
650 |
msgid "Capability %s is removed successfully"
|
651 |
msgstr "Kemampuan %s berhasil dihapus"
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2292
|
|
|
|
|
|
|
|
|
654 |
msgid "Author's website"
|
655 |
msgstr "Website pengarang"
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2293
|
658 |
msgid "Plugin webpage"
|
659 |
msgstr "Halaman web Plugin"
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2294
|
662 |
#, fuzzy
|
663 |
msgid "Plugin download"
|
664 |
msgstr "Halaman web Plugin"
|
665 |
|
666 |
+
#: ../includes/class-ure-lib.php:2296
|
667 |
msgid "FAQ"
|
668 |
msgstr "FAQ"
|
669 |
|
670 |
+
#: ../includes/class-ure-lib.php:2344
|
671 |
msgid "None"
|
672 |
msgstr "Nihil"
|
673 |
|
674 |
+
#: ../includes/class-ure-lib.php:2371
|
675 |
msgid "Delete All Unused Roles"
|
676 |
msgstr "Hapus Peran Tidak Terpakai"
|
677 |
|
678 |
+
#: ../includes/class-ure-lib.php:2395
|
679 |
msgid "— No role for this site —"
|
680 |
msgstr "— Tidak ada peran untuk situs ini —"
|
681 |
|
687 |
msgid "Change capabilities for user"
|
688 |
msgstr "Ubah kemampuan untuk pengguna"
|
689 |
|
690 |
+
#: ../includes/class-ure-screen-help.php:15
|
691 |
+
msgid "Show Administrator role at User Role Editor"
|
692 |
+
msgstr "Tampilkan peran Administrator di User Role Editor"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
693 |
|
694 |
#: ../includes/class-ure-screen-help.php:16
|
695 |
msgid ""
|
701 |
"daftar seleksi pilihan peran User Role Editor. Akan tersembunyi secara "
|
702 |
"default demi alasan keamanan."
|
703 |
|
704 |
+
#: ../includes/class-ure-screen-help.php:18
|
705 |
+
msgid "Show capabilities in the human readable form"
|
706 |
+
msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
707 |
+
|
708 |
#: ../includes/class-ure-screen-help.php:19
|
709 |
msgid ""
|
710 |
"automatically converts capability names from the technical form for internal "
|
715 |
"penggunaan internal seperti \"edit_others_posts\" ke bentuk yang lebih user "
|
716 |
"friendly, misalnya \"Edit posting orang lain\"."
|
717 |
|
718 |
+
#: ../includes/class-ure-screen-help.php:21
|
719 |
+
msgid "Show deprecated capabilities"
|
720 |
+
msgstr "Tampilkan kemampuan usang"
|
721 |
+
|
722 |
#: ../includes/class-ure-screen-help.php:22
|
723 |
msgid ""
|
724 |
"Capabilities like \"level_0\", \"level_1\" are deprecated and are not used "
|
732 |
"menunjukkan kemampuan mereka usang."
|
733 |
|
734 |
#: ../includes/class-ure-screen-help.php:41
|
735 |
+
msgid "Count users without role"
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: ../includes/class-ure-screen-help.php:42
|
739 |
+
msgid ""
|
740 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
741 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
742 |
+
"users list with role \"No rights\" at the separate tab then."
|
743 |
+
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-screen-help.php:59
|
746 |
msgid "Other default roles for new registered user"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../includes/class-ure-screen-help.php:60
|
750 |
msgid ""
|
751 |
"select roles below to assign them to the new user automatically as an "
|
752 |
"addition to the primary role. Note for multisite environment: take into "
|
754 |
"assigned to the new registered users."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: ../includes/class-ure-screen-help.php:78
|
758 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: ../includes/class-ure-screen-help.php:79
|
762 |
#, fuzzy
|
763 |
msgid ""
|
764 |
"Super administrator only may create, edit and delete users under WordPress "
|
769 |
"bawah WordPress multi-situs. Aktifkan pilihan ini dalam rangka menghapus "
|
770 |
"keterbatasan ini."
|
771 |
|
772 |
+
#, fuzzy
|
773 |
+
#~ msgid "User Role Editor - Options"
|
774 |
+
#~ msgstr "User Role Editor"
|
775 |
+
|
776 |
+
#, fuzzy
|
777 |
+
#~ msgid "Primary default role: "
|
778 |
+
#~ msgstr "Peran Utama:"
|
779 |
+
|
780 |
+
#, fuzzy
|
781 |
+
#~ msgid "Select Role and change its capabilities:"
|
782 |
+
#~ msgstr "Pilih Peran dan ubah daftar kemampuan"
|
783 |
+
|
784 |
+
#~ msgid "Show capabilities in human readable form"
|
785 |
+
#~ msgstr "Tampilkan kemampuan dalam bentuk yang dapat dibaca manusia"
|
786 |
+
|
787 |
+
#~ msgid "Apply to All Sites"
|
788 |
+
#~ msgstr "Terapkan ke Semua Situs"
|
789 |
+
|
790 |
+
#~ msgid "Core capabilities:"
|
791 |
+
#~ msgstr "Kemampuan inti:"
|
792 |
+
|
793 |
+
#~ msgid "Quick filter:"
|
794 |
+
#~ msgstr "Saring Cepat:"
|
795 |
+
|
796 |
+
#~ msgid "Custom capabilities:"
|
797 |
+
#~ msgstr "Kustom kemampuan:"
|
798 |
+
|
799 |
+
#~ msgid "Role name (ID): "
|
800 |
+
#~ msgstr "Nama Peran (ID):"
|
801 |
+
|
802 |
+
#~ msgid "Display Role Name: "
|
803 |
+
#~ msgstr "Tampilkan Nama Peran:"
|
804 |
+
|
805 |
+
#~ msgid "Make copy of: "
|
806 |
+
#~ msgstr "buat salinan:"
|
807 |
+
|
808 |
+
#~ msgid "Select Role:"
|
809 |
+
#~ msgstr "Pilih Peran:"
|
810 |
+
|
811 |
+
#~ msgid "Delete:"
|
812 |
+
#~ msgstr "Hapus:"
|
813 |
+
|
814 |
+
#~ msgid "Capability name (ID): "
|
815 |
+
#~ msgstr "Nama Kemampuan (ID):"
|
816 |
+
|
817 |
+
#~ msgid "Primary Role:"
|
818 |
+
#~ msgstr "Peran Utama:"
|
819 |
+
|
820 |
+
#~ msgid "bbPress Role:"
|
821 |
+
#~ msgstr "Peran bbPress:"
|
822 |
+
|
823 |
+
#~ msgid "Other Roles:"
|
824 |
+
#~ msgstr "Peran Lain:"
|
825 |
+
|
826 |
+
#, fuzzy
|
827 |
+
#~ msgid "select roles below"
|
828 |
+
#~ msgstr "Batalkan Semua"
|
829 |
+
|
830 |
#~ msgid "Overview"
|
831 |
#~ msgstr "Ikhtisar"
|
832 |
|
lang/ure-nl.mo
CHANGED
Binary file
|
lang/ure-nl.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -37,7 +37,7 @@ msgid "Default Roles"
|
|
37 |
msgstr "Standaard Rollen"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
-
#: ../includes/class-user-role-editor.php:
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
@@ -66,7 +66,7 @@ msgid "Save"
|
|
66 |
msgstr "Opslaan"
|
67 |
|
68 |
#: ../includes/settings-template.php:102
|
69 |
-
#: ../includes/class-ure-screen-help.php:
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Het aantal Gebruikers zonder rol"
|
72 |
|
@@ -120,71 +120,71 @@ msgid "Settings"
|
|
120 |
msgstr "Instellingen"
|
121 |
|
122 |
#: ../includes/class-user-role-editor.php:525
|
123 |
-
#: ../includes/class-ure-lib.php:
|
124 |
msgid "Changelog"
|
125 |
msgstr "Changelog"
|
126 |
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-ure-lib.php:
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "User Rol Editor"
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "User Role Editor opties zijn ge-update"
|
139 |
|
140 |
-
#: ../includes/class-user-role-editor.php:
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Standaard Rollen zijn ge-update"
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
148 |
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
149 |
|
150 |
-
#: ../includes/class-user-role-editor.php:
|
151 |
msgid "Insufficient permissions to work with User Role Editor"
|
152 |
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
153 |
|
154 |
-
#: ../includes/class-user-role-editor.php:
|
155 |
msgid "Select All"
|
156 |
msgstr "Alles selecteren"
|
157 |
|
158 |
-
#: ../includes/class-user-role-editor.php:
|
159 |
msgid "Unselect All"
|
160 |
msgstr "Alles deselecteren"
|
161 |
|
162 |
-
#: ../includes/class-user-role-editor.php:
|
163 |
msgid "Reverse"
|
164 |
msgstr "Omzetten"
|
165 |
|
166 |
-
#: ../includes/class-user-role-editor.php:
|
167 |
msgid "Update"
|
168 |
msgstr "Update"
|
169 |
|
170 |
-
#: ../includes/class-user-role-editor.php:
|
171 |
msgid "Please confirm permissions update"
|
172 |
msgstr "Bevestig toestemming om te mogen updaten"
|
173 |
|
174 |
-
#: ../includes/class-user-role-editor.php:
|
175 |
msgid "Add New Role"
|
176 |
msgstr "Nieuwe Rol Toevoegen"
|
177 |
|
178 |
-
#: ../includes/class-user-role-editor.php:
|
179 |
-
#: ../includes/class-user-role-editor.php:
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Hernoem Rol"
|
182 |
|
183 |
-
#: ../includes/class-user-role-editor.php:
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
@@ -192,7 +192,7 @@ msgstr ""
|
|
192 |
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
193 |
"bevatten!"
|
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."
|
@@ -200,38 +200,38 @@ msgstr ""
|
|
200 |
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
201 |
"aan toe."
|
202 |
|
203 |
-
#: ../includes/class-user-role-editor.php:
|
204 |
msgid "Add Role"
|
205 |
msgstr "Rol toevoegen"
|
206 |
|
207 |
-
#: ../includes/class-user-role-editor.php:
|
208 |
msgid "Delete Role"
|
209 |
msgstr "Rol verwijderen"
|
210 |
|
211 |
-
#: ../includes/class-user-role-editor.php:
|
212 |
msgid "Cancel"
|
213 |
msgstr "Annuleren"
|
214 |
|
215 |
-
#: ../includes/class-user-role-editor.php:
|
216 |
msgid "Add Capability"
|
217 |
msgstr "Recht toevoegen"
|
218 |
|
219 |
-
#: ../includes/class-user-role-editor.php:
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
msgid "Delete Capability"
|
222 |
msgstr "Recht verwijderen"
|
223 |
|
224 |
-
#: ../includes/class-user-role-editor.php:
|
225 |
msgid "Reset"
|
226 |
msgstr "Terugkeren naar de basisinstellingen"
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
230 |
msgstr ""
|
231 |
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
232 |
"Core"
|
233 |
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid ""
|
236 |
"If any plugins have changed capabilities in any way upon installation (such "
|
237 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -240,7 +240,7 @@ msgstr ""
|
|
240 |
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
241 |
"instellingen worden VERWIJDERD!"
|
242 |
|
243 |
-
#: ../includes/class-user-role-editor.php:
|
244 |
msgid ""
|
245 |
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
"go to"
|
@@ -248,19 +248,19 @@ msgstr ""
|
|
248 |
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
249 |
"van de plugin kunt herstellen ga naar"
|
250 |
|
251 |
-
#: ../includes/class-user-role-editor.php:
|
252 |
msgid "Continue?"
|
253 |
msgstr "Doorgaan?"
|
254 |
|
255 |
-
#: ../includes/class-user-role-editor.php:
|
256 |
msgid "Default Role"
|
257 |
msgstr "Standaard Rol"
|
258 |
|
259 |
-
#: ../includes/class-user-role-editor.php:
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Maak een nieuwe standaard rol aan"
|
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 |
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
269 |
"plugins of aangepaste code crashen"
|
270 |
|
271 |
-
#: ../includes/class-user-role-editor.php:
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
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 |
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
281 |
"underscores bevatten!!"
|
282 |
|
283 |
-
#: ../includes/class-user-role-editor.php:
|
284 |
-
#: ../includes/class-user-role-editor.php:
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Andere Rollen"
|
287 |
|
288 |
-
#: ../includes/class-user-role-editor.php:
|
289 |
msgid "Edit"
|
290 |
msgstr "Wijzigen"
|
291 |
|
@@ -319,79 +319,79 @@ msgstr "Snel filter:"
|
|
319 |
msgid "Custom capabilities:"
|
320 |
msgstr "Gebruikelijke rechten:"
|
321 |
|
322 |
-
#: ../includes/class-ure-lib.php:
|
323 |
msgid "Error: wrong request"
|
324 |
msgstr "Fout: verkeerde aanvraag"
|
325 |
|
326 |
-
#: ../includes/class-ure-lib.php:
|
327 |
msgid "Role name (ID): "
|
328 |
msgstr "Naam Rol (ID):"
|
329 |
|
330 |
-
#: ../includes/class-ure-lib.php:
|
331 |
msgid "Display Role Name: "
|
332 |
msgstr "Maak de Naam van de Rol zichtbaar:"
|
333 |
|
334 |
-
#: ../includes/class-ure-lib.php:
|
335 |
msgid "Make copy of: "
|
336 |
msgstr "Maak een kopie van:"
|
337 |
|
338 |
-
#: ../includes/class-ure-lib.php:
|
339 |
msgid "Select Role:"
|
340 |
msgstr "Selecteer een Rol:"
|
341 |
|
342 |
-
#: ../includes/class-ure-lib.php:
|
343 |
msgid "Delete:"
|
344 |
msgstr "Verwijder:"
|
345 |
|
346 |
-
#: ../includes/class-ure-lib.php:
|
347 |
msgid "Capability name (ID): "
|
348 |
msgstr "Naam recht (ID):"
|
349 |
|
350 |
-
#: ../includes/class-ure-lib.php:
|
351 |
msgid "Error: "
|
352 |
msgstr "Fout:"
|
353 |
|
354 |
-
#: ../includes/class-ure-lib.php:
|
355 |
msgid "Role"
|
356 |
msgstr "Rol"
|
357 |
|
358 |
-
#: ../includes/class-ure-lib.php:
|
359 |
msgid "does not exist"
|
360 |
msgstr "Bestaat niet"
|
361 |
|
362 |
-
#: ../includes/class-ure-lib.php:
|
363 |
msgid "Role is updated successfully"
|
364 |
msgstr "Rol is succesvol ge-update"
|
365 |
|
366 |
-
#: ../includes/class-ure-lib.php:
|
367 |
msgid "Roles are updated for all network"
|
368 |
msgstr "Rollen van het gehele netwerk zijn ge-update"
|
369 |
|
370 |
-
#: ../includes/class-ure-lib.php:
|
371 |
msgid "Error occured during role(s) update"
|
372 |
msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
|
373 |
|
374 |
-
#: ../includes/class-ure-lib.php:
|
375 |
msgid "User capabilities are updated successfully"
|
376 |
msgstr "Rechten van de gebruiker zijn succesvol geupdate"
|
377 |
|
378 |
-
#: ../includes/class-ure-lib.php:
|
379 |
msgid "Error occured during user update"
|
380 |
msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
381 |
|
382 |
-
#: ../includes/class-ure-lib.php:
|
383 |
msgid "User Roles are restored to WordPress default values. "
|
384 |
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
385 |
|
386 |
-
#: ../includes/class-ure-lib.php:
|
387 |
msgid "Help"
|
388 |
msgstr "Help"
|
389 |
|
390 |
-
#: ../includes/class-ure-lib.php:
|
391 |
msgid "Error is occur. Please check the log file."
|
392 |
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
393 |
|
394 |
-
#: ../includes/class-ure-lib.php:
|
395 |
msgid ""
|
396 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
397 |
"only!"
|
@@ -399,7 +399,7 @@ msgstr ""
|
|
399 |
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
400 |
"underscores bevatten!"
|
401 |
|
402 |
-
#: ../includes/class-ure-lib.php:
|
403 |
msgid ""
|
404 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
405 |
"characters to it."
|
@@ -407,378 +407,378 @@ msgstr ""
|
|
407 |
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
408 |
"tekens aan toe."
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
#, php-format
|
412 |
msgid "Role %s exists already"
|
413 |
msgstr "Deze Rol %s bestaat al"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Error is encountered during new role create operation"
|
417 |
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
#, php-format
|
421 |
msgid "Role %s is created successfully"
|
422 |
msgstr "De Rol %s werd succesvol gecreërd"
|
423 |
|
424 |
-
#: ../includes/class-ure-lib.php:
|
425 |
msgid "Error: Role ID is empty!"
|
426 |
msgstr "Fout: Rol ID is niet gevuld!"
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Error: Empty role display name is not allowed."
|
430 |
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Role %s does not exists"
|
435 |
msgstr "Rol %s bestaat niet"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
#, php-format
|
439 |
msgid "Role %s is renamed to %s successfully"
|
440 |
msgstr "Rol %s is succesvol vernoemd naar %s"
|
441 |
|
442 |
-
#: ../includes/class-ure-lib.php:
|
443 |
msgid "Error encountered during role delete operation"
|
444 |
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Unused roles are deleted successfully"
|
448 |
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
#, php-format
|
452 |
msgid "Role %s is deleted successfully"
|
453 |
msgstr "Rol %s succesvol verwijderd"
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Error encountered during default role change operation"
|
457 |
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
#, php-format
|
461 |
msgid "Default role for new users is set to %s successfully"
|
462 |
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
463 |
|
464 |
-
#: ../includes/class-ure-lib.php:
|
465 |
msgid "Editor"
|
466 |
msgstr "Redacteur"
|
467 |
|
468 |
-
#: ../includes/class-ure-lib.php:
|
469 |
msgid "Author"
|
470 |
msgstr "Editor"
|
471 |
|
472 |
-
#: ../includes/class-ure-lib.php:
|
473 |
msgid "Contributor"
|
474 |
msgstr "Inzender"
|
475 |
|
476 |
-
#: ../includes/class-ure-lib.php:
|
477 |
msgid "Subscriber"
|
478 |
msgstr "Abonnee"
|
479 |
|
480 |
-
#: ../includes/class-ure-lib.php:
|
481 |
msgid "Switch themes"
|
482 |
msgstr "Van thema wisselen"
|
483 |
|
484 |
-
#: ../includes/class-ure-lib.php:
|
485 |
msgid "Edit themes"
|
486 |
msgstr "Thema's bewerken"
|
487 |
|
488 |
-
#: ../includes/class-ure-lib.php:
|
489 |
msgid "Activate plugins"
|
490 |
msgstr "Plugins activeren"
|
491 |
|
492 |
-
#: ../includes/class-ure-lib.php:
|
493 |
msgid "Edit plugins"
|
494 |
msgstr "Plugins bewerken"
|
495 |
|
496 |
-
#: ../includes/class-ure-lib.php:
|
497 |
msgid "Edit users"
|
498 |
msgstr "Gebruikers bewerken"
|
499 |
|
500 |
-
#: ../includes/class-ure-lib.php:
|
501 |
msgid "Edit files"
|
502 |
msgstr "Bestanden bewerken"
|
503 |
|
504 |
-
#: ../includes/class-ure-lib.php:
|
505 |
msgid "Manage options"
|
506 |
msgstr "Opties beheren"
|
507 |
|
508 |
-
#: ../includes/class-ure-lib.php:
|
509 |
msgid "Moderate comments"
|
510 |
msgstr "Reacties beheren"
|
511 |
|
512 |
-
#: ../includes/class-ure-lib.php:
|
513 |
msgid "Manage categories"
|
514 |
msgstr "Categorieën beheren"
|
515 |
|
516 |
-
#: ../includes/class-ure-lib.php:
|
517 |
msgid "Manage links"
|
518 |
msgstr "Links beheren"
|
519 |
|
520 |
-
#: ../includes/class-ure-lib.php:
|
521 |
msgid "Upload files"
|
522 |
msgstr "Bestanden uploaden"
|
523 |
|
524 |
-
#: ../includes/class-ure-lib.php:
|
525 |
msgid "Import"
|
526 |
msgstr "Importeren"
|
527 |
|
528 |
-
#: ../includes/class-ure-lib.php:
|
529 |
msgid "Unfiltered html"
|
530 |
msgstr "Ongefilterd html"
|
531 |
|
532 |
-
#: ../includes/class-ure-lib.php:
|
533 |
msgid "Edit posts"
|
534 |
msgstr "Berichten bewerken"
|
535 |
|
536 |
-
#: ../includes/class-ure-lib.php:
|
537 |
msgid "Edit others posts"
|
538 |
msgstr "Berichten van anderen bewerken"
|
539 |
|
540 |
-
#: ../includes/class-ure-lib.php:
|
541 |
msgid "Edit published posts"
|
542 |
msgstr "Gepubliceerde berichten bewerken"
|
543 |
|
544 |
-
#: ../includes/class-ure-lib.php:
|
545 |
msgid "Publish posts"
|
546 |
msgstr "Berichten publiceren"
|
547 |
|
548 |
-
#: ../includes/class-ure-lib.php:
|
549 |
msgid "Edit pages"
|
550 |
msgstr "Pagina's bewerken"
|
551 |
|
552 |
-
#: ../includes/class-ure-lib.php:
|
553 |
msgid "Read"
|
554 |
msgstr "Lezen"
|
555 |
|
556 |
-
#: ../includes/class-ure-lib.php:
|
557 |
msgid "Level 10"
|
558 |
msgstr "Level 10"
|
559 |
|
560 |
-
#: ../includes/class-ure-lib.php:
|
561 |
msgid "Level 9"
|
562 |
msgstr "Level 9"
|
563 |
|
564 |
-
#: ../includes/class-ure-lib.php:
|
565 |
msgid "Level 8"
|
566 |
msgstr "Level 8"
|
567 |
|
568 |
-
#: ../includes/class-ure-lib.php:
|
569 |
msgid "Level 7"
|
570 |
msgstr "Level 7"
|
571 |
|
572 |
-
#: ../includes/class-ure-lib.php:
|
573 |
msgid "Level 6"
|
574 |
msgstr "Level 6"
|
575 |
|
576 |
-
#: ../includes/class-ure-lib.php:
|
577 |
msgid "Level 5"
|
578 |
msgstr "Level 5"
|
579 |
|
580 |
-
#: ../includes/class-ure-lib.php:
|
581 |
msgid "Level 4"
|
582 |
msgstr "Level 4"
|
583 |
|
584 |
-
#: ../includes/class-ure-lib.php:
|
585 |
msgid "Level 3"
|
586 |
msgstr "Level 3"
|
587 |
|
588 |
-
#: ../includes/class-ure-lib.php:
|
589 |
msgid "Level 2"
|
590 |
msgstr "Level 2"
|
591 |
|
592 |
-
#: ../includes/class-ure-lib.php:
|
593 |
msgid "Level 1"
|
594 |
msgstr "Level 1"
|
595 |
|
596 |
-
#: ../includes/class-ure-lib.php:
|
597 |
msgid "Level 0"
|
598 |
msgstr "Level 0"
|
599 |
|
600 |
-
#: ../includes/class-ure-lib.php:
|
601 |
msgid "Edit others pages"
|
602 |
msgstr "Pagina's van anderen bewerken"
|
603 |
|
604 |
-
#: ../includes/class-ure-lib.php:
|
605 |
msgid "Edit published pages"
|
606 |
msgstr "Gepubliceerde pagina's bewerken"
|
607 |
|
608 |
-
#: ../includes/class-ure-lib.php:
|
609 |
msgid "Publish pages"
|
610 |
msgstr "Pagina's publiceren"
|
611 |
|
612 |
-
#: ../includes/class-ure-lib.php:
|
613 |
msgid "Delete pages"
|
614 |
msgstr "Pagina's verwijderen"
|
615 |
|
616 |
-
#: ../includes/class-ure-lib.php:
|
617 |
msgid "Delete others pages"
|
618 |
msgstr "Pagina's verwijderen van anderen"
|
619 |
|
620 |
-
#: ../includes/class-ure-lib.php:
|
621 |
msgid "Delete published pages"
|
622 |
msgstr "Gepubliceerde pagina's verwijderen"
|
623 |
|
624 |
-
#: ../includes/class-ure-lib.php:
|
625 |
msgid "Delete posts"
|
626 |
msgstr "Berichten verwijderen"
|
627 |
|
628 |
-
#: ../includes/class-ure-lib.php:
|
629 |
msgid "Delete others posts"
|
630 |
msgstr "Verwijder berichten van anderen"
|
631 |
|
632 |
-
#: ../includes/class-ure-lib.php:
|
633 |
msgid "Delete published posts"
|
634 |
msgstr "Gepubliceerde berichten verwijderen"
|
635 |
|
636 |
-
#: ../includes/class-ure-lib.php:
|
637 |
msgid "Delete private posts"
|
638 |
msgstr "Privé berichten verwijderen"
|
639 |
|
640 |
-
#: ../includes/class-ure-lib.php:
|
641 |
msgid "Edit private posts"
|
642 |
msgstr "Privé berichten bewerken"
|
643 |
|
644 |
-
#: ../includes/class-ure-lib.php:
|
645 |
msgid "Read private posts"
|
646 |
msgstr "Privé berichten lezen"
|
647 |
|
648 |
-
#: ../includes/class-ure-lib.php:
|
649 |
msgid "Delete private pages"
|
650 |
msgstr "Privé berichten verwijderen"
|
651 |
|
652 |
-
#: ../includes/class-ure-lib.php:
|
653 |
msgid "Edit private pages"
|
654 |
msgstr "Privé pagina's bewerken"
|
655 |
|
656 |
-
#: ../includes/class-ure-lib.php:
|
657 |
msgid "Read private pages"
|
658 |
msgstr "Privé pagina's lezen"
|
659 |
|
660 |
-
#: ../includes/class-ure-lib.php:
|
661 |
msgid "Delete users"
|
662 |
msgstr "Gebruikers verwijderen"
|
663 |
|
664 |
-
#: ../includes/class-ure-lib.php:
|
665 |
msgid "Create users"
|
666 |
msgstr "Maak gebruikers aan"
|
667 |
|
668 |
-
#: ../includes/class-ure-lib.php:
|
669 |
msgid "Unfiltered upload"
|
670 |
msgstr "Ongefilterd uploaden"
|
671 |
|
672 |
-
#: ../includes/class-ure-lib.php:
|
673 |
msgid "Edit dashboard"
|
674 |
msgstr "Bewerk het dashboard"
|
675 |
|
676 |
-
#: ../includes/class-ure-lib.php:
|
677 |
msgid "Update plugins"
|
678 |
msgstr "Plugins updaten"
|
679 |
|
680 |
-
#: ../includes/class-ure-lib.php:
|
681 |
msgid "Delete plugins"
|
682 |
msgstr "Plugins verwijderen"
|
683 |
|
684 |
-
#: ../includes/class-ure-lib.php:
|
685 |
msgid "Install plugins"
|
686 |
msgstr "Plugins installeren"
|
687 |
|
688 |
-
#: ../includes/class-ure-lib.php:
|
689 |
msgid "Update themes"
|
690 |
msgstr "Thema's updaten"
|
691 |
|
692 |
-
#: ../includes/class-ure-lib.php:
|
693 |
msgid "Install themes"
|
694 |
msgstr "Thema's installeren"
|
695 |
|
696 |
-
#: ../includes/class-ure-lib.php:
|
697 |
msgid "Update core"
|
698 |
msgstr "Core updaten"
|
699 |
|
700 |
-
#: ../includes/class-ure-lib.php:
|
701 |
msgid "List users"
|
702 |
msgstr "Lijst van gebruikers aanmaken"
|
703 |
|
704 |
-
#: ../includes/class-ure-lib.php:
|
705 |
msgid "Remove users"
|
706 |
msgstr "Gebruikers verwijderen"
|
707 |
|
708 |
-
#: ../includes/class-ure-lib.php:
|
709 |
msgid "Add users"
|
710 |
msgstr "Gebruikers toevoegen"
|
711 |
|
712 |
-
#: ../includes/class-ure-lib.php:
|
713 |
msgid "Promote users"
|
714 |
msgstr "Gebruikers bevorderen"
|
715 |
|
716 |
-
#: ../includes/class-ure-lib.php:
|
717 |
msgid "Edit theme options"
|
718 |
msgstr "Thema opties bewerken"
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
msgid "Delete themes"
|
722 |
msgstr "Thema's verwijderen"
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
msgid "Export"
|
726 |
msgstr "Exporteren"
|
727 |
|
728 |
-
#: ../includes/class-ure-lib.php:
|
729 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
730 |
msgstr ""
|
731 |
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
#, php-format
|
735 |
msgid "Capability %s is added successfully"
|
736 |
msgstr "Recht %s is succesvol toegevoegd"
|
737 |
|
738 |
-
#: ../includes/class-ure-lib.php:
|
739 |
#, php-format
|
740 |
msgid "Capability %s exists already"
|
741 |
msgstr "Recht %s bestaat al"
|
742 |
|
743 |
-
#: ../includes/class-ure-lib.php:
|
744 |
#, php-format
|
745 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
746 |
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
#, php-format
|
750 |
msgid "Capability %s is removed successfully"
|
751 |
msgstr "Recht %s is succesvol verwijderd"
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "Version:"
|
755 |
msgstr "Versie:"
|
756 |
|
757 |
-
#: ../includes/class-ure-lib.php:
|
758 |
msgid "Author's website"
|
759 |
msgstr "Website van de auteur"
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "Plugin webpage"
|
763 |
msgstr "Plugin webpagina "
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "Plugin download"
|
767 |
msgstr "Plugin download "
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "FAQ"
|
771 |
msgstr "FAQ"
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "None"
|
775 |
msgstr "Geen"
|
776 |
|
777 |
-
#: ../includes/class-ure-lib.php:
|
778 |
msgid "Delete All Unused Roles"
|
779 |
msgstr "Verwijder alle niet gebruikte Rollen"
|
780 |
|
781 |
-
#: ../includes/class-ure-lib.php:
|
782 |
msgid "— No role for this site —"
|
783 |
msgstr "— Geen rol voor deze website —"
|
784 |
|
@@ -834,17 +834,19 @@ msgstr ""
|
|
834 |
"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
|
835 |
"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
|
836 |
|
837 |
-
#: ../includes/class-ure-screen-help.php:
|
838 |
-
|
839 |
-
|
840 |
-
|
|
|
|
|
841 |
|
842 |
-
#: ../includes/class-ure-screen-help.php:
|
843 |
#, fuzzy
|
844 |
msgid "Other default roles for new registered user"
|
845 |
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
846 |
|
847 |
-
#: ../includes/class-ure-screen-help.php:
|
848 |
#, fuzzy
|
849 |
msgid ""
|
850 |
"select roles below to assign them to the new user automatically as an "
|
@@ -856,14 +858,14 @@ msgstr ""
|
|
856 |
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
857 |
"geregistreerde gebruikers."
|
858 |
|
859 |
-
#: ../includes/class-ure-screen-help.php:
|
860 |
#, fuzzy
|
861 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
862 |
msgstr ""
|
863 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
864 |
"verwijderen"
|
865 |
|
866 |
-
#: ../includes/class-ure-screen-help.php:
|
867 |
#, fuzzy
|
868 |
msgid ""
|
869 |
"Super administrator only may create, edit and delete users under WordPress "
|
@@ -874,6 +876,10 @@ msgstr ""
|
|
874 |
"in WordPress multi-site. Schakel deze optie aan om deze beperking te "
|
875 |
"verwijderen."
|
876 |
|
|
|
|
|
|
|
|
|
877 |
#~ msgid "Overview"
|
878 |
#~ msgstr "Overzicht"
|
879 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:25+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"
|
9 |
"Language: nl\n"
|
10 |
"MIME-Version: 1.0\n"
|
37 |
msgstr "Standaard Rollen"
|
38 |
|
39 |
#: ../includes/settings-template.php:34
|
40 |
+
#: ../includes/class-user-role-editor.php:565
|
41 |
msgid "Multisite"
|
42 |
msgstr "Multisite"
|
43 |
|
66 |
msgstr "Opslaan"
|
67 |
|
68 |
#: ../includes/settings-template.php:102
|
69 |
+
#: ../includes/class-ure-screen-help.php:41
|
70 |
msgid "Count users without role"
|
71 |
msgstr "Het aantal Gebruikers zonder rol"
|
72 |
|
120 |
msgstr "Instellingen"
|
121 |
|
122 |
#: ../includes/class-user-role-editor.php:525
|
123 |
+
#: ../includes/class-ure-lib.php:2295
|
124 |
msgid "Changelog"
|
125 |
msgstr "Changelog"
|
126 |
|
127 |
+
#: ../includes/class-user-role-editor.php:575
|
128 |
+
#: ../includes/class-user-role-editor.php:603
|
129 |
+
#: ../includes/class-user-role-editor.php:948
|
130 |
+
#: ../includes/class-ure-lib.php:251
|
131 |
msgid "User Role Editor"
|
132 |
msgstr "User Rol Editor"
|
133 |
|
134 |
+
#: ../includes/class-user-role-editor.php:660
|
135 |
+
#: ../includes/class-user-role-editor.php:678
|
136 |
+
#: ../includes/class-user-role-editor.php:722
|
137 |
msgid "User Role Editor options are updated"
|
138 |
msgstr "User Role Editor opties zijn ge-update"
|
139 |
|
140 |
+
#: ../includes/class-user-role-editor.php:706
|
141 |
msgid "Default Roles are updated"
|
142 |
msgstr "Standaard Rollen zijn ge-update"
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:730
|
145 |
msgid ""
|
146 |
"You do not have sufficient permissions to manage options for User Role "
|
147 |
"Editor."
|
148 |
msgstr "Je hebt onvoldoende rechten om de User Role Editor te beheren."
|
149 |
|
150 |
+
#: ../includes/class-user-role-editor.php:809
|
151 |
msgid "Insufficient permissions to work with User Role Editor"
|
152 |
msgstr "Onvoldoende rechten om te werken met User Role Editor"
|
153 |
|
154 |
+
#: ../includes/class-user-role-editor.php:890
|
155 |
msgid "Select All"
|
156 |
msgstr "Alles selecteren"
|
157 |
|
158 |
+
#: ../includes/class-user-role-editor.php:891
|
159 |
msgid "Unselect All"
|
160 |
msgstr "Alles deselecteren"
|
161 |
|
162 |
+
#: ../includes/class-user-role-editor.php:892
|
163 |
msgid "Reverse"
|
164 |
msgstr "Omzetten"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:893
|
167 |
msgid "Update"
|
168 |
msgstr "Update"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:894
|
171 |
msgid "Please confirm permissions update"
|
172 |
msgstr "Bevestig toestemming om te mogen updaten"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:895
|
175 |
msgid "Add New Role"
|
176 |
msgstr "Nieuwe Rol Toevoegen"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:896
|
179 |
+
#: ../includes/class-user-role-editor.php:901
|
180 |
msgid "Rename Role"
|
181 |
msgstr "Hernoem Rol"
|
182 |
|
183 |
+
#: ../includes/class-user-role-editor.php:897
|
184 |
msgid " Role name (ID) can not be empty!"
|
185 |
msgstr "Rol naam (ID) kan niet leeg zijn!"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:898
|
188 |
msgid ""
|
189 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
190 |
"only!"
|
192 |
"Rol naam (ID) moet latijnse letters, cijfers, koppeltekens of een underscore "
|
193 |
"bevatten!"
|
194 |
|
195 |
+
#: ../includes/class-user-role-editor.php:899
|
196 |
msgid ""
|
197 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
198 |
"it."
|
200 |
"WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse tekens "
|
201 |
"aan toe."
|
202 |
|
203 |
+
#: ../includes/class-user-role-editor.php:900
|
204 |
msgid "Add Role"
|
205 |
msgstr "Rol toevoegen"
|
206 |
|
207 |
+
#: ../includes/class-user-role-editor.php:902
|
208 |
msgid "Delete Role"
|
209 |
msgstr "Rol verwijderen"
|
210 |
|
211 |
+
#: ../includes/class-user-role-editor.php:903
|
212 |
msgid "Cancel"
|
213 |
msgstr "Annuleren"
|
214 |
|
215 |
+
#: ../includes/class-user-role-editor.php:904
|
216 |
msgid "Add Capability"
|
217 |
msgstr "Recht toevoegen"
|
218 |
|
219 |
+
#: ../includes/class-user-role-editor.php:905
|
220 |
+
#: ../includes/class-user-role-editor.php:914
|
221 |
msgid "Delete Capability"
|
222 |
msgstr "Recht verwijderen"
|
223 |
|
224 |
+
#: ../includes/class-user-role-editor.php:906
|
225 |
msgid "Reset"
|
226 |
msgstr "Terugkeren naar de basisinstellingen"
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:907
|
229 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
230 |
msgstr ""
|
231 |
"OPGELET! Opnieuw instellen zal de basisinstellingen herstellen van WordPress "
|
232 |
"Core"
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:908
|
235 |
msgid ""
|
236 |
"If any plugins have changed capabilities in any way upon installation (such "
|
237 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
240 |
"installatie (zoals S2Member, WooCommerce, en nog veel meer), zullen deze "
|
241 |
"instellingen worden VERWIJDERD!"
|
242 |
|
243 |
+
#: ../includes/class-user-role-editor.php:909
|
244 |
msgid ""
|
245 |
"For more information on how to undo changes and restore plugin capabilities "
|
246 |
"go to"
|
248 |
"Voor meer informatie over hoe u wijzigingen ongedaan kunt maken en rechten "
|
249 |
"van de plugin kunt herstellen ga naar"
|
250 |
|
251 |
+
#: ../includes/class-user-role-editor.php:911
|
252 |
msgid "Continue?"
|
253 |
msgstr "Doorgaan?"
|
254 |
|
255 |
+
#: ../includes/class-user-role-editor.php:912
|
256 |
msgid "Default Role"
|
257 |
msgstr "Standaard Rol"
|
258 |
|
259 |
+
#: ../includes/class-user-role-editor.php:913
|
260 |
msgid "Set New Default Role"
|
261 |
msgstr "Maak een nieuwe standaard rol aan"
|
262 |
|
263 |
+
#: ../includes/class-user-role-editor.php:915
|
264 |
msgid ""
|
265 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
266 |
"or other custom code"
|
268 |
"Waarschuwing! Wees voorzichtig - het verwijderen van een recht laat sommige "
|
269 |
"plugins of aangepaste code crashen"
|
270 |
|
271 |
+
#: ../includes/class-user-role-editor.php:916
|
272 |
msgid " Capability name (ID) can not be empty!"
|
273 |
msgstr "Een recht naam (ID) kan niet leeg zijn!"
|
274 |
|
275 |
+
#: ../includes/class-user-role-editor.php:917
|
276 |
msgid ""
|
277 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
278 |
"underscore only!"
|
280 |
"Naam van het recht (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
281 |
"underscores bevatten!!"
|
282 |
|
283 |
+
#: ../includes/class-user-role-editor.php:951
|
284 |
+
#: ../includes/class-user-role-editor.php:980
|
285 |
msgid "Other Roles"
|
286 |
msgstr "Andere Rollen"
|
287 |
|
288 |
+
#: ../includes/class-user-role-editor.php:962
|
289 |
msgid "Edit"
|
290 |
msgstr "Wijzigen"
|
291 |
|
319 |
msgid "Custom capabilities:"
|
320 |
msgstr "Gebruikelijke rechten:"
|
321 |
|
322 |
+
#: ../includes/class-ure-lib.php:159
|
323 |
msgid "Error: wrong request"
|
324 |
msgstr "Fout: verkeerde aanvraag"
|
325 |
|
326 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
327 |
msgid "Role name (ID): "
|
328 |
msgstr "Naam Rol (ID):"
|
329 |
|
330 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
331 |
msgid "Display Role Name: "
|
332 |
msgstr "Maak de Naam van de Rol zichtbaar:"
|
333 |
|
334 |
+
#: ../includes/class-ure-lib.php:196
|
335 |
msgid "Make copy of: "
|
336 |
msgstr "Maak een kopie van:"
|
337 |
|
338 |
+
#: ../includes/class-ure-lib.php:212
|
339 |
msgid "Select Role:"
|
340 |
msgstr "Selecteer een Rol:"
|
341 |
|
342 |
+
#: ../includes/class-ure-lib.php:227
|
343 |
msgid "Delete:"
|
344 |
msgstr "Verwijder:"
|
345 |
|
346 |
+
#: ../includes/class-ure-lib.php:234
|
347 |
msgid "Capability name (ID): "
|
348 |
msgstr "Naam recht (ID):"
|
349 |
|
350 |
+
#: ../includes/class-ure-lib.php:348
|
351 |
msgid "Error: "
|
352 |
msgstr "Fout:"
|
353 |
|
354 |
+
#: ../includes/class-ure-lib.php:348
|
355 |
msgid "Role"
|
356 |
msgstr "Rol"
|
357 |
|
358 |
+
#: ../includes/class-ure-lib.php:349
|
359 |
msgid "does not exist"
|
360 |
msgstr "Bestaat niet"
|
361 |
|
362 |
+
#: ../includes/class-ure-lib.php:392
|
363 |
msgid "Role is updated successfully"
|
364 |
msgstr "Rol is succesvol ge-update"
|
365 |
|
366 |
+
#: ../includes/class-ure-lib.php:394
|
367 |
msgid "Roles are updated for all network"
|
368 |
msgstr "Rollen van het gehele netwerk zijn ge-update"
|
369 |
|
370 |
+
#: ../includes/class-ure-lib.php:400
|
371 |
msgid "Error occured during role(s) update"
|
372 |
msgstr "Er is een fout opgetreden tijdens het updaten van de rol(len)"
|
373 |
|
374 |
+
#: ../includes/class-ure-lib.php:407
|
375 |
msgid "User capabilities are updated successfully"
|
376 |
msgstr "Rechten van de gebruiker zijn succesvol geupdate"
|
377 |
|
378 |
+
#: ../includes/class-ure-lib.php:412
|
379 |
msgid "Error occured during user update"
|
380 |
msgstr "Er is een fout opgetreden tijdens het updaten van de gebruiker"
|
381 |
|
382 |
+
#: ../includes/class-ure-lib.php:470
|
383 |
msgid "User Roles are restored to WordPress default values. "
|
384 |
msgstr "Gebruikers rollen worden hersteld naar WordPress standaardwaarden."
|
385 |
|
386 |
+
#: ../includes/class-ure-lib.php:1337
|
387 |
msgid "Help"
|
388 |
msgstr "Help"
|
389 |
|
390 |
+
#: ../includes/class-ure-lib.php:1695
|
391 |
msgid "Error is occur. Please check the log file."
|
392 |
msgstr "Er heeft zich een fout voorgedaan. Controleer het log bestand."
|
393 |
|
394 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
395 |
msgid ""
|
396 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
397 |
"only!"
|
399 |
"Fout: Een Rol (ID) moet Latijnse letters, cijfers, koppeltekens of "
|
400 |
"underscores bevatten!"
|
401 |
|
402 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
403 |
msgid ""
|
404 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
405 |
"characters to it."
|
407 |
"Fout: WordPress ondersteund geen numerieke Rol naam (ID). Voeg er latijnse "
|
408 |
"tekens aan toe."
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1757
|
411 |
#, php-format
|
412 |
msgid "Role %s exists already"
|
413 |
msgstr "Deze Rol %s bestaat al"
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1772
|
416 |
msgid "Error is encountered during new role create operation"
|
417 |
msgstr "Er is een fout opgetreden tijdens het creëren van een nieuwe rol"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1774
|
420 |
#, php-format
|
421 |
msgid "Role %s is created successfully"
|
422 |
msgstr "De Rol %s werd succesvol gecreërd"
|
423 |
|
424 |
+
#: ../includes/class-ure-lib.php:1798
|
425 |
msgid "Error: Role ID is empty!"
|
426 |
msgstr "Fout: Rol ID is niet gevuld!"
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1816
|
429 |
msgid "Error: Empty role display name is not allowed."
|
430 |
msgstr "Fout: De weergave van een lege naam van een rol is niet toegestaan."
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1823
|
433 |
#, php-format
|
434 |
msgid "Role %s does not exists"
|
435 |
msgstr "Rol %s bestaat niet"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1831
|
438 |
#, php-format
|
439 |
msgid "Role %s is renamed to %s successfully"
|
440 |
msgstr "Rol %s is succesvol vernoemd naar %s"
|
441 |
|
442 |
+
#: ../includes/class-ure-lib.php:1898
|
443 |
msgid "Error encountered during role delete operation"
|
444 |
msgstr "Er is een fout opgetreden bij het vewijderen van de rol"
|
445 |
|
446 |
+
#: ../includes/class-ure-lib.php:1900
|
447 |
msgid "Unused roles are deleted successfully"
|
448 |
msgstr "Ongebruikte rollen zijn succesvol verwijderd"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:1902
|
451 |
#, php-format
|
452 |
msgid "Role %s is deleted successfully"
|
453 |
msgstr "Rol %s succesvol verwijderd"
|
454 |
|
455 |
+
#: ../includes/class-ure-lib.php:1927
|
456 |
msgid "Error encountered during default role change operation"
|
457 |
msgstr "Er is een fout opgetreden tijdens het wijzigen van de standaard rol"
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1933
|
460 |
#, php-format
|
461 |
msgid "Default role for new users is set to %s successfully"
|
462 |
msgstr "De standaard rol voor nieuwe gebruikers is met succes ingesteld op %s"
|
463 |
|
464 |
+
#: ../includes/class-ure-lib.php:1952
|
465 |
msgid "Editor"
|
466 |
msgstr "Redacteur"
|
467 |
|
468 |
+
#: ../includes/class-ure-lib.php:1953
|
469 |
msgid "Author"
|
470 |
msgstr "Editor"
|
471 |
|
472 |
+
#: ../includes/class-ure-lib.php:1954
|
473 |
msgid "Contributor"
|
474 |
msgstr "Inzender"
|
475 |
|
476 |
+
#: ../includes/class-ure-lib.php:1955
|
477 |
msgid "Subscriber"
|
478 |
msgstr "Abonnee"
|
479 |
|
480 |
+
#: ../includes/class-ure-lib.php:1957
|
481 |
msgid "Switch themes"
|
482 |
msgstr "Van thema wisselen"
|
483 |
|
484 |
+
#: ../includes/class-ure-lib.php:1958
|
485 |
msgid "Edit themes"
|
486 |
msgstr "Thema's bewerken"
|
487 |
|
488 |
+
#: ../includes/class-ure-lib.php:1959
|
489 |
msgid "Activate plugins"
|
490 |
msgstr "Plugins activeren"
|
491 |
|
492 |
+
#: ../includes/class-ure-lib.php:1960
|
493 |
msgid "Edit plugins"
|
494 |
msgstr "Plugins bewerken"
|
495 |
|
496 |
+
#: ../includes/class-ure-lib.php:1961
|
497 |
msgid "Edit users"
|
498 |
msgstr "Gebruikers bewerken"
|
499 |
|
500 |
+
#: ../includes/class-ure-lib.php:1962
|
501 |
msgid "Edit files"
|
502 |
msgstr "Bestanden bewerken"
|
503 |
|
504 |
+
#: ../includes/class-ure-lib.php:1963
|
505 |
msgid "Manage options"
|
506 |
msgstr "Opties beheren"
|
507 |
|
508 |
+
#: ../includes/class-ure-lib.php:1964
|
509 |
msgid "Moderate comments"
|
510 |
msgstr "Reacties beheren"
|
511 |
|
512 |
+
#: ../includes/class-ure-lib.php:1965
|
513 |
msgid "Manage categories"
|
514 |
msgstr "Categorieën beheren"
|
515 |
|
516 |
+
#: ../includes/class-ure-lib.php:1966
|
517 |
msgid "Manage links"
|
518 |
msgstr "Links beheren"
|
519 |
|
520 |
+
#: ../includes/class-ure-lib.php:1967
|
521 |
msgid "Upload files"
|
522 |
msgstr "Bestanden uploaden"
|
523 |
|
524 |
+
#: ../includes/class-ure-lib.php:1968
|
525 |
msgid "Import"
|
526 |
msgstr "Importeren"
|
527 |
|
528 |
+
#: ../includes/class-ure-lib.php:1969
|
529 |
msgid "Unfiltered html"
|
530 |
msgstr "Ongefilterd html"
|
531 |
|
532 |
+
#: ../includes/class-ure-lib.php:1970
|
533 |
msgid "Edit posts"
|
534 |
msgstr "Berichten bewerken"
|
535 |
|
536 |
+
#: ../includes/class-ure-lib.php:1971
|
537 |
msgid "Edit others posts"
|
538 |
msgstr "Berichten van anderen bewerken"
|
539 |
|
540 |
+
#: ../includes/class-ure-lib.php:1972
|
541 |
msgid "Edit published posts"
|
542 |
msgstr "Gepubliceerde berichten bewerken"
|
543 |
|
544 |
+
#: ../includes/class-ure-lib.php:1973
|
545 |
msgid "Publish posts"
|
546 |
msgstr "Berichten publiceren"
|
547 |
|
548 |
+
#: ../includes/class-ure-lib.php:1974
|
549 |
msgid "Edit pages"
|
550 |
msgstr "Pagina's bewerken"
|
551 |
|
552 |
+
#: ../includes/class-ure-lib.php:1975
|
553 |
msgid "Read"
|
554 |
msgstr "Lezen"
|
555 |
|
556 |
+
#: ../includes/class-ure-lib.php:1976
|
557 |
msgid "Level 10"
|
558 |
msgstr "Level 10"
|
559 |
|
560 |
+
#: ../includes/class-ure-lib.php:1977
|
561 |
msgid "Level 9"
|
562 |
msgstr "Level 9"
|
563 |
|
564 |
+
#: ../includes/class-ure-lib.php:1978
|
565 |
msgid "Level 8"
|
566 |
msgstr "Level 8"
|
567 |
|
568 |
+
#: ../includes/class-ure-lib.php:1979
|
569 |
msgid "Level 7"
|
570 |
msgstr "Level 7"
|
571 |
|
572 |
+
#: ../includes/class-ure-lib.php:1980
|
573 |
msgid "Level 6"
|
574 |
msgstr "Level 6"
|
575 |
|
576 |
+
#: ../includes/class-ure-lib.php:1981
|
577 |
msgid "Level 5"
|
578 |
msgstr "Level 5"
|
579 |
|
580 |
+
#: ../includes/class-ure-lib.php:1982
|
581 |
msgid "Level 4"
|
582 |
msgstr "Level 4"
|
583 |
|
584 |
+
#: ../includes/class-ure-lib.php:1983
|
585 |
msgid "Level 3"
|
586 |
msgstr "Level 3"
|
587 |
|
588 |
+
#: ../includes/class-ure-lib.php:1984
|
589 |
msgid "Level 2"
|
590 |
msgstr "Level 2"
|
591 |
|
592 |
+
#: ../includes/class-ure-lib.php:1985
|
593 |
msgid "Level 1"
|
594 |
msgstr "Level 1"
|
595 |
|
596 |
+
#: ../includes/class-ure-lib.php:1986
|
597 |
msgid "Level 0"
|
598 |
msgstr "Level 0"
|
599 |
|
600 |
+
#: ../includes/class-ure-lib.php:1987
|
601 |
msgid "Edit others pages"
|
602 |
msgstr "Pagina's van anderen bewerken"
|
603 |
|
604 |
+
#: ../includes/class-ure-lib.php:1988
|
605 |
msgid "Edit published pages"
|
606 |
msgstr "Gepubliceerde pagina's bewerken"
|
607 |
|
608 |
+
#: ../includes/class-ure-lib.php:1989
|
609 |
msgid "Publish pages"
|
610 |
msgstr "Pagina's publiceren"
|
611 |
|
612 |
+
#: ../includes/class-ure-lib.php:1990
|
613 |
msgid "Delete pages"
|
614 |
msgstr "Pagina's verwijderen"
|
615 |
|
616 |
+
#: ../includes/class-ure-lib.php:1991
|
617 |
msgid "Delete others pages"
|
618 |
msgstr "Pagina's verwijderen van anderen"
|
619 |
|
620 |
+
#: ../includes/class-ure-lib.php:1992
|
621 |
msgid "Delete published pages"
|
622 |
msgstr "Gepubliceerde pagina's verwijderen"
|
623 |
|
624 |
+
#: ../includes/class-ure-lib.php:1993
|
625 |
msgid "Delete posts"
|
626 |
msgstr "Berichten verwijderen"
|
627 |
|
628 |
+
#: ../includes/class-ure-lib.php:1994
|
629 |
msgid "Delete others posts"
|
630 |
msgstr "Verwijder berichten van anderen"
|
631 |
|
632 |
+
#: ../includes/class-ure-lib.php:1995
|
633 |
msgid "Delete published posts"
|
634 |
msgstr "Gepubliceerde berichten verwijderen"
|
635 |
|
636 |
+
#: ../includes/class-ure-lib.php:1996
|
637 |
msgid "Delete private posts"
|
638 |
msgstr "Privé berichten verwijderen"
|
639 |
|
640 |
+
#: ../includes/class-ure-lib.php:1997
|
641 |
msgid "Edit private posts"
|
642 |
msgstr "Privé berichten bewerken"
|
643 |
|
644 |
+
#: ../includes/class-ure-lib.php:1998
|
645 |
msgid "Read private posts"
|
646 |
msgstr "Privé berichten lezen"
|
647 |
|
648 |
+
#: ../includes/class-ure-lib.php:1999
|
649 |
msgid "Delete private pages"
|
650 |
msgstr "Privé berichten verwijderen"
|
651 |
|
652 |
+
#: ../includes/class-ure-lib.php:2000
|
653 |
msgid "Edit private pages"
|
654 |
msgstr "Privé pagina's bewerken"
|
655 |
|
656 |
+
#: ../includes/class-ure-lib.php:2001
|
657 |
msgid "Read private pages"
|
658 |
msgstr "Privé pagina's lezen"
|
659 |
|
660 |
+
#: ../includes/class-ure-lib.php:2002
|
661 |
msgid "Delete users"
|
662 |
msgstr "Gebruikers verwijderen"
|
663 |
|
664 |
+
#: ../includes/class-ure-lib.php:2003
|
665 |
msgid "Create users"
|
666 |
msgstr "Maak gebruikers aan"
|
667 |
|
668 |
+
#: ../includes/class-ure-lib.php:2004
|
669 |
msgid "Unfiltered upload"
|
670 |
msgstr "Ongefilterd uploaden"
|
671 |
|
672 |
+
#: ../includes/class-ure-lib.php:2005
|
673 |
msgid "Edit dashboard"
|
674 |
msgstr "Bewerk het dashboard"
|
675 |
|
676 |
+
#: ../includes/class-ure-lib.php:2006
|
677 |
msgid "Update plugins"
|
678 |
msgstr "Plugins updaten"
|
679 |
|
680 |
+
#: ../includes/class-ure-lib.php:2007
|
681 |
msgid "Delete plugins"
|
682 |
msgstr "Plugins verwijderen"
|
683 |
|
684 |
+
#: ../includes/class-ure-lib.php:2008
|
685 |
msgid "Install plugins"
|
686 |
msgstr "Plugins installeren"
|
687 |
|
688 |
+
#: ../includes/class-ure-lib.php:2009
|
689 |
msgid "Update themes"
|
690 |
msgstr "Thema's updaten"
|
691 |
|
692 |
+
#: ../includes/class-ure-lib.php:2010
|
693 |
msgid "Install themes"
|
694 |
msgstr "Thema's installeren"
|
695 |
|
696 |
+
#: ../includes/class-ure-lib.php:2011
|
697 |
msgid "Update core"
|
698 |
msgstr "Core updaten"
|
699 |
|
700 |
+
#: ../includes/class-ure-lib.php:2012
|
701 |
msgid "List users"
|
702 |
msgstr "Lijst van gebruikers aanmaken"
|
703 |
|
704 |
+
#: ../includes/class-ure-lib.php:2013
|
705 |
msgid "Remove users"
|
706 |
msgstr "Gebruikers verwijderen"
|
707 |
|
708 |
+
#: ../includes/class-ure-lib.php:2014
|
709 |
msgid "Add users"
|
710 |
msgstr "Gebruikers toevoegen"
|
711 |
|
712 |
+
#: ../includes/class-ure-lib.php:2015
|
713 |
msgid "Promote users"
|
714 |
msgstr "Gebruikers bevorderen"
|
715 |
|
716 |
+
#: ../includes/class-ure-lib.php:2016
|
717 |
msgid "Edit theme options"
|
718 |
msgstr "Thema opties bewerken"
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2017
|
721 |
msgid "Delete themes"
|
722 |
msgstr "Thema's verwijderen"
|
723 |
|
724 |
+
#: ../includes/class-ure-lib.php:2018
|
725 |
msgid "Export"
|
726 |
msgstr "Exporteren"
|
727 |
|
728 |
+
#: ../includes/class-ure-lib.php:2128
|
729 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
730 |
msgstr ""
|
731 |
"Fout: De naam van een recht mag alleen latijnse letters en cijfers bevatten!"
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2141
|
734 |
#, php-format
|
735 |
msgid "Capability %s is added successfully"
|
736 |
msgstr "Recht %s is succesvol toegevoegd"
|
737 |
|
738 |
+
#: ../includes/class-ure-lib.php:2143
|
739 |
#, php-format
|
740 |
msgid "Capability %s exists already"
|
741 |
msgstr "Recht %s bestaat al"
|
742 |
|
743 |
+
#: ../includes/class-ure-lib.php:2168
|
744 |
#, php-format
|
745 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
746 |
msgstr "Fout! U heeft geen toestemming om dit recht te verwijderen: % s!"
|
747 |
|
748 |
+
#: ../includes/class-ure-lib.php:2187
|
749 |
#, php-format
|
750 |
msgid "Capability %s is removed successfully"
|
751 |
msgstr "Recht %s is succesvol verwijderd"
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2291
|
754 |
msgid "Version:"
|
755 |
msgstr "Versie:"
|
756 |
|
757 |
+
#: ../includes/class-ure-lib.php:2292
|
758 |
msgid "Author's website"
|
759 |
msgstr "Website van de auteur"
|
760 |
|
761 |
+
#: ../includes/class-ure-lib.php:2293
|
762 |
msgid "Plugin webpage"
|
763 |
msgstr "Plugin webpagina "
|
764 |
|
765 |
+
#: ../includes/class-ure-lib.php:2294
|
766 |
msgid "Plugin download"
|
767 |
msgstr "Plugin download "
|
768 |
|
769 |
+
#: ../includes/class-ure-lib.php:2296
|
770 |
msgid "FAQ"
|
771 |
msgstr "FAQ"
|
772 |
|
773 |
+
#: ../includes/class-ure-lib.php:2344
|
774 |
msgid "None"
|
775 |
msgstr "Geen"
|
776 |
|
777 |
+
#: ../includes/class-ure-lib.php:2371
|
778 |
msgid "Delete All Unused Roles"
|
779 |
msgstr "Verwijder alle niet gebruikte Rollen"
|
780 |
|
781 |
+
#: ../includes/class-ure-lib.php:2395
|
782 |
msgid "— No role for this site —"
|
783 |
msgstr "— Geen rol voor deze website —"
|
784 |
|
834 |
"gebruiker met als reden compatibiliteits doeleinden met oude thema's en "
|
835 |
"plugins code. Het inschakelen van deze optie zal de afgekeurde rechten tonen."
|
836 |
|
837 |
+
#: ../includes/class-ure-screen-help.php:42
|
838 |
+
msgid ""
|
839 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
840 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
841 |
+
"users list with role \"No rights\" at the separate tab then."
|
842 |
+
msgstr ""
|
843 |
|
844 |
+
#: ../includes/class-ure-screen-help.php:59
|
845 |
#, fuzzy
|
846 |
msgid "Other default roles for new registered user"
|
847 |
msgstr "Andere standaard rollen voor nieuw geregistreerde gebruiker:"
|
848 |
|
849 |
+
#: ../includes/class-ure-screen-help.php:60
|
850 |
#, fuzzy
|
851 |
msgid ""
|
852 |
"select roles below to assign them to the new user automatically as an "
|
858 |
"functies op de site moeten bestaan, om toegewezen te kunnen worden aan nieuw "
|
859 |
"geregistreerde gebruikers."
|
860 |
|
861 |
+
#: ../includes/class-ure-screen-help.php:78
|
862 |
#, fuzzy
|
863 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
864 |
msgstr ""
|
865 |
"Sta niet super beheerders toe om gebruikers aan te maken, te bewerken en te "
|
866 |
"verwijderen"
|
867 |
|
868 |
+
#: ../includes/class-ure-screen-help.php:79
|
869 |
#, fuzzy
|
870 |
msgid ""
|
871 |
"Super administrator only may create, edit and delete users under WordPress "
|
876 |
"in WordPress multi-site. Schakel deze optie aan om deze beperking te "
|
877 |
"verwijderen."
|
878 |
|
879 |
+
#, fuzzy
|
880 |
+
#~ msgid "select roles below"
|
881 |
+
#~ msgstr "Alles deselecteren"
|
882 |
+
|
883 |
#~ msgid "Overview"
|
884 |
#~ msgstr "Overzicht"
|
885 |
|
lang/ure-ru_RU.mo
CHANGED
Binary file
|
lang/ure-ru_RU.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -36,7 +36,7 @@ msgid "Default Roles"
|
|
36 |
msgstr "Роли по-умолчанию"
|
37 |
|
38 |
#: ../includes/settings-template.php:34
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
40 |
msgid "Multisite"
|
41 |
msgstr "Многосайтовые"
|
42 |
|
@@ -65,7 +65,7 @@ msgid "Save"
|
|
65 |
msgstr "Сохранить"
|
66 |
|
67 |
#: ../includes/settings-template.php:102
|
68 |
-
#: ../includes/class-ure-screen-help.php:
|
69 |
msgid "Count users without role"
|
70 |
msgstr "Подсчёт пользователей без роли"
|
71 |
|
@@ -118,71 +118,71 @@ msgid "Settings"
|
|
118 |
msgstr "Установки"
|
119 |
|
120 |
#: ../includes/class-user-role-editor.php:525
|
121 |
-
#: ../includes/class-ure-lib.php:
|
122 |
msgid "Changelog"
|
123 |
msgstr "Журнал изменений"
|
124 |
|
125 |
-
#: ../includes/class-user-role-editor.php:
|
126 |
-
#: ../includes/class-user-role-editor.php:
|
127 |
-
#: ../includes/class-user-role-editor.php:
|
128 |
-
#: ../includes/class-ure-lib.php:
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Редактор ролей пользователей"
|
131 |
|
132 |
-
#: ../includes/class-user-role-editor.php:
|
133 |
-
#: ../includes/class-user-role-editor.php:
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
141 |
|
142 |
-
#: ../includes/class-user-role-editor.php:
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
146 |
msgstr "У вас нет прав на изменение настроек плагина"
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Insufficient permissions to work with User Role Editor"
|
150 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Select All"
|
154 |
msgstr "Выбрать все"
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Unselect All"
|
158 |
msgstr "Исключить все"
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Reverse"
|
162 |
msgstr "Обратить"
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Update"
|
166 |
msgstr "Сохранить"
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Please confirm permissions update"
|
170 |
msgstr "Пожалуйста, подтвердите продолжение "
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
msgid "Add New Role"
|
174 |
msgstr "Добавить новую роль"
|
175 |
|
176 |
-
#: ../includes/class-user-role-editor.php:
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid "Rename Role"
|
179 |
msgstr "Переименовать роль"
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
184 |
|
185 |
-
#: ../includes/class-user-role-editor.php:
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
@@ -190,7 +190,7 @@ msgstr ""
|
|
190 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
191 |
"тире и знак подчеркивания"
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid ""
|
195 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
196 |
"it."
|
@@ -198,38 +198,38 @@ msgstr ""
|
|
198 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
199 |
"латинских символов."
|
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 |
"WordPress."
|
231 |
|
232 |
-
#: ../includes/class-user-role-editor.php:
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
@@ -237,7 +237,7 @@ msgstr ""
|
|
237 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
238 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
239 |
|
240 |
-
#: ../includes/class-user-role-editor.php:
|
241 |
msgid ""
|
242 |
"For more information on how to undo changes and restore plugin capabilities "
|
243 |
"go to"
|
@@ -245,19 +245,19 @@ msgstr ""
|
|
245 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
246 |
"для плагинов, можно узнать здесь"
|
247 |
|
248 |
-
#: ../includes/class-user-role-editor.php:
|
249 |
msgid "Continue?"
|
250 |
msgstr "Продолжить?"
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid "Default Role"
|
254 |
msgstr "Роль по-умолчанию"
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid "Set New Default Role"
|
258 |
msgstr "Установить"
|
259 |
|
260 |
-
#: ../includes/class-user-role-editor.php:
|
261 |
msgid ""
|
262 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
263 |
"or other custom code"
|
@@ -265,11 +265,11 @@ msgstr ""
|
|
265 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
266 |
"прекращеню работы одного из плагинов или другого кода."
|
267 |
|
268 |
-
#: ../includes/class-user-role-editor.php:
|
269 |
msgid " Capability name (ID) can not be empty!"
|
270 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
271 |
|
272 |
-
#: ../includes/class-user-role-editor.php:
|
273 |
msgid ""
|
274 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
275 |
"underscore only!"
|
@@ -277,12 +277,12 @@ msgstr ""
|
|
277 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
278 |
"цифры, знаки подчеркивания"
|
279 |
|
280 |
-
#: ../includes/class-user-role-editor.php:
|
281 |
-
#: ../includes/class-user-role-editor.php:
|
282 |
msgid "Other Roles"
|
283 |
msgstr "Другие роли"
|
284 |
|
285 |
-
#: ../includes/class-user-role-editor.php:
|
286 |
msgid "Edit"
|
287 |
msgstr "Изменить"
|
288 |
|
@@ -314,79 +314,79 @@ msgstr "Фильтр:"
|
|
314 |
msgid "Custom capabilities:"
|
315 |
msgstr "Дополнительные возможности :"
|
316 |
|
317 |
-
#: ../includes/class-ure-lib.php:
|
318 |
msgid "Error: wrong request"
|
319 |
msgstr "Ошибка: неверный запрос"
|
320 |
|
321 |
-
#: ../includes/class-ure-lib.php:
|
322 |
msgid "Role name (ID): "
|
323 |
msgstr "Идентификатор роли (ID):"
|
324 |
|
325 |
-
#: ../includes/class-ure-lib.php:
|
326 |
msgid "Display Role Name: "
|
327 |
msgstr "Наименование роли:"
|
328 |
|
329 |
-
#: ../includes/class-ure-lib.php:
|
330 |
msgid "Make copy of: "
|
331 |
msgstr "Создать копию из:"
|
332 |
|
333 |
-
#: ../includes/class-ure-lib.php:
|
334 |
msgid "Select Role:"
|
335 |
msgstr "Выбери Роль:"
|
336 |
|
337 |
-
#: ../includes/class-ure-lib.php:
|
338 |
msgid "Delete:"
|
339 |
msgstr "Удалить"
|
340 |
|
341 |
-
#: ../includes/class-ure-lib.php:
|
342 |
msgid "Capability name (ID): "
|
343 |
msgstr "Идентификатор (ID):"
|
344 |
|
345 |
-
#: ../includes/class-ure-lib.php:
|
346 |
msgid "Error: "
|
347 |
msgstr "Ошибка:"
|
348 |
|
349 |
-
#: ../includes/class-ure-lib.php:
|
350 |
msgid "Role"
|
351 |
msgstr "Роль"
|
352 |
|
353 |
-
#: ../includes/class-ure-lib.php:
|
354 |
msgid "does not exist"
|
355 |
msgstr "не существует"
|
356 |
|
357 |
-
#: ../includes/class-ure-lib.php:
|
358 |
msgid "Role is updated successfully"
|
359 |
msgstr "Роль изменена успешно"
|
360 |
|
361 |
-
#: ../includes/class-ure-lib.php:
|
362 |
msgid "Roles are updated for all network"
|
363 |
msgstr "Роли изменены для всей сети"
|
364 |
|
365 |
-
#: ../includes/class-ure-lib.php:
|
366 |
msgid "Error occured during role(s) update"
|
367 |
msgstr "При изменении роли произошла ошибка"
|
368 |
|
369 |
-
#: ../includes/class-ure-lib.php:
|
370 |
msgid "User capabilities are updated successfully"
|
371 |
msgstr "Права пользователя изменены успешно"
|
372 |
|
373 |
-
#: ../includes/class-ure-lib.php:
|
374 |
msgid "Error occured during user update"
|
375 |
msgstr "При изменении прав пользователя произошла ошибка "
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid "User Roles are restored to WordPress default values. "
|
379 |
msgstr "Роли возвращены к начальному состоянию"
|
380 |
|
381 |
-
#: ../includes/class-ure-lib.php:
|
382 |
msgid "Help"
|
383 |
msgstr "Помощь"
|
384 |
|
385 |
-
#: ../includes/class-ure-lib.php:
|
386 |
msgid "Error is occur. Please check the log file."
|
387 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
388 |
|
389 |
-
#: ../includes/class-ure-lib.php:
|
390 |
msgid ""
|
391 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
392 |
"only!"
|
@@ -394,7 +394,7 @@ msgstr ""
|
|
394 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
395 |
"цифры, знак подчеркивания и дефис."
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid ""
|
399 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
400 |
"characters to it."
|
@@ -402,377 +402,377 @@ msgstr ""
|
|
402 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
403 |
"роли с латинских символов."
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
#, php-format
|
407 |
msgid "Role %s exists already"
|
408 |
msgstr "Роль %s уже существует"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
msgid "Error is encountered during new role create operation"
|
412 |
msgstr "Произошла ошибка при создании новой роли"
|
413 |
|
414 |
-
#: ../includes/class-ure-lib.php:
|
415 |
#, php-format
|
416 |
msgid "Role %s is created successfully"
|
417 |
msgstr "Роль %s создана успешно"
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Error: Role ID is empty!"
|
421 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
msgid "Error: Empty role display name is not allowed."
|
425 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
426 |
|
427 |
-
#: ../includes/class-ure-lib.php:
|
428 |
#, php-format
|
429 |
msgid "Role %s does not exists"
|
430 |
msgstr "Роль %s не существует"
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Role %s is renamed to %s successfully"
|
435 |
msgstr "Роль %s успешно переименована в %s"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Error encountered during role delete operation"
|
439 |
msgstr "Произошла ошибка при удалении роли"
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Unused roles are deleted successfully"
|
443 |
msgstr "Неиспользуемые роли удалены успешно"
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
#, php-format
|
447 |
msgid "Role %s is deleted successfully"
|
448 |
msgstr "Роль %s удалена успешно"
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
msgid "Error encountered during default role change operation"
|
452 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
453 |
|
454 |
-
#: ../includes/class-ure-lib.php:
|
455 |
#, php-format
|
456 |
msgid "Default role for new users is set to %s successfully"
|
457 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Editor"
|
461 |
msgstr "Редактор"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Author"
|
465 |
msgstr "Автор"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Contributor"
|
469 |
msgstr "Участник"
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Subscriber"
|
473 |
msgstr "Подписчик"
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Switch themes"
|
477 |
msgstr "Менять темы"
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Edit themes"
|
481 |
msgstr "Изменять темы"
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Activate plugins"
|
485 |
msgstr "Активировать плагины"
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Edit plugins"
|
489 |
msgstr "Редактировать плагины"
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit users"
|
493 |
msgstr "Изменять пользователей"
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Edit files"
|
497 |
msgstr "Изменять файлы"
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Manage options"
|
501 |
msgstr "Управлять установками"
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Moderate comments"
|
505 |
msgstr "Модерировать комментарии"
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Manage categories"
|
509 |
msgstr "Управлять категориями"
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Manage links"
|
513 |
msgstr "Управлять ссылками"
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Upload files"
|
517 |
msgstr "Загружать файлы"
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Import"
|
521 |
msgstr "Импорт"
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Unfiltered html"
|
525 |
msgstr "html без фильтра"
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Edit posts"
|
529 |
msgstr "Изменять статьи"
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit others posts"
|
533 |
msgstr "Изменять чужие статьи"
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Edit published posts"
|
537 |
msgstr "Редактировать опубликованные статьи"
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Publish posts"
|
541 |
msgstr "Публиковать статьи"
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Edit pages"
|
545 |
msgstr "Изменять страницы"
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Read"
|
549 |
msgstr "Чтение"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Level 10"
|
553 |
msgstr "Уровень 10"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 9"
|
557 |
msgstr "Уровень 9"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 8"
|
561 |
msgstr "Уровень 9"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 7"
|
565 |
msgstr "Уровень 7"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 6"
|
569 |
msgstr "Уровень 6"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 5"
|
573 |
msgstr "Уровень 5"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 4"
|
577 |
msgstr "Уровень 4"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 3"
|
581 |
msgstr "Уровень 3"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 2"
|
585 |
msgstr "Уровень 2"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 1"
|
589 |
msgstr "Уровень 1"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Level 0"
|
593 |
msgstr "Уровень 0"
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Edit others pages"
|
597 |
msgstr "Редактировать чужие страницы"
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Edit published pages"
|
601 |
msgstr "Редактировать опубликованные страницы"
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Publish pages"
|
605 |
msgstr "Публиковать страницы"
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Delete pages"
|
609 |
msgstr "Удалять страницы"
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete others pages"
|
613 |
msgstr "Удалить чужие страницы"
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete published pages"
|
617 |
msgstr "Удалять опубликованные страницы"
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete posts"
|
621 |
msgstr "Удалять статьи"
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete others posts"
|
625 |
msgstr "Удалять чужие статьи"
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete published posts"
|
629 |
msgstr "Удалять опубликованные статьи"
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Delete private posts"
|
633 |
msgstr "Удалять частные статьи"
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Edit private posts"
|
637 |
msgstr "Редактировать частные статьи"
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Read private posts"
|
641 |
msgstr "Читать частные статьи"
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Delete private pages"
|
645 |
msgstr "Удалять частные страницы"
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Edit private pages"
|
649 |
msgstr "Редактировать частные страницы"
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Read private pages"
|
653 |
msgstr "Читать частные страницы"
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Delete users"
|
657 |
msgstr "Удалять пользователей"
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Create users"
|
661 |
msgstr "Создавать пользователей"
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Unfiltered upload"
|
665 |
msgstr "Загрузка без фильтра"
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Edit dashboard"
|
669 |
msgstr "Изменять панель администратора"
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Update plugins"
|
673 |
msgstr "Обновлять плагины"
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Delete plugins"
|
677 |
msgstr "Удалять плагины"
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Install plugins"
|
681 |
msgstr "Устанавливать плагины"
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Update themes"
|
685 |
msgstr "Обновлять темы"
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Install themes"
|
689 |
msgstr "Устанавливать темы"
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "Update core"
|
693 |
msgstr "Обновлять ядро"
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "List users"
|
697 |
msgstr "Список пользователей"
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Remove users"
|
701 |
msgstr "Удалять пользователей"
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Add users"
|
705 |
msgstr "Добавлять пользователей"
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Promote users"
|
709 |
msgstr "Продвигать пользователей"
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Edit theme options"
|
713 |
msgstr "Изменять настройки темы"
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Delete themes"
|
717 |
msgstr "Удалять темы"
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Export"
|
721 |
msgstr "Экспорт"
|
722 |
|
723 |
-
#: ../includes/class-ure-lib.php:
|
724 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
725 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
726 |
|
727 |
-
#: ../includes/class-ure-lib.php:
|
728 |
#, php-format
|
729 |
msgid "Capability %s is added successfully"
|
730 |
msgstr "Возможность %s добавлена успешно"
|
731 |
|
732 |
-
#: ../includes/class-ure-lib.php:
|
733 |
#, php-format
|
734 |
msgid "Capability %s exists already"
|
735 |
msgstr "Возможность %s уже существует"
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
#, php-format
|
739 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
740 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
741 |
|
742 |
-
#: ../includes/class-ure-lib.php:
|
743 |
#, php-format
|
744 |
msgid "Capability %s is removed successfully"
|
745 |
msgstr "Возможность %s удалена успешно"
|
746 |
|
747 |
-
#: ../includes/class-ure-lib.php:
|
748 |
msgid "Version:"
|
749 |
msgstr "Версия:"
|
750 |
|
751 |
-
#: ../includes/class-ure-lib.php:
|
752 |
msgid "Author's website"
|
753 |
msgstr "Вебсайт автора"
|
754 |
|
755 |
-
#: ../includes/class-ure-lib.php:
|
756 |
msgid "Plugin webpage"
|
757 |
msgstr "Страница плагина"
|
758 |
|
759 |
-
#: ../includes/class-ure-lib.php:
|
760 |
msgid "Plugin download"
|
761 |
msgstr "Загрузить плагин"
|
762 |
|
763 |
-
#: ../includes/class-ure-lib.php:
|
764 |
msgid "FAQ"
|
765 |
msgstr "Часто задаваемые вопросы"
|
766 |
|
767 |
-
#: ../includes/class-ure-lib.php:
|
768 |
msgid "None"
|
769 |
msgstr "Нет"
|
770 |
|
771 |
-
#: ../includes/class-ure-lib.php:
|
772 |
msgid "Delete All Unused Roles"
|
773 |
msgstr "Удалить все неиспользуемые роли"
|
774 |
|
775 |
-
#: ../includes/class-ure-lib.php:
|
776 |
msgid "— No role for this site —"
|
777 |
msgstr "— Нет роли для этого сайта —"
|
778 |
|
@@ -828,15 +828,21 @@ msgstr ""
|
|
828 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
829 |
"опции покажет все устаревшие права пользователей."
|
830 |
|
831 |
-
#: ../includes/class-ure-screen-help.php:
|
832 |
-
msgid "
|
833 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
834 |
|
835 |
-
#: ../includes/class-ure-screen-help.php:
|
836 |
msgid "Other default roles for new registered user"
|
837 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
838 |
|
839 |
-
#: ../includes/class-ure-screen-help.php:
|
840 |
msgid ""
|
841 |
"select roles below to assign them to the new user automatically as an "
|
842 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -849,13 +855,13 @@ msgstr ""
|
|
849 |
"зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
|
850 |
"должны существовать на этом сайте."
|
851 |
|
852 |
-
#: ../includes/class-ure-screen-help.php:
|
853 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
854 |
msgstr ""
|
855 |
"Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
|
856 |
"изменять, удалять пользователей на своих сайтах"
|
857 |
|
858 |
-
#: ../includes/class-ure-screen-help.php:
|
859 |
msgid ""
|
860 |
"Super administrator only may create, edit and delete users under WordPress "
|
861 |
"multi-site by default. Turn this option on in order to remove this "
|
@@ -865,6 +871,9 @@ msgstr ""
|
|
865 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
866 |
"ограничение."
|
867 |
|
|
|
|
|
|
|
868 |
#~ msgid "Overview"
|
869 |
#~ msgstr "Обзор"
|
870 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor v.2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:21+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"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
36 |
msgstr "Роли по-умолчанию"
|
37 |
|
38 |
#: ../includes/settings-template.php:34
|
39 |
+
#: ../includes/class-user-role-editor.php:565
|
40 |
msgid "Multisite"
|
41 |
msgstr "Многосайтовые"
|
42 |
|
65 |
msgstr "Сохранить"
|
66 |
|
67 |
#: ../includes/settings-template.php:102
|
68 |
+
#: ../includes/class-ure-screen-help.php:41
|
69 |
msgid "Count users without role"
|
70 |
msgstr "Подсчёт пользователей без роли"
|
71 |
|
118 |
msgstr "Установки"
|
119 |
|
120 |
#: ../includes/class-user-role-editor.php:525
|
121 |
+
#: ../includes/class-ure-lib.php:2295
|
122 |
msgid "Changelog"
|
123 |
msgstr "Журнал изменений"
|
124 |
|
125 |
+
#: ../includes/class-user-role-editor.php:575
|
126 |
+
#: ../includes/class-user-role-editor.php:603
|
127 |
+
#: ../includes/class-user-role-editor.php:948
|
128 |
+
#: ../includes/class-ure-lib.php:251
|
129 |
msgid "User Role Editor"
|
130 |
msgstr "Редактор ролей пользователей"
|
131 |
|
132 |
+
#: ../includes/class-user-role-editor.php:660
|
133 |
+
#: ../includes/class-user-role-editor.php:678
|
134 |
+
#: ../includes/class-user-role-editor.php:722
|
135 |
msgid "User Role Editor options are updated"
|
136 |
msgstr "Изменения в настройках Редактора ролей пользователей сохранены"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:706
|
139 |
msgid "Default Roles are updated"
|
140 |
msgstr "Изменения в роли по-умолчанию сохранены"
|
141 |
|
142 |
+
#: ../includes/class-user-role-editor.php:730
|
143 |
msgid ""
|
144 |
"You do not have sufficient permissions to manage options for User Role "
|
145 |
"Editor."
|
146 |
msgstr "У вас нет прав на изменение настроек плагина"
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:809
|
149 |
msgid "Insufficient permissions to work with User Role Editor"
|
150 |
msgstr "Не достаточно прав для работы с User Role Editor"
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:890
|
153 |
msgid "Select All"
|
154 |
msgstr "Выбрать все"
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:891
|
157 |
msgid "Unselect All"
|
158 |
msgstr "Исключить все"
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:892
|
161 |
msgid "Reverse"
|
162 |
msgstr "Обратить"
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:893
|
165 |
msgid "Update"
|
166 |
msgstr "Сохранить"
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:894
|
169 |
msgid "Please confirm permissions update"
|
170 |
msgstr "Пожалуйста, подтвердите продолжение "
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:895
|
173 |
msgid "Add New Role"
|
174 |
msgstr "Добавить новую роль"
|
175 |
|
176 |
+
#: ../includes/class-user-role-editor.php:896
|
177 |
+
#: ../includes/class-user-role-editor.php:901
|
178 |
msgid "Rename Role"
|
179 |
msgstr "Переименовать роль"
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:897
|
182 |
msgid " Role name (ID) can not be empty!"
|
183 |
msgstr "Идентификатор роли (ID) не может быть пустым!"
|
184 |
|
185 |
+
#: ../includes/class-user-role-editor.php:898
|
186 |
msgid ""
|
187 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
188 |
"only!"
|
190 |
"Ошибка: идентификатор роли может содержать только латинские буквы, цифры, "
|
191 |
"тире и знак подчеркивания"
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:899
|
194 |
msgid ""
|
195 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
196 |
"it."
|
198 |
"WordPress не поддерживает цифровые идентификаторы ролей. Начните имя роли с "
|
199 |
"латинских символов."
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:900
|
202 |
msgid "Add Role"
|
203 |
msgstr "Добавить роль"
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:902
|
206 |
msgid "Delete Role"
|
207 |
msgstr "Удалить роль"
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:903
|
210 |
msgid "Cancel"
|
211 |
msgstr "Отмена"
|
212 |
|
213 |
+
#: ../includes/class-user-role-editor.php:904
|
214 |
msgid "Add Capability"
|
215 |
msgstr "Новая возм."
|
216 |
|
217 |
+
#: ../includes/class-user-role-editor.php:905
|
218 |
+
#: ../includes/class-user-role-editor.php:914
|
219 |
msgid "Delete Capability"
|
220 |
msgstr "Удалить возм."
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:906
|
223 |
msgid "Reset"
|
224 |
msgstr "Сброс"
|
225 |
|
226 |
+
#: ../includes/class-user-role-editor.php:907
|
227 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
228 |
msgstr ""
|
229 |
"ВНИМАНИЕ! Очистка восстановит роли по состоянию на момент установки "
|
230 |
"WordPress."
|
231 |
|
232 |
+
#: ../includes/class-user-role-editor.php:908
|
233 |
msgid ""
|
234 |
"If any plugins have changed capabilities in any way upon installation (such "
|
235 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
237 |
"Если плагины изменяли пользовательские права после установки WordPress "
|
238 |
"(S2Member, WooCommerce и др.), права, созданные плагинами будут УДАЛЕНЫ!"
|
239 |
|
240 |
+
#: ../includes/class-user-role-editor.php:909
|
241 |
msgid ""
|
242 |
"For more information on how to undo changes and restore plugin capabilities "
|
243 |
"go to"
|
245 |
"Подробнее о том, как откатить сделанные изменения и восстановить разрешения "
|
246 |
"для плагинов, можно узнать здесь"
|
247 |
|
248 |
+
#: ../includes/class-user-role-editor.php:911
|
249 |
msgid "Continue?"
|
250 |
msgstr "Продолжить?"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:912
|
253 |
msgid "Default Role"
|
254 |
msgstr "Роль по-умолчанию"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:913
|
257 |
msgid "Set New Default Role"
|
258 |
msgstr "Установить"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:915
|
261 |
msgid ""
|
262 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
263 |
"or other custom code"
|
265 |
"Внимание! Будьте осторожны - удаление критичной возможности может привести к "
|
266 |
"прекращеню работы одного из плагинов или другого кода."
|
267 |
|
268 |
+
#: ../includes/class-user-role-editor.php:916
|
269 |
msgid " Capability name (ID) can not be empty!"
|
270 |
msgstr "Идентификатор возможности (ID) не может быть пустым!"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:917
|
273 |
msgid ""
|
274 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
275 |
"underscore only!"
|
277 |
"Ошибка: Наименование возможности должно содержать только латинские буквы и "
|
278 |
"цифры, знаки подчеркивания"
|
279 |
|
280 |
+
#: ../includes/class-user-role-editor.php:951
|
281 |
+
#: ../includes/class-user-role-editor.php:980
|
282 |
msgid "Other Roles"
|
283 |
msgstr "Другие роли"
|
284 |
|
285 |
+
#: ../includes/class-user-role-editor.php:962
|
286 |
msgid "Edit"
|
287 |
msgstr "Изменить"
|
288 |
|
314 |
msgid "Custom capabilities:"
|
315 |
msgstr "Дополнительные возможности :"
|
316 |
|
317 |
+
#: ../includes/class-ure-lib.php:159
|
318 |
msgid "Error: wrong request"
|
319 |
msgstr "Ошибка: неверный запрос"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
322 |
msgid "Role name (ID): "
|
323 |
msgstr "Идентификатор роли (ID):"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
326 |
msgid "Display Role Name: "
|
327 |
msgstr "Наименование роли:"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:196
|
330 |
msgid "Make copy of: "
|
331 |
msgstr "Создать копию из:"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:212
|
334 |
msgid "Select Role:"
|
335 |
msgstr "Выбери Роль:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:227
|
338 |
msgid "Delete:"
|
339 |
msgstr "Удалить"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:234
|
342 |
msgid "Capability name (ID): "
|
343 |
msgstr "Идентификатор (ID):"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:348
|
346 |
msgid "Error: "
|
347 |
msgstr "Ошибка:"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:348
|
350 |
msgid "Role"
|
351 |
msgstr "Роль"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:349
|
354 |
msgid "does not exist"
|
355 |
msgstr "не существует"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:392
|
358 |
msgid "Role is updated successfully"
|
359 |
msgstr "Роль изменена успешно"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:394
|
362 |
msgid "Roles are updated for all network"
|
363 |
msgstr "Роли изменены для всей сети"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:400
|
366 |
msgid "Error occured during role(s) update"
|
367 |
msgstr "При изменении роли произошла ошибка"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:407
|
370 |
msgid "User capabilities are updated successfully"
|
371 |
msgstr "Права пользователя изменены успешно"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:412
|
374 |
msgid "Error occured during user update"
|
375 |
msgstr "При изменении прав пользователя произошла ошибка "
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:470
|
378 |
msgid "User Roles are restored to WordPress default values. "
|
379 |
msgstr "Роли возвращены к начальному состоянию"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:1337
|
382 |
msgid "Help"
|
383 |
msgstr "Помощь"
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1695
|
386 |
msgid "Error is occur. Please check the log file."
|
387 |
msgstr "Произошла ошибка. Проверьте лог-файл."
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
390 |
msgid ""
|
391 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
392 |
"only!"
|
394 |
"Ошибка: идентификатор роли (ID) должен содержать только латинские буквы, "
|
395 |
"цифры, знак подчеркивания и дефис."
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
398 |
msgid ""
|
399 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
400 |
"characters to it."
|
402 |
"Ошибка: WordPress не поддерживает цифровые идентификаторы ролей. Начните имя "
|
403 |
"роли с латинских символов."
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1757
|
406 |
#, php-format
|
407 |
msgid "Role %s exists already"
|
408 |
msgstr "Роль %s уже существует"
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1772
|
411 |
msgid "Error is encountered during new role create operation"
|
412 |
msgstr "Произошла ошибка при создании новой роли"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1774
|
415 |
#, php-format
|
416 |
msgid "Role %s is created successfully"
|
417 |
msgstr "Роль %s создана успешно"
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1798
|
420 |
msgid "Error: Role ID is empty!"
|
421 |
msgstr "Ошибка: пустой идентификатор (ID) роли!"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1816
|
424 |
msgid "Error: Empty role display name is not allowed."
|
425 |
msgstr "Ошибка: пустое наименование роли не допускается"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1823
|
428 |
#, php-format
|
429 |
msgid "Role %s does not exists"
|
430 |
msgstr "Роль %s не существует"
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1831
|
433 |
#, php-format
|
434 |
msgid "Role %s is renamed to %s successfully"
|
435 |
msgstr "Роль %s успешно переименована в %s"
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1898
|
438 |
msgid "Error encountered during role delete operation"
|
439 |
msgstr "Произошла ошибка при удалении роли"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1900
|
442 |
msgid "Unused roles are deleted successfully"
|
443 |
msgstr "Неиспользуемые роли удалены успешно"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1902
|
446 |
#, php-format
|
447 |
msgid "Role %s is deleted successfully"
|
448 |
msgstr "Роль %s удалена успешно"
|
449 |
|
450 |
+
#: ../includes/class-ure-lib.php:1927
|
451 |
msgid "Error encountered during default role change operation"
|
452 |
msgstr "Произошла ошибка при изменении роли по-умолчанию"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1933
|
455 |
#, php-format
|
456 |
msgid "Default role for new users is set to %s successfully"
|
457 |
msgstr "Роль по-умолчанию для новых пользователй изменена на %s успешно."
|
458 |
|
459 |
+
#: ../includes/class-ure-lib.php:1952
|
460 |
msgid "Editor"
|
461 |
msgstr "Редактор"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1953
|
464 |
msgid "Author"
|
465 |
msgstr "Автор"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1954
|
468 |
msgid "Contributor"
|
469 |
msgstr "Участник"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1955
|
472 |
msgid "Subscriber"
|
473 |
msgstr "Подписчик"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1957
|
476 |
msgid "Switch themes"
|
477 |
msgstr "Менять темы"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1958
|
480 |
msgid "Edit themes"
|
481 |
msgstr "Изменять темы"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1959
|
484 |
msgid "Activate plugins"
|
485 |
msgstr "Активировать плагины"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1960
|
488 |
msgid "Edit plugins"
|
489 |
msgstr "Редактировать плагины"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1961
|
492 |
msgid "Edit users"
|
493 |
msgstr "Изменять пользователей"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1962
|
496 |
msgid "Edit files"
|
497 |
msgstr "Изменять файлы"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1963
|
500 |
msgid "Manage options"
|
501 |
msgstr "Управлять установками"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1964
|
504 |
msgid "Moderate comments"
|
505 |
msgstr "Модерировать комментарии"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1965
|
508 |
msgid "Manage categories"
|
509 |
msgstr "Управлять категориями"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1966
|
512 |
msgid "Manage links"
|
513 |
msgstr "Управлять ссылками"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1967
|
516 |
msgid "Upload files"
|
517 |
msgstr "Загружать файлы"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1968
|
520 |
msgid "Import"
|
521 |
msgstr "Импорт"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1969
|
524 |
msgid "Unfiltered html"
|
525 |
msgstr "html без фильтра"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1970
|
528 |
msgid "Edit posts"
|
529 |
msgstr "Изменять статьи"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1971
|
532 |
msgid "Edit others posts"
|
533 |
msgstr "Изменять чужие статьи"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1972
|
536 |
msgid "Edit published posts"
|
537 |
msgstr "Редактировать опубликованные статьи"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1973
|
540 |
msgid "Publish posts"
|
541 |
msgstr "Публиковать статьи"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1974
|
544 |
msgid "Edit pages"
|
545 |
msgstr "Изменять страницы"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1975
|
548 |
msgid "Read"
|
549 |
msgstr "Чтение"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1976
|
552 |
msgid "Level 10"
|
553 |
msgstr "Уровень 10"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1977
|
556 |
msgid "Level 9"
|
557 |
msgstr "Уровень 9"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1978
|
560 |
msgid "Level 8"
|
561 |
msgstr "Уровень 9"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1979
|
564 |
msgid "Level 7"
|
565 |
msgstr "Уровень 7"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1980
|
568 |
msgid "Level 6"
|
569 |
msgstr "Уровень 6"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1981
|
572 |
msgid "Level 5"
|
573 |
msgstr "Уровень 5"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1982
|
576 |
msgid "Level 4"
|
577 |
msgstr "Уровень 4"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1983
|
580 |
msgid "Level 3"
|
581 |
msgstr "Уровень 3"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1984
|
584 |
msgid "Level 2"
|
585 |
msgstr "Уровень 2"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1985
|
588 |
msgid "Level 1"
|
589 |
msgstr "Уровень 1"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1986
|
592 |
msgid "Level 0"
|
593 |
msgstr "Уровень 0"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1987
|
596 |
msgid "Edit others pages"
|
597 |
msgstr "Редактировать чужие страницы"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1988
|
600 |
msgid "Edit published pages"
|
601 |
msgstr "Редактировать опубликованные страницы"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1989
|
604 |
msgid "Publish pages"
|
605 |
msgstr "Публиковать страницы"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1990
|
608 |
msgid "Delete pages"
|
609 |
msgstr "Удалять страницы"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1991
|
612 |
msgid "Delete others pages"
|
613 |
msgstr "Удалить чужие страницы"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1992
|
616 |
msgid "Delete published pages"
|
617 |
msgstr "Удалять опубликованные страницы"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1993
|
620 |
msgid "Delete posts"
|
621 |
msgstr "Удалять статьи"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1994
|
624 |
msgid "Delete others posts"
|
625 |
msgstr "Удалять чужие статьи"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1995
|
628 |
msgid "Delete published posts"
|
629 |
msgstr "Удалять опубликованные статьи"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1996
|
632 |
msgid "Delete private posts"
|
633 |
msgstr "Удалять частные статьи"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1997
|
636 |
msgid "Edit private posts"
|
637 |
msgstr "Редактировать частные статьи"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1998
|
640 |
msgid "Read private posts"
|
641 |
msgstr "Читать частные статьи"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1999
|
644 |
msgid "Delete private pages"
|
645 |
msgstr "Удалять частные страницы"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:2000
|
648 |
msgid "Edit private pages"
|
649 |
msgstr "Редактировать частные страницы"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2001
|
652 |
msgid "Read private pages"
|
653 |
msgstr "Читать частные страницы"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2002
|
656 |
msgid "Delete users"
|
657 |
msgstr "Удалять пользователей"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2003
|
660 |
msgid "Create users"
|
661 |
msgstr "Создавать пользователей"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2004
|
664 |
msgid "Unfiltered upload"
|
665 |
msgstr "Загрузка без фильтра"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2005
|
668 |
msgid "Edit dashboard"
|
669 |
msgstr "Изменять панель администратора"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2006
|
672 |
msgid "Update plugins"
|
673 |
msgstr "Обновлять плагины"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2007
|
676 |
msgid "Delete plugins"
|
677 |
msgstr "Удалять плагины"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2008
|
680 |
msgid "Install plugins"
|
681 |
msgstr "Устанавливать плагины"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2009
|
684 |
msgid "Update themes"
|
685 |
msgstr "Обновлять темы"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2010
|
688 |
msgid "Install themes"
|
689 |
msgstr "Устанавливать темы"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2011
|
692 |
msgid "Update core"
|
693 |
msgstr "Обновлять ядро"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2012
|
696 |
msgid "List users"
|
697 |
msgstr "Список пользователей"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2013
|
700 |
msgid "Remove users"
|
701 |
msgstr "Удалять пользователей"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2014
|
704 |
msgid "Add users"
|
705 |
msgstr "Добавлять пользователей"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2015
|
708 |
msgid "Promote users"
|
709 |
msgstr "Продвигать пользователей"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2016
|
712 |
msgid "Edit theme options"
|
713 |
msgstr "Изменять настройки темы"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2017
|
716 |
msgid "Delete themes"
|
717 |
msgstr "Удалять темы"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2018
|
720 |
msgid "Export"
|
721 |
msgstr "Экспорт"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2128
|
724 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
725 |
msgstr "Ошибка: Имя должно содержать только латинские буквы и цифры"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2141
|
728 |
#, php-format
|
729 |
msgid "Capability %s is added successfully"
|
730 |
msgstr "Возможность %s добавлена успешно"
|
731 |
|
732 |
+
#: ../includes/class-ure-lib.php:2143
|
733 |
#, php-format
|
734 |
msgid "Capability %s exists already"
|
735 |
msgstr "Возможность %s уже существует"
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2168
|
738 |
#, php-format
|
739 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
740 |
msgstr "Ошибка! Вам запрещено удалять эту возможность: %s!"
|
741 |
|
742 |
+
#: ../includes/class-ure-lib.php:2187
|
743 |
#, php-format
|
744 |
msgid "Capability %s is removed successfully"
|
745 |
msgstr "Возможность %s удалена успешно"
|
746 |
|
747 |
+
#: ../includes/class-ure-lib.php:2291
|
748 |
msgid "Version:"
|
749 |
msgstr "Версия:"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2292
|
752 |
msgid "Author's website"
|
753 |
msgstr "Вебсайт автора"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2293
|
756 |
msgid "Plugin webpage"
|
757 |
msgstr "Страница плагина"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2294
|
760 |
msgid "Plugin download"
|
761 |
msgstr "Загрузить плагин"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2296
|
764 |
msgid "FAQ"
|
765 |
msgstr "Часто задаваемые вопросы"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2344
|
768 |
msgid "None"
|
769 |
msgstr "Нет"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2371
|
772 |
msgid "Delete All Unused Roles"
|
773 |
msgstr "Удалить все неиспользуемые роли"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2395
|
776 |
msgid "— No role for this site —"
|
777 |
msgstr "— Нет роли для этого сайта —"
|
778 |
|
828 |
"обеспечения совместимости со старыми темами и плагинами. Включение данной "
|
829 |
"опции покажет все устаревшие права пользователей."
|
830 |
|
831 |
+
#: ../includes/class-ure-screen-help.php:42
|
832 |
+
msgid ""
|
833 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
834 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
835 |
+
"users list with role \"No rights\" at the separate tab then."
|
836 |
+
msgstr ""
|
837 |
+
"Показать на странице \"Users\" количество пользователей без роли. Модуль "
|
838 |
+
"позволяет присвоить всем им пустую роль \"No rights\", чтобы затем WordPress "
|
839 |
+
"отобразил пользователей с этой ролью на отдельной вкладке."
|
840 |
|
841 |
+
#: ../includes/class-ure-screen-help.php:59
|
842 |
msgid "Other default roles for new registered user"
|
843 |
msgstr "Другие роли по-умолчанию для вновь зарегистрированного пользователя:"
|
844 |
|
845 |
+
#: ../includes/class-ure-screen-help.php:60
|
846 |
msgid ""
|
847 |
"select roles below to assign them to the new user automatically as an "
|
848 |
"addition to the primary role. Note for multisite environment: take into "
|
855 |
"зарегистрированному пользователю дополнительных ролей по-умолчанию эти роли "
|
856 |
"должны существовать на этом сайте."
|
857 |
|
858 |
+
#: ../includes/class-ure-screen-help.php:78
|
859 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
860 |
msgstr ""
|
861 |
"Разрешить локальным администраторам сайтов (не суперадмин) создавать, "
|
862 |
"изменять, удалять пользователей на своих сайтах"
|
863 |
|
864 |
+
#: ../includes/class-ure-screen-help.php:79
|
865 |
msgid ""
|
866 |
"Super administrator only may create, edit and delete users under WordPress "
|
867 |
"multi-site by default. Turn this option on in order to remove this "
|
871 |
"в многосайтовой сети WordPress. Включите эту опцию, чтобы отменить это "
|
872 |
"ограничение."
|
873 |
|
874 |
+
#~ msgid "select roles below"
|
875 |
+
#~ msgstr "выберите роли ниже"
|
876 |
+
|
877 |
#~ msgid "Overview"
|
878 |
#~ msgstr "Обзор"
|
879 |
|
lang/ure-tr_TR.mo
CHANGED
Binary file
|
lang/ure-tr_TR.po
CHANGED
@@ -1,87 +1,86 @@
|
|
|
|
|
|
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version:
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
-
"Language-Team:
|
|
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"
|
14 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
15 |
-
"X-Poedit-Basepath: .\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
|
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: ..\n"
|
18 |
|
19 |
#: ../includes/settings-template.php:17
|
20 |
-
#, fuzzy
|
21 |
msgid "User Role Editor - Options"
|
22 |
-
msgstr "Kullanıcı Rol Editörü"
|
23 |
|
24 |
#: ../includes/settings-template.php:21
|
25 |
#: ../includes/class-user-role-editor.php:547
|
26 |
-
#, fuzzy
|
27 |
msgid "General"
|
28 |
-
msgstr "
|
29 |
|
30 |
#: ../includes/settings-template.php:26
|
31 |
#: ../includes/class-user-role-editor.php:553
|
32 |
msgid "Additional Modules"
|
33 |
-
msgstr ""
|
34 |
|
35 |
#: ../includes/settings-template.php:30
|
36 |
#: ../includes/class-user-role-editor.php:559
|
37 |
-
#, fuzzy
|
38 |
msgid "Default Roles"
|
39 |
-
msgstr "
|
40 |
|
41 |
#: ../includes/settings-template.php:34
|
42 |
-
#: ../includes/class-user-role-editor.php:
|
43 |
msgid "Multisite"
|
44 |
-
msgstr ""
|
45 |
|
46 |
#: ../includes/settings-template.php:39
|
47 |
msgid "About"
|
48 |
-
msgstr ""
|
49 |
|
50 |
#: ../includes/settings-template.php:53
|
51 |
#: ../includes/class-ure-screen-help.php:15
|
52 |
msgid "Show Administrator role at User Role Editor"
|
53 |
-
msgstr ""
|
54 |
|
55 |
#: ../includes/settings-template.php:61
|
56 |
#: ../includes/class-ure-screen-help.php:18
|
57 |
-
#, fuzzy
|
58 |
msgid "Show capabilities in the human readable form"
|
59 |
-
msgstr "
|
60 |
|
61 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
62 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
63 |
msgid "Show deprecated capabilities"
|
64 |
-
msgstr "Önerilmeyen
|
65 |
|
66 |
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
67 |
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
68 |
msgid "Save"
|
69 |
-
msgstr ""
|
70 |
|
71 |
#: ../includes/settings-template.php:102
|
72 |
-
#: ../includes/class-ure-screen-help.php:
|
73 |
-
#, fuzzy
|
74 |
msgid "Count users without role"
|
75 |
-
msgstr "
|
76 |
|
77 |
#: ../includes/settings-template.php:129
|
78 |
-
#, fuzzy
|
79 |
msgid "Primary default role: "
|
80 |
-
msgstr "Birincil rol:"
|
81 |
|
82 |
#: ../includes/settings-template.php:136
|
83 |
msgid "Other default roles for new registered user: "
|
84 |
-
msgstr ""
|
85 |
|
86 |
#: ../includes/settings-template.php:142
|
87 |
msgid ""
|
@@ -89,28 +88,32 @@ msgid ""
|
|
89 |
"should exist at the site, in order to be assigned to the new registered "
|
90 |
"users."
|
91 |
msgstr ""
|
|
|
|
|
|
|
92 |
|
93 |
#: ../includes/settings-template.php:168
|
94 |
msgid "Allow non super administrators to create, edit, and delete users"
|
95 |
msgstr ""
|
|
|
|
|
96 |
|
97 |
#: ../includes/class-user-role-editor.php:195
|
98 |
-
#, fuzzy
|
99 |
msgid "Change role for users without role"
|
100 |
-
msgstr "
|
101 |
|
102 |
#: ../includes/class-user-role-editor.php:196
|
103 |
msgid "No rights"
|
104 |
-
msgstr ""
|
105 |
|
106 |
#: ../includes/class-user-role-editor.php:197
|
107 |
msgid "Provide new role"
|
108 |
-
msgstr ""
|
109 |
|
110 |
#: ../includes/class-user-role-editor.php:281
|
111 |
#: ../includes/class-user-role-editor.php:283
|
112 |
msgid "You do not have permission to edit this user."
|
113 |
-
msgstr ""
|
114 |
|
115 |
#: ../includes/class-user-role-editor.php:422
|
116 |
msgid "Capabilities"
|
@@ -121,674 +124,677 @@ msgid "Settings"
|
|
121 |
msgstr "Ayarlar"
|
122 |
|
123 |
#: ../includes/class-user-role-editor.php:525
|
124 |
-
#: ../includes/class-ure-lib.php:
|
125 |
msgid "Changelog"
|
126 |
-
msgstr "
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
-
#: ../includes/class-ure-lib.php:
|
132 |
msgid "User Role Editor"
|
133 |
msgstr "Kullanıcı Rol Editörü"
|
134 |
|
135 |
-
#: ../includes/class-user-role-editor.php:
|
136 |
-
#: ../includes/class-user-role-editor.php:
|
137 |
-
#: ../includes/class-user-role-editor.php:
|
138 |
msgid "User Role Editor options are updated"
|
139 |
-
msgstr ""
|
140 |
|
141 |
-
#: ../includes/class-user-role-editor.php:
|
142 |
-
#, fuzzy
|
143 |
msgid "Default Roles are updated"
|
144 |
-
msgstr "
|
145 |
|
146 |
-
#: ../includes/class-user-role-editor.php:
|
147 |
msgid ""
|
148 |
"You do not have sufficient permissions to manage options for User Role "
|
149 |
"Editor."
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.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 "Güncelle"
|
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 "Yeni Rol Ekle"
|
179 |
|
180 |
-
#: ../includes/class-user-role-editor.php:
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
-
#, fuzzy
|
183 |
msgid "Rename Role"
|
184 |
-
msgstr "
|
185 |
|
186 |
-
#: ../includes/class-user-role-editor.php:
|
187 |
msgid " Role name (ID) can not be empty!"
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#: ../includes/class-user-role-editor.php:
|
191 |
msgid ""
|
192 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
193 |
"only!"
|
194 |
msgstr ""
|
195 |
-
"Rol
|
196 |
-
"
|
197 |
|
198 |
-
#: ../includes/class-user-role-editor.php:
|
199 |
msgid ""
|
200 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
201 |
"it."
|
202 |
msgstr ""
|
|
|
203 |
|
204 |
-
#: ../includes/class-user-role-editor.php:
|
205 |
msgid "Add Role"
|
206 |
msgstr "Rol Ekle"
|
207 |
|
208 |
-
#: ../includes/class-user-role-editor.php:
|
209 |
msgid "Delete Role"
|
210 |
-
msgstr "
|
211 |
|
212 |
-
#: ../includes/class-user-role-editor.php:
|
213 |
msgid "Cancel"
|
214 |
msgstr "İptal"
|
215 |
|
216 |
-
#: ../includes/class-user-role-editor.php:
|
217 |
msgid "Add Capability"
|
218 |
msgstr "Kabiliyet Ekle"
|
219 |
|
220 |
-
#: ../includes/class-user-role-editor.php:
|
221 |
-
#: ../includes/class-user-role-editor.php:
|
222 |
msgid "Delete Capability"
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#: ../includes/class-user-role-editor.php:
|
226 |
msgid "Reset"
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#: ../includes/class-user-role-editor.php:
|
230 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
231 |
msgstr ""
|
|
|
232 |
|
233 |
-
#: ../includes/class-user-role-editor.php:
|
234 |
msgid ""
|
235 |
"If any plugins have changed capabilities in any way upon installation (such "
|
236 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
237 |
msgstr ""
|
|
|
|
|
238 |
|
239 |
-
#: ../includes/class-user-role-editor.php:
|
240 |
msgid ""
|
241 |
"For more information on how to undo changes and restore plugin capabilities "
|
242 |
"go to"
|
243 |
msgstr ""
|
|
|
|
|
244 |
|
245 |
-
#: ../includes/class-user-role-editor.php:
|
246 |
msgid "Continue?"
|
247 |
-
msgstr ""
|
248 |
|
249 |
-
#: ../includes/class-user-role-editor.php:
|
250 |
msgid "Default Role"
|
251 |
-
msgstr "
|
252 |
|
253 |
-
#: ../includes/class-user-role-editor.php:
|
254 |
msgid "Set New Default Role"
|
255 |
-
msgstr "Yeni
|
256 |
|
257 |
-
#: ../includes/class-user-role-editor.php:
|
258 |
msgid ""
|
259 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
260 |
"or other custom code"
|
261 |
msgstr ""
|
262 |
-
"Uyarı! Dikkatli olun -
|
263 |
-
"
|
264 |
|
265 |
-
#: ../includes/class-user-role-editor.php:
|
266 |
msgid " Capability name (ID) can not be empty!"
|
267 |
-
msgstr "
|
268 |
|
269 |
-
#: ../includes/class-user-role-editor.php:
|
270 |
msgid ""
|
271 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
272 |
"underscore only!"
|
273 |
msgstr ""
|
274 |
-
"Kabiliyet
|
275 |
-
"
|
276 |
|
277 |
-
#: ../includes/class-user-role-editor.php:
|
278 |
-
#: ../includes/class-user-role-editor.php:
|
279 |
msgid "Other Roles"
|
280 |
msgstr "Diğer Roller"
|
281 |
|
282 |
-
#: ../includes/class-user-role-editor.php:
|
283 |
msgid "Edit"
|
284 |
msgstr "Düzenle"
|
285 |
|
286 |
#: ../includes/ure-role-edit.php:17
|
287 |
-
#, fuzzy
|
288 |
msgid "Select Role and change its capabilities:"
|
289 |
-
msgstr "
|
290 |
|
291 |
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
292 |
msgid "Show capabilities in human readable form"
|
293 |
-
msgstr "
|
294 |
|
295 |
#: ../includes/ure-role-edit.php:44
|
296 |
msgid "If checked, then apply action to ALL sites of this Network"
|
297 |
-
msgstr "
|
298 |
|
299 |
#: ../includes/ure-role-edit.php:56
|
300 |
msgid "Apply to All Sites"
|
301 |
-
msgstr "Tüm
|
302 |
|
303 |
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
304 |
msgid "Core capabilities:"
|
305 |
-
msgstr "Çekirdek
|
306 |
|
307 |
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
308 |
msgid "Quick filter:"
|
309 |
-
msgstr ""
|
310 |
|
311 |
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
312 |
msgid "Custom capabilities:"
|
313 |
-
msgstr "Özel
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
msgid "Error: wrong request"
|
317 |
-
msgstr ""
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Role name (ID): "
|
321 |
-
msgstr "Rol
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Display Role Name: "
|
325 |
-
msgstr "
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Make copy of: "
|
329 |
-
msgstr "
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Select Role:"
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "Delete:"
|
337 |
msgstr "Sil:"
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Capability name (ID): "
|
341 |
-
msgstr "
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Error: "
|
345 |
msgstr "Hata:"
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Role"
|
349 |
-
msgstr "Rol
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "does not exist"
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Role is updated successfully"
|
357 |
-
msgstr ""
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "Roles are updated for all network"
|
361 |
-
msgstr ""
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Error occured during role(s) update"
|
365 |
-
msgstr ""
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "User capabilities are updated successfully"
|
369 |
-
msgstr ""
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid "Error occured during user update"
|
373 |
-
msgstr ""
|
374 |
|
375 |
-
#: ../includes/class-ure-lib.php:
|
376 |
msgid "User Roles are restored to WordPress default values. "
|
377 |
-
msgstr "
|
378 |
|
379 |
-
#: ../includes/class-ure-lib.php:
|
380 |
msgid "Help"
|
381 |
msgstr "Yardım"
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
msgid "Error is occur. Please check the log file."
|
385 |
-
msgstr "
|
386 |
|
387 |
-
#: ../includes/class-ure-lib.php:
|
388 |
msgid ""
|
389 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
390 |
"only!"
|
391 |
msgstr ""
|
392 |
-
"Hata: Rol ID yalnızca latin karakterleri,
|
393 |
-
"
|
394 |
|
395 |
-
#: ../includes/class-ure-lib.php:
|
396 |
msgid ""
|
397 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
398 |
"characters to it."
|
399 |
msgstr ""
|
|
|
|
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
#, php-format
|
403 |
msgid "Role %s exists already"
|
404 |
msgstr "%s rolü zaten mevcut"
|
405 |
|
406 |
-
#: ../includes/class-ure-lib.php:
|
407 |
msgid "Error is encountered during new role create operation"
|
408 |
-
msgstr "Yeni rol oluşturma işlemi sırasında hata"
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
#, php-format
|
412 |
msgid "Role %s is created successfully"
|
413 |
msgstr "%s rolü başarıyla oluşturuldu"
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Error: Role ID is empty!"
|
417 |
-
msgstr ""
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Error: Empty role display name is not allowed."
|
421 |
-
msgstr ""
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
-
#,
|
425 |
msgid "Role %s does not exists"
|
426 |
-
msgstr "
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
-
#,
|
430 |
msgid "Role %s is renamed to %s successfully"
|
431 |
-
msgstr "%s
|
432 |
|
433 |
-
#: ../includes/class-ure-lib.php:
|
434 |
msgid "Error encountered during role delete operation"
|
435 |
-
msgstr "Rol silme işlemi sırasında hata"
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Unused roles are deleted successfully"
|
439 |
-
msgstr ""
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
#, php-format
|
443 |
msgid "Role %s is deleted successfully"
|
444 |
msgstr "%s rolü başarıyla silindi"
|
445 |
|
446 |
-
#: ../includes/class-ure-lib.php:
|
447 |
msgid "Error encountered during default role change operation"
|
448 |
-
msgstr "Varsayılan
|
449 |
|
450 |
-
#: ../includes/class-ure-lib.php:
|
451 |
#, php-format
|
452 |
msgid "Default role for new users is set to %s successfully"
|
453 |
-
msgstr "Yeni kullanıcılar için varsayılan rol %s
|
454 |
|
455 |
-
#: ../includes/class-ure-lib.php:
|
456 |
msgid "Editor"
|
457 |
msgstr "Editör"
|
458 |
|
459 |
-
#: ../includes/class-ure-lib.php:
|
460 |
msgid "Author"
|
461 |
msgstr "Yazar"
|
462 |
|
463 |
-
#: ../includes/class-ure-lib.php:
|
464 |
msgid "Contributor"
|
465 |
msgstr "İçerik Sağlayıcı"
|
466 |
|
467 |
-
#: ../includes/class-ure-lib.php:
|
468 |
msgid "Subscriber"
|
469 |
-
msgstr "
|
470 |
|
471 |
-
#: ../includes/class-ure-lib.php:
|
472 |
msgid "Switch themes"
|
473 |
-
msgstr "
|
474 |
|
475 |
-
#: ../includes/class-ure-lib.php:
|
476 |
msgid "Edit themes"
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#: ../includes/class-ure-lib.php:
|
480 |
msgid "Activate plugins"
|
481 |
-
msgstr "
|
482 |
|
483 |
-
#: ../includes/class-ure-lib.php:
|
484 |
msgid "Edit plugins"
|
485 |
-
msgstr "
|
486 |
|
487 |
-
#: ../includes/class-ure-lib.php:
|
488 |
msgid "Edit users"
|
489 |
-
msgstr "
|
490 |
|
491 |
-
#: ../includes/class-ure-lib.php:
|
492 |
msgid "Edit files"
|
493 |
-
msgstr "
|
494 |
|
495 |
-
#: ../includes/class-ure-lib.php:
|
496 |
msgid "Manage options"
|
497 |
-
msgstr "
|
498 |
|
499 |
-
#: ../includes/class-ure-lib.php:
|
500 |
msgid "Moderate comments"
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: ../includes/class-ure-lib.php:
|
504 |
msgid "Manage categories"
|
505 |
-
msgstr "
|
506 |
|
507 |
-
#: ../includes/class-ure-lib.php:
|
508 |
msgid "Manage links"
|
509 |
-
msgstr "
|
510 |
|
511 |
-
#: ../includes/class-ure-lib.php:
|
512 |
msgid "Upload files"
|
513 |
-
msgstr "Dosya
|
514 |
|
515 |
-
#: ../includes/class-ure-lib.php:
|
516 |
msgid "Import"
|
517 |
-
msgstr "
|
518 |
|
519 |
-
#: ../includes/class-ure-lib.php:
|
520 |
msgid "Unfiltered html"
|
521 |
-
msgstr "
|
522 |
|
523 |
-
#: ../includes/class-ure-lib.php:
|
524 |
msgid "Edit posts"
|
525 |
-
msgstr "
|
526 |
|
527 |
-
#: ../includes/class-ure-lib.php:
|
528 |
msgid "Edit others posts"
|
529 |
-
msgstr "Başkalarının
|
530 |
|
531 |
-
#: ../includes/class-ure-lib.php:
|
532 |
msgid "Edit published posts"
|
533 |
-
msgstr "
|
534 |
|
535 |
-
#: ../includes/class-ure-lib.php:
|
536 |
msgid "Publish posts"
|
537 |
-
msgstr "
|
538 |
|
539 |
-
#: ../includes/class-ure-lib.php:
|
540 |
msgid "Edit pages"
|
541 |
-
msgstr "
|
542 |
|
543 |
-
#: ../includes/class-ure-lib.php:
|
544 |
msgid "Read"
|
545 |
-
msgstr "
|
546 |
|
547 |
-
#: ../includes/class-ure-lib.php:
|
548 |
msgid "Level 10"
|
549 |
msgstr "Seviye 10"
|
550 |
|
551 |
-
#: ../includes/class-ure-lib.php:
|
552 |
msgid "Level 9"
|
553 |
msgstr "Seviye 9"
|
554 |
|
555 |
-
#: ../includes/class-ure-lib.php:
|
556 |
msgid "Level 8"
|
557 |
msgstr "Seviye 8"
|
558 |
|
559 |
-
#: ../includes/class-ure-lib.php:
|
560 |
msgid "Level 7"
|
561 |
msgstr "Seviye 7"
|
562 |
|
563 |
-
#: ../includes/class-ure-lib.php:
|
564 |
msgid "Level 6"
|
565 |
msgstr "Seviye 6"
|
566 |
|
567 |
-
#: ../includes/class-ure-lib.php:
|
568 |
msgid "Level 5"
|
569 |
msgstr "Seviye 5"
|
570 |
|
571 |
-
#: ../includes/class-ure-lib.php:
|
572 |
msgid "Level 4"
|
573 |
msgstr "Seviye 4"
|
574 |
|
575 |
-
#: ../includes/class-ure-lib.php:
|
576 |
msgid "Level 3"
|
577 |
msgstr "Seviye 3"
|
578 |
|
579 |
-
#: ../includes/class-ure-lib.php:
|
580 |
msgid "Level 2"
|
581 |
msgstr "Seviye 2"
|
582 |
|
583 |
-
#: ../includes/class-ure-lib.php:
|
584 |
msgid "Level 1"
|
585 |
msgstr "Seviye 1"
|
586 |
|
587 |
-
#: ../includes/class-ure-lib.php:
|
588 |
msgid "Level 0"
|
589 |
msgstr "Seviye 0"
|
590 |
|
591 |
-
#: ../includes/class-ure-lib.php:
|
592 |
msgid "Edit others pages"
|
593 |
-
msgstr "Başkalarının sayfalarını
|
594 |
|
595 |
-
#: ../includes/class-ure-lib.php:
|
596 |
msgid "Edit published pages"
|
597 |
-
msgstr "
|
598 |
|
599 |
-
#: ../includes/class-ure-lib.php:
|
600 |
msgid "Publish pages"
|
601 |
-
msgstr "
|
602 |
|
603 |
-
#: ../includes/class-ure-lib.php:
|
604 |
msgid "Delete pages"
|
605 |
-
msgstr "
|
606 |
|
607 |
-
#: ../includes/class-ure-lib.php:
|
608 |
msgid "Delete others pages"
|
609 |
-
msgstr "Başkalarının sayfalarını
|
610 |
|
611 |
-
#: ../includes/class-ure-lib.php:
|
612 |
msgid "Delete published pages"
|
613 |
-
msgstr "
|
614 |
|
615 |
-
#: ../includes/class-ure-lib.php:
|
616 |
msgid "Delete posts"
|
617 |
-
msgstr "
|
618 |
|
619 |
-
#: ../includes/class-ure-lib.php:
|
620 |
msgid "Delete others posts"
|
621 |
-
msgstr "Başkalarının
|
622 |
|
623 |
-
#: ../includes/class-ure-lib.php:
|
624 |
msgid "Delete published posts"
|
625 |
-
msgstr "
|
626 |
|
627 |
-
#: ../includes/class-ure-lib.php:
|
628 |
msgid "Delete private posts"
|
629 |
-
msgstr "Özel
|
630 |
|
631 |
-
#: ../includes/class-ure-lib.php:
|
632 |
msgid "Edit private posts"
|
633 |
-
msgstr "Özel
|
634 |
|
635 |
-
#: ../includes/class-ure-lib.php:
|
636 |
msgid "Read private posts"
|
637 |
-
msgstr "Özel
|
638 |
|
639 |
-
#: ../includes/class-ure-lib.php:
|
640 |
msgid "Delete private pages"
|
641 |
-
msgstr "Özel
|
642 |
|
643 |
-
#: ../includes/class-ure-lib.php:
|
644 |
msgid "Edit private pages"
|
645 |
-
msgstr "Özel sayfaları
|
646 |
|
647 |
-
#: ../includes/class-ure-lib.php:
|
648 |
msgid "Read private pages"
|
649 |
-
msgstr "Özel
|
650 |
|
651 |
-
#: ../includes/class-ure-lib.php:
|
652 |
msgid "Delete users"
|
653 |
-
msgstr "Kullanıcı
|
654 |
|
655 |
-
#: ../includes/class-ure-lib.php:
|
656 |
msgid "Create users"
|
657 |
-
msgstr "Kullanıcı
|
658 |
|
659 |
-
#: ../includes/class-ure-lib.php:
|
660 |
msgid "Unfiltered upload"
|
661 |
-
msgstr "
|
662 |
|
663 |
-
#: ../includes/class-ure-lib.php:
|
664 |
msgid "Edit dashboard"
|
665 |
-
msgstr "
|
666 |
|
667 |
-
#: ../includes/class-ure-lib.php:
|
668 |
msgid "Update plugins"
|
669 |
-
msgstr "
|
670 |
|
671 |
-
#: ../includes/class-ure-lib.php:
|
672 |
msgid "Delete plugins"
|
673 |
-
msgstr "Eklenti
|
674 |
|
675 |
-
#: ../includes/class-ure-lib.php:
|
676 |
msgid "Install plugins"
|
677 |
-
msgstr "Eklenti
|
678 |
|
679 |
-
#: ../includes/class-ure-lib.php:
|
680 |
msgid "Update themes"
|
681 |
-
msgstr "
|
682 |
|
683 |
-
#: ../includes/class-ure-lib.php:
|
684 |
msgid "Install themes"
|
685 |
-
msgstr "Tema
|
686 |
|
687 |
-
#: ../includes/class-ure-lib.php:
|
688 |
msgid "Update core"
|
689 |
-
msgstr "
|
690 |
|
691 |
-
#: ../includes/class-ure-lib.php:
|
692 |
msgid "List users"
|
693 |
-
msgstr "
|
694 |
|
695 |
-
#: ../includes/class-ure-lib.php:
|
696 |
msgid "Remove users"
|
697 |
-
msgstr "Kullanıcı
|
698 |
|
699 |
-
#: ../includes/class-ure-lib.php:
|
700 |
msgid "Add users"
|
701 |
-
msgstr "
|
702 |
|
703 |
-
#: ../includes/class-ure-lib.php:
|
704 |
msgid "Promote users"
|
705 |
-
msgstr "Kullanıcı
|
706 |
|
707 |
-
#: ../includes/class-ure-lib.php:
|
708 |
msgid "Edit theme options"
|
709 |
-
msgstr "Tema
|
710 |
|
711 |
-
#: ../includes/class-ure-lib.php:
|
712 |
msgid "Delete themes"
|
713 |
-
msgstr "
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
msgid "Export"
|
717 |
-
msgstr "Dışa
|
718 |
|
719 |
-
#: ../includes/class-ure-lib.php:
|
720 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
721 |
-
msgstr ""
|
722 |
-
"Hata: Kabiliyet adı yalnızca latin karakterleri ve sayılardan oluşabilir."
|
723 |
|
724 |
-
#: ../includes/class-ure-lib.php:
|
725 |
#, php-format
|
726 |
msgid "Capability %s is added successfully"
|
727 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
728 |
|
729 |
-
#: ../includes/class-ure-lib.php:
|
730 |
#, php-format
|
731 |
msgid "Capability %s exists already"
|
732 |
msgstr "%s kabiliyeti zaten mevcut"
|
733 |
|
734 |
-
#: ../includes/class-ure-lib.php:
|
735 |
#, php-format
|
736 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
737 |
-
msgstr "Hata! Bu kabiliyeti
|
738 |
|
739 |
-
#: ../includes/class-ure-lib.php:
|
740 |
#, php-format
|
741 |
msgid "Capability %s is removed successfully"
|
742 |
-
msgstr "%s kabiliyeti başarıyla
|
743 |
|
744 |
-
#: ../includes/class-ure-lib.php:
|
745 |
msgid "Version:"
|
746 |
-
msgstr ""
|
747 |
|
748 |
-
#: ../includes/class-ure-lib.php:
|
749 |
msgid "Author's website"
|
750 |
-
msgstr "
|
751 |
|
752 |
-
#: ../includes/class-ure-lib.php:
|
753 |
msgid "Plugin webpage"
|
754 |
-
msgstr "
|
755 |
|
756 |
-
#: ../includes/class-ure-lib.php:
|
757 |
-
#, fuzzy
|
758 |
msgid "Plugin download"
|
759 |
-
msgstr "
|
760 |
|
761 |
-
#: ../includes/class-ure-lib.php:
|
762 |
msgid "FAQ"
|
763 |
msgstr "SSS"
|
764 |
|
765 |
-
#: ../includes/class-ure-lib.php:
|
766 |
msgid "None"
|
767 |
msgstr "Hiçbiri"
|
768 |
|
769 |
-
#: ../includes/class-ure-lib.php:
|
770 |
msgid "Delete All Unused Roles"
|
771 |
-
msgstr ""
|
772 |
|
773 |
-
#: ../includes/class-ure-lib.php:
|
774 |
msgid "— No role for this site —"
|
775 |
-
msgstr ""
|
776 |
|
777 |
#: ../includes/ure-user-edit.php:31
|
778 |
msgid "Network Super Admin"
|
779 |
-
msgstr ""
|
780 |
|
781 |
#: ../includes/ure-user-edit.php:34
|
782 |
msgid "Change capabilities for user"
|
783 |
-
msgstr "Kullanıcının kabiliyetlerini değiştir
|
784 |
|
785 |
#: ../includes/ure-user-edit.php:71
|
786 |
msgid "Primary Role:"
|
787 |
-
msgstr "Birincil
|
788 |
|
789 |
#: ../includes/ure-user-edit.php:81
|
790 |
msgid "bbPress Role:"
|
791 |
-
msgstr "bbPress
|
792 |
|
793 |
#: ../includes/ure-user-edit.php:91
|
794 |
msgid "Other Roles:"
|
@@ -800,6 +806,9 @@ msgid ""
|
|
800 |
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
801 |
"for security reasons."
|
802 |
msgstr ""
|
|
|
|
|
|
|
803 |
|
804 |
#: ../includes/class-ure-screen-help.php:19
|
805 |
msgid ""
|
@@ -807,6 +816,9 @@ msgid ""
|
|
807 |
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
808 |
"others posts\"."
|
809 |
msgstr ""
|
|
|
|
|
|
|
810 |
|
811 |
#: ../includes/class-ure-screen-help.php:22
|
812 |
msgid ""
|
@@ -815,17 +827,23 @@ msgid ""
|
|
815 |
"with the old themes and plugins code. Turning on this option will show those "
|
816 |
"deprecated capabilities."
|
817 |
msgstr ""
|
|
|
|
|
|
|
|
|
818 |
|
819 |
-
#: ../includes/class-ure-screen-help.php:
|
820 |
-
|
821 |
-
|
822 |
-
|
|
|
|
|
823 |
|
824 |
-
#: ../includes/class-ure-screen-help.php:
|
825 |
msgid "Other default roles for new registered user"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: ../includes/class-ure-screen-help.php:
|
829 |
msgid ""
|
830 |
"select roles below to assign them to the new user automatically as an "
|
831 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -833,563 +851,16 @@ msgid ""
|
|
833 |
"assigned to the new registered users."
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: ../includes/class-ure-screen-help.php:
|
837 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: ../includes/class-ure-screen-help.php:
|
841 |
msgid ""
|
842 |
"Super administrator only may create, edit and delete users under WordPress "
|
843 |
"multi-site by default. Turn this option on in order to remove this "
|
844 |
"limitation."
|
845 |
msgstr ""
|
846 |
|
847 |
-
#~ msgid "
|
848 |
-
#~ msgstr "
|
849 |
-
|
850 |
-
#~ msgid ""
|
851 |
-
#~ "Reset Roles to WordPress defaults. Be careful, all changes made by you or "
|
852 |
-
#~ "plugins will be lost. Some plugins, e.g. S2Member, WooCommerce "
|
853 |
-
#~ "reactivation could be needed. Continue?"
|
854 |
-
#~ msgstr ""
|
855 |
-
#~ "Rolleri Wordpress öntanımlılarına ayarla. Dikkatli olun, sizin "
|
856 |
-
#~ "tarafınızdan veya eklenti tarafından yapılan tüm değişiklikler "
|
857 |
-
#~ "kaybolacak. Bazı eklentiler, örneğin S2Member, WooCommerce için yeniden "
|
858 |
-
#~ "etkinleştirme gerekebilir. Devam etmek istiyor musunuz?"
|
859 |
-
|
860 |
-
#~ msgid "User Role Editor requires PHP %s or newer."
|
861 |
-
#~ msgstr ""
|
862 |
-
#~ "User Role Editor eklentisi PHP %s veya daha yüksek bir sürüme ihtiyaç "
|
863 |
-
#~ "duymaktadır."
|
864 |
-
|
865 |
-
#~ msgid "Please update!"
|
866 |
-
#~ msgstr "Lütfen güncelleyin!"
|
867 |
-
|
868 |
-
#~ msgid "Only"
|
869 |
-
#~ msgstr "Sadece"
|
870 |
-
|
871 |
-
#~ msgid "is allowed to use"
|
872 |
-
#~ msgstr "kullanmak için yetkilidir"
|
873 |
-
|
874 |
-
#~ msgid "User Role Editor requires WordPress %s or newer."
|
875 |
-
#~ msgstr ""
|
876 |
-
#~ "User Role Editor eklentisi en az WordPress %s sürümüne ihtiyaç "
|
877 |
-
#~ "duymaktadır."
|
878 |
-
|
879 |
-
#~ msgid "Backup record is created for the current role capabilities"
|
880 |
-
#~ msgstr "Güncel rol yeterlilikleri için yedek kayıt oluşturuldu"
|
881 |
-
|
882 |
-
#~ msgid "User"
|
883 |
-
#~ msgstr "Kullanıcı"
|
884 |
-
|
885 |
-
#~ msgid "Database operation error. Check log file."
|
886 |
-
#~ msgstr "Veritabanı operasyonu hatası. Günlük dosyasını kontrol edin."
|
887 |
-
|
888 |
-
#~ msgid ""
|
889 |
-
#~ "No backup data. It is created automatically before the first role data "
|
890 |
-
#~ "update."
|
891 |
-
#~ msgstr ""
|
892 |
-
#~ "Henüz yedekleme yapılmamış. İlk yedekleme, ilk rol verisi güncellemesi "
|
893 |
-
#~ "öncesi otomatik olarak yapılacaktır."
|
894 |
-
|
895 |
-
#~ msgid " Name must contain latin characters and digits only!"
|
896 |
-
#~ msgstr "Ad, yalnızca latin karakterleri ve sayılardan oluşabilir!"
|
897 |
-
|
898 |
-
#~ msgid "Change Default Role"
|
899 |
-
#~ msgstr "Varsayılan Rolü Değiştir"
|
900 |
-
|
901 |
-
#~ msgid ""
|
902 |
-
#~ "Restore Roles from backup copy. Be careful, backup was created when you "
|
903 |
-
#~ "started URE 1st time. All changes you made after that will be lost"
|
904 |
-
#~ msgstr ""
|
905 |
-
#~ "Yedek kopyasında rolleri geri al. Dikkatli olun, Kullanıcı Rol Editörü`nü "
|
906 |
-
#~ "ilk defa çalıştırdığınızda yedek alındı. Ondan sonra yaptığınız "
|
907 |
-
#~ "değişklikler yok olacak"
|
908 |
-
|
909 |
-
#~ msgid "Role \"%s\" update: please confirm to continue"
|
910 |
-
#~ msgstr "\"%s\" rolü güncellendi: Devam etmek için lütfen onaylayın"
|
911 |
-
|
912 |
-
#~ msgid "Save Changes"
|
913 |
-
#~ msgstr "Değişiklikleri Kaydet"
|
914 |
-
|
915 |
-
#~ msgid "Cancel not saved changes"
|
916 |
-
#~ msgstr "Kaydedilmemiş değişiklikleri iptal et"
|
917 |
-
|
918 |
-
#~ msgid "Restore Roles from backup copy"
|
919 |
-
#~ msgstr "Rolleri yedekten geri yükle"
|
920 |
-
|
921 |
-
#~ msgid "Name: "
|
922 |
-
#~ msgstr "İsim:"
|
923 |
-
|
924 |
-
#~ msgid "Add"
|
925 |
-
#~ msgstr "Ekle"
|
926 |
-
|
927 |
-
#~ msgid "Add New User Role"
|
928 |
-
#~ msgstr "Yeni Kullanıcı Rolü Ekle"
|
929 |
-
|
930 |
-
#~ msgid "Change"
|
931 |
-
#~ msgstr "Değiştir"
|
932 |
-
|
933 |
-
#~ msgid "Remove"
|
934 |
-
#~ msgstr "Kaldır"
|
935 |
-
|
936 |
-
#~ msgid "Remove User Capability"
|
937 |
-
#~ msgstr "Kullanıcının kabiliyetini kaldır"
|
938 |
-
|
939 |
-
#~ msgid "User \"%s\" update: please confirm to continue"
|
940 |
-
#~ msgstr "\"%s\" güncellendi: Devam etmek için lütfen onaylayın"
|
941 |
-
|
942 |
-
#~ msgid "Role:"
|
943 |
-
#~ msgstr "Rol:"
|
944 |
-
|
945 |
-
#~ msgid "Add capabilities to this user:"
|
946 |
-
#~ msgstr "Bu kullanıcıya kabiliyetler ekle:"
|
947 |
-
|
948 |
-
#~ msgid "Greetings:"
|
949 |
-
#~ msgstr "Teşekkürlerimle:"
|
950 |
-
|
951 |
-
#~ msgid "It's me, the author"
|
952 |
-
#~ msgstr "Ben, hazırlayan"
|
953 |
-
|
954 |
-
#~ msgid "For the help with Belorussian translation"
|
955 |
-
#~ msgstr "Beyaz Rusça tercümesi için"
|
956 |
-
|
957 |
-
#~ msgid "For the help with Brasilian translation"
|
958 |
-
#~ msgstr "Brasilian tercümesi için"
|
959 |
-
|
960 |
-
#~ msgid "For the help with Brasilian Portuguese translation"
|
961 |
-
#~ msgstr "Brasilian tercümesi için"
|
962 |
-
|
963 |
-
#~ msgid "For the help with Chinese translation"
|
964 |
-
#~ msgstr "Chinese tercümesi için"
|
965 |
-
|
966 |
-
#~ msgid "For the help with Dutch translation"
|
967 |
-
#~ msgstr "Dutch tercümesi için"
|
968 |
-
|
969 |
-
#~ msgid "For the help with Finnish translation"
|
970 |
-
#~ msgstr "Finnish tercümesi için"
|
971 |
-
|
972 |
-
#~ msgid "For the help with French translation"
|
973 |
-
#~ msgstr "Fransızca tercümesi için"
|
974 |
-
|
975 |
-
#~ msgid "For the help with German translation"
|
976 |
-
#~ msgstr "Almanca tercümesi için"
|
977 |
-
|
978 |
-
#, fuzzy
|
979 |
-
#~ msgid "For the help with Hindi translation"
|
980 |
-
#~ msgstr "Hindi tercümesi için"
|
981 |
-
|
982 |
-
#~ msgid "For the help with Hungarian translation"
|
983 |
-
#~ msgstr "Macarca tercümesi için"
|
984 |
-
|
985 |
-
#~ msgid "For the help with Italian translation"
|
986 |
-
#~ msgstr "İtalyanca tercümesi için"
|
987 |
-
|
988 |
-
#~ msgid "For the help with Japanese translation"
|
989 |
-
#~ msgstr "Japonca tercümesi için"
|
990 |
-
|
991 |
-
#~ msgid "For the help with Persian translation"
|
992 |
-
#~ msgstr "Farsça tercümeye yardımları için"
|
993 |
-
|
994 |
-
#~ msgid "For the help with Polish translation"
|
995 |
-
#~ msgstr "Lehçe tercümesi için"
|
996 |
-
|
997 |
-
#~ msgid "For the help with Spanish translation"
|
998 |
-
#~ msgstr "İspanyolca tercümesi için"
|
999 |
-
|
1000 |
-
#~ msgid "For the help with Swedish translation"
|
1001 |
-
#~ msgstr "Swedish tercümesi için"
|
1002 |
-
|
1003 |
-
#~ msgid "For the help with Turkish translation"
|
1004 |
-
#~ msgstr "Türkçe tercümeye yardımları için"
|
1005 |
-
|
1006 |
-
#~ msgid "For the code to hide administrator role"
|
1007 |
-
#~ msgstr "Yönetici rolünü saklayan kod katkısı için"
|
1008 |
-
|
1009 |
-
#~ msgid "For the code enhancement suggestion"
|
1010 |
-
#~ msgstr "Kod geliştirme önerisi için"
|
1011 |
-
|
1012 |
-
#~ msgid ""
|
1013 |
-
#~ "Do you wish to see your name with link to your site here? You are "
|
1014 |
-
#~ "welcome! Your help with translation and new ideas are very appreciated."
|
1015 |
-
#~ msgstr ""
|
1016 |
-
#~ "İsminizi websitenize bir link ile birlikte burada görmek ister misiniz? "
|
1017 |
-
#~ "Bu elbette mümkün! Tercüme yardımlarınız ve yeni fikirlerinize her zaman "
|
1018 |
-
#~ "açığım."
|
1019 |
-
|
1020 |
-
#~ msgid "Donate"
|
1021 |
-
#~ msgstr "Bağış Yapın"
|
1022 |
-
|
1023 |
-
#, fuzzy
|
1024 |
-
#~ msgid "for the help with Arabic translation"
|
1025 |
-
#~ msgstr "Fransızca tercümesi için"
|
1026 |
-
|
1027 |
-
#, fuzzy
|
1028 |
-
#~ msgid "for the help with French translation"
|
1029 |
-
#~ msgstr "Fransızca tercümesi için"
|
1030 |
-
|
1031 |
-
#, fuzzy
|
1032 |
-
#~ msgid "for the help with German translation"
|
1033 |
-
#~ msgstr "Almanca tercümesi için"
|
1034 |
-
|
1035 |
-
#, fuzzy
|
1036 |
-
#~ msgid "for the help with Spanish translation"
|
1037 |
-
#~ msgstr "İspanyolca tercümesi için"
|
1038 |
-
|
1039 |
-
#, fuzzy
|
1040 |
-
#~ msgid "Delete readme.txt"
|
1041 |
-
#~ msgstr "Temaları silmek"
|
1042 |
-
|
1043 |
-
#, fuzzy
|
1044 |
-
#~ msgid "Delete screenshot files"
|
1045 |
-
#~ msgstr "Kullanıcı Rolünü Sil"
|
1046 |
-
|
1047 |
-
#, fuzzy
|
1048 |
-
#~ msgid "Silence is Golden Guard requires WordPress 3.0 or newer."
|
1049 |
-
#~ msgstr ""
|
1050 |
-
#~ "User Role Editor eklentisi en az WordPress 3.0 sürümüne ihtiyaç "
|
1051 |
-
#~ "duymaktadır."
|
1052 |
-
|
1053 |
-
#, fuzzy
|
1054 |
-
#~ msgid "is deleted"
|
1055 |
-
#~ msgstr "Sil"
|
1056 |
-
|
1057 |
-
#, fuzzy
|
1058 |
-
#~ msgid "Active lockouts"
|
1059 |
-
#~ msgstr "Eklentileri aktive et"
|
1060 |
-
|
1061 |
-
#, fuzzy
|
1062 |
-
#~ msgid "allowed retries"
|
1063 |
-
#~ msgstr "kullanmak için yetkilidir"
|
1064 |
-
|
1065 |
-
#, fuzzy
|
1066 |
-
#~ msgid "Change Options"
|
1067 |
-
#~ msgstr "Seçenekleri yönetmek"
|
1068 |
-
|
1069 |
-
#, fuzzy
|
1070 |
-
#~ msgid "Plugin author home page"
|
1071 |
-
#~ msgstr "Eklentinin websitesi"
|
1072 |
-
|
1073 |
-
#, fuzzy
|
1074 |
-
#~ msgid "Thank You Counter Button requires WordPress 3.0 or newer."
|
1075 |
-
#~ msgstr ""
|
1076 |
-
#~ "User Role Editor eklentisi en az WordPress 3.0 sürümüne ihtiyaç "
|
1077 |
-
#~ "duymaktadır."
|
1078 |
-
|
1079 |
-
#, fuzzy
|
1080 |
-
#~ msgid "for the help with Belarusian translation"
|
1081 |
-
#~ msgstr "Beyaz Rusça tercümesi için"
|
1082 |
-
|
1083 |
-
#, fuzzy
|
1084 |
-
#~ msgid "for the help with Chinese translation"
|
1085 |
-
#~ msgstr "Chinese tercümesi için"
|
1086 |
-
|
1087 |
-
#, fuzzy
|
1088 |
-
#~ msgid "for the help with Dutch translation"
|
1089 |
-
#~ msgstr "Dutch tercümesi için"
|
1090 |
-
|
1091 |
-
#, fuzzy
|
1092 |
-
#~ msgid "for the help with Hungarian translation"
|
1093 |
-
#~ msgstr "Macarca tercümesi için"
|
1094 |
-
|
1095 |
-
#, fuzzy
|
1096 |
-
#~ msgid "for the help with Iranian translation"
|
1097 |
-
#~ msgstr "İtalyanca tercümesi için"
|
1098 |
-
|
1099 |
-
#, fuzzy
|
1100 |
-
#~ msgid "for the help with Italian translation"
|
1101 |
-
#~ msgstr "İtalyanca tercümesi için"
|
1102 |
-
|
1103 |
-
#, fuzzy
|
1104 |
-
#~ msgid ""
|
1105 |
-
#~ "for the help with Spanish translation, ideas and new versions testing"
|
1106 |
-
#~ msgstr "İspanyolca tercümesi için"
|
1107 |
-
|
1108 |
-
#, fuzzy
|
1109 |
-
#~ msgid "Reset Counters"
|
1110 |
-
#~ msgstr "Kullanıcı silmek"
|
1111 |
-
|
1112 |
-
#, fuzzy
|
1113 |
-
#~ msgid "Edit \"%s\""
|
1114 |
-
#~ msgstr "Kullanıcıları düzenlemek"
|
1115 |
-
|
1116 |
-
#, fuzzy
|
1117 |
-
#~ msgid "Edit Post"
|
1118 |
-
#~ msgstr "Yazıları düzenlemek"
|
1119 |
-
|
1120 |
-
#, fuzzy
|
1121 |
-
#~ msgid "View all categories"
|
1122 |
-
#~ msgstr "Kategorileri yönetmek"
|
1123 |
-
|
1124 |
-
#, fuzzy
|
1125 |
-
#~ msgid "Switch Off"
|
1126 |
-
#~ msgstr "Temaları değiştir"
|
1127 |
-
|
1128 |
-
#, fuzzy
|
1129 |
-
#~ msgid "will take some time. Please confirm to continue"
|
1130 |
-
#~ msgstr "\"%s\" rolü güncellendi: Devam etmek için lütfen onaylayın"
|
1131 |
-
|
1132 |
-
#, fuzzy
|
1133 |
-
#~ msgid "For the help with Czech translation"
|
1134 |
-
#~ msgstr "Fransızca tercümesi için"
|
1135 |
-
|
1136 |
-
#, fuzzy
|
1137 |
-
#~ msgid "For the help with Indonesian translation"
|
1138 |
-
#~ msgstr "Farsça tercümeye yardımları için"
|
1139 |
-
|
1140 |
-
#, fuzzy
|
1141 |
-
#~ msgid "For the help with bug fix and contribution to source code"
|
1142 |
-
#~ msgstr "Macarca tercümesi için"
|
1143 |
-
|
1144 |
-
#, fuzzy
|
1145 |
-
#~ msgid "Plugin Name"
|
1146 |
-
#~ msgstr "Eklentinin websitesi"
|
1147 |
-
|
1148 |
-
#, fuzzy
|
1149 |
-
#~ msgid "Plugin State"
|
1150 |
-
#~ msgstr "Eklentinin websitesi"
|
1151 |
-
|
1152 |
-
#, fuzzy
|
1153 |
-
#~ msgid "Delete Tables"
|
1154 |
-
#~ msgstr "Sayfaları silmek"
|
1155 |
-
|
1156 |
-
#, fuzzy
|
1157 |
-
#~ msgid "Delete Extra Columns"
|
1158 |
-
#~ msgstr "Eklenti silmek"
|
1159 |
-
|
1160 |
-
#, fuzzy
|
1161 |
-
#~ msgid " requires WordPress 3.0 or newer."
|
1162 |
-
#~ msgstr ""
|
1163 |
-
#~ "User Role Editor eklentisi en az WordPress 3.0 sürümüne ihtiyaç "
|
1164 |
-
#~ "duymaktadır."
|
1165 |
-
|
1166 |
-
#, fuzzy
|
1167 |
-
#~ msgid "For the help with Slovenian translation"
|
1168 |
-
#~ msgstr "İtalyanca tercümesi için"
|
1169 |
-
|
1170 |
-
#, fuzzy
|
1171 |
-
#~ msgid "Plugins Language Switcher requires WordPress 3.0 or newer."
|
1172 |
-
#~ msgstr ""
|
1173 |
-
#~ "User Role Editor eklentisi en az WordPress 3.0 sürümüne ihtiyaç "
|
1174 |
-
#~ "duymaktadır."
|
1175 |
-
|
1176 |
-
#, fuzzy
|
1177 |
-
#~ msgid "Downloaded"
|
1178 |
-
#~ msgstr "Bağış Yapın"
|
1179 |
-
|
1180 |
-
#, fuzzy
|
1181 |
-
#~ msgid "Added"
|
1182 |
-
#~ msgstr "Ekle"
|
1183 |
-
|
1184 |
-
#, fuzzy
|
1185 |
-
#~ msgid "Categories"
|
1186 |
-
#~ msgstr "Kategorileri yönetmek"
|
1187 |
-
|
1188 |
-
#, fuzzy
|
1189 |
-
#~ msgid "Add New"
|
1190 |
-
#~ msgstr "Yeni Rol Ekle"
|
1191 |
-
|
1192 |
-
#, fuzzy
|
1193 |
-
#~ msgid "You do not have permission to upload files/downloads."
|
1194 |
-
#~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
1195 |
-
|
1196 |
-
#, fuzzy
|
1197 |
-
#~ msgid "Uploads"
|
1198 |
-
#~ msgstr "Dosya yüklemek"
|
1199 |
-
|
1200 |
-
#, fuzzy
|
1201 |
-
#~ msgid "remove"
|
1202 |
-
#~ msgstr "Kaldır"
|
1203 |
-
|
1204 |
-
#, fuzzy
|
1205 |
-
#~ msgid "Add New Download"
|
1206 |
-
#~ msgstr "Yeni Rol Ekle"
|
1207 |
-
|
1208 |
-
#, fuzzy
|
1209 |
-
#~ msgid "Starting hits"
|
1210 |
-
#~ msgstr "Ayarlar"
|
1211 |
-
|
1212 |
-
#, fuzzy
|
1213 |
-
#~ msgid "Select a file..."
|
1214 |
-
#~ msgstr "Rolü Seçin:"
|
1215 |
-
|
1216 |
-
#, fuzzy
|
1217 |
-
#~ msgid "Upload File"
|
1218 |
-
#~ msgstr "Dosya yüklemek"
|
1219 |
-
|
1220 |
-
#, fuzzy
|
1221 |
-
#~ msgid "+ Add New Category"
|
1222 |
-
#~ msgstr "Yeni Kabiliyet Ekle"
|
1223 |
-
|
1224 |
-
#, fuzzy
|
1225 |
-
#~ msgid "Upload thumbnail"
|
1226 |
-
#~ msgstr "Dosya yüklemek"
|
1227 |
-
|
1228 |
-
#, fuzzy
|
1229 |
-
#~ msgid "Default"
|
1230 |
-
#~ msgstr "Sil"
|
1231 |
-
|
1232 |
-
#, fuzzy
|
1233 |
-
#~ msgid "Insert"
|
1234 |
-
#~ msgstr "Kullanıcı"
|
1235 |
-
|
1236 |
-
#, fuzzy
|
1237 |
-
#~ msgid "Date posted"
|
1238 |
-
#~ msgstr "Yazıları silmek"
|
1239 |
-
|
1240 |
-
#, fuzzy
|
1241 |
-
#~ msgid "Read More"
|
1242 |
-
#~ msgstr "Okumak"
|
1243 |
-
|
1244 |
-
#, fuzzy
|
1245 |
-
#~ msgid "Date"
|
1246 |
-
#~ msgstr "Bağış Yapın"
|
1247 |
-
|
1248 |
-
#, fuzzy
|
1249 |
-
#~ msgid "Download added Successfully"
|
1250 |
-
#~ msgstr "başarıyla güncellendi"
|
1251 |
-
|
1252 |
-
#, fuzzy
|
1253 |
-
#~ msgid "Select a download"
|
1254 |
-
#~ msgstr "Rolü Seçin:"
|
1255 |
-
|
1256 |
-
#, fuzzy
|
1257 |
-
#~ msgid "Formats updated"
|
1258 |
-
#~ msgstr "Lütfen güncelleyin!"
|
1259 |
-
|
1260 |
-
#, fuzzy
|
1261 |
-
#~ msgid "Format deleted Successfully"
|
1262 |
-
#~ msgstr "%s rolü başarıyla silindi"
|
1263 |
-
|
1264 |
-
#, fuzzy
|
1265 |
-
#~ msgid "Image link:"
|
1266 |
-
#~ msgstr "Linkleri yönetmek"
|
1267 |
-
|
1268 |
-
#, fuzzy
|
1269 |
-
#~ msgid "Download Categories"
|
1270 |
-
#~ msgstr "Kategorileri yönetmek"
|
1271 |
-
|
1272 |
-
#, fuzzy
|
1273 |
-
#~ msgid "Category updated"
|
1274 |
-
#~ msgstr "Lütfen güncelleyin!"
|
1275 |
-
|
1276 |
-
#, fuzzy
|
1277 |
-
#~ msgid "Category deleted Successfully"
|
1278 |
-
#~ msgstr "%s rolü başarıyla silindi"
|
1279 |
-
|
1280 |
-
#, fuzzy
|
1281 |
-
#~ msgid "No categories exist"
|
1282 |
-
#~ msgstr "Kategorileri yönetmek"
|
1283 |
-
|
1284 |
-
#, fuzzy
|
1285 |
-
#~ msgid "Edit category"
|
1286 |
-
#~ msgstr "Editör"
|
1287 |
-
|
1288 |
-
#, fuzzy
|
1289 |
-
#~ msgid "No Change"
|
1290 |
-
#~ msgstr "Değiştir"
|
1291 |
-
|
1292 |
-
#, fuzzy
|
1293 |
-
#~ msgid "Download edited Successfully"
|
1294 |
-
#~ msgstr "başarıyla güncellendi"
|
1295 |
-
|
1296 |
-
#, fuzzy
|
1297 |
-
#~ msgid "Upload New File"
|
1298 |
-
#~ msgstr "Dosya yüklemek"
|
1299 |
-
|
1300 |
-
#, fuzzy
|
1301 |
-
#~ msgid "Edit File URL"
|
1302 |
-
#~ msgstr "Dosyaları düzenlemek"
|
1303 |
-
|
1304 |
-
#, fuzzy
|
1305 |
-
#~ msgid "Download deleted Successfully"
|
1306 |
-
#~ msgstr "%s rolü başarıyla silindi"
|
1307 |
-
|
1308 |
-
#, fuzzy
|
1309 |
-
#~ msgid "Selected Downloads deleted Successfully"
|
1310 |
-
#~ msgstr "%s rolü başarıyla silindi"
|
1311 |
-
|
1312 |
-
#, fuzzy
|
1313 |
-
#~ msgid "Downloads edited successfully"
|
1314 |
-
#~ msgstr "başarıyla güncellendi"
|
1315 |
-
|
1316 |
-
#, fuzzy
|
1317 |
-
#~ msgid "Reset Stats"
|
1318 |
-
#~ msgstr "Geri al"
|
1319 |
-
|
1320 |
-
#, fuzzy
|
1321 |
-
#~ msgid "Downloads added Successfully"
|
1322 |
-
#~ msgstr "başarıyla güncellendi"
|
1323 |
-
|
1324 |
-
#, fuzzy
|
1325 |
-
#~ msgid "Uncategorized"
|
1326 |
-
#~ msgstr "Kategorileri yönetmek"
|
1327 |
-
|
1328 |
-
#, fuzzy
|
1329 |
-
#~ msgid "Akismet %s requires WordPress 3.0 or higher."
|
1330 |
-
#~ msgstr ""
|
1331 |
-
#~ "User Role Editor eklentisi en az WordPress 3.0 sürümüne ihtiyaç "
|
1332 |
-
#~ "duymaktadır."
|
1333 |
-
|
1334 |
-
#, fuzzy
|
1335 |
-
#~ msgid "Comment History"
|
1336 |
-
#~ msgstr "İçerik Sağlayıcı"
|
1337 |
-
|
1338 |
-
#, fuzzy
|
1339 |
-
#~ msgid "Update options »"
|
1340 |
-
#~ msgstr "Eklentileri güncellemek"
|
1341 |
-
|
1342 |
-
#, fuzzy
|
1343 |
-
#~ msgid "History"
|
1344 |
-
#~ msgstr "Editör"
|
1345 |
-
|
1346 |
-
#, fuzzy
|
1347 |
-
#~ msgid "Delete all"
|
1348 |
-
#~ msgstr "Rolü Sil"
|
1349 |
-
|
1350 |
-
#, fuzzy
|
1351 |
-
#~ msgid "Default post error message:"
|
1352 |
-
#~ msgstr "Yeni Kullanıcılar için Varsayılan Rol"
|
1353 |
-
|
1354 |
-
#, fuzzy
|
1355 |
-
#~ msgid "Roles"
|
1356 |
-
#~ msgstr "Rol:"
|
1357 |
-
|
1358 |
-
#, fuzzy
|
1359 |
-
#~ msgid "Has Users"
|
1360 |
-
#~ msgstr "Kullanıcıları listelemek"
|
1361 |
-
|
1362 |
-
#, fuzzy
|
1363 |
-
#~ msgid "No Users"
|
1364 |
-
#~ msgstr "Kullanıcı"
|
1365 |
-
|
1366 |
-
#, fuzzy
|
1367 |
-
#~ msgid "Users"
|
1368 |
-
#~ msgstr "Kullanıcı"
|
1369 |
-
|
1370 |
-
#, fuzzy
|
1371 |
-
#~ msgid "View Users"
|
1372 |
-
#~ msgstr "Kullanıcıları düzenlemek"
|
1373 |
-
|
1374 |
-
#, fuzzy
|
1375 |
-
#~ msgid "Edit Role"
|
1376 |
-
#~ msgstr "Dosyaları düzenlemek"
|
1377 |
-
|
1378 |
-
#, fuzzy
|
1379 |
-
#~ msgid "Role updated."
|
1380 |
-
#~ msgstr "Lütfen güncelleyin!"
|
1381 |
-
|
1382 |
-
#, fuzzy
|
1383 |
-
#~ msgid "Sorry, but you do not have permission to view this content."
|
1384 |
-
#~ msgstr "Hata! Bu kabiliyeti değiştirmek için yetkiniz yok: %s!"
|
1385 |
-
|
1386 |
-
#, fuzzy
|
1387 |
-
#~ msgid "Settings Updated."
|
1388 |
-
#~ msgstr "Ayarlar"
|
1389 |
-
|
1390 |
-
#, fuzzy
|
1391 |
-
#~ msgid "Update Settings"
|
1392 |
-
#~ msgstr "Ayarlar"
|
1393 |
-
|
1394 |
-
#~ msgid "Roles list reading error is encountered"
|
1395 |
-
#~ msgstr "Rol listesi okunurken hata"
|
1 |
+
#
|
2 |
+
# Translators:
|
3 |
+
# Abdullah Pazarbasi <mail@abdullahpazarbasi.com>, 2014
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
+
"Project-Id-Version: User Role Editor\n"
|
7 |
"Report-Msgid-Bugs-To: \n"
|
8 |
+
"POT-Creation-Date: 2014-10-21 10:21+0700\n"
|
9 |
+
"PO-Revision-Date: 2014-10-21 10:28+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"
|
13 |
"Language: tr_TR\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
|
|
|
18 |
"X-Generator: Poedit 1.5.4\n"
|
19 |
+
"X-Poedit-Basepath: .\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e;esc_html__;esc_html_e\n"
|
21 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
"X-Poedit-SearchPath-0: ..\n"
|
23 |
|
24 |
#: ../includes/settings-template.php:17
|
|
|
25 |
msgid "User Role Editor - Options"
|
26 |
+
msgstr "Kullanıcı Rol Editörü - Seçenekler"
|
27 |
|
28 |
#: ../includes/settings-template.php:21
|
29 |
#: ../includes/class-user-role-editor.php:547
|
|
|
30 |
msgid "General"
|
31 |
+
msgstr "Genel"
|
32 |
|
33 |
#: ../includes/settings-template.php:26
|
34 |
#: ../includes/class-user-role-editor.php:553
|
35 |
msgid "Additional Modules"
|
36 |
+
msgstr "İlave Modüller"
|
37 |
|
38 |
#: ../includes/settings-template.php:30
|
39 |
#: ../includes/class-user-role-editor.php:559
|
|
|
40 |
msgid "Default Roles"
|
41 |
+
msgstr "Varsayılan Roller"
|
42 |
|
43 |
#: ../includes/settings-template.php:34
|
44 |
+
#: ../includes/class-user-role-editor.php:565
|
45 |
msgid "Multisite"
|
46 |
+
msgstr "Çoklu site"
|
47 |
|
48 |
#: ../includes/settings-template.php:39
|
49 |
msgid "About"
|
50 |
+
msgstr "Hakkında"
|
51 |
|
52 |
#: ../includes/settings-template.php:53
|
53 |
#: ../includes/class-ure-screen-help.php:15
|
54 |
msgid "Show Administrator role at User Role Editor"
|
55 |
+
msgstr "Yönetici rolünü Kullanıcı Rol Editörü'nde göster"
|
56 |
|
57 |
#: ../includes/settings-template.php:61
|
58 |
#: ../includes/class-ure-screen-help.php:18
|
|
|
59 |
msgid "Show capabilities in the human readable form"
|
60 |
+
msgstr "Kabiliyetleri insancıl biçimde göster"
|
61 |
|
62 |
#: ../includes/settings-template.php:69 ../includes/ure-role-edit.php:40
|
63 |
#: ../includes/ure-user-edit.php:63 ../includes/class-ure-screen-help.php:21
|
64 |
msgid "Show deprecated capabilities"
|
65 |
+
msgstr "Önerilmeyen kabiliyetleri göster"
|
66 |
|
67 |
#: ../includes/settings-template.php:81 ../includes/settings-template.php:117
|
68 |
#: ../includes/settings-template.php:149 ../includes/settings-template.php:181
|
69 |
msgid "Save"
|
70 |
+
msgstr "Sakla"
|
71 |
|
72 |
#: ../includes/settings-template.php:102
|
73 |
+
#: ../includes/class-ure-screen-help.php:41
|
|
|
74 |
msgid "Count users without role"
|
75 |
+
msgstr "Rolsüz kullanıcıları say"
|
76 |
|
77 |
#: ../includes/settings-template.php:129
|
|
|
78 |
msgid "Primary default role: "
|
79 |
+
msgstr "Birincil varsayılan rol:"
|
80 |
|
81 |
#: ../includes/settings-template.php:136
|
82 |
msgid "Other default roles for new registered user: "
|
83 |
+
msgstr "Yeni kaydolan kullanıcılar için diğer varsayılan roller:"
|
84 |
|
85 |
#: ../includes/settings-template.php:142
|
86 |
msgid ""
|
88 |
"should exist at the site, in order to be assigned to the new registered "
|
89 |
"users."
|
90 |
msgstr ""
|
91 |
+
"Çoklu site ortamı için hatırlatma: diğer varsayılan rollerin yeni kaydolan "
|
92 |
+
"kullanıcılara atanması için sitede bulunması gerektiğini olduğunu hesaba "
|
93 |
+
"katın."
|
94 |
|
95 |
#: ../includes/settings-template.php:168
|
96 |
msgid "Allow non super administrators to create, edit, and delete users"
|
97 |
msgstr ""
|
98 |
+
"Süper yönetici olmayanların kullanıcı oluşturma, düzenleme ve silmelerine "
|
99 |
+
"izin ver"
|
100 |
|
101 |
#: ../includes/class-user-role-editor.php:195
|
|
|
102 |
msgid "Change role for users without role"
|
103 |
+
msgstr "Rolsüz kullanıcıların rolünü değiştir"
|
104 |
|
105 |
#: ../includes/class-user-role-editor.php:196
|
106 |
msgid "No rights"
|
107 |
+
msgstr "İzin yok"
|
108 |
|
109 |
#: ../includes/class-user-role-editor.php:197
|
110 |
msgid "Provide new role"
|
111 |
+
msgstr "Yeni rol sağla"
|
112 |
|
113 |
#: ../includes/class-user-role-editor.php:281
|
114 |
#: ../includes/class-user-role-editor.php:283
|
115 |
msgid "You do not have permission to edit this user."
|
116 |
+
msgstr "Bu kullanıcıyı düzenlemek için izniniz yok."
|
117 |
|
118 |
#: ../includes/class-user-role-editor.php:422
|
119 |
msgid "Capabilities"
|
124 |
msgstr "Ayarlar"
|
125 |
|
126 |
#: ../includes/class-user-role-editor.php:525
|
127 |
+
#: ../includes/class-ure-lib.php:2295
|
128 |
msgid "Changelog"
|
129 |
+
msgstr "Değişiklik Günlüğü"
|
130 |
|
131 |
+
#: ../includes/class-user-role-editor.php:575
|
132 |
+
#: ../includes/class-user-role-editor.php:603
|
133 |
+
#: ../includes/class-user-role-editor.php:948
|
134 |
+
#: ../includes/class-ure-lib.php:251
|
135 |
msgid "User Role Editor"
|
136 |
msgstr "Kullanıcı Rol Editörü"
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:660
|
139 |
+
#: ../includes/class-user-role-editor.php:678
|
140 |
+
#: ../includes/class-user-role-editor.php:722
|
141 |
msgid "User Role Editor options are updated"
|
142 |
+
msgstr "Kullanıcı Rol Editörü seçenekleri güncellendi"
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:706
|
|
|
145 |
msgid "Default Roles are updated"
|
146 |
+
msgstr "Varsayılan Roller güncellendi"
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:730
|
149 |
msgid ""
|
150 |
"You do not have sufficient permissions to manage options for User Role "
|
151 |
"Editor."
|
152 |
+
msgstr "Kullanıcı Rol Editörü seçeneklerini yönetmek için yeterli izniniz yok."
|
153 |
|
154 |
+
#: ../includes/class-user-role-editor.php:809
|
155 |
msgid "Insufficient permissions to work with User Role Editor"
|
156 |
+
msgstr "Kullanıcı Rol Editörü ile çalışmak için yetersiz izin"
|
157 |
|
158 |
+
#: ../includes/class-user-role-editor.php:890
|
159 |
msgid "Select All"
|
160 |
+
msgstr "Hepsini Seç"
|
161 |
|
162 |
+
#: ../includes/class-user-role-editor.php:891
|
163 |
msgid "Unselect All"
|
164 |
+
msgstr "Hiçbirini Seçme"
|
165 |
|
166 |
+
#: ../includes/class-user-role-editor.php:892
|
167 |
msgid "Reverse"
|
168 |
+
msgstr "Evir"
|
169 |
|
170 |
+
#: ../includes/class-user-role-editor.php:893
|
171 |
msgid "Update"
|
172 |
msgstr "Güncelle"
|
173 |
|
174 |
+
#: ../includes/class-user-role-editor.php:894
|
175 |
msgid "Please confirm permissions update"
|
176 |
+
msgstr "Lütfen izin güncellemesini onaylayın"
|
177 |
|
178 |
+
#: ../includes/class-user-role-editor.php:895
|
179 |
msgid "Add New Role"
|
180 |
msgstr "Yeni Rol Ekle"
|
181 |
|
182 |
+
#: ../includes/class-user-role-editor.php:896
|
183 |
+
#: ../includes/class-user-role-editor.php:901
|
|
|
184 |
msgid "Rename Role"
|
185 |
+
msgstr "Rol İsmi Değiştir"
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:897
|
188 |
msgid " Role name (ID) can not be empty!"
|
189 |
+
msgstr "Rol ismi (ID) boş olamaz!"
|
190 |
|
191 |
+
#: ../includes/class-user-role-editor.php:898
|
192 |
msgid ""
|
193 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
194 |
"only!"
|
195 |
msgstr ""
|
196 |
+
"Rol ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
197 |
+
"çizgiler içermeli!"
|
198 |
|
199 |
+
#: ../includes/class-user-role-editor.php:899
|
200 |
msgid ""
|
201 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
202 |
"it."
|
203 |
msgstr ""
|
204 |
+
"WordPress sayısal rol ismi (ID) desteklemiyor. Latin karakterler ekleyin."
|
205 |
|
206 |
+
#: ../includes/class-user-role-editor.php:900
|
207 |
msgid "Add Role"
|
208 |
msgstr "Rol Ekle"
|
209 |
|
210 |
+
#: ../includes/class-user-role-editor.php:902
|
211 |
msgid "Delete Role"
|
212 |
+
msgstr "Rol Sil"
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:903
|
215 |
msgid "Cancel"
|
216 |
msgstr "İptal"
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:904
|
219 |
msgid "Add Capability"
|
220 |
msgstr "Kabiliyet Ekle"
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:905
|
223 |
+
#: ../includes/class-user-role-editor.php:914
|
224 |
msgid "Delete Capability"
|
225 |
+
msgstr "Kabiliyet Sil"
|
226 |
|
227 |
+
#: ../includes/class-user-role-editor.php:906
|
228 |
msgid "Reset"
|
229 |
+
msgstr "Sıfırla"
|
230 |
|
231 |
+
#: ../includes/class-user-role-editor.php:907
|
232 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
233 |
msgstr ""
|
234 |
+
"TEHLİKE! Sıfırlama WordPress Çekirdeğinin varsayılan ayarlarını geri yükler."
|
235 |
|
236 |
+
#: ../includes/class-user-role-editor.php:908
|
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!"
|
240 |
msgstr ""
|
241 |
+
"Herhangi eklenti (S2Member, WooCommerce gibi) kurulumdan sonra herhangi "
|
242 |
+
"yoldan kabiliyetleri değiştirdiyse, o kabiliyetler SİLİNİR!"
|
243 |
|
244 |
+
#: ../includes/class-user-role-editor.php:909
|
245 |
msgid ""
|
246 |
"For more information on how to undo changes and restore plugin capabilities "
|
247 |
"go to"
|
248 |
msgstr ""
|
249 |
+
"Değişiklikleri geri alma ve eklenti kabiliyetlerini geri yükleme hakkında "
|
250 |
+
"daha fazla bilgi için gideceğiniz adres:"
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:911
|
253 |
msgid "Continue?"
|
254 |
+
msgstr "Devam mı?"
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:912
|
257 |
msgid "Default Role"
|
258 |
+
msgstr "Varsayılan Rol"
|
259 |
|
260 |
+
#: ../includes/class-user-role-editor.php:913
|
261 |
msgid "Set New Default Role"
|
262 |
+
msgstr "Yeni Varsayılan Rol Belirle"
|
263 |
|
264 |
+
#: ../includes/class-user-role-editor.php:915
|
265 |
msgid ""
|
266 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
267 |
"or other custom code"
|
268 |
msgstr ""
|
269 |
+
"Uyarı! Dikkatli olun - kritik kabiliyetleri kaldırmak bazı eklentileri veya "
|
270 |
+
"diğer özel kodları bozabilir"
|
271 |
|
272 |
+
#: ../includes/class-user-role-editor.php:916
|
273 |
msgid " Capability name (ID) can not be empty!"
|
274 |
+
msgstr "Kabiliyet ismi (ID) boş olamaz!"
|
275 |
|
276 |
+
#: ../includes/class-user-role-editor.php:917
|
277 |
msgid ""
|
278 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
279 |
"underscore only!"
|
280 |
msgstr ""
|
281 |
+
"Kabiliyet ismi (ID) yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
282 |
+
"çizgiler içermeli!"
|
283 |
|
284 |
+
#: ../includes/class-user-role-editor.php:951
|
285 |
+
#: ../includes/class-user-role-editor.php:980
|
286 |
msgid "Other Roles"
|
287 |
msgstr "Diğer Roller"
|
288 |
|
289 |
+
#: ../includes/class-user-role-editor.php:962
|
290 |
msgid "Edit"
|
291 |
msgstr "Düzenle"
|
292 |
|
293 |
#: ../includes/ure-role-edit.php:17
|
|
|
294 |
msgid "Select Role and change its capabilities:"
|
295 |
+
msgstr "Rol seçin ve rolün kabiliyetlerini değiştirin:"
|
296 |
|
297 |
#: ../includes/ure-role-edit.php:30 ../includes/ure-user-edit.php:53
|
298 |
msgid "Show capabilities in human readable form"
|
299 |
+
msgstr "Kabiliyetleri insancıl biçimde göster"
|
300 |
|
301 |
#: ../includes/ure-role-edit.php:44
|
302 |
msgid "If checked, then apply action to ALL sites of this Network"
|
303 |
+
msgstr "İşaretliyse işlem bu Ağdaki TÜM sitelere uygulanır"
|
304 |
|
305 |
#: ../includes/ure-role-edit.php:56
|
306 |
msgid "Apply to All Sites"
|
307 |
+
msgstr "Tüm Sitelere Uygula"
|
308 |
|
309 |
#: ../includes/ure-role-edit.php:63 ../includes/ure-user-edit.php:109
|
310 |
msgid "Core capabilities:"
|
311 |
+
msgstr "Çekirdek kabiliyetler:"
|
312 |
|
313 |
#: ../includes/ure-role-edit.php:65 ../includes/ure-user-edit.php:111
|
314 |
msgid "Quick filter:"
|
315 |
+
msgstr "Hızlı süzgeç:"
|
316 |
|
317 |
#: ../includes/ure-role-edit.php:83 ../includes/ure-user-edit.php:130
|
318 |
msgid "Custom capabilities:"
|
319 |
+
msgstr "Özel kabiliyetler:"
|
320 |
|
321 |
+
#: ../includes/class-ure-lib.php:159
|
322 |
msgid "Error: wrong request"
|
323 |
+
msgstr "Hata: yanlış talep"
|
324 |
|
325 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
326 |
msgid "Role name (ID): "
|
327 |
+
msgstr "Rol ismi (ID):"
|
328 |
|
329 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
330 |
msgid "Display Role Name: "
|
331 |
+
msgstr "Rol İsmini Görüntüle:"
|
332 |
|
333 |
+
#: ../includes/class-ure-lib.php:196
|
334 |
msgid "Make copy of: "
|
335 |
+
msgstr "Şundan kopyala:"
|
336 |
|
337 |
+
#: ../includes/class-ure-lib.php:212
|
338 |
msgid "Select Role:"
|
339 |
+
msgstr "Rol Seç:"
|
340 |
|
341 |
+
#: ../includes/class-ure-lib.php:227
|
342 |
msgid "Delete:"
|
343 |
msgstr "Sil:"
|
344 |
|
345 |
+
#: ../includes/class-ure-lib.php:234
|
346 |
msgid "Capability name (ID): "
|
347 |
+
msgstr "Kabiliyet ismi (ID):"
|
348 |
|
349 |
+
#: ../includes/class-ure-lib.php:348
|
350 |
msgid "Error: "
|
351 |
msgstr "Hata:"
|
352 |
|
353 |
+
#: ../includes/class-ure-lib.php:348
|
354 |
msgid "Role"
|
355 |
+
msgstr "Rol"
|
356 |
|
357 |
+
#: ../includes/class-ure-lib.php:349
|
358 |
msgid "does not exist"
|
359 |
+
msgstr "mevcut değil"
|
360 |
|
361 |
+
#: ../includes/class-ure-lib.php:392
|
362 |
msgid "Role is updated successfully"
|
363 |
+
msgstr "Rol başarıyla güncellendi"
|
364 |
|
365 |
+
#: ../includes/class-ure-lib.php:394
|
366 |
msgid "Roles are updated for all network"
|
367 |
+
msgstr "Roller tüm ağ için güncellendi"
|
368 |
|
369 |
+
#: ../includes/class-ure-lib.php:400
|
370 |
msgid "Error occured during role(s) update"
|
371 |
+
msgstr "Rol güncellemesi esnasında hata meydana geldi"
|
372 |
|
373 |
+
#: ../includes/class-ure-lib.php:407
|
374 |
msgid "User capabilities are updated successfully"
|
375 |
+
msgstr "Kullanıcı kabiliyetleri başarıyla güncellendi"
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:412
|
378 |
msgid "Error occured during user update"
|
379 |
+
msgstr "Kullanıcı güncellemesi esnasında hata meydana geldi"
|
380 |
|
381 |
+
#: ../includes/class-ure-lib.php:470
|
382 |
msgid "User Roles are restored to WordPress default values. "
|
383 |
+
msgstr "Kullanıcı Rolleri WordPress varsayılanlarına geri döndürüldü."
|
384 |
|
385 |
+
#: ../includes/class-ure-lib.php:1337
|
386 |
msgid "Help"
|
387 |
msgstr "Yardım"
|
388 |
|
389 |
+
#: ../includes/class-ure-lib.php:1695
|
390 |
msgid "Error is occur. Please check the log file."
|
391 |
+
msgstr "Hata oluştu. Lütfen günlük dosyasını denetleyiniz."
|
392 |
|
393 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
394 |
msgid ""
|
395 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
396 |
"only!"
|
397 |
msgstr ""
|
398 |
+
"Hata: Rol ID yalnızca latin karakterleri, rakamlar, tireler veya alt "
|
399 |
+
"çizgiler içermeli!"
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
402 |
msgid ""
|
403 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
404 |
"characters to it."
|
405 |
msgstr ""
|
406 |
+
"Hata: WordPress sayısal rol isimlerini (ID) desteklemiyor. Latin "
|
407 |
+
"karakterleri ekleyin."
|
408 |
|
409 |
+
#: ../includes/class-ure-lib.php:1757
|
410 |
#, php-format
|
411 |
msgid "Role %s exists already"
|
412 |
msgstr "%s rolü zaten mevcut"
|
413 |
|
414 |
+
#: ../includes/class-ure-lib.php:1772
|
415 |
msgid "Error is encountered during new role create operation"
|
416 |
+
msgstr "Yeni rol oluşturma işlemi sırasında hata oluştu"
|
417 |
|
418 |
+
#: ../includes/class-ure-lib.php:1774
|
419 |
#, php-format
|
420 |
msgid "Role %s is created successfully"
|
421 |
msgstr "%s rolü başarıyla oluşturuldu"
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1798
|
424 |
msgid "Error: Role ID is empty!"
|
425 |
+
msgstr "Hata: Rol ID'si boş!"
|
426 |
|
427 |
+
#: ../includes/class-ure-lib.php:1816
|
428 |
msgid "Error: Empty role display name is not allowed."
|
429 |
+
msgstr "Hata: Boş görünen rol adına izin yok."
|
430 |
|
431 |
+
#: ../includes/class-ure-lib.php:1823
|
432 |
+
#, php-format
|
433 |
msgid "Role %s does not exists"
|
434 |
+
msgstr "%s rolü mevcut değil"
|
435 |
|
436 |
+
#: ../includes/class-ure-lib.php:1831
|
437 |
+
#, php-format
|
438 |
msgid "Role %s is renamed to %s successfully"
|
439 |
+
msgstr "%s rolünün ismi %s olarak başarıyla değiştirildi"
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1898
|
442 |
msgid "Error encountered during role delete operation"
|
443 |
+
msgstr "Rol silme işlemi sırasında hata oluştu"
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1900
|
446 |
msgid "Unused roles are deleted successfully"
|
447 |
+
msgstr "Kullanılmayan roller başarıyla silindi"
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1902
|
450 |
#, php-format
|
451 |
msgid "Role %s is deleted successfully"
|
452 |
msgstr "%s rolü başarıyla silindi"
|
453 |
|
454 |
+
#: ../includes/class-ure-lib.php:1927
|
455 |
msgid "Error encountered during default role change operation"
|
456 |
+
msgstr "Varsayılan rol değişimi işlemi sırasında hata oluştu"
|
457 |
|
458 |
+
#: ../includes/class-ure-lib.php:1933
|
459 |
#, php-format
|
460 |
msgid "Default role for new users is set to %s successfully"
|
461 |
+
msgstr "Yeni kullanıcılar için varsayılan rol %s rolüne başarıyla ayarlandı"
|
462 |
|
463 |
+
#: ../includes/class-ure-lib.php:1952
|
464 |
msgid "Editor"
|
465 |
msgstr "Editör"
|
466 |
|
467 |
+
#: ../includes/class-ure-lib.php:1953
|
468 |
msgid "Author"
|
469 |
msgstr "Yazar"
|
470 |
|
471 |
+
#: ../includes/class-ure-lib.php:1954
|
472 |
msgid "Contributor"
|
473 |
msgstr "İçerik Sağlayıcı"
|
474 |
|
475 |
+
#: ../includes/class-ure-lib.php:1955
|
476 |
msgid "Subscriber"
|
477 |
+
msgstr "Abone"
|
478 |
|
479 |
+
#: ../includes/class-ure-lib.php:1957
|
480 |
msgid "Switch themes"
|
481 |
+
msgstr "Tema değiştirme"
|
482 |
|
483 |
+
#: ../includes/class-ure-lib.php:1958
|
484 |
msgid "Edit themes"
|
485 |
+
msgstr "Tema düzenleme"
|
486 |
|
487 |
+
#: ../includes/class-ure-lib.php:1959
|
488 |
msgid "Activate plugins"
|
489 |
+
msgstr "Eklenti etkilileştirme"
|
490 |
|
491 |
+
#: ../includes/class-ure-lib.php:1960
|
492 |
msgid "Edit plugins"
|
493 |
+
msgstr "Eklenti düzenleme"
|
494 |
|
495 |
+
#: ../includes/class-ure-lib.php:1961
|
496 |
msgid "Edit users"
|
497 |
+
msgstr "Kullanıcı düzenleme"
|
498 |
|
499 |
+
#: ../includes/class-ure-lib.php:1962
|
500 |
msgid "Edit files"
|
501 |
+
msgstr "Dosya düzenleme"
|
502 |
|
503 |
+
#: ../includes/class-ure-lib.php:1963
|
504 |
msgid "Manage options"
|
505 |
+
msgstr "Seçenek yönetme"
|
506 |
|
507 |
+
#: ../includes/class-ure-lib.php:1964
|
508 |
msgid "Moderate comments"
|
509 |
+
msgstr "Yorum ılıtma"
|
510 |
|
511 |
+
#: ../includes/class-ure-lib.php:1965
|
512 |
msgid "Manage categories"
|
513 |
+
msgstr "Kategori yönetme"
|
514 |
|
515 |
+
#: ../includes/class-ure-lib.php:1966
|
516 |
msgid "Manage links"
|
517 |
+
msgstr "Bağlantı yönetme"
|
518 |
|
519 |
+
#: ../includes/class-ure-lib.php:1967
|
520 |
msgid "Upload files"
|
521 |
+
msgstr "Dosya yükleme"
|
522 |
|
523 |
+
#: ../includes/class-ure-lib.php:1968
|
524 |
msgid "Import"
|
525 |
+
msgstr "İçe Aktarma"
|
526 |
|
527 |
+
#: ../includes/class-ure-lib.php:1969
|
528 |
msgid "Unfiltered html"
|
529 |
+
msgstr "Süzülmemiş html"
|
530 |
|
531 |
+
#: ../includes/class-ure-lib.php:1970
|
532 |
msgid "Edit posts"
|
533 |
+
msgstr "Gönderi düzenleme"
|
534 |
|
535 |
+
#: ../includes/class-ure-lib.php:1971
|
536 |
msgid "Edit others posts"
|
537 |
+
msgstr "Başkalarının gönderilerini düzenleme"
|
538 |
|
539 |
+
#: ../includes/class-ure-lib.php:1972
|
540 |
msgid "Edit published posts"
|
541 |
+
msgstr "Yayımdaki gönderileri düzenleme"
|
542 |
|
543 |
+
#: ../includes/class-ure-lib.php:1973
|
544 |
msgid "Publish posts"
|
545 |
+
msgstr "Gönderi yayımlama"
|
546 |
|
547 |
+
#: ../includes/class-ure-lib.php:1974
|
548 |
msgid "Edit pages"
|
549 |
+
msgstr "Sayfa düzenleme"
|
550 |
|
551 |
+
#: ../includes/class-ure-lib.php:1975
|
552 |
msgid "Read"
|
553 |
+
msgstr "Okuma"
|
554 |
|
555 |
+
#: ../includes/class-ure-lib.php:1976
|
556 |
msgid "Level 10"
|
557 |
msgstr "Seviye 10"
|
558 |
|
559 |
+
#: ../includes/class-ure-lib.php:1977
|
560 |
msgid "Level 9"
|
561 |
msgstr "Seviye 9"
|
562 |
|
563 |
+
#: ../includes/class-ure-lib.php:1978
|
564 |
msgid "Level 8"
|
565 |
msgstr "Seviye 8"
|
566 |
|
567 |
+
#: ../includes/class-ure-lib.php:1979
|
568 |
msgid "Level 7"
|
569 |
msgstr "Seviye 7"
|
570 |
|
571 |
+
#: ../includes/class-ure-lib.php:1980
|
572 |
msgid "Level 6"
|
573 |
msgstr "Seviye 6"
|
574 |
|
575 |
+
#: ../includes/class-ure-lib.php:1981
|
576 |
msgid "Level 5"
|
577 |
msgstr "Seviye 5"
|
578 |
|
579 |
+
#: ../includes/class-ure-lib.php:1982
|
580 |
msgid "Level 4"
|
581 |
msgstr "Seviye 4"
|
582 |
|
583 |
+
#: ../includes/class-ure-lib.php:1983
|
584 |
msgid "Level 3"
|
585 |
msgstr "Seviye 3"
|
586 |
|
587 |
+
#: ../includes/class-ure-lib.php:1984
|
588 |
msgid "Level 2"
|
589 |
msgstr "Seviye 2"
|
590 |
|
591 |
+
#: ../includes/class-ure-lib.php:1985
|
592 |
msgid "Level 1"
|
593 |
msgstr "Seviye 1"
|
594 |
|
595 |
+
#: ../includes/class-ure-lib.php:1986
|
596 |
msgid "Level 0"
|
597 |
msgstr "Seviye 0"
|
598 |
|
599 |
+
#: ../includes/class-ure-lib.php:1987
|
600 |
msgid "Edit others pages"
|
601 |
+
msgstr "Başkalarının sayfalarını düzenleme"
|
602 |
|
603 |
+
#: ../includes/class-ure-lib.php:1988
|
604 |
msgid "Edit published pages"
|
605 |
+
msgstr "Yayımdaki sayfaları düzenleme"
|
606 |
|
607 |
+
#: ../includes/class-ure-lib.php:1989
|
608 |
msgid "Publish pages"
|
609 |
+
msgstr "Sayfa yayımlama"
|
610 |
|
611 |
+
#: ../includes/class-ure-lib.php:1990
|
612 |
msgid "Delete pages"
|
613 |
+
msgstr "Sayfa silme"
|
614 |
|
615 |
+
#: ../includes/class-ure-lib.php:1991
|
616 |
msgid "Delete others pages"
|
617 |
+
msgstr "Başkalarının sayfalarını silme"
|
618 |
|
619 |
+
#: ../includes/class-ure-lib.php:1992
|
620 |
msgid "Delete published pages"
|
621 |
+
msgstr "Yayımdaki sayfaları silme"
|
622 |
|
623 |
+
#: ../includes/class-ure-lib.php:1993
|
624 |
msgid "Delete posts"
|
625 |
+
msgstr "Gönderi silme"
|
626 |
|
627 |
+
#: ../includes/class-ure-lib.php:1994
|
628 |
msgid "Delete others posts"
|
629 |
+
msgstr "Başkalarının gönderilerini silme"
|
630 |
|
631 |
+
#: ../includes/class-ure-lib.php:1995
|
632 |
msgid "Delete published posts"
|
633 |
+
msgstr "Yayımdaki gönderileri silme"
|
634 |
|
635 |
+
#: ../includes/class-ure-lib.php:1996
|
636 |
msgid "Delete private posts"
|
637 |
+
msgstr "Özel gönderileri silme"
|
638 |
|
639 |
+
#: ../includes/class-ure-lib.php:1997
|
640 |
msgid "Edit private posts"
|
641 |
+
msgstr "Özel gönderileri düzenleme"
|
642 |
|
643 |
+
#: ../includes/class-ure-lib.php:1998
|
644 |
msgid "Read private posts"
|
645 |
+
msgstr "Özel gönderileri okuma"
|
646 |
|
647 |
+
#: ../includes/class-ure-lib.php:1999
|
648 |
msgid "Delete private pages"
|
649 |
+
msgstr "Özel gönderileri silme"
|
650 |
|
651 |
+
#: ../includes/class-ure-lib.php:2000
|
652 |
msgid "Edit private pages"
|
653 |
+
msgstr "Özel sayfaları düzenleme"
|
654 |
|
655 |
+
#: ../includes/class-ure-lib.php:2001
|
656 |
msgid "Read private pages"
|
657 |
+
msgstr "Özel sayfaları okuma"
|
658 |
|
659 |
+
#: ../includes/class-ure-lib.php:2002
|
660 |
msgid "Delete users"
|
661 |
+
msgstr "Kullanıcı silme"
|
662 |
|
663 |
+
#: ../includes/class-ure-lib.php:2003
|
664 |
msgid "Create users"
|
665 |
+
msgstr "Kullanıcı oluşturma"
|
666 |
|
667 |
+
#: ../includes/class-ure-lib.php:2004
|
668 |
msgid "Unfiltered upload"
|
669 |
+
msgstr "Süzülmemiş yükleme"
|
670 |
|
671 |
+
#: ../includes/class-ure-lib.php:2005
|
672 |
msgid "Edit dashboard"
|
673 |
+
msgstr "Panel düzenleme"
|
674 |
|
675 |
+
#: ../includes/class-ure-lib.php:2006
|
676 |
msgid "Update plugins"
|
677 |
+
msgstr "Eklenti güncelleme"
|
678 |
|
679 |
+
#: ../includes/class-ure-lib.php:2007
|
680 |
msgid "Delete plugins"
|
681 |
+
msgstr "Eklenti silme"
|
682 |
|
683 |
+
#: ../includes/class-ure-lib.php:2008
|
684 |
msgid "Install plugins"
|
685 |
+
msgstr "Eklenti kurma"
|
686 |
|
687 |
+
#: ../includes/class-ure-lib.php:2009
|
688 |
msgid "Update themes"
|
689 |
+
msgstr "Tema güncelleme"
|
690 |
|
691 |
+
#: ../includes/class-ure-lib.php:2010
|
692 |
msgid "Install themes"
|
693 |
+
msgstr "Tema kurma"
|
694 |
|
695 |
+
#: ../includes/class-ure-lib.php:2011
|
696 |
msgid "Update core"
|
697 |
+
msgstr "Çekirdek güncelleme"
|
698 |
|
699 |
+
#: ../includes/class-ure-lib.php:2012
|
700 |
msgid "List users"
|
701 |
+
msgstr "Kullanıcı listeleme"
|
702 |
|
703 |
+
#: ../includes/class-ure-lib.php:2013
|
704 |
msgid "Remove users"
|
705 |
+
msgstr "Kullanıcı kaldırma"
|
706 |
|
707 |
+
#: ../includes/class-ure-lib.php:2014
|
708 |
msgid "Add users"
|
709 |
+
msgstr "Kullanıcı ekleme"
|
710 |
|
711 |
+
#: ../includes/class-ure-lib.php:2015
|
712 |
msgid "Promote users"
|
713 |
+
msgstr "Kullanıcı teşvik etme"
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2016
|
716 |
msgid "Edit theme options"
|
717 |
+
msgstr "Tema seçenekleri düzenleme"
|
718 |
|
719 |
+
#: ../includes/class-ure-lib.php:2017
|
720 |
msgid "Delete themes"
|
721 |
+
msgstr "Tema silme"
|
722 |
|
723 |
+
#: ../includes/class-ure-lib.php:2018
|
724 |
msgid "Export"
|
725 |
+
msgstr "Dışa Aktarma"
|
726 |
|
727 |
+
#: ../includes/class-ure-lib.php:2128
|
728 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
729 |
+
msgstr "Hata: Kabiliyet ismi yalnızca latin karakterleri ve rakamlar içermeli!"
|
|
|
730 |
|
731 |
+
#: ../includes/class-ure-lib.php:2141
|
732 |
#, php-format
|
733 |
msgid "Capability %s is added successfully"
|
734 |
msgstr "%s kabiliyeti başarıyla eklendi"
|
735 |
|
736 |
+
#: ../includes/class-ure-lib.php:2143
|
737 |
#, php-format
|
738 |
msgid "Capability %s exists already"
|
739 |
msgstr "%s kabiliyeti zaten mevcut"
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2168
|
742 |
#, php-format
|
743 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
744 |
+
msgstr "Hata! Bu kabiliyeti silmeye izniniz yok: %s!"
|
745 |
|
746 |
+
#: ../includes/class-ure-lib.php:2187
|
747 |
#, php-format
|
748 |
msgid "Capability %s is removed successfully"
|
749 |
+
msgstr "%s kabiliyeti başarıyla kaldırıldı"
|
750 |
|
751 |
+
#: ../includes/class-ure-lib.php:2291
|
752 |
msgid "Version:"
|
753 |
+
msgstr "Sürüm:"
|
754 |
|
755 |
+
#: ../includes/class-ure-lib.php:2292
|
756 |
msgid "Author's website"
|
757 |
+
msgstr "Yazar'ın web sitesi"
|
758 |
|
759 |
+
#: ../includes/class-ure-lib.php:2293
|
760 |
msgid "Plugin webpage"
|
761 |
+
msgstr "Eklenti web sayfası"
|
762 |
|
763 |
+
#: ../includes/class-ure-lib.php:2294
|
|
|
764 |
msgid "Plugin download"
|
765 |
+
msgstr "Eklenti indirme"
|
766 |
|
767 |
+
#: ../includes/class-ure-lib.php:2296
|
768 |
msgid "FAQ"
|
769 |
msgstr "SSS"
|
770 |
|
771 |
+
#: ../includes/class-ure-lib.php:2344
|
772 |
msgid "None"
|
773 |
msgstr "Hiçbiri"
|
774 |
|
775 |
+
#: ../includes/class-ure-lib.php:2371
|
776 |
msgid "Delete All Unused Roles"
|
777 |
+
msgstr "Tüm Kullanılmayan Rolleri Sil"
|
778 |
|
779 |
+
#: ../includes/class-ure-lib.php:2395
|
780 |
msgid "— No role for this site —"
|
781 |
+
msgstr "— Bu site için hiç rol yok —"
|
782 |
|
783 |
#: ../includes/ure-user-edit.php:31
|
784 |
msgid "Network Super Admin"
|
785 |
+
msgstr "Ağ Süper Yöneticisi"
|
786 |
|
787 |
#: ../includes/ure-user-edit.php:34
|
788 |
msgid "Change capabilities for user"
|
789 |
+
msgstr "Kullanıcının kabiliyetlerini değiştir"
|
790 |
|
791 |
#: ../includes/ure-user-edit.php:71
|
792 |
msgid "Primary Role:"
|
793 |
+
msgstr "Birincil Rol:"
|
794 |
|
795 |
#: ../includes/ure-user-edit.php:81
|
796 |
msgid "bbPress Role:"
|
797 |
+
msgstr "bbPress Rolü:"
|
798 |
|
799 |
#: ../includes/ure-user-edit.php:91
|
800 |
msgid "Other Roles:"
|
806 |
"the User Role Editor roles selection drop-down list. It is hidden by default "
|
807 |
"for security reasons."
|
808 |
msgstr ""
|
809 |
+
"\"Yönetici\" rolünün Kullanıcı Rol Editörü rol seçim açılır listesinde yer "
|
810 |
+
"alması için bu seçeneği açık yapın. Güvenlik sebebiyle varsayılan olarak "
|
811 |
+
"gizlenmiştir."
|
812 |
|
813 |
#: ../includes/class-ure-screen-help.php:19
|
814 |
msgid ""
|
816 |
"use like \"edit_others_posts\" to more user friendly form, e.g. \"Edit "
|
817 |
"others posts\"."
|
818 |
msgstr ""
|
819 |
+
"otomatik olarak \"edit_others_post\" gibi teknik biçimdeki kabiliyet "
|
820 |
+
"isimlerini dahili kullanım için daha kullanıcı dostu biçime dönüştürür, "
|
821 |
+
"mesela \"Başkalarının gönderilerini düzenleme\"."
|
822 |
|
823 |
#: ../includes/class-ure-screen-help.php:22
|
824 |
msgid ""
|
827 |
"with the old themes and plugins code. Turning on this option will show those "
|
828 |
"deprecated capabilities."
|
829 |
msgstr ""
|
830 |
+
"\"level_0\", \"level_1\" gibi kabiliyetler önerilmemektedir ve WordPress "
|
831 |
+
"tarafından kullanılmamaktadır. Bunlara eski temalar ve eklentiler ile "
|
832 |
+
"uyumluluğun korunması amacıyla kullanıcı rolleri arasında yer verilmiştir. "
|
833 |
+
"Bu seçeneği açık yapmak bu önerilmeyen kabiliyetleri görünür yapacaktır."
|
834 |
|
835 |
+
#: ../includes/class-ure-screen-help.php:42
|
836 |
+
msgid ""
|
837 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
838 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
839 |
+
"users list with role \"No rights\" at the separate tab then."
|
840 |
+
msgstr ""
|
841 |
|
842 |
+
#: ../includes/class-ure-screen-help.php:59
|
843 |
msgid "Other default roles for new registered user"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: ../includes/class-ure-screen-help.php:60
|
847 |
msgid ""
|
848 |
"select roles below to assign them to the new user automatically as an "
|
849 |
"addition to the primary role. Note for multisite environment: take into "
|
851 |
"assigned to the new registered users."
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: ../includes/class-ure-screen-help.php:78
|
855 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../includes/class-ure-screen-help.php:79
|
859 |
msgid ""
|
860 |
"Super administrator only may create, edit and delete users under WordPress "
|
861 |
"multi-site by default. Turn this option on in order to remove this "
|
862 |
"limitation."
|
863 |
msgstr ""
|
864 |
|
865 |
+
#~ msgid "select roles below"
|
866 |
+
#~ msgstr "aşağıdaki rollerden seçin"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lang/ure.mo
CHANGED
Binary file
|
lang/ure.pot
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-10-
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Vladimir Garagulya <
|
8 |
"Language-Team: ShinePHP.com <vladimir@shinephp.com>\n"
|
9 |
"Language: en_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -36,7 +36,7 @@ msgid "Default Roles"
|
|
36 |
msgstr ""
|
37 |
|
38 |
#: ../includes/settings-template.php:34
|
39 |
-
#: ../includes/class-user-role-editor.php:
|
40 |
msgid "Multisite"
|
41 |
msgstr ""
|
42 |
|
@@ -65,7 +65,7 @@ msgid "Save"
|
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../includes/settings-template.php:102
|
68 |
-
#: ../includes/class-ure-screen-help.php:
|
69 |
msgid "Count users without role"
|
70 |
msgstr ""
|
71 |
|
@@ -114,157 +114,157 @@ msgid "Settings"
|
|
114 |
msgstr ""
|
115 |
|
116 |
#: ../includes/class-user-role-editor.php:525
|
117 |
-
#: ../includes/class-ure-lib.php:
|
118 |
msgid "Changelog"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ../includes/class-user-role-editor.php:
|
122 |
-
#: ../includes/class-user-role-editor.php:
|
123 |
-
#: ../includes/class-user-role-editor.php:
|
124 |
-
#: ../includes/class-ure-lib.php:
|
125 |
msgid "User Role Editor"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: ../includes/class-user-role-editor.php:
|
129 |
-
#: ../includes/class-user-role-editor.php:
|
130 |
-
#: ../includes/class-user-role-editor.php:
|
131 |
msgid "User Role Editor options are updated"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: ../includes/class-user-role-editor.php:
|
135 |
msgid "Default Roles are updated"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: ../includes/class-user-role-editor.php:
|
139 |
msgid ""
|
140 |
"You do not have sufficient permissions to manage options for User Role "
|
141 |
"Editor."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: ../includes/class-user-role-editor.php:
|
145 |
msgid "Insufficient permissions to work with User Role Editor"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: ../includes/class-user-role-editor.php:
|
149 |
msgid "Select All"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ../includes/class-user-role-editor.php:
|
153 |
msgid "Unselect All"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: ../includes/class-user-role-editor.php:
|
157 |
msgid "Reverse"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: ../includes/class-user-role-editor.php:
|
161 |
msgid "Update"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: ../includes/class-user-role-editor.php:
|
165 |
msgid "Please confirm permissions update"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: ../includes/class-user-role-editor.php:
|
169 |
msgid "Add New Role"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: ../includes/class-user-role-editor.php:
|
173 |
-
#: ../includes/class-user-role-editor.php:
|
174 |
msgid "Rename Role"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ../includes/class-user-role-editor.php:
|
178 |
msgid " Role name (ID) can not be empty!"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: ../includes/class-user-role-editor.php:
|
182 |
msgid ""
|
183 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
184 |
"only!"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: ../includes/class-user-role-editor.php:
|
188 |
msgid ""
|
189 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
190 |
"it."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: ../includes/class-user-role-editor.php:
|
194 |
msgid "Add Role"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ../includes/class-user-role-editor.php:
|
198 |
msgid "Delete Role"
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: ../includes/class-user-role-editor.php:
|
202 |
msgid "Cancel"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../includes/class-user-role-editor.php:
|
206 |
msgid "Add Capability"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: ../includes/class-user-role-editor.php:
|
210 |
-
#: ../includes/class-user-role-editor.php:
|
211 |
msgid "Delete Capability"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: ../includes/class-user-role-editor.php:
|
215 |
msgid "Reset"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: ../includes/class-user-role-editor.php:
|
219 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: ../includes/class-user-role-editor.php:
|
223 |
msgid ""
|
224 |
"If any plugins have changed capabilities in any way upon installation (such "
|
225 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: ../includes/class-user-role-editor.php:
|
229 |
msgid ""
|
230 |
"For more information on how to undo changes and restore plugin capabilities "
|
231 |
"go to"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: ../includes/class-user-role-editor.php:
|
235 |
msgid "Continue?"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ../includes/class-user-role-editor.php:
|
239 |
msgid "Default Role"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: ../includes/class-user-role-editor.php:
|
243 |
msgid "Set New Default Role"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: ../includes/class-user-role-editor.php:
|
247 |
msgid ""
|
248 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
249 |
"or other custom code"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: ../includes/class-user-role-editor.php:
|
253 |
msgid " Capability name (ID) can not be empty!"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: ../includes/class-user-role-editor.php:
|
257 |
msgid ""
|
258 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
259 |
"underscore only!"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: ../includes/class-user-role-editor.php:
|
263 |
-
#: ../includes/class-user-role-editor.php:
|
264 |
msgid "Other Roles"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../includes/class-user-role-editor.php:
|
268 |
msgid "Edit"
|
269 |
msgstr ""
|
270 |
|
@@ -296,461 +296,461 @@ msgstr ""
|
|
296 |
msgid "Custom capabilities:"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../includes/class-ure-lib.php:
|
300 |
msgid "Error: wrong request"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../includes/class-ure-lib.php:
|
304 |
msgid "Role name (ID): "
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../includes/class-ure-lib.php:
|
308 |
msgid "Display Role Name: "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../includes/class-ure-lib.php:
|
312 |
msgid "Make copy of: "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../includes/class-ure-lib.php:
|
316 |
msgid "Select Role:"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: ../includes/class-ure-lib.php:
|
320 |
msgid "Delete:"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: ../includes/class-ure-lib.php:
|
324 |
msgid "Capability name (ID): "
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: ../includes/class-ure-lib.php:
|
328 |
msgid "Error: "
|
329 |
msgstr ""
|
330 |
|
331 |
-
#: ../includes/class-ure-lib.php:
|
332 |
msgid "Role"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: ../includes/class-ure-lib.php:
|
336 |
msgid "does not exist"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: ../includes/class-ure-lib.php:
|
340 |
msgid "Role is updated successfully"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: ../includes/class-ure-lib.php:
|
344 |
msgid "Roles are updated for all network"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ../includes/class-ure-lib.php:
|
348 |
msgid "Error occured during role(s) update"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: ../includes/class-ure-lib.php:
|
352 |
msgid "User capabilities are updated successfully"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: ../includes/class-ure-lib.php:
|
356 |
msgid "Error occured during user update"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: ../includes/class-ure-lib.php:
|
360 |
msgid "User Roles are restored to WordPress default values. "
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: ../includes/class-ure-lib.php:
|
364 |
msgid "Help"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: ../includes/class-ure-lib.php:
|
368 |
msgid "Error is occur. Please check the log file."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../includes/class-ure-lib.php:
|
372 |
msgid ""
|
373 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
374 |
"only!"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: ../includes/class-ure-lib.php:
|
378 |
msgid ""
|
379 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
380 |
"characters to it."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../includes/class-ure-lib.php:
|
384 |
#, php-format
|
385 |
msgid "Role %s exists already"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: ../includes/class-ure-lib.php:
|
389 |
msgid "Error is encountered during new role create operation"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: ../includes/class-ure-lib.php:
|
393 |
#, php-format
|
394 |
msgid "Role %s is created successfully"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: ../includes/class-ure-lib.php:
|
398 |
msgid "Error: Role ID is empty!"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: ../includes/class-ure-lib.php:
|
402 |
msgid "Error: Empty role display name is not allowed."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../includes/class-ure-lib.php:
|
406 |
#, php-format
|
407 |
msgid "Role %s does not exists"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: ../includes/class-ure-lib.php:
|
411 |
#, php-format
|
412 |
msgid "Role %s is renamed to %s successfully"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: ../includes/class-ure-lib.php:
|
416 |
msgid "Error encountered during role delete operation"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../includes/class-ure-lib.php:
|
420 |
msgid "Unused roles are deleted successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../includes/class-ure-lib.php:
|
424 |
#, php-format
|
425 |
msgid "Role %s is deleted successfully"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ../includes/class-ure-lib.php:
|
429 |
msgid "Error encountered during default role change operation"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: ../includes/class-ure-lib.php:
|
433 |
#, php-format
|
434 |
msgid "Default role for new users is set to %s successfully"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../includes/class-ure-lib.php:
|
438 |
msgid "Editor"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: ../includes/class-ure-lib.php:
|
442 |
msgid "Author"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: ../includes/class-ure-lib.php:
|
446 |
msgid "Contributor"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../includes/class-ure-lib.php:
|
450 |
msgid "Subscriber"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: ../includes/class-ure-lib.php:
|
454 |
msgid "Switch themes"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: ../includes/class-ure-lib.php:
|
458 |
msgid "Edit themes"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ../includes/class-ure-lib.php:
|
462 |
msgid "Activate plugins"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ../includes/class-ure-lib.php:
|
466 |
msgid "Edit plugins"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: ../includes/class-ure-lib.php:
|
470 |
msgid "Edit users"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: ../includes/class-ure-lib.php:
|
474 |
msgid "Edit files"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ../includes/class-ure-lib.php:
|
478 |
msgid "Manage options"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: ../includes/class-ure-lib.php:
|
482 |
msgid "Moderate comments"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: ../includes/class-ure-lib.php:
|
486 |
msgid "Manage categories"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../includes/class-ure-lib.php:
|
490 |
msgid "Manage links"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: ../includes/class-ure-lib.php:
|
494 |
msgid "Upload files"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../includes/class-ure-lib.php:
|
498 |
msgid "Import"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../includes/class-ure-lib.php:
|
502 |
msgid "Unfiltered html"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../includes/class-ure-lib.php:
|
506 |
msgid "Edit posts"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../includes/class-ure-lib.php:
|
510 |
msgid "Edit others posts"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../includes/class-ure-lib.php:
|
514 |
msgid "Edit published posts"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: ../includes/class-ure-lib.php:
|
518 |
msgid "Publish posts"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: ../includes/class-ure-lib.php:
|
522 |
msgid "Edit pages"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: ../includes/class-ure-lib.php:
|
526 |
msgid "Read"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: ../includes/class-ure-lib.php:
|
530 |
msgid "Level 10"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: ../includes/class-ure-lib.php:
|
534 |
msgid "Level 9"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ../includes/class-ure-lib.php:
|
538 |
msgid "Level 8"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: ../includes/class-ure-lib.php:
|
542 |
msgid "Level 7"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: ../includes/class-ure-lib.php:
|
546 |
msgid "Level 6"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: ../includes/class-ure-lib.php:
|
550 |
msgid "Level 5"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: ../includes/class-ure-lib.php:
|
554 |
msgid "Level 4"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: ../includes/class-ure-lib.php:
|
558 |
msgid "Level 3"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: ../includes/class-ure-lib.php:
|
562 |
msgid "Level 2"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: ../includes/class-ure-lib.php:
|
566 |
msgid "Level 1"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: ../includes/class-ure-lib.php:
|
570 |
msgid "Level 0"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: ../includes/class-ure-lib.php:
|
574 |
msgid "Edit others pages"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: ../includes/class-ure-lib.php:
|
578 |
msgid "Edit published pages"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: ../includes/class-ure-lib.php:
|
582 |
msgid "Publish pages"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: ../includes/class-ure-lib.php:
|
586 |
msgid "Delete pages"
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: ../includes/class-ure-lib.php:
|
590 |
msgid "Delete others pages"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: ../includes/class-ure-lib.php:
|
594 |
msgid "Delete published pages"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: ../includes/class-ure-lib.php:
|
598 |
msgid "Delete posts"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: ../includes/class-ure-lib.php:
|
602 |
msgid "Delete others posts"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: ../includes/class-ure-lib.php:
|
606 |
msgid "Delete published posts"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../includes/class-ure-lib.php:
|
610 |
msgid "Delete private posts"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: ../includes/class-ure-lib.php:
|
614 |
msgid "Edit private posts"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: ../includes/class-ure-lib.php:
|
618 |
msgid "Read private posts"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: ../includes/class-ure-lib.php:
|
622 |
msgid "Delete private pages"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: ../includes/class-ure-lib.php:
|
626 |
msgid "Edit private pages"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: ../includes/class-ure-lib.php:
|
630 |
msgid "Read private pages"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: ../includes/class-ure-lib.php:
|
634 |
msgid "Delete users"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: ../includes/class-ure-lib.php:
|
638 |
msgid "Create users"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: ../includes/class-ure-lib.php:
|
642 |
msgid "Unfiltered upload"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: ../includes/class-ure-lib.php:
|
646 |
msgid "Edit dashboard"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: ../includes/class-ure-lib.php:
|
650 |
msgid "Update plugins"
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: ../includes/class-ure-lib.php:
|
654 |
msgid "Delete plugins"
|
655 |
msgstr ""
|
656 |
|
657 |
-
#: ../includes/class-ure-lib.php:
|
658 |
msgid "Install plugins"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: ../includes/class-ure-lib.php:
|
662 |
msgid "Update themes"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: ../includes/class-ure-lib.php:
|
666 |
msgid "Install themes"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: ../includes/class-ure-lib.php:
|
670 |
msgid "Update core"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: ../includes/class-ure-lib.php:
|
674 |
msgid "List users"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: ../includes/class-ure-lib.php:
|
678 |
msgid "Remove users"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: ../includes/class-ure-lib.php:
|
682 |
msgid "Add users"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: ../includes/class-ure-lib.php:
|
686 |
msgid "Promote users"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: ../includes/class-ure-lib.php:
|
690 |
msgid "Edit theme options"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: ../includes/class-ure-lib.php:
|
694 |
msgid "Delete themes"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: ../includes/class-ure-lib.php:
|
698 |
msgid "Export"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: ../includes/class-ure-lib.php:
|
702 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: ../includes/class-ure-lib.php:
|
706 |
#, php-format
|
707 |
msgid "Capability %s is added successfully"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: ../includes/class-ure-lib.php:
|
711 |
#, php-format
|
712 |
msgid "Capability %s exists already"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: ../includes/class-ure-lib.php:
|
716 |
#, php-format
|
717 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: ../includes/class-ure-lib.php:
|
721 |
#, php-format
|
722 |
msgid "Capability %s is removed successfully"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: ../includes/class-ure-lib.php:
|
726 |
msgid "Version:"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: ../includes/class-ure-lib.php:
|
730 |
msgid "Author's website"
|
731 |
msgstr ""
|
732 |
|
733 |
-
#: ../includes/class-ure-lib.php:
|
734 |
msgid "Plugin webpage"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: ../includes/class-ure-lib.php:
|
738 |
msgid "Plugin download"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: ../includes/class-ure-lib.php:
|
742 |
msgid "FAQ"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: ../includes/class-ure-lib.php:
|
746 |
msgid "None"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: ../includes/class-ure-lib.php:
|
750 |
msgid "Delete All Unused Roles"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: ../includes/class-ure-lib.php:
|
754 |
msgid "— No role for this site —"
|
755 |
msgstr ""
|
756 |
|
@@ -796,15 +796,18 @@ msgid ""
|
|
796 |
"deprecated capabilities."
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../includes/class-ure-screen-help.php:
|
800 |
-
msgid "
|
|
|
|
|
|
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: ../includes/class-ure-screen-help.php:
|
804 |
msgid "Other default roles for new registered user"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../includes/class-ure-screen-help.php:
|
808 |
msgid ""
|
809 |
"select roles below to assign them to the new user automatically as an "
|
810 |
"addition to the primary role. Note for multisite environment: take into "
|
@@ -812,11 +815,11 @@ msgid ""
|
|
812 |
"assigned to the new registered users."
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: ../includes/class-ure-screen-help.php:
|
816 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../includes/class-ure-screen-help.php:
|
820 |
msgid ""
|
821 |
"Super administrator only may create, edit and delete users under WordPress "
|
822 |
"multi-site by default. Turn this option on in order to remove this "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: User Role Editor 2.0\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-10-21 10:21+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"
|
9 |
"Language: en_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
36 |
msgstr ""
|
37 |
|
38 |
#: ../includes/settings-template.php:34
|
39 |
+
#: ../includes/class-user-role-editor.php:565
|
40 |
msgid "Multisite"
|
41 |
msgstr ""
|
42 |
|
65 |
msgstr ""
|
66 |
|
67 |
#: ../includes/settings-template.php:102
|
68 |
+
#: ../includes/class-ure-screen-help.php:41
|
69 |
msgid "Count users without role"
|
70 |
msgstr ""
|
71 |
|
114 |
msgstr ""
|
115 |
|
116 |
#: ../includes/class-user-role-editor.php:525
|
117 |
+
#: ../includes/class-ure-lib.php:2295
|
118 |
msgid "Changelog"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ../includes/class-user-role-editor.php:575
|
122 |
+
#: ../includes/class-user-role-editor.php:603
|
123 |
+
#: ../includes/class-user-role-editor.php:948
|
124 |
+
#: ../includes/class-ure-lib.php:251
|
125 |
msgid "User Role Editor"
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: ../includes/class-user-role-editor.php:660
|
129 |
+
#: ../includes/class-user-role-editor.php:678
|
130 |
+
#: ../includes/class-user-role-editor.php:722
|
131 |
msgid "User Role Editor options are updated"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: ../includes/class-user-role-editor.php:706
|
135 |
msgid "Default Roles are updated"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: ../includes/class-user-role-editor.php:730
|
139 |
msgid ""
|
140 |
"You do not have sufficient permissions to manage options for User Role "
|
141 |
"Editor."
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: ../includes/class-user-role-editor.php:809
|
145 |
msgid "Insufficient permissions to work with User Role Editor"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: ../includes/class-user-role-editor.php:890
|
149 |
msgid "Select All"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ../includes/class-user-role-editor.php:891
|
153 |
msgid "Unselect All"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: ../includes/class-user-role-editor.php:892
|
157 |
msgid "Reverse"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: ../includes/class-user-role-editor.php:893
|
161 |
msgid "Update"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: ../includes/class-user-role-editor.php:894
|
165 |
msgid "Please confirm permissions update"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: ../includes/class-user-role-editor.php:895
|
169 |
msgid "Add New Role"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: ../includes/class-user-role-editor.php:896
|
173 |
+
#: ../includes/class-user-role-editor.php:901
|
174 |
msgid "Rename Role"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ../includes/class-user-role-editor.php:897
|
178 |
msgid " Role name (ID) can not be empty!"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: ../includes/class-user-role-editor.php:898
|
182 |
msgid ""
|
183 |
" Role name (ID) must contain latin characters, digits, hyphens or underscore "
|
184 |
"only!"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: ../includes/class-user-role-editor.php:899
|
188 |
msgid ""
|
189 |
" WordPress does not support numeric Role name (ID). Add latin characters to "
|
190 |
"it."
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: ../includes/class-user-role-editor.php:900
|
194 |
msgid "Add Role"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ../includes/class-user-role-editor.php:902
|
198 |
msgid "Delete Role"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: ../includes/class-user-role-editor.php:903
|
202 |
msgid "Cancel"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: ../includes/class-user-role-editor.php:904
|
206 |
msgid "Add Capability"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: ../includes/class-user-role-editor.php:905
|
210 |
+
#: ../includes/class-user-role-editor.php:914
|
211 |
msgid "Delete Capability"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: ../includes/class-user-role-editor.php:906
|
215 |
msgid "Reset"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: ../includes/class-user-role-editor.php:907
|
219 |
msgid "DANGER! Resetting will restore default settings from WordPress Core."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: ../includes/class-user-role-editor.php:908
|
223 |
msgid ""
|
224 |
"If any plugins have changed capabilities in any way upon installation (such "
|
225 |
"as S2Member, WooCommerce, and many more), those capabilities will be DELETED!"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../includes/class-user-role-editor.php:909
|
229 |
msgid ""
|
230 |
"For more information on how to undo changes and restore plugin capabilities "
|
231 |
"go to"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: ../includes/class-user-role-editor.php:911
|
235 |
msgid "Continue?"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../includes/class-user-role-editor.php:912
|
239 |
msgid "Default Role"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: ../includes/class-user-role-editor.php:913
|
243 |
msgid "Set New Default Role"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: ../includes/class-user-role-editor.php:915
|
247 |
msgid ""
|
248 |
"Warning! Be careful - removing critical capability could crash some plugin "
|
249 |
"or other custom code"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: ../includes/class-user-role-editor.php:916
|
253 |
msgid " Capability name (ID) can not be empty!"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: ../includes/class-user-role-editor.php:917
|
257 |
msgid ""
|
258 |
" Capability name (ID) must contain latin characters, digits, hyphens or "
|
259 |
"underscore only!"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: ../includes/class-user-role-editor.php:951
|
263 |
+
#: ../includes/class-user-role-editor.php:980
|
264 |
msgid "Other Roles"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../includes/class-user-role-editor.php:962
|
268 |
msgid "Edit"
|
269 |
msgstr ""
|
270 |
|
296 |
msgid "Custom capabilities:"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../includes/class-ure-lib.php:159
|
300 |
msgid "Error: wrong request"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../includes/class-ure-lib.php:192 ../includes/class-ure-lib.php:203
|
304 |
msgid "Role name (ID): "
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../includes/class-ure-lib.php:194 ../includes/class-ure-lib.php:205
|
308 |
msgid "Display Role Name: "
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../includes/class-ure-lib.php:196
|
312 |
msgid "Make copy of: "
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../includes/class-ure-lib.php:212
|
316 |
msgid "Select Role:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: ../includes/class-ure-lib.php:227
|
320 |
msgid "Delete:"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: ../includes/class-ure-lib.php:234
|
324 |
msgid "Capability name (ID): "
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: ../includes/class-ure-lib.php:348
|
328 |
msgid "Error: "
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: ../includes/class-ure-lib.php:348
|
332 |
msgid "Role"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: ../includes/class-ure-lib.php:349
|
336 |
msgid "does not exist"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: ../includes/class-ure-lib.php:392
|
340 |
msgid "Role is updated successfully"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: ../includes/class-ure-lib.php:394
|
344 |
msgid "Roles are updated for all network"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: ../includes/class-ure-lib.php:400
|
348 |
msgid "Error occured during role(s) update"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: ../includes/class-ure-lib.php:407
|
352 |
msgid "User capabilities are updated successfully"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: ../includes/class-ure-lib.php:412
|
356 |
msgid "Error occured during user update"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: ../includes/class-ure-lib.php:470
|
360 |
msgid "User Roles are restored to WordPress default values. "
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: ../includes/class-ure-lib.php:1337
|
364 |
msgid "Help"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: ../includes/class-ure-lib.php:1695
|
368 |
msgid "Error is occur. Please check the log file."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/class-ure-lib.php:1738 ../includes/class-ure-lib.php:1805
|
372 |
msgid ""
|
373 |
"Error: Role ID must contain latin characters, digits, hyphens or underscore "
|
374 |
"only!"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: ../includes/class-ure-lib.php:1742 ../includes/class-ure-lib.php:1809
|
378 |
msgid ""
|
379 |
"Error: WordPress does not support numeric Role name (ID). Add latin "
|
380 |
"characters to it."
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../includes/class-ure-lib.php:1757
|
384 |
#, php-format
|
385 |
msgid "Role %s exists already"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: ../includes/class-ure-lib.php:1772
|
389 |
msgid "Error is encountered during new role create operation"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: ../includes/class-ure-lib.php:1774
|
393 |
#, php-format
|
394 |
msgid "Role %s is created successfully"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: ../includes/class-ure-lib.php:1798
|
398 |
msgid "Error: Role ID is empty!"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: ../includes/class-ure-lib.php:1816
|
402 |
msgid "Error: Empty role display name is not allowed."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: ../includes/class-ure-lib.php:1823
|
406 |
#, php-format
|
407 |
msgid "Role %s does not exists"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: ../includes/class-ure-lib.php:1831
|
411 |
#, php-format
|
412 |
msgid "Role %s is renamed to %s successfully"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: ../includes/class-ure-lib.php:1898
|
416 |
msgid "Error encountered during role delete operation"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../includes/class-ure-lib.php:1900
|
420 |
msgid "Unused roles are deleted successfully"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../includes/class-ure-lib.php:1902
|
424 |
#, php-format
|
425 |
msgid "Role %s is deleted successfully"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ../includes/class-ure-lib.php:1927
|
429 |
msgid "Error encountered during default role change operation"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: ../includes/class-ure-lib.php:1933
|
433 |
#, php-format
|
434 |
msgid "Default role for new users is set to %s successfully"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../includes/class-ure-lib.php:1952
|
438 |
msgid "Editor"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: ../includes/class-ure-lib.php:1953
|
442 |
msgid "Author"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../includes/class-ure-lib.php:1954
|
446 |
msgid "Contributor"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../includes/class-ure-lib.php:1955
|
450 |
msgid "Subscriber"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: ../includes/class-ure-lib.php:1957
|
454 |
msgid "Switch themes"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: ../includes/class-ure-lib.php:1958
|
458 |
msgid "Edit themes"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ../includes/class-ure-lib.php:1959
|
462 |
msgid "Activate plugins"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ../includes/class-ure-lib.php:1960
|
466 |
msgid "Edit plugins"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: ../includes/class-ure-lib.php:1961
|
470 |
msgid "Edit users"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: ../includes/class-ure-lib.php:1962
|
474 |
msgid "Edit files"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ../includes/class-ure-lib.php:1963
|
478 |
msgid "Manage options"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: ../includes/class-ure-lib.php:1964
|
482 |
msgid "Moderate comments"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: ../includes/class-ure-lib.php:1965
|
486 |
msgid "Manage categories"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: ../includes/class-ure-lib.php:1966
|
490 |
msgid "Manage links"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: ../includes/class-ure-lib.php:1967
|
494 |
msgid "Upload files"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../includes/class-ure-lib.php:1968
|
498 |
msgid "Import"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: ../includes/class-ure-lib.php:1969
|
502 |
msgid "Unfiltered html"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: ../includes/class-ure-lib.php:1970
|
506 |
msgid "Edit posts"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: ../includes/class-ure-lib.php:1971
|
510 |
msgid "Edit others posts"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: ../includes/class-ure-lib.php:1972
|
514 |
msgid "Edit published posts"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: ../includes/class-ure-lib.php:1973
|
518 |
msgid "Publish posts"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: ../includes/class-ure-lib.php:1974
|
522 |
msgid "Edit pages"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: ../includes/class-ure-lib.php:1975
|
526 |
msgid "Read"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: ../includes/class-ure-lib.php:1976
|
530 |
msgid "Level 10"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: ../includes/class-ure-lib.php:1977
|
534 |
msgid "Level 9"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ../includes/class-ure-lib.php:1978
|
538 |
msgid "Level 8"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: ../includes/class-ure-lib.php:1979
|
542 |
msgid "Level 7"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: ../includes/class-ure-lib.php:1980
|
546 |
msgid "Level 6"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: ../includes/class-ure-lib.php:1981
|
550 |
msgid "Level 5"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: ../includes/class-ure-lib.php:1982
|
554 |
msgid "Level 4"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: ../includes/class-ure-lib.php:1983
|
558 |
msgid "Level 3"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: ../includes/class-ure-lib.php:1984
|
562 |
msgid "Level 2"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: ../includes/class-ure-lib.php:1985
|
566 |
msgid "Level 1"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: ../includes/class-ure-lib.php:1986
|
570 |
msgid "Level 0"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: ../includes/class-ure-lib.php:1987
|
574 |
msgid "Edit others pages"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: ../includes/class-ure-lib.php:1988
|
578 |
msgid "Edit published pages"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: ../includes/class-ure-lib.php:1989
|
582 |
msgid "Publish pages"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: ../includes/class-ure-lib.php:1990
|
586 |
msgid "Delete pages"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: ../includes/class-ure-lib.php:1991
|
590 |
msgid "Delete others pages"
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: ../includes/class-ure-lib.php:1992
|
594 |
msgid "Delete published pages"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: ../includes/class-ure-lib.php:1993
|
598 |
msgid "Delete posts"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: ../includes/class-ure-lib.php:1994
|
602 |
msgid "Delete others posts"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: ../includes/class-ure-lib.php:1995
|
606 |
msgid "Delete published posts"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: ../includes/class-ure-lib.php:1996
|
610 |
msgid "Delete private posts"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: ../includes/class-ure-lib.php:1997
|
614 |
msgid "Edit private posts"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: ../includes/class-ure-lib.php:1998
|
618 |
msgid "Read private posts"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: ../includes/class-ure-lib.php:1999
|
622 |
msgid "Delete private pages"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: ../includes/class-ure-lib.php:2000
|
626 |
msgid "Edit private pages"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: ../includes/class-ure-lib.php:2001
|
630 |
msgid "Read private pages"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: ../includes/class-ure-lib.php:2002
|
634 |
msgid "Delete users"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: ../includes/class-ure-lib.php:2003
|
638 |
msgid "Create users"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: ../includes/class-ure-lib.php:2004
|
642 |
msgid "Unfiltered upload"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: ../includes/class-ure-lib.php:2005
|
646 |
msgid "Edit dashboard"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: ../includes/class-ure-lib.php:2006
|
650 |
msgid "Update plugins"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: ../includes/class-ure-lib.php:2007
|
654 |
msgid "Delete plugins"
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: ../includes/class-ure-lib.php:2008
|
658 |
msgid "Install plugins"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: ../includes/class-ure-lib.php:2009
|
662 |
msgid "Update themes"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: ../includes/class-ure-lib.php:2010
|
666 |
msgid "Install themes"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: ../includes/class-ure-lib.php:2011
|
670 |
msgid "Update core"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: ../includes/class-ure-lib.php:2012
|
674 |
msgid "List users"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: ../includes/class-ure-lib.php:2013
|
678 |
msgid "Remove users"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: ../includes/class-ure-lib.php:2014
|
682 |
msgid "Add users"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: ../includes/class-ure-lib.php:2015
|
686 |
msgid "Promote users"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: ../includes/class-ure-lib.php:2016
|
690 |
msgid "Edit theme options"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: ../includes/class-ure-lib.php:2017
|
694 |
msgid "Delete themes"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: ../includes/class-ure-lib.php:2018
|
698 |
msgid "Export"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: ../includes/class-ure-lib.php:2128
|
702 |
msgid "Error: Capability name must contain latin characters and digits only!"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: ../includes/class-ure-lib.php:2141
|
706 |
#, php-format
|
707 |
msgid "Capability %s is added successfully"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: ../includes/class-ure-lib.php:2143
|
711 |
#, php-format
|
712 |
msgid "Capability %s exists already"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../includes/class-ure-lib.php:2168
|
716 |
#, php-format
|
717 |
msgid "Error! You do not have permission to delete this capability: %s!"
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: ../includes/class-ure-lib.php:2187
|
721 |
#, php-format
|
722 |
msgid "Capability %s is removed successfully"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: ../includes/class-ure-lib.php:2291
|
726 |
msgid "Version:"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: ../includes/class-ure-lib.php:2292
|
730 |
msgid "Author's website"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: ../includes/class-ure-lib.php:2293
|
734 |
msgid "Plugin webpage"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: ../includes/class-ure-lib.php:2294
|
738 |
msgid "Plugin download"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: ../includes/class-ure-lib.php:2296
|
742 |
msgid "FAQ"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: ../includes/class-ure-lib.php:2344
|
746 |
msgid "None"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: ../includes/class-ure-lib.php:2371
|
750 |
msgid "Delete All Unused Roles"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: ../includes/class-ure-lib.php:2395
|
754 |
msgid "— No role for this site —"
|
755 |
msgstr ""
|
756 |
|
796 |
"deprecated capabilities."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../includes/class-ure-screen-help.php:42
|
800 |
+
msgid ""
|
801 |
+
"Show at the \"Users\" page a quant of users without role. Module allows to "
|
802 |
+
"assign all of them an empty role \"No rights\", in order to look on the "
|
803 |
+
"users list with role \"No rights\" at the separate tab then."
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: ../includes/class-ure-screen-help.php:59
|
807 |
msgid "Other default roles for new registered user"
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: ../includes/class-ure-screen-help.php:60
|
811 |
msgid ""
|
812 |
"select roles below to assign them to the new user automatically as an "
|
813 |
"addition to the primary role. Note for multisite environment: take into "
|
815 |
"assigned to the new registered users."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: ../includes/class-ure-screen-help.php:78
|
819 |
msgid "Allow non super-admininstrators to create, edit and delete users"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: ../includes/class-ure-screen-help.php:79
|
823 |
msgid ""
|
824 |
"Super administrator only may create, edit and delete users under WordPress "
|
825 |
"multi-site by default. Turn this option on in order to remove this "
|
readme.txt
CHANGED
@@ -25,7 +25,7 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
|
|
25 |
Русская версия этой статьи доступна по адресу [ru.shinephp.com](http://ru.shinephp.com/user-role-editor-wordpress-plugin-rus/)
|
26 |
|
27 |
Do you need more functionality with quality support in real time? Do you wish remove advertisements from User Role Editor pages?
|
28 |
-
Buy [Pro version](
|
29 |
Pro version includes extra modules:
|
30 |
<ul>
|
31 |
<li>Block selected admin menu items for role.</li>
|
@@ -69,13 +69,14 @@ To read more about 'User Role Editor' visit [this page](http://www.shinephp.com/
|
|
69 |
|
70 |
= Translations =
|
71 |
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/) - needs update;
|
72 |
-
* Dutch: Arjan Bosch;
|
|
|
73 |
* Hebrew: [atar4u](http://atar4u.com) - needs update;
|
74 |
* Hungarian: Németh Balázs;
|
75 |
* Persian: Morteza - needs update;
|
76 |
* Russian: [Vladimir Garagulya](https://www.role-editor.com)
|
77 |
* Spanish: [Dario Ferrer](http://darioferrer.com/) - needs update;
|
78 |
-
* Turkish: [
|
79 |
|
80 |
|
81 |
Dear plugin User!
|
@@ -84,6 +85,15 @@ Some translations may be outdated. If you have better translation for some phras
|
|
84 |
|
85 |
|
86 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
= 4.17.1 =
|
88 |
* 01.10.2014
|
89 |
* Bug fix for the PHP Fatal error: Call to undefined function is_plugin_active_for_network(). It may take place under multisite only,
|
25 |
Русская версия этой статьи доступна по адресу [ru.shinephp.com](http://ru.shinephp.com/user-role-editor-wordpress-plugin-rus/)
|
26 |
|
27 |
Do you need more functionality with quality support in real time? Do you wish remove advertisements from User Role Editor pages?
|
28 |
+
Buy [Pro version](https://www.role-editor.com).
|
29 |
Pro version includes extra modules:
|
30 |
<ul>
|
31 |
<li>Block selected admin menu items for role.</li>
|
69 |
|
70 |
= Translations =
|
71 |
* Catalan: [Efraim Bayarri](http://replicantsfactory.com/) - needs update;
|
72 |
+
* Dutch: Arjan Bosch - needs update;
|
73 |
+
* French: [Transifex](https://www.transifex.com);
|
74 |
* Hebrew: [atar4u](http://atar4u.com) - needs update;
|
75 |
* Hungarian: Németh Balázs;
|
76 |
* Persian: Morteza - needs update;
|
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).
|
80 |
|
81 |
|
82 |
Dear plugin User!
|
85 |
|
86 |
|
87 |
== Changelog ==
|
88 |
+
= 4.17.2 =
|
89 |
+
* 21.10.2014
|
90 |
+
* Notice: "Undefined property: Ure_Lib::$pro in .../class-user-role-editor.php on line 550" was fixed.
|
91 |
+
* Settings help screen text was updated.
|
92 |
+
* Russian translation was updated.
|
93 |
+
* Hungarian translation was updated. Thanks to Németh Balázs.
|
94 |
+
* French and Turkish translation are updated. Thanks to [Transifex](https://www.transifex.com) translation team.
|
95 |
+
|
96 |
+
|
97 |
= 4.17.1 =
|
98 |
* 01.10.2014
|
99 |
* Bug fix for the PHP Fatal error: Call to undefined function is_plugin_active_for_network(). It may take place under multisite 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.17.
|
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.17.
|
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.17.2
|
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.17.2');
|
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__));
|