Module:Traits: Difference between revisions

m
Reverted edit by Boxsnake (talk) to last revision by Ritsu
m (Add i18n locale support)
Tag: Reverted
m (Reverted edit by Boxsnake (talk) to last revision by Ritsu)
Tag: Rollback
Line 1: Line 1:
-- pystart
-- pystart
require('Module:CommonFunctions')
require('Module:CommonFunctions')
local i18n = require('Module:I18n')
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local getTranslations = i18n.getTranslations
local p = {}
local p = {}


-- Main process
-- Main process
function p.main(frame)
function p.main(frame)
     local args = getArgs(frame)
     local args = getArgs(frame);
    local tr = getTranslations(frame, 'Template:Traits', args.lang, true)
     local is_rose = args[1] == 'Rose' and args.ecp == 'true';
     local is_rose = args[1] == 'Rose' and args.ecp == 'true'
 
    function translate(key)
        return i18n.translate(tr, key)
    end


     -- Argument init
     -- Argument init
Line 29: Line 22:


     -- Dictionary for headers
     -- Dictionary for headers
     local prop = {  
     local prop = { 'MP Usage', 'Cooldown', 'Duration', 'MP Recovery', 'Max Hits', 'Effects' }
        is_rose and translate('ECP Usage') or translate('MP Usage'),
    if is_rose then
        translate('Cooldown'),
         for k, v in ipairs(prop) do
        translate('Duration'),
            prop[k] = v:gsub('MP', 'ECP')
        is_rose and translate('ECP Recovery') or translate('MP Recovery'),
        end
        translate('Max Hits'),
     end
         translate('Effects'),
     }


     local prop_short = { 'mp', 'cd', 'duration', 'mp_recovery', 'hits', 'effects', 'chance' }
     local prop_short = { 'mp', 'cd', 'duration', 'mp_recovery', 'hits', 'effects', 'chance' }
    local OPTIONS = {
        lang_suffix = args.lang and ('/' .. args.lang) or '',
        lang_append = args.lang ~= nil and args.lang ~= ''
    }


     local STR = {
     local STR = {
         LIGHT = translate('Light'),
         LIGHT = 'Light',
         CRITICAL = translate('Critical'),
         CRITICAL = 'Critical',
         REVERSED = translate('Reversed'),
         REVERSED = 'Reversed',
         HEAVY = translate('Heavy'),
         HEAVY = 'Heavy',
         HASTE = translate('Haste'),
         HASTE = 'Haste',
         REGEN1 = translate('Regenerating (1)'),
         REGEN1 = 'Regenerating (1)',
         REGEN2 = translate('Regenerating (2)'),
         REGEN2 = 'Regenerating (2)',
         KB1 = translate('Killing Blow (1)'),
         KB1 = 'Killing Blow (1)',
         KB2 = translate('Killing Blow (2)'),
         KB2 = 'Killing Blow (2)',
         RUTHLESS = translate('Ruthless'),
         RUTHLESS = 'Ruthless',
         POWERFUL = translate('Powerful'),
         POWERFUL = 'Powerful',
         USEFUL = translate('Useful'),
         USEFUL = 'Useful',
         SEC = ' ' .. translate('Seconds'),
         SEC = ' Seconds',
         MP = ' ' .. translate('MP'),
         MP = ' MP',
         ECP = ' ' .. translate('ECP'),
         ECP = ' ECP',
         PERSISTENT = translate('Persistent'),
         PERSISTENT = 'Persistent',
         PERSISTENT2 = translate('Persistent2')
         PERSISTENT2 = 'Persistent2'
     }
     }


Line 150: Line 136:
         tr4 = new_row()
         tr4 = new_row()
         -- Add indicator headers
         -- Add indicator headers
         tr1:tag('th'):wikitext(translate('Mode')):attr('rowspan', 2)
         tr1:tag('th'):wikitext('Mode'):attr('rowspan', 2)
         tr3:tag('td'):wikitext(frame:expandTemplate {
         tr3:tag('td'):wikitext(frame:expandTemplate {
             title = translate('PvE')
             title = 'PvE'
         })
         })
         tr4:tag('td'):wikitext(frame:expandTemplate {
         tr4:tag('td'):wikitext(frame:expandTemplate {
             title = translate('PvP')
             title = 'PvP'
         })
         })
     end
     end
Line 161: Line 147:
     -- Loop through 2 input traits.
     -- Loop through 2 input traits.
     for trait_count, trait_name in ipairs(traits) do
     for trait_count, trait_name in ipairs(traits) do
         local th = tr1:tag('th'):wikitext(trait_name:gsub(STR.PERSISTENT2, STR.PERSISTENT) .. ' ' .. skill);
         local th = tr1:tag('th'):wikitext(trait_name:gsub('Persistent2', 'Persistent') .. ' ' .. skill);
         local th_effect;
         local th_effect;
         local th_skilltext;
         local th_skilltext;
Line 169: Line 155:
         for detail_key, detail in ipairs(details) do
         for detail_key, detail in ipairs(details) do
             if not th_effect then
             if not th_effect then
                 th_effect = tr2:tag('th'):wikitext(translate('Attribute Effect'));
                 th_effect = tr2:tag('th'):wikitext('Attribute Effect');
             end
             end
             if indexOf(trait_name, detail) then
             if indexOf(trait_name, detail) then
Line 193: Line 179:
             if not th_skilltext then
             if not th_skilltext then
                 th_skilltext = tr3:tag('td'):attr('rowspan', has_pvp_values and 2 or 1):wikitext(frame:expandTemplate {
                 th_skilltext = tr3:tag('td'):attr('rowspan', has_pvp_values and 2 or 1):wikitext(frame:expandTemplate {
                     title = translate('SkillText'),
                     title = 'SkillText',
                     args = {
                     args = {
                         trait_name,
                         trait_name,
Line 256: Line 242:
                                 title = 'Tt',
                                 title = 'Tt',
                                 args = { calcEndValue(enhanced_detail) .. "'''",
                                 args = { calcEndValue(enhanced_detail) .. "'''",
                                     translate("Final Enhanced Skill") }
                                     "Final Enhanced Skill" }
                             }
                             }
                         end
                         end