Created
November 13, 2014 12:51
-
-
Save kbond/e5c1be69ac39edef7d2c to your computer and use it in GitHub Desktop.
translate symfony button labels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% block button_widget -%} | |
{% if label is empty -%} | |
{% set label = name|humanize %} | |
{%- endif -%} | |
<button type="{{ type|default('button') }}" {{ block('button_attributes') }}>{{ label|trans({}, translation_domain)|raw }}</button> | |
{%- endblock button_widget %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment