1.4.3 • Published 25 days ago

translate-easy v1.4.3

Weekly downloads
-
License
ISC
Repository
github
Last release
25 days ago

Translate Easy

Translate Easy simplifies the process of translating text within React applications by providing a flexible set of components and hooks.

Installation

You can install Translate Easy via npm or yarn:

npm install translate-easy

or

yarn add translate-easy

Usage

Translate Component

The Translate component translates text based on the selected language.

import { Translate } from 'translate-easy';

// Basic usage
<Translate>Hello, world!</Translate>

// Usage with specific translations
<Translate translations={{ 'ar': 'مرحبا بالعالم', 'fr': 'Bonjour le monde!' }}>Hello, world!</Translate>

useTranslate Hook

The useTranslate hook is used to translate text dynamically within components.

import React from 'react';
import { useTranslate as t } from 'translate-easy';

const MyComponent = () => {
  return (
    <input placeholder={t("Enter your name", { ar: "ادخل اسمك" })} />
  );
};

export default MyComponent;

Parameters

  • text: string - The text to translate.
  • translations: { key: string: string } (Optional) - Custom translations for the current language.

Returns

string: The translated text.

Default Values

  • text: The original text if no translation is available.
  • translations: An empty object if no custom translations are provided.
  • selectedLanguage: English (code: "en", name: "English")
  • developmentLanguage: English (code: "en", name: "English")
  • languages: Array of default languages:
    [
      { code: "ar", name: "العربية", isRtl: true },
      { code: "en", name: "English" },
      { code: "fr", name: "Français" },
      { code: "es", name: "Español" },
      { code: "de", name: "Deutsch" },
      { code: "hi", name: "हिन्दी" },
      { code: "it", name: "Italiano" },
      { code: "ja", name: "日本語" },
      { code: "ko", name: "한국어" },
      { code: "zh-CN", name: "中文(简体)" },
      { code: "zh-TW", name: "中文(繁體)" },
    ]
  • userSelectedLanguage: English (code: "en", name: "English")
  • jsonFiles: undefined
  • useGoogleTranslate: true

LanguageProvider Component

The LanguageProvider component manages language settings and provides language context to child components.

Props

  • children: ReactNode - The children components.
  • languages: Language - An array of available languages.
  • useGoogleTranslate: boolean (Optional) - Whether to use Google Translate for translation. Default is true.
  • userSelectedLanguage: Language (Optional) - The language selected by the user during runtime. Default is English ({ code: "en", name: "English" }).
  • developmentLanguage: Language (Optional) - The language used during development. Default is English ({ code: "en", name: "English" }).
  • jsonFiles: { key: string: string } (Optional) - Bath to the JSON files for translations.

Example

import React from 'react';
import { LanguageProvider } from 'translate-easy';

const App = () => {
  return (
    <LanguageProvider>
      {/* Your app components */}
    </LanguageProvider>
  );
};

export default App;

API Reference

useTranslate

Hook for translating text based on the selected language.

Parameters

  • text: string - The text to translate.
  • translations: { key: string: string } (Optional) - Custom translations for the current language.

Returns

string: The translated text.

Translate Component

Component for translating text based on the selected language.

Props

  • children: string - The text to be translated.
  • translations: { key: string: string } (Optional) - Optional translations for specific languages.

Contribution

Contributions are welcome! To contribute to Translate Easy, follow these steps:

  1. Fork the repository.
  2. Create your feature branch: git checkout -b feature/MyFeature.
  3. Commit your changes: git commit -m 'Add some feature'.
  4. Push to the branch: git push origin feature/MyFeature.
  5. Submit a pull request.
1.4.3

25 days ago

1.4.2

1 month ago

1.4.1

1 month ago

1.4.0

1 month ago

1.3.9

1 month ago

1.3.8

1 month ago

1.3.7

1 month ago

1.3.6

1 month ago

1.3.5

1 month ago

1.3.4

1 month ago

1.3.3

1 month ago

1.3.2

1 month ago

1.3.1

1 month ago

1.3.0

1 month ago

1.2.29

1 month ago

1.2.23

2 months ago

1.2.24

2 months ago

1.2.27

2 months ago

1.2.28

2 months ago

1.2.25

2 months ago

1.2.26

2 months ago

1.2.19

2 months ago

1.2.20

2 months ago

1.2.21

2 months ago

1.2.22

2 months ago

1.2.18

3 months ago

1.2.12

3 months ago

1.2.13

3 months ago

1.2.16

3 months ago

1.2.17

3 months ago

1.2.14

3 months ago

1.2.15

3 months ago

1.2.11

5 months ago

1.2.10

5 months ago

1.2.9

5 months ago

1.2.8

6 months ago

1.2.7

6 months ago

1.2.6

9 months ago

1.2.5

9 months ago

1.2.4

9 months ago

1.2.3

9 months ago

1.2.2

10 months ago

1.2.1

10 months ago

1.2.0

10 months ago

1.1.0

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago