Learn how to change the default language items
nova/modules/core/language/english/base_lang.php
. This is the primary language file and will store the majority of what you’re looking to change. (If you’re looking to change a longer piece of text, odds are its in one of the other files.) With the base_lang.php
file open, you can use your text editor to search for what you’re looking for. In this case, we want to search for mission.
Your search will probably return a few results, but the ones you’re looking for are the ones that have array keys of global_mission
and global_missions
. Copy both of those items and head on to the next step.
application/language/english/app_lang.php
. Open it up and paste the two items at the bottom of the file. Now, we can change the value of the array items to what we want and save the file. Your file items will probably look a little something like this:
nova
directory and all of its subdirectory are never altered because of the mechanics of Nova’s update process. When updating Nova, every item in the nova
directory is wiped out and reset, If you make your changes within this directory, you would have to recreate these changes every single time you update the system. Placing your updates in the designated folder within the application
directory will future-proof your changes when this needs to occur.app_lang.php
file is saved and then upload it to your server (or if you’re editing it on the server, save the file). Head over to your Nova site and you should see that things should be changed.