Skip to content

Commit

Permalink
feat(i18n): remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
robertu7 committed May 5, 2024
1 parent 7827cae commit a31e5e3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 21 deletions.
3 changes: 0 additions & 3 deletions lang/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -1137,9 +1137,6 @@
"KBeSFM": {
"defaultMessage": "Support author (current {donationCount} supports)"
},
"KCM7q4": {
"defaultMessage": "{memberCount} members"
},
"KIQUHo": {
"defaultMessage": "Login password",
"description": "src/components/Dialogs/SetPasswordDialog/Content.tsx"
Expand Down
3 changes: 0 additions & 3 deletions lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -1137,9 +1137,6 @@
"KBeSFM": {
"defaultMessage": "Support author (current {donationCount} supports)"
},
"KCM7q4": {
"defaultMessage": "{memberCount} members"
},
"KIQUHo": {
"defaultMessage": "Login password",
"description": "src/components/Dialogs/SetPasswordDialog/Content.tsx"
Expand Down
3 changes: 0 additions & 3 deletions lang/zh-Hans.json
Original file line number Diff line number Diff line change
Expand Up @@ -1137,9 +1137,6 @@
"KBeSFM": {
"defaultMessage": "支持作者(当前 {donationCount} 次支持)"
},
"KCM7q4": {
"defaultMessage": "{memberCount} 个成员"
},
"KIQUHo": {
"defaultMessage": "登录密码",
"description": "src/components/Dialogs/SetPasswordDialog/Content.tsx"
Expand Down
5 changes: 1 addition & 4 deletions lang/zh-Hant.json
Original file line number Diff line number Diff line change
Expand Up @@ -1135,10 +1135,7 @@
"defaultMessage": "刪除"
},
"KBeSFM": {
"defaultMessage": "支持作者(當前 ${donationCount} 次支持)"
},
"KCM7q4": {
"defaultMessage": "{memberCount} 個成員"
"defaultMessage": "支持作者(當前 {donationCount} 次支持)"
},
"KIQUHo": {
"defaultMessage": "登入密碼",
Expand Down
6 changes: 3 additions & 3 deletions src/components/CircleDigest/Counts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ const Counts = ({ circle }: CountsProps) => {
size={14}
aria-label={intl.formatMessage(
{
defaultMessage: `{memberCount} members`,
id: 'KCM7q4',
defaultMessage: `{total} members`,
id: 'VmYzLr',
},
{ memberCount }
{ total: memberCount }
)}
data-test-id={TEST_ID.DIGEST_CIRCLE_MEMBER_COUNT}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,7 @@ const LogbookDialog: React.FC<LogbookDialogProps> = ({
size={16}
spacing={8}
>
<Translate
zh_hant="Logbook 2.0 Bookcase"
zh_hans="Logbook 2.0 Bookcase"
en="Logbook 2.0 Bookcase"
/>
Logbook 2.0 Bookcase
</TextIcon>
}
/>
Expand Down

0 comments on commit a31e5e3

Please sign in to comment.