Software⏱️ 3 min read📅 2026-06-11

How to Fix: Terminal error messages are not in English

Terminal error messages not in English on Ubuntu 15.04

Quick Answer: Set the LANGUAGE environment variable to 'en_US.UTF-8' before running the terminal command.

Terminal error messages not in English can be frustrating for users who prefer to read instructions in their native language. This issue affects Ubuntu 15.04 users, specifically those who encounter Russian error messages.

It's essential to resolve this issue to ensure a smooth and efficient terminal experience. The following steps will guide you through the process of fixing this problem.

💡 Why You Are Getting This Error

  • The primary reason for this issue is that the system locale settings are not set to English, causing all error messages to be displayed in Russian.
  • Another possible cause could be a misconfigured language setting or an incorrect locale path, leading to incorrect display of terminal output.

🛠️ Step-by-Step Verified Fixes

Setting Locale and Language Settings

  1. Step 1: Open the Terminal and run the command `locale -a` to list all available locales. This will help you identify which locale is currently set.
  2. Step 2: Run the command `sudo dpkg-reconfigure languages` to configure your language settings. Select English as your preferred language and follow the on-screen instructions.
  3. Step 3: Finally, run the command `export LANGUAGE=en_US.UTF-8` (for English) or `export LANGUAGE=ru_RU.UTF-8` (for Russian) to set the system locale to English.

Alternative Fix: Using a Custom Locale

  1. Step 1: If setting the language and locale settings doesn't work, you can try creating a custom locale. Run the command `sudo locale-gen en_US.UTF-8` (for English) or `sudo locale-gen ru_RU.UTF-8` (for Russian).
  2. Step 2: Once the locale is created, run the command `export LANGUAGE=en_US.UTF-8` (for English) or `export LANGUAGE=ru_RU.UTF-8` (for Russian) to set the system locale.

✨ Wrapping Up

By following these steps, you should be able to resolve the issue of terminal error messages not being in English. If you encounter any further issues, feel free to seek additional assistance from our support team.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions