Skip to content

Commit

Permalink
add gettext on string
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo committed Jan 18, 2024
1 parent 578d5aa commit a55d0c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/agenda/components/AgendaListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
getInternalNote,
} from '../utils';
import ActionMenu from '../../components/ActionMenu';
import {LIST_ANIMATIONS, isMobilePhone} from 'utils';
import {LIST_ANIMATIONS, isMobilePhone, gettext} from 'utils';

interface IProps {
item: IAgendaItem;
Expand Down Expand Up @@ -252,7 +252,7 @@ class AgendaListItem extends React.Component<IProps> {
return (
<div key={i} className='d-flex gap-1 align-items-end'>
{children}
<span className='wire-articles__item__text--muted'>({numberOfNotRenderResults} more)</span>
<span className='wire-articles__item__text--muted'>({gettext('{{n}} more', {n: numberOfNotRenderResults})})</span>
</div>
);
} else {
Expand Down

0 comments on commit a55d0c1

Please sign in to comment.