From 64929d7bd1a43f6032012b6a694d39d84e3a6f50 Mon Sep 17 00:00:00 2001 From: Lauryn Menard Date: Tue, 5 Sep 2023 21:18:38 +0200 Subject: [PATCH] i18n: Simplify formatting in subscribe_to_more_streams template. There's no need to use the multi-line `tr` block format here. --- web/templates/subscribe_to_more_streams.hbs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/templates/subscribe_to_more_streams.hbs b/web/templates/subscribe_to_more_streams.hbs index 2a9738cdae..4d5026bf77 100644 --- a/web/templates/subscribe_to_more_streams.hbs +++ b/web/templates/subscribe_to_more_streams.hbs @@ -1,16 +1,16 @@ {{#if exactly_one_unsubscribed_stream}} - {{~#tr}}Browse 1 more stream{{/tr~}} + {{~t "Browse 1 more stream" ~}} {{else if can_subscribe_stream_count}} - {{~#tr}}Browse {can_subscribe_stream_count} more streams{{/tr~}} + {{~t "Browse {can_subscribe_stream_count} more streams" ~}} {{else if can_create_streams}} - {{~t "Create a stream"~}} + {{~t "Create a stream" ~}} {{/if}}