Of course⦠here it is:
settings =
    {
        win32 =
        {
            preferenceStorage = "registry",
            singleInstance = true,
            window =
            {
                -- Settings for the desktop window; applies to both Win32 and macOS desktop apps
                defaultMode = "fullscreen",
                resizable = true,
                defaultViewWidth = 320,
                defaultViewHeight = 480,
                enableCloseButton = true,
                enableMinimizeButton = true,
                enableMaximizeButton = true,
                suspendWhenMinimized = true,
                titleText = {
                    -- The "default" text will be used if the system is using a language and/or
                    -- country code not defined below. This serves as a fallback mechanism.
                    default = "NAME",
                    -- This text is used on English language systems in the United States.
                    -- Note that the country code must be separated by a dash (-).
                    ["enāus"] = "NAME",
                    -- This text is used on English language systems in the United Kingdom.
                    -- Note that the country code must be separated by a dash (-).
                    ["enāgb"] = "NAME",
                    -- This text is used for all other English language systems.
                    ["en"] = "NAME",
                    -- German
                    ["de"] = "NAME",
                    -- This text is used for all French language systems.
                    --["fr"] = "Window Title Test (French)",
                    -- This text is used for all Spanish language systems.
                    --["es"] = "Window Title Test (Spanish)",
                },
            },
            
        }
    },