mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 10:50:14 +01:00
🌐: Add Russian Translations (#1169)
* Add translation for the button and some elements. * Make changes for tests.
This commit is contained in:
parent
cbfe47a9d5
commit
216f6da79e
8 changed files with 32 additions and 9 deletions
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue