How To Install php-phpmyadmin-motranslator on CentOS 7
Introduction
In this tutorial we learn how to install php-phpmyadmin-motranslator
on CentOS 7.
What is php-phpmyadmin-motranslator
Translation API for PHP using Gettext MO files. Features * All strings are stored in memory for fast lookup * Fast loading of MO files * Low level API for reading MO files * Emulation of Gettext API * No use of eval() for plural equation Limitations * Not suitable for huge MO files which you don’t want to store in memory * Input and output encoding has to match (preferably UTF-8) Autoloader
We can use yum
or dnf
to install php-phpmyadmin-motranslator
on CentOS 7. In this tutorial we discuss both methods but you only need to choose one of method to install php-phpmyadmin-motranslator.
Install php-phpmyadmin-motranslator on CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
After updating yum database, We can install php-phpmyadmin-motranslator
using yum
by running the following command:
sudo yum -y install php-phpmyadmin-motranslator
Install php-phpmyadmin-motranslator 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 php-phpmyadmin-motranslator
using dnf
by running the following command:
sudo dnf -y install php-phpmyadmin-motranslator
How To Uninstall php-phpmyadmin-motranslator on CentOS 7
To uninstall only the php-phpmyadmin-motranslator
package we can use the following command:
sudo dnf remove php-phpmyadmin-motranslator
References
Summary
In this tutorial we learn how to install php-phpmyadmin-motranslator
on CentOS 7 using yum
and dnf
.