Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct copy of CollectionDigest #4953

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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
8 changes: 4 additions & 4 deletions lang/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,10 +843,6 @@
"defaultMessage": "Connected to {type}",
"description": "src/views/Me/Settings/Settings/Socials/index.tsx"
},
"C8GQaD": {
"defaultMessage": "upadted {date}",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"C9jbHn": {
"defaultMessage": "Number of claps",
"description": "src/components/ArticleDigest/Published/FooterActions/index.tsx"
Expand Down Expand Up @@ -1158,6 +1154,10 @@
"HbEL82": {
"defaultMessage": "Comment has been deleted"
},
"HbwwAe": {
"defaultMessage": "Updated {date}",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"HgY+72": {
"defaultMessage": "Apply",
"description": "src/views/CampaignDetail/Apply/Button/index.tsx"
Expand Down
8 changes: 4 additions & 4 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,10 +843,6 @@
"defaultMessage": "Connected to {type}",
"description": "src/views/Me/Settings/Settings/Socials/index.tsx"
},
"C8GQaD": {
"defaultMessage": "Upadted {date}",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"C9jbHn": {
"defaultMessage": "Number of claps",
"description": "src/components/ArticleDigest/Published/FooterActions/index.tsx"
Expand Down Expand Up @@ -1158,6 +1154,10 @@
"HbEL82": {
"defaultMessage": "Comment has been deleted"
},
"HbwwAe": {
"defaultMessage": "Updated {date}",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"HgY+72": {
"defaultMessage": "Apply",
"description": "src/views/CampaignDetail/Apply/Button/index.tsx"
Expand Down
8 changes: 4 additions & 4 deletions lang/zh-Hans.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,10 +843,6 @@
"defaultMessage": "{type} 已绑定",
"description": "src/views/Me/Settings/Settings/Socials/index.tsx"
},
"C8GQaD": {
"defaultMessage": "{date}更新",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"C9jbHn": {
"defaultMessage": "拍手数量",
"description": "src/components/ArticleDigest/Published/FooterActions/index.tsx"
Expand Down Expand Up @@ -1158,6 +1154,10 @@
"HbEL82": {
"defaultMessage": "评论已刪除"
},
"HbwwAe": {
"defaultMessage": "{date}更新",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"HgY+72": {
"defaultMessage": "报名参加",
"description": "src/views/CampaignDetail/Apply/Button/index.tsx"
Expand Down
8 changes: 4 additions & 4 deletions lang/zh-Hant.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,10 +843,6 @@
"defaultMessage": "{type} 已綁定",
"description": "src/views/Me/Settings/Settings/Socials/index.tsx"
},
"C8GQaD": {
"defaultMessage": "{date}更新",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"C9jbHn": {
"defaultMessage": "拍手數量",
"description": "src/components/ArticleDigest/Published/FooterActions/index.tsx"
Expand Down Expand Up @@ -1158,6 +1154,10 @@
"HbEL82": {
"defaultMessage": "評論已刪除"
},
"HbwwAe": {
"defaultMessage": "{date}更新",
"description": "src/components/CollectionDigest/Feed/index.tsx"
},
"HgY+72": {
"defaultMessage": "報名參加",
"description": "src/views/CampaignDetail/Apply/Button/index.tsx"
Expand Down
4 changes: 2 additions & 2 deletions src/components/CollectionDigest/Feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ const BaseCollectionDigestFeed = ({

<span>
<FormattedMessage
defaultMessage="upadted {date}"
id="C8GQaD"
defaultMessage="Updated {date}"
id="HbwwAe"
description="src/components/CollectionDigest/Feed/index.tsx"
values={{
date: <DateTime date={updatedAt} color="grey" />,
Expand Down
Loading