Skip to content
Snippets Groups Projects
Unverified Commit a8c60ec9 authored by Tom Robinson's avatar Tom Robinson Committed by GitHub
Browse files

Merge pull request #8174 from metabase/i18n-update

Update metabase.pot
parents f42aa9d0 1cf53144
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ class Overworld extends React.Component {
description={
isSample
? t`Once you connect your own data, I can show you some automatic explorations called x-rays. Here are some examples with sample data.`
: t``
: ``
}
/>
</Card>
......
......@@ -34,9 +34,9 @@ const DefaultMessage = ({
undo: { verb = t`modified`, count = 1, subject = t`item` },
}) => (
<div>
{count > 1
? t`${capitalize(verb)} ${count} ${inflect(subject, count)}`
: t`${capitalize(verb)} ${subject}`}
{count > 1 // TODO: figure out how to i18n this?
? `${capitalize(verb)} ${count} ${inflect(subject, count)}`
: `${capitalize(verb)} ${subject}`}
</div>
);
DefaultMessage.propTypes = {
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment