| Tested: | Hour of Twilight 4.3 |
| Updated: | 02-27-12 11:46 PM |
| Created: | 06-09-09 10:03 AM |
| Downloads: | 1,100 |
| Favorites: | 14 |
| MD5: |
File Name |
Version |
Size |
Author |
Date |
1.0.3 |
1000B |
oomp |
10-16-10 10:58 AM |
|
1.0.2 |
1024B |
oomp |
08-06-09 04:55 PM |
|
1.0.2 |
1024B |
oomp |
06-15-09 07:00 PM |
|
1.0.1 |
866B |
oomp |
06-09-09 06:26 PM |
|
1.0.0 |
852B |
oomp |
06-09-09 10:03 AM |
![]() |
Comment Options |
|
|
|
|
I don't suppose anyone is willing to share their list of words? I'm too lazy to go through and add a bunch myself
![]() |
|
|
|
|
|
|
|
Whoa, thanks for the superhumanly fast update and also thanks for the hint with the words.lua file, I for sure would have forgotten!
Cheers! |
|
|
|
|
|
|
|
Hi, I know, not many people seem to be using this addon, but will there still be an update?
Thanks! |
|
|
|
|
|
|
|
First off, I'd like to say, I love this addon!
The only problem I had with it was that there was no easy way for two people to merge their word lists without introducing duplicates. I wrote a small C# program to do this automatically, and have PM'ed one of the admins of this site to see if I can host it here (it's an .exe, but I'm more than willing to put the source out there). As soon as I get word from them, I'll put it up. Edit: It's approved: Get the Diction Word List Merger.
Last edited by camperdave : 06-22-09 at 01:30 PM.
|
|
|
|
|
|
|
|
Hm, that is strange. I've been using the latest version of both addons and it didn't do anything. I'll enable lua errors and check again later, maybe there will be some clue.
And yes, thanks, my words list does look like the one you posted, I just copied the snippet I added. In total there are the default words and the ones I added in the correct formatting. Thanks Edit: I got it sorted out, it was an error on my side. Sorry for the confusion.
Last edited by IRID1UM : 06-17-09 at 02:57 AM.
|
|
|
|
|
|
||
Code:
Diction_Words = {
["isnt"] = "isn't",
["wasnt"] = "wasn't",
["havent"] = "haven't",
["didnt"] = "didn't",
["weild"] = "wield",
["couldnt"] = "couldn't",
}
|
||
|
|
|
|
|
|
Hi!
This addon doesn't seem to be working with Prat ![]() Words I'd have added to the list: ["isnt"] = "isn't", ["wasnt"] = "wasn't", ["havent"] = "haven't", ["didnt"] = "didn't", ["weild"] = "wield", ["couldnt"] = "couldn't", Cheers! |
|
|
|
|
|
|
|
A Defias Bandit
Forum posts: 2
File comments: 9
Uploads: 0
|
Haven't used this, I just wanted to pat the author on the back for a wonderful idea! Awesome!
![]() |
|
|
|
|
||
![]() |
||
|
|
|
|
|
|
I suggest you replace line 27-30 with:
Code:
if current:find(" "..k.."$") then
msg = current:gsub(" "..k.."$", " "..v)
ChatFrameEditBox:SetText(msg)
elseif current:find("^"..k.."$") then
msg = current:gsub(k, v)
ChatFrameEditBox:SetText(msg)
end
Also, FYI, there is a word "lightening". |
|
|
|
|
|
||
![]() |
||
|
|
|
|
|
|
Sjak: I'm aware of this, a simple fix would be to add:
Code:
["pala "] = "paladin ", -- EDIT -- If you wanted to, for example, add "lock" => "warlock", the space would have to be added before each word, instead of after, that is: Code:
[" lock"] = " warlock", ![]() Similarly, as with the "pala " example, " lock" won't be replaced if it's at the start of the sentence, unless a space is added before it.
Last edited by oomp : 06-09-09 at 02:47 PM.
|
|
|
|
|
|
|
|
I wanted to use this to let me continue being lazy and use the short versions of the class names, but when changing "pala" into "paladin" this happens. Any chance you could add something to stop that?
|
|
|
|
|
|
|
|
A Murloc Raider
Forum posts: 7
File comments: 120
Uploads: 0
|
This should be included in the default WoW UI.
An absolute requirement. Though I don't see "Ridiculous" in the list. :P |
|
|
![]() |