Changeset 137


Ignore:
Timestamp:
Mar 1, 2009, 8:39:42 PM (15 years ago)
Author:
maron
Message:

Oprava generování lvl u textů rozhraní, tlačítko pokračovat i nahoře u exportu, částečné doprogramování překládání textů rozhraní u addonu

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/export/CzWoW/Localization.lua

    r117 r137  
    11local i=CzWoW_interface;
    22local n=CzWoW_interface_entoname;
     3
     4--Set global var with CZ texts
     5for index, value in pairs(i) do
     6  setglobal(index,i[index]);
     7end
     8
    39--GameMenuFrame begin
    410CzWoW_MAIN_MENU:SetText(i["MAIN_MENU"]);
     
    1622CzWoW_VIDEOOPTIONS_MENU:SetText(i["VIDEOOPTIONS_MENU"]);
    1723OptionsFrameResolutionDropDownLabel:SetText(i["RESOLUTION"]);
     24OptionsFrameRefreshDropDownLabel:SetText(i["REFRESH_RATE"]);
     25OptionsFrameMultiSampleDropDownLabel:SetText(i["MULTISAMPLE"]);
     26OptionsFrameCancel:SetText(i["CANCEL"]);
     27OptionsFrameOkay:SetText(i["OKAY"]);
     28OptionsFrameDefaults:SetText(i["DEFAULTS"]);
     29
    1830--OptionsFrame end
    1931
  • trunk/export/index.php

    r133 r137  
    338338
    339339
    340         echo('<div onclick="CheckAll()">'.CheckBox('CheckAll', False, 'CheckAll').' Zatrhnout vše</div>');     
     340        echo(' <input type="submit" value="Pokračovat" /> <span onclick="CheckAll()">'.CheckBox('CheckAll', False, 'CheckAll').' Zatrhnout vše</span> ');       
    341341       
    342342        echo('<table><tr><td>'.
  • trunk/img_level.php

    r131 r137  
    8686                                                }                                                               
    8787                                } else {
    88                                         if (($Line[$TextItem['Column']] == $LineComparison[$TextItem['Column']]) and ($Line['Take'] == $LineComparison['ID']) and ($LineComparison[$TextItem['Column']] <> ''))
     88                                        if (($Line[$TextItem['Column']] == $LineComparison[$TextItem['Column']]) and ($Line['Take'] == $LineComparison['ID']) and ($LineComparison[$TextItem['Column']] <> '') and ($TextItem['Column'] <> 'ShortCut'))
    8989                                                $translated = false;
    9090                                        }
Note: See TracChangeset for help on using the changeset viewer.