From 7baf65749d8529dde1e462edf245b39de12b445c Mon Sep 17 00:00:00 2001 From: nearbyplayer Date: Sat, 2 Sep 2017 19:13:42 -0400 Subject: [PATCH] Updated multi-language support --- config.lua | 126 ++++++++++++++++++++++++------------------------- locales/en.lua | 63 ++++++++++++++++++++++++- locales/fr.lua | 62 ++++++++++++++++++++++++ 3 files changed, 187 insertions(+), 64 deletions(-) diff --git a/config.lua b/config.lua index 67cfa883..0da98d8a 100644 --- a/config.lua +++ b/config.lua @@ -8,7 +8,7 @@ Config.Zones = { Size = {x = 3.0, y = 3.0, z = 0.2}, Color = {r = 204, g = 204, b = 0}, Marker= 1, - Name = "LS CUSTOM", + Name = "LS CUSTOMS", Hint = _U('press_custom') } } @@ -85,21 +85,21 @@ function GetColors(color) elseif color == 'red' then colors = { { index = 27, label = _U('red')}, - { index = 28, label = 'Rouge Turin'}, - { index = 29, label = 'Coquelicot'}, - { index = 30, label = 'Rouge Cuivré'}, - { index = 31, label = 'Rouge Cardinal'}, - { index = 32, label = 'Rouge Brique'}, - { index = 33, label = 'Grenat'}, - { index = 34, label = 'Pourpre'}, - { index = 35, label = 'Framboise'}, - { index = 39, label = 'Rouge Mat'}, - { index = 40, label = 'Rouge Foncé'}, - { index = 43, label = 'Rouge Pulpeux'}, - { index = 44, label = 'Rouge Brillant'}, - { index = 46, label = 'Rouge Pale'}, - { index = 143, label = 'Rouge Vin'}, - { index = 150, label = 'Volcano'} + { index = 28, label = _U('torino_red')}, + { index = 29, label = _U('poppy')}, + { index = 30, label = _U('copper_red')}, + { index = 31, label = _U('cardinal')}, + { index = 32, label = _U('brick')}, + { index = 33, label = _U('garnet')}, + { index = 34, label = _U('cabernet')}, + { index = 35, label = _U('candy')}, + { index = 39, label = _U('matte_red')}, + { index = 40, label = _U('dark_red')}, + { index = 43, label = _U('red_pulp')}, + { index = 44, label = _U('bril_red')}, + { index = 46, label = _U('pale_red')}, + { index = 143, label = _U('wine_red')}, + { index = 150, label = _U('volcano')} } elseif color == 'pink' then colors = { @@ -109,35 +109,35 @@ function GetColors(color) } elseif color == 'blue' then colors = { - { index = 54, label = 'Topaze'}, - { index = 60, label = 'Bleu Clair'}, - { index = 61, label = 'Bleu Galaxy'}, - { index = 62, label = 'Bleu Foncé'}, - { index = 63, label = 'Bleu Azur'}, - { index = 64, label = 'Bleu Marine'}, - { index = 65, label = 'Lapis Lazuli'}, - { index = 67, label = 'Bleu Diamant'}, - { index = 68, label = 'Surfer'}, - { index = 69, label = 'Pastel'}, - { index = 70, label = 'Bleu Celeste'}, - { index = 73, label = 'Bleu Rally'}, - { index = 74, label = 'Bleu Paradis'}, - { index = 75, label = 'Bleu Nuit'}, - { index = 77, label = 'Bleu Cyan'}, - { index = 78, label = 'Cobalt'}, - { index = 79, label = 'Bleu Electrique'}, - { index = 80, label = 'Bleu Horizon'}, - { index = 82, label = 'Bleu Métallisé'}, - { index = 83, label = 'Aigue Marine '}, - { index = 84, label = 'Bleu Agathe'}, - { index = 85, label = 'Zirconium'}, - { index = 86, label = 'Spinelle'}, - { index = 87, label = 'Tourmaline'}, - { index = 127, label = 'Paradis'}, - { index = 140, label = 'Bubble Gum'}, - { index = 141, label = 'Bleu Minuit'}, - { index = 146, label = 'Bleu Interdit'}, - { index = 157, label = 'Bleu Glacier'} + { index = 54, label = _U('topaz')}, + { index = 60, label = _U('light_blue')}, + { index = 61, label = _U('galaxy_blue')}, + { index = 62, label = _U('dark_blue')}, + { index = 63, label = _U('azure')}, + { index = 64, label = _U('navy_blue')}, + { index = 65, label = _U('lapis')}, + { index = 67, label = _U('blue_diamond')}, + { index = 68, label = _U('surfer')}, + { index = 69, label = _U('pastel_blue')}, + { index = 70, label = _U('celeste_blue')}, + { index = 73, label = _U('rally_blue')}, + { index = 74, label = _U('blue_paradise')}, + { index = 75, label = _U('blue_night')}, + { index = 77, label = _U('cyan_blue')}, + { index = 78, label = _U('cobalt')}, + { index = 79, label = _U('electric_blue')}, + { index = 80, label = _U('horizon_blue')}, + { index = 82, label = _U('metallic_blue')}, + { index = 83, label = _U('aquamarine')}, + { index = 84, label = _U('blue_agathe')}, + { index = 85, label = _U('zirconium')}, + { index = 86, label = _U('spinel')}, + { index = 87, label = _U('tourmaline')}, + { index = 127, label = _U('paradise')}, + { index = 140, label = _U('bubble_gum')}, + { index = 141, label = _U('midnight_blue')}, + { index = 146, label = _U('forbidden_blue')}, + { index = 157, label = _U('glacier_blue')} } elseif color == 'yellow' then colors = { @@ -149,23 +149,23 @@ function GetColors(color) } elseif color == 'green' then colors = { - { index = 49, label = 'Vert Foncé'}, - { index = 50, label = 'Vert Rally'}, - { index = 51, label = 'Vert Sapin'}, - { index = 52, label = 'Vert Olive'}, - { index = 53, label = 'Vert Clair'}, - { index = 55, label = 'Vert Lime'}, - { index = 56, label = 'Vert Forêt'}, - { index = 57, label = 'Vert Pelouse'}, - { index = 58, label = 'Vert Impérial'}, - { index = 59, label = 'Vert Bouteille'}, - { index = 92, label = 'Vert Citrus'}, - { index = 125, label = 'Vert Anis'}, - { index = 128, label = 'Kaki'}, - { index = 133, label = 'Vert Army'}, - { index = 151, label = 'Vert Sombre'}, - { index = 152, label = 'Vert Chasseur'}, - { index = 155, label = 'Amarylisse'} + { index = 49, label = _U('met_dark_green')}, + { index = 50, label = _U('rally_green')}, + { index = 51, label = _U('pine_green')}, + { index = 52, label = _U('olive_green')}, + { index = 53, label = _U('light_green')}, + { index = 55, label = _U('lime_green')}, + { index = 56, label = _U('forest_green')}, + { index = 57, label = _U('lawn_green')}, + { index = 58, label = _U('imperial_green')}, + { index = 59, label = _U('green_bottle')}, + { index = 92, label = _U('citrus_green')}, + { index = 125, label = _U('green_anis')}, + { index = 128, label = _U('khaki')}, + { index = 133, label = _U('army_green')}, + { index = 151, label = _U('dark_green')}, + { index = 152, label = _U('hunter_green')}, + { index = 155, label = _U('matte_foilage_green')} } elseif color == 'orange' then colors = { @@ -401,7 +401,7 @@ end Config.Menus = { main = { - label = 'LS CUSTOM', + label = 'LS CUSTOMS', parent = nil, upgrades = _U('upgrades'), cosmetics = _U('cosmetics') diff --git a/locales/en.lua b/locales/en.lua index 0eb7566a..dd3b5eae 100644 --- a/locales/en.lua +++ b/locales/en.lua @@ -54,6 +54,21 @@ Locales['en'] = { ['grayhunter'] = 'grey Hunter', -- Red ['red'] = 'red', + ['torino_red'] = 'torino Red', + ['poppy'] = 'poppy', + ['copper_red'] = 'copper Red', + ['cardinal'] = 'cardinal Red', + ['brick'] = 'brick Red', + ['garnet'] = 'Garnet', + ['cabernet'] = 'cabernet Red', + ['candy'] = 'candy Red', + ['matte_red'] = 'matte Red', + ['dark_red'] = 'dark Red', + ['red_pulp'] = 'red Pulp', + ['bril_red'] = 'brilliant Red', + ['pale_red'] = 'pale Red', + ['wine_red'] = 'wine Red', + ['volcano'] = 'Volcano', -- Pink ['pink'] = 'pink', ['electricpink'] = 'electric Pink', @@ -62,6 +77,35 @@ Locales['en'] = { ['sugarplum'] = 'sugar Plum', -- Blue ['blue'] = 'blue', + ['topaz'] = 'topaz', + ['light_blue'] = 'light Blue', + ['galaxy_blue'] = 'galaxy Blue', + ['dark_blue'] = 'dark Blue', + ['azure'] = 'azure', + ['navy_blue'] = 'navy Blue', + ['lapis'] = 'lapis Lazuli', + ['blue_diamond'] = 'blue Diamond', + ['surfer'] = 'surfer', + ['pastel_blue'] = 'pastel Blue', + ['celeste_blue'] = 'celeste Blue', + ['rally_blue'] = 'rally Blue', + ['blue_paradise'] = 'blue Paradise' + ['blue_night'] = 'blue Night', + ['cyan_blue'] = 'cyan Blue', + ['cobalt'] = 'cobalt', + ['electric_blue'] = 'electric Blue', + ['horizon_blue'] = 'horizon Blue', + ['metallic_blue'] = 'metallic Blue', + ['aquamarine'] = 'aquamarine', + ['blue_agathe'] = 'blue Agathe', + ['zirconium'] = 'zirconium', + ['spinel'] = 'spinel', + ['tourmaline'] = 'tourmaline', + ['paradise'] = 'paradise', + ['bubble_gum'] = 'bubble Gum', + ['midnight_blue'] = 'midnight Blue', + ['forbidden_blue'] = 'forbidden Blue', + ['glacier_blue'] = 'glacier Blue', -- Yellow ['yellow'] = 'yellow', ['wheat'] = 'wheat', @@ -70,6 +114,23 @@ Locales['en'] = { ['lightyellow'] = 'light Yellow', -- Green ['green'] = 'green', + ['met_dark_green'] = 'metallic Dark Green', + ['rally_green'] = 'Rally Green', + ['pine_green'] = 'pine Green' + ['olive_green'] = 'olive Green', + ['light_green'] = 'Light Green', + ['lime_green'] = 'lime green', + ['forest_green'] = 'forest Green', + ['lawn_green'] = 'lawn Green', + ['imperial_green'] = 'imperial Green', + ['green_bottle'] = 'breen Bottle', + ['citrus_green'] = 'citrus Green', + ['green_anis'] = 'green Anis', + ['khaki'] = 'Khaki', + ['army_green'] = 'army Green', + ['dark_green'] = 'dark Green', + ['hunter_green'] = 'hunter Green', + ['matte_foilage_green'] = 'matte Foilage Green', -- Orange ['orange'] = 'orange', ['tangerine'] = 'Tangerine', @@ -179,4 +240,4 @@ Locales['en'] = { ['motorcycle'] = 'motorcycle', ['highend'] = 'high end', -} + diff --git a/locales/fr.lua b/locales/fr.lua index 333c2ee0..3f1abcef 100644 --- a/locales/fr.lua +++ b/locales/fr.lua @@ -54,13 +54,58 @@ Locales['fr'] = { ['grayhunter'] = 'Gris Chasseur', -- Red ['red'] = 'rouge', + ['torino_red'] = 'Rouge Turin', + ['poppy'] = 'Coquelicot', + ['copper_red'] = 'Rouge Cuivré', + ['cardinal'] = 'Rouge Cardinal', + ['brick'] = 'Rouge Brique', + ['garnet'] = 'Grenat', + ['cabernet'] = 'Pourpre', + ['candy'] = 'Framboise', + ['matte_red'] = 'Rouge Mat', + ['dark_red'] = 'Rouge Foncé', + ['red_pulp'] = 'Rouge Pulpeux', + ['bril_red'] = 'Rouge Brillant', + ['pale_red'] = 'Rouge Pale', + ['wine_red'] = 'Rouge Vin', + ['volcano'] = 'Volcano', -- Pink ['pink'] = 'rose', ['electricpink'] = 'rose Electrique', + ['brightpink'] = 'rose pétant', ['salmon'] = 'rose Saumon', ['sugarplum'] = 'rose Dragée', -- Blue ['blue'] = 'bleu', + ['topaz'] = 'topaze', + ['light_blue'] = 'bleu clair', + ['galaxy_blue'] = 'bleu galaxy', + ['dark_blue'] = 'bleu foncé', + ['azure'] = 'bleu azur', + ['navy_blue'] = 'bleu marine', + ['lapis'] = 'lapis lazuli', + ['blue_diamond'] = 'bleu diamant', + ['surfer'] = 'surfer', + ['pastel_blue'] = 'pastel', + ['celeste_blue'] = 'bleu celeste', + ['rally_blue'] = 'bleu rally', + ['blue_paradise'] = 'bleu paradis', + ['blue_night'] = 'bleu nuit', + ['cyan_blue'] = 'bleu cyan', + ['cobalt'] = 'cobalt', + ['electric_blue'] = 'bleu electrique', + ['horizon_blue'] = 'bleu horizon', + ['metallic_blue'] = 'bleu métallisé', + ['aquamarine'] = 'aigue marine', + ['blue_agathe'] = 'bleu agathe', + ['zirconium'] = 'zirconium', + ['spinel'] = 'spinelle', + ['tourmaline'] = 'tourmaline', + ['paradise'] = 'paradis', + ['bubble_gum'] = 'bubble gum', + ['midnight_blue'] = 'bleu minuit', + ['forbidden_blue'] = 'bleu interdit', + ['glacier_blue'] = 'bleu glacier', -- Yellow ['yellow'] = 'jaune', ['wheat'] = 'Jaune Blé', @@ -69,6 +114,23 @@ Locales['fr'] = { ['lightyellow'] = 'Jaune Pâle', -- Green ['green'] = 'vert', + ['met_dark_green'] = 'Vert Foncé', + ['rally_green'] = 'Vert Rally', + ['pine_green'] = 'Vert Sapin', + ['olive_green'] = 'Vert Olive', + ['light_green'] = 'Vert Clair', + ['lime_green'] = 'Vert Lime', + ['forest_green'] = 'Vert Forêt', + ['lawn_green'] = 'Vert Pelouse', + ['imperial_green'] = 'Vert Impérial', + ['green_bottle'] = 'Vert Bouteille', + ['citrus_green'] = 'Vert Citrus', + ['green_anis'] = 'Vert Anis', + ['khaki'] = 'Kaki', + ['army_green'] = 'Vert Army', + ['dark_green'] = 'Vert Sombre', + ['hunter_green'] = 'Vert Chasseur', + ['matte_foilage_green'] = 'Amarylisse', -- Orange ['orange'] = 'orange', ['tangerine'] = 'Tangerine',