Fabien Potencier 14 vuotta sitten
vanhempi
commit
a28627dfaf

+ 4 - 4
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/security.twig.html

@@ -19,11 +19,11 @@ Security
 {% block panel %}
     <h2>Security</h2>
     {% if collector.authenticated %}
-        <strong>{{ collector.user }}</strong><br />
-        <strong>Roles</strong>: {{ collector.roles|yaml_encode }}
+        Username: <strong>{{ collector.user }}</strong><br />
+        Roles: {{ collector.roles|yaml_encode }}
     {% elseif collector.enabled %}
-        <em>No token.</em>
+        <em>No token</em>
     {% else %}
-        <em>The security component is disabled.</em>
+        <em>The security component is disabled</em>
     {% endif %}
 {% endblock %}