vanilla-wow-addons – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | --[[ simpleMinimap localization file ]]-- |
2 | |||
3 | -- english defaults |
||
4 | sm_HELP = { |
||
5 | "/smm show X :: show button X", |
||
6 | "/smm hide X :: hide button X", |
||
7 | " >> X can be 'location', 'time', or 'zoom'", |
||
8 | "/smm alpha N :: set minimap alpha to N (0~1)", |
||
9 | "/smm scale N :: set minimap scale to N (>0)", |
||
10 | "/smm lock :: lock minimap movement and hide movers", |
||
11 | "/smm ping :: toggle minimap ping tooltips", |
||
12 | "/smm skin :: cycle to next minimap skin", |
||
13 | "/smm reset :: reset minimap to defaults", |
||
14 | } |
||
15 | |||
16 | -- german localization |
||
17 | if (GetLocale()=="deDE") then |
||
18 | sm_HELP = { |
||
19 | "/smm show X :: Zeige Button X", |
||
20 | "/smm hide X :: Verstecke Button X", |
||
21 | " >> X kann 'location', 'time', oder 'zoom' sein", |
||
22 | "/smm alpha N :: Setze Minimap Transparenz zu N (0~1)", |
||
23 | "/smm scale N :: Setze Minimap Skalierung zu (>0)", |
||
24 | "/smm lock :: Minimap und Buttons fixieren oder freigeben", |
||
25 | "/smm ping :: Minimap Ping Tooltips wechseln", |
||
26 | "/smm skin :: Minimap Skins wechseln", |
||
27 | "/smm reset :: Minimap auf Standard zur\195\188cksetzen", |
||
28 | } |
||
29 | end |