How To Install drupal7-i18n on CentOS 7

In this tutorial we learn how to install drupal7-i18n on CentOS 7. drupal7-i18n is Enables multilingual content

Introduction

In this tutorial we learn how to install drupal7-i18n on CentOS 7.

What is drupal7-i18n

This is a collection of modules to extend Drupal core multilingual capabilities and be able to build real life multilingual sites. Some features * Taxonomy translation (both, per language terms and translatable terms) * Multilingual variables * Multilingual blocks (control visibility per language and translate title and content) * Language selection (when you switch the site language you’ll see only the content for that language) Read a complete feature overview in the Internationalization handbook This package provides the following Drupal modules * i18n * i18n_block * i18n_contact * i18n_field * i18n_forum * i18n_menu * i18n_node * i18n_path * i18n_redirect * i18n_select * i18n_string * i18n_sync * i18n_taxonomy * i18n_translation * i18n_user * i18n_variable [1] https

We can use yum or dnf to install drupal7-i18n on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install drupal7-i18n.

Install drupal7-i18n on CentOS 7 Using yum

Update yum database with yum using the following command.

sudo yum makecache

After updating yum database, We can install drupal7-i18n using yum by running the following command:

sudo yum -y install drupal7-i18n

Install drupal7-i18n on CentOS 7 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

After updating yum database, We can install drupal7-i18n using dnf by running the following command:

sudo dnf -y install drupal7-i18n

How To Uninstall drupal7-i18n on CentOS 7

To uninstall only the drupal7-i18n package we can use the following command:

sudo dnf remove drupal7-i18n

References

Summary

In this tutorial we learn how to install drupal7-i18n on CentOS 7 using yum and dnf.