Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Can I put a twig variable inside a translated string?

Solved by phi ARCHITECT View solution

Started by Ptarmic 6 years ago · 2 replies · 1930 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 Old Man Umby, 1 week ago
2 106 23 minutes ago
General · by jeremycherfas, 2 weeks ago
5 200 13 hours ago
General · by lynbor, 6 days ago
2 131 3 days ago
General · by Sebastian, 2 weeks ago
1 131 2 weeks ago
General · by Andy Miller, 3 weeks ago
0 254 3 weeks ago