Understanding Language Files in Joomla 3.1 Updated on August 16, 2021 by Brad Markle 1 Minutes, 38 Seconds to Read Language files are text files in Joomla 3.0 that basically list a set of common words for a specific language. The English language file may define a greeting as Hello, while a Spanish language file would define greeting as Hola. There are many words in your Joomla 3.0 site that are printed using this type of reference. For example, if Joomla wanted to print “greeting” on your screen, the php code would reference something like GREETING. Then, based upon the language Joomla is using, it will determine the appropriate word to use, Hello or Hola. Let’s take a look at a real life example If you click on the Screenshot to the right, you will see highlighted where Joomla writes, “Written by”, referring to who wrote the article. In our example, we have two authors showing: Written by Super User Written by Joomla How are language files used? That text, Written by, is actually defined in the following language files: File Constant Value language/en-GB/en-GB.com_content.ini COM_CONTENT_WRITTEN_BY Written by%s language/es-ES/es-ES.com_content.ini COM_CONTENT_WRITTEN_BY Escrito por%s Because we have both English and Spanish installed, the Written by language will change based upon which language we have our site set to use. When the Joomla code references the Constant, COM_CONTENT_WRITTEN_BY, it replaces it with the Value defined in the language file. The value, in this case, includes %s. That variable, %s, will be replaced by the author of the article. So, if the article was written by Bob: The Joomla code would read: The result on your website would be: <?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY', $author); ?> If English:Written byBob If Spanish:Escrito porBob How can I change language files? Very good question! Technically you can simply edit the language file but it is not recommended. Instead, click here to learn more about Using Language Overrides in Joomla 3.0 to change language text. Share this Article Related Articles How to Use the Free Mini Frontpage Extension for Joomla 4.0 How to Change a Joomla 2.5 User’s Email Address How to Configure Joomla 2.5 to Send Email Using SMTP How to Edit a Joomla 3 Template How to install Phoca Gallery for Joomla 2.5 Creating a Menu Item for your Joomla 3 Component Changing Email Settings in Joomla 3.1 Using the Redirect Manager in Joomla 3.1 How to add Bootstrap to a Joomla 3.1 Template How to Use Bootstrap 5.0 Alerts in Joomla 4.0