Toyota 发表于 2024-8-26 19:21:04

翻译成中文,保留源代码


-- All available colors have been configured
Config.ColorToTextColor = {
    black       = '~HUD_COLOUR_BLACK~',
    white       = '~HUD_COLOUR_WHITE~',
    grey      = '~HUD_COLOUR_GREY~',
    red         = '~HUD_COLOUR_RED~',
    redlight    = '~HUD_COLOUR_REDLIGHT~',
    reddark   = '~HUD_COLOUR_REDDARK~',
    blue      = '~HUD_COLOUR_BLUE~',
    bluelight   = '~HUD_COLOUR_BLUELIGHT~',
    bluedark    = '~HUD_COLOUR_BLUEDARK~',
    yellow      = '~HUD_COLOUR_YELLOW~',
    yellowlight = '~HUD_COLOUR_YELLOWLIGHT~',
    yellowdark= '~HUD_COLOUR_YELLOWDARK~',
    orange      = '~HUD_COLOUR_ORANGE~',
    orangelight = '~HUD_COLOUR_ORANGELIGHT~',
    orangedark= '~HUD_COLOUR_ORANGEDARK~',
    green       = '~HUD_COLOUR_GREEN~',
    greenlight= '~HUD_COLOUR_GREENLIGHT~',
    greendark   = '~HUD_COLOUR_GREENDARK~',
    purple      = '~HUD_COLOUR_PURPLE~',
    purplelight = '~HUD_COLOUR_PURPLELIGHT~',
    purpledark= '~HUD_COLOUR_PURPLEDARK~',
    pink      = '~HUD_COLOUR_PINK~',
    silver      = '~HUD_COLOUR_SILVER~',
    gold      = '~HUD_COLOUR_GOLD~',
    brown       = '~HUD_COLOUR_TREVOR_DARK~',
}

-- All available colors have been configured
Config.GangMenuColors = {
    black = {
      foreground = { 255, 255, 255 },
      background = { 0, 0, 0 },
    },
    white = {
      foreground = { 0, 0, 0 },
      background = { 255, 255, 255 },
    },
    grey = {
      foreground = { 0, 0, 0 },
      background = { 155, 155, 155 },
    },
    red = {
      foreground = { 0, 0, 0 },
      background = { 224, 50, 50 },
    },
    redlight = {
      foreground = { 0, 0, 0 },
      background = { 240, 153, 153 },
    },
    reddark = {
      foreground = { 0, 0, 0 },
      background = { 112, 25, 25 },
    },
    blue = {
      foreground = { 0, 0, 0 },
      background = { 93, 182, 229 },
    },
    bluelight = {
      foreground = { 0, 0, 0 },
      background = { 174, 219, 242 },
    },
    bluedark = {
      foreground = { 0, 0, 0 },
      background = { 47, 92, 115 },
    },
    yellow = {
      foreground = { 0, 0, 0 },
      background = { 240, 200, 80 },
    },
    yellowlight = {
      foreground = { 0, 0, 0 },
      background = { 254, 235, 169 },
    },
    yellowdark = {
      foreground = { 0, 0, 0 },
      background = { 126, 107, 41 },
    },
    orange = {
      foreground = { 0, 0, 0 },
      background = { 255, 133, 85 },
    },
    orangelight = {
      foreground = { 0, 0, 0 },
      background = { 255, 194, 170 },
    },
    orangedark = {
      foreground = { 0, 0, 0 },
      background = { 127, 66, 42 },
    },
    green = {
      foreground = { 0, 0, 0 },
      background = { 114, 204, 114 },
    },
    greenlight = {
      foreground = { 0, 0, 0 },
      background = { 185, 230, 185 },
    },
    greendark = {
      foreground = { 0, 0, 0 },
      background = { 57, 102, 57 },
    },
    purple = {
      foreground = { 0, 0, 0 },
      background = { 132, 102, 226 },
    },
    purplelight = {
      foreground = { 0, 0, 0 },
      background = { 192, 179, 239 },
    },
    purpledark = {
      foreground = { 0, 0, 0 },
      background = { 67, 57, 111 },
    },
    pink = {
      foreground = { 0, 0, 0 },
      background = { 203, 54, 148 },
    },
    silver = {
      foreground = { 0, 0, 0 },
      background = { 150, 153, 161 },
    },
    gold = {
      foreground = { 0, 0, 0 },
      background = { 214, 181, 99 },
    },
    brown = {
      foreground = { 0, 0, 0 },
      background = { 127, 81, 43 },
    },
}


ChatGPT 发表于 2024-8-26 19:28:10

-- 所有可用颜色已配置
Config.ColorToTextColor = {
    black       = '~HUD_COLOUR_BLACK~',-- 黑色
    white       = '~HUD_COLOUR_WHITE~',-- 白色
    grey      = '~HUD_COLOUR_GREY~',   -- 灰色
    red         = '~HUD_COLOUR_RED~',    -- 红色
    redlight    = '~HUD_COLOUR_REDLIGHT~', -- 浅红色
    reddark   = '~HUD_COLOUR_REDDARK~',-- 深红色
    blue      = '~HUD_COLOUR_BLUE~',    -- 蓝色
    bluelight   = '~HUD_COLOUR_BLUELIGHT~', -- 浅蓝色
    bluedark    = '~HUD_COLOUR_BLUEDARK~',-- 深蓝色
    yellow      = '~HUD_COLOUR_YELLOW~',   -- 黄色
    yellowlight = '~HUD_COLOUR_YELLOWLIGHT~', -- 浅黄色
    yellowdark= '~HUD_COLOUR_YELLOWDARK~',-- 深黄色
    orange      = '~HUD_COLOUR_ORANGE~',   -- 橙色
    orangelight = '~HUD_COLOUR_ORANGELIGHT~', -- 浅橙色
    orangedark= '~HUD_COLOUR_ORANGEDARK~',-- 深橙色
    green       = '~HUD_COLOUR_GREEN~',   -- 绿色
    greenlight= '~HUD_COLOUR_GREENLIGHT~',-- 浅绿色
    greendark   = '~HUD_COLOUR_GREENDARK~',   -- 深绿色
    purple      = '~HUD_COLOUR_PURPLE~',    -- 紫色
    purplelight = '~HUD_COLOUR_PURPLELIGHT~', -- 浅紫色
    purpledark= '~HUD_COLOUR_PURPLEDARK~',-- 深紫色
    pink      = '~HUD_COLOUR_PINK~',      -- 粉色
    silver      = '~HUD_COLOUR_SILVER~',    -- 银色
    gold      = '~HUD_COLOUR_GOLD~',      -- 金色
    brown       = '~HUD_COLOUR_TREVOR_DARK~', -- 棕色
}

-- 所有可用颜色已配置
Config.GangMenuColors = {
    black = {
      foreground = { 255, 255, 255 },-- 前景色:白色
      background = { 0, 0, 0 },      -- 背景色:黑色
    },
    white = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 255, 255, 255 },-- 背景色:白色
    },
    grey = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 155, 155, 155 },-- 背景色:灰色
    },
    red = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 224, 50, 50 },    -- 背景色:红色
    },
    redlight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 240, 153, 153 },-- 背景色:浅红色
    },
    reddark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 112, 25, 25 },    -- 背景色:深红色
    },
    blue = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 93, 182, 229 },   -- 背景色:蓝色
    },
    bluelight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 174, 219, 242 },-- 背景色:浅蓝色
    },
    bluedark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 47, 92, 115 },    -- 背景色:深蓝色
    },
    yellow = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 240, 200, 80 },   -- 背景色:黄色
    },
    yellowlight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 254, 235, 169 },-- 背景色:浅黄色
    },
    yellowdark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 126, 107, 41 },   -- 背景色:深黄色
    },
    orange = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 255, 133, 85 },   -- 背景色:橙色
    },
    orangelight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 255, 194, 170 },-- 背景色:浅橙色
    },
    orangedark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 127, 66, 42 },    -- 背景色:深橙色
    },
    green = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 114, 204, 114 },   -- 背景色:绿色
    },
    greenlight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 185, 230, 185 },   -- 背景色:浅绿色
    },
    greendark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 57, 102, 57 },   -- 背景色:深绿色
    },
    purple = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 132, 102, 226 },   -- 背景色:紫色
    },
    purplelight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 192, 179, 239 },   -- 背景色:浅紫色
    },
    purpledark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 67, 57, 111 },   -- 背景色:深紫色
    },
    pink = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 203, 54, 148 },    -- 背景色:粉色
    },
    silver = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 150, 153, 161 },   -- 背景色:银色
    },
    gold = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 214, 181, 99 },    -- 背景色:金色
    },
    brown = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 127, 81, 43 },   -- 背景色:棕色
    },
}

ChatGPT 发表于 2024-8-26 19:30:43

-- 所有可用颜色已配置
Config.ColorToTextColor = {
    black       = '~HUD_COLOUR_BLACK~',-- 黑色
    white       = '~HUD_COLOUR_WHITE~',-- 白色
    grey      = '~HUD_COLOUR_GREY~',   -- 灰色
    red         = '~HUD_COLOUR_RED~',    -- 红色
    redlight    = '~HUD_COLOUR_REDLIGHT~', -- 浅红色
    reddark   = '~HUD_COLOUR_REDDARK~',-- 深红色
    blue      = '~HUD_COLOUR_BLUE~',    -- 蓝色
    bluelight   = '~HUD_COLOUR_BLUELIGHT~', -- 浅蓝色
    bluedark    = '~HUD_COLOUR_BLUEDARK~',-- 深蓝色
    yellow      = '~HUD_COLOUR_YELLOW~',   -- 黄色
    yellowlight = '~HUD_COLOUR_YELLOWLIGHT~', -- 浅黄色
    yellowdark= '~HUD_COLOUR_YELLOWDARK~',-- 深黄色
    orange      = '~HUD_COLOUR_ORANGE~',   -- 橙色
    orangelight = '~HUD_COLOUR_ORANGELIGHT~', -- 浅橙色
    orangedark= '~HUD_COLOUR_ORANGEDARK~',-- 深橙色
    green       = '~HUD_COLOUR_GREEN~',   -- 绿色
    greenlight= '~HUD_COLOUR_GREENLIGHT~',-- 浅绿色
    greendark   = '~HUD_COLOUR_GREENDARK~',   -- 深绿色
    purple      = '~HUD_COLOUR_PURPLE~',    -- 紫色
    purplelight = '~HUD_COLOUR_PURPLELIGHT~', -- 浅紫色
    purpledark= '~HUD_COLOUR_PURPLEDARK~',-- 深紫色
    pink      = '~HUD_COLOUR_PINK~',      -- 粉色
    silver      = '~HUD_COLOUR_SILVER~',    -- 银色
    gold      = '~HUD_COLOUR_GOLD~',      -- 金色
    brown       = '~HUD_COLOUR_TREVOR_DARK~', -- 棕色
}

-- 所有可用颜色已配置
Config.GangMenuColors = {
    black = {
      foreground = { 255, 255, 255 },-- 前景色:白色
      background = { 0, 0, 0 },      -- 背景色:黑色
    },
    white = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 255, 255, 255 },-- 背景色:白色
    },
    grey = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 155, 155, 155 },-- 背景色:灰色
    },
    red = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 224, 50, 50 },    -- 背景色:红色
    },
    redlight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 240, 153, 153 },-- 背景色:浅红色
    },
    reddark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 112, 25, 25 },    -- 背景色:深红色
    },
    blue = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 93, 182, 229 },   -- 背景色:蓝色
    },
    bluelight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 174, 219, 242 },-- 背景色:浅蓝色
    },
    bluedark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 47, 92, 115 },    -- 背景色:深蓝色
    },
    yellow = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 240, 200, 80 },   -- 背景色:黄色
    },
    yellowlight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 254, 235, 169 },-- 背景色:浅黄色
    },
    yellowdark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 126, 107, 41 },   -- 背景色:深黄色
    },
    orange = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 255, 133, 85 },   -- 背景色:橙色
    },
    orangelight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 255, 194, 170 },-- 背景色:浅橙色
    },
    orangedark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 127, 66, 42 },    -- 背景色:深橙色
    },
    green = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 114, 204, 114 },-- 背景色:绿色
    },
    greenlight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 185, 230, 185 },-- 背景色:浅绿色
    },
    greendark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 57, 102, 57 },    -- 背景色:深绿色
    },
    purple = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 132, 102, 226 },-- 背景色:紫色
    },
    purplelight = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 192, 179, 239 },-- 背景色:浅紫色
    },
    purpledark = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 67, 57, 111 },    -- 背景色:深紫色
    },
    pink = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 203, 54, 148 },   -- 背景色:粉色
    },
    silver = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 150, 153, 161 },-- 背景色:银色
    },
    gold = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 214, 181, 99 },   -- 背景色:金色
    },
    brown = {
      foreground = { 0, 0, 0 },      -- 前景色:黑色
      background = { 127, 81, 43 },    -- 背景色:棕色
    },
}
页: [1]
查看完整版本: 翻译成中文,保留源代码