Version Description
Download this release
Release Info
Developer | Cimmo |
Plugin | Cimy User Extra Fields |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- README_OFFICIAL.txt +22 -1
- cimy_uef_db.php +88 -73
- cimy_uef_options.php +22 -9
- cimy_uef_profile.php +4 -3
- cimy_user_extra_fields.php +6 -5
- langs/cimy_uef-bg_BG.mo +0 -0
- langs/cimy_uef-bg_BG.po +90 -80
- langs/cimy_uef-da_DK.mo +0 -0
- langs/cimy_uef-da_DK.po +90 -80
- langs/cimy_uef-de_DE.mo +0 -0
- langs/cimy_uef-de_DE.po +90 -80
- langs/cimy_uef-fr_FR.mo +0 -0
- langs/cimy_uef-fr_FR.po +90 -80
- langs/cimy_uef-it_IT.mo +0 -0
- langs/cimy_uef-it_IT.po +89 -80
- langs/cimy_uef-pt_BR.mo +0 -0
- langs/cimy_uef-pt_BR.po +90 -80
- langs/cimy_uef-ru_RU.mo +0 -0
- langs/cimy_uef-ru_RU.po +90 -80
- langs/cimy_uef-sv_SE.mo +0 -0
- langs/cimy_uef-sv_SE.po +90 -80
- readme.txt +18 -18
README_OFFICIAL.txt
CHANGED
@@ -212,8 +212,18 @@ EXAMPLE:
|
|
212 |
|
213 |
|
214 |
ADDITIONAL EXAMPLES:
|
|
|
215 |
|
216 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
If you put the example just inside an existing loop you shouldn't add it again, just use get_cimyFieldValue call and echo call.
|
218 |
|
219 |
if (have_posts()) {
|
@@ -398,6 +408,17 @@ A lot of times I cannot reproduce the problem and I need more details, so if you
|
|
398 |
|
399 |
|
400 |
CHANGELOG:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
v1.3.1 - 02/01/2009
|
402 |
- Added WordPress Biographical Info field support
|
403 |
- Fixed Wordpress hidden fields' labels not translated
|
212 |
|
213 |
|
214 |
ADDITIONAL EXAMPLES:
|
215 |
+
This is an example how to retrieve and display one uploaded image of the current user logged in.
|
216 |
|
217 |
+
$user = wp_get_current_user();
|
218 |
+
|
219 |
+
// is there someone logged?
|
220 |
+
if ($user->ID) {
|
221 |
+
$value = cimy_uef_sanitize_content(get_cimyFieldValue($user->ID, 'IMAGE'));
|
222 |
+
echo '<img src="'.$value.'" alt="description_here" />';
|
223 |
+
}
|
224 |
+
|
225 |
+
|
226 |
+
This is an entire example that can be used into your theme for example to retrieve the value from SITE extra field that of course was created.
|
227 |
If you put the example just inside an existing loop you shouldn't add it again, just use get_cimyFieldValue call and echo call.
|
228 |
|
229 |
if (have_posts()) {
|
408 |
|
409 |
|
410 |
CHANGELOG:
|
411 |
+
v1.3.2 - 11/01/2009
|
412 |
+
- Added possibility to change/remove Extra Fields section title under user profile
|
413 |
+
- Fixed bug where options were not correctly migrated for certain versions (introduced with v1.3.0 beta2)
|
414 |
+
- Fixed bug where A&U Extended page where showing 0 users due to previous bug (thanx to Alessandra)
|
415 |
+
- Fixed avatar support for installations with different table prefix (thanx to Sergey for pointing it)
|
416 |
+
- Fixed Table Creation option to not perform anything else when selected
|
417 |
+
- Fixed unitialized variable under options code
|
418 |
+
- Fixed last use of "level_10" role check (missed in the previous fix)
|
419 |
+
- Updated Italian translation
|
420 |
+
- Readme file updated and renamed to README_OFFICIAL.txt due to WordPress Plugin Directory rules
|
421 |
+
|
422 |
v1.3.1 - 02/01/2009
|
423 |
- Added WordPress Biographical Info field support
|
424 |
- Fixed Wordpress hidden fields' labels not translated
|
cimy_uef_db.php
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
<?php
|
2 |
|
3 |
function cimy_plugin_install () {
|
4 |
-
global
|
|
|
5 |
|
6 |
if (!cimy_check_admin('activate_plugins'))
|
7 |
return;
|
@@ -30,93 +31,106 @@ function cimy_plugin_install () {
|
|
30 |
if ( ! empty($wpdb->collate) )
|
31 |
$charset_collate .= " COLLATE $wpdb->collate";
|
32 |
}
|
33 |
-
|
34 |
if ($force_update) {
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
unset($options['show_buggy_ie_warning']);
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
-
|
50 |
-
$
|
51 |
-
$
|
52 |
|
53 |
-
|
54 |
-
$id = $field['ID'];
|
55 |
-
$name = $wpdb->escape(html_entity_decode($field['NAME'], ENT_QUOTES, "UTF-8"));
|
56 |
-
$label = $wpdb->escape(html_entity_decode($field['LABEL'], ENT_QUOTES, "UTF-8"));
|
57 |
-
$desc = $wpdb->escape(html_entity_decode($field['DESCRIPTION'], ENT_QUOTES, "UTF-8"));
|
58 |
-
$value = $wpdb->escape(html_entity_decode($field['VALUE'], ENT_QUOTES, "UTF-8"));
|
59 |
-
|
60 |
-
$rules = unserialize($field['RULES']);
|
61 |
-
$rules['equal_to'] = html_entity_decode($rules['equal_to'], ENT_QUOTES, "UTF-8");
|
62 |
-
$rules = $wpdb->escape(serialize($rules));
|
63 |
-
|
64 |
-
$sql = "UPDATE ".$wpdb_fields_table." SET name='".$name."', value='".$value."', description='".$desc."', label='".$label."', rules='".$rules."' WHERE ID=".$id;
|
65 |
-
|
66 |
-
$wpdb->query($sql);
|
67 |
-
}
|
68 |
-
|
69 |
-
case "1.1.0-rc1":
|
70 |
-
$sql = "SELECT ID FROM ".$wpdb_fields_table." WHERE TYPE='picture'";
|
71 |
-
$f_pictures = $wpdb->get_results($sql, ARRAY_A);
|
72 |
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
93 |
}
|
94 |
}
|
95 |
}
|
96 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
$sql = "ALTER TABLE ".$wpdb_data_table.$charset_collate;
|
107 |
-
$wpdb->query($sql);
|
108 |
-
}
|
109 |
|
110 |
-
|
111 |
-
|
|
|
112 |
|
113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
unset($options["disable_cimy_fieldvalue"]);
|
115 |
|
116 |
-
|
117 |
-
$options[
|
118 |
}
|
119 |
-
|
|
|
|
|
120 |
if ($is_mu)
|
121 |
update_site_option($cimy_uef_options, $options);
|
122 |
else
|
@@ -149,12 +163,13 @@ function cimy_plugin_install () {
|
|
149 |
}
|
150 |
|
151 |
function cimy_manage_db($command) {
|
152 |
-
global $wpdb, $wpdb_data_table, $wpdb_wp_fields_table, $wpdb_fields_table, $cimy_uef_options_descr, $cimy_uef_options, $cimy_uef_version, $is_mu;
|
153 |
|
154 |
if (!cimy_check_admin('activate_plugins'))
|
155 |
return;
|
156 |
-
|
157 |
$options = array(
|
|
|
158 |
'users_per_page' => 50,
|
159 |
'items_per_fieldset' => 5,
|
160 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
1 |
<?php
|
2 |
|
3 |
function cimy_plugin_install () {
|
4 |
+
// for WP >= 2.5 when adding a global here need to be added also to main global
|
5 |
+
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $is_mu, $cuef_upload_path, $cimy_uef_domain;
|
6 |
|
7 |
if (!cimy_check_admin('activate_plugins'))
|
8 |
return;
|
31 |
if ( ! empty($wpdb->collate) )
|
32 |
$charset_collate .= " COLLATE $wpdb->collate";
|
33 |
}
|
34 |
+
|
35 |
if ($force_update) {
|
36 |
+
if (version_compare($options['version'], "0.9.1", "<=") === true) {
|
37 |
+
unset($options['show_buggy_ie_warning']);
|
38 |
+
}
|
|
|
39 |
|
40 |
+
if (version_compare($options['version'], "1.0.0-beta1", "<=") === true) {
|
41 |
+
$sql = "RENAME TABLE ".$old_wpdb_fields_table." TO ".$wpdb_fields_table;
|
42 |
+
$wpdb->query($sql);
|
43 |
+
|
44 |
+
$sql = "RENAME TABLE ".$old_wpdb_data_table." TO ".$wpdb_data_table;
|
45 |
+
$wpdb->query($sql);
|
46 |
|
47 |
+
$options['wp_hidden_fields'] = array();
|
48 |
+
|
49 |
+
// convert all html entity to normal chars
|
50 |
+
$sql = "SELECT * FROM ".$wpdb_fields_table;
|
51 |
+
$fields = $wpdb->get_results($sql, ARRAY_A);
|
52 |
+
|
53 |
+
foreach ($fields as $field) {
|
54 |
+
$id = $field['ID'];
|
55 |
+
$name = $wpdb->escape(html_entity_decode($field['NAME'], ENT_QUOTES, "UTF-8"));
|
56 |
+
$label = $wpdb->escape(html_entity_decode($field['LABEL'], ENT_QUOTES, "UTF-8"));
|
57 |
+
$desc = $wpdb->escape(html_entity_decode($field['DESCRIPTION'], ENT_QUOTES, "UTF-8"));
|
58 |
+
$value = $wpdb->escape(html_entity_decode($field['VALUE'], ENT_QUOTES, "UTF-8"));
|
59 |
|
60 |
+
$rules = unserialize($field['RULES']);
|
61 |
+
$rules['equal_to'] = html_entity_decode($rules['equal_to'], ENT_QUOTES, "UTF-8");
|
62 |
+
$rules = $wpdb->escape(serialize($rules));
|
63 |
|
64 |
+
$sql = "UPDATE ".$wpdb_fields_table." SET name='".$name."', value='".$value."', description='".$desc."', label='".$label."', rules='".$rules."' WHERE ID=".$id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
+
$wpdb->query($sql);
|
67 |
+
}
|
68 |
+
}
|
69 |
+
|
70 |
+
if (version_compare($options['version'], "1.1.0-rc1", "<=") === true) {
|
71 |
+
$sql = "SELECT ID FROM ".$wpdb_fields_table." WHERE TYPE='picture'";
|
72 |
+
$f_pictures = $wpdb->get_results($sql, ARRAY_A);
|
73 |
+
|
74 |
+
if (isset($f_pictures)) {
|
75 |
+
if ($f_pictures != NULL) {
|
76 |
+
foreach ($f_pictures as $f_picture) {
|
77 |
+
$sql = "SELECT VALUE FROM ".$wpdb_data_table." WHERE FIELD_ID=".$f_picture['ID'];
|
78 |
+
$p_filenames = $wpdb->get_results($sql, ARRAY_A);
|
79 |
+
|
80 |
+
if (isset($p_filenames)) {
|
81 |
+
if ($p_filenames != NULL) {
|
82 |
+
foreach ($p_filenames as $p_filename) {
|
83 |
+
$path_pieces = explode("/", $p_filename['VALUE']);
|
84 |
+
$p_filename = basename($p_filename['VALUE']);
|
85 |
+
$user_login = array_slice($path_pieces, -2, 1);
|
86 |
+
|
87 |
+
$p_oldfilename_t = $cuef_upload_path.$user_login[0]."/".cimy_get_thumb_path($p_filename, true);
|
88 |
+
$p_newfilename_t = $cuef_upload_path.$user_login[0]."/".cimy_get_thumb_path($p_filename, false);
|
89 |
+
|
90 |
+
if (is_file($p_oldfilename_t))
|
91 |
+
rename($p_oldfilename_t, $p_newfilename_t);
|
92 |
}
|
93 |
}
|
94 |
}
|
95 |
}
|
96 |
}
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
+
if (version_compare($options['version'], "1.1.0", "<=") === true) {
|
101 |
+
if ($charset_collate != "") {
|
102 |
+
$sql = "ALTER TABLE ".$wpdb_fields_table.$charset_collate;
|
103 |
+
$wpdb->query($sql);
|
104 |
|
105 |
+
$sql = "ALTER TABLE ".$wpdb_wp_fields_table.$charset_collate;
|
106 |
+
$wpdb->query($sql);
|
107 |
+
|
108 |
+
$sql = "ALTER TABLE ".$wpdb_data_table.$charset_collate;
|
109 |
+
$wpdb->query($sql);
|
110 |
+
}
|
111 |
+
}
|
|
|
|
|
|
|
|
|
112 |
|
113 |
+
if (version_compare($options['version'], "1.3.0-beta1", "<=") === true) {
|
114 |
+
$options["users_per_page"] = 50;
|
115 |
+
}
|
116 |
|
117 |
+
if (version_compare($options['version'], "1.3.0-beta2", "<=") === true) {
|
118 |
+
unset($options["disable_cimy_fieldvalue"]);
|
119 |
+
}
|
120 |
+
|
121 |
+
if (version_compare($options['version'], "1.3.1", "<=") === true) {
|
122 |
+
$options["extra_fields_title"] = __("Extra Fields", $cimy_uef_domain);
|
123 |
+
|
124 |
+
// Added again since after cleanup DB migration code in v1.3.0-beta2 was buggy!
|
125 |
+
if (isset($options["disable_cimy_fieldvalue"]))
|
126 |
unset($options["disable_cimy_fieldvalue"]);
|
127 |
|
128 |
+
if (!isset($options["users_per_page"]))
|
129 |
+
$options["users_per_page"] = 50;
|
130 |
}
|
131 |
+
|
132 |
+
$options['version'] = $cimy_uef_version;
|
133 |
+
|
134 |
if ($is_mu)
|
135 |
update_site_option($cimy_uef_options, $options);
|
136 |
else
|
163 |
}
|
164 |
|
165 |
function cimy_manage_db($command) {
|
166 |
+
global $wpdb, $wpdb_data_table, $wpdb_wp_fields_table, $wpdb_fields_table, $cimy_uef_options_descr, $cimy_uef_options, $cimy_uef_version, $is_mu, $cimy_uef_domain;
|
167 |
|
168 |
if (!cimy_check_admin('activate_plugins'))
|
169 |
return;
|
170 |
+
|
171 |
$options = array(
|
172 |
+
'extra_fields_title' => __("Extra Fields", $cimy_uef_domain),
|
173 |
'users_per_page' => 50,
|
174 |
'items_per_fieldset' => 5,
|
175 |
'aue_hidden_fields' => array('website', 'posts', 'email'),
|
cimy_uef_options.php
CHANGED
@@ -1,16 +1,18 @@
|
|
1 |
<?php
|
2 |
|
3 |
function cimy_save_options() {
|
4 |
-
global $wpdb, $cimy_uef_version, $cimy_uef_options, $wpdb_wp_fields_table, $max_length_fieldset_value, $cimy_uef_domain, $is_mu, $wp_hidden_fields;
|
5 |
|
6 |
if (!cimy_check_admin('manage_options'))
|
7 |
return;
|
8 |
|
9 |
-
if (isset($_POST['force_activation']))
|
10 |
cimy_plugin_install();
|
|
|
|
|
11 |
|
12 |
$results = array();
|
13 |
-
$
|
14 |
|
15 |
if ($is_mu)
|
16 |
$options = get_site_option($cimy_uef_options);
|
@@ -28,10 +30,13 @@ function cimy_save_options() {
|
|
28 |
$options['items_per_fieldset'] = $items_per_fieldset;
|
29 |
else
|
30 |
$options['items_per_fieldset'] = 1;
|
31 |
-
|
|
|
|
|
|
|
32 |
$options['fieldset_title'] = stripslashes($_POST['fieldset_title']);
|
33 |
$options['fieldset_title'] = substr($options['fieldset_title'], 0, $max_length_fieldset_value);
|
34 |
-
|
35 |
if (isset($_POST['db_wp_fields_check'])) {
|
36 |
switch ($_POST['db_wp_fields']) {
|
37 |
case 'empty':
|
@@ -322,7 +327,7 @@ function cimy_show_options_notembedded() {
|
|
322 |
}
|
323 |
|
324 |
function cimy_show_options($results, $embedded) {
|
325 |
-
global $wpdb, $wpdb_wp_fields_table, $wpdb_fields_table, $wpdb_data_table, $cimy_uef_options, $max_length_fieldset_value, $cimy_uef_name, $cimy_uef_url, $cimy_uef_version, $cimy_uef_domain, $is_mu, $cimy_top_menu;
|
326 |
|
327 |
if (!cimy_check_admin('manage_options'))
|
328 |
return;
|
@@ -539,15 +544,23 @@ function cimy_show_options($results, $embedded) {
|
|
539 |
</tr>
|
540 |
<tr>
|
541 |
<th scope="row"><input type="checkbox" name="force_activation" value="1" /> <?php _e("Force tables creation", $cimy_uef_domain); ?></th>
|
542 |
-
<td
|
|
|
|
|
|
|
|
|
543 |
</tr>
|
544 |
</table>
|
545 |
<br />
|
546 |
<h3><?php _e("User Profile", $cimy_uef_domain); ?></h3>
|
547 |
<table class="form-table">
|
548 |
<tr>
|
549 |
-
<th scope="row" width="40%"><?php _e("
|
550 |
-
<td width="60%"><input type="text" name="
|
|
|
|
|
|
|
|
|
551 |
</tr>
|
552 |
<tr>
|
553 |
<th scope="row"><?php _e("Fieldset's titles, separates with comma", $cimy_uef_domain); ?><br /><?php _e("example: title1,title2,title3", $cimy_uef_domain); ?></th>
|
1 |
<?php
|
2 |
|
3 |
function cimy_save_options() {
|
4 |
+
global $wpdb, $cimy_uef_version, $cimy_uef_options, $wpdb_wp_fields_table, $max_length_fieldset_value, $cimy_uef_domain, $is_mu, $wp_hidden_fields, $max_length_extra_fields_title;
|
5 |
|
6 |
if (!cimy_check_admin('manage_options'))
|
7 |
return;
|
8 |
|
9 |
+
if (isset($_POST['force_activation'])) {
|
10 |
cimy_plugin_install();
|
11 |
+
return;
|
12 |
+
}
|
13 |
|
14 |
$results = array();
|
15 |
+
$do_not_save_options = false;
|
16 |
|
17 |
if ($is_mu)
|
18 |
$options = get_site_option($cimy_uef_options);
|
30 |
$options['items_per_fieldset'] = $items_per_fieldset;
|
31 |
else
|
32 |
$options['items_per_fieldset'] = 1;
|
33 |
+
|
34 |
+
$options['extra_fields_title'] = stripslashes($_POST['extra_fields_title']);
|
35 |
+
$options['extra_fields_title'] = substr($options['extra_fields_title'], 0, $max_length_extra_fields_title);
|
36 |
+
|
37 |
$options['fieldset_title'] = stripslashes($_POST['fieldset_title']);
|
38 |
$options['fieldset_title'] = substr($options['fieldset_title'], 0, $max_length_fieldset_value);
|
39 |
+
|
40 |
if (isset($_POST['db_wp_fields_check'])) {
|
41 |
switch ($_POST['db_wp_fields']) {
|
42 |
case 'empty':
|
327 |
}
|
328 |
|
329 |
function cimy_show_options($results, $embedded) {
|
330 |
+
global $wpdb, $wpdb_wp_fields_table, $wpdb_fields_table, $wpdb_data_table, $cimy_uef_options, $max_length_fieldset_value, $cimy_uef_name, $cimy_uef_url, $cimy_uef_version, $cimy_uef_domain, $is_mu, $cimy_top_menu, $max_length_extra_fields_title;
|
331 |
|
332 |
if (!cimy_check_admin('manage_options'))
|
333 |
return;
|
544 |
</tr>
|
545 |
<tr>
|
546 |
<th scope="row"><input type="checkbox" name="force_activation" value="1" /> <?php _e("Force tables creation", $cimy_uef_domain); ?></th>
|
547 |
+
<td>
|
548 |
+
<?php
|
549 |
+
_e("equivalent to de-activate and activate the plug-in; no other operation will be performed", $cimy_uef_domain);
|
550 |
+
?>
|
551 |
+
</td>
|
552 |
</tr>
|
553 |
</table>
|
554 |
<br />
|
555 |
<h3><?php _e("User Profile", $cimy_uef_domain); ?></h3>
|
556 |
<table class="form-table">
|
557 |
<tr>
|
558 |
+
<th scope="row" width="40%"><?php _e("Extra Fields section title", $cimy_uef_domain); ?></th>
|
559 |
+
<td width="60%"><input type="text" name="extra_fields_title" value="<?php echo $options['extra_fields_title']; ?>" size="35" maxlength="<?php echo $max_length_extra_fields_title; ?>" /></td>
|
560 |
+
</tr>
|
561 |
+
<tr>
|
562 |
+
<th scope="row"><?php _e("Items per fieldset", $cimy_uef_domain); ?></th>
|
563 |
+
<td><input type="text" name="items_per_fieldset" value="<?php echo $options['items_per_fieldset']; ?>" size="3" maxlength="3" /></td>
|
564 |
</tr>
|
565 |
<tr>
|
566 |
<th scope="row"><?php _e("Fieldset's titles, separates with comma", $cimy_uef_domain); ?><br /><?php _e("example: title1,title2,title3", $cimy_uef_domain); ?></th>
|
cimy_uef_profile.php
CHANGED
@@ -30,9 +30,10 @@ function cimy_extract_ExtraFields() {
|
|
30 |
|
31 |
echo $start_cimy_uef_comment;
|
32 |
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
36 |
|
37 |
foreach ($extra_fields as $thisField) {
|
38 |
|
30 |
|
31 |
echo $start_cimy_uef_comment;
|
32 |
|
33 |
+
if ($options['extra_fields_title'] != "") {
|
34 |
+
echo "<br clear=\"all\" />\n";
|
35 |
+
echo "<h2>".$options['extra_fields_title']."</h2>\n";
|
36 |
+
}
|
37 |
|
38 |
foreach ($extra_fields as $thisField) {
|
39 |
|
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: 1.3.
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
@@ -35,7 +35,7 @@ The full copy of the GNU General Public License is available here: http://www.gn
|
|
35 |
*/
|
36 |
|
37 |
// added for WordPress >=2.5 compatibility
|
38 |
-
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $is_mu, $cuef_upload_path;
|
39 |
|
40 |
if (!stristr($wp_version, "mu") === FALSE) {
|
41 |
$is_mu = true;
|
@@ -154,7 +154,7 @@ require_once($cuef_plugin_dir.'/cimy_uef_options.php');
|
|
154 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
155 |
|
156 |
$cimy_uef_name = "Cimy User Extra Fields";
|
157 |
-
$cimy_uef_version = "1.3.
|
158 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
159 |
|
160 |
$start_cimy_uef_comment = "<!--\n";
|
@@ -371,6 +371,7 @@ $max_length_label = 5000;
|
|
371 |
$max_length_desc = 5000;
|
372 |
$max_length_value = 5000;
|
373 |
$max_length_fieldset_value = 1024;
|
|
|
374 |
|
375 |
// max size in KiloByte
|
376 |
$max_size_file = 20000;
|
@@ -432,7 +433,7 @@ function cimy_uef_avatar_filter($avatar, $id_or_email, $size, $default, $alt="")
|
|
432 |
return $avatar;
|
433 |
|
434 |
// ok we have one avatar field, who is requesting?
|
435 |
-
$sql = sprintf("SELECT ID, user_login FROM
|
436 |
$res = $wpdb->get_results($sql);
|
437 |
|
438 |
$id = $res[0]->ID;
|
@@ -490,7 +491,7 @@ function cimy_uef_i18n_setup() {
|
|
490 |
function cimy_admin_menu_custom() {
|
491 |
global $cimy_uef_name, $cimy_uef_domain, $is_mu, $cimy_top_menu;
|
492 |
|
493 |
-
if (!cimy_check_admin('
|
494 |
return;
|
495 |
|
496 |
if (isset($cimy_top_menu)) {
|
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: 1.3.2
|
7 |
Author: Marco Cimmino
|
8 |
Author URI: mailto:cimmino.marco@gmail.com
|
9 |
*/
|
35 |
*/
|
36 |
|
37 |
// added for WordPress >=2.5 compatibility
|
38 |
+
global $wpdb, $old_wpdb_data_table, $wpdb_data_table, $old_wpdb_fields_table, $wpdb_fields_table, $wpdb_wp_fields_table, $cimy_uef_options, $cimy_uef_version, $is_mu, $cuef_upload_path, $cimy_uef_domain;
|
39 |
|
40 |
if (!stristr($wp_version, "mu") === FALSE) {
|
41 |
$is_mu = true;
|
154 |
require_once($cuef_plugin_dir.'/cimy_uef_admin.php');
|
155 |
|
156 |
$cimy_uef_name = "Cimy User Extra Fields";
|
157 |
+
$cimy_uef_version = "1.3.2";
|
158 |
$cimy_uef_url = "http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/";
|
159 |
|
160 |
$start_cimy_uef_comment = "<!--\n";
|
371 |
$max_length_desc = 5000;
|
372 |
$max_length_value = 5000;
|
373 |
$max_length_fieldset_value = 1024;
|
374 |
+
$max_length_extra_fields_title = 100;
|
375 |
|
376 |
// max size in KiloByte
|
377 |
$max_size_file = 20000;
|
433 |
return $avatar;
|
434 |
|
435 |
// ok we have one avatar field, who is requesting?
|
436 |
+
$sql = sprintf("SELECT ID, user_login FROM %s WHERE user_email='%s' LIMIT 1", $wpdb->users, $wpdb->escape($id_or_email));
|
437 |
$res = $wpdb->get_results($sql);
|
438 |
|
439 |
$id = $res[0]->ID;
|
491 |
function cimy_admin_menu_custom() {
|
492 |
global $cimy_uef_name, $cimy_uef_domain, $is_mu, $cimy_top_menu;
|
493 |
|
494 |
+
if (!cimy_check_admin('manage_options'))
|
495 |
return;
|
496 |
|
497 |
if (isset($cimy_top_menu)) {
|
langs/cimy_uef-bg_BG.mo
CHANGED
Binary file
|
langs/cimy_uef-bg_BG.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Допълнителни полета"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Моля качете снимка с някое от тези разширения"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Изтрий поле"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Поднови поле"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Покажи Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Настройки"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Полета"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Автори & Потребители с разширения"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "А&П с разширения"
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Въведеното име е в базата данни, променето го"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Добави друго поле"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "УСПЕХ"
|
348 |
|
@@ -490,6 +484,13 @@ msgstr "Изчисти"
|
|
490 |
msgid "WordPress Fields"
|
491 |
msgstr "WordPress полета"
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
494 |
msgid "None!"
|
495 |
msgstr "Няма!"
|
@@ -569,195 +570,204 @@ msgstr "Виж постовете на този автор"
|
|
569 |
msgid "e-mail: %s"
|
570 |
msgstr "e-mail: %s"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
573 |
msgid "WordPress Fields table emptied"
|
574 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
577 |
msgid "WordPress Fields table deleted"
|
578 |
msgstr "Таблицата с WordPress полета е изтрита"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
581 |
msgid "Extra Fields table emptied"
|
582 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
585 |
msgid "Extra Fields table deleted"
|
586 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
589 |
msgid "Users Data table emptied"
|
590 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
593 |
msgid "Users Data table deleted"
|
594 |
msgstr "Таблицата с потребителски данни е изтрита"
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
597 |
msgid "Options set to default values"
|
598 |
msgstr "Вариантите са сменени по подразбиране"
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
601 |
msgid "Options deleted"
|
602 |
msgstr "Вариантите са изтрити"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
605 |
msgid "Options changed"
|
606 |
msgstr "Вариантите са променени"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
609 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
610 |
msgid "Save Changes"
|
611 |
msgstr "Запази промените"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
614 |
msgid "General"
|
615 |
msgstr "Общи"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
618 |
msgid "installed is"
|
619 |
msgstr "инсталирано е"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
622 |
msgid "OPTIONS DELETED!"
|
623 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
626 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
627 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
630 |
msgid "Database"
|
631 |
msgstr "База данни"
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
636 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
637 |
msgid "select action"
|
638 |
msgstr "избери действие"
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
641 |
msgid "Default values"
|
642 |
msgstr "Стойност по подразбиране"
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
647 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
648 |
msgid "Delete"
|
649 |
msgstr "Изтрий"
|
650 |
|
651 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
654 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
655 |
msgid "NOT PRESENT"
|
656 |
msgstr "НЕ СЪЩЕСТВУВА"
|
657 |
|
658 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
659 |
msgid "WordPress Fields table"
|
660 |
msgstr "Таблица с WordPress полета"
|
661 |
|
662 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
663 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
664 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
665 |
msgid "Empty"
|
666 |
msgstr "Празно"
|
667 |
|
668 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
669 |
msgid "Extra Fields table"
|
670 |
msgstr "Таблица с допълнителни полета"
|
671 |
|
672 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
673 |
msgid "Users Data table"
|
674 |
msgstr "Таблица с потребителски данни"
|
675 |
|
676 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
677 |
msgid "all data inserted by users in all and only extra fields"
|
678 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
679 |
|
680 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
681 |
msgid "Force tables creation"
|
682 |
msgstr "Задължително създаване на таблица"
|
683 |
|
684 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
685 |
msgid "User Profile"
|
686 |
msgstr "Потребителски профил"
|
687 |
|
688 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
689 |
msgid "Items per fieldset"
|
690 |
msgstr "Опции по колекция"
|
691 |
|
692 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
693 |
msgid "Fieldset's titles, separates with comma"
|
694 |
msgstr "Заглавията на колекция разделени със запетайка"
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
697 |
msgid "example: title1,title2,title3"
|
698 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
701 |
msgid "Hide username field"
|
702 |
msgstr "Скрий полето за потребителско име"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
705 |
msgid "Hide name field"
|
706 |
msgstr "Скрий полето за име"
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
709 |
msgid "Hide email field"
|
710 |
msgstr "Скрий полето за email"
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
713 |
msgid "Hide role field"
|
714 |
msgstr "Скрий полето за роля"
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
717 |
msgid "Hide website field"
|
718 |
msgstr "Скрий полето за интернет сайт"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
721 |
msgid "Hide n. posts field"
|
722 |
msgstr "Скрий полето за брой постове"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
725 |
msgid "WordPress hidden fields"
|
726 |
msgstr "Скрити полета на WordPress"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
729 |
msgid "Show password"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
733 |
msgid "Show first name"
|
734 |
msgstr "Покажи първото име"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
737 |
msgid "Show last name"
|
738 |
msgstr "Покажи второто име"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
741 |
msgid "Show nickname"
|
742 |
msgstr "Покажи потребителското име"
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
745 |
msgid "Show website"
|
746 |
msgstr "Покажи интернет сайта"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
749 |
msgid "Show AIM"
|
750 |
msgstr "Покажи AIM"
|
751 |
|
752 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
753 |
msgid "Show Yahoo IM"
|
754 |
msgstr "Покажи Yahoo IM"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
757 |
msgid "Show Jabber / Google Talk"
|
758 |
msgstr "Покажи Jabber / Google Talk"
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
761 |
msgid "Show Biographical Info"
|
762 |
msgstr ""
|
763 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:30+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"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Моля качете снимка с някое от тези разширения"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Изтрий поле"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Поднови поле"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Настройки"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Полета"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Автори & Потребители с разширения"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "А&П с разширения"
|
186 |
|
331 |
msgstr "Въведеното име е в базата данни, променето го"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Добави друго поле"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "УСПЕХ"
|
342 |
|
484 |
msgid "WordPress Fields"
|
485 |
msgstr "WordPress полета"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
491 |
+
msgid "Extra Fields"
|
492 |
+
msgstr "Допълнителни полета"
|
493 |
+
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Няма!"
|
570 |
msgid "e-mail: %s"
|
571 |
msgstr "e-mail: %s"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
574 |
msgid "WordPress Fields table emptied"
|
575 |
msgstr "Таблицата с WordPress полета е изпразнена"
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
578 |
msgid "WordPress Fields table deleted"
|
579 |
msgstr "Таблицата с WordPress полета е изтрита"
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
582 |
msgid "Extra Fields table emptied"
|
583 |
msgstr "Таблицата с допълнителни полета е изпразнена"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
586 |
msgid "Extra Fields table deleted"
|
587 |
msgstr "Таблицата с допълнителни полета е изтрита"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
590 |
msgid "Users Data table emptied"
|
591 |
msgstr "Таблицата с потребителски данни е изпразнена"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
594 |
msgid "Users Data table deleted"
|
595 |
msgstr "Таблицата с потребителски данни е изтрита"
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
598 |
msgid "Options set to default values"
|
599 |
msgstr "Вариантите са сменени по подразбиране"
|
600 |
|
601 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
602 |
msgid "Options deleted"
|
603 |
msgstr "Вариантите са изтрити"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
606 |
msgid "Options changed"
|
607 |
msgstr "Вариантите са променени"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
610 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
611 |
msgid "Save Changes"
|
612 |
msgstr "Запази промените"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
615 |
msgid "General"
|
616 |
msgstr "Общи"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
619 |
msgid "installed is"
|
620 |
msgstr "инсталирано е"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
623 |
msgid "OPTIONS DELETED!"
|
624 |
msgstr "ВАРИАНТИТЕ СА ИЗТРИТИ!"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
627 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
628 |
msgstr "ВЕРСИТЕ НЕ ПАСВАТ! Това е защото ти не си дезактивирал и активирал добавката след подновяване! Това може да създаде проблеми..."
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
631 |
msgid "Database"
|
632 |
msgstr "База данни"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
636 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
637 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
638 |
msgid "select action"
|
639 |
msgstr "избери действие"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
642 |
msgid "Default values"
|
643 |
msgstr "Стойност по подразбиране"
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
647 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
648 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
649 |
msgid "Delete"
|
650 |
msgstr "Изтрий"
|
651 |
|
652 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
654 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
655 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
656 |
msgid "NOT PRESENT"
|
657 |
msgstr "НЕ СЪЩЕСТВУВА"
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
660 |
msgid "WordPress Fields table"
|
661 |
msgstr "Таблица с WordPress полета"
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
664 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
665 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
666 |
msgid "Empty"
|
667 |
msgstr "Празно"
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
670 |
msgid "Extra Fields table"
|
671 |
msgstr "Таблица с допълнителни полета"
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
674 |
msgid "Users Data table"
|
675 |
msgstr "Таблица с потребителски данни"
|
676 |
|
677 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
678 |
msgid "all data inserted by users in all and only extra fields"
|
679 |
msgstr "всички данни въведени от потребителите във всички и само допълнители полета"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
682 |
msgid "Force tables creation"
|
683 |
msgstr "Задължително създаване на таблица"
|
684 |
|
685 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
686 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
690 |
msgid "User Profile"
|
691 |
msgstr "Потребителски профил"
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
694 |
+
#, fuzzy
|
695 |
+
msgid "Extra Fields section title"
|
696 |
+
msgstr "Таблица с допълнителни полета"
|
697 |
+
|
698 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
699 |
msgid "Items per fieldset"
|
700 |
msgstr "Опции по колекция"
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
703 |
msgid "Fieldset's titles, separates with comma"
|
704 |
msgstr "Заглавията на колекция разделени със запетайка"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
707 |
msgid "example: title1,title2,title3"
|
708 |
msgstr "пример: заглавие1,заглавие2,заглавие3"
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
711 |
msgid "Hide username field"
|
712 |
msgstr "Скрий полето за потребителско име"
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
715 |
msgid "Hide name field"
|
716 |
msgstr "Скрий полето за име"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
719 |
msgid "Hide email field"
|
720 |
msgstr "Скрий полето за email"
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
723 |
msgid "Hide role field"
|
724 |
msgstr "Скрий полето за роля"
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
727 |
msgid "Hide website field"
|
728 |
msgstr "Скрий полето за интернет сайт"
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
731 |
msgid "Hide n. posts field"
|
732 |
msgstr "Скрий полето за брой постове"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
735 |
msgid "WordPress hidden fields"
|
736 |
msgstr "Скрити полета на WordPress"
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
739 |
msgid "Show password"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
743 |
msgid "Show first name"
|
744 |
msgstr "Покажи първото име"
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
747 |
msgid "Show last name"
|
748 |
msgstr "Покажи второто име"
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
751 |
msgid "Show nickname"
|
752 |
msgstr "Покажи потребителското име"
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
755 |
msgid "Show website"
|
756 |
msgstr "Покажи интернет сайта"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
759 |
msgid "Show AIM"
|
760 |
msgstr "Покажи AIM"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
763 |
msgid "Show Yahoo IM"
|
764 |
msgstr "Покажи Yahoo IM"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
767 |
msgid "Show Jabber / Google Talk"
|
768 |
msgstr "Покажи Jabber / Google Talk"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
771 |
msgid "Show Biographical Info"
|
772 |
msgstr ""
|
773 |
|
langs/cimy_uef-da_DK.mo
CHANGED
Binary file
|
langs/cimy_uef-da_DK.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Ekstra felter"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Slet felt"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Opdater felt"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Vis Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Indstillinger"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Felter"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Bruger liste"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "Bruger liste"
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Tilføj et nyt felt"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "GENNEMFØRT"
|
348 |
|
@@ -490,6 +484,13 @@ msgstr "Slet"
|
|
490 |
msgid "WordPress Fields"
|
491 |
msgstr "WordPress felter"
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
494 |
msgid "None!"
|
495 |
msgstr "Ingen!"
|
@@ -570,196 +571,205 @@ msgstr "Vis denne brugers indlæg"
|
|
570 |
msgid "e-mail: %s"
|
571 |
msgstr "e-mail: %s"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
574 |
msgid "WordPress Fields table emptied"
|
575 |
msgstr "WordPress tabel tømt"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
578 |
msgid "WordPress Fields table deleted"
|
579 |
msgstr "WordPress tabel slettet"
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
582 |
msgid "Extra Fields table emptied"
|
583 |
msgstr "Tabel med ekstra felter tømt"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
586 |
msgid "Extra Fields table deleted"
|
587 |
msgstr "Tabel med ekstra felter slettet"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
590 |
msgid "Users Data table emptied"
|
591 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
594 |
msgid "Users Data table deleted"
|
595 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
598 |
msgid "Options set to default values"
|
599 |
msgstr "Indstillinger nulstillet"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
602 |
msgid "Options deleted"
|
603 |
msgstr "Indstillinger slettet"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
606 |
msgid "Options changed"
|
607 |
msgstr "Indstillinger ændret"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
610 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
611 |
msgid "Save Changes"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
615 |
msgid "General"
|
616 |
msgstr "Generelle indstillinger"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
619 |
msgid "installed is"
|
620 |
msgstr "installeret er"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
623 |
msgid "OPTIONS DELETED!"
|
624 |
msgstr "INDSTILLINGER SLETTET!"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
627 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
628 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
631 |
msgid "Database"
|
632 |
msgstr "Database administration"
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
636 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
637 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
638 |
msgid "select action"
|
639 |
msgstr "Vælg handling"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
642 |
msgid "Default values"
|
643 |
msgstr "Standard værdier"
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
647 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
648 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
649 |
msgid "Delete"
|
650 |
msgstr "Slet"
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
654 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
655 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
656 |
msgid "NOT PRESENT"
|
657 |
msgstr "FINDES IKKE"
|
658 |
|
659 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
660 |
msgid "WordPress Fields table"
|
661 |
msgstr "WordPress tabel"
|
662 |
|
663 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
664 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
665 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
666 |
msgid "Empty"
|
667 |
msgstr "Tøm"
|
668 |
|
669 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
670 |
msgid "Extra Fields table"
|
671 |
msgstr "Tabel med ekstra felter"
|
672 |
|
673 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
674 |
msgid "Users Data table"
|
675 |
msgstr "Tabel for brugerdata"
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
678 |
msgid "all data inserted by users in all and only extra fields"
|
679 |
msgstr "al brugerdata i alle ekstra felter"
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
682 |
msgid "Force tables creation"
|
683 |
msgstr "Gennemtving oprettelse af tabeller"
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
686 |
msgid "User Profile"
|
687 |
msgstr "Brugerprofil"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
690 |
msgid "Items per fieldset"
|
691 |
msgstr "Objekter pr. feltrække"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
694 |
msgid "Fieldset's titles, separates with comma"
|
695 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
698 |
msgid "example: title1,title2,title3"
|
699 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
702 |
msgid "Hide username field"
|
703 |
msgstr "Skjul brugernavn"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
706 |
msgid "Hide name field"
|
707 |
msgstr "Skjul fornavn"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
710 |
msgid "Hide email field"
|
711 |
msgstr "Skjul e-mailadresse"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
714 |
#, fuzzy
|
715 |
msgid "Hide role field"
|
716 |
msgstr "Skjul fornavn"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
719 |
msgid "Hide website field"
|
720 |
msgstr "Skjul website"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
723 |
msgid "Hide n. posts field"
|
724 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
727 |
msgid "WordPress hidden fields"
|
728 |
msgstr "Wordpress skjulte felter"
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
731 |
msgid "Show password"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
735 |
msgid "Show first name"
|
736 |
msgstr "Vis fornavn"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
739 |
msgid "Show last name"
|
740 |
msgstr "Vis Efternavn"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
743 |
msgid "Show nickname"
|
744 |
msgstr "Vis Kaldenavn"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
747 |
msgid "Show website"
|
748 |
msgstr "Website"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
751 |
msgid "Show AIM"
|
752 |
msgstr "Vis AIM"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
755 |
msgid "Show Yahoo IM"
|
756 |
msgstr "Vis Yahoo IM"
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
759 |
msgid "Show Jabber / Google Talk"
|
760 |
msgstr "Vis Jabber / Google Talk"
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
763 |
msgid "Show Biographical Info"
|
764 |
msgstr ""
|
765 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:30+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Upload venligst et billede af en af følgende filtyper"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Slet felt"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Opdater felt"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Indstillinger"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Felter"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Bruger liste"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "Bruger liste"
|
186 |
|
331 |
msgstr "Det valgte navn findes allerede, vælg venligst et andet"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Tilføj et nyt felt"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "GENNEMFØRT"
|
342 |
|
484 |
msgid "WordPress Fields"
|
485 |
msgstr "WordPress felter"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
491 |
+
msgid "Extra Fields"
|
492 |
+
msgstr "Ekstra felter"
|
493 |
+
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Ingen!"
|
571 |
msgid "e-mail: %s"
|
572 |
msgstr "e-mail: %s"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
575 |
msgid "WordPress Fields table emptied"
|
576 |
msgstr "WordPress tabel tømt"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
579 |
msgid "WordPress Fields table deleted"
|
580 |
msgstr "WordPress tabel slettet"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
583 |
msgid "Extra Fields table emptied"
|
584 |
msgstr "Tabel med ekstra felter tømt"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
587 |
msgid "Extra Fields table deleted"
|
588 |
msgstr "Tabel med ekstra felter slettet"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
591 |
msgid "Users Data table emptied"
|
592 |
msgstr "Tabellen med brugerdata er blevet tømt"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
595 |
msgid "Users Data table deleted"
|
596 |
msgstr "Tabellen med brugerdata er blevet slettet"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
599 |
msgid "Options set to default values"
|
600 |
msgstr "Indstillinger nulstillet"
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
603 |
msgid "Options deleted"
|
604 |
msgstr "Indstillinger slettet"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
607 |
msgid "Options changed"
|
608 |
msgstr "Indstillinger ændret"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
611 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
612 |
msgid "Save Changes"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
616 |
msgid "General"
|
617 |
msgstr "Generelle indstillinger"
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
620 |
msgid "installed is"
|
621 |
msgstr "installeret er"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
624 |
msgid "OPTIONS DELETED!"
|
625 |
msgstr "INDSTILLINGER SLETTET!"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
628 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
629 |
msgstr "VERSIONSKONFLIKT! Husk at deaktivere og genaktivere plugin'et efter opdatering!"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
632 |
msgid "Database"
|
633 |
msgstr "Database administration"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
636 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
637 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
638 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
639 |
msgid "select action"
|
640 |
msgstr "Vælg handling"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
643 |
msgid "Default values"
|
644 |
msgstr "Standard værdier"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
647 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
648 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
649 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
650 |
msgid "Delete"
|
651 |
msgstr "Slet"
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
654 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
655 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
656 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
657 |
msgid "NOT PRESENT"
|
658 |
msgstr "FINDES IKKE"
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
661 |
msgid "WordPress Fields table"
|
662 |
msgstr "WordPress tabel"
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
665 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
666 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
667 |
msgid "Empty"
|
668 |
msgstr "Tøm"
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
671 |
msgid "Extra Fields table"
|
672 |
msgstr "Tabel med ekstra felter"
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
675 |
msgid "Users Data table"
|
676 |
msgstr "Tabel for brugerdata"
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
679 |
msgid "all data inserted by users in all and only extra fields"
|
680 |
msgstr "al brugerdata i alle ekstra felter"
|
681 |
|
682 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
683 |
msgid "Force tables creation"
|
684 |
msgstr "Gennemtving oprettelse af tabeller"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
687 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
691 |
msgid "User Profile"
|
692 |
msgstr "Brugerprofil"
|
693 |
|
694 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
695 |
+
#, fuzzy
|
696 |
+
msgid "Extra Fields section title"
|
697 |
+
msgstr "Tabel med ekstra felter"
|
698 |
+
|
699 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
700 |
msgid "Items per fieldset"
|
701 |
msgstr "Objekter pr. feltrække"
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
704 |
msgid "Fieldset's titles, separates with comma"
|
705 |
msgstr "Feltrækkernes titel, adkilt med komma"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
708 |
msgid "example: title1,title2,title3"
|
709 |
msgstr "F. eks.: Titel1,Titel2,Titel3"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
712 |
msgid "Hide username field"
|
713 |
msgstr "Skjul brugernavn"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
716 |
msgid "Hide name field"
|
717 |
msgstr "Skjul fornavn"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
720 |
msgid "Hide email field"
|
721 |
msgstr "Skjul e-mailadresse"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
724 |
#, fuzzy
|
725 |
msgid "Hide role field"
|
726 |
msgstr "Skjul fornavn"
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
729 |
msgid "Hide website field"
|
730 |
msgstr "Skjul website"
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
733 |
msgid "Hide n. posts field"
|
734 |
msgstr "Skjul angivelse af antal af brugerindlæg"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
737 |
msgid "WordPress hidden fields"
|
738 |
msgstr "Wordpress skjulte felter"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
741 |
msgid "Show password"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
745 |
msgid "Show first name"
|
746 |
msgstr "Vis fornavn"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
749 |
msgid "Show last name"
|
750 |
msgstr "Vis Efternavn"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
753 |
msgid "Show nickname"
|
754 |
msgstr "Vis Kaldenavn"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
757 |
msgid "Show website"
|
758 |
msgstr "Website"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
761 |
msgid "Show AIM"
|
762 |
msgstr "Vis AIM"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
765 |
msgid "Show Yahoo IM"
|
766 |
msgstr "Vis Yahoo IM"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
769 |
msgid "Show Jabber / Google Talk"
|
770 |
msgstr "Vis Jabber / Google Talk"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
773 |
msgid "Show Biographical Info"
|
774 |
msgstr ""
|
775 |
|
langs/cimy_uef-de_DE.mo
CHANGED
Binary file
|
langs/cimy_uef-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Zusätzliche Felder"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Bitte lade ein Bild mit einer der folgenden Optionen hoch"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Feld löschen"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Feld ändern"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Zeige Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Optionen"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Felder"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Autoren & Benutzer erweitert"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "A&B erweitert"
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Dieser Name ist bereits vorhanden, bitte wähle einen anderen"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Ein neues Feld hinzufügen"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "ERFOLGREICH"
|
348 |
|
@@ -490,6 +484,13 @@ msgstr "Löschen"
|
|
490 |
msgid "WordPress Fields"
|
491 |
msgstr "WordPress Felder"
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
494 |
msgid "None!"
|
495 |
msgstr "Keine!"
|
@@ -570,199 +571,208 @@ msgstr "Zeige Beiträge dieses Autors"
|
|
570 |
msgid "e-mail: %s"
|
571 |
msgstr "e-mail: %s"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
574 |
#, fuzzy
|
575 |
msgid "WordPress Fields table emptied"
|
576 |
msgstr "Tabelle Zusatzfelder geleert"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
579 |
#, fuzzy
|
580 |
msgid "WordPress Fields table deleted"
|
581 |
msgstr "Tabelle Zusatzfelder gelöscht"
|
582 |
|
583 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
584 |
msgid "Extra Fields table emptied"
|
585 |
msgstr "Tabelle Zusatzfelder geleert"
|
586 |
|
587 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
588 |
msgid "Extra Fields table deleted"
|
589 |
msgstr "Tabelle Zusatzfelder gelöscht"
|
590 |
|
591 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
592 |
msgid "Users Data table emptied"
|
593 |
msgstr "Tabelle Userdaten geleert"
|
594 |
|
595 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
596 |
msgid "Users Data table deleted"
|
597 |
msgstr "Tabelle Userdaten gelöscht"
|
598 |
|
599 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
600 |
msgid "Options set to default values"
|
601 |
msgstr "Optionen auf Grundeinstellungen gesetzt"
|
602 |
|
603 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
604 |
msgid "Options deleted"
|
605 |
msgstr "Optionen gelöscht"
|
606 |
|
607 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
608 |
msgid "Options changed"
|
609 |
msgstr "Opitionen geändert"
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
612 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
613 |
#, fuzzy
|
614 |
msgid "Save Changes"
|
615 |
msgstr "Regeln"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
618 |
msgid "General"
|
619 |
msgstr "Allgemein"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
622 |
msgid "installed is"
|
623 |
msgstr "installiert ist"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
626 |
msgid "OPTIONS DELETED!"
|
627 |
msgstr "OPTIONEN GELÖSCHT!"
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
630 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
631 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin vor dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
634 |
msgid "Database"
|
635 |
msgstr "Datenbasis"
|
636 |
|
637 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
638 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
639 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
640 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
641 |
msgid "select action"
|
642 |
msgstr "Wähle bei Bedarf:"
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
645 |
msgid "Default values"
|
646 |
msgstr "Werte in Grundeinstellung"
|
647 |
|
648 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
649 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
650 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
651 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
652 |
msgid "Delete"
|
653 |
msgstr "Löschen"
|
654 |
|
655 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
656 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
657 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
658 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
659 |
msgid "NOT PRESENT"
|
660 |
msgstr "NICHT VORHANDEN"
|
661 |
|
662 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
663 |
#, fuzzy
|
664 |
msgid "WordPress Fields table"
|
665 |
msgstr "Tabelle mit Zusatzfeldern"
|
666 |
|
667 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
668 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
669 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
670 |
msgid "Empty"
|
671 |
msgstr "Leeren"
|
672 |
|
673 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
674 |
msgid "Extra Fields table"
|
675 |
msgstr "Tabelle mit Zusatzfeldern"
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
678 |
msgid "Users Data table"
|
679 |
msgstr "Tabelle der Userdaten"
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
682 |
msgid "all data inserted by users in all and only extra fields"
|
683 |
msgstr "alle von den Usern in die Cimy-Zusatzfelder eingetragenen Daten"
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
686 |
msgid "Force tables creation"
|
687 |
msgstr "Lege Tabellen an"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
690 |
msgid "User Profile"
|
691 |
msgstr "User Profil"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
694 |
msgid "Items per fieldset"
|
695 |
msgstr "Zusatzfelder pro Abschnitt"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
698 |
msgid "Fieldset's titles, separates with comma"
|
699 |
msgstr "Titel der Zusatzfelder, abgetrennt durch Kommata"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
702 |
msgid "example: title1,title2,title3"
|
703 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
706 |
msgid "Hide username field"
|
707 |
msgstr "Username nicht anzeigen"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
710 |
msgid "Hide name field"
|
711 |
msgstr "Echtname nicht anzeigen"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
714 |
msgid "Hide email field"
|
715 |
msgstr "E-mail Adresse nicht anzeigen"
|
716 |
|
717 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
718 |
msgid "Hide role field"
|
719 |
msgstr "Rolle der User nicht anzeigen"
|
720 |
|
721 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
722 |
msgid "Hide website field"
|
723 |
msgstr "Webseite nicht anzeigen"
|
724 |
|
725 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
726 |
msgid "Hide n. posts field"
|
727 |
msgstr "Anzahl der Userbeiträge nicht anzeigen"
|
728 |
|
729 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
730 |
msgid "WordPress hidden fields"
|
731 |
msgstr "Wordpress verborgene Felder"
|
732 |
|
733 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
734 |
msgid "Show password"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
738 |
msgid "Show first name"
|
739 |
msgstr "Zeige den Vornamen"
|
740 |
|
741 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
742 |
msgid "Show last name"
|
743 |
msgstr "Zeige den Nachnamen"
|
744 |
|
745 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
746 |
msgid "Show nickname"
|
747 |
msgstr "Zeige den Nicknamen"
|
748 |
|
749 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
750 |
msgid "Show website"
|
751 |
msgstr "Zeige die Webseite"
|
752 |
|
753 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
754 |
msgid "Show AIM"
|
755 |
msgstr "Zeige AIM"
|
756 |
|
757 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
758 |
msgid "Show Yahoo IM"
|
759 |
msgstr "Zeige Yahoo IM"
|
760 |
|
761 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
762 |
msgid "Show Jabber / Google Talk"
|
763 |
msgstr "Zeige Jabber / Google Talk"
|
764 |
|
765 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
766 |
msgid "Show Biographical Info"
|
767 |
msgstr ""
|
768 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:30+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Bitte lade ein Bild mit einer der folgenden Optionen hoch"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Feld löschen"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Feld ändern"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Optionen"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Felder"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Autoren & Benutzer erweitert"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "A&B erweitert"
|
186 |
|
331 |
msgstr "Dieser Name ist bereits vorhanden, bitte wähle einen anderen"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Ein neues Feld hinzufügen"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "ERFOLGREICH"
|
342 |
|
484 |
msgid "WordPress Fields"
|
485 |
msgstr "WordPress Felder"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
491 |
+
msgid "Extra Fields"
|
492 |
+
msgstr "Zusätzliche Felder"
|
493 |
+
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Keine!"
|
571 |
msgid "e-mail: %s"
|
572 |
msgstr "e-mail: %s"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
575 |
#, fuzzy
|
576 |
msgid "WordPress Fields table emptied"
|
577 |
msgstr "Tabelle Zusatzfelder geleert"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
580 |
#, fuzzy
|
581 |
msgid "WordPress Fields table deleted"
|
582 |
msgstr "Tabelle Zusatzfelder gelöscht"
|
583 |
|
584 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
585 |
msgid "Extra Fields table emptied"
|
586 |
msgstr "Tabelle Zusatzfelder geleert"
|
587 |
|
588 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
589 |
msgid "Extra Fields table deleted"
|
590 |
msgstr "Tabelle Zusatzfelder gelöscht"
|
591 |
|
592 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
593 |
msgid "Users Data table emptied"
|
594 |
msgstr "Tabelle Userdaten geleert"
|
595 |
|
596 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
597 |
msgid "Users Data table deleted"
|
598 |
msgstr "Tabelle Userdaten gelöscht"
|
599 |
|
600 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
601 |
msgid "Options set to default values"
|
602 |
msgstr "Optionen auf Grundeinstellungen gesetzt"
|
603 |
|
604 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
605 |
msgid "Options deleted"
|
606 |
msgstr "Optionen gelöscht"
|
607 |
|
608 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
609 |
msgid "Options changed"
|
610 |
msgstr "Opitionen geändert"
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
613 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
614 |
#, fuzzy
|
615 |
msgid "Save Changes"
|
616 |
msgstr "Regeln"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
619 |
msgid "General"
|
620 |
msgstr "Allgemein"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
623 |
msgid "installed is"
|
624 |
msgstr "installiert ist"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
627 |
msgid "OPTIONS DELETED!"
|
628 |
msgstr "OPTIONEN GELÖSCHT!"
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
631 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
632 |
msgstr "VERSIONEN NICHT KOMPATIBEL! Du hast das Plugin vor dem Update nicht deaktiviert und anschließend reaktiviert. Das könnte Probleme geben..."
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
635 |
msgid "Database"
|
636 |
msgstr "Datenbasis"
|
637 |
|
638 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
639 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
640 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
641 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
642 |
msgid "select action"
|
643 |
msgstr "Wähle bei Bedarf:"
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
646 |
msgid "Default values"
|
647 |
msgstr "Werte in Grundeinstellung"
|
648 |
|
649 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
650 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
651 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
652 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
653 |
msgid "Delete"
|
654 |
msgstr "Löschen"
|
655 |
|
656 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
657 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
658 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
659 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
660 |
msgid "NOT PRESENT"
|
661 |
msgstr "NICHT VORHANDEN"
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
664 |
#, fuzzy
|
665 |
msgid "WordPress Fields table"
|
666 |
msgstr "Tabelle mit Zusatzfeldern"
|
667 |
|
668 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
669 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
670 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
671 |
msgid "Empty"
|
672 |
msgstr "Leeren"
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
675 |
msgid "Extra Fields table"
|
676 |
msgstr "Tabelle mit Zusatzfeldern"
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
679 |
msgid "Users Data table"
|
680 |
msgstr "Tabelle der Userdaten"
|
681 |
|
682 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
683 |
msgid "all data inserted by users in all and only extra fields"
|
684 |
msgstr "alle von den Usern in die Cimy-Zusatzfelder eingetragenen Daten"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
687 |
msgid "Force tables creation"
|
688 |
msgstr "Lege Tabellen an"
|
689 |
|
690 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
691 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
695 |
msgid "User Profile"
|
696 |
msgstr "User Profil"
|
697 |
|
698 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
699 |
+
#, fuzzy
|
700 |
+
msgid "Extra Fields section title"
|
701 |
+
msgstr "Tabelle mit Zusatzfeldern"
|
702 |
+
|
703 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
704 |
msgid "Items per fieldset"
|
705 |
msgstr "Zusatzfelder pro Abschnitt"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
708 |
msgid "Fieldset's titles, separates with comma"
|
709 |
msgstr "Titel der Zusatzfelder, abgetrennt durch Kommata"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
712 |
msgid "example: title1,title2,title3"
|
713 |
msgstr "Beispiel: Titel1, Titel2, Titel3"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
716 |
msgid "Hide username field"
|
717 |
msgstr "Username nicht anzeigen"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
720 |
msgid "Hide name field"
|
721 |
msgstr "Echtname nicht anzeigen"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
724 |
msgid "Hide email field"
|
725 |
msgstr "E-mail Adresse nicht anzeigen"
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
728 |
msgid "Hide role field"
|
729 |
msgstr "Rolle der User nicht anzeigen"
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
732 |
msgid "Hide website field"
|
733 |
msgstr "Webseite nicht anzeigen"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
736 |
msgid "Hide n. posts field"
|
737 |
msgstr "Anzahl der Userbeiträge nicht anzeigen"
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
740 |
msgid "WordPress hidden fields"
|
741 |
msgstr "Wordpress verborgene Felder"
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
744 |
msgid "Show password"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
748 |
msgid "Show first name"
|
749 |
msgstr "Zeige den Vornamen"
|
750 |
|
751 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
752 |
msgid "Show last name"
|
753 |
msgstr "Zeige den Nachnamen"
|
754 |
|
755 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
756 |
msgid "Show nickname"
|
757 |
msgstr "Zeige den Nicknamen"
|
758 |
|
759 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
760 |
msgid "Show website"
|
761 |
msgstr "Zeige die Webseite"
|
762 |
|
763 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
764 |
msgid "Show AIM"
|
765 |
msgstr "Zeige AIM"
|
766 |
|
767 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
768 |
msgid "Show Yahoo IM"
|
769 |
msgstr "Zeige Yahoo IM"
|
770 |
|
771 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
772 |
msgid "Show Jabber / Google Talk"
|
773 |
msgstr "Zeige Jabber / Google Talk"
|
774 |
|
775 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
776 |
msgid "Show Biographical Info"
|
777 |
msgstr ""
|
778 |
|
langs/cimy_uef-fr_FR.mo
CHANGED
Binary file
|
langs/cimy_uef-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Champs Supplémentaires"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Supprimer le champ"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Mettre à jour le champ"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Montrer Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Options"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Champs"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Auteurs & Utilisateurs Etendus"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "A&U Etendu"
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Le nom est déjà dans la base de données, merci de le changer"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Ajouter un nouveau champ"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "AVEC SUCCES"
|
348 |
|
@@ -490,6 +484,13 @@ msgstr "Vider (RAZ)"
|
|
490 |
msgid "WordPress Fields"
|
491 |
msgstr "Champs Wordpress"
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
494 |
msgid "None!"
|
495 |
msgstr "Aucun !"
|
@@ -570,196 +571,205 @@ msgstr "Voir les articles de cet auteur"
|
|
570 |
msgid "e-mail: %s"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
574 |
msgid "WordPress Fields table emptied"
|
575 |
msgstr "Table des champs wordpress vidée"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
578 |
msgid "WordPress Fields table deleted"
|
579 |
msgstr "Table des champs wordpress supprimée"
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
582 |
msgid "Extra Fields table emptied"
|
583 |
msgstr "Table des champs supplémentaires vidée"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
586 |
msgid "Extra Fields table deleted"
|
587 |
msgstr "Table des champs supplémentaires supprimée"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
590 |
msgid "Users Data table emptied"
|
591 |
msgstr "Table des données utilsateurs vidée"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
594 |
msgid "Users Data table deleted"
|
595 |
msgstr "Table des données utilsateurs supprimée"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
598 |
msgid "Options set to default values"
|
599 |
msgstr "Options réinitialisées avec les valeurs par défaut"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
602 |
msgid "Options deleted"
|
603 |
msgstr "Options supprimées"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
606 |
msgid "Options changed"
|
607 |
msgstr "Options changées"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
610 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
611 |
msgid "Save Changes"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
615 |
msgid "General"
|
616 |
msgstr "Général"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
619 |
msgid "installed is"
|
620 |
msgstr "installé"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
623 |
msgid "OPTIONS DELETED!"
|
624 |
msgstr "OPTIONS SUPPRIMEES!"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
627 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
628 |
msgstr "VERSION NE CORRESPONDANT PAS! Ceci arrive lorsque vous n'ave pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
631 |
msgid "Database"
|
632 |
msgstr "Database"
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
636 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
637 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
638 |
msgid "select action"
|
639 |
msgstr "sélectionner une action"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
642 |
msgid "Default values"
|
643 |
msgstr "Valeurs par défaut"
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
647 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
648 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
649 |
msgid "Delete"
|
650 |
msgstr "Supprimer"
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
654 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
655 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
656 |
msgid "NOT PRESENT"
|
657 |
msgstr "NON PRESENT"
|
658 |
|
659 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
660 |
msgid "WordPress Fields table"
|
661 |
msgstr "Table des champs Wordpress"
|
662 |
|
663 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
664 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
665 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
666 |
msgid "Empty"
|
667 |
msgstr "Vider"
|
668 |
|
669 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
670 |
msgid "Extra Fields table"
|
671 |
msgstr "Table des champs supplémentaires"
|
672 |
|
673 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
674 |
msgid "Users Data table"
|
675 |
msgstr "Table des données utilisateurs"
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
678 |
msgid "all data inserted by users in all and only extra fields"
|
679 |
msgstr "toutes les données insérées par les utilsateurs et seulement les champs supplémentaires"
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
682 |
msgid "Force tables creation"
|
683 |
msgstr "Forcer la création des tables"
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
686 |
msgid "User Profile"
|
687 |
msgstr "Profil utilisateur"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
690 |
msgid "Items per fieldset"
|
691 |
msgstr "Objets par regroupement"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
694 |
msgid "Fieldset's titles, separates with comma"
|
695 |
msgstr "Titres des regroupements, séparés par des virgules"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
698 |
msgid "example: title1,title2,title3"
|
699 |
msgstr "exemple : titre1,titre2,titre3"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
702 |
msgid "Hide username field"
|
703 |
msgstr "Cacher le champ nom d'utilisateur"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
706 |
msgid "Hide name field"
|
707 |
msgstr "Cacher le champ nom"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
710 |
msgid "Hide email field"
|
711 |
msgstr "Cacher le champ e-mail"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
714 |
#, fuzzy
|
715 |
msgid "Hide role field"
|
716 |
msgstr "Cacher le champ nom"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
719 |
msgid "Hide website field"
|
720 |
msgstr "Cacher le champ du site web"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
723 |
msgid "Hide n. posts field"
|
724 |
msgstr "Cacher le champ n. articles"
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
727 |
msgid "WordPress hidden fields"
|
728 |
msgstr "Champs Wordpress cachés"
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
731 |
msgid "Show password"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
735 |
msgid "Show first name"
|
736 |
msgstr "Montrer le prénom"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
739 |
msgid "Show last name"
|
740 |
msgstr "Montrer le nom"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
743 |
msgid "Show nickname"
|
744 |
msgstr "Montrer le surnom"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
747 |
msgid "Show website"
|
748 |
msgstr "Montrer le site web"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
751 |
msgid "Show AIM"
|
752 |
msgstr "Montrer AIM"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
755 |
msgid "Show Yahoo IM"
|
756 |
msgstr "Montrer Yahoo IM"
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
759 |
msgid "Show Jabber / Google Talk"
|
760 |
msgstr "Montrer Jabber / Google Talk"
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
763 |
msgid "Show Biographical Info"
|
764 |
msgstr ""
|
765 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:30+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"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "SVP chargez une image avec l'une des extensions suivantes"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Supprimer le champ"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Mettre à jour le champ"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Options"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Champs"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Auteurs & Utilisateurs Etendus"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "A&U Etendu"
|
186 |
|
331 |
msgstr "Le nom est déjà dans la base de données, merci de le changer"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Ajouter un nouveau champ"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "AVEC SUCCES"
|
342 |
|
484 |
msgid "WordPress Fields"
|
485 |
msgstr "Champs Wordpress"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
491 |
+
msgid "Extra Fields"
|
492 |
+
msgstr "Champs Supplémentaires"
|
493 |
+
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Aucun !"
|
571 |
msgid "e-mail: %s"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
575 |
msgid "WordPress Fields table emptied"
|
576 |
msgstr "Table des champs wordpress vidée"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
579 |
msgid "WordPress Fields table deleted"
|
580 |
msgstr "Table des champs wordpress supprimée"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
583 |
msgid "Extra Fields table emptied"
|
584 |
msgstr "Table des champs supplémentaires vidée"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
587 |
msgid "Extra Fields table deleted"
|
588 |
msgstr "Table des champs supplémentaires supprimée"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
591 |
msgid "Users Data table emptied"
|
592 |
msgstr "Table des données utilsateurs vidée"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
595 |
msgid "Users Data table deleted"
|
596 |
msgstr "Table des données utilsateurs supprimée"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
599 |
msgid "Options set to default values"
|
600 |
msgstr "Options réinitialisées avec les valeurs par défaut"
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
603 |
msgid "Options deleted"
|
604 |
msgstr "Options supprimées"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
607 |
msgid "Options changed"
|
608 |
msgstr "Options changées"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
611 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
612 |
msgid "Save Changes"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
616 |
msgid "General"
|
617 |
msgstr "Général"
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
620 |
msgid "installed is"
|
621 |
msgstr "installé"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
624 |
msgid "OPTIONS DELETED!"
|
625 |
msgstr "OPTIONS SUPPRIMEES!"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
628 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
629 |
msgstr "VERSION NE CORRESPONDANT PAS! Ceci arrive lorsque vous n'ave pas désactivé et réactivé le plug-in après sa mise à jour! Cela peut poser problème..."
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
632 |
msgid "Database"
|
633 |
msgstr "Database"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
636 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
637 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
638 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
639 |
msgid "select action"
|
640 |
msgstr "sélectionner une action"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
643 |
msgid "Default values"
|
644 |
msgstr "Valeurs par défaut"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
647 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
648 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
649 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
650 |
msgid "Delete"
|
651 |
msgstr "Supprimer"
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
654 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
655 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
656 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
657 |
msgid "NOT PRESENT"
|
658 |
msgstr "NON PRESENT"
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
661 |
msgid "WordPress Fields table"
|
662 |
msgstr "Table des champs Wordpress"
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
665 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
666 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
667 |
msgid "Empty"
|
668 |
msgstr "Vider"
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
671 |
msgid "Extra Fields table"
|
672 |
msgstr "Table des champs supplémentaires"
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
675 |
msgid "Users Data table"
|
676 |
msgstr "Table des données utilisateurs"
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
679 |
msgid "all data inserted by users in all and only extra fields"
|
680 |
msgstr "toutes les données insérées par les utilsateurs et seulement les champs supplémentaires"
|
681 |
|
682 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
683 |
msgid "Force tables creation"
|
684 |
msgstr "Forcer la création des tables"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
687 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
691 |
msgid "User Profile"
|
692 |
msgstr "Profil utilisateur"
|
693 |
|
694 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
695 |
+
#, fuzzy
|
696 |
+
msgid "Extra Fields section title"
|
697 |
+
msgstr "Table des champs supplémentaires"
|
698 |
+
|
699 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
700 |
msgid "Items per fieldset"
|
701 |
msgstr "Objets par regroupement"
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
704 |
msgid "Fieldset's titles, separates with comma"
|
705 |
msgstr "Titres des regroupements, séparés par des virgules"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
708 |
msgid "example: title1,title2,title3"
|
709 |
msgstr "exemple : titre1,titre2,titre3"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
712 |
msgid "Hide username field"
|
713 |
msgstr "Cacher le champ nom d'utilisateur"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
716 |
msgid "Hide name field"
|
717 |
msgstr "Cacher le champ nom"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
720 |
msgid "Hide email field"
|
721 |
msgstr "Cacher le champ e-mail"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
724 |
#, fuzzy
|
725 |
msgid "Hide role field"
|
726 |
msgstr "Cacher le champ nom"
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
729 |
msgid "Hide website field"
|
730 |
msgstr "Cacher le champ du site web"
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
733 |
msgid "Hide n. posts field"
|
734 |
msgstr "Cacher le champ n. articles"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
737 |
msgid "WordPress hidden fields"
|
738 |
msgstr "Champs Wordpress cachés"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
741 |
msgid "Show password"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
745 |
msgid "Show first name"
|
746 |
msgstr "Montrer le prénom"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
749 |
msgid "Show last name"
|
750 |
msgstr "Montrer le nom"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
753 |
msgid "Show nickname"
|
754 |
msgstr "Montrer le surnom"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
757 |
msgid "Show website"
|
758 |
msgstr "Montrer le site web"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
761 |
msgid "Show AIM"
|
762 |
msgstr "Montrer AIM"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
765 |
msgid "Show Yahoo IM"
|
766 |
msgstr "Montrer Yahoo IM"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
769 |
msgid "Show Jabber / Google Talk"
|
770 |
msgstr "Montrer Jabber / Google Talk"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
773 |
msgid "Show Biographical Info"
|
774 |
msgstr ""
|
775 |
|
langs/cimy_uef-it_IT.mo
CHANGED
Binary file
|
langs/cimy_uef-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,26 +30,20 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Campi Extra"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
msgid "Delete the picture"
|
46 |
msgstr "Cancella l'immagine"
|
47 |
|
48 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
49 |
msgid "Update the picture"
|
50 |
msgstr "Aggiorna l'immagine"
|
51 |
|
52 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
53 |
msgid "Picture URL:"
|
54 |
msgstr "URL dell'immagine:"
|
55 |
|
@@ -167,25 +161,25 @@ msgstr "Mostra Jabber / Google Talk"
|
|
167 |
msgid "Biographical Info"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
msgid "Options"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
177 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
178 |
msgid "Fields"
|
179 |
msgstr "Campi"
|
180 |
|
181 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
184 |
msgid "Authors & Users Extended"
|
185 |
msgstr "Autori & Utenti Estesa"
|
186 |
|
187 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
msgid "A&U Extended"
|
190 |
msgstr "A&U Estesa"
|
191 |
|
@@ -336,12 +330,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
336 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
339 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
340 |
msgid "Add a new Field"
|
341 |
msgstr "Aggiungi un campo"
|
342 |
|
343 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
344 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
345 |
msgid "SUCCESSFUL"
|
346 |
msgstr "SUCCESSO"
|
347 |
|
@@ -488,6 +482,13 @@ msgstr "Pulisci"
|
|
488 |
msgid "WordPress Fields"
|
489 |
msgstr "Campi WordPress"
|
490 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
491 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
492 |
msgid "None!"
|
493 |
msgstr "Nessuno!"
|
@@ -567,195 +568,203 @@ msgstr ""
|
|
567 |
msgid "e-mail: %s"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
571 |
msgid "WordPress Fields table emptied"
|
572 |
msgstr "Tabella Campi WordPress svuotata"
|
573 |
|
574 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
575 |
msgid "WordPress Fields table deleted"
|
576 |
msgstr "Tabella Campi WordPress cancellata"
|
577 |
|
578 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
579 |
msgid "Extra Fields table emptied"
|
580 |
msgstr "Tabella Campi Extra svuotata"
|
581 |
|
582 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
583 |
msgid "Extra Fields table deleted"
|
584 |
msgstr "Tabella Campi Extra cancellata"
|
585 |
|
586 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
587 |
msgid "Users Data table emptied"
|
588 |
msgstr "Tabella Dati degli Utenti svuotata"
|
589 |
|
590 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
591 |
msgid "Users Data table deleted"
|
592 |
msgstr "Tabella Dati degli Utenti cancellata"
|
593 |
|
594 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
595 |
msgid "Options set to default values"
|
596 |
msgstr "Opzioni settate ai valori di default"
|
597 |
|
598 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
599 |
msgid "Options deleted"
|
600 |
msgstr "Opzioni cancellate"
|
601 |
|
602 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
603 |
msgid "Options changed"
|
604 |
msgstr "Opzioni cambiate"
|
605 |
|
606 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
607 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
608 |
msgid "Save Changes"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
612 |
msgid "General"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
616 |
msgid "installed is"
|
617 |
msgstr "installata"
|
618 |
|
619 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
620 |
msgid "OPTIONS DELETED!"
|
621 |
msgstr "OPZIONI CANCELLATE!"
|
622 |
|
623 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
624 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
625 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
626 |
|
627 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
628 |
msgid "Database"
|
629 |
msgstr "Database"
|
630 |
|
631 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
632 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
633 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
msgid "select action"
|
636 |
msgstr "seleziona una azione"
|
637 |
|
638 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
639 |
msgid "Default values"
|
640 |
msgstr "Valori di default"
|
641 |
|
642 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
643 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
644 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
msgid "Delete"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
650 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
651 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
msgid "NOT PRESENT"
|
654 |
msgstr "NON PRESENTE"
|
655 |
|
656 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
657 |
msgid "WordPress Fields table"
|
658 |
msgstr "Tabella Campi WordPress"
|
659 |
|
660 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
661 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
662 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
663 |
msgid "Empty"
|
664 |
msgstr "Svuota"
|
665 |
|
666 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
667 |
msgid "Extra Fields table"
|
668 |
msgstr "Tabella Campi Extra"
|
669 |
|
670 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
671 |
msgid "Users Data table"
|
672 |
msgstr "Tabella Dati degli Utenti"
|
673 |
|
674 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
675 |
msgid "all data inserted by users in all and only extra fields"
|
676 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
677 |
|
678 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
679 |
msgid "Force tables creation"
|
680 |
msgstr "Forza la creazione delle tabelle"
|
681 |
|
682 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
683 |
msgid "User Profile"
|
684 |
msgstr "Profilo utente"
|
685 |
|
686 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
687 |
msgid "Items per fieldset"
|
688 |
msgstr "Oggetti per raggruppamento"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
691 |
msgid "Fieldset's titles, separates with comma"
|
692 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
695 |
msgid "example: title1,title2,title3"
|
696 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
699 |
msgid "Hide username field"
|
700 |
msgstr "Nascondi il campo nome utente"
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
703 |
msgid "Hide name field"
|
704 |
msgstr "Nascondi il campo nome"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
707 |
msgid "Hide email field"
|
708 |
msgstr "Nascondi il campo email"
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
711 |
msgid "Hide role field"
|
712 |
msgstr "Nascondi il campo ruolo"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
715 |
msgid "Hide website field"
|
716 |
msgstr "Nascondi il campo sito web"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
719 |
msgid "Hide n. posts field"
|
720 |
msgstr "Nascondi il campo n. di post"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
723 |
msgid "WordPress hidden fields"
|
724 |
msgstr "Campi nascosti di WordPress"
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
727 |
msgid "Show password"
|
728 |
msgstr "Mostra password"
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
731 |
msgid "Show first name"
|
732 |
msgstr "Mostra nome"
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
735 |
msgid "Show last name"
|
736 |
msgstr "Mostra cognome"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
739 |
msgid "Show nickname"
|
740 |
msgstr "Mostra nickname"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
743 |
msgid "Show website"
|
744 |
msgstr "Mostra sito web"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
747 |
msgid "Show AIM"
|
748 |
msgstr "Mostra AIM"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
751 |
msgid "Show Yahoo IM"
|
752 |
msgstr "Mostra Yahoo IM"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
755 |
msgid "Show Jabber / Google Talk"
|
756 |
msgstr "Mostra Jabber / Google Talk"
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
759 |
msgid "Show Biographical Info"
|
760 |
msgstr "Mostra informazioni biografiche"
|
761 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:31+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"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Per favore spedisci una immagine con una delle seguenti estensioni"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
msgid "Delete the picture"
|
40 |
msgstr "Cancella l'immagine"
|
41 |
|
42 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
43 |
msgid "Update the picture"
|
44 |
msgstr "Aggiorna l'immagine"
|
45 |
|
46 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
47 |
msgid "Picture URL:"
|
48 |
msgstr "URL dell'immagine:"
|
49 |
|
161 |
msgid "Biographical Info"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
167 |
msgid "Options"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
171 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
172 |
msgid "Fields"
|
173 |
msgstr "Campi"
|
174 |
|
175 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
178 |
msgid "Authors & Users Extended"
|
179 |
msgstr "Autori & Utenti Estesa"
|
180 |
|
181 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
183 |
msgid "A&U Extended"
|
184 |
msgstr "A&U Estesa"
|
185 |
|
330 |
msgstr "Il Nome inserito è già nel database, cambialo con un altro"
|
331 |
|
332 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
333 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
334 |
msgid "Add a new Field"
|
335 |
msgstr "Aggiungi un campo"
|
336 |
|
337 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
338 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
339 |
msgid "SUCCESSFUL"
|
340 |
msgstr "SUCCESSO"
|
341 |
|
482 |
msgid "WordPress Fields"
|
483 |
msgstr "Campi WordPress"
|
484 |
|
485 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
486 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
489 |
+
msgid "Extra Fields"
|
490 |
+
msgstr "Campi Extra"
|
491 |
+
|
492 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
493 |
msgid "None!"
|
494 |
msgstr "Nessuno!"
|
568 |
msgid "e-mail: %s"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
572 |
msgid "WordPress Fields table emptied"
|
573 |
msgstr "Tabella Campi WordPress svuotata"
|
574 |
|
575 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
576 |
msgid "WordPress Fields table deleted"
|
577 |
msgstr "Tabella Campi WordPress cancellata"
|
578 |
|
579 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
580 |
msgid "Extra Fields table emptied"
|
581 |
msgstr "Tabella Campi Extra svuotata"
|
582 |
|
583 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
584 |
msgid "Extra Fields table deleted"
|
585 |
msgstr "Tabella Campi Extra cancellata"
|
586 |
|
587 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
588 |
msgid "Users Data table emptied"
|
589 |
msgstr "Tabella Dati degli Utenti svuotata"
|
590 |
|
591 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
592 |
msgid "Users Data table deleted"
|
593 |
msgstr "Tabella Dati degli Utenti cancellata"
|
594 |
|
595 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
596 |
msgid "Options set to default values"
|
597 |
msgstr "Opzioni settate ai valori di default"
|
598 |
|
599 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
600 |
msgid "Options deleted"
|
601 |
msgstr "Opzioni cancellate"
|
602 |
|
603 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
604 |
msgid "Options changed"
|
605 |
msgstr "Opzioni cambiate"
|
606 |
|
607 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
608 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
609 |
msgid "Save Changes"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
613 |
msgid "General"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
617 |
msgid "installed is"
|
618 |
msgstr "installata"
|
619 |
|
620 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
621 |
msgid "OPTIONS DELETED!"
|
622 |
msgstr "OPZIONI CANCELLATE!"
|
623 |
|
624 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
625 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
626 |
msgstr "VERSIONI NON CORRISPONDENTI! Avviene quando non hai disattivato e riattivato il plug-in dopo l'aggiornamento! Questo può dare dei problemi..."
|
627 |
|
628 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
629 |
msgid "Database"
|
630 |
msgstr "Database"
|
631 |
|
632 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
633 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
634 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
636 |
msgid "select action"
|
637 |
msgstr "seleziona una azione"
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
640 |
msgid "Default values"
|
641 |
msgstr "Valori di default"
|
642 |
|
643 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
644 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
645 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
647 |
msgid "Delete"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
651 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
652 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
654 |
msgid "NOT PRESENT"
|
655 |
msgstr "NON PRESENTE"
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
658 |
msgid "WordPress Fields table"
|
659 |
msgstr "Tabella Campi WordPress"
|
660 |
|
661 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
662 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
663 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
664 |
msgid "Empty"
|
665 |
msgstr "Svuota"
|
666 |
|
667 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
668 |
msgid "Extra Fields table"
|
669 |
msgstr "Tabella Campi Extra"
|
670 |
|
671 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
672 |
msgid "Users Data table"
|
673 |
msgstr "Tabella Dati degli Utenti"
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
676 |
msgid "all data inserted by users in all and only extra fields"
|
677 |
msgstr "tutti i dati inseriti dagli utenti in tutti e soli i campi extra"
|
678 |
|
679 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
680 |
msgid "Force tables creation"
|
681 |
msgstr "Forza la creazione delle tabelle"
|
682 |
|
683 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
684 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
685 |
+
msgstr "equivalente a disattivare e attivare il plug-in; nessun'altra operazione sarà effettuata"
|
686 |
+
|
687 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
688 |
msgid "User Profile"
|
689 |
msgstr "Profilo utente"
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
692 |
+
msgid "Extra Fields section title"
|
693 |
+
msgstr "Titolo della sezione Campi Extra"
|
694 |
+
|
695 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
696 |
msgid "Items per fieldset"
|
697 |
msgstr "Oggetti per raggruppamento"
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
700 |
msgid "Fieldset's titles, separates with comma"
|
701 |
msgstr "Titoli dei raggruppamenti, separati dalla virgola"
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
704 |
msgid "example: title1,title2,title3"
|
705 |
msgstr "esempio: titolo1, titolo2, titolo3"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
708 |
msgid "Hide username field"
|
709 |
msgstr "Nascondi il campo nome utente"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
712 |
msgid "Hide name field"
|
713 |
msgstr "Nascondi il campo nome"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
716 |
msgid "Hide email field"
|
717 |
msgstr "Nascondi il campo email"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
720 |
msgid "Hide role field"
|
721 |
msgstr "Nascondi il campo ruolo"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
724 |
msgid "Hide website field"
|
725 |
msgstr "Nascondi il campo sito web"
|
726 |
|
727 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
728 |
msgid "Hide n. posts field"
|
729 |
msgstr "Nascondi il campo n. di post"
|
730 |
|
731 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
732 |
msgid "WordPress hidden fields"
|
733 |
msgstr "Campi nascosti di WordPress"
|
734 |
|
735 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
736 |
msgid "Show password"
|
737 |
msgstr "Mostra password"
|
738 |
|
739 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
740 |
msgid "Show first name"
|
741 |
msgstr "Mostra nome"
|
742 |
|
743 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
744 |
msgid "Show last name"
|
745 |
msgstr "Mostra cognome"
|
746 |
|
747 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
748 |
msgid "Show nickname"
|
749 |
msgstr "Mostra nickname"
|
750 |
|
751 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
752 |
msgid "Show website"
|
753 |
msgstr "Mostra sito web"
|
754 |
|
755 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
756 |
msgid "Show AIM"
|
757 |
msgstr "Mostra AIM"
|
758 |
|
759 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
760 |
msgid "Show Yahoo IM"
|
761 |
msgstr "Mostra Yahoo IM"
|
762 |
|
763 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
764 |
msgid "Show Jabber / Google Talk"
|
765 |
msgstr "Mostra Jabber / Google Talk"
|
766 |
|
767 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
768 |
msgid "Show Biographical Info"
|
769 |
msgstr "Mostra informazioni biografiche"
|
770 |
|
langs/cimy_uef-pt_BR.mo
CHANGED
Binary file
|
langs/cimy_uef-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: <cimmino.marco@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Campos Adicionais"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Excluir campo"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Atualizar campo"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Mostrar Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Opções"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Campos"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Autores & Usuários Avançados"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "A&U Avançado"
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Adicionar um novo campo"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "SUCESSO"
|
348 |
|
@@ -491,6 +485,13 @@ msgstr "Limpar"
|
|
491 |
msgid "WordPress Fields"
|
492 |
msgstr "Campos do Wordpress"
|
493 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Nenhum!"
|
@@ -572,200 +573,209 @@ msgstr "Ver artigos desse autor"
|
|
572 |
msgid "e-mail: %s"
|
573 |
msgstr "e-mail: %s"
|
574 |
|
575 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
576 |
#, fuzzy
|
577 |
msgid "WordPress Fields table emptied"
|
578 |
msgstr "Tabela de Campos Adicionais apagada"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
581 |
#, fuzzy
|
582 |
msgid "WordPress Fields table deleted"
|
583 |
msgstr "Tabela de Campos Adicionais excluída"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
586 |
msgid "Extra Fields table emptied"
|
587 |
msgstr "Tabela de Campos Adicionais apagada"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
590 |
msgid "Extra Fields table deleted"
|
591 |
msgstr "Tabela de Campos Adicionais excluída"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
594 |
msgid "Users Data table emptied"
|
595 |
msgstr "Tabela de Dados de Usuários apagada"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
598 |
msgid "Users Data table deleted"
|
599 |
msgstr "Tabela de Dados de Usuários excluída"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
602 |
msgid "Options set to default values"
|
603 |
msgstr "Opções marcadas com valores padrão"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
606 |
msgid "Options deleted"
|
607 |
msgstr "Opções excluídas"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
610 |
msgid "Options changed"
|
611 |
msgstr "Opções alteradas"
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
614 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
615 |
msgid "Save Changes"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
619 |
msgid "General"
|
620 |
msgstr "Geral"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
623 |
msgid "installed is"
|
624 |
msgstr "instalado"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
627 |
msgid "OPTIONS DELETED!"
|
628 |
msgstr "OPÇÕES EXCLUÍDAS!"
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
631 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
632 |
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
msgid "Database"
|
636 |
msgstr "Banco de dados"
|
637 |
|
638 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
639 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
640 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
641 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
642 |
msgid "select action"
|
643 |
msgstr "selecione uma ação"
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
msgid "Default values"
|
647 |
msgstr "Valores padrão"
|
648 |
|
649 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
650 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
651 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
msgid "Delete"
|
654 |
msgstr "Excluir"
|
655 |
|
656 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
657 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
658 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
659 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
660 |
msgid "NOT PRESENT"
|
661 |
msgstr "NÃO PRESENTE"
|
662 |
|
663 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
664 |
#, fuzzy
|
665 |
msgid "WordPress Fields table"
|
666 |
msgstr "Tabela de Campos Adicionais"
|
667 |
|
668 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
669 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
670 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
671 |
msgid "Empty"
|
672 |
msgstr "Vazio"
|
673 |
|
674 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
675 |
msgid "Extra Fields table"
|
676 |
msgstr "Tabela de Campos Adicionais"
|
677 |
|
678 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
679 |
msgid "Users Data table"
|
680 |
msgstr "Tabela de Dados de Usuários"
|
681 |
|
682 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
683 |
msgid "all data inserted by users in all and only extra fields"
|
684 |
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
685 |
|
686 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
687 |
msgid "Force tables creation"
|
688 |
msgstr "Forçar criação de tabelas"
|
689 |
|
690 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
691 |
msgid "User Profile"
|
692 |
msgstr "Perfil do usuário"
|
693 |
|
694 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
695 |
msgid "Items per fieldset"
|
696 |
msgstr "Itens por reagrupamento"
|
697 |
|
698 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
699 |
msgid "Fieldset's titles, separates with comma"
|
700 |
msgstr "Títulos de reagrupamento, separados por vírgula"
|
701 |
|
702 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
703 |
msgid "example: title1,title2,title3"
|
704 |
msgstr "exemplo: título1,título2,título3"
|
705 |
|
706 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
707 |
msgid "Hide username field"
|
708 |
msgstr "Ocultar campo nome de usuário"
|
709 |
|
710 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
711 |
msgid "Hide name field"
|
712 |
msgstr "Ocultar campo nome"
|
713 |
|
714 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
715 |
msgid "Hide email field"
|
716 |
msgstr "Ocultar campo email"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
719 |
#, fuzzy
|
720 |
msgid "Hide role field"
|
721 |
msgstr "Ocultar campo nome"
|
722 |
|
723 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
724 |
msgid "Hide website field"
|
725 |
msgstr "Ocultar campo website"
|
726 |
|
727 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
728 |
msgid "Hide n. posts field"
|
729 |
msgstr "Ocultar campo n. do artigo"
|
730 |
|
731 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
732 |
msgid "WordPress hidden fields"
|
733 |
msgstr "Campos ocultos do WordPress"
|
734 |
|
735 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
736 |
msgid "Show password"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
740 |
msgid "Show first name"
|
741 |
msgstr "Mostrar primeiro nome"
|
742 |
|
743 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
744 |
msgid "Show last name"
|
745 |
msgstr "Mostrar último nome"
|
746 |
|
747 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
748 |
msgid "Show nickname"
|
749 |
msgstr "Mostrar apelido"
|
750 |
|
751 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
752 |
#, fuzzy
|
753 |
msgid "Show website"
|
754 |
msgstr "Website"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
757 |
msgid "Show AIM"
|
758 |
msgstr "Mostrar AIM"
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
761 |
msgid "Show Yahoo IM"
|
762 |
msgstr "Mostrar Yahoo IM"
|
763 |
|
764 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
765 |
msgid "Show Jabber / Google Talk"
|
766 |
msgstr "Mostrar Jabber / Google Talk"
|
767 |
|
768 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
769 |
msgid "Show Biographical Info"
|
770 |
msgstr ""
|
771 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:30+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"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Por favor, insira uma imagem com uma das seguintes extensões"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Excluir campo"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Atualizar campo"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Opções"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Campos"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Autores & Usuários Avançados"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "A&U Avançado"
|
186 |
|
331 |
msgstr "Nome inserido somente no banco de dados, mude para um outro"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Adicionar um novo campo"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "SUCESSO"
|
342 |
|
485 |
msgid "WordPress Fields"
|
486 |
msgstr "Campos do Wordpress"
|
487 |
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
491 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
492 |
+
msgid "Extra Fields"
|
493 |
+
msgstr "Campos Adicionais"
|
494 |
+
|
495 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
496 |
msgid "None!"
|
497 |
msgstr "Nenhum!"
|
573 |
msgid "e-mail: %s"
|
574 |
msgstr "e-mail: %s"
|
575 |
|
576 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
577 |
#, fuzzy
|
578 |
msgid "WordPress Fields table emptied"
|
579 |
msgstr "Tabela de Campos Adicionais apagada"
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
582 |
#, fuzzy
|
583 |
msgid "WordPress Fields table deleted"
|
584 |
msgstr "Tabela de Campos Adicionais excluída"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
587 |
msgid "Extra Fields table emptied"
|
588 |
msgstr "Tabela de Campos Adicionais apagada"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
591 |
msgid "Extra Fields table deleted"
|
592 |
msgstr "Tabela de Campos Adicionais excluída"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
595 |
msgid "Users Data table emptied"
|
596 |
msgstr "Tabela de Dados de Usuários apagada"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
599 |
msgid "Users Data table deleted"
|
600 |
msgstr "Tabela de Dados de Usuários excluída"
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
603 |
msgid "Options set to default values"
|
604 |
msgstr "Opções marcadas com valores padrão"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
607 |
msgid "Options deleted"
|
608 |
msgstr "Opções excluídas"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
611 |
msgid "Options changed"
|
612 |
msgstr "Opções alteradas"
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
615 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
616 |
msgid "Save Changes"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
620 |
msgid "General"
|
621 |
msgstr "Geral"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
624 |
msgid "installed is"
|
625 |
msgstr "instalado"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
628 |
msgid "OPTIONS DELETED!"
|
629 |
msgstr "OPÇÕES EXCLUÍDAS!"
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
632 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
633 |
msgstr "VERSÃO NÃO CORRESPONDENTE! Acontece quando você não desativa e re-ativa o plug-in depois de atualizá-lo! Isso pode causar problemas..."
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
636 |
msgid "Database"
|
637 |
msgstr "Banco de dados"
|
638 |
|
639 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
640 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
641 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
642 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
643 |
msgid "select action"
|
644 |
msgstr "selecione uma ação"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
647 |
msgid "Default values"
|
648 |
msgstr "Valores padrão"
|
649 |
|
650 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
651 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
652 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
654 |
msgid "Delete"
|
655 |
msgstr "Excluir"
|
656 |
|
657 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
658 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
659 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
660 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
661 |
msgid "NOT PRESENT"
|
662 |
msgstr "NÃO PRESENTE"
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
665 |
#, fuzzy
|
666 |
msgid "WordPress Fields table"
|
667 |
msgstr "Tabela de Campos Adicionais"
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
670 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
671 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
672 |
msgid "Empty"
|
673 |
msgstr "Vazio"
|
674 |
|
675 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
676 |
msgid "Extra Fields table"
|
677 |
msgstr "Tabela de Campos Adicionais"
|
678 |
|
679 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
680 |
msgid "Users Data table"
|
681 |
msgstr "Tabela de Dados de Usuários"
|
682 |
|
683 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
684 |
msgid "all data inserted by users in all and only extra fields"
|
685 |
msgstr "todos os dados inseridos por usuários em todos e somente campos adicionais"
|
686 |
|
687 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
688 |
msgid "Force tables creation"
|
689 |
msgstr "Forçar criação de tabelas"
|
690 |
|
691 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
692 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
696 |
msgid "User Profile"
|
697 |
msgstr "Perfil do usuário"
|
698 |
|
699 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
700 |
+
#, fuzzy
|
701 |
+
msgid "Extra Fields section title"
|
702 |
+
msgstr "Tabela de Campos Adicionais"
|
703 |
+
|
704 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
705 |
msgid "Items per fieldset"
|
706 |
msgstr "Itens por reagrupamento"
|
707 |
|
708 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
709 |
msgid "Fieldset's titles, separates with comma"
|
710 |
msgstr "Títulos de reagrupamento, separados por vírgula"
|
711 |
|
712 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
713 |
msgid "example: title1,title2,title3"
|
714 |
msgstr "exemplo: título1,título2,título3"
|
715 |
|
716 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
717 |
msgid "Hide username field"
|
718 |
msgstr "Ocultar campo nome de usuário"
|
719 |
|
720 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
721 |
msgid "Hide name field"
|
722 |
msgstr "Ocultar campo nome"
|
723 |
|
724 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
725 |
msgid "Hide email field"
|
726 |
msgstr "Ocultar campo email"
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
729 |
#, fuzzy
|
730 |
msgid "Hide role field"
|
731 |
msgstr "Ocultar campo nome"
|
732 |
|
733 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
734 |
msgid "Hide website field"
|
735 |
msgstr "Ocultar campo website"
|
736 |
|
737 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
738 |
msgid "Hide n. posts field"
|
739 |
msgstr "Ocultar campo n. do artigo"
|
740 |
|
741 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
742 |
msgid "WordPress hidden fields"
|
743 |
msgstr "Campos ocultos do WordPress"
|
744 |
|
745 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
746 |
msgid "Show password"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
750 |
msgid "Show first name"
|
751 |
msgstr "Mostrar primeiro nome"
|
752 |
|
753 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
754 |
msgid "Show last name"
|
755 |
msgstr "Mostrar último nome"
|
756 |
|
757 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
758 |
msgid "Show nickname"
|
759 |
msgstr "Mostrar apelido"
|
760 |
|
761 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
762 |
#, fuzzy
|
763 |
msgid "Show website"
|
764 |
msgstr "Website"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
767 |
msgid "Show AIM"
|
768 |
msgstr "Mostrar AIM"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
771 |
msgid "Show Yahoo IM"
|
772 |
msgstr "Mostrar Yahoo IM"
|
773 |
|
774 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
775 |
msgid "Show Jabber / Google Talk"
|
776 |
msgstr "Mostrar Jabber / Google Talk"
|
777 |
|
778 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
779 |
msgid "Show Biographical Info"
|
780 |
msgstr ""
|
781 |
|
langs/cimy_uef-ru_RU.mo
CHANGED
Binary file
|
langs/cimy_uef-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Extra Fields"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Удалить поле"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Обновить поле"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Показать Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Настройки"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Поля"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Авторы и Продвинутые пользователи"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "A и продвинутые П "
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Добавить новое поле"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "УСПЕШНО"
|
348 |
|
@@ -490,6 +484,13 @@ msgstr "Очистить"
|
|
490 |
msgid "WordPress Fields"
|
491 |
msgstr "WordPress Fields"
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
494 |
msgid "None!"
|
495 |
msgstr "Нет!"
|
@@ -570,196 +571,205 @@ msgstr "Просмотреть сообщения этого автора"
|
|
570 |
msgid "e-mail: %s"
|
571 |
msgstr "e-mail: %s"
|
572 |
|
573 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
574 |
msgid "WordPress Fields table emptied"
|
575 |
msgstr "Таблица WordPress Fields очищена"
|
576 |
|
577 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
578 |
msgid "WordPress Fields table deleted"
|
579 |
msgstr "Таблица WordPress Fields удалена"
|
580 |
|
581 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
582 |
msgid "Extra Fields table emptied"
|
583 |
msgstr "Таблица Extra Fields очищена"
|
584 |
|
585 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
586 |
msgid "Extra Fields table deleted"
|
587 |
msgstr "Таблица Extra Fields удалена"
|
588 |
|
589 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
590 |
msgid "Users Data table emptied"
|
591 |
msgstr "Таблица пользовательских данных очищена"
|
592 |
|
593 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
594 |
msgid "Users Data table deleted"
|
595 |
msgstr "Таблица пользовательских данных удалена"
|
596 |
|
597 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
598 |
msgid "Options set to default values"
|
599 |
msgstr "Установлены настройки по-умолчанию"
|
600 |
|
601 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
602 |
msgid "Options deleted"
|
603 |
msgstr "Настройки удалены"
|
604 |
|
605 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
606 |
msgid "Options changed"
|
607 |
msgstr "Настройки изменены"
|
608 |
|
609 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
610 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
611 |
msgid "Save Changes"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
615 |
msgid "General"
|
616 |
msgstr "Главное"
|
617 |
|
618 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
619 |
msgid "installed is"
|
620 |
msgstr "установлено"
|
621 |
|
622 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
623 |
msgid "OPTIONS DELETED!"
|
624 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
625 |
|
626 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
627 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
628 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
629 |
|
630 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
631 |
msgid "Database"
|
632 |
msgstr "База данных"
|
633 |
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
636 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
637 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
638 |
msgid "select action"
|
639 |
msgstr "выберите действие"
|
640 |
|
641 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
642 |
msgid "Default values"
|
643 |
msgstr "Значения по-умолчанию"
|
644 |
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
647 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
648 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
649 |
msgid "Delete"
|
650 |
msgstr "Удалить"
|
651 |
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
654 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
655 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
656 |
msgid "NOT PRESENT"
|
657 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
658 |
|
659 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
660 |
msgid "WordPress Fields table"
|
661 |
msgstr "Таблица WordPress Fields"
|
662 |
|
663 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
664 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
665 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
666 |
msgid "Empty"
|
667 |
msgstr "Очистить"
|
668 |
|
669 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
670 |
msgid "Extra Fields table"
|
671 |
msgstr "Таблица Extra Fields"
|
672 |
|
673 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
674 |
msgid "Users Data table"
|
675 |
msgstr "Таблица данных пользователей"
|
676 |
|
677 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
678 |
msgid "all data inserted by users in all and only extra fields"
|
679 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
680 |
|
681 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
682 |
msgid "Force tables creation"
|
683 |
msgstr "Force tables creation"
|
684 |
|
685 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
686 |
msgid "User Profile"
|
687 |
msgstr "Профиль пользователя"
|
688 |
|
689 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
690 |
msgid "Items per fieldset"
|
691 |
msgstr "Пункты полей"
|
692 |
|
693 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
694 |
msgid "Fieldset's titles, separates with comma"
|
695 |
msgstr "Названия полей через запятую"
|
696 |
|
697 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
698 |
msgid "example: title1,title2,title3"
|
699 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
700 |
|
701 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
702 |
msgid "Hide username field"
|
703 |
msgstr "Скрыть поле с именем пользователя"
|
704 |
|
705 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
706 |
msgid "Hide name field"
|
707 |
msgstr "Скрыть поле с именем"
|
708 |
|
709 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
710 |
msgid "Hide email field"
|
711 |
msgstr "Скрыть поле с email"
|
712 |
|
713 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
714 |
#, fuzzy
|
715 |
msgid "Hide role field"
|
716 |
msgstr "Скрыть поле с именем"
|
717 |
|
718 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
719 |
msgid "Hide website field"
|
720 |
msgstr "Скрыть поле с адресом сайта"
|
721 |
|
722 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
723 |
msgid "Hide n. posts field"
|
724 |
msgstr "Скрыть поле с № постов"
|
725 |
|
726 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
727 |
msgid "WordPress hidden fields"
|
728 |
msgstr "Скрытые поля WordPress"
|
729 |
|
730 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
731 |
msgid "Show password"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
735 |
msgid "Show first name"
|
736 |
msgstr "Показать имя"
|
737 |
|
738 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
739 |
msgid "Show last name"
|
740 |
msgstr "Показать фамилию"
|
741 |
|
742 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
743 |
msgid "Show nickname"
|
744 |
msgstr "Показать ник"
|
745 |
|
746 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
747 |
msgid "Show website"
|
748 |
msgstr "Показать адрес сайта"
|
749 |
|
750 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
751 |
msgid "Show AIM"
|
752 |
msgstr "Показать AIM"
|
753 |
|
754 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
755 |
msgid "Show Yahoo IM"
|
756 |
msgstr "Показать Yahoo IM"
|
757 |
|
758 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
759 |
msgid "Show Jabber / Google Talk"
|
760 |
msgstr "Показать Jabber / Google Talk"
|
761 |
|
762 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
763 |
msgid "Show Biographical Info"
|
764 |
msgstr ""
|
765 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:30+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:30+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: mikolka <mikolka.info@gmail.com>\n"
|
9 |
"MIME-Version: 1.0\n"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Пожалуйста, загрузите изображение одного из следующих типов"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Удалить поле"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Обновить поле"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Настройки"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Поля"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Авторы и Продвинутые пользователи"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "A и продвинутые П "
|
186 |
|
331 |
msgstr "Вставляемое имя уже есть в БД, выберите другое"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Добавить новое поле"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "УСПЕШНО"
|
342 |
|
484 |
msgid "WordPress Fields"
|
485 |
msgstr "WordPress Fields"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
491 |
+
msgid "Extra Fields"
|
492 |
+
msgstr "Extra Fields"
|
493 |
+
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Нет!"
|
571 |
msgid "e-mail: %s"
|
572 |
msgstr "e-mail: %s"
|
573 |
|
574 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
575 |
msgid "WordPress Fields table emptied"
|
576 |
msgstr "Таблица WordPress Fields очищена"
|
577 |
|
578 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
579 |
msgid "WordPress Fields table deleted"
|
580 |
msgstr "Таблица WordPress Fields удалена"
|
581 |
|
582 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
583 |
msgid "Extra Fields table emptied"
|
584 |
msgstr "Таблица Extra Fields очищена"
|
585 |
|
586 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
587 |
msgid "Extra Fields table deleted"
|
588 |
msgstr "Таблица Extra Fields удалена"
|
589 |
|
590 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
591 |
msgid "Users Data table emptied"
|
592 |
msgstr "Таблица пользовательских данных очищена"
|
593 |
|
594 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
595 |
msgid "Users Data table deleted"
|
596 |
msgstr "Таблица пользовательских данных удалена"
|
597 |
|
598 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
599 |
msgid "Options set to default values"
|
600 |
msgstr "Установлены настройки по-умолчанию"
|
601 |
|
602 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
603 |
msgid "Options deleted"
|
604 |
msgstr "Настройки удалены"
|
605 |
|
606 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
607 |
msgid "Options changed"
|
608 |
msgstr "Настройки изменены"
|
609 |
|
610 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
611 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
612 |
msgid "Save Changes"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
616 |
msgid "General"
|
617 |
msgstr "Главное"
|
618 |
|
619 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
620 |
msgid "installed is"
|
621 |
msgstr "установлено"
|
622 |
|
623 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
624 |
msgid "OPTIONS DELETED!"
|
625 |
msgstr "НАСТРОЙКИ УДАЛЕНЫ!"
|
626 |
|
627 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
628 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
629 |
msgstr "ВЕРСИИ НЕ СОВПАДАЮТ! Это из-за того, что Вы не деактивировали, а затем активировали плагин после обновления! Могут возникнуть проблемы..."
|
630 |
|
631 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
632 |
msgid "Database"
|
633 |
msgstr "База данных"
|
634 |
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
636 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
637 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
638 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
639 |
msgid "select action"
|
640 |
msgstr "выберите действие"
|
641 |
|
642 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
643 |
msgid "Default values"
|
644 |
msgstr "Значения по-умолчанию"
|
645 |
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
647 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
648 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
649 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
650 |
msgid "Delete"
|
651 |
msgstr "Удалить"
|
652 |
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
654 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
655 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
656 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
657 |
msgid "NOT PRESENT"
|
658 |
msgstr "НЕ СУЩЕСТВУЕТ"
|
659 |
|
660 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
661 |
msgid "WordPress Fields table"
|
662 |
msgstr "Таблица WordPress Fields"
|
663 |
|
664 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
665 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
666 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
667 |
msgid "Empty"
|
668 |
msgstr "Очистить"
|
669 |
|
670 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
671 |
msgid "Extra Fields table"
|
672 |
msgstr "Таблица Extra Fields"
|
673 |
|
674 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
675 |
msgid "Users Data table"
|
676 |
msgstr "Таблица данных пользователей"
|
677 |
|
678 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
679 |
msgid "all data inserted by users in all and only extra fields"
|
680 |
msgstr "все данные, вставленные пользователями во все и только в дополнительные поля"
|
681 |
|
682 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
683 |
msgid "Force tables creation"
|
684 |
msgstr "Force tables creation"
|
685 |
|
686 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
687 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
691 |
msgid "User Profile"
|
692 |
msgstr "Профиль пользователя"
|
693 |
|
694 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
695 |
+
#, fuzzy
|
696 |
+
msgid "Extra Fields section title"
|
697 |
+
msgstr "Таблица Extra Fields"
|
698 |
+
|
699 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
700 |
msgid "Items per fieldset"
|
701 |
msgstr "Пункты полей"
|
702 |
|
703 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
704 |
msgid "Fieldset's titles, separates with comma"
|
705 |
msgstr "Названия полей через запятую"
|
706 |
|
707 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
708 |
msgid "example: title1,title2,title3"
|
709 |
msgstr "пример: заголовок1,заголовок2, заголовок3"
|
710 |
|
711 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
712 |
msgid "Hide username field"
|
713 |
msgstr "Скрыть поле с именем пользователя"
|
714 |
|
715 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
716 |
msgid "Hide name field"
|
717 |
msgstr "Скрыть поле с именем"
|
718 |
|
719 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
720 |
msgid "Hide email field"
|
721 |
msgstr "Скрыть поле с email"
|
722 |
|
723 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
724 |
#, fuzzy
|
725 |
msgid "Hide role field"
|
726 |
msgstr "Скрыть поле с именем"
|
727 |
|
728 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
729 |
msgid "Hide website field"
|
730 |
msgstr "Скрыть поле с адресом сайта"
|
731 |
|
732 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
733 |
msgid "Hide n. posts field"
|
734 |
msgstr "Скрыть поле с № постов"
|
735 |
|
736 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
737 |
msgid "WordPress hidden fields"
|
738 |
msgstr "Скрытые поля WordPress"
|
739 |
|
740 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
741 |
msgid "Show password"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
745 |
msgid "Show first name"
|
746 |
msgstr "Показать имя"
|
747 |
|
748 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
749 |
msgid "Show last name"
|
750 |
msgstr "Показать фамилию"
|
751 |
|
752 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
753 |
msgid "Show nickname"
|
754 |
msgstr "Показать ник"
|
755 |
|
756 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
757 |
msgid "Show website"
|
758 |
msgstr "Показать адрес сайта"
|
759 |
|
760 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
761 |
msgid "Show AIM"
|
762 |
msgstr "Показать AIM"
|
763 |
|
764 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
765 |
msgid "Show Yahoo IM"
|
766 |
msgstr "Показать Yahoo IM"
|
767 |
|
768 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
769 |
msgid "Show Jabber / Google Talk"
|
770 |
msgstr "Показать Jabber / Google Talk"
|
771 |
|
772 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
773 |
msgid "Show Biographical Info"
|
774 |
msgstr ""
|
775 |
|
langs/cimy_uef-sv_SE.mo
CHANGED
Binary file
|
langs/cimy_uef-sv_SE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-01-
|
6 |
-
"PO-Revision-Date: 2009-01-
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -30,28 +30,22 @@ msgstr ""
|
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
34 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
35 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:421
|
36 |
-
msgid "Extra Fields"
|
37 |
-
msgstr "Extra fälter"
|
38 |
-
|
39 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:266
|
40 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
41 |
msgid "Please upload an image with one of the following extensions"
|
42 |
msgstr "Upladda en bild av en av följlande filtyper"
|
43 |
|
44 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
45 |
#, fuzzy
|
46 |
msgid "Delete the picture"
|
47 |
msgstr "Ta bort fält"
|
48 |
|
49 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
50 |
#, fuzzy
|
51 |
msgid "Update the picture"
|
52 |
msgstr "Uppdatra fält"
|
53 |
|
54 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:
|
55 |
msgid "Picture URL:"
|
56 |
msgstr ""
|
57 |
|
@@ -168,25 +162,25 @@ msgstr "Visa Jabber / Google Talk"
|
|
168 |
msgid "Biographical Info"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
172 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
173 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
174 |
msgid "Options"
|
175 |
msgstr "Inställningar"
|
176 |
|
177 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
178 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
179 |
msgid "Fields"
|
180 |
msgstr "Fälter"
|
181 |
|
182 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
183 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
184 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
185 |
msgid "Authors & Users Extended"
|
186 |
msgstr "Användare Extra"
|
187 |
|
188 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
189 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:
|
190 |
msgid "A&U Extended"
|
191 |
msgstr "Användare Extra"
|
192 |
|
@@ -337,12 +331,12 @@ msgid "Name inserted is just in the database, change to another one"
|
|
337 |
msgstr "Namn redan i bruk, ändra detta"
|
338 |
|
339 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
340 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
341 |
msgid "Add a new Field"
|
342 |
msgstr "Tillägga en ny fält"
|
343 |
|
344 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
345 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
346 |
msgid "SUCCESSFUL"
|
347 |
msgstr "LYCKAD"
|
348 |
|
@@ -490,6 +484,13 @@ msgstr "Nollställa"
|
|
490 |
msgid "WordPress Fields"
|
491 |
msgstr "WordPress fälter"
|
492 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
494 |
msgid "None!"
|
495 |
msgstr "Ingen!"
|
@@ -569,195 +570,204 @@ msgstr "Visa poster av dessa skribent"
|
|
569 |
msgid "e-mail: %s"
|
570 |
msgstr "e-post: %s"
|
571 |
|
572 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
573 |
msgid "WordPress Fields table emptied"
|
574 |
msgstr "WordPress tabel tömde"
|
575 |
|
576 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
577 |
msgid "WordPress Fields table deleted"
|
578 |
msgstr "WordPress tabel borttagen"
|
579 |
|
580 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
581 |
msgid "Extra Fields table emptied"
|
582 |
msgstr "Extra tabel fälter tömde"
|
583 |
|
584 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
585 |
msgid "Extra Fields table deleted"
|
586 |
msgstr "Extra tabel fälter bottagen"
|
587 |
|
588 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
589 |
msgid "Users Data table emptied"
|
590 |
msgstr "Använder tabellen tömde"
|
591 |
|
592 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
593 |
msgid "Users Data table deleted"
|
594 |
msgstr "Användare tabellen borttagen "
|
595 |
|
596 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
597 |
msgid "Options set to default values"
|
598 |
msgstr "Inställningar nullställd"
|
599 |
|
600 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
601 |
msgid "Options deleted"
|
602 |
msgstr "Inställninger borttagna"
|
603 |
|
604 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
605 |
msgid "Options changed"
|
606 |
msgstr "Inställningar ändrad"
|
607 |
|
608 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
609 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
610 |
msgid "Save Changes"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
614 |
msgid "General"
|
615 |
msgstr "Allmän"
|
616 |
|
617 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
618 |
msgid "installed is"
|
619 |
msgstr "installerad är"
|
620 |
|
621 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
622 |
msgid "OPTIONS DELETED!"
|
623 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
624 |
|
625 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
626 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
627 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera plugin efter uppdatering!"
|
628 |
|
629 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
630 |
msgid "Database"
|
631 |
msgstr "Databas"
|
632 |
|
633 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
634 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
635 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
636 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
637 |
msgid "select action"
|
638 |
msgstr "Välj aktion"
|
639 |
|
640 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
641 |
msgid "Default values"
|
642 |
msgstr "Standard värder"
|
643 |
|
644 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
645 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
646 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
647 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
648 |
msgid "Delete"
|
649 |
msgstr "Ta bort"
|
650 |
|
651 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
652 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
653 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
654 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
655 |
msgid "NOT PRESENT"
|
656 |
msgstr "EJ NÄRVARANDE"
|
657 |
|
658 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
659 |
msgid "WordPress Fields table"
|
660 |
msgstr "WordPress Fält tabel"
|
661 |
|
662 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
663 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
664 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
665 |
msgid "Empty"
|
666 |
msgstr "Töm"
|
667 |
|
668 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
669 |
msgid "Extra Fields table"
|
670 |
msgstr "Extra Fälter Tabel"
|
671 |
|
672 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
673 |
msgid "Users Data table"
|
674 |
msgstr "Användare Data Tabel"
|
675 |
|
676 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
677 |
msgid "all data inserted by users in all and only extra fields"
|
678 |
msgstr "alla data av användare i alla och bara extra fälter"
|
679 |
|
680 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
681 |
msgid "Force tables creation"
|
682 |
msgstr "Forcera tabeller skapande"
|
683 |
|
684 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
685 |
msgid "User Profile"
|
686 |
msgstr "Användarprofil"
|
687 |
|
688 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
|
|
|
|
|
|
|
|
|
|
689 |
msgid "Items per fieldset"
|
690 |
msgstr "Item per fältset"
|
691 |
|
692 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
693 |
msgid "Fieldset's titles, separates with comma"
|
694 |
msgstr "Fältset titel, separerat med komma"
|
695 |
|
696 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
697 |
msgid "example: title1,title2,title3"
|
698 |
msgstr "till ex.: Titel1,Titel2,Titel3"
|
699 |
|
700 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
701 |
msgid "Hide username field"
|
702 |
msgstr "Göm användarnamn fält"
|
703 |
|
704 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
705 |
msgid "Hide name field"
|
706 |
msgstr "Göm namn fält"
|
707 |
|
708 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
709 |
msgid "Hide email field"
|
710 |
msgstr "Göm e-post fält"
|
711 |
|
712 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
713 |
msgid "Hide role field"
|
714 |
msgstr "Göm roll fält"
|
715 |
|
716 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
717 |
msgid "Hide website field"
|
718 |
msgstr "Göm hemsida fält"
|
719 |
|
720 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
721 |
msgid "Hide n. posts field"
|
722 |
msgstr "Göm n. poster fält"
|
723 |
|
724 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
725 |
msgid "WordPress hidden fields"
|
726 |
msgstr "Wordpress gömde fälter"
|
727 |
|
728 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
729 |
msgid "Show password"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
733 |
msgid "Show first name"
|
734 |
msgstr "Visa förnamn"
|
735 |
|
736 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
737 |
msgid "Show last name"
|
738 |
msgstr "Visa efternamn"
|
739 |
|
740 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
741 |
msgid "Show nickname"
|
742 |
msgstr "Visa leknamn"
|
743 |
|
744 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
745 |
msgid "Show website"
|
746 |
msgstr "Visa hemsida"
|
747 |
|
748 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
749 |
msgid "Show AIM"
|
750 |
msgstr "Visa AIM"
|
751 |
|
752 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
753 |
msgid "Show Yahoo IM"
|
754 |
msgstr "Visa Yahoo IM"
|
755 |
|
756 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
757 |
msgid "Show Jabber / Google Talk"
|
758 |
msgstr "Visa Jabber / Google Talk"
|
759 |
|
760 |
-
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:
|
761 |
msgid "Show Biographical Info"
|
762 |
msgstr ""
|
763 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Cimy User Extra Fields\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-01-10 19:31+0300\n"
|
6 |
+
"PO-Revision-Date: 2009-01-10 19:31+0300\n"
|
7 |
"Last-Translator: Marco Cimmino <cimmino.marco@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
30 |
msgid "File '%s' is not an image."
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_register.php:493
|
35 |
msgid "Please upload an image with one of the following extensions"
|
36 |
msgstr "Upladda en bild av en av följlande filtyper"
|
37 |
|
38 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:369
|
39 |
#, fuzzy
|
40 |
msgid "Delete the picture"
|
41 |
msgstr "Ta bort fält"
|
42 |
|
43 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:371
|
44 |
#, fuzzy
|
45 |
msgid "Update the picture"
|
46 |
msgstr "Uppdatra fält"
|
47 |
|
48 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_profile.php:390
|
49 |
msgid "Picture URL:"
|
50 |
msgstr ""
|
51 |
|
162 |
msgid "Biographical Info"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:498
|
166 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:423
|
167 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:474
|
168 |
msgid "Options"
|
169 |
msgstr "Inställningar"
|
170 |
|
171 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:499
|
172 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:111
|
173 |
msgid "Fields"
|
174 |
msgstr "Fälter"
|
175 |
|
176 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
177 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
178 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:572
|
179 |
msgid "Authors & Users Extended"
|
180 |
msgstr "Användare Extra"
|
181 |
|
182 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:500
|
183 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_user_extra_fields.php:504
|
184 |
msgid "A&U Extended"
|
185 |
msgstr "Användare Extra"
|
186 |
|
331 |
msgstr "Namn redan i bruk, ändra detta"
|
332 |
|
333 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:395
|
334 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
335 |
msgid "Add a new Field"
|
336 |
msgstr "Tillägga en ny fält"
|
337 |
|
338 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:422
|
339 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:434
|
340 |
msgid "SUCCESSFUL"
|
341 |
msgstr "LYCKAD"
|
342 |
|
484 |
msgid "WordPress Fields"
|
485 |
msgstr "WordPress fälter"
|
486 |
|
487 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:708
|
488 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:122
|
489 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_db.php:172
|
490 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:426
|
491 |
+
msgid "Extra Fields"
|
492 |
+
msgstr "Extra fälter"
|
493 |
+
|
494 |
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_admin.php:719
|
495 |
msgid "None!"
|
496 |
msgstr "Ingen!"
|
570 |
msgid "e-mail: %s"
|
571 |
msgstr "e-post: %s"
|
572 |
|
573 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:44
|
574 |
msgid "WordPress Fields table emptied"
|
575 |
msgstr "WordPress tabel tömde"
|
576 |
|
577 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:49
|
578 |
msgid "WordPress Fields table deleted"
|
579 |
msgstr "WordPress tabel borttagen"
|
580 |
|
581 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:58
|
582 |
msgid "Extra Fields table emptied"
|
583 |
msgstr "Extra tabel fälter tömde"
|
584 |
|
585 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:63
|
586 |
msgid "Extra Fields table deleted"
|
587 |
msgstr "Extra tabel fälter bottagen"
|
588 |
|
589 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:72
|
590 |
msgid "Users Data table emptied"
|
591 |
msgstr "Använder tabellen tömde"
|
592 |
|
593 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:77
|
594 |
msgid "Users Data table deleted"
|
595 |
msgstr "Användare tabellen borttagen "
|
596 |
|
597 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:88
|
598 |
msgid "Options set to default values"
|
599 |
msgstr "Inställningar nullställd"
|
600 |
|
601 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:94
|
602 |
msgid "Options deleted"
|
603 |
msgstr "Inställninger borttagna"
|
604 |
|
605 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:317
|
606 |
msgid "Options changed"
|
607 |
msgstr "Inställningar ändrad"
|
608 |
|
609 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:447
|
610 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:644
|
611 |
msgid "Save Changes"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:448
|
615 |
msgid "General"
|
616 |
msgstr "Allmän"
|
617 |
|
618 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:456
|
619 |
msgid "installed is"
|
620 |
msgstr "installerad är"
|
621 |
|
622 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:460
|
623 |
msgid "OPTIONS DELETED!"
|
624 |
msgstr "INSTÄLLNINGAR BORTTAGNA"
|
625 |
|
626 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:464
|
627 |
msgid "VERSIONS MISMATCH! This because you haven't de-activated and re-activated the plug-in after the update! This could give problems..."
|
628 |
msgstr "VERSIONSKONFLIKT! deaktivera och aktivera plugin efter uppdatering!"
|
629 |
|
630 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:471
|
631 |
msgid "Database"
|
632 |
msgstr "Databas"
|
633 |
|
634 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:480
|
635 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:498
|
636 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:517
|
637 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:534
|
638 |
msgid "select action"
|
639 |
msgstr "Välj aktion"
|
640 |
|
641 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:481
|
642 |
msgid "Default values"
|
643 |
msgstr "Standard värder"
|
644 |
|
645 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:482
|
646 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:500
|
647 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:519
|
648 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:536
|
649 |
msgid "Delete"
|
650 |
msgstr "Ta bort"
|
651 |
|
652 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:486
|
653 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:505
|
654 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:523
|
655 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:541
|
656 |
msgid "NOT PRESENT"
|
657 |
msgstr "EJ NÄRVARANDE"
|
658 |
|
659 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:491
|
660 |
msgid "WordPress Fields table"
|
661 |
msgstr "WordPress Fält tabel"
|
662 |
|
663 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:499
|
664 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:518
|
665 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:535
|
666 |
msgid "Empty"
|
667 |
msgstr "Töm"
|
668 |
|
669 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:511
|
670 |
msgid "Extra Fields table"
|
671 |
msgstr "Extra Fälter Tabel"
|
672 |
|
673 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:528
|
674 |
msgid "Users Data table"
|
675 |
msgstr "Användare Data Tabel"
|
676 |
|
677 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:538
|
678 |
msgid "all data inserted by users in all and only extra fields"
|
679 |
msgstr "alla data av användare i alla och bara extra fälter"
|
680 |
|
681 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:546
|
682 |
msgid "Force tables creation"
|
683 |
msgstr "Forcera tabeller skapande"
|
684 |
|
685 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:549
|
686 |
+
msgid "equivalent to de-activate and activate the plug-in; no other operation will be performed"
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:555
|
690 |
msgid "User Profile"
|
691 |
msgstr "Användarprofil"
|
692 |
|
693 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:558
|
694 |
+
#, fuzzy
|
695 |
+
msgid "Extra Fields section title"
|
696 |
+
msgstr "Extra Fälter Tabel"
|
697 |
+
|
698 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:562
|
699 |
msgid "Items per fieldset"
|
700 |
msgstr "Item per fältset"
|
701 |
|
702 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
703 |
msgid "Fieldset's titles, separates with comma"
|
704 |
msgstr "Fältset titel, separerat med komma"
|
705 |
|
706 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:566
|
707 |
msgid "example: title1,title2,title3"
|
708 |
msgstr "till ex.: Titel1,Titel2,Titel3"
|
709 |
|
710 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:576
|
711 |
msgid "Hide username field"
|
712 |
msgstr "Göm användarnamn fält"
|
713 |
|
714 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:582
|
715 |
msgid "Hide name field"
|
716 |
msgstr "Göm namn fält"
|
717 |
|
718 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:587
|
719 |
msgid "Hide email field"
|
720 |
msgstr "Göm e-post fält"
|
721 |
|
722 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:591
|
723 |
msgid "Hide role field"
|
724 |
msgstr "Göm roll fält"
|
725 |
|
726 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:595
|
727 |
msgid "Hide website field"
|
728 |
msgstr "Göm hemsida fält"
|
729 |
|
730 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:599
|
731 |
msgid "Hide n. posts field"
|
732 |
msgstr "Göm n. poster fält"
|
733 |
|
734 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:604
|
735 |
msgid "WordPress hidden fields"
|
736 |
msgstr "Wordpress gömde fälter"
|
737 |
|
738 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:607
|
739 |
msgid "Show password"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:611
|
743 |
msgid "Show first name"
|
744 |
msgstr "Visa förnamn"
|
745 |
|
746 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:615
|
747 |
msgid "Show last name"
|
748 |
msgstr "Visa efternamn"
|
749 |
|
750 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:619
|
751 |
msgid "Show nickname"
|
752 |
msgstr "Visa leknamn"
|
753 |
|
754 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:623
|
755 |
msgid "Show website"
|
756 |
msgstr "Visa hemsida"
|
757 |
|
758 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:627
|
759 |
msgid "Show AIM"
|
760 |
msgstr "Visa AIM"
|
761 |
|
762 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:631
|
763 |
msgid "Show Yahoo IM"
|
764 |
msgstr "Visa Yahoo IM"
|
765 |
|
766 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:635
|
767 |
msgid "Show Jabber / Google Talk"
|
768 |
msgstr "Visa Jabber / Google Talk"
|
769 |
|
770 |
+
#: /var/www/wp-content/plugins/Cimy_User_Extra_Fields/cimy_uef_options.php:639
|
771 |
msgid "Show Biographical Info"
|
772 |
msgstr ""
|
773 |
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
=== Cimy User Extra Fields ===
|
2 |
Contributors: Marco Cimmino
|
3 |
-
Donate link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-
|
4 |
Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
-
Tags: admin, registration, profile, extra fields
|
6 |
Requires at least: 2.5
|
7 |
Tested up to: 2.7
|
8 |
-
Stable tag: 1.3.
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
@@ -17,44 +17,44 @@ WordPress is becoming more than ever a tool to open blog/websites and CMSs in an
|
|
17 |
|
18 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
19 |
|
20 |
-
Two new menus are:
|
21 |
|
22 |
-
|
23 |
-
|
24 |
|
25 |
-
Rules are:
|
26 |
|
27 |
-
|
28 |
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
29 |
|
30 |
-
|
31 |
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, avatar]
|
32 |
|
33 |
-
|
34 |
[only for text, textarea, textarea-rich, password]
|
35 |
|
36 |
-
|
37 |
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, avatar]
|
38 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
39 |
|
40 |
-
|
41 |
[all except avatar by default set to 512]
|
42 |
|
43 |
-
|
44 |
[only for text, textarea, textarea-rich, password, dropdown]
|
45 |
|
46 |
-
|
47 |
[all]
|
48 |
|
49 |
-
|
50 |
[all]
|
51 |
|
52 |
-
|
53 |
[all]
|
54 |
|
55 |
New fields will be visible in the profile and in the registration.
|
56 |
|
57 |
-
As for now the plug-in supports:
|
58 |
* text
|
59 |
* textarea
|
60 |
* textarea-rich
|
@@ -69,7 +69,7 @@ As for now the plug-in supports:
|
|
69 |
|
70 |
future versions can have more.
|
71 |
|
72 |
-
Following WordPress hidden fields can be enabled during registration:
|
73 |
* password
|
74 |
* first name
|
75 |
* last name
|
1 |
=== Cimy User Extra Fields ===
|
2 |
Contributors: Marco Cimmino
|
3 |
+
Donate link: http://www.marcocimmino.net/cimy-wordpress-plugins/support-the-cimy-project-paypal/
|
4 |
Website link: http://www.marcocimmino.net/cimy-wordpress-plugins/cimy-user-extra-fields/
|
5 |
+
Tags: cimy, admin, registration, profile, extra fields, avatar, gravatar
|
6 |
Requires at least: 2.5
|
7 |
Tested up to: 2.7
|
8 |
+
Stable tag: 1.3.2
|
9 |
|
10 |
Add some useful fields to registration and user's info
|
11 |
|
17 |
|
18 |
The plug-in adds two new menu voices in the admin for the administrator and two for users.
|
19 |
|
20 |
+
= Two new menus are: =
|
21 |
|
22 |
+
* "Users-> A&U Extended" lets you show users lists with the new fields that are created
|
23 |
+
* "Options-> Cimy User Extra Fields" lets administrators add as many new fields as are needed to the users' profile, giving the possibility to set some interesting rules.
|
24 |
|
25 |
+
= Rules are: =
|
26 |
|
27 |
+
* min/exact/max length admitted
|
28 |
[only for text, textarea, textarea-rich, password, picture, picture-url, avatar]
|
29 |
|
30 |
+
* field can be empty
|
31 |
[only for text, textarea, textarea-rich, password, picture, picture-url, dropdown, avatar]
|
32 |
|
33 |
+
* check for e-mail address syntax
|
34 |
[only for text, textarea, textarea-rich, password]
|
35 |
|
36 |
+
* field can be modified after the registration
|
37 |
[only for text, textarea, textarea-rich, password, picture, picture-url, checkbox, radio, dropdown, avatar]
|
38 |
[for radio and checkbox 'edit_only_if_empty' has no effects and 'edit_only_by_admin_or_if_empty' has the same effect as edit_only_by_admin]
|
39 |
|
40 |
+
* field equal to some value (for example accept terms and conditions)
|
41 |
[all except avatar by default set to 512]
|
42 |
|
43 |
+
* equal to can be or not case sensitive
|
44 |
[only for text, textarea, textarea-rich, password, dropdown]
|
45 |
|
46 |
+
* field can be hidden during registration
|
47 |
[all]
|
48 |
|
49 |
+
* field can be hidden in user's profile
|
50 |
[all]
|
51 |
|
52 |
+
* field can be hidden in A&U Extended page
|
53 |
[all]
|
54 |
|
55 |
New fields will be visible in the profile and in the registration.
|
56 |
|
57 |
+
= As for now the plug-in supports: =
|
58 |
* text
|
59 |
* textarea
|
60 |
* textarea-rich
|
69 |
|
70 |
future versions can have more.
|
71 |
|
72 |
+
= Following WordPress hidden fields can be enabled during registration: =
|
73 |
* password
|
74 |
* first name
|
75 |
* last name
|