Normalize i18n() calls to prepare for ICU migration
This commit is contained in:
parent
7c8e7c1013
commit
c02c8d9640
17 changed files with 377 additions and 273 deletions
|
@ -177,9 +177,11 @@ function OverflowAreaScrollMarker({
|
|||
type="button"
|
||||
className={`${baseClassName}__button`}
|
||||
onClick={onClick}
|
||||
aria-label={i18n(
|
||||
`calling__overflow__scroll-${placement === 'top' ? 'up' : 'down'}`
|
||||
)}
|
||||
aria-label={
|
||||
placement === 'top'
|
||||
? i18n('calling__overflow__scroll-up')
|
||||
: i18n('calling__overflow__scroll-down')
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue