All Projects β†’ getgrav β†’ grav-plugin-langswitcher

getgrav / grav-plugin-langswitcher

Licence: MIT license
Grav LangSwitcher Plugin

Programming Languages

PHP
23972 projects - #3 most used programming language
Twig
543 projects
CSS
56736 projects

Projects that are alternatives of or similar to grav-plugin-langswitcher

pH7-Internationalization
🎌 pH7CMS Internationalization (I18N) package πŸ™Š Get new languages for your pH7CMS website!
Stars: ✭ 17 (-22.73%)
Mutual labels:  multilingual, i18n, internationalization
Keys Translations Manager
KTM, a locale management web app built on MERN stack, lets you manage and control locales in one place. It's particularly useful for someone who needs to manage multiple internationalization/localization projects.
Stars: ✭ 81 (+268.18%)
Mutual labels:  multilingual, i18n, internationalization
Elefant
Elefant, the refreshingly simple PHP CMS and web framework.
Stars: ✭ 188 (+754.55%)
Mutual labels:  multilingual, i18n, internationalization
i18n-language.js
i18n-language.js is Simple i18n language with Vanilla Javascript
Stars: ✭ 21 (-4.55%)
Mutual labels:  multilingual, i18n, multilanguage
sketch-crowdin
Connect your Sketch and Crowdin projects together
Stars: ✭ 35 (+59.09%)
Mutual labels:  multilingual, internationalization, multilanguage
go-localize
i18n (Internationalization and localization) engine written in Go, used for translating locale strings.
Stars: ✭ 45 (+104.55%)
Mutual labels:  i18n, internationalization
grav-plugin-toc
This plugin automagically generates a (minified) Table of Contents based on special markers in the document and adds it into the resulting HTML document.
Stars: ✭ 12 (-45.45%)
Mutual labels:  grav, grav-plugin
ember-i18n-cp-validations
ember-i18n support for ember-cp-validations
Stars: ✭ 20 (-9.09%)
Mutual labels:  i18n, internationalization
grav-plugin-snipcart
Grav Snipcart Plugin
Stars: ✭ 17 (-22.73%)
Mutual labels:  grav, grav-plugin
rails
Rails translation made _('simple').
Stars: ✭ 65 (+195.45%)
Mutual labels:  i18n, internationalization
I18N
I18N Library for .NET, and Delphi
Stars: ✭ 48 (+118.18%)
Mutual labels:  i18n, internationalization
grav-plugin-featherlight
Grav Featherlight Plugin
Stars: ✭ 29 (+31.82%)
Mutual labels:  grav, grav-plugin
msgtools
Tools for Developing Diagnostic Messages
Stars: ✭ 18 (-18.18%)
Mutual labels:  i18n, internationalization
grav-plugin-facebook
Facebook plugin for Grav CMS https://github.com/getgrav/grav
Stars: ✭ 16 (-27.27%)
Mutual labels:  grav, grav-plugin
typesafe-i18n
A fully type-safe and lightweight internationalization library for all your TypeScript and JavaScript projects.
Stars: ✭ 1,227 (+5477.27%)
Mutual labels:  i18n, internationalization
figma-static-localizer
A Figma plugin for static localization
Stars: ✭ 30 (+36.36%)
Mutual labels:  i18n, internationalization
i18n lazy scope
Use lazy lookup with custom i18n scopes.
Stars: ✭ 11 (-50%)
Mutual labels:  i18n, internationalization
grav-plugin-advanced-pagecache
Grav AdvancedPageCache Plugin
Stars: ✭ 19 (-13.64%)
Mutual labels:  grav, grav-plugin
android-studio-plugin
Integrate your Android project with Crowdin
Stars: ✭ 52 (+136.36%)
Mutual labels:  i18n, internationalization
doorkeeper-i18n
Translation files for Doorkeeper OAuth 2 provider
Stars: ✭ 30 (+36.36%)
Mutual labels:  i18n, internationalization

Grav LangSwitcher Plugin

LangSwitcher

LangSwitcher is a Grav plugin that provides native language text links to switch between Multiple Languages in Grav 0.9.30 or greater.

Installation

Installing the LangSwitcher plugin can be done in one of two ways. Our GPM (Grav Package Manager) installation method enables you to quickly and easily install the plugin with a simple terminal command, while the manual method enables you to do so via a zip file.

GPM Installation (Preferred)

The simplest way to install this plugin is via the Grav Package Manager (GPM) through your system's Terminal (also called the command line). From the root of your Grav install type:

bin/gpm install langswitcher

This will install the LangSwitcher plugin into your /user/plugins directory within Grav. Its files can be found under /your/site/grav/user/plugins/langswitcher.

Manual Installation

To install this plugin, just download the zip version of this repository and unzip it under /your/site/grav/user/plugins. Then, rename the folder to langswitcher. You can find these files either on GitHub or via GetGrav.org.

You should now have all the plugin files under

/your/site/grav/user/plugins/langswitcher

Usage

The langswitcher plugin doesn't require any configuration. You do however need to add the included Twig partials template into your own theme somewhere you want the available languages to be displayed.

{% include 'partials/langswitcher.html.twig' %}

Something you might want to do is to override the look and feel of the langswitcher, and with Grav it is super easy.

Copy the template file langswitcher.html.twig into the templates folder of your custom theme:

/your/site/grav/user/themes/custom-theme/templates/partials/langswitcher.html.twig

You can now edit the override and tweak it however you prefer.

Usage of the hreflang partial

A second template is available for hreflang annotations in the header of the page. In order to emit language annotations for the available languages of a page you need to add the corrsponding Twig partial template into the <head> section of your page, which can typically be found in base.html.twig:

{% include 'partials/langswitcher.hreflang.html.twig' %}

This will generate something like:

<link rel="alternate" href="http://example.com/en" hreflang="en" />
<link rel="alternate" href="http://example.com/de" hreflang="de" />
<link rel="alternate" href="http://example.com/zh-cn" hreflang="zh-cn" />

Updating

As development for the LangSwitcher plugin continues, new versions may become available that add additional features and functionality, improve compatibility with newer Grav releases, and generally provide a better user experience. Updating LangSwitcher is easy, and can be done through Grav's GPM system, as well as manually.

GPM Update (Preferred)

The simplest way to update this plugin is via the Grav Package Manager (GPM). You can do this with this by navigating to the root directory of your Grav install using your system's Terminal (also called command line) and typing the following:

bin/gpm update langswitcher

This command will check your Grav install to see if your LangSwitcher plugin is due for an update. If a newer release is found, you will be asked whether or not you wish to update. To continue, type y and hit enter. The plugin will automatically update and clear Grav's cache.

Note: Any changes you have made to any of the files listed under this directory will also be removed and replaced by the new set. Any files located elsewhere (for example a YAML settings file placed in user/config/plugins) will remain intact.

Configuration

Simply copy the user/plugins/langswitcher/langswitcher.yaml into user/config/plugins/langswitcher.yaml and make your modifications.

enabled: true
built_in_css: true
translated_urls: true
untranslated_pages_behavior: none
language_display: long

Options are pretty self explanatory.

Redirecting after switching language

To have Grav redirect to the default page route after switching language, you must add the following configuration to user/config/system.yaml

pages:
  redirect_default_route: true

Customization

The default format for the displaying of the languages is to use the native language names in a long format (e.g. English, Deutsch, Français). However, you can change the default output to use short names (e.g. EN, DE, FR).

This can be configured via the langswitcher.yaml configuration file:

language_display: long              # long | short are the valid options

You can also pass the format in directly via the Twig include:

{% include 'partials/langswitcher.hreflang.html.twig' with {display_format: 'short'} %}

Also you can override the two Twig partials that control the actual display of the long and short output, by copying the partial int your theme's templates/partials/ folder and modifying:

# templates/partials/langswitcher-long.html.twig
{{ native_name(language)|capitalize }}

and

# templates/partials/langswitcher-short.html.twig
{{ language|upper }}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].