templates/translationsjs.html.twig line 1

Open in your IDE?
  1. {##
  2.  # NOTE  : this file is intended to provide twig translations inside javascript files.
  3.  # USAGE : just add a unique key to the object 'translations' with the translated value
  4.  #  then, in your javascript file, just call translations.<my_key> to key the translated value.
  5.  #  translations are available in all the frontend, given that this file is included inside
  6.  #  app/Resources/frontend.html.twig
  7.  #}
  8. <script type="text/javascript">
  9.     var translations = {
  10.         'pitchMultiply'   : "{{ 'frontend.offer.pitch.respect'|trans({'%pitch%': '%pitch%', '%list%': '%list%' })|raw }}",
  11.         'amoutTooLow'     : "{{ 'frontend.offer.min.tooLow'|trans({'%minPrice%' : '%minPrice%'}) }}",
  12.         'deleteNotice'    : "{{ 'frontend.profile.delete.notice'|trans }}",
  13.         'deleteProcessLn1': "{{ 'frontend.profile.delete.running'|trans }}",
  14.         'deleteProcessLn2': "{{ 'frontend.profile.delete.running.wait'|trans}}",
  15.         'deleteSuccessLn1': "{{ 'frontend.profile.delete.success'|trans }}",
  16.         'deleteSuccessLn2': "{{ 'frontend.profile.delete.success.redirect'|trans }}",
  17.         'confirmBuyout'   : "{{ 'frontend.auction.popup.confirm.buyout'|trans|raw }}",
  18.         'alertBuyout'     : "{{ 'frontend.auction.popup.alert.buyout'|trans|raw }}",
  19.         'areYouSure'      : "{{ 'frontend.auction.confirm.question'|trans }}",
  20.         'valider'         : "{{ 'Valider'|trans }}",
  21.         'formNext'        : "{{ 'frontend.page.register_pro.form.next'|trans }}",
  22.     }
  23. </script>