Ignore:
Timestamp:
Sep 29, 2008, 9:34:18 PM (16 years ago)
Author:
maron
Message:

addon verze 1.0, včetně generovacích souborů a všeho okolo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client_files/_czwow/Interface/AddOns/CzWoW/CzWoW.lua

    r1 r12  
    88local old_GossipFrameUpdate;
    99local oldTooltipText;
    10 CZWOW_EnableQuests=false;
     10CZWOW_EnableQuests=true;
    1111CZWOW_EnableSpells=false;
    12 CZWOW_EnableBooks=false;
     12CZWOW_EnableBooks=true;
    1313CZWOW_EnableCreatures=false;
    14 CZWOW_EnableNPCs=false;
     14CZWOW_EnableNPCs=true;
    1515CZWOW_EnableInterface=true;
    1616CZWOW_EnableCombatLog=false;
     
    3939        this:RegisterEvent("VARIABLES_LOADED");
    4040        local a="";
    41         if CZWOW_QuestObjective then a=a..CZWOW_QuestObjective.." questy. ";end
    42         if not CZWOW_EnableQuests then a=a.."|c00ff0000 questy nedokončeny!|r ";end
    43         if CZWOW_SpellDescription then a=a..CZWOW_SpellDescription.." kouzla. ";end
    44         if not CZWOW_EnableSpells then a=a.."|c00ff0000 kouzla nedokončena!|r ";end
    45         if CZWOW_BookPage then a=a..CZWOW_BookPage.." knížky. ";end
    46         if not CZWOW_EnableBooks then a=a.."|c00ff0000 knížky nedokončeny!|r ";end
    47         if CZWOW_Creature then a=a..CZWOW_Creature.." Postavy. ";end
    48         if not CZWOW_EnableCreatures then a=a.."|c00ff0000 Postavy nedokončeny!|r ";end
    49         if CZWOW_NPCText then a=a..CZWOW_NPCText.." texty NPC. ";end
    50         if not CZWOW_EnableNPCs then a=a.."|c00ff0000 NPC nedokončeny!|r ";end
    51         DEFAULT_CHAT_FRAME:AddMessage("CzWoW Načteno. Užíjte si zábavu s českým wow. "..a);
    52         if CZWOW_disableforthischar then DEFAULT_CHAT_FRAME:AddMessage("|c00ff0000??????? ?? ????? ???????? ? ????? ?????????.|r");end
     41        if CZWOW_QuestObjective then a=a..CZWOW_QuestObjective.." načteno ";end
     42        if not CZWOW_EnableQuests then a=a.."questy nejsou povoleny, ";end
     43        if CZWOW_SpellDescription then a=a..CZWOW_SpellDescription.." načteno ";end
     44        if not CZWOW_EnableSpells then a=a.."kouzla nejsou povolena, ";end
     45        if CZWOW_BookPage then a=a..CZWOW_BookPage.." načteno ";end
     46        if not CZWOW_EnableBooks then a=a.."texty knížek nejsou povoleny, ";end
     47        if CZWOW_Creature then a=a..CZWOW_Creature.." načteno ";end
     48        if not CZWOW_EnableCreatures then a=a.."texty příšer nejsou povoleny, ";end
     49        if CZWOW_NPCText then a=a..CZWOW_NPCText.." načteno NPC. ";end
     50        if not CZWOW_EnableNPCs then a=a.."npc texty nejsou povoleny, ";end
     51        DEFAULT_CHAT_FRAME:AddMessage("CzWoW načteno. "..a);
     52        if CZWOW_disableforthischar then DEFAULT_CHAT_FRAME:AddMessage("|c00ff0000 Příjemné hraní s českým wow. Pomoct na překladu můžete na stránkách: http://wowpreklad.zdechov.net/|r");end
    5353end
    5454
     
    7171local Show_Status=function()
    7272        local a="";
    73         if not CZWOW_EnableQuests then a=a.."?????? |c00ff0000?????????|r. "; else a=a.."?????? ????????. "end
    74         if not CZWOW_EnableSpells then a=a.."?????????? |c00ff0000?????????|r. "; else a=a.."?????????? ????????. "end
    75         if not CZWOW_EnableBooks then a=a.."????? |c00ff0000?????????|r. "; else a=a.."????? ????????. "end
    76         if not CZWOW_EnableCreatures then a=a.."???????? |c00ff0000?????????|r. "; else a=a.."???????? ????????. "end
    77         if not CZWOW_EnableNPCs then a=a.."Npc |c00ff0000?????????|r. "; else a=a.."Npc ????????. "end
    78         if not CZWOW_EnableInterface then a=a.."????????? |c00ff0000????????|r. "; else a=a.."????????? ???????. "end
    79         if not CZWOW_EnableCombatLog then a=a.."??? ??? |c00ff0000????????|r. "; else a=a.."??? ??? ???????. "end
     73        if not CZWOW_EnableQuests then a=a.."questy nejsou povoleny. "; else a=a.."questy jsou povoleny. "end
     74        if not CZWOW_EnableSpells then a=a.."kouzla nejsou povoleny. "; else a=a.."kouzla jsou povoleny. "end
     75        if not CZWOW_EnableBooks then a=a.."texty knížek nejsou povoleny "; else a=a.."texty knížek jsou povoleny "end
     76        if not CZWOW_EnableCreatures then a=a.."texty příšer nejsou povoleny "; else a=a.."texty příšer jsou povoleny "end
     77        if not CZWOW_EnableNPCs then a=a.."Npc texty nejsou povoleny "; else a=a.."Npc texty jsou povoleny "end
     78        if not CZWOW_EnableInterface then a=a.."prostředí není povoleno "; else a=a.."prostředí je povoleno "end
     79        if not CZWOW_EnableCombatLog then a=a.."CombatLog není povolen "; else a=a.."CombatLog je povolen "end
    8080        DEFAULT_CHAT_FRAME:AddMessage(a);
    8181end
     
    115115                Show_Status();
    116116        else
    117                 DEFAULT_CHAT_FRAME:AddMessage("/czwow quests - ????????/????????? ??????? ???????");
    118                 DEFAULT_CHAT_FRAME:AddMessage("/czwow spells - ????????/????????? ??????? ???????");
    119                 DEFAULT_CHAT_FRAME:AddMessage("/czwow books - ????????/????????? ??????? ????");
    120                 DEFAULT_CHAT_FRAME:AddMessage("/czwow monsters - ????????/????????? ??????? ????????");
    121                 DEFAULT_CHAT_FRAME:AddMessage("/czwow npcs - ????????/????????? ??????? ????????");
    122                 DEFAULT_CHAT_FRAME:AddMessage("/czwow interface - ????????/????????? ??????? ??????????");
    123                 DEFAULT_CHAT_FRAME:AddMessage("/czwow combatlog - ????????/????????? ??????? ???? ???");
    124                 DEFAULT_CHAT_FRAME:AddMessage("/czwow show - ?????????? ??????? ?????????");
     117                DEFAULT_CHAT_FRAME:AddMessage("/czwow quests - zaptne/vypne překládání questů");
     118                DEFAULT_CHAT_FRAME:AddMessage("/czwow spells - zaptne/vypne překládání spells");
     119                DEFAULT_CHAT_FRAME:AddMessage("/czwow books - zaptne/vypne překládání books");
     120                DEFAULT_CHAT_FRAME:AddMessage("/czwow monsters - zaptne/vypne překládání monsters");
     121                DEFAULT_CHAT_FRAME:AddMessage("/czwow npcs - zaptne/vypne překládání npcs");
     122                DEFAULT_CHAT_FRAME:AddMessage("/czwow interface - zaptne/vypne překládání interface");
     123                DEFAULT_CHAT_FRAME:AddMessage("/czwow combatlog - zaptne/vypne překládání combatlog");
     124                DEFAULT_CHAT_FRAME:AddMessage("/czwow show - zobrazit");
    125125        end
    126126end
     
    379379        end;
    380380end
    381 
Note: See TracChangeset for help on using the changeset viewer.