WoWInterface SVN UrbanAchiever

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 105 to Rev 106
    Reverse comparison

Rev 105 → Rev 106

Main.lua
465,7 → 465,11
if (GetLocale() == "frFR" or GetLocale() == "ruRU") then
completed = day .. "/" .. month .. "/" .. year;
else
completed = month .. "/" .. day .. "/" .. year;
if (GetLocale() == "deDE") then
completed = day .. "." .. month .. "." .. year;
else
completed = month .. "/" .. day .. "/" .. year;
end
end
else
completed = "";
1606,7 → 1610,11
if (GetLocale() == "frFR" or GetLocale() == "ruRU") then
completed = day .. "/" .. month .. "/" .. year;
else
completed = month .. "/" .. day .. "/" .. year;
if (GetLocale() == "deDE") then
completed = day .. "." .. month .. "." .. year;
else
completed = month .. "/" .. day .. "/" .. year;
end
end
else
completed = "";