Skip to content

Commit

Permalink
Translations by @matt-fidd
Browse files Browse the repository at this point in the history
Co-authored-by: Matt Fiddaman <[email protected]>
  • Loading branch information
lelemm and matt-fidd authored Dec 12, 2024
1 parent 0534a1d commit d18f5d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ function CalendarInner({ widget, parameters }: CalendarInnerProps) {
fontStyle: 'italic',
}}
>
No transactions
<Trans>No transactions</Trans>
</View>
)}
onSort={onSort}
Expand Down Expand Up @@ -672,13 +672,13 @@ function CalendarInner({ widget, parameters }: CalendarInnerProps) {
{!mobileTransactionsOpen && (
<>
<SvgCheveronUp width={16} height={16} />
Show transactions
<Trans>Show transactions</Trans>
</>
)}
{mobileTransactionsOpen && (
<>
<SvgCheveronDown width={16} height={16} />
Hide transactions
<Trans>Hide transactions</Trans>
</>
)}
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import React, {
type SetStateAction,
useCallback,
} from 'react';
import { useTranslation } from 'react-i18next';
import { Trans, useTranslation } from 'react-i18next';

import { format } from 'date-fns';
import { debounce } from 'debounce';
Expand Down Expand Up @@ -237,7 +237,7 @@ export function CalendarCard({
marginRight: 4,
}}
>
Expenses:
<Trans>Expenses:</Trans>
</View>
<View style={{ color: chartTheme.colors.red }}>
{totalExpense !== 0 ? (
Expand Down

0 comments on commit d18f5d7

Please sign in to comment.