Skip to content
Grav 2.0 is officially stable. Read the announcement →
General

Can I put a twig variable inside a translated string?

Solved by phi ARCHITECT View solution

Started by Ptarmic 6 years ago · 2 replies · 1798 views
6 years ago

I've sucessfully created a languages.yaml file with text strings which is working great but I'm wondering if its possible to take a step further and insert twig variables into a string. For example I have string like "Follow XX on Twitter" where I would like to do something like "Follow {{ page.header.post_author }} on Twitter". Is there anyway other than string concatenation to do this?

6 years ago Solution

Hi @Ptarmic -

This is the way to insert variables into your language string:

Translations with Variables

In your language file:

TXT
FOLLOW: Follow %s on %s.

then in your template:

TWIG
{{ 'FOLLOW'|t( page.header.post_author,  'Twitter' )  }}
  • phi
👍 1
6 years ago

@phi:
{{ 'FOLLOW'|t( page.header.post_author, 'Twitter' ) }}

Thanks @phi that worked perfectly!

Suggested topics

Topic Participants Replies Views Activity
General · by Andy Miller, 2 days ago
0 70 2 days ago
General · by Veehem, 3 days ago
0 111 3 days ago
General · by milkboy, 4 days ago
0 113 4 days ago
General · by ian russell, 2 weeks ago
2 205 1 week ago
General · by pamtbaau, 1 month ago
2 462 2 weeks ago