markdown/tabbed_sections: Rename TAB_DISPLAY_NAMES to TAB_SECTION_LABELS.

This commit is contained in:
Pradyumna Sinha 2021-10-02 02:46:47 +05:30 committed by Tim Abbott
parent 076d9eeb16
commit fe5de4a128
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ DIV_TAB_CONTENT_TEMPLATE = """
# If adding new entries here, also check if you need to update
# tabbed-instructions.js
TAB_DISPLAY_NAMES = {
TAB_SECTION_LABELS = {
"desktop-web": "Desktop/Web",
"ios": "iOS",
"android": "Android",
@ -138,7 +138,7 @@ class TabbedSectionsPreprocessor(Preprocessor):
li_elements = []
for tab in tab_section["tabs"]:
li = NAV_LIST_ITEM_TEMPLATE.format(
data_language=tab.get("tab_name"), name=TAB_DISPLAY_NAMES.get(tab.get("tab_name"))
data_language=tab.get("tab_name"), name=TAB_SECTION_LABELS.get(tab.get("tab_name"))
)
li_elements.append(li)
return NAV_BAR_TEMPLATE.format(tabs="\n".join(li_elements))