Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/frontend/@n8n/i18n/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2781,7 +2781,7 @@
"updatesPanel.andIs": "and is",
"updatesPanel.behindTheLatest": "behind the latest and greatest n8n",
"updatesPanel.howToUpdateYourN8nVersion": "How to update your n8n version",
"updatesPanel.version": "{numberOfVersions} version{howManySuffix}",
"updatesPanel.version": "{count} version | {count} versions",
"updatesPanel.weVeBeenBusy": "We’ve been busy ✨",
"updatesPanel.youReOnVersion": "You’re on {currentVersionName}, which was released",
"versionCard.breakingChanges": "Breaking changes",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@ const i18n = useI18n();
<strong>
{{
i18n.baseText('updatesPanel.version', {
interpolate: {
numberOfVersions: versionsStore.nextVersions.length,
howManySuffix: versionsStore.nextVersions.length > 1 ? 's' : '',
},
interpolate: { count: versionsStore.nextVersions.length },
})
}}
</strong>
Expand Down