+ {/* Static text — reactive to the user's locale */}
+ Loading postcard…
+
+ {/* Disambiguate identical sources with a context */}
+ Untitled
+
+ {/* Interpolation: pass values explicitly */}
+ {t('Hi {name}', { name })}
+ {t('Saved {count} cards', { count })}
+
+ {/* Resolve a lazily-declared descriptor */}
+ {STATUSES.map((s) => - {t(s.label)}
)}
+
+ );
+};
+```
+
+### When to use which
+
+- **`