{"title":"t - Liquid Filter Reference","slug":"t-filter-reference","url":"https://support.storeconnect.com/articles/t-filter-reference","url_markdown":"https://support.storeconnect.com/articles/t-filter-reference.md","subtitle":null,"summary":"Looks up a translation string for the current locale by key. Supports interpolation of dynamic values into translated text using named parameters.","type":"Developer_Documentation","video_url":"","keywords":"liquid, filters, t, theme, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"## Description\n\nReturns the translation for a given key for the current locale\n\n| Property | Value |\n|----------|-------|\n| **Return Type** | string |\n| **Category** | theme |\n\n## Examples\n\n\n```liquid\n\n{{ \"products.general.title\" | t }}\n```\n\n\n**Output:** `All Products`\n\n\n```liquid\n\n{{ \"products.general.cta\" | t: product: \"Whiz Bang 3000\" }}\n```\n\n\n**Output:** `Order a Whiz Bang 3000 Now!`\n\n\n```liquid\n\n{{ \"products.general.cta\" | t: product: product.name }}\n```\n\n\n**Output:** `Order a Geronimo 9000 Now!`\n\n\n```liquid\n\n{{ \"products.general.cta\" | t }}\n```\n\n\n**Output:** `Order a %{product} Now!`\n\n\n```liquid\n\n{{ \"sc.locale.unknown.key\" | t }}\n```\n\n\n**Output:** `missing translation: `sc.locale.unknown.key` for locale: `en``\n\n\n```liquid\n\n{% assign key = \"products.general.title\" %}\n{{ key | t }}\n```\n\n\n**Output:** `All Products`"}