Prepare for ICU migration
This commit is contained in:
parent
d0f17a1398
commit
2781e621ad
62 changed files with 550 additions and 414 deletions
|
@ -874,12 +874,12 @@ export function Preferences({
|
|||
left={i18n('Preferences--blocked')}
|
||||
right={
|
||||
blockedCount === 1
|
||||
? i18n('Preferences--blocked-count-singular', [
|
||||
String(blockedCount),
|
||||
])
|
||||
: i18n('Preferences--blocked-count-plural', [
|
||||
String(blockedCount || 0),
|
||||
])
|
||||
? i18n('Preferences--blocked-count-singular', {
|
||||
num: String(blockedCount),
|
||||
})
|
||||
: i18n('Preferences--blocked-count-plural', {
|
||||
num: String(blockedCount || 0),
|
||||
})
|
||||
}
|
||||
/>
|
||||
</SettingsRow>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue