]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixes #3926 updated spacing for edit profile field forms
authorCash Costello <cash.costello@gmail.com>
Wed, 26 Oct 2011 11:16:11 +0000 (07:16 -0400)
committerCash Costello <cash.costello@gmail.com>
Wed, 26 Oct 2011 11:16:11 +0000 (07:16 -0400)
languages/en.php
views/default/admin/appearance/profile_fields/list.php
views/default/forms/profile/fields/add.php

index 9c5d1701d50855051dea6c3e9dcb2566fd0d773a..3216be5e71a54abb441b39cd352f0556b05e5b39 100644 (file)
@@ -393,11 +393,11 @@ $english = array(
        'profile:label' => "Profile label",
        'profile:type' => "Profile type",
        'profile:editdefault:delete:fail' => 'Removed default profile item field failed',
-       'profile:editdefault:delete:success' => 'Default profile item deleted!',
-       'profile:defaultprofile:reset' => 'Default system profile reset',
+       'profile:editdefault:delete:success' => 'Profile field deleted',
+       'profile:defaultprofile:reset' => 'Profile fields reset to the system default',
        'profile:resetdefault' => 'Reset default profile',
        'profile:explainchangefields' => "You can replace the existing profile fields with your own using the form below. \n\n Give the new profile field a label, for example, 'Favorite team', then select the field type (eg. text, url, tags), and click the 'Add' button. To re-order the fields drag on the handle next to the field label. To edit a field label - click on the label's text to make it editable. \n\n At any time you can revert back to the default profile set up, but you will lose any information already entered into custom fields on profile pages.",
-       'profile:editdefault:success' => 'Item successfully added to default profile',
+       'profile:editdefault:success' => 'New profile field added',
        'profile:editdefault:fail' => 'Default profile could not be saved',
 
 
index 3e287ceac91699e2971028a22d86e6f7ac06db14..b9440a95d1a130483d101ec769103a5cea64be2e 100644 (file)
@@ -26,7 +26,7 @@ if ($fieldlist) {
        }
 }
 ?>
-<ul id="elgg-profile-fields">
+<ul id="elgg-profile-fields" class="mvm">
 <?php
 
 $save = elgg_echo('save');
index bd58ae381f1a0ec50c5168bd966309c054fa8401..1ea9c57a9b7360fe477b576862c3e1bcd1ad555a 100644 (file)
@@ -20,8 +20,8 @@ $type_control = elgg_view('input/dropdown', array('name' => 'type', 'options_val
 $submit_control = elgg_view('input/submit', array('name' => elgg_echo('add'), 'value' => elgg_echo('add')));
 
 $formbody = <<< END
-               <div class="elgg-foot">$label_text: $label_control
-               $type_text: $type_control
+               <div>$label_text: $label_control</div>
+               <div class="elgg-foot">$type_text: $type_control
                $submit_control</div>
 END;