Illusion
Would you like to react to this message? Create an account in a few clicks or log in to continue.

PH (Zhu Xian Online) Help with localization

3 posters

Go down

PH (Zhu Xian Online) Help with localization Empty PH (Zhu Xian Online) Help with localization

Post by vuduy 22.01.10 10:29

This is a list of all the buff/debuff in game.
Code:

1  "Stunned"
2  "Sleep"
3  "Weakened"
4  "Charmed"
5  "Paralyzed"
6  "Slowed"
7  "Boost attack"
8  "Strong"
9  "Strike"
10  "Stamina "
11  "Boost stun resistance"
12  "Boost sleep resistance"
13  "Boost weak resistance"
14  "Boost charm resistance"
15  "Boost paralysis resistance"
16  "Reduce stun resistance"
17  "Reduce sleep resistance"
18  "Reduce weak resistance"
19  "Reduce charm resistance"
20  "Reduce paralysis resistance"
21  "Full HP"
22  "Full MP"
23  "High HP"
24  "High MP"
25  "Swift"
26  "Parry"
27  "Rush"
28  "Fanaticism"
29  "HP lost"
30  "MP consumed"
31  "HP recovered"
32  "MP replenished"
33  "Gathering divinity"
34  "Repressed"
35  "Destroyed"
36  "Stun immunity"
37  "Sleep immunity"
38  "Charm immunity"
39  "Weak immunity"
40  "Paralysis immunity"
41  "Slow immunity"
42  "Hurt"
43  "Held"
44  "Indomitable"
45  "God Blessing"
46  "Immovable"
47  "Invincible"
48  "Drunk"
49  "Hot"
50  "HP coalesces"
51  "MP coalesces"
52  "Strength destroyed"
53  "Bewilder cursed"
54  "Exhaustion cursed"
55  "Berserk"
56  "Confusion cursed"
57  "Store energy"
58  "Resistance strengthened"
59  "Resistance increased"
60  "Resistance undermined"
61  "Resistance lowered"
62  "Concentrated"
63  "Fervor cursed"
64  "Throw back"
65  "Smash"
66  "Devour Blood"
67  "Fell Heart"
68  "Protect"
69  "Defense cursed"
70  "Fatigue cursed"
71  "Rust cursed"
72  "Decay cursed"
73  "Life Linked"
74  "Overcome"
75  "Combine effort"
76  "Deflection cursed"
77  "Weakened will"
78  "Ice Shield"
79  "Gain resistance"
80  "Lose resistance"
81  "Unarmed"
82  "Soul Guardian"
83  "Evil enchanted"
84  "Superior defense"
85  "Haste"
86  "Accurate"
87  "Restricted Thought"
88  "Solitude"
89  "Afflict"
90  "Confused"
91  "Exhausted"
92  "Dark Heart"
93  "Coma"
94  "Venomous damage"
95  "Venomous wound"
96  "Venom Bane"
97  "Daemon Stance"
98  "Venom Stance"
99  "Dodge Secret"
100  "Rejuvenation Secret"
101  "Fate Blessing"
102  "Brier Protection"
103  "Dead Spell"
104  "Knowing Strike"
105  "Demon Breaking Spell"
106  "Lissome Protection"
107  "Inertia Spell"
108  "Anathema"
109  "Luck Wish"
110  "Thunder Spell"
111  "Heaven Bliss"
112  "Popular Acclaim"
113  "foresight"
114  "Counter Bliss"
115  "Courage "
116  "Misty Drizzle"
117  "Flame Burn"
118  "Ghost King Power"
119  "Enmity Fury"
120  "Delusion Bliss"
121  "Heartily"
122  "Pray"
123  "Lovesickness Pain"
124  "Pneuma Gathering"
125  "Heaven Lord Dharmakaya"
126  "Heart of Compassion"
127  "Heaven Sound Mass Saving"
128  "Elemental Ward"
129  "Heaven Drum Bliss"
130  "Sanskrit Prajna"
131  "Resented Ghost"
132  "Vile Ascendance"
133  "Tiger Soul Ice Cryolit"
134  "Turtle Ice Cryolite"
135  "Heaven Fight Will"
136  "Heaven Cloud"
137  "Heaven Dust"
138  "Be of One Heart Forever"
139  "Void Kill"
1000  "Blood Soul Dharmakaya(Increase HP)"
1001  "Vigor Soul Dharmakaya(Increase MP)"
1002  "Soul Smashing Dharmakaya(Increase AP)"
1003  "Imperial dharmakaya(Increase Def)"
1004  "Soul Freezing Dharmakaya(Increase Hit)"
1005  "Illusory Dharmakaya(Increase Dodge)"
1006  "Breath movement(to get cultivation)"

Note the number and the name. Compare the number to the "Tag" of this list to get the JD2 (US) version of the name (they're the same buff if the "Tag" is the same).

Code:

  <TriggerCondition Name="has status Stun?" Tag="1" />
  <TriggerCondition Name="has status Sleep?" Tag="2" />
  <TriggerCondition Name="has status Weaken?" Tag="3" />
  <TriggerCondition Name="has status Silence?" Tag="4" />
  <TriggerCondition Name="has status Paralyze?" Tag="5" />
  <TriggerCondition Name="has status Slowed?" Tag="6" />
  <TriggerCondition Name="has status Enhanced Attack?" Tag="7" />
  <TriggerCondition Name="has status Strength?" Tag="8" />
  <TriggerCondition Name="has status Slam?" Tag="9" />
  <TriggerCondition Name="has status Toughen?" Tag="10" />
  <TriggerCondition Name="has status Stun RES up?" Tag="11" />
  <TriggerCondition Name="has status Sleep RES up?" Tag="12" />
  <TriggerCondition Name="has status Weaken RES up?" Tag="13" />
  <TriggerCondition Name="has status Silence RES up?" Tag="14" />
  <TriggerCondition Name="has status Paralyze RES up?" Tag="15" />
  <TriggerCondition Name="has status Stun RES down?" Tag="16" />
  <TriggerCondition Name="has status Sleep RES down?" Tag="17" />
  <TriggerCondition Name="has status Weaken RES down?" Tag="18" />
  <TriggerCondition Name="has status Silence RES down?" Tag="19" />
  <TriggerCondition Name="has status Paralyze RES down?" Tag="20" />
  <TriggerCondition Name="has status Exuberant Health?" Tag="21" />
  <TriggerCondition Name="has status Exuberant Spirit?" Tag="22" />
  <TriggerCondition Name="has status Increased Health?" Tag="23" />
  <TriggerCondition Name="has status Full Spirit?" Tag="24" />
  <TriggerCondition Name="has status Swiftness?" Tag="25" />
  <TriggerCondition Name="has status Dodge?" Tag="26" />
  <TriggerCondition Name="has status Energized?" Tag="27" />
  <TriggerCondition Name="has status Enthusiasm?" Tag="28" />
  <TriggerCondition Name="has status Bleeding?" Tag="29" />
  <TriggerCondition Name="has status Spirit Drain?" Tag="30" />
  <TriggerCondition Name="has status Recovering Health?" Tag="31" />
  <TriggerCondition Name="has status Recovering Spirit?" Tag="32" />
  <TriggerCondition Name="has status Concentration?" Tag="33" />
  <TriggerCondition Name="has status Oppressed?" Tag="34" />
  <TriggerCondition Name="has status Breached?" Tag="35" />
  <TriggerCondition Name="has status Stun Immune?" Tag="36" />
  <TriggerCondition Name="has status Sleep Immune?" Tag="37" />
  <TriggerCondition Name="has status Silence Immune?" Tag="38" />
  <TriggerCondition Name="has status Weaken Immune?" Tag="39" />
  <TriggerCondition Name="has status Paralyze Immune?" Tag="40" />
  <TriggerCondition Name="has status Obstacle Immune?" Tag="41" />
  <TriggerCondition Name="has status Injured?" Tag="42" />
  <TriggerCondition Name="has status Defensive?" Tag="43" />
  <TriggerCondition Name="has status Persistent?" Tag="44" />
  <TriggerCondition Name="has status Blessed?" Tag="45" />
  <TriggerCondition Name="has status Protecting?" Tag="46" />
  <TriggerCondition Name="has status Invincible?" Tag="47" />
  <TriggerCondition Name="has status Drunk?" Tag="48" />
  <TriggerCondition Name="has status Spicy?" Tag="49" />
  <TriggerCondition Name="has status Stagnant Health?" Tag="50" />
  <TriggerCondition Name="has status Stagnant Spirit?" Tag="51" />
  <TriggerCondition Name="has status Strength Destroyed?" Tag="52" />
  <TriggerCondition Name="has status Confusing Curse?" Tag="53" />
  <TriggerCondition Name="has status Blunting Curse?" Tag="54" />
  <TriggerCondition Name="has status Fierce?" Tag="55" />
  <TriggerCondition Name="has status Chaotic Curse?" Tag="56" />
  <TriggerCondition Name="has status Charged?" Tag="57" />
  <TriggerCondition Name="has status Amplified Resistance?" Tag="58" />
  <TriggerCondition Name="has status Increased Resistance?" Tag="59" />
  <TriggerCondition Name="has status Enfeebled Resistance?" Tag="60" />
  <TriggerCondition Name="has status Reduced Resistance?" Tag="61" />
  <TriggerCondition Name="has status Focused?" Tag="62" />
  <TriggerCondition Name="has status Heretical Curse?" Tag="63" />
  <TriggerCondition Name="has status Rebound?" Tag="64" />
  <TriggerCondition Name="has status Smash?" Tag="65" />
  <TriggerCondition Name="has status Vampire Bite?" Tag="66" />
  <TriggerCondition Name="has status Demonheart?" Tag="67" />
  <TriggerCondition Name="has status Asylum?" Tag="68" />
  <TriggerCondition Name="has status Penetrated?" Tag="69" />
  <TriggerCondition Name="has status Weary?" Tag="70" />
  <TriggerCondition Name="has status Corroded?" Tag="71" />
  <TriggerCondition Name="has status Senile?" Tag="72" />
  <TriggerCondition Name="has status Live and Die Together?" Tag="73" />
  <TriggerCondition Name="has status Strength of Union?" Tag="74" />
  <TriggerCondition Name="has status Teamwork?" Tag="75" />
  <TriggerCondition Name="has status Deflective Curse?" Tag="76" />
  <TriggerCondition Name="has status Shattered Will?" Tag="77" />
  <TriggerCondition Name="has status Frost Protection?" Tag="78" />
  <TriggerCondition Name="has status Concentrated Resistance?" Tag="79" />
  <TriggerCondition Name="has status Scattered Resistance?" Tag="80" />
  <TriggerCondition Name="has status Disarmed?" Tag="81" />
  <TriggerCondition Name="has status Faithful Defender?" Tag="82" />
  <TriggerCondition Name="has status Deity Possessed?" Tag="83" />
  <TriggerCondition Name="has status Extreme Protection?" Tag="84" />
  <TriggerCondition Name="has status Diet?" Tag="85" />
  <TriggerCondition Name="has status Improved Accuracy?" Tag="86" />
  <TriggerCondition Name="has status Restrained Resentment?" Tag="87" />
  <TriggerCondition Name="has status Lonesome?" Tag="88" />
  <TriggerCondition Name="has status Tortured?" Tag="89" />
  <TriggerCondition Name="has status Bewildered?" Tag="90" />
  <TriggerCondition Name="has status Obsessed?" Tag="91" />
  <TriggerCondition Name="has status Fel Heart?" Tag="92" />
  <TriggerCondition Name="has status Fainted?" Tag="93" />
  <TriggerCondition Name="has status Scarab Agony?" Tag="94" />
  <TriggerCondition Name="has status Scarab Injury?" Tag="95" />
  <TriggerCondition Name="has status Vicious Pest Toxin?" Tag="96" />
  <TriggerCondition Name="has status Demonic Posture?" Tag="97" />
  <TriggerCondition Name="has status Modon Form?" Tag="98" />
  <TriggerCondition Name="has status Mystic Evasion?" Tag="99" />
  <TriggerCondition Name="has status Mystic Regeneration?" Tag="100" />
  <TriggerCondition Name="has status Fate Blessed?" Tag="101" />
  <TriggerCondition Name="has status Thorn Wrapped?" Tag="102" />
  <TriggerCondition Name="has status Death Cursed?" Tag="103" />
  <TriggerCondition Name="has status Sharpened Strike?" Tag="104" />
  <TriggerCondition Name="has status Devilbane Cursed?" Tag="105" />
  <TriggerCondition Name="has status Agile Bliss?" Tag="106" />
  <TriggerCondition Name="has status Blunting Curse?" Tag="107" />
  <TriggerCondition Name="has status Doom Cursed?" Tag="108" />
  <TriggerCondition Name="has status Joy Blessed?" Tag="109" />
  <TriggerCondition Name="has status Thunder Cursed?" Tag="110" />
  <TriggerCondition Name="has status Heavenly Blessed?" Tag="111" />
  <TriggerCondition Name="has status Beloved Warrior?" Tag="112" />
  <TriggerCondition Name="has status Perceptive?" Tag="113" />
  <TriggerCondition Name="has status Cancel?" Tag="114" />
  <TriggerCondition Name="has status Courage?" Tag="115" />
  <TriggerCondition Name="has status Mist?" Tag="116" />
  <TriggerCondition Name="has status Conbustion?" Tag="117" />
  <TriggerCondition Name="has status Dark Power?" Tag="118" />
  <TriggerCondition Name="has status Raging Grudge?" Tag="119" />
  <TriggerCondition Name="has status Absurd Bless?" Tag="120" />
  <TriggerCondition Name="has status Full of Love?" Tag="121" />
  <TriggerCondition Name="has status Ancient Prayer?" Tag="122" />
  <TriggerCondition Name="has status Torturing Departure?" Tag="123" />
  <TriggerCondition Name="has status Helping Hand?" Tag="124" />
  <TriggerCondition Name="has status Embodiment of Truth?" Tag="125" />
  <TriggerCondition Name="has status Benevolent Heart?" Tag="126" />
  <TriggerCondition Name="has status Skysong Salvation?" Tag="127" />
  <TriggerCondition Name="has status Spirit Matter?" Tag="128" />
  <TriggerCondition Name="has status Thunder Bless?" Tag="129" />
  <TriggerCondition Name="has status Fawin Wisdom?" Tag="130" />
  <TriggerCondition Name="has status Ghost of the Wronged?" Tag="131" />
  <TriggerCondition Name="has status Self-Righteousness?" Tag="132" />
  <TriggerCondition Name="has status Tigeren Crystal?" Tag="133" />
  <TriggerCondition Name="has status Turtoil Crystal?" Tag="134" />
  <TriggerCondition Name="has status Warrior's Heart?" Tag="135" />
  <TriggerCondition Name="has status Cloud Awareness?" Tag="136" />
  <TriggerCondition Name="has status Dust of Progress?" Tag="137" />
  <TriggerCondition Name="has status Bond of Eternal Love?" Tag="138" />
  <TriggerCondition Name="has status Void Slash?" Tag="139" />
  <TriggerCondition Name="has status Blood Soul Essence (HP up)?" Tag="1000" />
  <TriggerCondition Name="has status Spiritual Essence (SP up)?" Tag="1001" />
  <TriggerCondition Name="has status Soulbreak Essence (ATK up)?" Tag="1002" />
  <TriggerCondition Name="has status Soulshell Essence (DEF up)?" Tag="1003" />
  <TriggerCondition Name="has status Soulstatis Essence (ACC up)?" Tag="1004" />
  <TriggerCondition Name="has status Soulmirage Essence (EVA up)?" Tag="1005" />
  <TriggerCondition Name="has status Meditating (Gain EXP continuously)?" Tag="1006" />

Then add a Translation entry like this: (example for Tag = 10 "has status Toughen?")
Code:

<Translation Locale="en-PH" Key="has status Toughen?" Text="has status Stamina?" />

You can post all the entries here if you wish.


Last edited by vuduy on 25.01.10 2:43; edited 1 time in total
vuduy
vuduy
Administrator
SINBOT Creator


AdministratorSINBOT Creator

Male
Number of posts : 1033
Age : 47
Points : 1429
Reputation : 107
Join date : 2007-11-15

Back to top Go down

PH (Zhu Xian Online) Help with localization Empty Re: PH (Zhu Xian Online) Help with localization

Post by extremedeath 22.01.10 12:43

Code:
  <Translation Locale="en-PH" Key="has status Stun?" Text="has status Stunned?" />
  <Translation Locale="en-PH" Key="has status Sleep?" Text="has status Sleep?" />
  <Translation Locale="en-PH" Key="has status Weaken?" Text="has status Weakened?" />
  <Translation Locale="en-PH" Key="has status Silence?" Text="has status Charmed?" />
  <Translation Locale="en-PH" Key="has status Paralyze?" Text="has status Paralyzed?" />
  <Translation Locale="en-PH" Key="has status Slowed?" Text="has status Slowed?" />
  <Translation Locale="en-PH" Key="has status Enhanced Attack?" Text="has status Boost Attack?" />
  <Translation Locale="en-PH" Key="has status Strength?" Text=""has status Strong?" />
  <Translation Locale="en-PH" Key="has status Slam?" Text="has status Strike?" />
  <Translation Locale="en-PH" Key="has status Toughen?" Text="has status Stamina?" />
  <Translation Locale="en-PH" Key="has status Stun RES up?" Text="has status Boost Stun Resistance?" />
  <Translation Locale="en-PH" Key="has status Sleep RES up?" Text="has status Boost Sleep Resistance?" />
  <Translation Locale="en-PH" Key="has status Weaken RES up?" Text="has status Boost Weak Resistance?" />
  <Translation Locale="en-PH" Key="has status Silence RES up?" Text="has status Boost Charm Resistance?" />
  <Translation Locale="en-PH" Key="has status Paralyze RES up?" Text="has status Boost Paralysis Resistance?" />
  <Translation Locale="en-PH" Key="has status Stun RES down?" Text="has status Reduce Stun Resistance?" />
  <Translation Locale="en-PH" Key="has status Sleep RES down?" Text="has status Reduce Sleep Resistance?" />
  <Translation Locale="en-PH" Key="has status Weaken RES down?" Text="has status Reduce Weak Resistance?" />
  <Translation Locale="en-PH" Key="has status Silence RES down?" Text="has status Reduce Charm Resistance?" />
  <Translation Locale="en-PH" Key="has status Paralyze RES down?" Text="has status Reduce Paralysis Resistance?" />
  <Translation Locale="en-PH" Key="has status Exuberant Health?" Text="has status Full HP?" />
  <Translation Locale="en-PH" Key="has status Exuberant Spirit?" Text="has status Full MP?" />
  <Translation Locale="en-PH" Key="has status Increased Health?" Text="has status High HP?" />
  <Translation Locale="en-PH" Key="has status Full Spirit?" Text=""has status High MP?" />
  <Translation Locale="en-PH" Key="has status Swiftness?" Text=""has status Swift?" />
  <Translation Locale="en-PH" Key="has status Dodge?" Text=""has status Parry?" />
  <Translation Locale="en-PH" Key="has status Energized?" Text=""has status Rush?" />
  <Translation Locale="en-PH" Key="has status Enthusiasm?" Text=""has status Fanaticism?" />
  <Translation Locale="en-PH" Key="has status Bleeding?" Text=""has status HP lost?" />
  <Translation Locale="en-PH" Key="has status Spirit Drain?" Text=""has status MP consumed?" />
  <Translation Locale="en-PH" Key="has status Recovering Health?" Text=""has status HP recovered?" />
  <Translation Locale="en-PH" Key="has status Recovering Spirit?" Text=""has status MP replenished?" />
  <Translation Locale="en-PH" Key="has status Concentration?" Text=""has status Gathering Divinity?" />
  <Translation Locale="en-PH" Key="has status Oppressed?" Text=""has status Repressed?" />
  <Translation Locale="en-PH" Key="has status Breached?" Text=""has status Destroyed?" />
  <Translation Locale="en-PH" Key="has status Stun Immune?" Text="has status Stun immunity?" />
  <Translation Locale="en-PH" Key="has status Sleep Immune?" Text="has status Sleep immunity?" />
  <Translation Locale="en-PH" Key="has status Silence Immune?" Text="has status Charm immunity?" />
  <Translation Locale="en-PH" Key="has status Weaken Immune?" Text="has status Weak immunity?" />
  <Translation Locale="en-PH" Key="has status Paralyze Immune?" Text="has status Paralysis immunity?" />
  <Translation Locale="en-PH" Key="has status Obstacle Immune?" Text="has status Slow immunity?" />
  <Translation Locale="en-PH" Key="has status Injured?" Text="has status Hurt?" />
  <Translation Locale="en-PH" Key="has status Defensive?" Text="has status Held?" />
  <Translation Locale="en-PH" Key="has status Persistent?" Text="has status Indomitable?" />
  <Translation Locale="en-PH" Key="has status Blessed?" Text="has status God's Blessing?" />
  <Translation Locale="en-PH" Key="has status Protecting?" Text="has status Immovable?" />
  <Translation Locale="en-PH" Key="has status Invincible?" Text="has status Invincible?" />
  <Translation Locale="en-PH" Key="has status Drunk?" Text="has status Drunk?" />
  <Translation Locale="en-PH" Key="has status Spicy?" Text="has status Hot?" />
  <Translation Locale="en-PH" Key="has status Stagnant Health?" Text="has status HP coalesces?" />
  <Translation Locale="en-PH" Key="has status Stagnant Spirit?" Text="has status MP coalesces?" />
  <Translation Locale="en-PH" Key="has status Strength Destroyed?" Text="has status Strength Destroyed?" />
  <Translation Locale="en-PH" Key="has status Confusing Curse?" Text="has status Bewilder Cursed?" />
  <Translation Locale="en-PH" Key="has status Slow Curse?" Text="has status Exhaustion Cursed?" />
  <Translation Locale="en-PH" Key="has status Fierce?" Text="has status Berserk?" />
  <Translation Locale="en-PH" Key="has status Chaotic Curse?" Text="has status Confusion Cursed?" />
  <Translation Locale="en-PH" Key="has status Charged?" Text="has status Store Energy?" />
  <Translation Locale="en-PH" Key="has status Amplified Resistance?" Text="has status Resistance Strengthened?" />
  <Translation Locale="en-PH" Key="has status Increased Resistance?" Text="has status Resistance Increased?" />
  <Translation Locale="en-PH" Key="has status Enfeebled Resistance?" Text="has status Resistance Undermined?" />
  <Translation Locale="en-PH" Key="has status Reduced Resistance?" Text="has status Resistance Lowered?" />
  <Translation Locale="en-PH" Key="has status Focused?" Text="has status Concentrated?" />
  <Translation Locale="en-PH" Key="has status Heretical Curse?" Text="has status Fervor Cursed?" />
  <Translation Locale="en-PH" Key="has status Rebound?" Text="has status Throw Back?" />
  <Translation Locale="en-PH" Key="has status Smash?" Text="has status Smash?" />
  <Translation Locale="en-PH" Key="has status Vampire Bite?" Text="has status Devour Blood?" />
  <Translation Locale="en-PH" Key="has status Demonheart?" Text="has status Fell Heart?" />
  <Translation Locale="en-PH" Key="has status Asylum?" Text="has status Protect?" />
  <Translation Locale="en-PH" Key="has status Penetrated?" Text="has status Defence Cursed?" />
  <Translation Locale="en-PH" Key="has status Weary?" Text="has status Fatigue Cursed?" />
  <Translation Locale="en-PH" Key="has status Corroded?" Text="has status Rust Cursed?" />
  <Translation Locale="en-PH" Key="has status Senile?" Text="has status Decay Cursed?" />
  <Translation Locale="en-PH" Key="has status Live and Die Together?" Text="has status Life Linked?" />
  <Translation Locale="en-PH" Key="has status Strength of Union?" Text="has status Overcome?" />
  <Translation Locale="en-PH" Key="has status Teamwork?" Text="has status Combined Effort?" />
  <Translation Locale="en-PH" Key="has status Deflective Curse?" Text="has status Deflection Cursed?" />
  <Translation Locale="en-PH" Key="has status Shattered Will?" Text="has status Weakened Will?" />
  <Translation Locale="en-PH" Key="has status Frost Protection?" Text="has status Ice Shield?" />
  <Translation Locale="en-PH" Key="has status Concentrated Resistance?" Text="has status Gain Resistance?" />
  <Translation Locale="en-PH" Key="has status Scattered Resistance?" Text="has status Lose Resistance?" />
  <Translation Locale="en-PH" Key="has status Disarmed?" Text="has status Unarmed?" />
  <Translation Locale="en-PH" Key="has status Faithful Defender?" Text="has status Soul Guardian?" />
  <Translation Locale="en-PH" Key="has status Deity Possessed?" Text="has status Evil Enchanted?" />
  <Translation Locale="en-PH" Key="has status Extreme Protection?" Text="has status Superior Defense?" />
  <Translation Locale="en-PH" Key="has status Diet?" Text="has status Haste?" />
  <Translation Locale="en-PH" Key="has status Improved Accuracy?" Text="has status Accurate?" />
  <Translation Locale="en-PH" Key="has status Restrained Resentment?" Text="has status Restricted Thought?" />
  <Translation Locale="en-PH" Key="has status Lonesome?" Text="has status Solitude?" />
  <Translation Locale="en-PH" Key="has status Tortured?" Text="has status Afflict?" />
  <Translation Locale="en-PH" Key="has status Bewildered?" Text="has status Confused?" />
  <Translation Locale="en-PH" Key="has status Obsessed?" Text="has status Exhausted?" />
  <Translation Locale="en-PH" Key="has status Fel Heart?" Text="has status Dark Heart?" />
  <Translation Locale="en-PH" Key="has status Fainted?" Text="has status Coma?" />
  <Translation Locale="en-PH" Key="has status Scarab Agony?" Text="has status Venomous Damage?" />
  <Translation Locale="en-PH" Key="has status Scarab Injury?" Text="has status Venomous Wound?" />
  <Translation Locale="en-PH" Key="has status Vicious Pest Toxin?" Text="has status Venom Bane?" />
  <Translation Locale="en-PH" Key="has status Demonic Posture?" Text="has status Daemon Stance?" />
  <Translation Locale="en-PH" Key="has status Modon Form?" Text="has status Venom Stance?" />
  <Translation Locale="en-PH" Key="has status Mystic Evasion?" Text="has status Dodge Secret?" />
  <Translation Locale="en-PH" Key="has status Mystic Regeneration?" Text="has status Rejuvenation Secret?" />
  <Translation Locale="en-PH" Key="has status Fate Blessed?" Text="has status Fate Blessing?" />
  <Translation Locale="en-PH" Key="has status Thorn Wrapped?" Text="has status Brier Protection?" />
  <Translation Locale="en-PH" Key="has status Death Cursed?" Text="has status Dead Spell?" />
  <Translation Locale="en-PH" Key="has status Sharpened Strike?" Text="has status Knowing Strike?" />
  <Translation Locale="en-PH" Key="has status Devilbane Cursed?" Text="has status Demon Breaking Spell?" />
  <Translation Locale="en-PH" Key="has status Agile Bliss?" Text="has status Lissome Protection?" />
  <Translation Locale="en-PH" Key="has status Blunting Curse?" Text="has status Inertia Spell?" />
  <Translation Locale="en-PH" Key="has status Doom Cursed?" Text="has status Anathema?" />
  <Translation Locale="en-PH" Key="has status Joy Blessed?" Text="has status Luck Wish?" />
  <Translation Locale="en-PH" Key="has status Thunder Cursed?" Text="has status Thunder Spell?" />
  <Translation Locale="en-PH" Key="has status Heavenly Blessed?" Text="has status Heaven Bliss?" />
  <Translation Locale="en-PH" Key="has status Beloved Warrior?" Text="has status Popular Acclaim?" />
  <Translation Locale="en-PH" Key="has status Perceptive?" Text="has status Foresight?" />
  <Translation Locale="en-PH" Key="has status Cancel?" Text="has status Counter Bliss?" />
  <Translation Locale="en-PH" Key="has status Courage?" Text="has status Courage" />
  <Translation Locale="en-PH" Key="has status Mist?" Text="has status Misty Drizzle?" />
  <Translation Locale="en-PH" Key="has status Combustion?" Text="has status Flame Burn?" />
  <Translation Locale="en-PH" Key="has status Dark Power?" Text="has status Ghost King Power?" />
  <Translation Locale="en-PH" Key="has status Raging Grudge?" Text="has status Enmity Fury?" />
  <Translation Locale="en-PH" Key="has status Absurd Bless?" Text="has status Delusion Bliss?" />
  <Translation Locale="en-PH" Key="has status Full of Love?" Text="has status Heartily?" />
  <Translation Locale="en-PH" Key="has status Ancient Prayer?" Text="has status Pray?" />
  <Translation Locale="en-PH" Key="has status Torturing Departure?" Text="has status Lovesickness Pain?" />
  <Translation Locale="en-PH" Key="has status Helping Hand?" Text="has status Pneuma Gathering?" />
  <Translation Locale="en-PH" Key="has status Embodiment of Truth?" Text="has status Heaven Lord Dharmakaya?" />
  <Translation Locale="en-PH" Key="has status Benevolent Heart?" Text="has status Heart of Compassion?" />
  <Translation Locale="en-PH" Key="has status Skysong Salvation?" Text="has status Heaven Sound Mass Saving?" />
  <Translation Locale="en-PH" Key="has status Spirit Matter?" Text="has status Elemental Ward?" />
  <Translation Locale="en-PH" Key="has status Thunder Bless?" Text="has status Heaven Drum Bliss?" />
  <Translation Locale="en-PH" Key="has status Fawin Wisdom?" Text="has status Sanskrit Prajna?" />
  <Translation Locale="en-PH" Key="has status Ghost of the Wronged?" Text="has status Resented Ghost?" />
  <Translation Locale="en-PH" Key="has status Self-Righteousness?" Text="has status Vile Ascendance?" />
  <Translation Locale="en-PH" Key="has status Tigeren Crystal?" Text="has status Tiger Soul Ice Cryolit?" />
  <Translation Locale="en-PH" Key="has status Turtoil Crystal?" Text="has status Turtle Ice Cryolite?" />
  <Translation Locale="en-PH" Key="has status Warrior's Heart?" Text="has status Heaven Fight Will?" />
  <Translation Locale="en-PH" Key="has status Cloud Awareness?" Text="has status Heaven Cloud?" />
  <Translation Locale="en-PH" Key="has status Dust of Progress?" Text="has status Heaven Dust?" />
  <Translation Locale="en-PH" Key="has status Bond of Eternal Love?" Text="has status Be of One Heart Forever?" />
  <Translation Locale="en-PH" Key="has status Void Slash?" Text="has status Void Kill?" />
  <Translation Locale="en-PH" Key="has status Beloved Warrior(Netbar Prize)?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Recovering Health(Netbar Prize)?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Recovering Spirit(Netbar Prize)?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Agility(Netbar Prize)?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Tigeren Crystal (VIP buff)?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Turtoil Crystal (VIP buff)?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Fearness?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Dragon Speed?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Tiger Defense?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Combat Spirit?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Iron Guts?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Fast as Wind?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Tranquility?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Fire Aggression?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Mountain Dweller?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Critical Hit?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Fox Shadow?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Transform?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Ancient Soul?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Cursing Array?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Blessing Array?" Text="trong trạng thái ????" />
  <Translation Locale="en-PH" Key="has status Blood Soul Essence (HP up)?" Text="has status Blood Soul Essence (HP up)?" />
  <Translation Locale="en-PH" Key="has status Spiritual Essence (SP up)?" Text="has status Spiritual Essence (SP up)?" />
  <Translation Locale="en-PH" Key="has status Soulbreak Essence (ATK up)?" Text="has status Soulbreak Essence (ATK up)??" />
  <Translation Locale="en-PH" Key="has status Soulshell Essence (DEF up)?" Text="has status Soulshell Essence (DEF up)?" />
  <Translation Locale="en-PH" Key="has status Soulstatis Essence (ACC up)?" Text="has status Soulstatis Essence (ACC up)?" />
  <Translation Locale="en-PH" Key="has status Soulmirage Essence (EVA up)?" Text="has status Soulmirage Essence (EVA up)?" />
  <Translation Locale="en-PH" Key="has status Meditating (Gain EXP continuously)?" Text="has status Meditating (Gain EXP continuously)?" />

LOL, i thought it was gonna be 1000~ish XD
Finished for this part. Razz
I hope it's correct. Smile
Now where do i put this? Question
Pls. do tell if there are any typo or missed parts. Thank you!

Off to bed now!


Last edited by extremedeath on 23.01.10 8:35; edited 1 time in total
extremedeath
extremedeath
Top Botter
Top Botter

Male
Number of posts : 174
Age : 34
Points : 188
Reputation : 4
Join date : 2009-08-02

Back to top Go down

PH (Zhu Xian Online) Help with localization Empty Re: PH (Zhu Xian Online) Help with localization

Post by vuduy 22.01.10 12:47

Copy and paste to your SINS.ini, then switch to language English (PH)...
When you add skill trigger, the translation should appear in your locale.
vuduy
vuduy
Administrator
SINBOT Creator


AdministratorSINBOT Creator

Male
Number of posts : 1033
Age : 47
Points : 1429
Reputation : 107
Join date : 2007-11-15

Back to top Go down

PH (Zhu Xian Online) Help with localization Empty Re: PH (Zhu Xian Online) Help with localization

Post by xtremedeath 23.01.10 0:48

Right. Thankx! I'll be trying it out later when i get home! : Smile
avatar
xtremedeath
Newbie
Newbie

Male
Number of posts : 3
Age : 35
Points : 3
Reputation : 0
Join date : 2009-12-13

Back to top Go down

PH (Zhu Xian Online) Help with localization Empty Re: PH (Zhu Xian Online) Help with localization

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum