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-translatorUsage/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
3 years ago
1.0.39
3 years ago
1.0.38
3 years ago
1.0.37
3 years ago
1.0.36
3 years ago
1.0.35
3 years ago
1.0.34
3 years ago
1.0.33
3 years ago
1.0.32
3 years ago
1.0.31
3 years ago
1.0.30
3 years ago
1.0.29
3 years ago
1.0.28
3 years ago
1.0.27
3 years ago
1.0.26
3 years ago
1.0.25
3 years ago
1.0.24
3 years ago
1.0.23
3 years ago
1.0.22
3 years ago
1.0.21
3 years ago
1.0.20
3 years ago
1.0.19
3 years ago
1.0.18
3 years ago
1.0.17
3 years ago
1.0.16
3 years ago
1.0.15
3 years ago
1.0.14
3 years ago
1.0.13
3 years ago
1.0.12
3 years ago
1.0.11
3 years ago
1.0.10
3 years ago
1.0.9
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago