Update texts.lua

After fixing the all_good warning message in yl_api_nodestages, there were two new warning messages introduced at startup from internal.lua:

WARNING[ServerStart]: key settings_dont_match does not exist
WARNING[ServerStart]: key get_filepath does not exist

Plus there was this error when playing without one or more of the optional dependencies ethereal, farming redo, and mobs_animals:

WARNING[ServerStart]: key recipe_not_good does not exist
WARNING[ServerStart]: recipe_not_good

So I added three lines to the bottom of texts.lua to fix or improve these warnings (although I am not 100% sure of the wording for the get_filepath message that appears to only show up when the debug checkbox is checked? I did my best to apply context to the warnings, but edit messages as you see fit.)
This commit is contained in:
malfal 2025-03-08 04:47:52 +01:00
parent 5fbda3589f
commit 43377500e1

View File

@ -52,3 +52,7 @@ texts["error_cannot_read_file"] = "Error reading file: @1"
texts["error_name_not_found"] = "Name not found: @1"
texts["error_priv_not_found"] = "Priv not found: @1"
texts["settings_dont_match"] = "\"Legacy naming mode\" and \"Data source\" settings don't match between yl_canned_food and yl_canned_food_mtg"
texts["get_filepath"] = "User supplied JSON file for @1 is @2"
texts["recipe_not_good"] = "Missing optional dependency to add a recipe for @1"