🌐: Add Russian Translations (#1169)

* Add translation for the button and some elements.

* Make changes for tests.
This commit is contained in:
MACHINSOFT 2023-11-13 04:49:12 +03:00 committed by GitHub
parent cbfe47a9d5
commit 216f6da79e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 32 additions and 9 deletions

View file

@ -1,12 +1,15 @@
import type { TGenButtonProps } from '~/common';
import { ContinueIcon } from '~/components/svg';
import Button from './Button';
import { useLocalize } from '~/hooks';
export default function Continue({ onClick }: TGenButtonProps) {
const localize = useLocalize();
return (
<Button type="continue" onClick={onClick}>
<ContinueIcon className="text-gray-600/90 dark:text-gray-400 " />
Continue
{localize('com_ui_continue')}
</Button>
);
}