65c98bb7ce
The 1.12 client only parses lowercase |cAARRGGBB color escapes; the uppercase |C codes in the Title rendered as literal escape text in the in-game AddOns list. Lowercasing the escape markers makes the coloured 'Necrosis LdC' title render correctly (matches the normalization the manifest resolver already applies to the catalog). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
36 lines
1.4 KiB
Lua
36 lines
1.4 KiB
Lua
------------------------------------------------------------------------------------------------------
|
|
-- Necrosis LdC
|
|
--
|
|
-- Créateur initial (US) : Infernal (http://www.revolvus.com/games/interface/necrosis/)
|
|
-- Implémentation de base (FR) : Tilienna Thorondor
|
|
-- Reprise du projet : Lomig & Nyx des Larmes de Cenarius, Kael'Thas
|
|
--
|
|
-- Skins et voix Françaises : Eliah, Ner'zhul
|
|
-- Version Allemande par Arne Meier et Halisstra, Lothar
|
|
-- Remerciements spéciaux pour Sadyre (JoL)
|
|
-- Version 05.09.2006-1
|
|
------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
NecrosisData = {};
|
|
NecrosisData.Version = "1.5.2a";
|
|
NecrosisData.Author = "Lomig & Nyx";
|
|
NecrosisData.AppName = "Necrosis";
|
|
NecrosisData.Label = NecrosisData.AppName.." "..NecrosisData.Version.." by "..NecrosisData.Author;
|
|
|
|
|
|
-- Raccourcis claviers
|
|
BINDING_HEADER_NECRO_BIND = "Necrosis";
|
|
|
|
BINDING_NAME_SOULSTONE = "Pierre d'\195\162me / Soulstone";
|
|
BINDING_NAME_HEALTHSTONE = "Pierre de soins / Healthstone";
|
|
BINDING_NAME_SPELLSTONE = "Pierre de sort / Spellstone";
|
|
BINDING_NAME_FIRESTONE = "Pierre de feu / Firestone";
|
|
BINDING_NAME_STEED = "Monture / Steed";
|
|
BINDING_NAME_WARD = "Gardien de l'ombre / Shadow Ward";
|
|
BINDING_NAME_BANISH = "Bannir / Ban";
|
|
BINDING_NAME_LIFETAP = "Connexion / Life tap";
|
|
BINDING_NAME_REDOCURSE = "Relancer la mal\195\169diction / Recast the last curse";
|
|
|