Skip to content

Commit

Permalink
Update .pot file + missing translators comments
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeelia committed Apr 29, 2024
1 parent 25db537 commit 6c5445a
Show file tree
Hide file tree
Showing 2 changed files with 466 additions and 167 deletions.
15 changes: 12 additions & 3 deletions assets/js/synonyms/apps/synonyms-settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,23 +82,32 @@ export default () => {
name: 'synonyms',
title: (
<GroupTab isValid={!synonyms.some((s) => !s.valid)}>
{sprintf(__('Synonyms (%d)', 'elasticpress'), synonyms.length)}
{
/* translators: Synonyms count */
sprintf(__('Synonyms (%d)', 'elasticpress'), synonyms.length)
}
</GroupTab>
),
},
{
name: 'hyponyms',
title: (
<GroupTab isValid={!hyponyms.some((s) => !s.valid)}>
{sprintf(__('Hyponyms (%d)', 'elasticpress'), hyponyms.length)}
{
/* translators: Hyponyms count */
sprintf(__('Hyponyms (%d)', 'elasticpress'), hyponyms.length)
}
</GroupTab>
),
},
{
name: 'replacements',
title: (
<GroupTab isValid={!replacements.some((s) => !s.valid)}>
{sprintf(__('Replacements (%d)', 'elasticpress'), replacements.length)}
{
/* translators: Replacements count */
sprintf(__('Replacements (%d)', 'elasticpress'), replacements.length)
}
</GroupTab>
),
},
Expand Down
Loading

0 comments on commit 6c5445a

Please sign in to comment.