Docs: add spanish language for MLSS (#5172)

* Docs: add spanish language for SM64

* Docs: add spanish language for MLSS

* Update worlds/mlss/docs/setup_es.md

Co-authored-by: PantoUwUr <99690102+PantoUwUr@users.noreply.github.com>

* Update worlds/mlss/docs/es_Mario & Luigi Superstar Saga.md

Co-authored-by: RoobyRoo <thegreenrobby@gmail.com>

---------

Co-authored-by: PantoUwUr <99690102+PantoUwUr@users.noreply.github.com>
Co-authored-by: RoobyRoo <thegreenrobby@gmail.com>
This commit is contained in:
GreenMarco
2026-02-04 17:26:56 -06:00
committed by GitHub
parent f3389f5d8b
commit c51da00bfb
3 changed files with 123 additions and 3 deletions

View File

@@ -19,8 +19,7 @@ from .Rules import set_rules
class MLSSWebWorld(WebWorld):
theme = "partyTime"
bug_report_page = "https://github.com/jamesbrq/ArchipelagoMLSS/issues"
tutorials = [
Tutorial(
setup_en =Tutorial(
tutorial_name="Setup Guide",
description="A guide to setting up Mario & Luigi: Superstar Saga for Archipelago.",
language="English",
@@ -28,7 +27,17 @@ class MLSSWebWorld(WebWorld):
link="setup/en",
authors=["jamesbrq"],
)
]
setup_es = Tutorial(
tutorial_name=setup_en.tutorial_name,
description=setup_en.description,
language="Español",
file_name="setup_es.md",
link="setup/es",
authors=["GreenMarco"],
)
tutorials =[setup_en, setup_es]
class MLSSSettings(settings.Group):