We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8b298 commit 502635dCopy full SHA for 502635d
client/src/scenes/Question/scenes/Read/components/Views/Views.jsx
@@ -16,7 +16,7 @@ const Views = ({ value }) => {
16
17
return (
18
<span className="views">
19
- {formattedValue} {intl('views')}
+ {formattedValue} {formattedValue > 1 ? intl('views') : intl('view')}
20
</span>
21
)
22
}
@@ -27,9 +27,11 @@ Views.propTypes = {
27
28
Views.translations = {
29
en: {
30
+ view: 'view',
31
views: 'views'
32
},
33
fr: {
34
+ view: 'vue',
35
views: 'vues'
36
37
0 commit comments