I need the following wordings translated. I am looking for the text that shows in WoW's tooltip. All the following keywords are found in the tooltip. If your language has more then just one word for the keyword list them all and I will make it work.
Do not worry about making the strings into a regular expression pattern. I can do that for you. Just send me the complete text... (a few examples will be handy if it is complicated in your language).
Also, sending me your CP.lua file will greatly help as well!
Thanks for your time and support of WoWRoster!
- Code: Select all
$lang['tooltip_durability']='Durability';
$lang['tooltip_unique']='Unique';
$lang['tooltip_speed']='Speed';
$lang['tooltip_poisoneffect']='^Each strike has'; // this is found in poison tooltips I need the common text that decribes the poison.
$lang['tooltip_preg_armour']='/^(\d+) Armor/';
$lang['tooltip_preg_durability']='/Durability (\d+) \/ (\d+)/';
$lang['tooltip_preg_madeby']='/\<Made by (.+)\>/'; // this is the text that shows who crafted the item. don't worry about the pattern just post me the text I will make the pattern.
$lang['tooltip_preg_bags']='/^(\d+) Slot/'; // text for bags, ie '16 slot bag'
$lang['tooltip_preg_socketbonus']='/Socket Bonus: (.+)\n/';
$lang['tooltip_preg_classes']='/^Classes: (.+)/'; // text for class restricted items
$lang['tooltip_preg_races']='/^Races: (.+)/'; // test for race restricted items
$lang['tooltip_preg_charges']='/(\d+) Charges/'; // text for items with charges
$lang['tooltip_preg_block']='/(\d+) (Block)/'; // text for shield blocking values
$lang['tooltip_preg_emptysocket']='/(Red|Yellow|Blue|Meta) Socket/'; // text shown if the item has empty sockets.
$lang['tooltip_armour_types']='Cloth|Leather|Mail|Plate'; // the types of armor
$lang['tooltip_weapon_types']='Axe|Bow|Crossbow|Dagger|Fishing Pole|Fist Weapon|Gun|Mace|Main Hand|Polearm|Staff|Sword|Thrown|Wand'; // the types of weapons as shown in the tooltip
$lang['tooltip_bind_types']='Soulbound|Binds when equipped|Quest Item|Binds when used';
$lang['tooltip_misc_types']='Finger|Neck|Back|Shirt|Trinket|Tabard|Head|Chest';
$lang['tooltip_garbage']='<Shift Right Click to Socket>|<Right Click to Read>'; // these are texts that we really do not need to show in WoWRoster's tooltip so we'll strip them out
//CP v2.1.1+ Gems info
//uses preg_match() to find the type and color of the gem
$lang['gem_preg_singlecolor'] = '/Matches a (\w+) Socket/';
$lang['gem_preg_multicolor'] = '/Matches a (\w+) or (\w+) Socket/';
$lang['gem_preg_meta'] = '/Only fits in a meta gem slot/';
$lang['gem_preg_prismatic'] = '/Matches a Red, Yellow or Blue Socket/';
//Gems color Array
$lang['gem_colors'] = array(
'red' => 'Red',
'blue' => 'Blue',
'yellow' => 'Yellow',
'green' => 'Green',
'orange' => 'Orange',
'purple' => 'Purple',
'prismatic' => 'Prismatic'
);