gtranslator command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
gtranslator: command not found
or when using sudo you get the following error message
sudo: gtranslator: command not found
Solutions to gtranslator: command not found
How To Fix gtranslator: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu gtranslator is provided by gtranslator package.
gtranslator is:
GNOME Translation Editor is a po file editor which makes translating gettext applications as easy as possible, even for people with no translation experience.
It supports the usage of translation memories, syntax highlighting, spell checking, undoing of insertions and deletions, and general integration with the GNOME Desktop.
To fix this problem, we can install more using the command below.
sudo apt-get -y install gtranslator
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install gtranslator.
sudo apt -y install gtranslator
Or if you have aptitude installed you can use the following command.
sudo aptitude install gtranslator
Summary
In this tutorial we learn how to fix gtranslator command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.