1.0.41 • Published 2 years ago
vitra-web-translator v1.0.41
Translate Website (Web Translator)
A website translation sdk from Vitra.ai
Installation
Install with npm
npm install vitra-web-translator
Usage/Examples
Import css file in _app.tsx
import 'vitra-web-translator/dist/esm/styles/index.css';
import type { AppProps } from 'next/app';
export default function App({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
</>
);
}
Create a Common Component
import React, { FC, ReactNode } from 'react';
import { VitraWebTranslator } from 'vitra-web-translator';
type Props = {
children: ReactNode,
};
const Layout: FC<Props> = ({ children }) => {
return (
<VitraWebTranslator
apiKey="vitra.VjopflOAtjF9coT7U3_*********_*"
glossaryId="*************"
position="center-right"
theme="dark"
>
{children}
</VitraWebTranslator>
);
};
export default Layout;
Use the common component anywhere in your app
import React from 'react';
import Layout from './Layout';
const Demo = () => {
return (
<Layout>
<h1>This is a demo component</h1>
</Layout>
);
};
export default Demo;
Props
Prop | Type | Required | Description | Possible Values | Default |
---|---|---|---|---|---|
apiKey | string | Yes | API Key generated from Vitra Web Translator site | API KEY | null |
glossaryId | string | Yes | Glossary Id generated from Vitra Web Translator site | GLOSSARY ID | null |
theme | string | Yes | Theme of the language selector | 'dark' | 'blue' | 'pink' | 'yellow' | dark |
position | string | Yes | Position of the language selector dropdown if it is floating | 'top-left' | 'top-center' | 'top-right' | 'center-left' | 'center-center' | 'center-right' | 'bottom-left' | 'bottom-center' | 'bottom-right' | 'center-right' |
Support
For support, email support@vitra.ai.
1.0.41
2 years ago
1.0.40
2 years ago
1.0.39
2 years ago
1.0.38
2 years ago
1.0.37
2 years ago
1.0.36
2 years ago
1.0.35
2 years ago
1.0.34
2 years ago
1.0.33
2 years ago
1.0.32
2 years ago
1.0.31
2 years ago
1.0.30
2 years ago
1.0.29
2 years ago
1.0.28
2 years ago
1.0.27
2 years ago
1.0.26
2 years ago
1.0.25
2 years ago
1.0.24
2 years ago
1.0.23
2 years ago
1.0.22
2 years ago
1.0.21
2 years ago
1.0.20
2 years ago
1.0.19
2 years ago
1.0.18
2 years ago
1.0.17
2 years ago
1.0.16
2 years ago
1.0.15
2 years ago
1.0.14
2 years ago
1.0.13
2 years ago
1.0.12
2 years ago
1.0.11
2 years ago
1.0.10
2 years ago
1.0.9
2 years ago
1.0.8
2 years ago
1.0.7
2 years ago
1.0.6
2 years ago
1.0.5
2 years ago
1.0.4
2 years ago
1.0.3
2 years ago
1.0.2
2 years ago
1.0.1
2 years ago
1.0.0
2 years ago