Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- README_OFFICIAL.txt +7 -0
- cimy_uef_admin.php +4 -1
- cimy_uef_functions.php +24 -8
- cimy_uef_init_mce.php +90 -42
- cimy_uef_init_strength_meter.php +7 -7
- cimy_uef_profile.php +3 -5
- cimy_uef_register.php +5 -7
- cimy_user_extra_fields.php +5 -5
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +2 -2
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +234 -282
- readme.txt +1 -1
README_OFFICIAL.txt
CHANGED
@@ -569,6 +569,13 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
569 |
|
570 |
|
571 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
572 |
v2.0.3 - 15/03/2011
|
573 |
- Fixed A&U Extended page permissions to "list_users" instead of "edit_users" (thanks to Matt)
|
574 |
- Fixed pre value for checkbox, radio, dropdown and dropdown-multi fields (thanks to Matt)
|
569 |
|
570 |
|
571 |
CHANGELOG:
|
572 |
+
v2.0.4 - 12/04/2011
|
573 |
+
- Fixed password strength meter was not translated (thanks to Jonas for the patch)
|
574 |
+
- Fixed tinyMCE was not working anymore since WP 3.1 (thanks to Jeremiah Tolbert)
|
575 |
+
- Fixed tinyMCE had huge buttons if a different registration logo was set
|
576 |
+
- Fixed "Can be modified only by admin or if empty" rule regressed in v2.0.3
|
577 |
+
- Updated Brazilian Portuguese translation (Diana)
|
578 |
+
|
579 |
v2.0.3 - 15/03/2011
|
580 |
- Fixed A&U Extended page permissions to "list_users" instead of "edit_users" (thanks to Matt)
|
581 |
- Fixed pre value for checkbox, radio, dropdown and dropdown-multi fields (thanks to Matt)
|
cimy_uef_admin.php
CHANGED
@@ -1683,7 +1683,10 @@ function cimy_admin_users_list_page() {
|
|
1683 |
echo "
|
1684 |
<tr $style>
|
1685 |
|
1686 |
-
<th scope='row' class='check-column'
|
|
|
|
|
|
|
1687 |
|
1688 |
if (!in_array("username", $options['aue_hidden_fields'])) {
|
1689 |
|
1683 |
echo "
|
1684 |
<tr $style>
|
1685 |
|
1686 |
+
<th scope='row' class='check-column'>";
|
1687 |
+
if (current_user_can('edit_user', $user_object->ID))
|
1688 |
+
echo "<input type='checkbox' name='users[]' id='user_{$user_object->ID}' class='$role' value='{$user_object->ID}' />";
|
1689 |
+
echo "</th>";
|
1690 |
|
1691 |
if (!in_array("username", $options['aue_hidden_fields'])) {
|
1692 |
|
cimy_uef_functions.php
CHANGED
@@ -503,14 +503,30 @@ function cimy_get_registration_date($user_id, $value) {
|
|
503 |
function cimy_uef_is_field_disabled($type, $edit_rule, $old_value) {
|
504 |
global $rule_cannot_be_empty;
|
505 |
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
|
|
|
513 |
return false;
|
514 |
}
|
515 |
-
|
516 |
-
?>
|
503 |
function cimy_uef_is_field_disabled($type, $edit_rule, $old_value) {
|
504 |
global $rule_cannot_be_empty;
|
505 |
|
506 |
+
switch($edit_rule)
|
507 |
+
{
|
508 |
+
case 'no_edit':
|
509 |
+
return true;
|
510 |
+
break;
|
511 |
+
|
512 |
+
case 'edit_only_if_empty':
|
513 |
+
if ((in_array($type, $rule_cannot_be_empty)) && (!empty($old_value)))
|
514 |
+
return true;
|
515 |
+
break;
|
516 |
+
|
517 |
+
case 'edit_only_by_admin':
|
518 |
+
if (!current_user_can('edit_users'))
|
519 |
+
return true;
|
520 |
+
break;
|
521 |
+
|
522 |
+
case 'edit_only_by_admin_or_if_empty':
|
523 |
+
if ((!current_user_can('edit_users')) && (!((in_array($type, $rule_cannot_be_empty)) && (empty($old_value)))))
|
524 |
+
return true;
|
525 |
+
break;
|
526 |
+
}
|
527 |
|
528 |
+
// field is enabled
|
529 |
return false;
|
530 |
}
|
531 |
+
|
532 |
+
?>
|
cimy_uef_init_mce.php
CHANGED
@@ -12,14 +12,13 @@ if ($cimy_uef_register_page) {
|
|
12 |
<script type='text/javascript'>
|
13 |
/* <![CDATA[ */
|
14 |
userSettings = {
|
15 |
-
url: "<?php echo SITECOOKIEPATH; ?>",
|
16 |
uid: "<?php echo $userid; ?>",
|
17 |
time: "<?php echo time(); ?>",
|
18 |
}
|
19 |
try{convertEntities(userSettings);}catch(e){};
|
20 |
/* ]]> */
|
21 |
</script>
|
22 |
-
<!-- <script type='text/javascript' src='http://localhost/wordpress27/wp-admin/js/common.js?ver=20081126'></script> -->
|
23 |
<?php
|
24 |
} else
|
25 |
$userid = $get_user_id;
|
@@ -43,16 +42,6 @@ if ($cimy_uef_register_page) {
|
|
43 |
$mce_css = apply_filters('mce_css', $mce_css);
|
44 |
|
45 |
if ( $https ) $mce_css = str_replace('http://', 'https://', $mce_css);
|
46 |
-
|
47 |
-
echo "\n\t<script type='text/javascript' src='".$baseurl."/tiny_mce.js'></script>\n";
|
48 |
-
|
49 |
-
include_once(ABSPATH.'wp-includes/js/tinymce/langs/wp-langs.php' );
|
50 |
-
|
51 |
-
// WordPress 2.7 kindly renamed var from $strings to $lang
|
52 |
-
if (isset($strings))
|
53 |
-
echo '<script type="text/javascript" language="javascript">'.$strings."</script>";
|
54 |
-
else if (isset($lang))
|
55 |
-
echo '<script type="text/javascript" language="javascript">'.$lang."</script>";
|
56 |
|
57 |
$mce_buttons = apply_filters('mce_buttons', array('bold', 'italic', 'strikethrough', '|', 'bullist', 'numlist', 'blockquote', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'link', 'unlink', 'image', 'wp_more', '|', 'spellchecker', 'fullscreen', 'wp_adv' ));
|
58 |
$mce_buttons = implode($mce_buttons, ',');
|
@@ -66,39 +55,98 @@ if ($cimy_uef_register_page) {
|
|
66 |
$mce_buttons_4 = apply_filters('mce_buttons_4', array());
|
67 |
$mce_buttons_4 = implode($mce_buttons_4, ',');
|
68 |
|
69 |
-
|
|
|
70 |
|
71 |
// add 'wordpress' plug-in only if there is an user logged in, otherwise will produce issues on registration page
|
72 |
if ($userid != 0)
|
73 |
$plugins[] = 'wordpress';
|
74 |
|
75 |
-
$plugins = implode($plugins, ',');
|
76 |
-
|
77 |
-
echo "\n\t";
|
78 |
-
echo '<script type="text/javascript" language="javascript">
|
79 |
-
tinyMCE.init({
|
80 |
-
mode : "exact",
|
81 |
-
theme : "'.$theme.'",
|
82 |
-
elements : "'.esc_attr($tiny_mce_objects).'",
|
83 |
-
theme_advanced_toolbar_location : "top",
|
84 |
-
theme_advanced_toolbar_align : "left",
|
85 |
-
theme_advanced_statusbar_location : "bottom",
|
86 |
-
extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
|
87 |
-
theme_advanced_buttons1: "'.$mce_buttons.'",
|
88 |
-
theme_advanced_buttons2: "'.$mce_buttons_2.'",
|
89 |
-
theme_advanced_buttons3: "'.$mce_buttons_3.'",
|
90 |
-
theme_advanced_buttons4: "'.$mce_buttons_4.'",
|
91 |
-
'.$mce_skin.'
|
92 |
-
content_css : "'.$mce_css.'",
|
93 |
-
language: "'.$mce_locale.'",
|
94 |
-
spellchecker_languages : "'.$mce_spellchecker_languages.'",
|
95 |
-
theme_advanced_resizin: "true",
|
96 |
-
theme_advanced_resize_horizontal: "false",
|
97 |
-
dialog_type: "modal",
|
98 |
-
plugins: "'.$plugins.'",
|
99 |
-
})';
|
100 |
-
|
101 |
echo "\n\t";
|
102 |
-
|
103 |
-
|
104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
<script type='text/javascript'>
|
13 |
/* <![CDATA[ */
|
14 |
userSettings = {
|
15 |
+
url: "<?php echo esc_url(SITECOOKIEPATH); ?>",
|
16 |
uid: "<?php echo $userid; ?>",
|
17 |
time: "<?php echo time(); ?>",
|
18 |
}
|
19 |
try{convertEntities(userSettings);}catch(e){};
|
20 |
/* ]]> */
|
21 |
</script>
|
|
|
22 |
<?php
|
23 |
} else
|
24 |
$userid = $get_user_id;
|
42 |
$mce_css = apply_filters('mce_css', $mce_css);
|
43 |
|
44 |
if ( $https ) $mce_css = str_replace('http://', 'https://', $mce_css);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
|
46 |
$mce_buttons = apply_filters('mce_buttons', array('bold', 'italic', 'strikethrough', '|', 'bullist', 'numlist', 'blockquote', '|', 'justifyleft', 'justifycenter', 'justifyright', '|', 'link', 'unlink', 'image', 'wp_more', '|', 'spellchecker', 'fullscreen', 'wp_adv' ));
|
47 |
$mce_buttons = implode($mce_buttons, ',');
|
55 |
$mce_buttons_4 = apply_filters('mce_buttons_4', array());
|
56 |
$mce_buttons_4 = implode($mce_buttons_4, ',');
|
57 |
|
58 |
+
// $plugins = array( 'safari', 'inlinepopups', 'autosave', 'spellchecker', 'paste', 'media', 'fullscreen' );
|
59 |
+
$plugins = array( 'inlinepopups', 'spellchecker', 'paste', 'fullscreen', 'wpeditimage', 'wpgallery', 'tabfocus' );
|
60 |
|
61 |
// add 'wordpress' plug-in only if there is an user logged in, otherwise will produce issues on registration page
|
62 |
if ($userid != 0)
|
63 |
$plugins[] = 'wordpress';
|
64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
echo "\n\t";
|
66 |
+
$initArray = array(
|
67 |
+
'mode' => "exact",
|
68 |
+
'theme' => $theme,
|
69 |
+
'elements' => esc_attr($tiny_mce_objects),
|
70 |
+
'theme_advanced_toolbar_location' => "top",
|
71 |
+
'theme_advanced_toolbar_align' => "left",
|
72 |
+
'theme_advanced_statusbar_location' => "bottom",
|
73 |
+
'extended_valid_elements' => "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
|
74 |
+
'theme_advanced_buttons1' => $mce_buttons,
|
75 |
+
'theme_advanced_buttons2' => $mce_buttons_2,
|
76 |
+
'theme_advanced_buttons3' => $mce_buttons_3,
|
77 |
+
'theme_advanced_buttons4' => $mce_buttons_4,
|
78 |
+
'content_css' => $mce_css,
|
79 |
+
'language' => $mce_locale,
|
80 |
+
'spellchecker_languages' => $mce_spellchecker_languages,
|
81 |
+
'theme_advanced_resizin' => "true",
|
82 |
+
'theme_advanced_resize_horizontal' => "false",
|
83 |
+
'dialog_type' => "modal",
|
84 |
+
'plugins' => implode( ',', $plugins ),
|
85 |
+
);
|
86 |
+
|
87 |
+
if ($userid != 0)
|
88 |
+
$initArray['skin'] = "wp_theme";
|
89 |
+
|
90 |
+
if ( 'en' != $language )
|
91 |
+
include_once(ABSPATH . WPINC . '/js/tinymce/langs/wp-langs.php');
|
92 |
+
|
93 |
+
$mce_options = '';
|
94 |
+
foreach ( $initArray as $k => $v ) {
|
95 |
+
if ( is_bool($v) ) {
|
96 |
+
$val = $v ? 'true' : 'false';
|
97 |
+
$mce_options .= $k . ':' . $val . ', ';
|
98 |
+
continue;
|
99 |
+
} elseif ( !empty($v) && is_string($v) && ( '{' == $v{0} || '[' == $v{0} ) ) {
|
100 |
+
$mce_options .= $k . ':' . $v . ', ';
|
101 |
+
continue;
|
102 |
+
}
|
103 |
+
|
104 |
+
$mce_options .= $k . ':"' . $v . '", ';
|
105 |
+
}
|
106 |
+
|
107 |
+
global $concatenate_scripts, $compress_scripts, $tinymce_version;
|
108 |
+
$mce_options = rtrim( trim($mce_options), '\n\r,' );
|
109 |
+
$ext_plugins = '';
|
110 |
+
$compressed = $compress_scripts && $concatenate_scripts && isset($_SERVER['HTTP_ACCEPT_ENCODING'])
|
111 |
+
&& false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'gzip');
|
112 |
+
|
113 |
+
$version = apply_filters('tiny_mce_version', '');
|
114 |
+
$version = 'ver=' . $tinymce_version . $version;
|
115 |
+
?>
|
116 |
+
<script type="text/javascript">
|
117 |
+
/* <![CDATA[ */
|
118 |
+
tinyMCEPreInit = {
|
119 |
+
base : "<?php echo $baseurl; ?>",
|
120 |
+
suffix : "",
|
121 |
+
query : "<?php echo $version; ?>",
|
122 |
+
mceInit : {<?php echo $mce_options; ?>},
|
123 |
+
load_ext : function(url,lang){var sl=tinymce.ScriptLoader;sl.markDone(url+'/langs/'+lang+'.js');sl.markDone(url+'/langs/'+lang+'_dlg.js');}
|
124 |
+
};
|
125 |
+
/* ]]> */
|
126 |
+
</script>
|
127 |
+
|
128 |
+
<?php
|
129 |
+
if ( $compressed )
|
130 |
+
echo "<script type='text/javascript' src='$baseurl/wp-tinymce.php?c=1&$version'></script>\n";
|
131 |
+
else
|
132 |
+
echo "<script type='text/javascript' src='$baseurl/tiny_mce.js?$version'></script>\n";
|
133 |
+
|
134 |
+
if ( 'en' != $language && isset($lang) )
|
135 |
+
echo "<script type='text/javascript'>\n$lang\n</script>\n";
|
136 |
+
else
|
137 |
+
echo "<script type='text/javascript' src='$baseurl/langs/wp-langs-en.js?$version'></script>\n";
|
138 |
+
?>
|
139 |
+
|
140 |
+
<script type="text/javascript">
|
141 |
+
/* <![CDATA[ */
|
142 |
+
<?php
|
143 |
+
if ( $ext_plugins )
|
144 |
+
echo "$ext_plugins\n";
|
145 |
+
|
146 |
+
if ( ! $compressed ) {
|
147 |
+
?>
|
148 |
+
(function(){var t=tinyMCEPreInit,sl=tinymce.ScriptLoader,ln=t.mceInit.language,th=t.mceInit.theme,pl=t.mceInit.plugins;sl.markDone(t.base+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'.js');sl.markDone(t.base+'/themes/'+th+'/langs/'+ln+'_dlg.js');tinymce.each(pl.split(','),function(n){if(n&&n.charAt(0)!='-'){sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'.js');sl.markDone(t.base+'/plugins/'+n+'/langs/'+ln+'_dlg.js');}});})();
|
149 |
+
<?php } ?>
|
150 |
+
tinyMCE.init(tinyMCEPreInit.mceInit);
|
151 |
+
/* ]]> */
|
152 |
+
</script>
|
cimy_uef_init_strength_meter.php
CHANGED
@@ -40,16 +40,16 @@
|
|
40 |
<script type='text/javascript'>
|
41 |
/* <![CDATA[ */
|
42 |
var commonL10n = {
|
43 |
-
warnDelete: "You are about to permanently delete the selected items.\n
|
44 |
};
|
45 |
try{convertEntities(commonL10n);}catch(e){};
|
46 |
var pwsL10n = {
|
47 |
-
empty: "Strength indicator",
|
48 |
-
short: "Very weak",
|
49 |
-
bad: "Weak",
|
50 |
-
good: "Medium",
|
51 |
-
strong: "Strong",
|
52 |
-
mismatch: "Mismatch"
|
53 |
};
|
54 |
try{convertEntities(pwsL10n);}catch(e){};
|
55 |
/* ]]> */
|
40 |
<script type='text/javascript'>
|
41 |
/* <![CDATA[ */
|
42 |
var commonL10n = {
|
43 |
+
warnDelete: "<?php echo esc_js(__("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete.")); ?>"
|
44 |
};
|
45 |
try{convertEntities(commonL10n);}catch(e){};
|
46 |
var pwsL10n = {
|
47 |
+
empty: "<?php echo esc_js( __( 'Strength indicator' ) ); ?>",
|
48 |
+
short: "<?php echo esc_js( __( 'Very weak' ) ); ?>",
|
49 |
+
bad: "<?php echo esc_js( __( 'Weak' ) ); ?>",
|
50 |
+
good: "<?php echo esc_js( _x( 'Medium', 'password strength' ) ); ?>",
|
51 |
+
strong: "<?php echo esc_js( __( 'Strong' ) ); ?>",
|
52 |
+
mismatch: "<?php echo esc_js( __( 'Mismatch' ) ); ?>"
|
53 |
};
|
54 |
try{convertEntities(pwsL10n);}catch(e){};
|
55 |
/* ]]> */
|
cimy_uef_profile.php
CHANGED
@@ -53,7 +53,7 @@ function cimy_extract_ExtraFields() {
|
|
53 |
$current_fieldset = -1;
|
54 |
$tiny_mce_objects = "";
|
55 |
|
56 |
-
if ($options['fieldset_title']
|
57 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
58 |
else
|
59 |
$fieldset_titles = array();
|
@@ -125,6 +125,7 @@ function cimy_extract_ExtraFields() {
|
|
125 |
|
126 |
$value = esc_attr($value);
|
127 |
$old_value = esc_attr($old_value);
|
|
|
128 |
|
129 |
switch($type) {
|
130 |
case "picture-url":
|
@@ -185,6 +186,7 @@ function cimy_extract_ExtraFields() {
|
|
185 |
$obj_tag = "textarea";
|
186 |
$obj_closing_tag = true;
|
187 |
$obj_style = "";
|
|
|
188 |
|
189 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
190 |
$obj_disabled = ' disabled="disabled"';
|
@@ -320,8 +322,6 @@ function cimy_extract_ExtraFields() {
|
|
320 |
|
321 |
|
322 |
$obj_id = ' id="'.$fields_name_prefix.$field_id.'"';
|
323 |
-
$obj_class = '';
|
324 |
-
|
325 |
$obj_maxlen = "";
|
326 |
|
327 |
if ((in_array($type, $rule_maxlen_needed)) && (!in_array($type, $cimy_uef_file_types))) {
|
@@ -469,8 +469,6 @@ function cimy_extract_ExtraFields() {
|
|
469 |
echo "</table>";
|
470 |
|
471 |
if ($tiny_mce_objects != "") {
|
472 |
-
$mce_skin = 'skin : "wp_theme",';
|
473 |
-
|
474 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
475 |
}
|
476 |
|
53 |
$current_fieldset = -1;
|
54 |
$tiny_mce_objects = "";
|
55 |
|
56 |
+
if (!empty($options['fieldset_title']))
|
57 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
58 |
else
|
59 |
$fieldset_titles = array();
|
125 |
|
126 |
$value = esc_attr($value);
|
127 |
$old_value = esc_attr($old_value);
|
128 |
+
$obj_class = '';
|
129 |
|
130 |
switch($type) {
|
131 |
case "picture-url":
|
186 |
$obj_tag = "textarea";
|
187 |
$obj_closing_tag = true;
|
188 |
$obj_style = "";
|
189 |
+
$obj_class = '';
|
190 |
|
191 |
if (cimy_uef_is_field_disabled($type, $rules['edit'], $old_value))
|
192 |
$obj_disabled = ' disabled="disabled"';
|
322 |
|
323 |
|
324 |
$obj_id = ' id="'.$fields_name_prefix.$field_id.'"';
|
|
|
|
|
325 |
$obj_maxlen = "";
|
326 |
|
327 |
if ((in_array($type, $rule_maxlen_needed)) && (!in_array($type, $cimy_uef_file_types))) {
|
469 |
echo "</table>";
|
470 |
|
471 |
if ($tiny_mce_objects != "") {
|
|
|
|
|
472 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
473 |
}
|
474 |
|
cimy_uef_register.php
CHANGED
@@ -589,7 +589,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
589 |
$radio_checked = array();
|
590 |
|
591 |
$i = 1;
|
592 |
-
$
|
593 |
|
594 |
// do first the WP fields then the EXTRA fields
|
595 |
while ($i <= 2) {
|
@@ -602,7 +602,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
602 |
$prefix = $fields_name_prefix;
|
603 |
$current_fieldset = -1;
|
604 |
|
605 |
-
if ($options['fieldset_title']
|
606 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
607 |
else
|
608 |
$fieldset_titles = array();
|
@@ -618,7 +618,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
618 |
$type = $thisField['TYPE'];
|
619 |
$label = $thisField['LABEL'];
|
620 |
$description = $thisField['DESCRIPTION'];
|
621 |
-
$fieldset = $thisField['FIELDSET'];
|
622 |
$input_name = $prefix.esc_attr($name);
|
623 |
$post_input_name = $prefix.$wpdb->escape($name);
|
624 |
$maxlen = 0;
|
@@ -695,7 +695,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
695 |
|
696 |
$value = esc_attr($value);
|
697 |
|
698 |
-
if (($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset]))
|
699 |
$current_fieldset = $fieldset;
|
700 |
|
701 |
if (isset($fieldset_titles[$current_fieldset]))
|
@@ -914,7 +914,7 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
914 |
|
915 |
if ($input_name == ($prefix."PASSWORD2")) {
|
916 |
echo "\n\t\t<div id=\"pass-strength-result\">".__('Strength indicator')."</div>";
|
917 |
-
echo "\n\t\t<p class=\"description indicator-hint\">".__('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like !
|
918 |
$pass2_id = $unique_id;
|
919 |
}
|
920 |
}
|
@@ -932,8 +932,6 @@ function cimy_registration_form($errors=null, $show_type=0) {
|
|
932 |
}
|
933 |
|
934 |
if ($tiny_mce_objects != "") {
|
935 |
-
$mce_skin = "";
|
936 |
-
|
937 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
938 |
}
|
939 |
|
589 |
$radio_checked = array();
|
590 |
|
591 |
$i = 1;
|
592 |
+
$upload_file_function = false;
|
593 |
|
594 |
// do first the WP fields then the EXTRA fields
|
595 |
while ($i <= 2) {
|
602 |
$prefix = $fields_name_prefix;
|
603 |
$current_fieldset = -1;
|
604 |
|
605 |
+
if (!empty($options['fieldset_title']))
|
606 |
$fieldset_titles = explode(',', $options['fieldset_title']);
|
607 |
else
|
608 |
$fieldset_titles = array();
|
618 |
$type = $thisField['TYPE'];
|
619 |
$label = $thisField['LABEL'];
|
620 |
$description = $thisField['DESCRIPTION'];
|
621 |
+
$fieldset = empty($thisField['FIELDSET']) ? 0 : $thisField['FIELDSET'];
|
622 |
$input_name = $prefix.esc_attr($name);
|
623 |
$post_input_name = $prefix.$wpdb->escape($name);
|
624 |
$maxlen = 0;
|
695 |
|
696 |
$value = esc_attr($value);
|
697 |
|
698 |
+
if (($i != 1) && ($fieldset > $current_fieldset) && (isset($fieldset_titles[$fieldset]))) {
|
699 |
$current_fieldset = $fieldset;
|
700 |
|
701 |
if (isset($fieldset_titles[$current_fieldset]))
|
914 |
|
915 |
if ($input_name == ($prefix."PASSWORD2")) {
|
916 |
echo "\n\t\t<div id=\"pass-strength-result\">".__('Strength indicator')."</div>";
|
917 |
+
echo "\n\t\t<p class=\"description indicator-hint\">".__('Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! " ? $ % ^ & ).')."</p><br />";
|
918 |
$pass2_id = $unique_id;
|
919 |
}
|
920 |
}
|
932 |
}
|
933 |
|
934 |
if ($tiny_mce_objects != "") {
|
|
|
|
|
935 |
require_once($cuef_plugin_dir.'/cimy_uef_init_mce.php');
|
936 |
}
|
937 |
|
cimy_user_extra_fields.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
-
Version: 2.0.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
@@ -189,7 +189,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
189 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
190 |
|
191 |
$cimy_uef_name = "Cimy User Extra Fields";
|
192 |
-
$cimy_uef_version = "2.0.
|
193 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
194 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
195 |
|
@@ -237,7 +237,7 @@ $wp_hidden_fields = array(
|
|
237 |
'name' => "PASSWORD2",
|
238 |
'post_name' => "user_pass2",
|
239 |
'type' => "password",
|
240 |
-
'label' => __("Password confirmation"),
|
241 |
'desc' => '',
|
242 |
'value' => '',
|
243 |
'store_rule' => array(
|
@@ -714,8 +714,8 @@ function cimy_change_login_registration_logo() {
|
|
714 |
list($logo_width, $logo_height, $logo_type, $logo_attr) = getimagesize($options["registration-logo"]);
|
715 |
?>
|
716 |
<style type="text/css">
|
717 |
-
#login h1 a {
|
718 |
-
background: url(<?php echo $cuef_upload_webpath.basename($options["registration-logo"]); ?>) no-repeat top center;
|
719 |
background-position: center top;
|
720 |
width: <?php echo max(328, $logo_width); ?>px;
|
721 |
height: <?php echo $logo_height; ?>px;
|
3 |
Plugin Name: Cimy User Extra Fields
|
4 |
Plugin URI: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
Plugin Description: Add some useful fields to registration and user's info
|
6 |
+
Version: 2.0.4
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
189 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
190 |
|
191 |
$cimy_uef_name = "Cimy User Extra Fields";
|
192 |
+
$cimy_uef_version = "2.0.4";
|
193 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
194 |
$cimy_project_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/";
|
195 |
|
237 |
'name' => "PASSWORD2",
|
238 |
'post_name' => "user_pass2",
|
239 |
'type' => "password",
|
240 |
+
'label' => __("Password confirmation", $cimy_uef_domain),
|
241 |
'desc' => '',
|
242 |
'value' => '',
|
243 |
'store_rule' => array(
|
714 |
list($logo_width, $logo_height, $logo_type, $logo_attr) = getimagesize($options["registration-logo"]);
|
715 |
?>
|
716 |
<style type="text/css">
|
717 |
+
#login h1:first-child a:first-child {
|
718 |
+
background: url(<?php echo esc_url($cuef_upload_webpath.basename($options["registration-logo"])); ?>) no-repeat top center;
|
719 |
background-position: center top;
|
720 |
width: <?php echo max(328, $logo_width); ?>px;
|
721 |
height: <?php echo $logo_height; ?>px;
|
langs/cimy_uef-it_IT.mo
CHANGED
Binary file
|
langs/cimy_uef-it_IT.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-01-30 14:00+0300\n"
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -477,7 +477,7 @@ msgstr "Mostra password"
|
|
477 |
|
478 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
479 |
msgid "Password confirmation"
|
480 |
-
msgstr ""
|
481 |
|
482 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
483 |
#, fuzzy
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-01-30 14:00+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-03-26 18:09+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
477 |
|
478 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
479 |
msgid "Password confirmation"
|
480 |
+
msgstr "Conferma password"
|
481 |
|
482 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
483 |
#, fuzzy
|
langs/cimy_uef-pt_BR.mo
CHANGED
Binary file
|
langs/cimy_uef-pt_BR.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2011-
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -36,20 +36,20 @@ msgstr "ERRO"
|
|
36 |
|
37 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
-
msgstr ""
|
40 |
|
41 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
-
msgstr "
|
44 |
|
45 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
46 |
msgid "couldn’t be empty."
|
47 |
-
msgstr "
|
48 |
|
49 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:445
|
50 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
51 |
msgid "isn’t correct"
|
52 |
-
msgstr "
|
53 |
|
54 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
55 |
msgid "YES"
|
@@ -57,7 +57,7 @@ msgstr "SIM"
|
|
57 |
|
58 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
-
msgstr "
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
@@ -69,123 +69,118 @@ msgstr "deve ser uma imagem"
|
|
69 |
|
70 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
|
71 |
msgid "couldn’t have size less than"
|
72 |
-
msgstr "
|
73 |
|
74 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
75 |
msgid "couldn’t have length less than"
|
76 |
-
msgstr "
|
77 |
|
78 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
79 |
msgid "couldn’t have size different than"
|
80 |
-
msgstr "
|
81 |
|
82 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
83 |
msgid "couldn’t have length different than"
|
84 |
-
msgstr "
|
85 |
|
86 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
87 |
msgid "couldn’t have size more than"
|
88 |
-
msgstr "
|
89 |
|
90 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
91 |
msgid "couldn’t have length more than"
|
92 |
-
msgstr "
|
93 |
|
94 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
95 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
-
msgstr ""
|
98 |
|
99 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
101 |
-
#, fuzzy
|
102 |
msgid "Please upload a file with one of the following extensions"
|
103 |
-
msgstr "Por favor
|
104 |
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:836
|
106 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
107 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
108 |
msgid "Please upload an image with one of the following extensions"
|
109 |
-
msgstr "Por favor
|
110 |
|
111 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:916
|
112 |
msgid "Strength indicator"
|
113 |
-
msgstr ""
|
114 |
|
115 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
116 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
117 |
-
msgstr ""
|
118 |
|
119 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:954
|
120 |
-
#, fuzzy
|
121 |
msgid "Change image"
|
122 |
-
msgstr "Mudar
|
123 |
|
124 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
125 |
msgid "Insert the code:"
|
126 |
-
msgstr ""
|
127 |
|
128 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
129 |
-
#, fuzzy
|
130 |
msgid "no fieldset"
|
131 |
-
msgstr "
|
132 |
|
133 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
134 |
msgid "All"
|
135 |
msgstr ""
|
136 |
|
137 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
138 |
-
#, fuzzy
|
139 |
msgid "WordPress Fields table emptied"
|
140 |
-
msgstr "Tabela de
|
141 |
|
142 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
143 |
-
#, fuzzy
|
144 |
msgid "WordPress Fields table deleted"
|
145 |
-
msgstr "Tabela de
|
146 |
|
147 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
148 |
msgid "Extra Fields table emptied"
|
149 |
-
msgstr "Tabela de
|
150 |
|
151 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
152 |
msgid "Extra Fields table deleted"
|
153 |
-
msgstr "Tabela de
|
154 |
|
155 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
156 |
msgid "Users Data table emptied"
|
157 |
-
msgstr "Tabela
|
158 |
|
159 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
160 |
msgid "Users Data table deleted"
|
161 |
-
msgstr "Tabela
|
162 |
|
163 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
164 |
msgid "Options set to default values"
|
165 |
-
msgstr "
|
166 |
|
167 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
168 |
msgid "Options deleted"
|
169 |
-
msgstr "
|
170 |
|
171 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
172 |
msgid "Options changed"
|
173 |
-
msgstr "
|
174 |
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
176 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
177 |
-
msgstr ""
|
178 |
|
179 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
181 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
182 |
msgid "Options"
|
183 |
-
msgstr "
|
184 |
|
185 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
187 |
msgid "Add a new Field"
|
188 |
-
msgstr "Adicionar
|
189 |
|
190 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
191 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
@@ -198,21 +193,21 @@ msgstr "Campos Adicionais"
|
|
198 |
|
199 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
200 |
msgid "Support the Cimy Project"
|
201 |
-
msgstr ""
|
202 |
|
203 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
204 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
205 |
-
msgstr ""
|
206 |
|
207 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
208 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
209 |
msgid "SUCCESSFUL"
|
210 |
-
msgstr "
|
211 |
|
212 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
213 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
214 |
msgid "Save Changes"
|
215 |
-
msgstr ""
|
216 |
|
217 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
218 |
msgid "General"
|
@@ -220,119 +215,117 @@ msgstr "Geral"
|
|
220 |
|
221 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
222 |
msgid "installed is"
|
223 |
-
msgstr "instalado"
|
224 |
|
225 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
226 |
msgid "OPTIONS DELETED!"
|
227 |
-
msgstr "
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
230 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
231 |
msgid "Fix the problem"
|
232 |
-
msgstr ""
|
233 |
|
234 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
235 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
236 |
-
msgstr "
|
237 |
|
238 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
239 |
msgid "Picture/Avatar upload"
|
240 |
-
msgstr ""
|
241 |
|
242 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
243 |
msgid "is created and writable"
|
244 |
-
msgstr ""
|
245 |
|
246 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
247 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
248 |
-
msgstr ""
|
249 |
|
250 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
251 |
-
#, fuzzy
|
252 |
msgid "Show all fields in the welcome email"
|
253 |
-
msgstr "Mostrar
|
254 |
|
255 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
256 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
257 |
-
msgstr ""
|
258 |
|
259 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
|
260 |
msgid "Enable email confirmation"
|
261 |
-
msgstr ""
|
262 |
|
263 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
264 |
msgid "user that registers should confirm its email address via a link click"
|
265 |
-
msgstr ""
|
266 |
|
267 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
268 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
269 |
-
msgstr ""
|
270 |
|
271 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
272 |
msgid "Redirect to the source"
|
273 |
-
msgstr ""
|
274 |
|
275 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
276 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
277 |
-
msgstr ""
|
278 |
|
279 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
|
280 |
msgid "No captcha"
|
281 |
-
msgstr ""
|
282 |
|
283 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
284 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
285 |
-
msgstr ""
|
286 |
|
287 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
288 |
msgid "Public KEY"
|
289 |
-
msgstr ""
|
290 |
|
291 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
292 |
msgid "Private KEY"
|
293 |
-
msgstr ""
|
294 |
|
295 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
296 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
297 |
-
msgstr ""
|
298 |
|
299 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
|
300 |
msgid "This captcha is probably weaker, but is easier for users"
|
301 |
-
msgstr ""
|
302 |
|
303 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
|
304 |
#, php-format
|
305 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
306 |
-
msgstr ""
|
307 |
|
308 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
309 |
msgid "Change login/registration page logo"
|
310 |
-
msgstr ""
|
311 |
|
312 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
313 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
314 |
-
#, fuzzy
|
315 |
msgid "Delete the picture"
|
316 |
-
msgstr "Excluir
|
317 |
|
318 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
319 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
320 |
-
msgstr ""
|
321 |
|
322 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
323 |
msgid "Database"
|
324 |
-
msgstr "Banco de
|
325 |
|
326 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
327 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
328 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
329 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
330 |
msgid "select action"
|
331 |
-
msgstr "
|
332 |
|
333 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
334 |
msgid "Default values"
|
335 |
-
msgstr "Valores
|
336 |
|
337 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
338 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
@@ -346,123 +339,119 @@ msgstr "Excluir"
|
|
346 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
347 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
348 |
msgid "NOT PRESENT"
|
349 |
-
msgstr "
|
350 |
|
351 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
352 |
-
#, fuzzy
|
353 |
msgid "WordPress Fields table"
|
354 |
-
msgstr "Tabela de Campos
|
355 |
|
356 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
357 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
358 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
359 |
msgid "Empty"
|
360 |
-
msgstr "
|
361 |
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
363 |
msgid "Extra Fields table"
|
364 |
-
msgstr "Tabela de Campos
|
365 |
|
366 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
367 |
msgid "Users Data table"
|
368 |
-
msgstr "Tabela de Dados
|
369 |
|
370 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
371 |
msgid "all data inserted by users in all and only extra fields"
|
372 |
-
msgstr "
|
373 |
|
374 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
375 |
msgid "Force tables creation"
|
376 |
-
msgstr "
|
377 |
|
378 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
379 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
380 |
-
msgstr ""
|
381 |
|
382 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
383 |
msgid "User Profile"
|
384 |
-
msgstr "Perfil do
|
385 |
|
386 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
387 |
-
#, fuzzy
|
388 |
msgid "Extra Fields section title"
|
389 |
-
msgstr "
|
390 |
|
391 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
392 |
msgid "Fieldset's titles, separates with comma"
|
393 |
-
msgstr "
|
394 |
|
395 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
396 |
msgid "example: title1,title2,title3"
|
397 |
-
msgstr "
|
398 |
|
399 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
400 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
401 |
-
msgstr ""
|
402 |
|
403 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
404 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
405 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
406 |
msgid "Authors & Users Extended"
|
407 |
-
msgstr "Autores &
|
408 |
|
409 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
410 |
msgid "Hide username field"
|
411 |
-
msgstr "
|
412 |
|
413 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
414 |
msgid "Hide name field"
|
415 |
-
msgstr "
|
416 |
|
417 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
418 |
msgid "Hide email field"
|
419 |
-
msgstr "
|
420 |
|
421 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
422 |
-
#, fuzzy
|
423 |
msgid "Hide role field"
|
424 |
-
msgstr "
|
425 |
|
426 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
427 |
msgid "Hide website field"
|
428 |
-
msgstr "
|
429 |
|
430 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
431 |
msgid "Hide n. posts field"
|
432 |
-
msgstr "
|
433 |
|
434 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
435 |
msgid "WordPress hidden fields"
|
436 |
-
msgstr "Campos
|
437 |
|
438 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
439 |
msgid "Show password"
|
440 |
-
msgstr ""
|
441 |
|
442 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
443 |
msgid "Show confirmation password"
|
444 |
-
msgstr ""
|
445 |
|
446 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
447 |
msgid "Show password strength meter"
|
448 |
-
msgstr ""
|
449 |
|
450 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
451 |
msgid "Show first name"
|
452 |
-
msgstr "Mostrar
|
453 |
|
454 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
455 |
msgid "Show last name"
|
456 |
-
msgstr "Mostrar
|
457 |
|
458 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
459 |
msgid "Show nickname"
|
460 |
-
msgstr "Mostrar
|
461 |
|
462 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
463 |
-
#, fuzzy
|
464 |
msgid "Show website"
|
465 |
-
msgstr "Website"
|
466 |
|
467 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
468 |
msgid "Show AIM"
|
@@ -474,34 +463,31 @@ msgstr "Mostrar Yahoo IM"
|
|
474 |
|
475 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
476 |
msgid "Show Jabber / Google Talk"
|
477 |
-
msgstr "Mostrar Jabber
|
478 |
|
479 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
480 |
msgid "Show Biographical Info"
|
481 |
-
msgstr ""
|
482 |
|
483 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
484 |
msgid "Password"
|
485 |
-
msgstr ""
|
486 |
|
487 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
488 |
msgid "Password confirmation"
|
489 |
-
msgstr ""
|
490 |
|
491 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
492 |
-
#, fuzzy
|
493 |
msgid "First name"
|
494 |
-
msgstr "
|
495 |
|
496 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
497 |
-
#, fuzzy
|
498 |
msgid "Last name"
|
499 |
-
msgstr "
|
500 |
|
501 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
502 |
-
#, fuzzy
|
503 |
msgid "Nickname"
|
504 |
-
msgstr "
|
505 |
|
506 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
507 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
@@ -511,76 +497,70 @@ msgstr "Website"
|
|
511 |
|
512 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
513 |
msgid "AIM"
|
514 |
-
msgstr ""
|
515 |
|
516 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
517 |
-
#, fuzzy
|
518 |
msgid "Yahoo IM"
|
519 |
-
msgstr "
|
520 |
|
521 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
522 |
-
#, fuzzy
|
523 |
msgid "Jabber / Google Talk"
|
524 |
-
msgstr "
|
525 |
|
526 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
527 |
msgid "Biographical Info"
|
528 |
-
msgstr ""
|
529 |
|
530 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
531 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
532 |
msgid "Fields"
|
533 |
msgstr "Campos"
|
534 |
|
535 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
536 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
537 |
msgid "A&U Extended"
|
538 |
-
msgstr "
|
539 |
|
540 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:
|
541 |
-
#, fuzzy
|
542 |
msgid "Users Extended"
|
543 |
-
msgstr "
|
544 |
|
545 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
546 |
#, php-format
|
547 |
msgid "File '%s' doesn't exist?"
|
548 |
-
msgstr ""
|
549 |
|
550 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
551 |
msgid "The GD image library is not installed."
|
552 |
-
msgstr ""
|
553 |
|
554 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
555 |
#, php-format
|
556 |
msgid "File '%s' is not an image."
|
557 |
-
msgstr ""
|
558 |
|
559 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
560 |
-
#, fuzzy
|
561 |
msgid "Delete the file"
|
562 |
-
msgstr "Excluir
|
563 |
|
564 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
565 |
-
#, fuzzy
|
566 |
msgid "Update the file"
|
567 |
-
msgstr "Atualizar
|
568 |
|
569 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
570 |
-
#, fuzzy
|
571 |
msgid "Update the picture"
|
572 |
-
msgstr "Atualizar
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
575 |
msgid "Picture URL:"
|
576 |
-
msgstr ""
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
579 |
#, php-format
|
580 |
msgid "%s previous value: %s new value: %s"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:
|
584 |
#, php-format
|
585 |
msgid "%s (%s) has changed one or more fields"
|
586 |
msgstr ""
|
@@ -588,35 +568,35 @@ msgstr ""
|
|
588 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
589 |
#, php-format
|
590 |
msgid "New user registration on your site %s:"
|
591 |
-
msgstr ""
|
592 |
|
593 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
594 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
595 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
596 |
-
#,
|
597 |
msgid "Username: %s"
|
598 |
-
msgstr "Nome de
|
599 |
|
600 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
601 |
-
#,
|
602 |
msgid "E-mail: %s"
|
603 |
-
msgstr "
|
604 |
|
605 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
606 |
#, php-format
|
607 |
msgid "[%s] New User Registration"
|
608 |
-
msgstr ""
|
609 |
|
610 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
611 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
612 |
#, php-format
|
613 |
msgid "Password: %s"
|
614 |
-
msgstr ""
|
615 |
|
616 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
617 |
#, php-format
|
618 |
msgid "[%s] Your username and password"
|
619 |
-
msgstr ""
|
620 |
|
621 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
622 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
@@ -624,7 +604,7 @@ msgstr ""
|
|
624 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
625 |
#, php-format
|
626 |
msgid "%s: %s"
|
627 |
-
msgstr ""
|
628 |
|
629 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
630 |
#, php-format
|
@@ -636,60 +616,66 @@ msgid ""
|
|
636 |
"After you activate, you will receive *another email* with your login.\n"
|
637 |
"\n"
|
638 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
641 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
642 |
msgid "Your account is now active!"
|
643 |
-
msgstr ""
|
644 |
|
645 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
646 |
#, php-format
|
647 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
648 |
-
msgstr ""
|
649 |
|
650 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
651 |
msgid "An error occurred during the activation"
|
652 |
-
msgstr ""
|
653 |
|
654 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
655 |
msgid "Invalid activation key."
|
656 |
-
msgstr ""
|
657 |
|
658 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
659 |
msgid "The site is already active."
|
660 |
-
msgstr ""
|
661 |
|
662 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
663 |
msgid "Could not create user"
|
664 |
-
msgstr ""
|
665 |
|
666 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
667 |
msgid "That username is already activated."
|
668 |
-
msgstr ""
|
669 |
|
670 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
671 |
msgid "That username is currently reserved but may be available in a couple of days."
|
672 |
-
msgstr ""
|
673 |
|
674 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
675 |
msgid "username and email used"
|
676 |
-
msgstr ""
|
677 |
|
678 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
679 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
680 |
-
msgstr ""
|
681 |
|
682 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
683 |
msgid "Add field"
|
684 |
-
msgstr "Adicionar
|
685 |
|
686 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:15
|
687 |
msgid "Update field"
|
688 |
-
msgstr "Atualizar
|
689 |
|
690 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:16
|
691 |
msgid "Delete field"
|
692 |
-
msgstr "Excluir
|
693 |
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
695 |
msgid "Delete selected fields"
|
@@ -702,29 +688,29 @@ msgstr "Mudar ordem"
|
|
702 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
703 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
704 |
msgid "Min length"
|
705 |
-
msgstr "
|
706 |
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
708 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
709 |
msgid "Exact length"
|
710 |
-
msgstr "
|
711 |
|
712 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
713 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
714 |
msgid "Max length"
|
715 |
-
msgstr "
|
716 |
|
717 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
718 |
msgid "Exact or Max length"
|
719 |
-
msgstr "
|
720 |
|
721 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
722 |
msgid "changed to"
|
723 |
-
msgstr "
|
724 |
|
725 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
726 |
msgid "You cannot give an order that misses some numbers"
|
727 |
-
msgstr "Você
|
728 |
|
729 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
730 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
@@ -737,81 +723,81 @@ msgstr "Campo(s)"
|
|
737 |
|
738 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
739 |
msgid "deleted correctly"
|
740 |
-
msgstr "
|
741 |
|
742 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
743 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
744 |
msgid "Min size"
|
745 |
-
msgstr "Tamanho
|
746 |
|
747 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
748 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
749 |
msgid "Exact size"
|
750 |
-
msgstr "Tamanho
|
751 |
|
752 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
753 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
754 |
msgid "Max size"
|
755 |
-
msgstr "Tamanho
|
756 |
|
757 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
758 |
msgid "Exact or Max size"
|
759 |
-
msgstr "Tamanho
|
760 |
|
761 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
762 |
msgid "Name not specified"
|
763 |
-
msgstr "Nome
|
764 |
|
765 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
766 |
msgid "Name cannot contains spaces"
|
767 |
-
msgstr "Nome
|
768 |
|
769 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
770 |
msgid "Label not specified"
|
771 |
-
msgstr "
|
772 |
|
773 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
774 |
msgid "not selected (with this type is necessary)"
|
775 |
-
msgstr "
|
776 |
|
777 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
778 |
msgid "If you select"
|
779 |
-
msgstr "Se selecionar"
|
780 |
|
781 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
782 |
msgid "you cannot select Min or Max"
|
783 |
-
msgstr "
|
784 |
|
785 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
786 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
787 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
788 |
msgid "should be in the range of"
|
789 |
-
msgstr "deve
|
790 |
|
791 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
792 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
793 |
msgid "Equal TO not specified"
|
794 |
-
msgstr "Igual
|
795 |
|
796 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
797 |
msgid "With checkbox type Equal TO can only be"
|
798 |
-
msgstr "Com
|
799 |
|
800 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
801 |
msgid "With radio type Equal TO can only be"
|
802 |
-
msgstr "Com
|
803 |
|
804 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
805 |
msgid "With checkbox type Value can only be"
|
806 |
-
msgstr "Com
|
807 |
|
808 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
809 |
msgid "With radio type Value can only be"
|
810 |
-
msgstr "Com
|
811 |
|
812 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
813 |
msgid "Field inserted correctly"
|
814 |
-
msgstr "Campo inserido
|
815 |
|
816 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
817 |
msgid "Field #"
|
@@ -819,45 +805,43 @@ msgstr "Campo #"
|
|
819 |
|
820 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
821 |
msgid "updated correctly"
|
822 |
-
msgstr "atualizado
|
823 |
|
824 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
825 |
msgid "Name inserted is just in the database, change to another one"
|
826 |
-
msgstr "Nome inserido
|
827 |
|
828 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
829 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
830 |
-
msgstr "Para adicionar um novo campo
|
831 |
|
832 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
833 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
834 |
-
msgstr "
|
835 |
|
836 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
837 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
838 |
-
msgstr "
|
839 |
|
840 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
841 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
842 |
-
msgstr "
|
843 |
|
844 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
845 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
846 |
-
msgstr "
|
847 |
|
848 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
849 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
850 |
-
msgstr "
|
851 |
|
852 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
853 |
-
#, fuzzy
|
854 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
855 |
-
msgstr "
|
856 |
|
857 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
858 |
-
#, fuzzy
|
859 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
860 |
-
msgstr "
|
861 |
|
862 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
863 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
@@ -889,14 +873,14 @@ msgstr "Tipo"
|
|
889 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
890 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
891 |
msgid "Label"
|
892 |
-
msgstr "
|
893 |
|
894 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
895 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
896 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
897 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
898 |
msgid "Description"
|
899 |
-
msgstr "
|
900 |
|
901 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
902 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
@@ -906,24 +890,23 @@ msgstr "Regras"
|
|
906 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
907 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
908 |
msgid "Actions"
|
909 |
-
msgstr "
|
910 |
|
911 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
912 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
913 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
914 |
-
#, fuzzy
|
915 |
msgid "Fieldset"
|
916 |
-
msgstr "
|
917 |
|
918 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
919 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
920 |
msgid "Can be empty"
|
921 |
-
msgstr "Pode
|
922 |
|
923 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
924 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
925 |
msgid "Check for E-mail syntax"
|
926 |
-
msgstr "
|
927 |
|
928 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
929 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
@@ -933,76 +916,72 @@ msgstr "Pode ser modificado"
|
|
933 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
934 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
935 |
msgid "Can be modified only if empty"
|
936 |
-
msgstr "Pode ser modificado
|
937 |
|
938 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
939 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
940 |
msgid "Can be modified only by admin"
|
941 |
-
msgstr "Pode ser modificado
|
942 |
|
943 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
944 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
945 |
-
#, fuzzy
|
946 |
msgid "Can be modified only by admin or if empty"
|
947 |
-
msgstr "Pode ser modificado
|
948 |
|
949 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
950 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
951 |
msgid "Cannot be modified"
|
952 |
-
msgstr "
|
953 |
|
954 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
955 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
956 |
msgid "Should be equal TO"
|
957 |
-
msgstr "
|
958 |
|
959 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
960 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
961 |
msgid "Case sensitive"
|
962 |
-
msgstr "
|
963 |
|
964 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
965 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
966 |
msgid "Regular Expression"
|
967 |
-
msgstr ""
|
968 |
|
969 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
970 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
971 |
msgid "Show the field in the registration"
|
972 |
-
msgstr "Mostrar
|
973 |
|
974 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
975 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
976 |
msgid "Show the field in User's profile"
|
977 |
-
msgstr "Mostrar
|
978 |
|
979 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
980 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
981 |
msgid "Show the field in A&U Extended menu"
|
982 |
-
msgstr "
|
983 |
|
984 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
985 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
986 |
-
#, fuzzy
|
987 |
msgid "Show the field in the search engine"
|
988 |
-
msgstr "Mostrar
|
989 |
|
990 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
991 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
992 |
-
#, fuzzy
|
993 |
msgid "Show the field in the blog"
|
994 |
-
msgstr "Mostrar
|
995 |
|
996 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
997 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
998 |
-
#, fuzzy
|
999 |
msgid "Show the field if the role is at least:"
|
1000 |
-
msgstr "Mostrar
|
1001 |
|
1002 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
1003 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
1004 |
msgid "Anonymous"
|
1005 |
-
msgstr ""
|
1006 |
|
1007 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
1008 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
@@ -1014,17 +993,16 @@ msgid "Clear"
|
|
1014 |
msgstr "Limpar"
|
1015 |
|
1016 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
1017 |
-
#, fuzzy
|
1018 |
msgid "Invert selection"
|
1019 |
-
msgstr "
|
1020 |
|
1021 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1022 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1023 |
-
msgstr "Tem certeza que quer excluir
|
1024 |
|
1025 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1026 |
msgid "WordPress Fields"
|
1027 |
-
msgstr "Campos
|
1028 |
|
1029 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1030 |
msgid "None!"
|
@@ -1033,58 +1011,55 @@ msgstr "Nenhum!"
|
|
1033 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1034 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1035 |
msgid "Order"
|
1036 |
-
msgstr "
|
1037 |
|
1038 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1039 |
msgid "Reset"
|
1040 |
-
msgstr "
|
1041 |
|
1042 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1043 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
1044 |
-
#, fuzzy
|
1045 |
msgid "select"
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1049 |
-
#,
|
1050 |
msgid "Users Matching \"%s\""
|
1051 |
-
msgstr "
|
1052 |
|
1053 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
1054 |
-
#, fuzzy
|
1055 |
msgid "Users Extended List"
|
1056 |
-
msgstr "Lista de
|
1057 |
|
1058 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1059 |
msgid "Authors & Users Extended List"
|
1060 |
-
msgstr "Lista de Autores &
|
1061 |
|
1062 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1063 |
#, php-format
|
1064 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1065 |
-
msgstr ""
|
1066 |
|
1067 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1068 |
msgid "Search Users"
|
1069 |
-
msgstr ""
|
1070 |
|
1071 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1072 |
msgid "« Back to All Users"
|
1073 |
-
msgstr ""
|
1074 |
|
1075 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
1076 |
-
#, fuzzy
|
1077 |
msgid "Users per page"
|
1078 |
-
msgstr "
|
1079 |
|
1080 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1081 |
msgid "Apply"
|
1082 |
-
msgstr ""
|
1083 |
|
1084 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1085 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1086 |
msgid "Username"
|
1087 |
-
msgstr "Nome de
|
1088 |
|
1089 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1090 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
@@ -1093,18 +1068,17 @@ msgstr "E-mail"
|
|
1093 |
|
1094 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1095 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
1096 |
-
#, fuzzy
|
1097 |
msgid "Role"
|
1098 |
-
msgstr "
|
1099 |
|
1100 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1101 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1102 |
msgid "Posts"
|
1103 |
-
msgstr "
|
1104 |
|
1105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1106 |
msgid "View posts by this author"
|
1107 |
-
msgstr "Ver
|
1108 |
|
1109 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1110 |
#, php-format
|
@@ -1114,17 +1088,15 @@ msgstr "e-mail: %s"
|
|
1114 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1115 |
#, fuzzy
|
1116 |
msgid "Change"
|
1117 |
-
msgstr "Mudar
|
1118 |
|
1119 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
1120 |
-
#, fuzzy
|
1121 |
msgid "Update selected users"
|
1122 |
-
msgstr "
|
1123 |
|
1124 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
1125 |
-
#, fuzzy
|
1126 |
msgid "Update"
|
1127 |
-
msgstr "Atualizar
|
1128 |
|
1129 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1130 |
msgid "OK"
|
@@ -1136,25 +1108,5 @@ msgstr ""
|
|
1136 |
|
1137 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1138 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1139 |
-
msgstr ""
|
1140 |
-
|
1141 |
-
#, fuzzy
|
1142 |
-
#~ msgid "Username:"
|
1143 |
-
#~ msgstr "Nome de usuário"
|
1144 |
-
#~ msgid "Disable get_cimyFieldValue function"
|
1145 |
-
#~ msgstr "Desabilitar função get_cimyFieldValue"
|
1146 |
-
#~ msgid "leave disabled if you don't know what to do"
|
1147 |
-
#~ msgstr "deixe desabilitado se você não sabe o que fazer"
|
1148 |
-
#~ msgid "Update Options »"
|
1149 |
-
#~ msgstr "Atualizar Opções »"
|
1150 |
-
#~ msgid "Hide actions button"
|
1151 |
-
#~ msgstr "Ocultar botão de ações"
|
1152 |
-
#~ msgid "User ID"
|
1153 |
-
#~ msgstr "ID de usuário"
|
1154 |
-
#~ msgid "Edit"
|
1155 |
-
#~ msgstr "Editar"
|
1156 |
-
|
1157 |
-
#, fuzzy
|
1158 |
-
#~ msgid "label"
|
1159 |
-
#~ msgstr "Etiqueta"
|
1160 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2011-03-26 17:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2011-03-26 17:57+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
+
"Language-Team: Diana K. Cury <dianakac@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
36 |
|
37 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:407
|
38 |
msgid "does not match."
|
39 |
+
msgstr "não coincide."
|
40 |
|
41 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:411
|
42 |
msgid "hasn’t a correct email syntax."
|
43 |
+
msgstr "não tem uma sintaxe de e-mail válida."
|
44 |
|
45 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:425
|
46 |
msgid "couldn’t be empty."
|
47 |
+
msgstr "não pode estar vazio."
|
48 |
|
49 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:445
|
50 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:454
|
51 |
msgid "isn’t correct"
|
52 |
+
msgstr "não está correto"
|
53 |
|
54 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
55 |
msgid "YES"
|
57 |
|
58 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:451
|
59 |
msgid "NO"
|
60 |
+
msgstr "NÃO"
|
61 |
|
62 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:456
|
63 |
msgid "should be"
|
69 |
|
70 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:476
|
71 |
msgid "couldn’t have size less than"
|
72 |
+
msgstr "não pode ter tamanho inferior a"
|
73 |
|
74 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:482
|
75 |
msgid "couldn’t have length less than"
|
76 |
+
msgstr "não poder tamanho inferior a"
|
77 |
|
78 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:494
|
79 |
msgid "couldn’t have size different than"
|
80 |
+
msgstr "não pode ter tamanho diferrente de"
|
81 |
|
82 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:500
|
83 |
msgid "couldn’t have length different than"
|
84 |
+
msgstr "não pode ter comprimento diferente de"
|
85 |
|
86 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:512
|
87 |
msgid "couldn’t have size more than"
|
88 |
+
msgstr "não pode ter tamanho maior que"
|
89 |
|
90 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:518
|
91 |
msgid "couldn’t have length more than"
|
92 |
+
msgstr "não pode ter comprimento maior que"
|
93 |
|
94 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:531
|
95 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:551
|
96 |
msgid "Typed code is not correct."
|
97 |
+
msgstr "Código digitado não está correto."
|
98 |
|
99 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:830
|
100 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:291
|
|
|
101 |
msgid "Please upload a file with one of the following extensions"
|
102 |
+
msgstr "Por favor envie um arquivo com uma das seguintes extensões"
|
103 |
|
104 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:836
|
105 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:371
|
106 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:297
|
107 |
msgid "Please upload an image with one of the following extensions"
|
108 |
+
msgstr "Por favor envie uma imagem com uma das seguintes extensões"
|
109 |
|
110 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:916
|
111 |
msgid "Strength indicator"
|
112 |
+
msgstr "Indicador de força"
|
113 |
|
114 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:917
|
115 |
msgid "Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \\\" ? $ % ^ & )."
|
116 |
+
msgstr "Dica: A senha deve ter ao menos sete caracteres. Para torná-la mais segura, use maiúsculas, minúsculas, números e simbolos como ! \\\" ? $ % ^ & )."
|
117 |
|
118 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:954
|
|
|
119 |
msgid "Change image"
|
120 |
+
msgstr "Mudar imagem"
|
121 |
|
122 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_register.php:957
|
123 |
msgid "Insert the code:"
|
124 |
+
msgstr "Inserir o código:"
|
125 |
|
126 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:424
|
|
|
127 |
msgid "no fieldset"
|
128 |
+
msgstr "sem campo"
|
129 |
|
130 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_functions.php:432
|
131 |
msgid "All"
|
132 |
msgstr ""
|
133 |
|
134 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:43
|
|
|
135 |
msgid "WordPress Fields table emptied"
|
136 |
+
msgstr "Tabela de campos do WordPress esvaziada"
|
137 |
|
138 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:48
|
|
|
139 |
msgid "WordPress Fields table deleted"
|
140 |
+
msgstr "Tabela de campos do WordPress excluída"
|
141 |
|
142 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:57
|
143 |
msgid "Extra Fields table emptied"
|
144 |
+
msgstr "Tabela de Extra Fields esvaziada"
|
145 |
|
146 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:62
|
147 |
msgid "Extra Fields table deleted"
|
148 |
+
msgstr "Tabela de Extra Fields esxcluída"
|
149 |
|
150 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:71
|
151 |
msgid "Users Data table emptied"
|
152 |
+
msgstr "Tabela com dados de usuários esvaziada"
|
153 |
|
154 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:76
|
155 |
msgid "Users Data table deleted"
|
156 |
+
msgstr "Tabela com dados de usuários excluída"
|
157 |
|
158 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:87
|
159 |
msgid "Options set to default values"
|
160 |
+
msgstr "Opções definidas para valores padrão"
|
161 |
|
162 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:93
|
163 |
msgid "Options deleted"
|
164 |
+
msgstr "Opções excluídas"
|
165 |
|
166 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:347
|
167 |
msgid "Options changed"
|
168 |
+
msgstr "Opções alteradas"
|
169 |
|
170 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:474
|
171 |
msgid "This operation will create/update all missing tables/options, do you want to proceed?"
|
172 |
+
msgstr "Esta operação vai criar/atualizar todas a opções/tabelas que faltam, continuar?"
|
173 |
|
174 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:483
|
175 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:656
|
176 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:750
|
177 |
msgid "Options"
|
178 |
+
msgstr "Opções"
|
179 |
|
180 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
181 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:440
|
182 |
msgid "Add a new Field"
|
183 |
+
msgstr "Adicionar Novo Campo"
|
184 |
|
185 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:486
|
186 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:795
|
193 |
|
194 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:492
|
195 |
msgid "Support the Cimy Project"
|
196 |
+
msgstr "Suporte o Projeto Cimy"
|
197 |
|
198 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:500
|
199 |
msgid "This plug-in is the results of hours of development to add new features, support new WordPress versions and fix bugs, please donate money if saved you from spending all these hours!"
|
200 |
+
msgstr "Este plugin é o resultado de horas de desenvolvimento para adicionar novos recurso, suportar novas versões do WordPress e corrigir bugs, por favor, faça um donativo ao autor! <br /><br /><small>Tradução para pt_BR: <a href=\"http://www.arquivo.tk\" target=_blank\">Diana K. C</a></small>"
|
201 |
|
202 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:510
|
203 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1236
|
204 |
msgid "SUCCESSFUL"
|
205 |
+
msgstr "CONCLUÍDO"
|
206 |
|
207 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:524
|
208 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:830
|
209 |
msgid "Save Changes"
|
210 |
+
msgstr "Salvar Mudanças"
|
211 |
|
212 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:525
|
213 |
msgid "General"
|
215 |
|
216 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:533
|
217 |
msgid "installed is"
|
218 |
+
msgstr "instalado é"
|
219 |
|
220 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:537
|
221 |
msgid "OPTIONS DELETED!"
|
222 |
+
msgstr "OPÇÕES EXCLUÍDAS`"
|
223 |
|
224 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:540
|
225 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:545
|
226 |
msgid "Fix the problem"
|
227 |
+
msgstr "Corrigir problema"
|
228 |
|
229 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:543
|
230 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
231 |
+
msgstr "Versões não coincidem! Isto pode ter sido causado porque não desativou e reativou o plugin depois da atualização!"
|
232 |
|
233 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:551
|
234 |
msgid "Picture/Avatar upload"
|
235 |
+
msgstr "Envio de Figura/Avatar"
|
236 |
|
237 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:555
|
238 |
msgid "is created and writable"
|
239 |
+
msgstr "foi criado e pode ser escrito"
|
240 |
|
241 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:557
|
242 |
msgid "is NOT created or webserver does NOT have permission to write on it"
|
243 |
+
msgstr "não foi criado ou o serviço de hospedam não tem permissão de escrever nele."
|
244 |
|
245 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:564
|
|
|
246 |
msgid "Show all fields in the welcome email"
|
247 |
+
msgstr "Mostrar todos os campos no e-mail de boas-vindas"
|
248 |
|
249 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:568
|
250 |
msgid "the email sent to the admin and to the user upon registration will have all fields"
|
251 |
+
msgstr "O e-mail enviado ao admin e ao usuário que se registrou, mostrará todos os campos."
|
252 |
|
253 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:576
|
254 |
msgid "Enable email confirmation"
|
255 |
+
msgstr "Ativar configuração de e-mail"
|
256 |
|
257 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:580
|
258 |
msgid "user that registers should confirm its email address via a link click"
|
259 |
+
msgstr "Usuários que se registrarem devem confirmar seu e-mail através de link"
|
260 |
|
261 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:582
|
262 |
msgid "<strong>note:</strong> this option turned on will automatically disable (only during the registration) all upload fields: file, picture, avatar"
|
263 |
+
msgstr "<strong>Nota:</strong> se ativar esta opção, todas os itens de envio de arquivos serão destaivados como envio de arquivos, avatar etc."
|
264 |
|
265 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:589
|
266 |
msgid "Redirect to the source"
|
267 |
+
msgstr "Redirecionar para a origem"
|
268 |
|
269 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:593
|
270 |
msgid "after the registration or confirmation the user will be redirected to the address where was exactly before clicking on the registration link"
|
271 |
+
msgstr "Depois do registro ou confirmação, o usuário será redirecionado para o endereço onde estava antes de clicar no link para se registrar."
|
272 |
|
273 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:601
|
274 |
msgid "No captcha"
|
275 |
+
msgstr "Sem CAPTCHA"
|
276 |
|
277 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:609
|
278 |
msgid "Enable <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
279 |
+
msgstr "Ativar <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">reCAPTCHA</a>"
|
280 |
|
281 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:613
|
282 |
msgid "Public KEY"
|
283 |
+
msgstr "Chave pública (Public KEY)"
|
284 |
|
285 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:617
|
286 |
msgid "Private KEY"
|
287 |
+
msgstr "Chave privativa (Private KEY)"
|
288 |
|
289 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:625
|
290 |
msgid "Enable <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage Captcha</a>"
|
291 |
+
msgstr "Ativar <a href=\"http://www.phpcaptcha.org/\" target=\"_blank\">Securimage CAPTCHA</a>"
|
292 |
|
293 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:628
|
294 |
msgid "This captcha is probably weaker, but is easier for users"
|
295 |
+
msgstr "Este CAPTCHA é mais fraco, porém, mais simples para usuários"
|
296 |
|
297 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:632
|
298 |
#, php-format
|
299 |
msgid "<strong>WARNING: to activate this captcha download <a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">this package</a> and unpack it under %s</strong>"
|
300 |
+
msgstr "<strong>ATENÇÃO: para ativar este captcha, faça download da extensção<a href=\"http://www.phpcaptcha.org/latest.zip\" target=\"_blank\">PHP Captcha</a> e extraia em %s</strong>"
|
301 |
|
302 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:639
|
303 |
msgid "Change login/registration page logo"
|
304 |
+
msgstr "Mudar logotipo da página de registro"
|
305 |
|
306 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:644
|
307 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:424
|
|
|
308 |
msgid "Delete the picture"
|
309 |
+
msgstr "Excluir figura"
|
310 |
|
311 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:647
|
312 |
msgid "Maximum recommended logo width is 328px, but any height should work."
|
313 |
+
msgstr "Dimensão máxima recomendada da largura é 328px"
|
314 |
|
315 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:653
|
316 |
msgid "Database"
|
317 |
+
msgstr "Banco de Dados"
|
318 |
|
319 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:662
|
320 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:680
|
321 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:699
|
322 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:716
|
323 |
msgid "select action"
|
324 |
+
msgstr "Selecione uma ação"
|
325 |
|
326 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:663
|
327 |
msgid "Default values"
|
328 |
+
msgstr "Valores padrão"
|
329 |
|
330 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:664
|
331 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:682
|
339 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:705
|
340 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:723
|
341 |
msgid "NOT PRESENT"
|
342 |
+
msgstr "NÃO PRESENTE"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:673
|
|
|
345 |
msgid "WordPress Fields table"
|
346 |
+
msgstr "Tabela de Campos do WordPress"
|
347 |
|
348 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:681
|
349 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:700
|
350 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:717
|
351 |
msgid "Empty"
|
352 |
+
msgstr "Esvaziar"
|
353 |
|
354 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:693
|
355 |
msgid "Extra Fields table"
|
356 |
+
msgstr "Tabela de Campos Extras"
|
357 |
|
358 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:710
|
359 |
msgid "Users Data table"
|
360 |
+
msgstr "Tabela de Dados do Usuário"
|
361 |
|
362 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:720
|
363 |
msgid "all data inserted by users in all and only extra fields"
|
364 |
+
msgstr "Todos os dados inseridos pelos usuários em todos os campos extras"
|
365 |
|
366 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:728
|
367 |
msgid "Force tables creation"
|
368 |
+
msgstr "Forçar criação de tabelas"
|
369 |
|
370 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:731
|
371 |
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
372 |
+
msgstr "Equivalente a desativar e ativar o plugin, nenhuma outra operação é feita"
|
373 |
|
374 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:737
|
375 |
msgid "User Profile"
|
376 |
+
msgstr "Perfil do Usuário"
|
377 |
|
378 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:740
|
|
|
379 |
msgid "Extra Fields section title"
|
380 |
+
msgstr "Títulos para seção de Campos Adicionais"
|
381 |
|
382 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
383 |
msgid "Fieldset's titles, separates with comma"
|
384 |
+
msgstr "Tïtulos da seções, separados por vírgulas"
|
385 |
|
386 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:744
|
387 |
msgid "example: title1,title2,title3"
|
388 |
+
msgstr "Ex.: título A, título B, Título C"
|
389 |
|
390 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:745
|
391 |
msgid "<strong>note:</strong> if you change order or remove fieldsets you may need to set all extra fields' fieldset assigment again"
|
392 |
+
msgstr "<strong>Nota:</strong> ao mudar a ordem ou remover qualquer campo adicional, é preciso definir onde os campos aparecem novamente"
|
393 |
|
394 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:750
|
395 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
396 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:761
|
397 |
msgid "Authors & Users Extended"
|
398 |
+
msgstr "Autores & Usuários Extendidos"
|
399 |
|
400 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:754
|
401 |
msgid "Hide username field"
|
402 |
+
msgstr "Esconder campo <strong>Nome de Usuário</strong>"
|
403 |
|
404 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:760
|
405 |
msgid "Hide name field"
|
406 |
+
msgstr "Esconder campo <strong>Nome</strong>"
|
407 |
|
408 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:765
|
409 |
msgid "Hide email field"
|
410 |
+
msgstr "Esconder campo <strong>E-mail</strong>"
|
411 |
|
412 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:769
|
|
|
413 |
msgid "Hide role field"
|
414 |
+
msgstr "Esconder campo <strong>Função</strong>"
|
415 |
|
416 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:773
|
417 |
msgid "Hide website field"
|
418 |
+
msgstr "Esconder campo <strong>Website</strong>"
|
419 |
|
420 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:777
|
421 |
msgid "Hide n. posts field"
|
422 |
+
msgstr "Esconder número de postagens"
|
423 |
|
424 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:782
|
425 |
msgid "WordPress hidden fields"
|
426 |
+
msgstr "Campos WordPress"
|
427 |
|
428 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:785
|
429 |
msgid "Show password"
|
430 |
+
msgstr "Mostrar senha"
|
431 |
|
432 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:789
|
433 |
msgid "Show confirmation password"
|
434 |
+
msgstr "Mostrar senha de confirmação"
|
435 |
|
436 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:793
|
437 |
msgid "Show password strength meter"
|
438 |
+
msgstr "Mostrar indicador de força da senha"
|
439 |
|
440 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:797
|
441 |
msgid "Show first name"
|
442 |
+
msgstr "Mostrar Nome"
|
443 |
|
444 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:801
|
445 |
msgid "Show last name"
|
446 |
+
msgstr "Mostrar Sobrenome"
|
447 |
|
448 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:805
|
449 |
msgid "Show nickname"
|
450 |
+
msgstr "Mostrar Apelido"
|
451 |
|
452 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:809
|
|
|
453 |
msgid "Show website"
|
454 |
+
msgstr "Mostrar Website"
|
455 |
|
456 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:813
|
457 |
msgid "Show AIM"
|
463 |
|
464 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:821
|
465 |
msgid "Show Jabber / Google Talk"
|
466 |
+
msgstr "Mostrar Jabber/ Google Talk"
|
467 |
|
468 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_options.php:825
|
469 |
msgid "Show Biographical Info"
|
470 |
+
msgstr "Mostrar Biografia"
|
471 |
|
472 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:220
|
473 |
msgid "Password"
|
474 |
+
msgstr "Senha"
|
475 |
|
476 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:240
|
477 |
msgid "Password confirmation"
|
478 |
+
msgstr "Confirmação de senha"
|
479 |
|
480 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:260
|
|
|
481 |
msgid "First name"
|
482 |
+
msgstr "Nome"
|
483 |
|
484 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:280
|
|
|
485 |
msgid "Last name"
|
486 |
+
msgstr "Sobrenome"
|
487 |
|
488 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:300
|
|
|
489 |
msgid "Nickname"
|
490 |
+
msgstr "Apelido"
|
491 |
|
492 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:320
|
493 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1540
|
497 |
|
498 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:340
|
499 |
msgid "AIM"
|
500 |
+
msgstr "AIM"
|
501 |
|
502 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:360
|
|
|
503 |
msgid "Yahoo IM"
|
504 |
+
msgstr "Yahoo IM"
|
505 |
|
506 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:380
|
|
|
507 |
msgid "Jabber / Google Talk"
|
508 |
+
msgstr "Jabber / Google Talk"
|
509 |
|
510 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:400
|
511 |
msgid "Biographical Info"
|
512 |
+
msgstr "Biografias"
|
513 |
|
514 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:751
|
515 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
516 |
msgid "Fields"
|
517 |
msgstr "Campos"
|
518 |
|
519 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:752
|
520 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:761
|
521 |
msgid "A&U Extended"
|
522 |
+
msgstr "Autores & Usuários"
|
523 |
|
524 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_user_extra_fields.php:756
|
|
|
525 |
msgid "Users Extended"
|
526 |
+
msgstr "Usuários Extendidos"
|
527 |
|
528 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:16
|
529 |
#, php-format
|
530 |
msgid "File '%s' doesn't exist?"
|
531 |
+
msgstr "Arquivo '%s' não existe?"
|
532 |
|
533 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:19
|
534 |
msgid "The GD image library is not installed."
|
535 |
+
msgstr "A <em>biblioteca GD image</em> não está disponível"
|
536 |
|
537 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_missing_functions.php:26
|
538 |
#, php-format
|
539 |
msgid "File '%s' is not an image."
|
540 |
+
msgstr "Arquivo '%s' não é uma imagem."
|
541 |
|
542 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:420
|
|
|
543 |
msgid "Delete the file"
|
544 |
+
msgstr "Excluir arquivo"
|
545 |
|
546 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:421
|
|
|
547 |
msgid "Update the file"
|
548 |
+
msgstr "Atualizar o arquivo"
|
549 |
|
550 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:425
|
|
|
551 |
msgid "Update the picture"
|
552 |
+
msgstr "Atualizar figura"
|
553 |
|
554 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:445
|
555 |
msgid "Picture URL:"
|
556 |
+
msgstr "URL da figura:"
|
557 |
|
558 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:671
|
559 |
#, php-format
|
560 |
msgid "%s previous value: %s new value: %s"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_profile.php:686
|
564 |
#, php-format
|
565 |
msgid "%s (%s) has changed one or more fields"
|
566 |
msgstr ""
|
568 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:45
|
569 |
#, php-format
|
570 |
msgid "New user registration on your site %s:"
|
571 |
+
msgstr "Novos usuários registrados no site %s:"
|
572 |
|
573 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:46
|
574 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:57
|
575 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
576 |
+
#, php-format
|
577 |
msgid "Username: %s"
|
578 |
+
msgstr "Nome de usuário: %s"
|
579 |
|
580 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:47
|
581 |
+
#, php-format
|
582 |
msgid "E-mail: %s"
|
583 |
+
msgstr "E-mail: %s"
|
584 |
|
585 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:52
|
586 |
#, php-format
|
587 |
msgid "[%s] New User Registration"
|
588 |
+
msgstr "[%s] Registro de novo usuário"
|
589 |
|
590 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:58
|
591 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
592 |
#, php-format
|
593 |
msgid "Password: %s"
|
594 |
+
msgstr "Senha: %s"
|
595 |
|
596 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:64
|
597 |
#, php-format
|
598 |
msgid "[%s] Your username and password"
|
599 |
+
msgstr "[%s] Seu nome de usuários e senha"
|
600 |
|
601 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:100
|
602 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:106
|
604 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:124
|
605 |
#, php-format
|
606 |
msgid "%s: %s"
|
607 |
+
msgstr "%s: %s"
|
608 |
|
609 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:198
|
610 |
#, php-format
|
616 |
"After you activate, you will receive *another email* with your login.\n"
|
617 |
"\n"
|
618 |
msgstr ""
|
619 |
+
"Para ativar seu usuários, clique nolink:\n"
|
620 |
+
"\n"
|
621 |
+
"%s\n"
|
622 |
+
"\n"
|
623 |
+
"Depois de ativar, você receberá <strong>outro e-mail</strong> com seu login.\n"
|
624 |
+
"\n"
|
625 |
|
626 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:214
|
627 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:223
|
628 |
msgid "Your account is now active!"
|
629 |
+
msgstr "Sua conta agora está ativa!"
|
630 |
|
631 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:215
|
632 |
#, php-format
|
633 |
msgid "Your site at <a href=\"%1$s\">%2$s</a> is active. You may now log in to your site using your chosen username of “%3$s”. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href=\"%5$s\">reset your password</a></p>."
|
634 |
+
msgstr "Seu site em <a href=\"%1$s\">%2$s</a> Está ativo. Faça login usando seu nome de usuário e senha: “%3$s”. Verifique a Caixa de Entrada do seu e-mail às %4$s para senha e intruções. Se não receber seu e-mail, veja se não está na pasta de Spams. Se ainda não receber um e-mail em uma hora, tente <a href=\"%5$s\">redefinir sua senha</a></p>."
|
635 |
|
636 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:217
|
637 |
msgid "An error occurred during the activation"
|
638 |
+
msgstr "Um erro ocorreu durante a ativação"
|
639 |
|
640 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:236
|
641 |
msgid "Invalid activation key."
|
642 |
+
msgstr "Chave de ativação inválida"
|
643 |
|
644 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:239
|
645 |
msgid "The site is already active."
|
646 |
+
msgstr "O site já está ativo"
|
647 |
|
648 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:258
|
649 |
msgid "Could not create user"
|
650 |
+
msgstr "Não foi possível criar usuário"
|
651 |
|
652 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:270
|
653 |
msgid "That username is already activated."
|
654 |
+
msgstr "Este nome de usuário já está ativado"
|
655 |
|
656 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:290
|
657 |
msgid "That username is currently reserved but may be available in a couple of days."
|
658 |
+
msgstr "Nome de usuário reservado."
|
659 |
|
660 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:293
|
661 |
msgid "username and email used"
|
662 |
+
msgstr "Nome de usuário e e-mail usados"
|
663 |
|
664 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_email_handler.php:303
|
665 |
msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing."
|
666 |
+
msgstr "E-mail já usado. Verifique se não há um e-mail de ativação na sua caixa de entrada. Estará disponível em alguns dias se nada fizer."
|
667 |
|
668 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:14
|
669 |
msgid "Add field"
|
670 |
+
msgstr "Adicionar Campo"
|
671 |
|
672 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:15
|
673 |
msgid "Update field"
|
674 |
+
msgstr "Atualizar Campo"
|
675 |
|
676 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:16
|
677 |
msgid "Delete field"
|
678 |
+
msgstr "Excluir Campo"
|
679 |
|
680 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:17
|
681 |
msgid "Delete selected fields"
|
688 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:27
|
689 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1044
|
690 |
msgid "Min length"
|
691 |
+
msgstr "Caracteres Mín."
|
692 |
|
693 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:28
|
694 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1045
|
695 |
msgid "Exact length"
|
696 |
+
msgstr "Caracteres Exatos"
|
697 |
|
698 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:29
|
699 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1046
|
700 |
msgid "Max length"
|
701 |
+
msgstr "Caracteres Máx."
|
702 |
|
703 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:30
|
704 |
msgid "Exact or Max length"
|
705 |
+
msgstr "Caracteres Exatos ou Máx."
|
706 |
|
707 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:130
|
708 |
msgid "changed to"
|
709 |
+
msgstr "mudou para"
|
710 |
|
711 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:133
|
712 |
msgid "You cannot give an order that misses some numbers"
|
713 |
+
msgstr "Você não pode dar uma ordem que precisa de alguns números"
|
714 |
|
715 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:136
|
716 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:207
|
723 |
|
724 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:204
|
725 |
msgid "deleted correctly"
|
726 |
+
msgstr "excluído(s)"
|
727 |
|
728 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:236
|
729 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1036
|
730 |
msgid "Min size"
|
731 |
+
msgstr "Tamanho Mín."
|
732 |
|
733 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:237
|
734 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1037
|
735 |
msgid "Exact size"
|
736 |
+
msgstr "Tamanho Exato"
|
737 |
|
738 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:238
|
739 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1038
|
740 |
msgid "Max size"
|
741 |
+
msgstr "Tamanho Máx."
|
742 |
|
743 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:240
|
744 |
msgid "Exact or Max size"
|
745 |
+
msgstr "Tamanho Máx. ou Exato"
|
746 |
|
747 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:295
|
748 |
msgid "Name not specified"
|
749 |
+
msgstr "Nome não especificado"
|
750 |
|
751 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:297
|
752 |
msgid "Name cannot contains spaces"
|
753 |
+
msgstr "Nome não pode conter espaços"
|
754 |
|
755 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:300
|
756 |
msgid "Label not specified"
|
757 |
+
msgstr "Rótulo não especificado"
|
758 |
|
759 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:305
|
760 |
msgid "not selected (with this type is necessary)"
|
761 |
+
msgstr "não selecionado (necessário neste tipo de campo)"
|
762 |
|
763 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
764 |
msgid "If you select"
|
765 |
+
msgstr "Se você selecionar"
|
766 |
|
767 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:311
|
768 |
msgid "you cannot select Min or Max"
|
769 |
+
msgstr "você não pode selecionar Mínimo ou Máximo"
|
770 |
|
771 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:316
|
772 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:321
|
773 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:326
|
774 |
msgid "should be in the range of"
|
775 |
+
msgstr "deve ser no limite de"
|
776 |
|
777 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:336
|
778 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:338
|
779 |
msgid "Equal TO not specified"
|
780 |
+
msgstr "<strong>Igual a</strong> não especificado"
|
781 |
|
782 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:341
|
783 |
msgid "With checkbox type Equal TO can only be"
|
784 |
+
msgstr "Com caixas de marcação <strong>Igual a</strong> só pode ser"
|
785 |
|
786 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:344
|
787 |
msgid "With radio type Equal TO can only be"
|
788 |
+
msgstr "Com botões de rádio <strong>Igual a</strong> só pode ser"
|
789 |
|
790 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:360
|
791 |
msgid "With checkbox type Value can only be"
|
792 |
+
msgstr "Com caixas de marcação <strong>Valor</strong> só pode ser"
|
793 |
|
794 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:363
|
795 |
msgid "With radio type Value can only be"
|
796 |
+
msgstr "Com botões de rádio <strong>valor</strong> só podeser"
|
797 |
|
798 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:420
|
799 |
msgid "Field inserted correctly"
|
800 |
+
msgstr "Campo inserido!"
|
801 |
|
802 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
803 |
msgid "Field #"
|
805 |
|
806 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:422
|
807 |
msgid "updated correctly"
|
808 |
+
msgstr "atualizado!"
|
809 |
|
810 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:425
|
811 |
msgid "Name inserted is just in the database, change to another one"
|
812 |
+
msgstr "Nome inserido já está no banco de dados, escolha outro."
|
813 |
|
814 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:612
|
815 |
msgid "To add a new field you have to choose a name, type and label; optional are value and description. Rules are applied during user registration."
|
816 |
+
msgstr "Para adicionar um novo campo, você deve escolher o <strong>Tipo</strong> e o <strong>Rótulo</strong>, opcionalmente o <strong>Valor</strong> e <strong>Descrição</strong>. As <strong>Regras</strong> são aplicadas durante o registro."
|
817 |
|
818 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:614
|
819 |
msgid "With <strong>radio</strong> and <strong>checkbox</strong>: <em>Value</em> and <em>equal TO</em> can only be 'Yes' or 'No' that means 'selected' or 'not selected'"
|
820 |
+
msgstr "<strong>radio</strong> e <strong>checkbox: </strong><em>Valor</em> e <em>Igual A</em> pode ser 'Sim/Verdadeiro' ou 'Não/Falso' ou seja, 'selecionado' ou 'não selecionado'"
|
821 |
|
822 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:615
|
823 |
msgid "With <strong>drop-down</strong>: you have to add all options into label for example: label/item1,item2,item3"
|
824 |
+
msgstr "<strong>drop-down</strong>: Lista de opções. É necessário informar todos os rótulos. Ex. de sintaxe: Gênero/Masculino,Feminino"
|
825 |
|
826 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:616
|
827 |
msgid "With <strong>picture</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> means max pixel size (width or height) for thumbnail"
|
828 |
+
msgstr "<strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à dimensão (altura ou largura) da miniatura."
|
829 |
|
830 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:617
|
831 |
msgid "With <strong>picture-url</strong>: you can preload a default image putting url in <em>Value</em>; <em>equal TO</em> means max width pixel size (height will be proportional)"
|
832 |
+
msgstr "<strong>picture-url</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Item <em>Deve ser Igual a:</em> se refere à largura máxima da imagem, a altura será proporcional"
|
833 |
|
834 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:618
|
835 |
msgid "With <strong>registration-date</strong>: <em>equal TO</em> means date and time format"
|
836 |
+
msgstr "<strong>registration-date</strong>: <em>Deve ser Igual a:</em> se refere a um formato de data."
|
837 |
|
838 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:619
|
|
|
839 |
msgid "With <strong>avatar</strong>: you can preload a default image putting url in <em>Value</em>; 'min,exact,max size' are in KB; <em>equal TO</em> is automatically set to 512 pixels"
|
840 |
+
msgstr "<strong>avatar</strong>: <strong>picture</strong>: Carrega uma imagem padrão informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> é automaticamente definido em 512 pixels"
|
841 |
|
842 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:620
|
|
|
843 |
msgid "With <strong>file</strong>: you can preload a default file putting url in <em>Value</em>; 'min,exact,max size' are in KB; under <em>equal TO</em> can be specified allowed extensions separated by comma, example: zip,pdf,doc"
|
844 |
+
msgstr "<strong>file</strong>: Permite carregar um arquivo informando sua URL em <em>Valor</em>. Itens <em>Caracteres Mín., Caracteres Exatos, Caracteres Máx.</em> se referem a tamanho em KB. Item <em>Deve ser Igual a:</em> se refere à extensões de arquivo permitidas, separadas por vírgulas. Ex. de sintaxe: zip, pdf, doc"
|
845 |
|
846 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:627
|
847 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:637
|
873 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
874 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1097
|
875 |
msgid "Label"
|
876 |
+
msgstr "Rótulo"
|
877 |
|
878 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:629
|
879 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:661
|
880 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:823
|
881 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1100
|
882 |
msgid "Description"
|
883 |
+
msgstr "Descrição"
|
884 |
|
885 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:630
|
886 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:824
|
890 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:631
|
891 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:825
|
892 |
msgid "Actions"
|
893 |
+
msgstr "Ações"
|
894 |
|
895 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:655
|
896 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1091
|
897 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1488
|
|
|
898 |
msgid "Fieldset"
|
899 |
+
msgstr "Área do Campo"
|
900 |
|
901 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:673
|
902 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1114
|
903 |
msgid "Can be empty"
|
904 |
+
msgstr "Pode ser vazio"
|
905 |
|
906 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:674
|
907 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1115
|
908 |
msgid "Check for E-mail syntax"
|
909 |
+
msgstr "Verficar sintaxe de e-mail"
|
910 |
|
911 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:677
|
912 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1118
|
916 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:678
|
917 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1119
|
918 |
msgid "Can be modified only if empty"
|
919 |
+
msgstr "Pode ser modificado se vazio"
|
920 |
|
921 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:679
|
922 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1120
|
923 |
msgid "Can be modified only by admin"
|
924 |
+
msgstr "Pode ser modificado apenas por Admin"
|
925 |
|
926 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:680
|
927 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1121
|
|
|
928 |
msgid "Can be modified only by admin or if empty"
|
929 |
+
msgstr "Pode ser modificado por Admin ou se vazio"
|
930 |
|
931 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:681
|
932 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1122
|
933 |
msgid "Cannot be modified"
|
934 |
+
msgstr "Não pode ser modificado"
|
935 |
|
936 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:689
|
937 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1127
|
938 |
msgid "Should be equal TO"
|
939 |
+
msgstr "Deve ser <strong>Igual a</strong>"
|
940 |
|
941 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:691
|
942 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1129
|
943 |
msgid "Case sensitive"
|
944 |
+
msgstr "Diferenciar maiúsc./minúsc."
|
945 |
|
946 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:694
|
947 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1131
|
948 |
msgid "Regular Expression"
|
949 |
+
msgstr "Expressão Regular"
|
950 |
|
951 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:697
|
952 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1135
|
953 |
msgid "Show the field in the registration"
|
954 |
+
msgstr "Mostrar na <strong>Página de Registro</strong>"
|
955 |
|
956 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:700
|
957 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1138
|
958 |
msgid "Show the field in User's profile"
|
959 |
+
msgstr "Mostrar no <strong>Perfil do Usuário</strong>"
|
960 |
|
961 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:703
|
962 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1147
|
963 |
msgid "Show the field in A&U Extended menu"
|
964 |
+
msgstr "Mostrar em <strong>Autores & Usuários</strong>"
|
965 |
|
966 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:706
|
967 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1150
|
|
|
968 |
msgid "Show the field in the search engine"
|
969 |
+
msgstr "Mostrar no formulário de pesquisa"
|
970 |
|
971 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:709
|
972 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1153
|
|
|
973 |
msgid "Show the field in the blog"
|
974 |
+
msgstr "Mostrar no site"
|
975 |
|
976 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:712
|
977 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1156
|
|
|
978 |
msgid "Show the field if the role is at least:"
|
979 |
+
msgstr "Mostrar se usuário for ao menos:"
|
980 |
|
981 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:714
|
982 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1158
|
983 |
msgid "Anonymous"
|
984 |
+
msgstr "Anônimo"
|
985 |
|
986 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:724
|
987 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1171
|
993 |
msgstr "Limpar"
|
994 |
|
995 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:786
|
|
|
996 |
msgid "Invert selection"
|
997 |
+
msgstr "Inverter seleção"
|
998 |
|
999 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:787
|
1000 |
msgid "Are you sure you want to delete field(s) and all data inserted into by users?"
|
1001 |
+
msgstr "Tem certeza que quer excluir os campos e todos os dados informados pelos usuários?"
|
1002 |
|
1003 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:793
|
1004 |
msgid "WordPress Fields"
|
1005 |
+
msgstr "Campos WordPress"
|
1006 |
|
1007 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:806
|
1008 |
msgid "None!"
|
1011 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:821
|
1012 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1057
|
1013 |
msgid "Order"
|
1014 |
+
msgstr "Ordem"
|
1015 |
|
1016 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1178
|
1017 |
msgid "Reset"
|
1018 |
+
msgstr "Redefinir"
|
1019 |
|
1020 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1265
|
1021 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1893
|
|
|
1022 |
msgid "select"
|
1023 |
+
msgstr "Selecionar"
|
1024 |
|
1025 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1398
|
1026 |
+
#, php-format
|
1027 |
msgid "Users Matching \"%s\""
|
1028 |
+
msgstr "Usuários que coincidem \"%s\""
|
1029 |
|
1030 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1402
|
|
|
1031 |
msgid "Users Extended List"
|
1032 |
+
msgstr "Lista de Usuários"
|
1033 |
|
1034 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1404
|
1035 |
msgid "Authors & Users Extended List"
|
1036 |
+
msgstr "Lista de Autores & Usuários"
|
1037 |
|
1038 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1444
|
1039 |
#, php-format
|
1040 |
msgid "%1$s <span class=\"count\">(%2$s)</span>"
|
1041 |
+
msgstr "%1$s <span class=\"count\">(%2$s)</span>"
|
1042 |
|
1043 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1456
|
1044 |
msgid "Search Users"
|
1045 |
+
msgstr "Pesquisar por Usuários"
|
1046 |
|
1047 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1482
|
1048 |
msgid "« Back to All Users"
|
1049 |
+
msgstr "« Voltar para Todos os Usuários"
|
1050 |
|
1051 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1492
|
|
|
1052 |
msgid "Users per page"
|
1053 |
+
msgstr "Usuários por Páginas"
|
1054 |
|
1055 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1507
|
1056 |
msgid "Apply"
|
1057 |
+
msgstr "Aplicar"
|
1058 |
|
1059 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1520
|
1060 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1521
|
1061 |
msgid "Username"
|
1062 |
+
msgstr "Nome de Usuário"
|
1063 |
|
1064 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1530
|
1065 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1531
|
1068 |
|
1069 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1535
|
1070 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1536
|
|
|
1071 |
msgid "Role"
|
1072 |
+
msgstr "Função"
|
1073 |
|
1074 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1545
|
1075 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1546
|
1076 |
msgid "Posts"
|
1077 |
+
msgstr "Postagens"
|
1078 |
|
1079 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1682
|
1080 |
msgid "View posts by this author"
|
1081 |
+
msgstr "Ver postagens desse autor"
|
1082 |
|
1083 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1713
|
1084 |
#, php-format
|
1088 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1834
|
1089 |
#, fuzzy
|
1090 |
msgid "Change"
|
1091 |
+
msgstr "Mudar imagem"
|
1092 |
|
1093 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1859
|
|
|
1094 |
msgid "Update selected users"
|
1095 |
+
msgstr "Atualizar Usuários selecionados"
|
1096 |
|
1097 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1880
|
|
|
1098 |
msgid "Update"
|
1099 |
+
msgstr "Atualizar"
|
1100 |
|
1101 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_admin.php:1898
|
1102 |
msgid "OK"
|
1108 |
|
1109 |
#: /var/www/wp-content/plugins/cimy-user-extra-fields/cimy_uef_db.php:206
|
1110 |
msgid "<strong>Note:</strong> this website let you personalize your password; after the registration you will receive an e-mail with another password, do not care about that!"
|
1111 |
+
msgstr "<strong>Nota:</strong> este site permite personalizar sua senha. Depois do registro, você receberá um e-mail com outra senha!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1112 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra
|
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.0
|
7 |
Tested up to: 3.1
|
8 |
-
Stable tag: 2.0.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
5 |
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar, recaptcha, captcha
|
6 |
Requires at least: 3.0
|
7 |
Tested up to: 3.1
|
8 |
+
Stable tag: 2.0.4
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|