Skip to content

Commit

Permalink
Merge pull request schmittjoh#504 from tilimac/master
Browse files Browse the repository at this point in the history
Update for Symfony 4.1
  • Loading branch information
goetas authored Oct 7, 2019
2 parents 6bc3513 + dab10bf commit fa53c65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Resources/views/Translate/index.html.twig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "JMSTranslationBundle::base.html.twig" %}
{% extends "@JMSTranslation/base.html.twig" %}

{% block javascripts %}
{{ parent() }}
Expand Down Expand Up @@ -58,12 +58,12 @@

{% if newMessages is not empty %}
<h3>New Messages</h3>
{% include "JMSTranslationBundle:Translate:messages.html.twig" with {"messages": newMessages} %}
{% include "@JMSTranslation/Translate/messages.html.twig" with {"messages": newMessages} %}
{% endif %}

{% if existingMessages is not empty %}
<h3>Existing Messages</h3>
{% include "JMSTranslationBundle:Translate:messages.html.twig" with {"messages": existingMessages} %}
{% include "@JMSTranslation/Translate/messages.html.twig" with {"messages": existingMessages} %}
{% endif %}

{% endblock %}

0 comments on commit fa53c65

Please sign in to comment.