+
i18n attribute on tags
+
+
+
+
+
+
+
+
+
+
+
+
{count, plural, =0 {zero} =1 {one} =2 {two} other {many}}
+
+
+ {sex, select, m {male} f {female}}
+
+
+ {sexB, select, m {male} f {female}}
+
+
+
{{ "count = " + count }}
+
sex = {{ sex }}
+
{{ "custom name" //i18n(ph="CUSTOM_NAME") }}
+
+
+
+ {
+ response.getItemsList().length,
+ plural,
+ =0 {Found no results}
+ =1 {Found one result}
+ other {Found {{response.getItemsList().length}} results}
+}
+
+