Hello Translated icon

Hello Translated

Bolden OpenWeather Craft CMS 3 plugin

Say "Hello" in all languages plugin for Craft CMS 3.x

Greet your website visitors in their native language!

Requirements

This plugin requires Craft CMS 3 or later.

Overview

Use a personal greeting on your website with many translation options: language name, language code, country code, locale or detected from the browser of the user.

Configuration

Just install the plugin through the Craft Plugin Store.

Using

There are two ways to use the plugin, via twig functions and HTTP requests.

Twig functions

  • craft.helloTranslated.detectBrowser()
    Detects the browser language and returns the appropriate translation
  • craft.helloTranslated.getByCountryCode('GB')
    Given the 2 character ISO country code returns the appropriate translation
  • craft.helloTranslated.getByLanguageCode('en')
    Given the 2 character ISO language code returns the appropriate translation
  • craft.helloTranslated.getByLanguageName('english')
    Given the language name returns the appropriate translation
  • craft.helloTranslated.getByLocale('en_US')
    Given the locale (PHP locale) returns the appropriate translation

HTTP requests

  • api/helloTranslated/countryCode/<countryCode>
    Given the 2 character ISO country code returns the appropriate translation
  • api/helloTranslated/languageCode/<languageCode>
    Given the 2 character ISO language code returns the appropriate translation
  • api/helloTranslated/languageName/<languageName>
    Given the language name returns the appropriate translation
  • api/helloTranslated/locale/<locale>
    Given the locale (PHP locale) returns the appropriate translation

Example

Request
GET /api/helloTranslated/languageName/Dutch

Response

{
  "translations": [
    "Hallo"
  ]
}

Request
GET /api/helloTranslated/countryCode/CH

Response

{
  "translations": [
    "Hallo",
    "Salut",
    "Ciao"
  ]
}

Notice: This plugin makes use of PHP locale to determine the language. That means for a multilanguage country, system will return multiple translations. e.g. In Switzerland the languages Italian, French and German are spoken. Therefore plugin will return all 3 possible translations (Hallo/Salut/Ciao).

Not every language is translated but feel free to suggest new ones and/or suggest update of the current ones! :)

Credits

Made with ❤️ by Bolden – free to use and feedback is much appreciated!

Installation Instructions

To install this plugin, copy the command above to your terminal.

Active Installs
0
Version
1.0.2
License
MIT
Compatibility
Craft 3
Last release
July 9, 2019
Activity (30 days)
0
Closed Issues
0
Open Issues
0
Merged PRs
0
Open PRs