diff --git a/htdocs/core/tpl/admin_extrafields_view.tpl.php b/htdocs/core/tpl/admin_extrafields_view.tpl.php
index 4975e00279d..95a9ea250a1 100644
--- a/htdocs/core/tpl/admin_extrafields_view.tpl.php
+++ b/htdocs/core/tpl/admin_extrafields_view.tpl.php
@@ -44,6 +44,7 @@ print '
'.$langs->trans("Position");
print ' ';
print ' | ';
print ''.$langs->trans("Label").' | ';
+print ''.$langs->trans("TranslationString").' | ';
print ''.$langs->trans("AttributeCode").' | ';
print ''.$langs->trans("Type").' | ';
print ''.$langs->trans("Size").' | ';
@@ -71,6 +72,7 @@ if (count($extrafields->attribute_type))
print '';
print "| ".$extrafields->attribute_pos[$key]." | \n";
print "".$extrafields->attribute_label[$key]." | \n"; // We don't translate here, we want admin to know what is the key not translated value
+ print "".$langs->trans($extrafields->attribute_label[$key])." | \n";
print "".$key." | \n";
print "".$type2label[$extrafields->attribute_type[$key]]." | \n";
print ''.$extrafields->attribute_size[$key]." | \n";