wesnoth/utils/pofix.py
2010-09-09 20:03:38 +00:00

3674 lines
246 KiB
Python
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pofix - perform string fixups on incoming .po files.
#
# The purpose of this script is to save translators from having to
# apply various string fixes needed before stable release by hand. It is
# intended to be run on each incoming .po file as the Lord of
# Translations receives it. However, translators may run it on their
# own .po files to be sure, as a second application will harmlessly do
# nothing.
#
# To use this script, give it one or more paths to .po files as
# command-line arguments. Each file will be tweaked as needed.
# It should work on Windows and MacOS X as well as Linux, provided
# you have Python installed.
#
# This script will emit a report line for each file it modifies,
# and save a backup copy of the original with extension "-bak".
#
# This script will tell you when it is obsolete. Run it against all .po
# files in the main Wesnoth tree; when it says none are older than this script,
# it can be discarded (assunming that it has in fact been used to transform
# all incoming .po files in the meantime).
#
# Example usage:
# utils/pofix.py po/wesnoth*/*.po*
# find data/campaigns/ -name '*.cfg' -print0 | xargs -0 utils/pofix.py
#
# To make use of >1 CPU core, you have to rely on xargs. In this sample 10 files
# are handed over to 4 instances of pofix.py:
# ls po/wesnoth*/*.po | xargs -P 4 -n 10 ./utils/pofix.py
#
#
# Please do make sure to add a comment before any new blocks of conversions
# that states when it was added (current version number is enough) so that
# the file can be cleaned up more easily every now and then.
# Example:
# # conversion added in 1.9.5+svn
# ("foo addwd bar", "foo added bar"),
# # conversion added in 1.9.8+svn
# ("fooba foo", "foobar foo"),
stringfixes = {
"wesnoth" : (
# Convert hyphen-minuses that are being used as minus signs
# to the Unicode minus sign
# conversion added in 1.9.0-svn
(" -25%", " 25%"),
(" -1%", " 1%"),
(" -100%", " 100%"),
# Convert makeshift dashes/straight apostrophes:
# conversion added in 1.9.0-svn
("however - from these", "however — from these"),
("campaign first - click", "campaign first — click"),
("unit type -", "unit type —"),
("experience - 4 for", "experience — 4 for"),
("both worlds - for", "both worlds — for"),
("respected - or simply", "respected — or simply"),
("feared - leader", "feared — leader"),
("- usually in blood - although", "— usually in blood — although"),
("position - although", "position — although"),
("as advisors -", "as advisors —"),
("don't have to - let it", "don't have to — let it"),
("your attacks - they will", "your attacks — they will"),
("upload statistics - Help", "upload statistics — Help"),
("(A) - auth command", "(A) — auth command"),
("(D) - debug only, (N) - network only, (A) - auth only", "(D) — debug only, (N) — network only, (A) — auth only"),
("not empty - duplicate", "not empty — duplicate"),
("Player Info -", "Player Info —"),
("About to upload statistics - Help us make Wesnoth better for you!", "About to upload statistics — Help us make Wesnoth better for you!"),
#the following rule applies to wesnoth/*.po* and to wesnoth-manual/*.po*
("victory objectives - getting", "victory objectives — getting"),
# Straight apostrophes and quotes to curly ones
# conversion added in 1.9.0-svn
("Ga'ash", "Gaash"),
("Gart'lo", "Gartlo"),
("Mar'Ildian", "MarIldian"),
("Marra Di'lek", "Marra Dilek"),
("Bzz'Kza", "BzzKza"),
("unit's", "units"),
("side's", "sides"),
("man's", "mans"),
("player's", "players"),
("elf's", "elfs"),
("turn's", "turns"),
("it's best to click the", "its best to click the"),
("Don't send", "Dont send"),
("RACV's", "RACVs"),
("If you don't", "If you dont"),
("you don't already own", "you dont already own"),
("aren't quite as tough", "arent quite as tough"),
("units don't incur", "units dont incur"),
("plague doesn't", "plague doesnt"),
("mechanical units don't", "mechanical units dont"),
("I'm Ready", "Im Ready"),
#("an odd width aren't", "an odd width aren't"),
# Fix capitalization
# conversion added in 1.9.0-svn
("Icelandic translation", "Icelandic Translation"),
("Miscellaneous contributors", "Miscellaneous Contributors"),
# 'Can not' -> 'cannot'
("directory name and can not be installed", "directory name and cannot be installed"),
# More straight to curly conversions
# conversion added in 1.9.0+svn
("Don't make a wish.", "Dont make a wish."),
),
"wesnoth-anl" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("4p - A New Land", "4p — A New Land"),
("some underground mushroom mines nearby -", "some underground mushroom mines nearby —"),
("A New Land - Help", "A New Land — Help"),
("Our talks are complete -", "Our talks are complete —"),
),
"wesnoth-aoi" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("was easy to follow - a wide", "was easy to follow — a wide"),
("unmistakable - tree stumps", "unmistakable — tree stumps"),
("question remained - would he", "question remained — would he"),
("this scenario - you must", "this scenario — you must"),
("worse - an orcish", "worse — an orcish"),
# Straight apostrophes and quotes to curly ones
# conversion added in 1.9.0-svn
("Wesmere's furthermost-faring scouts.", "Wesmeres furthermost-faring scouts."),
("Two days' travel later, the forward scouts", "Two days travel later, the forward scouts"),
("Use Elven Scouts and Linaera's power of teleportation", "Use Elven Scouts and Linaeras power of teleportation"),
("It's of human design...but we", "Its of human design...but we"),
("Do it. We'll have a guest soon.", "Do it. Well have a guest soon."),
("Lord... I'm... I am filled with grief.", "Lord... Im... I am filled with grief."),
("else we'll never have peace again.", "else well never have peace again."),
("We will come in numbers... (*cough*) You can't imagine..", "We will come in numbers... (*cough*) You cant imagine.."),
("I'll be waiting... Among the dead...", "Ill be waiting... Among the dead..."),
("It's done, lord. No-one escaped. No-one", "Its done, lord. No-one escaped. No-one"),
("we won't find much forage on the march.", "we wont find much forage on the march."),
("We can't carry on Lord, the men are to tired.", "We cant carry on Lord, the men are to tired."),
("we'll try again when reinforcements arrive.", "well try again when reinforcements arrive."),
("planning an invasion, I'm sure of it.", "planning an invasion, Im sure of it."),
("The sun's fully over the horizon.", "The suns fully over the horizon."),
("We'll rest a bit on the other side;", "Well rest a bit on the other side;"),
("they won't take long to rally.", "they wont take long to rally."),
("No! This can't be!", "No! This cant be!"),
("We can't get through, my Lord.", "We cant get through, my Lord."),
("Never in my life did I dream I'd be bested by mere trolls.", "Never in my life did I dream Id be bested by mere trolls."),
("We'll wait for reinforcements.", "Well wait for reinforcements."),
("Haldric's", "Haldrics"),
("believe it's a", "believe its a"),
("since then they've been", "since then theyve been"),
("It's hopeless; we've tried everything, and they're still coming back.", "Its hopeless; weve tried everything, and theyre still coming back."),
("There's", "Theres"),
("we're", "were"),
("Lord Erlornas didn't drive", "Lord Erlornas didnt drive"),
("I've been bested, but the combat wasn't fair", "Ive been bested, but the combat wasnt fair"),
("I'll have some answers", "Ill have some answers"),
("let's focus on the task at hand", "lets focus on the task at hand"),
("We don't want any more undesirables", "We dont want any more undesirables"),
("Lord... I'm... I am filled with grief", "Lord... Im... I am filled with grief"),
("else we'll never have peace again", "else well never have peace again"),
("You can't imagine", "You cant imagine"),
("I'll be waiting", "Ill be waiting"),
("It's done, lord. No-one escaped. No-one tried to escape. I'm... disturbed", "Its done, lord. No-one escaped. No-one tried to escape. Im... disturbed"),
("we'll move out at dawn", "well move out at dawn"),
("we won't find much forage", "we wont find much forage"),
("We can't carry on Lord", "We cant carry on Lord"),
("we'll try again when reinforcements arrive", "well try again when reinforcements arrive"),
("I'm sure of it", "Im sure of it"),
("The sun's fully over the horizon", "The suns fully over the horizon"),
("We'll rest a bit on the other side", "Well rest a bit on the other side"),
("they won't take long to rally", "they wont take long to rally"),
("No! This can't be!", "No! This cant be!"),
("We can't get through", "We cant get through"),
("I dream I'd be bested", "I dream Id be bested"),
("We'll wait for reinforcements", "Well wait for reinforcements"),
("not frequented even by Wesmere's", "not frequented even by Wesmeres"),
("Two days' travel later", "Two days travel later"),
("Linaera's power", "Linaeras power"),
("It's of human design", "Its of human design"),
("We'll have a guest soon", "Well have a guest soon"),
("Without Linaera's help", "Without Linaeras help"),
("The Ka'lian has deliberated", "The Kalian has deliberated"),
("they're tired and afraid", "theyre tired and afraid"),
("I'm... disturbed", "Im... disturbed"),
),
"wesnoth-did" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("A Small Favor -", "A Small Favor —"),
("running away - my horsemen", "running away — my horsemen"),
('says. "The book was', "says. “The book was"),
("Phew! Lets get out of here", "Phew! Lets get out of here."),
# Convert straight apostrophes/quotation marks
# conversion added in 1.9.0-svn
("Kreg'a'shar", "Kregashar"),
("Parthyn's", "Parthyns"),
("orcs'", "orcs"),
("'Allow me to introduce", "“Allow me to introduce"),
("town for a few days.'", "town for a few days.”"),
("'Surely you know that", "“Surely you know that"),
("only in dark magic.'", "only in dark magic.”"),
("You won't truly banish", "You wont truly banish"),
("I've no wish to", "Ive no wish to"),
("you've come", "youve come"),
("I won't spare", "I wont spare"),
("Three days' travel", "Three days travel"),
("T'shar", "Tshar"),
("Don't say", "Dont say"),
("it's ridiculous", "its ridiculous"),
("I don't see any. Maybe it's", "I dont see any. Maybe its"),
("'zed'", "zee"), # Use the American spelling; philosopher's quotes are being used here
("So, I've finally", "So, Ive finally"),
("he's threatening", "hes threatening"),
("It's time he learned", "Its time he learned"),
("I've been itching", "Ive been itching"),
("I'm ready", "Im ready"),
("transformation they'll begin", "transformation theyll begin"),
("I won't go down", "I wont go down"),
("I won't see them", "I wont see them"),
("orc's", "orcs"),
("'The spells of necromancy", "“The spells of necromancy"),
("spirit world.'", "spirit world.”"),
("'To become a lich, one must first die.'", "“To become a lich, one must first die.”"),
("Malin's", "Malins"),
("I've just got", "Ive just got"),
("We'll see", "Well see"),
("when they didn't", "when they didnt"),
("You can't", "You cant"),
("What's in it", "Whats in it"),
("Karres's", "Karress"),
("Let's get", "Lets get"),
("bats won't stand", "bats wont stand"),
("I'm eager to", "Im eager to"),
("if ye dinna' want tae be a walking pile o'", "if ye dinna want tae be a walking pile o"),
("they don't understand", "they dont understand"),
("I've got the rest", "Ive got the rest"),
("Gron'r Hronk", "Gronr Hronk"),
("K'rrlar Oban", "Krrlar Oban"),
("doesn't look very", "doesnt look very"),
("lake's", "lakes"),
("'They are quite useful in battle,'", "“They are quite useful in battle,”"),
("'but none of them have even a tenth of your potential power.'", "“but none of them have even a tenth of your potential power.”"),
("P'Gareth", "PGareth"),
("K'Vark", "KVark"),
("he's escaping", "hes escaping"),
("Drogan's", "Drogans"),
("'A life curse goes beyond a joke,'", "“A life curse goes beyond a joke,”"),
("'Poor judgment,'", "“Poor judgment,”"),
("I'll have my", "Ill have my"),
("'For your final test", "“For your final test"),
("retrieving a book,'", "retrieving a book,”"),
("'The book was", "The book was"),
("it from me.'", "it from me.”"),
("'They are no", "“They are no"),
("twice now.'", "twice now.”"),
("'Excellent. We travel", "“Excellent. We travel"),
("book inside.'", "book inside.”"),
("Mage Lord's", "Mage Lords"),
("mage lord's", "mage lords"),
("won't hold back", "wont hold back"),
("We've got", "Weve got"),
("you aren't leaving", "you arent leaving"),
("now you've given", "now youve given"),
("you've got", "youve got"),
("humankind's", "humankinds"),
("I'm not ready to die", "Im not ready to die"),
),
"wesnoth-dm" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("warn you - a party", "warn you — a party"),
("each other - and you'll", "each other — and youll"),
("Night is falling - that's", "Night is falling — thats"),
("work by now - I did not", "work by now — I did not"),
("seeking you - you see", "seeking you — you see"),
("Of course - do you", "Of course — do you"),
("Knalga - the rumor", "Knalga — the rumor"),
("Worse news - the", "Worse news — the"),
("been to the west - will the", "been to the west — will the"),
("the dead - should", "the dead — should"),
("Illuven - lesser", "Illuven — lesser"),
("need protection - cost", "need protection — cost"),
("No thanks - we'll manage by ourselves...", "No thanks — well manage by ourselves..."),
("Let's move on - the less", "Lets move on — the less"),
("We should camp for the night now - we", "We should camp for the night now — we"),
("Those standing stones - they summon", "Those standing stones — they summon"),
("possible - I want to get us", "possible — I want to get us"),
("they are woses - tree guardians", "they are woses — tree guardians"),
("no alternative - we must get", "no alternative — we must get"),
("things in Wesnoth - we must fight", "things in Wesnoth — we must fight"),
("stirred on the island -", "stirred on the island —"),
("see my greatest achievement - an", "see my greatest achievement — an"),
("must be informed immediately -", "must be informed immediately —"),
("This forest looks quiet - too quiet.", "This forest looks quiet — too quiet."),
("No - you can't be dead!", "No — you cant be dead!"),
("of our help too - this", "of our help too — this"),
# Fix screw up
# conversion added in 1.9.0-svn
("each other — and you'll", "each other — and youll"),
("Night is falling — that's", "Night is falling — thats"),
("No thanks — we'll manage by ourselves...", "No thanks — well manage by ourselves..."),
("Let's move on — the less", "Lets move on — the less"),
("No — you can't be dead!", "No — you cant be dead!"),
# Correct capitalization
# conversion added in 1.9.0-svn
("Clash at the manor", "Clash at the Manor"),
("Shadows in the dark", "Shadows in the Dark"),
("Face of the enemy", "Face of the Enemy"),
# Straight apostrophes and quotes to curly ones
# conversion added in 1.9.0-svn
("Delfador's Memoirs", "Delfadors Memoirs"),
("'The Great'", "“The Great”"),
("Don't die!", "Dont die!"),
("Methor's", "Methors"),
("I don't like", "I dont like"),
("I've told you", "Ive told you"),
("father's", "fathers"),
("After a night's rest", "After a nights rest"),
("And if it's archers you need", "And if its archers you need"),
("Leollyn's", "Leollyns"),
("king's", "kings"),
("Lionel's", "Lionels"),
("I'm honored that", "Im honored that"),
("Here's", "Heres"),
("It's been a pleasure", "Its been a pleasure"),
("You'll", "Youll"),
("I think that's all", "I think thats all"),
),
"wesnoth-dw" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("hearten the folk. And -", "hearten the folk. And —"),
("if you will permit - you", "if you will permit — you"),
("a week ago - wanted", "a week ago — wanted"),
("disturbing that a Kai - and", "disturbing that a Kai — and"),
("- would run here", "— would run here"),
("to be survive.", "to survive."),
# Straight quotes to curly quotes
# conversion added in 1.9.0+svn
("owner's", "owners"),
("I'll try on the ring.", "Ill try on the ring."),
("I'll take this ring", "Ill take this ring"),
("were many more on the way. I'm", "were many more on the way. Im"),
("kai's", "kais"),
("Laudiss's", "Laudisss"),
("'Lord Ravanal'.", "“Lord Ravanal”."),
("Krellis'", "Krellis"),
("Mal-Ravanal's Forces", "Mal-Ravanals Forces"),
("I've never even met", "Ive never even met"),
("it's licking my hand", "its licking my hand"),
("It's kind of cute", "Its kind of cute"),
("Aren't you going to kill", "Arent you going to kill"),
("Tyegëa's", "Tyegëas"),
("Let's hope those", "Lets hope those"),
("It's a storm", "Its a storm"),
("I'll take it", "Ill take it"),
("I'll just leave", "Ill just leave"),
("Don't let him go too", "Dont let him go too"),
("I wouldn't do it", "I wouldnt do it"),
("you're helping me", "youre helping me"),
("He's one", "Hes one"),
("We don't want", "We dont want"),
("we'll cut", "well cut"),
("You're still squatting", "Youre still squatting"),
("Now you're in", "Now youre in"),
("here's a yummy", "heres a yummy"),
("Don't kill me", "Dont kill me"),
("I've been so lonely", "Ive been so lonely"),
("But he's tame", "But hes tame"),
("He'll do what you", "Hell do what you"),
("He's a really nice", "Hes a really nice"),
("however, and the residents didn't", "however, and the residents didnt"),
("Cylanna's", "Cylannas"),
("Maudin's", "Maudins"),
("Imirna's", "Imirnas"),
("Tyegëa's", "Tyegëas"),
("I think something's", "I think somethings"),
("aren't any more", "arent any more"),
("to FIND it isn't the", "to FIND it isnt the"),
("he's dead of course", "hes dead of course"),
("Caladon's", "Caladons"),
("I'VE COME FOR YOUR", "IVE COME FOR YOUR"),
("if it doesn't want", "if it doesnt want"),
("I don't know if that", "I dont know if that"),
("It's MINE!", "Its MINE!"),
("it's true that you helped", "its true that you helped"),
("I won't kill you.", "I wont kill you."),
("I don't trust you,", "I dont trust you,"),
("You haven't left yet? My patience", "You havent left yet? My patience"),
("I'll carry", "Ill carry"),
("This doesn't look too bad.", "This doesnt look too bad."),
("Bring 'em on!", "Bring em on!"),
("pendant on it. I'm sure the shape", "pendant on it. Im sure the shape"),
("be useful. I'll take it.", "be useful. Ill take it."),
("destroying Mal-Ravanal's henchmen", "destroying Mal-Ravanals henchmen"),
("I can't swim, so", "I cant swim, so"),
("don't like fish", "dont like fish"),
("And don't touch the ships", "And dont touch the ships"),
("I'll give you my", "Ill give you my"),
("She has a reason. Don't", "She has a reason. Dont"),
("but he hasn't really cared", "but he hasnt really cared"),
("I'm sure many townsfolk would", "Im sure many townsfolk would"),
("It doesn't seem to have helped its previous owner. I don't want it.", "It doesnt seem to have helped its previous owner. I dont want it."),
("Let's hope those wild wolves", "Lets hope those wild wolves"),
("don't get to the feast", "dont get to the feast"),
),
"wesnoth-ei" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("Wait, before we go anywhere - who", "Wait, before we go anywhere — who"),
("This adept is weak - we may", "This adept is weak — we may"),
("onward - we must defeat", "onward — we must defeat"),
("playing a sick game - whenever", "playing a sick game — whenever"),
("to take care of - we must", "to take care of — we must"),
("to help us - but the orcs", "to help us — but the orcs"),
("It looks repairable - we", "It looks repairable — we"),
("Run for your - what the", "Run for your — what the"),
# ... and aint -> ain't
# conversion added in 1.9.0-svn
("I aint charging gold -", "I aint charging gold —"),
("'T'aint safe", "Taint safe"),
# Make it unspaced...
# conversion added in 1.9.0-svn
("may be able to help us in - ", "may be able to help us in—"),
("Wait - what just happened?", "Wait — what just happened?"),
# Fix screw up
# conversion added in 1.9.0-svn
("I ain't charging gold —", "I aint charging gold —"),
("'T'ain't safe", "Taint safe"),
),
"wesnoth-httt" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("and the support of my men - from", "and the support of my men — from"),
("NE - Dan'Tonk", "NE — DanTonk"),
("SE - Fort Tahn", "SE — Fort Tahn"),
("The Valley of Death - The Princess's Revenge", "The Valley of Death — The Princesss Revenge"),
("the hills - there are undead about!", "the hills — there are undead about!"),
("those gryphon eggs - they", "those gryphon eggs — they"),
("- Delfador's insistence", "— Delfadors insistence"),
("Look - orcs are", "Look — orcs are"),
("A frail human - or worse, an elf -", "A frail human — or worse, an elf —"),
("out to the heir - I", "out to the heir — I"),
("gruesome sight - a fleet", "gruesome sight — a fleet"),
("introduce myself - I", "introduce myself — I"),
("my warning - prepare", "my warning — prepare"),
("princess - the heiress", "princess — the heiress"),
("don't try to fight us - you", "dont try to fight us — you"),
("Princess Li'sar - here?", "Princess Lisar — here?"),
("Look - you can", "Look — you can"),
("century - a generation", "century — a generation"),
("vast human army - his", "vast human army — his"),
#("mother's", "mothers"),
#("'Fight no one great", "“Fight no one great"),
#("from his shoulders.'", "from his shoulders.”"),
#("You'd", "Youd"),
# Fix screw up
# conversion added in 1.9.0-svn
("NE — Dan'Tonk", "NE — DanTonk"),
("The Valley of Death — The Princess's Revenge", "The Valley of Death — The Princesss Revenge"),
("— Delfador's insistence", "— Delfadors insistence"),
("don't try to fight us — you", "dont try to fight us — you"),
("Princess Li'sar — here?", "Princess Lisar — here?"),
# Convert straight apostrophes and quotation marks
# conversion added in 1.9.0+svn
("Don't die, Delfador!", "Dont die, Delfador!"),
("city's finest defenders", "citys finest defenders"),
("Usadar Q'kai", "Usadar Qkai"),
("Can't we strike", "Cant we strike"),
("Managa'Gwin", "ManagaGwin"),
("up, worm! I'm the boss!", "up, worm! Im the boss!"),
("'em!", "em!"),
("I hope he's safe!", "I hope hes safe!"),
("you, Delfador? You're coming with", "you, Delfador? Youre coming with"),
("Delfador! I can't do it", "Delfador! I cant do it"),
("days' travel if", "days travel if"),
("with me, aren't you, Delfador?", "with me, arent you, Delfador?"),
("only six days' march up", "only six days march up"),
("Muff Malal's Peninsula", "Muff Malals Peninsula"),
("Let's hope these", "Lets hope these"),
("It's a shame", "Its a shame"),
("the Elensefar Thieves' Guild. We", "the Elensefar Thieves Guild. We"),
("if you didn't trust us,", "if you didnt trust us,"),
("across from Elensefar's docks.", "across from Elensefars docks."),
("from the city's northern gate.", "from the citys northern gate."),
("flag if it's dark?", "flag if its dark?"),
("Let's expel these", "Lets expel these"),
("banks of Elensefar's port district,", "banks of Elensefars port district,"),
("To Konrad's surprise, they", "To Konrads surprise, they"),
("across the river's mouth.", "across the rivers mouth."),
("with the Ka'lian, the Great", "with the Kalian, the Great"),
("but surely Asheviere's men will", "but surely Ashevieres men will"),
("of Fire? What's that?", "of Fire? Whats that?"),
("Wesmere, for Asheviere's orcs have", "Wesmere, for Ashevieres orcs have"),
("The queen's agents were", "The queens agents were"),
("Elensefar's rescue had", "Elensefars rescue had"),
("it was, Konrad's army avoided", "it was, Konrads army avoided"),
("important to Asheviere's", "important to Ashevieres"),
("Dan'Tonk, we are", "DanTonk, we are"),
("Force Li'sar's surrender (reduce", "Force Lisars surrender (reduce"),
("Elmar's Crossing", "Elmars Crossing"),
("\"Li'sar\"", "\"Lisar\""),
("the princess, Li'sar. The daughter", "the princess, Lisar. The daughter"),
("I'm no impostor.", "Im no impostor."),
("I surrender! Don't hurt me,", "I surrender! Dont hurt me,"),
("said before I'm not an", "said before Im not an"),
("near, impostor! I'll not be", "near, impostor! Ill not be"),
("I'll seize their", "Ill seize their"),
("You've discovered my", "Youve discovered my"),
("ploy! It doesn't matter, I'll still rout", "ploy! It doesnt matter, Ill still rout"),
("foiled, but I'll still flush", "foiled, but Ill still flush"),
("Well, let's start climbing", "Well, lets start climbing"),
("the mother Gryphon's eggs!", "the mother Gryphons eggs!"),
("circling the mountain's peak. Several", "circling the mountains peak. Several"),
("glared in Konrad's direction, their", "glared in Konrads direction, their"),
("by the river's edge!", "by the rivers edge!"),
("Isn't there somewhere", "Isnt there somewhere"),
("Wesnoth. We can't let them", "Wesnoth. We cant let them"),
("tore at Konrad's army, signaling", "tore at Konrads army, signaling"),
("Halgar Du'nar", "Halgar Dunar"),
("Eventually Delfador's insistence that", "Eventually Delfadors insistence that"),
("Who... who's here?", "Who... whos here?"),
("been? I haven't seen you", "been? I havent seen you"),
("We can't get in!", "We cant get in!"),
("But Konrad's party was", "But Konrads party was"),
("It's so dark", "Its so dark"),
("'Never done us any harm?' Why, I", "Never done us any harm? Why, I"),
("haven't had such", "havent had such"),
("What's this? Gryphons", "Whats this? Gryphons"),
("your anger. Relgorn's manner may", "your anger. Relgorns manner may"),
("'Guest quarters'.", "Guest quarters."),
("My uncle's family drowned", "My uncles family drowned"),
("What's this, more", "Whats this, more"),
("Some sort o' monster's appendage set", "Some sort o monsters appendage set"),
("I was brawlin' with these", "I was brawlin with these"),
("stink, and I'm a", "stink, and Im a"),
("my drift. Canna' swim past", "my drift. Canna swim past"),
("no' for lack o' tryin'.", "no for lack o tryin."),
("around here. Let's go.", "around here. Lets go."),
("last outpost o' civilization in", "last outpost o civilization in"),
("sway. Youll no'", "sway. Youll no"),
("Northeast o' my keep,", "Northeast o my keep,"),
("Princess. Now let's continue", "Princess. Now lets continue"),
("I can't believe it", "I cant believe it"),
("Konrad or Li'sar", "Konrad or Lisar"),
("An earthquake! We'll be trapped!", "An earthquake! Well be trapped!"),
("from the ruby's inner fire.", "from the rubys inner fire."),
("old wizard's normally inscrutable", "old wizards normally inscrutable"),
("Unan-Ka'tall", "Unan-Katall"),
("thinking... I don't really want", "thinking... I dont really want"),
("in my people's ancient tongue.", "in my peoples ancient tongue."),
("'The River of Bones'. Great and", "The River of Bones. Great and"),
("come under Konrad's leadership, and", "come under Konrads leadership, and"),
("on Queen Asheviere's ill-", "on Queen Ashevieres ill-"),
("belonged to Ila'alion, a mighty", "belonged to Ilaalion, a mighty"),
("Ila'alion's aid as", "Ilaalions aid as"),
("do to one's soul? What", "do to ones soul? What"),
("became my mother's most trusted", "became my mothers most trusted"),
("mother's rule, but", "mothers rule, but"),
("my brothers. Asheviere's masterwork of", "my brothers. Ashevieres masterwork of"),
("of the Lich's once-mortal", "of the Lichs once-mortal"),
("of the Lich's", "of the Lichs"),
("Aimucasur's lordship over", "Aimucasurs lordship over"),
("does to one's soul? What", "does to ones soul? What"),
("weeks past. We've found no", "weeks past. Weve found no"),
("Haven't you found", "Havent you found"),
("I don't recommend it.", "I dont recommend it."),
("am Princess Li'sar, the only", "am Princess Lisar, the only"),
("Konrad and Li'sar)", "Konrad and Lisar)"),
("Now when we've", "Now when weve"),
("I don't know. Maybe", "I dont know. Maybe"),
("We drakes don't", "We drakes dont"),
("go further we'll be forced", "go further well be forced"),
("no choice. We'll fight our", "no choice. Well fight our"),
("We've found $random", "Weve found $random"),
("Hurrah! We've killed their", "Hurrah! Weve killed their"),
("the drakes haven't finished him", "the drakes havent finished him"),
("Princess Li'sar, do I", "Princess Lisar, do I"),
("help him, I'll do my", "help him, Ill do my"),
("am Princess Li'sar, and we", "am Princess Lisar, and we"),
("Truly, I don't recommend entering", "Truly, I dont recommend entering"),
("I've reached the", "Ive reached the"),
("El'rien", "Elrien"),
("again! We don't know what", "again! We dont know what"),
("was afraid that's what you", "was afraid thats what you"),
("you, Lord El'rien. The hospitality", "you, Lord Elrien. The hospitality"),
("El'rien, we have", "Elrien, we have"),
("Elf, but I'm afraid I", "Elf, but Im afraid I"),
("is rightfully Konrad's. You have", "is rightfully Konrads. You have"),
("Delfador! Li'sar has become", "Delfador! Lisar has become"),
("friend. I don't want to", "friend. I dont want to"),
("are mistaken. Li'sar is the", "are mistaken. Lisar is the"),
("Li'sar should be", "Lisar should be"),
("go with Li'sar.", "go with Lisar."),
("Tell me, Li'sar, are you", "Tell me, Lisar, are you"),
("been with Li'sar in the", "been with Lisar in the"),
("dangerous! I didn't even think", "dangerous! I didnt even think"),
("Kalenz's champion courtiers", "Kalenzs champion courtiers"),
("Konrad's small band", "Konrads small band"),
("Konrad's heart leapt", "Konrads heart leapt"),
("the traitor Li'sar, with the", "the traitor Lisar, with the"),
("Delfador, don't you think", "Delfador, dont you think"),
("but it isn't to be.", "but it isnt to be."),
("Konrad and Li'sar, to", "Konrad and Lisar, to"),
("their forces! Let's see if", "their forces! Lets see if"),
("knew that Asheviere's wrath would", "knew that Ashevieres wrath would"),
("little prince's broken body,", "little princes broken body,"),
("if it weren't for her", "if it werent for her"),
("all of Asheviere's evil,", "all of Ashevieres evil,"),
("this Li'sar is fit", "this Lisar is fit"),
("mother. The land's blood is", "mother. The lands blood is"),
("Li'sar strikes a", "Lisar strikes a"),
("at last! Li'sar! You will", "at last! Lisar! You will"),
("but I won't ever forget", "but I wont ever forget"),
("was ended. Li'sar, daughter of", "was ended. Lisar, daughter of"),
("Delfador became Li'sar's High Counselor,", "Delfador became Lisars High Counselor,"),
("noble in Li'sar's court. He married Li'sar, and together", "noble in Lisars court. He married Lisar, and together"),
("is sleeping! You'd better not", "is sleeping! Youd better not"),
("reach it, Li'sar. I hope", "reach it, Lisar. I hope"),
("know what I'm doing. Come,", "know what Im doing. Come,"),
("of battle, Eldred's men turned", "of battle, Eldreds men turned"),
("Garard's queen, Asheviere,", "Garards queen, Asheviere,"),
("than her husband's had.", "than her husbands had."),
("But Garard's arch-mage, Delfador,", "But Garards arch-mage, Delfador,"),
("with his mother's advice", "with his mothers advice"),
("'Fight no one", "“Fight no one"),
("from his shoulders.'", "from his shoulders.”"),
("the end Delfador's men were", "the end Delfadors men were"),
("son's lifeless body,", "sons lifeless body,"),
("the great mage's staff.", "the great mages staff."),
("news of Asheviere's orders reached", "news of Ashevieres orders reached"),
("youngest of Garard's nephews, thereby", "youngest of Garards nephews, thereby"),
("sadly as Asheviere's reign of", "sadly as Ashevieres reign of"),
),
"wesnoth-l" : (
# Typo fix at r44124
("devestating", "devastating"),
# Convert makeshift dashes and other stuff:
# conversion added in 1.9.0-svn
("are on the hunt - and", "are on the hunt — and"),
("and ruthlessness - and their", "and ruthlessness — and their"),
("of death - would only", "of death — would only"),
("my father - your grandfather - brought", "my father — your grandfather — brought"),
("catacombs - cover me.", "catacombs — cover me."),
("Liberty - Epilogue", "Liberty — Epilogue"),
("'If you wish to find us, head southwest. When you reach the land's end, just keep going. See you in the Three Sisters, old friend. - Relnan'", "“If you wish to find us, head southwest. When you reach the lands end, just keep going. See you in the Three Sisters, old friend. ― Relnan”"),
# Fix screw up
# conversion added in 1.9.0-svn
("'If you wish to find us, head southwest. When you reach the land's end, just keep going. See you in the Three Sisters, old friend. — Relnan'", "“If you wish to find us, head southwest. When you reach the lands end, just keep going. See you in the Three Sisters, old friend. ― Relnan”"),
# Straight apostrophes and quotes to curly ones
# conversion added in 1.9.0-svn
("By the sound of the wolves, the scent trail of Fal Khag's killers ends here.", "By the sound of the wolves, the scent trail of Fal Khags killers ends here."),
("But when the effects fall on mere peasants, the wrong of it may not seem so obvious from a noble's chair.", "But when the effects fall on mere peasants, the wrong of it may not seem so obvious from a nobles chair."),
("Then they'll be back in force.", "Then theyll be back in force."),
("Well, it won't be long until they report back to the local garrison with the details of your encounter.", "Well, it wont be long until they report back to the local garrison with the details of your encounter."),
("In your many years as Delwyn's magistrate I have never known your judgment to err.", "In your many years as Delwyns magistrate I have never known your judgment to err."),
("there would be no help for the villagers, ground beneath the wheels of Asheviere's wrath.", "there would be no help for the villagers, ground beneath the wheels of Ashevieres wrath."),
("After more than a week of fierce fighting, the main body of Asheviere's", "After more than a week of fierce fighting, the main body of Ashevieres"),
("I think it's working!", "I think its working!"),
("It's done.", "Its done."),
("I'm inside the tower! I'm going", "Im inside the tower! Im going"),
("I think... I think they're trying to storm Halstead itself... the fools!", "I think... I think theyre trying to storm Halstead itself... the fools!"),
("Baldras, Gwydion is Lord Maddock's son. This battle isn't just about Annuvin anymore.", "Baldras, Gwydion is Lord Maddocks son. This battle isnt just about Annuvin anymore."),
("They're in for a surprise.", "Theyre in for a surprise."),
("They must think Wesnoth's army is spread out right now.", "They must think Wesnoths army is spread out right now."),
("I hope you're right.", "I hope youre right."),
("I don't see how we can bring it down.", "I dont see how we can bring it down."),
("the base of Halstead's frozen waves of stone.", "the base of Halsteads frozen waves of stone."),
("from the earth's living rock.", "from the earths living rock."),
("338 years before Asheviere's betrayal,", "338 years before Ashevieres betrayal,"),
("I'm the crazy one. Let's finish this folly.", "Im the crazy one. Lets finish this folly."),
("I haven't run this much in years.", "I havent run this much in years."),
("They've seen us, RUN!", "Theyve seen us, RUN!"),
("we're all in big trouble...", "were all in big trouble..."),
("so if we're careful enough we", "so if were careful enough we"),
("They're looking for us.", "Theyre looking for us."),
("I'm not sure where we're supposed to go now.", "Im not sure where were supposed to go now."),
("from sleep... we're not exactly sure.", "from sleep... were not exactly sure."),
("We don't. You have sought us out.", "We dont. You have sought us out."),
("The former King's magic ministry", "The former Kings magic ministry"),
("It's not noble work, but our pursuits require plenty of gold.", "Its not noble work, but our pursuits require plenty of gold."),
("Rest well tonight, because tomorrow's battle", "Rest well tonight, because tomorrows battle"),
("It's an ambush!", "Its an ambush!"),
("I am seen so far from my Lord's borders.", "I am seen so far from my Lords borders."),
("It's this or nothing.", "Its this or nothing."),
("You just said we can't beat their entire army!", "You just said we cant beat their entire army!"),
("They mustn't take one step without", "They mustnt take one step without"),
("What's worse is that she appears to", "Whats worse is that she appears to"),
("'We fled like criminals in the night, but we made sure that no one would harass us anymore.'", "“We fled like criminals in the night, but we made sure that no one would harass us anymore.”"),
("'Baldras, You would have been proud. We gave 'em hell. But in the end, it wasn't enough.'", "“Baldras, You would have been proud. We gave em hell. But in the end, it wasnt enough.”"),
("with bitter humor he realized that Lord Maddock's men", "with bitter humor he realized that Lord Maddocks men"),
("convinced Asheviere's second in command", "convinced Ashevieres second in command"),
("As the main body of Asheviere's army", "As the main body of Ashevieres army"),
("The spectacle of Halstead's destruction stunned them into", "The spectacle of Halsteads destruction stunned them into"),
("Indeed, Asheviere's armies", "Indeed, Ashevieres armies"),
("a second time, we're going to", "a second time, were going to"),
("I don't understand.", "I dont understand."),
("Unless you want me to round up the city's", "Unless you want me to round up the citys"),
("the King's son and betrayer.", "the Kings son and betrayer."),
("Queen's", "Queens"),
("the King's rule", "the Kings rule"),
("But we'll need to chase them all down if we're going to stop them.", "But well need to chase them all down if were going to stop them."),
("And Harper... don't get yourself killed. I'm responsible for you now that your father is gone, and I won't dishonor his memory by breaking my promise to keep you safe.", "And Harper... dont get yourself killed. Im responsible for you now that your father is gone, and I wont dishonor his memory by breaking my promise to keep you safe."),
("All right now, let's", "All right now, lets"),
("They're getting closer", "Theyre getting closer"),
("They'll come out when they see those riders, or us, approaching, but there aren't many of them... I wouldn't count on them being able to protect the village alone for long.", "Theyll come out when they see those riders, or us, approaching, but there arent many of them... I wouldnt count on them being able to protect the village alone for long."),
("What's happening here?", "Whats happening here?"),
("Some mages are thrown out of the mage's", "Some mages are thrown out of the mages"),
("In the process they pick up a good deal of the Knight's", "In the process they pick up a good deal of the Knights"),
("take responsibility for the community's", "take responsibility for the communitys"),
("the village's wisest and most", "the villages wisest and most"),
("but as Asheviere's grip", "but as Ashevieres grip"),
("I don't want to touch it.", "I dont want to touch it."),
("With bitter humor he realized that Lord Maddock's", "With bitter humor he realized that Lord Maddocks"),
),
"wesnoth-lib" : (
# Convert makeshift dashes
# conversion added in 1.9.0-svn
("Player Info - ", "Player Info — "),
),
"wesnoth-low" : (
# Spelling fixes required at r44124
("engaged wit the defenders", "engaged with the defenders"),
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("follow you, Kalenz - but", "follow you, Kalenz — but"),
("Kalenz - lead us", "Kalenz — lead us"),
("them aid - it's clear", "them aid — its clear"),
# Fix screw up
# conversion added in 1.9.0-svn
("them aid — it's clear", "them aid — its clear"),
# Correct capitalization
# conversion added in 1.9.0-svn
("Breaking the siege", "Breaking the Siege"),
("Council ruling", "Council Ruling"),
("The Chief must die", "The Chief Must Die"),
("News from the front", "News from the Front"),
("Battle of the book", "Battle of the Book"),
("Council of hard choices", "Council of Hard Choices"),
("Ka'lian under attack", "Kalian under Attack"), # Also convert apostrophe to its curly form
("Hostile mountains", "Hostile Mountains"),
),
"wesnoth-manual" : (
),
"wesnoth-multiplayer" : (
# Spelling fix required at r44124.
("helps alot", "helps a lot"),
# Convert makeshift dashes
# conversion added in 1.9.0-svn
("2p -", "2p —"),
("3p -", "3p —"),
("4p -", "4p —"),
("5p -", "5p —"),
("6p -", "6p —"),
("8p -", "8p —"),
("9p -", "9p —"),
("- - Seven Stones and Eleven", "— Seven Stones and Eleven"),
("- - Seven Stones - and the Elven", "— Seven Stones — and the Elven"),
("Bramwythl was left behind - in their haste, no one had remembered to find", "Bramwythl was left behind — in their haste, no one had remembered to find"),
("treasure that had been lost in these watery caves- a spear whose head was", "treasure that had been lost in these watery caves— a spear whose head was"),
("Single player mode - uses the reduced strength spawns", "Single player mode — uses the reduced strength spawns"),
("Two player mode - uses the full strength spawns.", "Two player mode — uses the full strength spawns."),
("Dark Forecast - a random survival scenario", "Dark Forecast — a random survival scenario"),
("They appear along the north, south and west map edges - though they are most", "They appear along the north, south and west map edges — though they are most"),
("- map design, spawn groups and scenario concept", "— map design, spawn groups and scenario concept"),
("- WML implementation", "— WML implementation"),
("- So this is the accursed valley - a land ours for the taking.", "So this is the accursed valley — a land ours for the taking."),
("watery caves- a spear whose", "watery caves— a spear whose"),
("-- map design, spawn groups and scenario concept", "— map design, spawn groups and scenario concept"),
("- WML implementation", "— WML implementation"),
),
"wesnoth-nr" : (
# Correct some English usage at revision 44124
("fortifications and siege them", "fortifications and besiege them"),
("Form, up men!", "Form up, men!"),
("the sunlit word", "the sunlit world"),
("bows and a cudgels", "bows and cudgels"),
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("afar -- hence they kept their weapons sharp, and reckoned themselves well ", "afar — hence they kept their weapons sharp, and reckoned themselves well "),
("forgetting that their ancestors had been free - and might have completely ", "forgetting that their ancestors had been free — and might have completely "),
("lives of the people of Dwarven Doors - forever.", "lives of the people of Dwarven Doors — forever."),
("It was an early spring day like any other; the humans - joyless beneath the ", "It was an early spring day like any other; the humans — joyless beneath the "),
("orcish whip - were dispiritedly planting the yearly crop. All at once, the ", "orcish whip — were dispiritedly planting the yearly crop. All at once, the "),
("The orcs have gotten careless - look how easily I stole these weapons and ", "The orcs have gotten careless — look how easily I stole these weapons and "),
("help, unlooked for, arrived in the form of a small band of woodsrunners -- ", "help, unlooked for, arrived in the form of a small band of woodsrunners — "),
("of them to hell! Oh, and just between me and you, it is actually good fun - ", "of them to hell! Oh, and just between me and you, it is actually good fun — "),
("Tallin, this situation is hopeless - there are endless monsters swarming ", "Tallin, this situation is hopeless — there are endless monsters swarming "),
("We are in a dire situation indeed - but just see - the trolls and the ", "We are in a dire situation indeed — but just see — the trolls and the "),
("replacement - whereas for every monster we kill, it seems that two more come ", "replacement — whereas for every monster we kill, it seems that two more come "),
("creatures and they know their caves backwards and forwards - so I am sure at ", "creatures and they know their caves backwards and forwards — so I am sure at "),
("Och, the dwarves of Knalga are themselves in desperate straits - but we ", "Och, the dwarves of Knalga are themselves in desperate straits — but we "),
("this sorry state - where are they now? From what I have seen, it is mostly ", "this sorry state — where are they now? From what I have seen, it is mostly "),
("not before we surprised and slew their leader - the cursed Khazg Black-Tusk. ", "not before we surprised and slew their leader — the cursed Khazg Black-Tusk. "),
("after we were trapped here - by ones and twos in the beginning, and now by ", "after we were trapped here — by ones and twos in the beginning, and now by "),
("our axes. So, it is not their existence I fear - for we have faced far worse ", "our axes. So, it is not their existence I fear — for we have faced far worse "),
("trials - but their rising numbers gives cause for worry...", "trials — but their rising numbers gives cause for worry..."),
("the mines! Let the guardsmen stay behind along with the noncombatants - for ", "the mines! Let the guardsmen stay behind along with the noncombatants — for "),
("But my my, what do we have here - Tallin.", "But my my, what do we have here — Tallin."),
("minions - gorge on the flesh of these scurrying little rats!", "minions — gorge on the flesh of these scurrying little rats!"),
("Tallin. He's lucky, he is - or he makes his own luck.", "Tallin. He's lucky, he is — or he makes his own luck."),
("Black-Tusk, but we survived the orcs and trolls -- only to be captured by ", "Black-Tusk, but we survived the orcs and trolls — only to be captured by "),
("What was that? Oh, woe - two big slabs of rock cutting off our retreat!", "What was that? Oh, woe — two big slabs of rock cutting off our retreat!"),
("Well, if you don't mind me saying - that certainly isn't the state of ", "Well, if you dont mind me saying — that certainly isnt the state of "),
("Interesting. I wonder who - or what - could have created such a powerful ", "Interesting. I wonder who — or what — could have created such a powerful "),
("Thus, compelled by some strange and irresistible force, Tallin - eyes glazed ", "Thus, compelled by some strange and irresistible force, Tallin — eyes glazed "),
("and mind unthinking - did the will of his new master.", "and mind unthinking — did the will of his new master."),
("dwarves - it's because of you that we ha' made a start rebuilding Knalga in ", "dwarves — its because of you that we ha made a start rebuilding Knalga in "),
("I am here simply finishing the job Khazg Black-Tusk started years ago - the ", "I am here simply finishing the job Khazg Black-Tusk started years ago — the "),
("And I am grateful - but what should we do from here? The number of humans ", "And I am grateful — but what should we do from here? The number of humans "),
("Orcs are fickle; if we negotiated a treaty with them - assuming they would ", "Orcs are fickle; if we negotiated a treaty with them — assuming they would "),
("accept - it would just be broken as soon as the next warlord arose among ", "accept — it would just be broken as soon as the next warlord arose among "),
("I have heard all about him from my good friend Stalrag. He is - or was ", "I have heard all about him from my good friend Stalrag. He is — or was "),
("anyway, haven't heard from him in years - the chief o' the villages that lay ", "anyway, havent heard from him in years — the chief o the villages that lay "),
("As Tallin sat staring blankly at the body of his former friend - loathing ", "As Tallin sat staring blankly at the body of his former friend — loathing "),
("and hating what he had become - he received an urgent summons from his ", "and hating what he had become — he received an urgent summons from his "),
("Pew! Nick of time too - I almost bought it there!", "Pew! Nick of time too — I almost bought it there!"),
("elves - for the sorceress was, in fact, a princess of the highest rank.", "elves — for the sorceress was, in fact, a princess of the highest rank."),
("our help in rescuing their Princess? You heard their message - those elves ", "our help in rescuing their Princess? You heard their message — those elves "),
("Well, suppose we do join up with the elves - assuming they will let us - and ", "Well, suppose we do join up with the elves — assuming they will let us — and "),
("Just our luck to be here when they're mustering a field force - probably to ", "Just our luck to be here when theyre mustering a field force — probably to "),
("Later, princess, first let's get outta -- uh, let us take our leave of this ", "Later, princess, first lets get outta — uh, let us take our leave of this "),
("him, and so he fled. As he did so, visions of his dying friends - friends ", "him, and so he fled. As he did so, visions of his dying friends — friends "),
("that he had slain - flashed before his eyes, while their voices chided him ", "that he had slain — flashed before his eyes, while their voices chided him "),
("under his control, I have done unthinkable deeds - I have studied the most ", "under his control, I have done unthinkable deeds — I have studied the most "),
("never would have risked their lives - nay, if I were not there they wouldn't ", "never would have risked their lives — nay, if I were not there they wouldnt "),
("Ruler of Men to ensure peace, harmony and above all - justice. For hundreds ", "Ruler of Men to ensure peace, harmony and above all — justice. For hundreds "),
("Tallin, accompanied by the ghost of the king - whose name he soon discovered ", "Tallin, accompanied by the ghost of the king — whose name he soon discovered "),
("to be Abhai - set off down the tunnels in search of the Rod of Justice. ", "to be Abhai — set off down the tunnels in search of the Rod of Justice. "),
("The Amulet of Strength, how fascinating. However - though it may be a useful ", "The Amulet of Strength, how fascinating. However — though it may be a useful "),
("place - nothing there but a bunch of bats.", "place — nothing there but a bunch of bats."),
("I found a way to the surface - that is if you feel like climbing straight up ", "I found a way to the surface — that is if you feel like climbing straight up "),
("We do not wish to fight you, Great One, we simply seek the Rod of Justice - ", "We do not wish to fight you, Great One, we simply seek the Rod of Justice — "),
("countless foes and raised countless generations of drakes - and now I am ", "countless foes and raised countless generations of drakes — and now I am "),
("The only problem - or the major one, anyway - is these blasted orcs. They ", "The only problem — or the major one, anyway — is these blasted orcs. They "),
("determined to make Knalga into an orcish stronghold - enslaving or killing ", "determined to make Knalga into an orcish stronghold — enslaving or killing "),
("There is a large elvish force not far from here who - we believe anyway - ", "There is a large elvish force not far from here who — we believe anyway — "),
("hesitated and found himself unable to proceed. Abhai came forth - his ", "hesitated and found himself unable to proceed. Abhai came forth — his "),
("defenders - and fearlessly lifted the Rod in his ghostly hands. He paused ", "defenders — and fearlessly lifted the Rod in his ghostly hands. He paused "),
("Tallin raised his eyes to look into Abhai's and Abhai met his gaze - ", "Tallin raised his eyes to look into Abhais and Abhai met his gaze — "),
("your doubts at rest.' Tallin held the gaze for one more long moment - and ", "your doubts at rest.” Tallin held the gaze for one more long moment — and "),
("Yes, Tallin - it is I.", "Yes, Tallin — it is I."),
("How did you get here - I thought you you were dead... and for that matter, ", "How did you get here — I thought you you were dead... and for that matter, "),
("of unimaginable splendor, glory and transcendence - the very realm of the ", "of unimaginable splendor, glory and transcendence — the very realm of the "),
("They are all here, princess! Hand picked by your father - the finest and ", "They are all here, princess! Hand picked by your father — the finest and "),
("They are all here, princess! Hand picked by your father - the finest and ", "They are all here, princess! Hand picked by your father — the finest and "),
("and leave them a small guard. Then they pressed onward to rescue Hidel - and ", "and leave them a small guard. Then they pressed onward to rescue Hidel — and "),
("Cheer up -- you won't have to live with your failure for long...*snicker*", "Cheer up — you wont have to live with your failure for long...*snicker*"),
("have a few scores to settle with you. Take them, troops - I want no orc left ", "have a few scores to settle with you. Take them, troops — I want no orc left "),
("been crushed. This relieves a blight on our land - but if we do not address ", "been crushed. This relieves a blight on our land — but if we do not address "),
("what race they come from - even orcs.", "what race they come from — even orcs."),
("Tallin, as you know, I have been separated from my race and kinsmen - well, ", "Tallin, as you know, I have been separated from my race and kinsmen — well, "),
("except Eryssa - for many years now. I wish to go back to the elvish forests ", "except Eryssa — for many years now. I wish to go back to the elvish forests "),
("Lords of Light - or Darkness - guide you on your path. For those of you who ", "Lords of Light — or Darkness — guide you on your path. For those of you who "),
("are staying - come, we have much to do.", "are staying — come, we have much to do."),
("- and unknown - world to trade with the Dwarves of Knalga.", "— and unknown — world to trade with the Dwarves of Knalga."),
("Thus, from a small, enslaved community, the people of Dwarven Doors - by ", "Thus, from a small, enslaved community, the people of Dwarven Doors — by "),
("their fortitude, valor, and wisdom - brought the Northlands out of the ", "their fortitude, valor, and wisdom — brought the Northlands out of the "),
# Fix screw up
# conversion added in 1.9.0-svn
("Cheer up — you won't have to live with your failure for long...*snicker*", "Cheer up — you wont have to live with your failure for long...*snicker*"),
("your doubts at rest.' Tallin held the gaze for one more long moment — and ", "your doubts at rest.” Tallin held the gaze for one more long moment — and "),
("Tallin raised his eyes to look into Abhai's and Abhai met his gaze — ", "Tallin raised his eyes to look into Abhais and Abhai met his gaze — "),
("never would have risked their lives — nay, if I were not there they wouldn't ", "never would have risked their lives — nay, if I were not there they wouldnt "),
("Later, princess, first let's get outta — uh, let us take our leave of this ", "Later, princess, first lets get outta — uh, let us take our leave of this "),
("Just our luck to be here when they're mustering a field force — probably to ", "Just our luck to be here when theyre mustering a field force — probably to "),
("anyway, haven't heard from him in years — the chief o' the villages that lay ", "anyway, havent heard from him in years — the chief o the villages that lay "),
("dwarves — it's because of you that we ha' made a start rebuilding Knalga in ", "dwarves — its because of you that we ha made a start rebuilding Knalga in "),
("Well, if you don't mind me saying — that certainly isn't the state of ", "Well, if you dont mind me saying — that certainly isnt the state of "),
),
"wesnoth-thot" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("then living -- all", "then living — all"),
("the Hammer -- dropped", "the Hammer — dropped"),
("to my eyes - an", "to my eyes — an"),
("captain -- but", "captain — but"),
("prisoners - which", "prisoners — which"),
("seen again - I began", "seen again — I began"),
("tightly locked - and, I", "tightly locked — and, I")
),
"wesnoth-trow" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("Nay! Off with your hea- - -", "Nay! Off with your hea—"),
("is time - but I'll", "is time — but Ill"),
("SE - The River Road.", "SE — The River Road."),
("SW - The", "SW — The"),
("SW - Southbay.", "SW — Southbay."),
("Hold - I see", "Hold — I see"),
("The River Road -", "The River Road —"),
("I'm a tinkin- -", "Im a tinkin—"),
("NW - Southbay", "NW — Southbay"),
# Also, "Like" -> "like"
("More Like NW - Every orc", "More like NW — Every orc"),
("Rarlg - argh", "Rarlg — argh"),
("Sewer - Danger", "Sewer — Danger"),
("Legend has it- -", "Legend has it—"),
("your fate you- -", "your fate you—"),
("Compan- - What?", "Compan— What?"),
("your services again- -", "your services again—"),
("people - to ally", "people — to ally"),
("meet your son -", "meet your son —"),
("- As we agreed.", "— As we agreed."),
("and your people -", "and your people —"),
("their aid at all -", "their aid at all —"),
("me - I'll be dead", "me — Ill be dead"),
("to say it - but", "to say it — but"),
("is ridiculous! I -", "is ridiculous! I —"),
("all I need - prepare", "all I need — prepare"),
("much -- from both", "much — from both"),
("a Lord -- to join", "a Lord — to join"),
("best of times - so", "best of times — so"),
# Fix screw up
# conversion added in 1.9.0-svn
("is time — but I'll", "is time — but Ill"),
("I'm a tinkin—", "Im a tinkin—"),
("me — I'll be dead", "me — Ill be dead"),
),
"wesnoth-tsg" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("My lord! The dawn is breaking - now is the time for us to attack and drive ", "My lord! The dawn is breaking — now is the time for us to attack and drive "),
("reinforcements - Did Sir Loris send you from Westin?", "reinforcements — Did Sir Loris send you from Westin?"),
("We will do our best to hold the city - you lead your men across the river ", "We will do our best to hold the city — you lead your men across the river "),
("Westin has fallen! This is a problem too great for me to handle - I must ", "Westin has fallen! This is a problem too great for me to handle — I must "),
("I have lost two brothers to Deoran - I shall not allow him to reach the ", "I have lost two brothers to Deoran — I shall not allow him to reach the "),
("My mount will not help me in these rocky paths - I will leave him here at ", "My mount will not help me in these rocky paths — I will leave him here at "),
("Also, soldiers with the -quick- trait will be useful in the dark.", "Also, soldiers with the — quick — trait will be useful in the dark."),
("We have escaped the great forest, but look! The undead are chasing us - we ", "We have escaped the great forest, but look! The undead are chasing us — we "),
("I too will make my stand here - I owe you my life and must atone for my ", "I too will make my stand here — I owe you my life and must atone for my "),
("Minister Hylas, ride with me to Westin - you must summon the Council of ", "Minister Hylas, ride with me to Westin — you must summon the Council of "),
("Far from home I fall - but not in vain! Guard our people, Deoran!", "Far from home I fall — but not in vain! Guard our people, Deoran!"),
("when they have an ally directly behind the unit they are attacking - they'll ", "when they have an ally directly behind the unit they are attacking — theyll "),
("magic. They are slow and weak - any of your units is more than a match for ", "magic. They are slow and weak — any of your units is more than a match for "),
("Finally Ethiliel told the men to halt and pitch camp - they had reached the ", "Finally Ethiliel told the men to halt and pitch camp — they had reached the "),
# Fix screw up
# conversion added in 1.9.0-svn
("when they have an ally directly behind the unit they are attacking — they'll ", "when they have an ally directly behind the unit they are attacking — theyll "),
# Convert apostrophes and quotation marks
# conversion added in 1.9.0-svn
("I've seen your", "Ive seen your"),
("We'll surely all", "Well surely all"),
("Ithelden's", "Itheldens"),
("We won't be able", "We wont be able"),
("Mal M'Brin", "Mal MBrin"),
("Brin's", "Brins"),
("Gerrick's", "Gerricks"),
("men's", "mens"),
("I prepare the city's defenses", "I prepare the citys defenses"),
("works if it's the last", "works if its the last"),
("I've broken through", "Ive broken through"),
("I'm lighting it", "Im lighting it"),
("lich's", "lichs"),
("we won't kill you", "we wont kill you"),
("shouldn't", "shouldnt"),
("I wouldn't have", "I wouldnt have"),
("I've seen many", "Ive seen many"),
("you've earned", "youve earned"),
("We're almost there", "Were almost there"),
("I don't think they'll", "I dont think theyll"),
("Mebrin's", "Mebrins"),
("I'll kill you", "Ill kill you"),
("they don't look very friendly", "they dont look very friendly"),
("She won't listen", "She wont listen"),
("I didn't have a choice", "I didnt have a choice"),
("if we hadn't fallen", "if we hadnt fallen"),
("I'm afraid it is not", "Im afraid it is not"),
("it'd", "itd"),
("undead aren't so tough", "undead arent so tough"),
("You're alive", "Youre alive"),
("You're too late", "Youre too late"),
("Mal A'kai", "Mal Akai"),
("I hope that's the last", "I hope thats the last"),
("Hylas's", "Hylass"),
("We're too late", "Were too late"),
("They'll feel the deadly", "Theyll feel the deadly"),
("It's me", "Its me"),
("they're in trouble", "theyre in trouble"),
("Mathin's", "Mathins"),
("While you're in your camp", "While youre in your camp"),
("citadel's", "citadels"),
("'my kind'?", "“my kind”?"),
("I've seen your", "Ive seen your"),
("Deoran's", "Deorans"),
("the capital of Wesnoth's", "the capital of Wesnoths"),
("Haldiel's", "Haldiels"),
("'Stop! Enough blood has", "“Stop! Enough blood has"),
("your service also was worthy.'", "your service also was worthy.”"),
),
"wesnoth-sof" : (
# Typo fixes required at r44124.
("going to back to the mines", "going back to the mines"),
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("So now I tell from whence it came -", "So now I tell from whence it came —"),
("The Fire-sceptre great -", "The Fire-sceptre great —"),
("Uh, no, wait! Lets talk business - how much will you pay us to do this for ", "Uh, no, wait! Lets talk business — how much will you pay us to do this for "),
("Fine then - ten thousand... now, what exactly do you want us to make the ", "Fine then — ten thousand... now, what exactly do you want us to make the "),
("Hey! You can't do that - this road is an elvish road. We're not letting you ", "Hey! You cant do that — this road is an elvish road. Were not letting you "),
("Ah, I see - you are one of the rebels. Our treaty with the elves does not ", "Ah, I see — you are one of the rebels. Our treaty with the elves does not "),
("We will see about that - if you ever get underground, which I doubt. Ha!", "We will see about that — if you ever get underground, which I doubt. Ha!"),
("Here - I'll go warn the council. You stay here and fight.", "Here — Ill go warn the council. You stay here and fight."),
("dwarf-made stonecraft. We refuse - now let's close these gates!", "dwarf-made stonecraft. We refuse — now lets close these gates!"),
("Just watch. The gates wi' close very soon. Then the elves outside - and, ", "Just watch. The gates wi close very soon. Then the elves outside — and, "),
("unfortunately, our dwarves who are still out there - wi' become irrelevant.", "unfortunately, our dwarves who are still out there — wi become irrelevant."),
("for the runesmith named Thursagan - the sage of fire.", "for the runesmith named Thursagan — the sage of fire."),
("members of their party - one expected, and one not.", "members of their party — one expected, and one not."),
("In the treasury. And leave it there until you're ready to work with it - I ", "In the treasury. And leave it there until youre ready to work with it — I "),
("the finest coal, and many of the finest jewels in the land - we'll need ", "the finest coal, and many of the finest jewels in the land — well need "),
("to fight them; also be prepared to spend quite some time here - mining can ", "to fight them; also be prepared to spend quite some time here — mining can "),
("Yes, although we will have to hire the miners - they don't work for free. ", "Yes, although we will have to hire the miners — they dont work for free. "),
("were others - many others. Thus I present Theganli, the jeweler. His role is ", "were others — many others. Thus I present Theganli, the jeweler. His role is "),
("were no exception. They were crafters of crafters - they made tools. The ", "were no exception. They were crafters of crafters — they made tools. The "),
("How about this - I help you defeat them, and you let me keep the ruby when ", "How about this — I help you defeat them, and you let me keep the ruby when "),
("Well, back to the battle - we are all in the caves, but there are still ", "Well, back to the battle — we are all in the caves, but there are still "),
("Well, back to the battle - we need everyone to get into the Shorbear caves. ", "Well, back to the battle — we need everyone to get into the Shorbear caves. "),
("If ye'll permit me to say so, sir, ye're wrong. We could - ", "If yell permit me to say so, sir, yere wrong. We could — "),
("If you'll permit me to say so, sir, you're wrong. We could - ", "If youll permit me to say so, sir, youre wrong. We could — "),
("went south - back to the Wesnoth border.", "went south — back to the Wesnoth border."),
("And thus Rugnur died - a glorious death, in the eyes of the dwarven sages. ", "And thus Rugnur died — a glorious death, in the eyes of the dwarven sages. "),
("And Krawg - well, Krawg followed him. I know not how. But Krawg made his way ", "And Krawg — well, Krawg followed him. I know not how. But Krawg made his way "),
("But before it was found, legends grew up around it, and around its makers - ", "But before it was found, legends grew up around it, and around its makers — "),
# Straight apostrophes and quotes to curly ones
# conversion added in 1.9.0-svn
# (NOT YET)
#("The land of Wesnoth's banner bold", "The land of Wesnoths banner bold"),
#("Made by a runesmith's hand.", "Made by a runesmiths hand."),
# Fix screw up:
# conversion added in 1.9.0-svn
("Yes, although we will have to hire the miners v they don't work for free. ", "Yes, although we will have to hire the miners — they dont work for free. "),
("Hey! You can't do that — this road is an elvish road. We're not letting you ", "Hey! You cant do that — this road is an elvish road. Were not letting you "),
("If you'll permit me to say so, sir, you're wrong. We could — ", "If youll permit me to say so, sir, youre wrong. We could — "),
("If ye'll permit me to say so, sir, ye're wrong. We could — ", "If yell permit me to say so, sir, yere wrong. We could — "),
("the finest coal, and many of the finest jewels in the land — we'll need ", "the finest coal, and many of the finest jewels in the land — well need "),
("In the treasury. And leave it there until you're ready to work with it — I ", "In the treasury. And leave it there until youre ready to work with it — I "),
("unfortunately, our dwarves who are still out there — wi' become irrelevant.", "unfortunately, our dwarves who are still out there — wi become irrelevant."),
("Just watch. The gates wi' close very soon. Then the elves outside — and, ", "Just watch. The gates wi close very soon. Then the elves outside — and, "),
("dwarf-made stonecraft. We refuse — now let's close these gates!", "dwarf-made stonecraft. We refuse — now lets close these gates!"),
("Here — I'll go warn the council. You stay here and fight.", "Here — Ill go warn the council. You stay here and fight."),
),
"wesnoth-sotbe" :(
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("the offer. However, on the way to the city of Dwarven Doors - the ", "the offer. However, on the way to the city of Dwarven Doors — the "),
("headquarters of the Northern Alliance - Karun and his small group of ", "headquarters of the Northern Alliance — Karun and his small group of "),
("The peace treaty still held however, partially because the treaty - although ", "The peace treaty still held however, partially because the treaty — although "),
("arranged by the Northern Alliance - was between the local earls and the ", "arranged by the Northern Alliance — was between the local earls and the "),
("Alliance. The other - and perhaps the main - reason why the treaty held was ", "Alliance. The other — and perhaps the main — reason why the treaty held was "),
("followed were relatively peaceful and prosperous - at least, for the humans.", "followed were relatively peaceful and prosperous — at least, for the humans."),
("In the thirteenth year of the Lord Protectorship of Howgarth III - the ", "In the thirteenth year of the Lord Protectorship of Howgarth III — the "),
("successor of Rahul I - tension began to rise between orcish tribes and human ", "successor of Rahul I — tension began to rise between orcish tribes and human "),
("on their lands. Then, Earl Lanbec'h - the most powerful human warlord of the ", "on their lands. Then, Earl Lanbech — the most powerful human warlord of the "),
("North - determined to abolish the orcish menace raised an army and conferred ", "North — determined to abolish the orcish menace raised an army and conferred "),
("Who is this unlicked whelp? Grunts - kill him and bring me his head!", "Who is this unlicked whelp? Grunts — kill him and bring me his head!"),
("Wise decision, Kapou'e. By the size of that army, this is no mere raid - it ", "Wise decision, Kapoue. By the size of that army, this is no mere raid — it "),
("And this is that stupid human who dares march against Kapou'e - Son of the ", "And this is that stupid human who dares march against Kapoue — Son of the "),
("Hey, Chief, I was thinking - dwarves are pretty slow; why don't we just ", "Hey, Chief, I was thinking — dwarves are pretty slow; why dont we just "),
("As soon as the sandstorm died down, Kapou'e and his men - eager to escape ", "As soon as the sandstorm died down, Kapoue and his men — eager to escape "),
("the searing heat - left the oasis and continued on their trek.", "the searing heat — left the oasis and continued on their trek."),
("and all the natural sounds of the forest died away - leaving everything ", "and all the natural sounds of the forest died away — leaving everything "),
("Leave your people here Kapou'e - they are safe for the moment - and go ", "Leave your people here Kapoue — they are safe for the moment — and go "),
("friends - get them!", "friends — get them!"),
("After a fair amount of squabbling - for some of the older warlords were ", "After a fair amount of squabbling — for some of the older warlords were "),
("reluctant to let this young upstart lead them - and a few consequent ", "reluctant to let this young upstart lead them — and a few consequent "),
("Kapou'e placed one force under the leadership of Shan Taum the Smug, who - ", "Kapoue placed one force under the leadership of Shan Taum the Smug, who — "),
("despite his obnoxious nature - was a fierce and capable leader. He was sent ", "despite his obnoxious nature — was a fierce and capable leader. He was sent "),
("He sent the shamans, Pirk, Gork and Vraurk back to Borstep - a city just ", "He sent the shamans, Pirk, Gork and Vraurk back to Borstep — a city just "),
("north of the Mourned Hills - to organize any remaining orcish forces as well ", "north of the Mourned Hills — to organize any remaining orcish forces as well "),
("Kapou'e himself - desiring to settle this business once and for all - led ", "Kapoue himself — desiring to settle this business once and for all — led "),
("The orcs are making headway. The city must not fall - call the reserves!", "The orcs are making headway. The city must not fall — call the reserves!"),
("fall. A few days after the first snowfall a goblin rider - half dead from ", "fall. A few days after the first snowfall a goblin rider — half dead from "),
("exhaustion - raced into Dorset with the news that Borstep was under siege by ", "exhaustion — raced into Dorset with the news that Borstep was under siege by "),
("give him a good chance to clobber the orcs together again - the old ", "give him a good chance to clobber the orcs together again — the old "),
("Kapou'e's exploits had been widely circulated - from his rescue of the ", "Kapoues exploits had been widely circulated — from his rescue of the "),
("horde was dispersed he appointed three more shamans - with the consent of ", "horde was dispersed he appointed three more shamans — with the consent of "),
("all - to make the Great Council complete again.", "all — to make the Great Council complete again."),
# Fix screw up
# conversion added in 1.9.0-svn
("Kapou'e's exploits had been widely circulated — from his rescue of the ", "Kapoues exploits had been widely circulated — from his rescue of the "),
("Kapou'e himself — desiring to settle this business once and for all — led ", "Kapoue himself — desiring to settle this business once and for all — led "),
("Kapou'e placed one force under the leadership of Shan Taum the Smug, who — ", "Kapoue placed one force under the leadership of Shan Taum the Smug, who — "),
("Leave your people here Kapou'e — they are safe for the moment — and go ", "Leave your people here Kapoue — they are safe for the moment — and go "),
("As soon as the sandstorm died down, Kapou'e and his men — eager to escape ", "As soon as the sandstorm died down, Kapoue and his men — eager to escape "),
("Hey, Chief, I was thinking — dwarves are pretty slow; why don't we just ", "Hey, Chief, I was thinking — dwarves are pretty slow; why dont we just "),
("And this is that stupid human who dares march against Kapou'e — Son of the ", "And this is that stupid human who dares march against Kapoue — Son of the "),
("Wise decision, Kapou'e. By the size of that army, this is no mere raid — it ", "Wise decision, Kapoue. By the size of that army, this is no mere raid — it "),
("on their lands. Then, Earl Lanbec'h — the most powerful human warlord of the ", "on their lands. Then, Earl Lanbech — the most powerful human warlord of the "),
),
"wesnoth-tb" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("A Tale of Two Brothers - Epilogue", "A Tale of Two Brothers — Epilogue"),
# Convert straight apostrophes and quotation marks
## conversion added in 1.9.0-svn
("The village's mage Bjarn", "The villages mage Bjarn"),
("'Fear and obey Mordak the Mage!'", "“Fear and obey Mordak the Mage!”"),
("Mordak's", "Mordaks"),
("more than two days'", "more than two days"),
("brother's", "brothers"),
("We're chasing after", "Were chasing after"),
("master's", "masters"),
("let's catch those", "lets catch those"),
("We think there's", "We think theres"),
("They've captured my brother", "Theyve captured my brother"),
("Arne's", "Arnes"),
("let's kill some orcs", "lets kill some orcs"),
("you're supposed", "youre supposed"),
("isn't it", "isnt it"),
("aren't our relief", "arent our relief"),
("they're holding Bjarn", "theyre holding Bjarn"),
("day's", "days"),
("I don't think we can rescue", "I dont think we can rescue"),
),
"wesnoth-tutorial" : (
),
"wesnoth-units" : (
# Spelling fixes required at r44124
("diminuitive", "diminutive"),
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("allowed - grudgingly - to", "allowed—grudgingly—to"),
("horseback - in fact", "horseback — in fact"),
("is quite justified -", "is quite justified —"),
("their own race - this power", "their own race — this power"),
("archer - though the heft", "archer — though the heft"),
("dangerous enough - the deadliness", "dangerous enough — the deadliness"),
("in battle - if only", "in battle — if only"),
("accompany it - it is a sin", "accompany it — it is a sin"),
("rarely seen - standing", "rarely seen — standing"),
# Fix spacing of old results
# conversion added in 1.9.0+svn
("allowed — grudgingly — to", "allowed—grudgingly—to"),
# Convert straight quotes to curly quotes
# conversion added in 1.9.0+svn
("particularly good at ""resolving"" territorial", "particularly good at “resolving” territorial"),
("the power they've learned to focus", "the power theyve learned to focus"),
("challenge his tribe's leader for", "challenge his tribes leader for"),
("drakes'", "drakes"),
("although it's most commonly", "although its most commonly"),
("one's own goals", "ones own goals"),
("commands of it's master", "commands of its master"),
("This doesn't work", "This doesnt work"),
("target's", "targets"),
("enemies'", "enemies"),
),
"wesnoth-utbs" : (
# Convert makeshift dashes:
# conversion added in 1.9.0-svn
("Strike hard and fast and also be careful--right, this is going to be fun.", "Strike hard and fast and also be careful—right, this is going to be fun."),
("There might be, but I don't--", "There might be, but I dont—"),
("You idiot--", "You idiot—"),
("unfortunately we found your men dead--", "unfortunately we found your men dead—"),
("Well, actually they were fleeing from--", "Well, actually they were fleeing from—"),
("Look, if you'll just let me explain--", "Look, if youll just let me explain—"),
("This is--", "This is—"),
("This entire journey has been based on a lie--", "This entire journey has been based on a lie—"),
("the last few generations--if anything the land had grown even more", "the last few generations—if anything the land had grown even more"),
# Fix screw up
# conversion added in 1.9.0-svn
("Look, if you'll just let me explain—", "Look, if youll just let me explain—"),
("There might be, but I don't—", "There might be, but I dont—"),
# Convert straight apostrophes and quotation marks
# conversion added in 1.9.0-svn
("What's happened? Oh Eloh, the craters are everywhere, everything is gone, ruined. I can hardly recognize our village. I didn't think it could be this bad.", "Whats happened? Oh Eloh, the craters are everywhere, everything is gone, ruined. I can hardly recognize our village. I didnt think it could be this bad."),
("C'mon", "Come on"),
("Tanuil's", "Tanuils"),
("That's", "Thats"),
("Uria's", "Urias"),
("If we don't stop them", "If we dont stop them"),
("Then let's join the battle!", "Then lets join the battle!"),
("let's get rid of them", "lets get rid of them"),
("If we don't", "If we dont"),
("things won't be", "things wont be"),
("we can't dwell on the dead", "we cant dwell on the dead"),
("Let's keep exploring the wreckage.", "Lets keep exploring the wreckage."),
("They're destroyed at last.", "Theyre destroyed at last."),
("But there's no time", "But theres no time"),
("so we'll have", "so well have"),
("I'm fine. I'm afraid only", "Im fine. Im afraid only"),
("Maybe they're hiding in the stables. Let's go check.", "Maybe theyre hiding in the stables. Lets go check."),
("We'll need your help", "Well need your help"),
("They've agreed to", "Theyve agreed to"),
("couldn't", "couldnt"),
("Eloh's", "Elohs"),
("I've fought", "Ive fought"),
("We'll just have to find out.", "Well just have to find out."),
("I suppose we wouldn't", "I suppose we wouldnt"),
("there'll be one heck", "therell be one heck"),
("You've been working on", "Youve been working on"),
("Hey Kaleh, how's", "Hey Kaleh, hows"),
("I'm not quite", "Im not quite"),
("Yechnagoth's", "Yechnagoths"),
("Go'hag", "Gohag"),
("she's", "shes"),
("Looks like that's the", "Looks like thats the"),
("it's a long story", "its a long story"),
("you're a mage", "youre a mage"),
("We'd", "Wed"),
("Let's cleanse", "Lets cleanse"),
("if it's a fight they want, it's a fight they'll", "if its a fight they want, its a fight theyll"),
("That's the last", "Thats the last"),
("there's still dried blood on the stones. It's", "theres still dried blood on the stones. Its"),
("they're going to be sorry", "theyre going to be sorry"),
("It's a good", "Its a good"),
("don't kill me", "dont kill me"),
("We're just", "Were just"),
("It's Holy Water.", "Its Holy Water."),
("we won't be able", "we wont be able"),
("we've made it", "weve made it"),
("I've been searching", "Ive been searching"),
("I'm searching for the", "Im searching for the"),
("No, I haven't.", "No, I havent."),
("I'm not sure. I've read various references to it, but nothing specific. I've been searching for it for a long time. All I know is that it was a very powerful magical wand and that it was some sort of symbol of royalty in the old empire, but I have no idea where it might be. So I scour the land, learning all I can about the olden days. I'm sure it must be somewhere.", "Im not sure. Ive read various references to it, but nothing specific. Ive been searching for it for a long time. All I know is that it was a very powerful magical wand and that it was some sort of symbol of royalty in the old empire, but I have no idea where it might be. So I scour the land, learning all I can about the olden days. Im sure it must be somewhere."),
("exhausted. We've taken", "exhausted. Weve taken"),
("I don't...", "I dont..."),
("or what's left", "or whats left"),
("I'm impressed.", "Im impressed."),
("You've been working", "Youve been working"),
("couldn't be worse", "couldnt be worse"),
("they haven't had the", "they havent had the"),
("I don't think we've explored", "I dont think weve explored"),
("We've explored the village and I think we've", "Weve explored the village and I think weve"),
("glad you're here", "glad youre here"),
("'You must be strong, young elf", "“You must be strong, young elf"),
("you and protect you.'", "you and protect you.”"),
("We can't leave them", "We cant leave them"),
("I don't want to tarry", "I dont want to tarry"),
("What's that to", "Whats that to"),
("won't be forgotten", "wont be forgotten"),
("Zhul's", "Zhuls"),
("friends'", "friends"),
("you don't recruit", "you dont recruit"),
("I don't see a thing", "I dont see a thing"),
("poor person's body", "poor persons body"),
("There doesn't seem", "There doesnt seem"),
("wait...what's this", "wait...whats this"),
("I've heard tales", "Ive heard tales"),
("Traveler's Ring", "Travelers Ring"),
),
"1.8-announcement" : (
# conversion added shortly before 1.8.0, might be relevant for the 1.10.0 announcement
("WML events an AI components", "WML events and AI components"),
("1.7.3", "1.7.13"),
("/tags/1.8/", "/tags/1.8.0/"),
),
"wesnoth-low" : (
# Experimental conversion - apostrophes and em dashes
# Legend of Wesmere only
# Simons Mith, 23/08/2010, build 45968
("\"El'Isomithir\"", "\"ElIsomithir\""),
("\"T'baran\"", "\"Tbaran\""),
("Absolutely. Let's do it!", "Absolutely. Lets do it!"),
("After the council's decision, Kalenz", "After the councils decision, Kalenz"),
("and trolls dinna' go there", "and trolls dinna go there"),
("are but children's tales...still, be", "are but childrens tales...still, be"),
("are fresher; I'll go.", "are fresher; Ill go."),
("at the Ka'lian took an", "at the Kalian took an"),
("behind me; I'll guard you", "behind me; Ill guard you"),
("Believing that Wesmere's seeming safety", "Believing that Wesmeres seeming safety"),
("both their mother's healing gifts", "both their mothers healing gifts"),
("But Kalenz's story was", "But Kalenzs story was"),
("But the Ka'lian's gold is the Ka'lian's. Would you", "But the Kalians gold is the Kalians. Would you"),
("by the council's passivity. But", "by the councils passivity. But"),
("carry out Crelanu's dangerous but", "carry out Crelanus dangerous but"),
("Chieftain? But he's guarded better", "Chieftain? But hes guarded better"),
("Cleodil's doubt is", "Cleodils doubt is"),
("council in Ka'lian and enlist", "council in Kalian and enlist"),
("Crelanu's book ...", "Crelanus book ..."),
("Crelanu's philter affecting", "Crelanus philter affecting"),
("Crelanu's place should", "Crelanus place should"),
("Dancer's Green", "Dancers Green"),
("different matter; I'm sure I", "different matter; Im sure I"),
("do. I ha' heard tale", "do. I ha heard tale"),
("Don't flee. We", "Dont flee. We"),
("Don't worry overmuch", "Dont worry overmuch"),
("dose of Crelanu's invisibility philter. I'll go back", "dose of Crelanus invisibility philter. Ill go back"),
("elves and I'll get da", "elves and Ill get da"),
("Elves' Last Stand", "Elves Last Stand"),
("eventually, Landar's increasingly harsh", "eventually, Landars increasingly harsh"),
("find some o' my people", "find some o my people"),
("for Landar's revolt. But", "for Landars revolt. But"),
("from the Ka'lian.", "from the Kalian."),
("from the wolves-", "from the wolves —"),
("Gentlemen, don't squabble. We", "Gentlemen, dont squabble. We"),
("get it. I'll catch up", "get it. Ill catch up"),
("go, Kalenz, I'll guard the Ka'lian till our", "go, Kalenz, Ill guard the Kalian till our"),
("gold and we'll get", "gold and well get"),
("hate in Landar's heart. Something", "hate in Landars heart. Something"),
("heads! They ha' been too", "heads! They ha been too"),
("horse-pokers!! Run, let's get out", "horse-pokers!! Run, lets get out"),
("How? Don't tell me", "How? Dont tell me"),
("humans fall, we'll be", "humans fall, well be"),
("I agree. What's done is", "I agree. Whats done is"),
("I dinna' think it", "I dinna think it"),
("If it weren't for Kalenz", "If it werent for Kalenz"),
("If the Ka'lian is too", "If the Kalian is too"),
("is the council's decision.", "is the councils decision."),
("It willna' be easy.", "It willna be easy."),
("It's an ancient", "Its an ancient"),
("It's not a dastone, it's the stone:", "Its not a dastone, its the stone:"),
("It's not much", "Its not much"),
("It's Olurf! He", "Its Olurf! He"),
("It's the source", "Its the source"),
("It's...it's monstrous!", "Its...its monstrous!"),
("I'm sorry I", "Im sorry I"),
("Kalenz. The Ka'lian council should", "Kalenz. The Kalian council should"),
("Kalenz's long childhood", "Kalenzs long childhood"),
("Kalenz's veterans joined", "Kalenzs veterans joined"),
("Ka'lian do...How do", "Kalian do...How do"),
("Landar! You're back! All", "Landar! Youre back! All"),
("Landar's remaining followers' lives were", "Landars remaining followers lives were"),
("learn of Kalenz's last and", "learn of Kalenzs last and"),
("left the Ka'lian he had", "left the Kalian he had"),
("life by Crelanu's philter, he", "life by Crelanus philter, he"),
("make a dwarf's hackles rise;", "make a dwarfs hackles rise;"),
("Maybe they don't", "Maybe they dont"),
("minus expenses that's about even.", "minus expenses thats about even."),
("my kin willna' be happy", "my kin willna be happy"),
("my men ha' all kept", "my men ha all kept"),
("No, don't leave your", "No, dont leave your"),
("Now that we've retrieved the", "Now that weve retrieved the"),
("of the Kalenz's elves!", "of the Kalenzs elves!"),
("of the Ka'lian, for it", "of the Kalian, for it"),
("on the Ka'lian! But if", "on the Kalian! But if"),
("one of Aquagar's creatures. Who", "one of Aquagars creatures. Who"),
("orcs alone! It's all over!", "orcs alone! Its all over!"),
("orcs are everybody's enemy. When", "orcs are everybodys enemy. When"),
("our home. Let's storm the", "our home. Lets storm the"),
("Our wolves' teeth will", "Our wolves teeth will"),
("o' this river", "o this river"),
("Perhaps the dwarves' intransigence can", "Perhaps the dwarves intransigence can"),
("poorly. The Ka'lian will need", "poorly. The Kalian will need"),
("raid on Kalenz's home, it", "raid on Kalenzs home, it"),
("remnant evil Crelanu's philter had", "remnant evil Crelanus philter had"),
("responded to Cleodil's", "responded to Cleodils"),
("stinking trolls ha' stepped on", "stinking trolls ha stepped on"),
("take back what's ours!", "take back whats ours!"),
("take the Ka'lian, all is", "take the Kalian, all is"),
("the bright moon's face again!", "the bright moons face again!"),
("the fun wi' the orcs", "the fun wi the orcs"),
("the fun. I'd ha' brought a", "the fun. Id ha brought a"),
("The orcs ha' been defeated.", "The orcs ha been defeated."),
("the rest o'", "the rest o"),
("their Great Chief's place. You", "their Great Chiefs place. You"),
("there! Now, let's", "there! Now, lets"),
("They are no' fighting for gold, they're here for", "They are no fighting for gold, theyre here for"),
("they seem. Landar's", "they seem. Landars"),
("to the Ka'lian was already", "to the Kalian was already"),
("to the Ka'lian!", "to the Kalian!"),
("to the Ka'lian. Thanks to", "to the Kalian. Thanks to"),
("to the Ka'lian. There is", "to the Kalian. There is"),
("to the Ka'lian...", "to the Kalian..."),
("to the saurians' treasury was", "to the saurians treasury was"),
("Too late, we've taken all", "Too late, weve taken all"),
("treasury's garrison before", "treasurys garrison before"),
("us. We ha' been forced", "us. We ha been forced"),
("Very soon, Landar's army appeared...", "Very soon, Landars army appeared..."),
("we have what's left of", "we have whats left of"),
("We'll crush those", "Well crush those"),
("We'll need to", "Well need to"),
("What 'stone', foul and", "What stone, foul and"),
("What's more, King", "Whats more, King"),
("What's that, and", "Whats that, and"),
("What's this? It", "Whats this? It"),
("Where there's a contract,", "Where theres a contract,"),
("WHo murdered El'Isomithir!", "WHo murdered ElIsomithir!"),
("With Crelanu's book in", "With Crelanus book in"),
("with Kalenz's army.", "with Kalenzs army."),
("won! The Ka'lian is safe!", "won! The Kalian is safe!"),
("ye think we'd let you", "ye think wed let you"),
("Yesss! It's the elves", "Yesss! Its the elves"),
("yet over. Aquagar's curse was", "yet over. Aquagars curse was"),
("you may. They'll be back.", "you may. Theyll be back."),
("you mean, 'diverted their attention'?", "you mean, diverted their attention?"),
("you our army's vanguard? Hurry,", "you our armys vanguard? Hurry,"),
("You won't get very", "You wont get very"),
("'dastone'. I am", "dastone. I am"),
),
# Bulk apostrophe and dash conversion, pass 1, all campaigns EXCEPT
# LOW (already sent as another patch)
# HTTT and DW (being done by Espreon and ancestral)
# AOI, DID, L (already fully converted)
# Simons Mith, 23/08/2010, based on build 45968
# Also about twelve new pairs of <i> tags, marked with comments
# From here downwards to next comment block...
"wesnoth-dm" : (
("a reward for Delfador's bravery, I am", "a reward for Delfadors bravery, I am"),
("a trace of Iliah-Malal's way between", "a trace of Iliah-Malals way between"),
("A wizard's staff of power.", "A wizards staff of power."),
("am Ulrek, chieftain o' the clan of", "am Ulrek, chieftain o the clan of"),
("aware of the King's", "aware of the Kings"),
("barbarian for you. We're", "barbarian for you. Were"),
("be left in Iliah-Malal's hands.", "be left in Iliah-Malals hands."),
("been sent at Asheviere's", "been sent at Ashevieres"),
("book's help, it will", "books help, it will"),
("But as Delfador's meditation deepened, and", "But as Delfadors meditation deepened, and"),
("But the elder mage's health was taxed", "But the elder mages health was taxed"),
("called 'Heir to the Throne'. In it is", "called Heir to the Throne. In it is"),
("comrades' screams as they", "comrades screams as they"),
("Delfador became Garard II's", "Delfador became Garard IIs"),
("Delfador's head. Had that", "Delfadors head. Had that"),
("Delfador's last great quest,", "Delfadors last great quest,"),
("Delfador's troop, hurrying west", "Delfadors troop, hurrying west"),
("Delfador's wandering time with", "Delfadors wandering time with"),
("enemy. I'm sure they'll be no match", "enemy. Im sure theyll be no match"),
("evil in the reader's", "evil in the readers"),
("final blow, for Iliah-Malal's un-", "final blow, for Iliah-Malals un-"),
("final blow, for Iliah-Malal's un-life must", "final blow, for Iliah-Malals un-life must"),
("Following the alliance's victory and the", "Following the alliances victory and the"),
("Garard that way! 'Suffer our", "Garard that way! “Suffer our"),
("go against the King's", "go against the Kings"),
("had already in Delfador's time been a", "had already in Delfadors time been a"),
("his portal before it's too late, and", "his portal before its too late, and"),
("hospitality? I'm lost, and freezing", "hospitality? Im lost, and freezing"),
("how to close Iliah-Malal's portal to the", "how to close Iliah-Malals portal to the"),
("Human, ye ha' fought well. I", "Human, ye ha fought well. I"),
("Iliah-Malal's forces. But the", "Iliah-Malals forces. But the"),
("in having the King's ear; there was", "in having the Kings ear; there was"),
("It's a long story...", "Its a long story..."),
("It's hopeless, I've lost all track", "Its hopeless, Ive lost all track"),
("It's the only way!", "Its the only way!"),
("Lionel, the King's most trusted general,", "Lionel, the Kings most trusted general,"),
("Malal's army and Weldyn....", "Malals army and Weldyn..."),
("Malal's portal! All is", "Malals portal! All is"),
("necromancer's footsteps in a", "necromancers footsteps in a"),
("night like that! Let's leave this evil", "night like that! Lets leave this evil"),
("not obey the King's order.", "not obey the Kings order."),
("one of the garrison's message-riders to him,", "one of the garrisons message-riders to him,"),
("portal. But with Iliah-Malal's army at large", "portal. But with Iliah-Malals army at large"),
("rooted in the land's", "rooted in the lands"),
("say my kin ha' been ungrateful for", "say my kin ha been ungrateful for"),
("some of the Book's least dangerous secrets", "some of the Books least dangerous secrets"),
("speak with the King's voice!", "speak with the Kings voice!"),
("still have the son's ear, though being", "still have the sons ear, though being"),
("Sythan's village.", "Sythans village."),
("tale called the 'Legend of", "tale called the Legend of"),
("than I thought. Iliah-Malal's offensive has begun.", "than I thought. Iliah-Malals offensive has begun."),
("thank you. Now let's", "thank you. Now lets"),
("The blow interrupted Delfador's meditation. He began", "The blow interrupted Delfadors meditation. He began"),
("The book's curse is already", "The books curse is already"),
("the road...especially where you'll be", "the road... especially where youll be"),
("think so. But...Asheviere, Garard's queen and Eldred's mother,", "think so. But... Asheviere, Garards queen and Eldreds mother,"),
("to the north ye'd need to have ta'en, along the", "to the north yed need to have taen, along the"),
("to the northeast; I'll lead you there.", "to the northeast; Ill lead you there."),
("to visit her family's demesne and her", "to visit her familys demesne and her"),
("unseen they reached Asheviere's family demesne.", "unseen they reached Ashevieres family demesne."),
("wanna cross it, you'll", "wanna cross it, youll"),
("We ha' seen those undead", "We ha seen those undead"),
("Wesmere'. Prolonged in life", "Wesmere. Prolonged in life"),
("with orcs now. We'll take", "with orcs now. Well take"),
("wrath' indeed... I'll show him wrath!", "wrath” indeed... Ill show him wrath!"),
("you, but I don't feel very fated. In fact, I've", "you, but I dont feel very fated. In fact, Ive"),
),
"wesnoth-ei" : (
("author of Wesnoth's troubles.", "author of Wesnoths troubles."),
("Aye, we'll help ye, for", "Aye, well help ye, for"),
("by the orcs fa' sure!", "by the orcs fa sure!"),
("c'n stop runnin'...", "cn stop runnin..."),
("can get to Weld'n an' all so I", "can get to Weldn an all so I"),
("can't get across. It'll help you to", "cant get across. Itll help you to"),
("caves for centuries. We'll no' be scattered now", "caves for centuries. Well no be scattered now"),
("Commander of the King's Horse. And take", "Commander of the Kings Horse. And take"),
("Deal. I c'n blow'er up once I", "Deal. I cn blower up once I"),
("go north-east. I'll go north-west.", "go north-east. Ill go north-west."),
("Gweddry's men retreated swiftly", "Gweddrys men retreated swiftly"),
("Gweddry, I don't think you should", "Gweddry, I dont think you should"),
("have crossed. Now let's see if we", "have crossed. Now lets see if we"),
("He says: 'Well done; you have", "He says: “Well done; you have"),
("He will reach Mal-Ravanal's capital, and I", "He will reach Mal-Ravanals capital, and I"),
("his terms? I won't accept anything obviously", "his terms? I wont accept anything obviously"),
("I'll be followin' yah from now", "Ill be followin yah from now"),
("I'm an enginea'. I s'pect you'll have a need", "Im an enginea. I spect youll have a need"),
("It doesn't matter anyway. The", "It doesnt matter anyway. The"),
("It doesn't matter. They are", "It doesnt matter. They are"),
("look impassable. I don't think we will", "look impassable. I dont think we will"),
("lord's hordes at dawn", "lords hordes at dawn"),
("may know the undead's weakness.", "may know the undeads weakness."),
("My clan ha' lived in these", "My clan ha lived in these"),
("my eq'pment is. But ev'ryone not ov'r theah on that", "my eqpment is. But evryone not ovr theah on that"),
("no refuge for Gweddry's weary men, and", "no refuge for Gweddrys weary men, and"),
("No, I don't think so. I", "No, I dont think so. I"),
("not defeat my Lord's minions, it was", "not defeat my Lords minions, it was"),
("point north of Glyn's Forest. If we", "point north of Glyns Forest. If we"),
("seems, well merited. Mal-Ravanal's", "seems, well merited. Mal-Ravanals"),
("serve in my Master's undead hordes!", "serve in my Masters undead hordes!"),
("services. I bet you're", "services. I bet youre"),
("several weeks, and Gweddry's men started to", "several weeks, and Gweddrys men started to"),
("The Bitter Swamp's ill reputation is,", "The Bitter Swamps ill reputation is,"),
("the fate of Gweddry's band, but all", "the fate of Gweddrys band, but all"),
("the men of Gweddry's troop that they", "the men of Gweddrys troop that they"),
("These people won't listen to reason,", "These people wont listen to reason,"),
("they can't escape until our", "they cant escape until our"),
("this river. Now let's go!", "this river. Now lets go!"),
("those orcs are chasin' you, and if", "those orcs are chasin you, and if"),
("to keep the Crown's", "to keep the Crowns"),
("to know what you're talking about... but,", "to know what youre talking about... but,"),
("to that signpost ov'r dere. Thats where", "to that signpost ovr dere. Thats where"),
("undead. But we can't help you until", "undead. But we cant help you until"),
("undead. Taint safe 'round 'ere!", "undead. Taint safe round ere!"),
("up that bridge ov'r theah.", "up that bridge ovr theah."),
("Very well, we'll protect you from", "Very well, well protect you from"),
("We didn't capture enough of", "We didnt capture enough of"),
("We're in the land", "Were in the land"),
("well once the King's forces arrived. There", "well once the Kings forces arrived. There"),
("Well, we didn't have to blow", "Well, we didnt have to blow"),
("when it blows w'll", "when it blows wll"),
("Why don't we see if", "Why dont we see if"),
("won't be able to", "wont be able to"),
("work yet complete. Mal-Ravanal's main host has", "work yet complete. Mal-Ravanals main host has"),
("year of Konrad II's reign, and there", "year of Konrad IIs reign, and there"),
("your name.'", "your name.”"),
),
"wesnoth-nr" : (
("...Don't tax yourself... princess....", "... Dont tax yourself... princess..."),
("Abhai: I don't think death will", "Abhai: I dont think death will"),
("Abhai: You haven't? It was an", "Abhai: You havent? It was an"),
("about Tallin's will grew stronger.", "about Tallins will grew stronger."),
("accomplished, men! Now let's crush the rest", "accomplished, men! Now lets crush the rest"),
("again took up Rakshas's trail. They soon", "again took up Rakshass trail. They soon"),
("again, Morvin? Well, I'll", "again, Morvin? Well, Ill"),
("all of a necromancer's creations, I must", "all of a necromancers creations, I must"),
("all, most people can't hold the Rod", "all, most people cant hold the Rod"),
("and for all. Let's give", "and for all. Lets give"),
("and he moved awa' up here to", "and he moved awa up here to"),
("And if you don't keep your mouth", "And if you dont keep your mouth"),
("and looked to Hidel's ward as their", "and looked to Hidels ward as their"),
("and return here, we'll ha' made a", "and return here, well ha made a"),
("and started down Rakshas's", "and started down Rakshass"),
("and the mage Ro'Arthian and his brother,", "and the mage RoArthian and his brother,"),
("apprehension. 'I have faith in you, my boy,' Abhai said, 'Take this, and put", "apprehension. “I have faith in you, my boy,” Abhai said, “Take this, and put"),
("are bonny fighters wi' a sword as", "are bonny fighters wi a sword as"),
("are heavy-footed creatures; Rakshas's trail was readily", "are heavy-footed creatures; Rakshass trail was readily"),
("aren't ready to give", "arent ready to give"),
("as other parts o' Knalga.", "as other parts o Knalga."),
("At Hidel's call Tallin approached", "At Hidels call Tallin approached"),
("attacking her won't make the situation", "attacking her wont make the situation"),
("away, Tallin's former friends had attacked Malifor's study with overwhelming", "away, Tallins former friends had attacked Malifors study with overwhelming"),
("Awww, aren't they the most", "Awww, arent they the most"),
("Aye! We'll have to lay", "Aye! Well have to lay"),
("Aye, it's true we do", "Aye, its true we do"),
("Aye. And we dinna' just want to", "Aye. And we dinna just want to"),
("Aye. Word ha' spread, and dwarves", "Aye. Word ha spread, and dwarves"),
("back to back, don't let them penetrate", "back to back, dont let them penetrate"),
("bargain. If you don't agree to", "bargain. If you dont agree to"),
("become legends! 'The two terrible mages,", "become legends! “The two terrible mages,"),
("body and I don't know how to", "body and I dont know how to"),
("boys, that weakling Al'Tar can't even keep his", "boys, that weakling AlTar cant even keep his"),
("brain has rotted awa' entire. Think on", "brain has rotted awa entire. Think on"),
("buddy, and now it's", "buddy, and now its"),
("But I'm sore vexed. We", "But Im sore vexed. We"),
("but if you don't hurry up and", "but if you dont hurry up and"),
("by himself. We don't know", "by himself. We dont know"),
("can hear me, Ro'Arthian. Please, the fate", "can hear me, RoArthian. Please, the fate"),
("certainty, those skeletons won't like us getting", "certainty, those skeletons wont like us getting"),
("Come on boys, let's chop them to", "Come on boys, lets chop them to"),
("Come on men, let's go", "Come on men, lets go"),
("Come on Thera, let's destroy that old", "Come on Thera, lets destroy that old"),
("Come on, Ro'Sothian, we really don't have to be", "Come on, RoSothian, we really dont have to be"),
("Come what may, we'll handle them. Come on now, let's find those", "Come what may, well handle them. Come on now, lets find those"),
("couldna' take it and", "couldna take it and"),
("Dang it! They're gone, and the", "Dang it! Theyre gone, and the"),
("desecrated my life's work, now I", "desecrated my lifes work, now I"),
("destroy its arms we'll be relatively safe", "destroy its arms well be relatively safe"),
("DISGUSTING LITTLE VERMIN! DON'T YOU KNOW HOW", "DISGUSTING LITTLE VERMIN! DONT YOU KNOW HOW"),
("do business here: 'I do this for", "do business here: “I do this for"),
("do I want? I'll tell you what", "do I want? Ill tell you what"),
("do this for me.' No, we seek", "do this for me.” No, we seek"),
("do to survive. We'll get more food", "do to survive. Well get more food"),
("Don't bother heading down", "Dont bother heading down"),
("don't get it treated", "dont get it treated"),
("Don't give in to", "Dont give in to"),
("don't say anything to", "dont say anything to"),
("Don't worry, Thera, you", "Dont worry, Thera, you"),
("Don't! Please, my friend,", "Dont! Please, my friend,"),
("down here, but ye'll not likely see", "down here, but yell not likely see"),
("dragon. If you don't hand it over", "dragon. If you dont hand it over"),
("enough. They taste unco' foul but that's how", "enough. They taste unco foul but thats how"),
("Even if we don't catch them then", "Even if we dont catch them then"),
("Even if we don't catch them, we", "Even if we dont catch them, we"),
("everywhere, we simply didna'", "everywhere, we simply didna"),
("extremely rich nation. Malifor's treasury is hardly", "extremely rich nation. Malifors treasury is hardly"),
("fact I think it's best that we", "fact I think its best that we"),
("flank, and now it's your", "flank, and now its your"),
("Fools! Don't think it's so easy to", "Fools! Dont think its so easy to"),
("from Malifor's treasury and we", "from Malifors treasury and we"),
("from them. Now they're killing each other.", "from them. Now theyre killing each other."),
("Gee, what's with all these", "Gee, whats with all these"),
("Geez, what a fool's quest. Everyone in", "Geez, what a fools quest. Everyone in"),
("go to his Master's aid. When he", "go to his Masters aid. When he"),
("gold cannot. Now let's run down Rakshas", "gold cannot. Now lets run down Rakshas"),
("got from my guards' boastings and foul", "got from my guards boastings and foul"),
("Great Chamber eh? Doesn't look like there", "Great Chamber eh? Doesnt look like there"),
("Great. Now let's get back to", "Great. Now lets get back to"),
("Grrr, Ha'Tuil has never failed", "Grrr, HaTuil has never failed"),
("ha' been as much", "ha been as much"),
("ha' the manpower.", "ha the manpower."),
("Hamel's held open their", "Hamels held open their"),
("have died.... a warrior's death....", "have died... a warriors death..."),
("havena' forgotten the old", "havena forgotten the old"),
("He didn't keep us alive", "He didnt keep us alive"),
("he disappeared again. Let's find him and", "he disappeared again. Lets find him and"),
("help, I guess we'll nae have any", "help, I guess well nae have any"),
("her was a fool's quest to begin", "her was a fools quest to begin"),
("Hey look, it's an ancient door.", "Hey look, its an ancient door."),
("Hey, that's not right. The good guys aren't supposed to die. Oh well, I'll", "Hey, thats not right. The good guys arent supposed to die. Oh well, Ill"),
("Hidel's death was a", "Hidels death was a"),
("Hiera'Shirsha?", "HieraShirsha?"),
("his prisoners? He didn't seem to be", "his prisoners? He didnt seem to be"),
("his prisoners? He doesn't really", "his prisoners? He doesnt really"),
("Hmmm, you aren't as bad as", "Hmmm, you arent as bad as"),
("Hmmm...I think you've the right of", "Hmmm... I think youve the right of"),
("Hold! We aren't friends of Malifor", "Hold! We arent friends of Malifor"),
("host. But we can't", "host. But we cant"),
("I am sorry, Ro'Arthian. I should have", "I am sorry, RoArthian. I should have"),
("I didn't know that you", "I didnt know that you"),
("I don't know what it", "I dont know what it"),
("I don't think so, my", "I dont think so, my"),
("I don't think so, you", "I dont think so, you"),
("I don't think there is", "I dont think there is"),
("I know you're impressive wi' a pitchfork, and", "I know youre impressive wi a pitchfork, and"),
("I sense the Rod's power coming from", "I sense the Rods power coming from"),
("if the elves dinna' fight and pay", "if the elves dinna fight and pay"),
("If you don't mind me asking,", "If you dont mind me asking,"),
("if you know what's good for you.", "if you know whats good for you."),
("in disrepair. It doesn't look like", "in disrepair. It doesnt look like"),
("in line. I don't know why you", "in line. I dont know why you"),
("in mission, but Al'tar dead by peasant", "in mission, but Altar dead by peasant"),
("in the meantime, I'm leaving!", "in the meantime, Im leaving!"),
("in the way. Let's give them a", "in the way. Lets give them a"),
("In time, Knalga's caverns were refurbished,", "In time, Knalgas caverns were refurbished,"),
("In truth, we ha' no idea. They", "In truth, we ha no idea. They"),
("is a risk we'll have to take.", "is a risk well have to take."),
("is great...but we dinna' ha' much of weapons", "is great... but we dinna ha much of weapons"),
("is so, then it's time to end", "is so, then its time to end"),
("is up, men, let's hurry up and", "is up, men, lets hurry up and"),
("it shall be. You've my leave and", "it shall be. Youve my leave and"),
("it to 'em!", "it to em!"),
("It's an escape tunnel. The hole wasn't big enough for", "Its an escape tunnel. The hole wasnt big enough for"),
("It's too late, I", "Its too late, I"),
("It's very easy, Tallin,", "Its very easy, Tallin,"),
("it, Father! We don't help no-one. Not", "it, Father! We dont help no-one. Not"),
("Knalga. And d'ye ken those two", "Knalga. And dye ken those two"),
("lay amidst the Dragon's hoarded", "lay amidst the Dragons hoarded"),
("let's get back at", "lets get back at"),
("like someone really doesn't want us going", "like someone really doesnt want us going"),
("little vermin and I'll be right over.", "little vermin and Ill be right over."),
("looks of things, they've busked themselves for", "looks of things, theyve busked themselves for"),
("Lord Hamel, some o' us would like", "Lord Hamel, some o us would like"),
("lost and don't come back, unless you're tired of life!", "lost and dont come back, unless youre tired of life!"),
("made easier by Malifor's ending.", "made easier by Malifors ending."),
("Malifor's evil summons, but", "Malifors evil summons, but"),
("me, lich, and you'll find yourself dangling", "me, lich, and youll find yourself dangling"),
("money they don't have.", "money they dont have."),
("more then two days' march from here.", "more then two days march from here."),
("must do both. I'm thinking it might", "must do both. Im thinking it might"),
("my friend. You won't believe what a", "my friend. You wont believe what a"),
("nae! Ye'll need yon gold", "nae! Yell need yon gold"),
("Never! If you ha' been sent by", "Never! If you ha been sent by"),
("none of any dwarf's or humans business,", "none of any dwarfs or humans business,"),
("not so sure it's that simple Tallin.", "not so sure its that simple Tallin."),
("not suppress the people's joy in their", "not suppress the peoples joy in their"),
("now, anyway. Now let's get to the", "now, anyway. Now lets get to the"),
("Now, let's get back to", "Now, lets get back to"),
("Of course we won't do that. As", "Of course we wont do that. As"),
("of Darkness, I haven't seen you in", "of Darkness, I havent seen you in"),
("of Light! Elenia! It's you! It has", "of Light! Elenia! Its you! It has"),
("of orcs, belike they'd kill the princess,", "of orcs, belike theyd kill the princess,"),
("off many of it's", "off many of its"),
("Oh, dinna' mind him, that'd be Camerin. He", "Oh, dinna mind him, thatd be Camerin. He"),
("On Father Morvin's advice, the Council", "On Father Morvins advice, the Council"),
("only make the Master's punishment for you", "only make the Masters punishment for you"),
("or at least, what's left o'", "or at least, whats left o"),
("orcish stronghold. We can't let that happen!", "orcish stronghold. We cant let that happen!"),
("orcs then, princess? Don't you wish to", "orcs then, princess? Dont you wish to"),
("our gold. Now let's run", "our gold. Now lets run"),
("our side. Now let's plan our way", "our side. Now lets plan our way"),
("ourselves, Tallin. We ha' failed the trust", "ourselves, Tallin. We ha failed the trust"),
("ourselves. We're but a remnant", "ourselves. Were but a remnant"),
("out of his mother's arms, when Konrad", "out of his mothers arms, when Konrad"),
("passed, but eventually Malifor's", "passed, but eventually Malifors"),
("ploy. Nae sooner ha' we thinned the", "ploy. Nae sooner ha we thinned the"),
("powerful magician called Ro'Arthian and his brother Ro'Sothian.", "powerful magician called RoArthian and his brother RoSothian."),
("Price?!? Don't insult us, Tallin.", "Price?! Dont insult us, Tallin."),
("problem lad, we ha' been stranded in", "problem lad, we ha been stranded in"),
("quickly cut off it's arms we may", "quickly cut off its arms we may"),
("regenerate over time; it's doubtful we can", "regenerate over time; its doubtful we can"),
("Remember, Ro'Arthian, we need willing", "Remember, RoArthian, we need willing"),
("Ro'Arthian and Ro'Sothian, you two have", "RoArthian and RoSothian, you two have"),
("Ro'Arthian's brother, Ro'Sothian went south with", "RoArthians brother, RoSothian went south with"),
("Ro'Arthian, I am not", "RoArthian, I am not"),
("Ro'Arthian, listen to me. We don't want to fight", "RoArthian, listen to me. We dont want to fight"),
("Ro'Sothian! How are you", "RoSothian! How are you"),
("said that I wasn't going to repay", "said that I wasnt going to repay"),
("saying something about 'The Master'.", "saying something about The Master."),
("seems the rescue ha' any chance of", "seems the rescue ha any chance of"),
("Seriously Hamel, I don't know if were", "Seriously Hamel, I dont know if were"),
("shall be, Tallin, I'll hold the caves", "shall be, Tallin, Ill hold the caves"),
("simply ha' not the manpower.", "simply ha not the manpower."),
("small amount of Al'Tar's gold. He fled", "small amount of AlTars gold. He fled"),
("snot! If it wasn't for you we wouldn't have lost our", "snot! If it wasnt for you we wouldnt have lost our"),
("Sobbing against Tallin's chest, Eryssa told", "Sobbing against Tallins chest, Eryssa told"),
("Some monster that Malifor's minions greatly fear", "Some monster that Malifors minions greatly fear"),
("some room and you'll", "some room and youll"),
("south and we haven't found Malifor yet...", "south and we havent found Malifor yet..."),
("swords. We couldna' claim to be expert weaponsmiths wi'out kenning how to", "swords. We couldna claim to be expert weaponsmiths wiout kenning how to"),
("Tallin's proposal, the endless", "Tallins proposal, the endless"),
("Tallin. He's lucky, he is", "Tallin. Hes lucky, he is"),
("thanks, Stalrag and Ro'Arthian. However, I have", "thanks, Stalrag and RoArthian. However, I have"),
("that Hidel's elves had been", "that Hidels elves had been"),
("that way... We don't like it, but if that's what", "that way... We dont like it, but if thats what"),
("the air they canna' see over them.", "the air they canna see over them."),
("the dead. I don't", "the dead. I dont"),
("the door to Malifor's study. Are we", "the door to Malifors study. Are we"),
("the elf! We can't let that happen!", "the elf! We cant let that happen!"),
("the first place. Dinna' ye speak of", "the first place. Dinna ye speak of"),
("the orcish hordes!'", "the orcish hordes!”"),
("The orcs still haven't given up their", "The orcs still havent given up their"),
("the orcs. It's time to give", "the orcs. Its time to give"),
("the rest here. We'll store it in", "the rest here. Well store it in"),
("the time you've laid him to", "the time youve laid him to"),
("the tunnels into dawn's early light.", "the tunnels into dawns early light."),
("The war council's thoughts quickly turned", "The war councils thoughts quickly turned"),
("them if you can't.", "them if you cant."),
("them: 'Hold fast your hope,", "them: “Hold fast your hope,"),
("Then one day Al'Tar, the current 'master' of Dwarven Doors,", "Then one day AlTar, the current master of Dwarven Doors,"),
("then that Princess Li'sar was in hot", "then that Princess Lisar was in hot"),
("then we thought, let's go", "then we thought, lets go"),
("then ye could ha' done in", "then ye could ha done in"),
("Thera, don't you think that this isn't really a good", "Thera, dont you think that this isnt really a good"),
("there are, we dinna' yet ken of", "there are, we dinna yet ken of"),
("there skills beyond swingin' a weapon", "there skills beyond swingin a weapon"),
("these orcs! IN HIDEL'S", "these orcs! IN HIDELS"),
("these waters we can't destroy the creature.", "these waters we cant destroy the creature."),
("Think of it, Ro'Arthian, it is a", "Think of it, RoArthian, it is a"),
("This isn't looking good. Not", "This isnt looking good. Not"),
("this stuff. But that's probably why they", "this stuff. But thats probably why they"),
("tight. I wonder what's behind it.", "tight. I wonder whats behind it."),
("to cut off it's arms fast enough.", "to cut off its arms fast enough."),
("to help us. What's more, if Stalrag", "to help us. Whats more, if Stalrag"),
("to him. Nope, we'll never hurt you.", "to him. Nope, well never hurt you."),
("Together we'll rip them to", "Together well rip them to"),
("training of you hasna' been for naught.", "training of you hasna been for naught."),
("trolls. But it ha' been", "trolls. But it ha been"),
("Tusk's troops, but we", "Tusks troops, but we"),
("uncoordinated and erratic, wi' the orcs as", "uncoordinated and erratic, wi the orcs as"),
("underwater creature. They'll try to pummel", "underwater creature. Theyll try to pummel"),
("up positions outside Malifor's study door.", "up positions outside Malifors study door."),
("up, father, he isn't answering. I am", "up, father, he isnt answering. I am"),
("us you WON'T come back.", "us you <i>wont</i> come back."), # New <i> tags
("wants to take 'em and fight with", "wants to take em and fight with"),
("was a piece o' good work, lad,", "was a piece o good work, lad,"),
("was decided that Tallin's men should sally", "was decided that Tallins men should sally"),
("was led by Ro'Arthian and was composed", "was led by RoArthian and was composed"),
("water. And there doesn't seem to be", "water. And there doesnt seem to be"),
("we are to ha' anything", "we are to ha anything"),
("we ha' survived all these", "we ha survived all these"),
("we rose against Al'Tar and defeated his", "we rose against AlTar and defeated his"),
("we would gain o' great tactical", "we would gain o great tactical"),
("We'll have to kill", "Well have to kill"),
("Well, that certainly isn't the state of", "Well, that certainly isnt the state of"),
("well. Why, it can't have", "well. Why, it cant have"),
("What's more, some of", "Whats more, some of"),
("What's with this whole 'Master' business? It's starting to make", "Whats with this whole Master business? Its starting to make"),
("When Tallin's party had shaken", "When Tallins party had shaken"),
("where we couldna' reach while the", "where we couldna reach while the"),
("while you and Stalrag's", "while you and Stalrags"),
("Whoa! Maybe he isn't so friendly after", "Whoa! Maybe he isnt so friendly after"),
("with Hidel's head in her", "with Hidels head in her"),
("With Malifor's death, the magical controls over Tallin's will vanished.", "With Malifors death, the magical controls over Tallins will vanished."),
("with the orcs I'll send you a", "with the orcs Ill send you a"),
("with you. I wouldn't even think", "with you. I wouldnt even think"),
("wood-knot, I'd lay odds on", "wood-knot, Id lay odds on"),
("would emerge and we'd find oursel' back in the", "would emerge and wed find oursel back in the"),
("would we could ha' done more.", "would we could ha done more."),
("Wouldn't miss it. Maybe", "Wouldnt miss it. Maybe"),
("wouldna' ally themselves with the likes o' us.", "wouldna ally themselves with the likes o us."),
("Wow, that's a long way", "Wow, thats a long way"),
("wrong with pitchforks, I'll give these orcish", "wrong with pitchforks, Ill give these orcish"),
("ye'll need and leave", "yell need and leave"),
("Ye'll need to travel", "Yell need to travel"),
("years, however, I ha' noticed that there", "years, however, I ha noticed that there"),
("you shall be free!' Then he was", "you shall be free!” Then he was"),
("your kind that won't leave US in", "your kind that wont leave <i>us</i> in"),
),
"wesnoth-sof" : (
("'Ruby of Fire', and told us", "Ruby of Fire, and told us"),
("a conclusion. He can't make the sceptre", "a conclusion. He cant make the sceptre"),
("a deal, but I'm not sure. I'll have to ask", "a deal, but Im not sure. Ill have to ask"),
("Aha! I've spent years looking", "Aha! Ive spent years looking"),
("And I'll be doing the", "And Ill be doing the"),
("And if we don't like what you", "And if we dont like what you"),
("apparently. I think we'll have to", "apparently. I think well have to"),
("Argh! I'm a retired warrior...", "Argh! Im a retired warrior..."),
("artifact, not a child's playtoy!", "artifact, not a childs playtoy!"),
("away, eh? I dinna' like that, but it seems it's our only", "away, eh? I dinna like that, but it seems its our only"),
("Baglur's. Krawg's done more for", "Baglurs. Krawgs done more for"),
("can tell I don't need the money", "can tell I dont need the money"),
("can't run as fast", "cant run as fast"),
("Can't you tell a", "Cant you tell a"),
("captured! If I can't", "captured! If I cant"),
("castle here... I don't much like fighting.", "castle here... I dont much like fighting."),
("caves to learn Rugnur's fate.", "caves to learn Rugnurs fate."),
("caves, but I can't! What am I", "caves, but I cant! What am I"),
("caves, so they can't escape when it", "caves, so they cant escape when it"),
("city and report. I'm", "city and report. Im"),
("constitutes treason, wouldn't you?", "constitutes treason, wouldnt you?"),
("craftsmen, and he wouldn't have gone to", "craftsmen, and he wouldnt have gone to"),
("Don't be a fool! We can't take the elves,", "Dont be a fool! We cant take the elves,"),
("don't stop me if", "dont stop me if"),
("down, or we'll force you.", "down, or well force you."),
("Durstorn's rash action led", "Durstorns rash action led"),
("Durstorn. And I wouldn't give the Sceptre", "Durstorn. And I wouldnt give the Sceptre"),
("dwarves! Now, if you'll excuse me, I think I'll be", "dwarves! Now, if youll excuse me, I think Ill be"),
("dwarves, but now I've found you!", "dwarves, but now Ive found you!"),
("eastern mines. Me, I'll stay here. No", "eastern mines. Me, Ill stay here. No"),
("enough! Or, if they're not 'good enough'", "enough! Or, if theyre not good enough"),
("even if you hadn't, you've seen enough combat.", "even if you hadnt, youve seen enough combat."),
("Even the elves won't challenge us here.", "Even the elves wont challenge us here."),
("evil things. We can't let it", "evil things. We cant let it"),
("for those, though. I'll also need to", "for those, though. Ill also need to"),
("for us, for they'll go as fast", "for us, for theyll go as fast"),
("Getting this cut isn't worth that much; what with Rugnur's mistake", "Getting this cut isnt worth that much; what with Rugnurs mistake"),
("gold he needs. Shouldn't we leave now?", "gold he needs. Shouldnt we leave now?"),
("Good idea, Baglur! He'll need some help,", "Good idea, Baglur! Hell need some help,"),
("Good. Now, let's get out of", "Good. Now, lets get out of"),
("Ha! There hasn't been a border", "Ha! There hasnt been a border"),
("He doesn't need to come here, I'll take the jewel", "He doesnt need to come here, Ill take the jewel"),
("He doesn't want to talk", "He doesnt want to talk"),
("his sceptre intact he'd best send troops", "his sceptre intact hed best send troops"),
("I don't know if we", "I dont know if we"),
("I don't know what is", "I dont know what is"),
("I think you'd better let me", "I think youd better let me"),
("I'd rather face one", "Id rather face one"),
("I'll see what I", "Ill see what I"),
("I'm a dragoon, with Haldric II's personal bodyguard. I", "Im a dragoon, with Haldric IIs personal bodyguard. I"),
("I'm Lord Durstorn, king", "Im Lord Durstorn, king"),
("I'm not going to", "Im not going to"),
("If he fails, it's on his head.", "If he fails, its on his head."),
("If that's what you're thinking, you're not fit to", "If thats what youre thinking, youre not fit to"),
("if you did. It's not yours to", "if you did. Its not yours to"),
("if you won't give the Sceptre", "if you wont give the Sceptre"),
("in advance, and he'll give us five", "in advance, and hell give us five"),
("in any case, I've been with you", "in any case, Ive been with you"),
("it looks like I'll ha' to come out", "it looks like Ill ha to come out"),
("it seems... it can't be", "it seems... it cant be"),
("it's not like we", "its not like we"),
("it, but they didn't offer", "it, but they didnt offer"),
("it, eh? Well I'm not going", "it, eh? Well Im not going"),
("its mine, and Rugnur's, and", "its mine, and Rugnurs, and"),
("killed, but it isn't", "killed, but it isnt"),
("Look, I've found something here.", "Look, Ive found something here."),
("Made by a runesmith's hand.", "Made by a runesmiths hand."),
("me, but I won't die with you!", "me, but I wont die with you!"),
("miners — they don't work for free.", "miners — they dont work for free."),
("occupied, the gates wi' close. Then the", "occupied, the gates wi close. Then the"),
("Och, well that's the difficulty. It's a magic gate.", "Och, well thats the difficulty. Its a magic gate."),
("of the trolls' territory.", "of the trolls territory."),
("offer. If you won't", "offer. If you wont"),
("out, we'll make our way", "out, well make our way"),
("payment, but it can't be helped. Our", "payment, but it cant be helped. Our"),
("period of time. We'll only be", "period of time. Well only be"),
("pieces of silver. I'm going with you", "pieces of silver. Im going with you"),
("property secure, the deal's off.", "property secure, the deals off."),
("ruby, then what? They'll probably kill us", "ruby, then what? Theyll probably kill us"),
("runes infuse the runesmith's blows with power", "runes infuse the runesmiths blows with power"),
("so the lava doesn't kill us.", "so the lava doesnt kill us."),
("something or I can't make the sceptre!", "something or I cant make the sceptre!"),
("still don't trust you.", "still dont trust you."),
("sure... well, it doesn't matter why.", "sure... well, it doesnt matter why."),
("take their property. We'll have to buy,", "take their property. Well have to buy,"),
("than a thousand we'll", "than a thousand well"),
("than life! So, I'm ordering", "than life! So, Im ordering"),
("that was not Rugnur's.", "that was not Rugnurs."),
("the Arkan-thoria. Trolls ha' overrun them, but", "the Arkan-thoria. Trolls ha overrun them, but"),
("the elves will no' be able to", "the elves will no be able to"),
("the far northlands. They're", "the far northlands. Theyre"),
("The land of Wesnoth's banner bold", "The land of Wesnoths banner bold"),
("the last chance we'll get to do", "the last chance well get to do"),
("the sceptre. Why don't we send him", "the sceptre. Why dont we send him"),
("the stone's power, but contain", "the stones power, but contain"),
("the surface world. He's late!", "the surface world. Hes late!"),
("the Wesnothian army; I'd prefer to", "the Wesnothian army; Id prefer to"),
("then go north. He's", "then go north. Hes"),
("Then maybe we'll walk out of", "Then maybe well walk out of"),
("Then no deal. I'll gather my things", "Then no deal. Ill gather my things"),
("these dwarves too? They're attacking my clan", "these dwarves too? Theyre attacking my clan"),
("This plan, it isn't worse than staying", "This plan, it isnt worse than staying"),
("those Surghan mercenaries. I'll bet those elves", "those Surghan mercenaries. Ill bet those elves"),
("though, and we can't stay here forever.", "though, and we cant stay here forever."),
("time! Haldric killed Shek'kahan my", "time! Haldric killed Shekkahan my"),
("to do? I don't see how this", "to do? I dont see how this"),
("to go. Alanin, you've served in the", "to go. Alanin, youve served in the"),
("to his shop. He'll need", "to his shop. Hell need"),
("to plan the sceptre's design... what in", "to plan the sceptres design... what in"),
("to the elves, I'll take it from", "to the elves, Ill take it from"),
("Uh, technically it's Haldrics, and I", "Uh, technically its Haldrics, and I"),
("up, Baglur! You don't know what you're talking about. I've analyzed the", "up, Baglur! You dont know what youre talking about. Ive analyzed the"),
("up, Rugnur! You don't know what you're talking about. I've analyzed the", "up, Rugnur! You dont know what youre talking about. Ive analyzed the"),
("Wait! Rugnur, dinna' they tell you", "Wait! Rugnur, dinna they tell you"),
("Wait, what's going on? The", "Wait, whats going on? The"),
("We can't just go in", "We cant just go in"),
("we wanted to. We're surrounded!", "we wanted to. Were surrounded!"),
("Well, I think we've gotten a good", "Well, I think weve gotten a good"),
("Well, Thursagan, we've reached the eastern", "Well, Thursagan, weve reached the eastern"),
("Well, we've succeeded in stopping", "Well, weve succeeded in stopping"),
("Wesnothian army. Why don't you rejoin it?", "Wesnothian army. Why dont you rejoin it?"),
("were here, we'll be able to", "were here, well be able to"),
("whatever it is can't be worse than", "whatever it is cant be worse than"),
("where I can't help!", "where I cant help!"),
("Where's that fool Rugnur gotten to? It's time for him", "Wheres that fool Rugnur gotten to? Its time for him"),
("with us. He's somewhere up here.", "with us. Hes somewhere up here."),
("would stop the stone's", "would stop the stones"),
("year. Oh well, what's done is done. We'll have to work", "year. Oh well, whats done is done. Well have to work"),
("yes, but I don't know where it", "yes, but I dont know where it"),
("Yes, of course, let's just all be", "Yes, of course, lets just all be"),
("You don't dictate what I", "You dont dictate what I"),
("You don't have authority over", "You dont have authority over"),
("You don't want to make", "You dont want to make"),
("You know yours aren't acceptable, but you", "You know yours arent acceptable, but you"),
("you missed. Now, I'd say that attacking", "you missed. Now, Id say that attacking"),
("You're a king?! Must", "Youre a king?! Must"),
("You're not my ally. You're more against me", "Youre not my ally. Youre more against me"),
("you, else we'll be overrun by", "you, else well be overrun by"),
),
"wesnoth-sotbe" : (
("A human-worm's dog. Animal meat", "A human-worms dog. Animal meat"),
("a shock to Kapou'e to", "a shock to Kapoue to"),
("after Kapou'e's arrival, riders caught", "after Kapoues arrival, riders caught"),
("after this desert, we'll have to cross", "after this desert, well have to cross"),
("Ahhh, it's 'the Prince' from the Silent", "Ahhh, its the Prince from the Silent"),
("all the shamans 'suck up' to him just", "all the shamans suck up to him just"),
("an invitation to Kapou'e to join", "an invitation to Kapoue to join"),
("And if that isn't", "And if that isnt"),
("and if we aren't", "and if we arent"),
("and occupying Dorset, Kapou'e and his men", "and occupying Dorset, Kapoue and his men"),
("and your people won't be safe. You", "and your people wont be safe. You"),
("apprehension and rage, Kapou'e sent his riders", "apprehension and rage, Kapoue sent his riders"),
("as his son, it's up to you", "as his son, its up to you"),
("As Kapou'e expected, by the", "As Kapoue expected, by the"),
("As Kapou'e saw the hardened", "As Kapoue saw the hardened"),
("at Barag Gór, Kapou'e, accompanied by the", "at Barag Gór, Kapoue, accompanied by the"),
("at last. We don't have much time,", "at last. We dont have much time,"),
("automatically assume that Kapou'e tricked and killed", "automatically assume that Kapoue tricked and killed"),
("back in the tribe's homeland.", "back in the tribes homeland."),
("battle, my grunts! We'll show these humans", "battle, my grunts! Well show these humans"),
("been led by Kapou'e this far had", "been led by Kapoue this far had"),
("before. Flar'Tar was sent directly", "before. FlarTar was sent directly"),
("Black-Eye will never 'flee'. But making a 'strategic", "Black-Eye will never flee. But making a strategic"),
("Black-Eye. If you hadn't arrived when you did, I don't", "Black-Eye. If you hadnt arrived when you did, I dont"),
("But, Father, we don't know what they", "But, Father, we dont know what they"),
("came from or you'll find your head", "came from or youll find your head"),
("Catch up when you're done.", "Catch up when youre done."),
("cave or something. We'll be through here", "cave or something. Well be through here"),
("Cease your lies, Lanbec'h. We all know", "Cease your lies, Lanbech. We all know"),
("Chief, Inarix hasn't yet made it", "Chief, Inarix hasnt yet made it"),
("count on the assassins' guild to help", "count on the assassins guild to help"),
("crossed the mountains. We're close to the", "crossed the mountains. Were close to the"),
("Don't be afraid. If", "Dont be afraid. If"),
("Don't be so cowardly.", "Dont be so cowardly."),
("Earl Lanbec'h, you slimy coward,", "Earl Lanbech, you slimy coward,"),
("Earl's forces and withdrew", "Earls forces and withdrew"),
("eastern Mourned Hills. Kapou'e himself made a", "eastern Mourned Hills. Kapoue himself made a"),
("eighth year of Kapou'e's reign, and then", "eighth year of Kapoues reign, and then"),
("Exasperated, Kapou'e launched an attack", "Exasperated, Kapoue launched an attack"),
("Finally we've done it! Now let's wait out this", "Finally weve done it! Now lets wait out this"),
("For his part Kapou'e", "For his part Kapoue"),
("force if necessary. Al'Brock was sent west,", "force if necessary. AlBrock was sent west,"),
("Forest. Unfortunately, I don't think", "Forest. Unfortunately, I dont think"),
("formally bestowed upon Kapou'e.", "formally bestowed upon Kapoue."),
("Fortunately, they didn't encounter any giant", "Fortunately, they didnt encounter any giant"),
("found his generals, Al'Brock and Flar'Tar had already arrived", "found his generals, AlBrock and FlarTar had already arrived"),
("friends! Those orcs don't imagine they are", "friends! Those orcs dont imagine they are"),
("giant scorpion yet. I'm sure it would", "giant scorpion yet. Im sure it would"),
("Good work, men, we've done it! Now we don't have to worry", "Good work, men, weve done it! Now we dont have to worry"),
("green hills! We've reached the lands", "green hills! Weve reached the lands"),
("had dealings with Kapou'e's", "had dealings with Kapoues"),
("having been settled, Kapou'e began to inquire", "having been settled, Kapoue began to inquire"),
("hell. Your beloved Kapou'e will be", "hell. Your beloved Kapoue will be"),
("Hey Chief, it's pretty odd. Shan Taum doesn't seem to have", "Hey Chief, its pretty odd. Shan Taum doesnt seem to have"),
("his word, once Lanbec'h had been slain,", "his word, once Lanbech had been slain,"),
("Hold, Earl Lanbec'h. I have reached", "Hold, Earl Lanbech. I have reached"),
("how to dissemble. I'll bet he sent", "how to dissemble. Ill bet he sent"),
("Hurry-hurry, friends. Lanbec'h and his kind", "Hurry-hurry, friends. Lanbech and his kind"),
("I am Kapou'e, son of the", "I am Kapoue, son of the"),
("I can't leave these renegades", "I cant leave these renegades"),
("I don't know if you", "I dont know if you"),
("I don't know. Orcs have", "I dont know. Orcs have"),
("I don't really know, one", "I dont really know, one"),
("I hope we won't find one! They", "I hope we wont find one! They"),
("I wouldn't worry about the", "I wouldnt worry about the"),
("I'm hungry and we", "Im hungry and we"),
("I'm not that sure.", "Im not that sure."),
("I've been told the", "Ive been told the"),
("I've never pushed so", "Ive never pushed so"),
("III demanded that Kapou'e give Dorset", "III demanded that Kapoue give Dorset"),
("implications of the shamans' deaths begin to", "implications of the shamans deaths begin to"),
("in this fight. I'm sorry for the", "in this fight. Im sorry for the"),
("is done then Kapou'e will give you", "is done then Kapoue will give you"),
("is going well, let's surround them on", "is going well, lets surround them on"),
("It's been a chilly", "Its been a chilly"),
("It's dawn!", "Its dawn!"),
("it's time to show", "its time to show"),
("its own weakness. Prestim's walls are", "its own weakness. Prestims walls are"),
("Kapou'e agreed to meet", "Kapoue agreed to meet"),
("Kapou'e and his followers", "Kapoue and his followers"),
("Kapou'e and the shamans", "Kapoue and the shamans"),
("Kapou'e had cowed into", "Kapoue had cowed into"),
("Kapou'e refused to do", "Kapoue refused to do"),
("Kapou'e ruled for many", "Kapoue ruled for many"),
("Kapou'e suspected some sort", "Kapoue suspected some sort"),
("Kapou'e vowed that this", "Kapoue vowed that this"),
("Kapou'e, both attacks were", "Kapoue, both attacks were"),
("Kapou'e, but he decided", "Kapoue, but he decided"),
("Kapou'e, if Prestim falls,", "Kapoue, if Prestim falls,"),
("Kapou'e, it is essential", "Kapoue, it is essential"),
("Kapou'e, rumors tell of", "Kapoue, rumors tell of"),
("kid for me. I'll be in my", "kid for me. Ill be in my"),
("killing the shamans, Kapou'e was requested to", "killing the shamans, Kapoue was requested to"),
("Lanbec'h flatly refused to", "Lanbech flatly refused to"),
("Lanbec'h led the army", "Lanbech led the army"),
("Lanbec'h was no doubt", "Lanbech was no doubt"),
("Let's slay them and", "Lets slay them and"),
("made his plans, Kapou'e set out for", "made his plans, Kapoue set out for"),
("messenger brought Rahul Karun's reply.", "messenger brought Rahul Karuns reply."),
("miles away. They won't be", "miles away. They wont be"),
("mountain pass. Kapou'e began to recognize", "mountain pass. Kapoue began to recognize"),
("my good graces. I'll", "my good graces. Ill"),
("My son, you're old enough to", "My son, youre old enough to"),
("no choice ... I've never tasted scorpions", "no choice ... Ive never tasted scorpions"),
("No really, it's true. He is", "No really, its true. He is"),
("of the Black-Eye. I'm Jetto, master of", "of the Black-Eye. Im Jetto, master of"),
("of turmoil, we don't", "of turmoil, we dont"),
("Oh, so it's another group o' stinkin' orcs, eh. Begone,", "Oh, so its another group o stinkin orcs, eh. Begone,"),
("on us! They can't be more then", "on us! They cant be more then"),
("on your victory, Kapou'e. You do honor", "on your victory, Kapoue. You do honor"),
("orcish leader Kapou'e, the son of", "orcish leader Kapoue, the son of"),
("orcish tribes and didn't have any direct", "orcish tribes and didnt have any direct"),
("Orcs, bring me Kapou'e's head. I must", "Orcs, bring me Kapoues head. I must"),
("out of the traitor's skull, Kapou'e gathered his men", "out of the traitors skull, Kapoue gathered his men"),
("over three months, Kapou'e and his exhausted", "over three months, Kapoue and his exhausted"),
("pathetic humans come, we'll deal with", "pathetic humans come, well deal with"),
("pint-sized idiot, we aren't out to kill", "pint-sized idiot, we arent out to kill"),
("sight of Earl Lanbec'h's army.", "sight of Earl Lanbechs army."),
("snows melted and Kapou'e readied his defenses.", "snows melted and Kapoue readied his defenses."),
("So the 'great and mighty' elves are now", "So the great and mighty elves are now"),
("that Grüü, you don't look so good.", "that Grüü, you dont look so good."),
("that, if Earl Lanbec'h continued in", "that, if Earl Lanbech continued in"),
("that? I've not forgotten what", "that? Ive not forgotten what"),
("Thats right! Now let's drive those mincing", "Thats right! Now lets drive those mincing"),
("The hell I don't, Earl Lanbec'h, the Northern Alliance", "The hell I dont, Earl Lanbech, the Northern Alliance"),
("the hour. If you're not ready by", "the hour. If youre not ready by"),
("the human however, Kapou'e", "the human however, Kapoue"),
("the humans, pfff. You're one to talk.", "the humans, pfff. Youre one to talk."),
("the land well. Flar'Tar and Al'Brock, both of you", "the land well. FlarTar and AlBrock, both of you"),
("the leadership of Kapou'e, the", "the leadership of Kapoue, the"),
("the Northern Alliance. Kapou'e declined. Instead he", "the Northern Alliance. Kapoue declined. Instead he"),
("the route that Kapou'e had used to", "the route that Kapoue had used to"),
("the shamans. It won't work", "the shamans. It wont work"),
("the Silent Forest, Kapou'e and his party", "the Silent Forest, Kapoue and his party"),
("then never. Now it's time to kill!", "then never. Now its time to kill!"),
("Then, Kapou'e launched his desperate", "Then, Kapoue launched his desperate"),
("there, old chap. You're deemed too insignificant", "there, old chap. Youre deemed too insignificant"),
("Throughout this nightmare Kapou'e drove himself and", "Throughout this nightmare Kapoue drove himself and"),
("to a minimum, Kapou'e also", "to a minimum, Kapoue also"),
("to counterattack. We can't defeat them by", "to counterattack. We cant defeat them by"),
("to deal with. He's left that pleasure", "to deal with. Hes left that pleasure"),
("to him. Delighted, Kapou'e sent detachments off", "to him. Delighted, Kapoue sent detachments off"),
("to know why you're here,", "to know why youre here,"),
("to our one. We'll just have", "to our one. Well just have"),
("to steal from Kapou'e, Son of the", "to steal from Kapoue, Son of the"),
("told us that that's where the shamans", "told us that thats where the shamans"),
("troll, so you don't know. These lands", "troll, so you dont know. These lands"),
("us if we don't have to worry", "us if we dont have to worry"),
("wasn't joking about making", "wasnt joking about making"),
("we destroy Earl Lanbec'h. Smite, stab, slay!", "we destroy Earl Lanbech. Smite, stab, slay!"),
("we meet any, we'll cut them to", "we meet any, well cut them to"),
("we'll discuss it.", "well discuss it."),
("We'll head for Barag", "Well head for Barag"),
("We've received messengers from", "Weve received messengers from"),
("We've succeeded! We've passed through the", "Weve succeeded! Weve passed through the"),
("well known than Kapou'e.", "well known than Kapoue."),
("Well let's see, first he", "Well lets see, first he"),
("which Earl Lanbec'h had retreated.", "which Earl Lanbech had retreated."),
("Who is that? Kapou'e! What are you", "Who is that? Kapoue! What are you"),
("who weren't killed in combat", "who werent killed in combat"),
("withdrawal' is another matter.", "withdrawal is another matter."),
("won't meet them.", "wont meet them."),
("yield to fear, Kapou'e rallied his warriors", "yield to fear, Kapoue rallied his warriors"),
("You don't understand. Orcs have", "You dont understand. Orcs have"),
("you miserable coward?! I'll make", "you miserable coward?! Ill make"),
("you so why don't you just", "you so why dont you just"),
("You were right, Kapou'e, the", "You were right, Kapoue, the"),
("You're right. I can", "Youre right. I can"),
("young upstart called Kapou'e. He", "young upstart called Kapoue. He"),
),
"wesnoth-tb" : (
("4 scenarios; the 'Hard' version may challenge", "4 scenarios; the Hard version may challenge"),
),
"wesnoth-thot" : (
("'Our' valley, says Master", "Our valley, says Master"),
("<i>is</i> Karrag? We can't have been more", "<i>is</i> Karrag? We cant have been more"),
("A book. Thursagan's book, in a", "A book. Thursagans book, in a"),
("a teleportation device. What's more, the", "a teleportation device. Whats more, the"),
("Aiglondur, what ye ha' found is disturbing,", "Aiglondur, what ye ha found is disturbing,"),
("am Ratheln. If you're traveling down the", "am Ratheln. If youre traveling down the"),
("an instructor, and they're expecting me.", "an instructor, and theyre expecting me."),
("and your precious 'Alliance'.", "and your precious Alliance."),
("Aye. And I'd not leave anyone", "Aye. And Id not leave anyone"),
("Aye. But I've a grim feeling", "Aye. But Ive a grim feeling"),
("Aye. Ye'll recall that in", "Aye. Yell recall that in"),
("Aye? Well, you'd know such things", "Aye? Well, youd know such things"),
("be of the Alliance's making, right enough,", "be of the Alliances making, right enough,"),
("be the Northern Alliance's arm today, and", "be the Northern Alliances arm today, and"),
("cliffs near the valley's end. They were", "cliffs near the valleys end. They were"),
("close to the Alliance's border? That", "close to the Alliances border? That"),
("Don't you wonder what", "Dont you wonder what"),
("east. I believe we've found", "east. I believe weve found"),
("eyes of the dwarves' history, a deep", "eyes of the dwarves history, a deep"),
("Fellow dwarves, hail! We're looking for a", "Fellow dwarves, hail! Were looking for a"),
("hear it with one's own ears? It", "hear it with ones own ears? It"),
("hills, from whom we've heard nothing since", "hills, from whom weve heard nothing since"),
("his victims. The 'dirtgrubbers' he seems to", "his victims. The dirtgrubbers he seems to"),
("I thought Karrag's fight was against", "I thought Karrags fight was against"),
("I was told I'd find Aiglondur of", "I was told Id find Aiglondur of"),
("I'll grant that was", "Ill grant that was"),
("I'm surprised myself that", "Im surprised myself that"),
("In case you haven't noticed, there is", "In case you havent noticed, there is"),
("It's been...it's been years since I've been down here.", "Its been... its been years since Ive been down here."),
("Karrag's will, and his", "Karrags will, and his"),
("Let's take him with", "Lets take him with"),
("Nae sign o' bandits I can", "Nae sign o bandits I can"),
("none such since Thursagan's day. And for", "none such since Thursagans day. And for"),
("now and we wouldn't know it", "now and we wouldnt know it"),
("of the Northern Alliance's lands.", "of the Northern Alliances lands."),
("of the pass. They've an opening", "of the pass. Theyve an opening"),
("of this shack. I've had nothing to", "of this shack. Ive had nothing to"),
("on the dais, they're all", "on the dais, theyre all"),
("presence of Master Perrin's journeymen gives you", "presence of Master Perrins journeymen gives you"),
("see to my troop's care. Food will", "see to my troops care. Food will"),
("something doesn't feel right here.", "something doesnt feel right here."),
("The Alliance's road ended at", "The Alliances road ended at"),
("the Alliance's tribes if we", "the Alliances tribes if we"),
("the Kal Karthans we'll have to", "the Kal Karthans well have to"),
("the rank, and ye've shown the wits", "the rank, and yeve shown the wits"),
("the so called 'dirtgrubbers'. Why would", "the so called dirtgrubbers. Why would"),
("their journey. I'll return with your", "their journey. Ill return with your"),
("to it. It won't do to have", "to it. It wont do to have"),
("to the east; we've had few reports", "to the east; weve had few reports"),
("to the power o' the Hammer —", "to the power o the Hammer —"),
("us that the Hammer's power will smash", "us that the Hammers power will smash"),
("users from Master Perrin's academy in your", "users from Master Perrins academy in your"),
("was in my grandsire's time.", "was in my grandsires time."),
("we will regret Perrin's passing. There is", "we will regret Perrins passing. There is"),
("We're grateful for your assistance. And I'd like to send", "Were grateful for your assistance. And Id like to send"),
("We're snowed in. Our", "Were snowed in. Our"),
("What's this? Large orcish", "Whats this? Large orcish"),
("Ye're young and not", "Yere young and not"),
),
"wesnoth-trow" : (
("'Bring these Wesfolk too?", "“Bring these Wesfolk too?"),
("a century ago. I've never found my", "a century ago. Ive never found my"),
("a fight, sir. They'll stand to the", "a fight, sir. Theyll stand to the"),
("a terrible price. Let's put Commander Aethyr", "a terrible price. Lets put Commander Aethyr"),
("After a week's steady sailing eastward,", "After a weeks steady sailing eastward,"),
("against my people! Shek'kahan,", "against my people! Shekkahan,"),
("Ahh, it's great to be home! I'm not much for", "Ahh, its great to be home! Im not much for"),
("always think they're so clever!", "always think theyre so clever!"),
("amusement. Oh, and what's this?", "amusement. Oh, and whats this?"),
("And now, I'm as much a", "And now, Im as much a"),
("And why east? We've", "And why east? Weve"),
("are, but you can't continue down this", "are, but you cant continue down this"),
("aren't you setting us", "arent you setting us"),
("arrives on the elves' cursed Isle of", "arrives on the elves cursed Isle of"),
("arriving, and we haven't secured the frontier! We're dead!", "arriving, and we havent secured the frontier! Were dead!"),
("at least we don't have to contend", "at least we dont have to contend"),
("at the moment. I'm", "at the moment. Im"),
("axe. Heh, heh. It's all I need", "axe. Heh, heh. Its all I need"),
("Bah! I'm not dying today!", "Bah! Im not dying today!"),
("be rich, and I'm not the first", "be rich, and Im not the first"),
("bearing news. Some 'old friends have decided", "bearing news. Some old friends have decided"),
("being invaded? Okay, we'll sort out our", "being invaded? Okay, well sort out our"),
("Besides, I'd rather enjoy meeting", "Besides, Id rather enjoy meeting"),
("best if you didn't mention our little", "best if you didnt mention our little"),
("big bosses said we'd be in da", "big bosses said wed be in da"),
("blocked. I guess we'll have to", "blocked. I guess well have to"),
("blocked... I guess we'll have", "blocked... I guess well have"),
("building a true 'Kingdom of Wesnoth'. I..I think a", "building a true Kingdom of Wesnoth. I..I think a"),
("but the elves aren't accustomed to war.", "but the elves arent accustomed to war."),
("but who knows what's going on", "but who knows whats going on"),
("can not pass. You've already stumbled on", "can not pass. Youve already stumbled on"),
("careful, these islands aren't safe. We're in Naga territory.", "careful, these islands arent safe. Were in Naga territory."),
("Caror's Book of Fire", "Carors Book of Fire"),
("chatty! Get them, it's a long boat", "chatty! Get them, its a long boat"),
("comes behind us. You'd be slaves, or you'd be dead.", "comes behind us. Youd be slaves, or youd be dead."),
("compromise with the Dwarves.'", "compromise with the Dwarves.”"),
("conflict is over I'll have to suffer", "conflict is over Ill have to suffer"),
("crossing humans! Ahh, I've been with you", "crossing humans! Ahh, Ive been with you"),
("days. I guess that's it for", "days. I guess thats it for"),
("death'?", "death?"),
("Don't forget about some", "Dont forget about some"),
("down here. This isn't an old maid's drain pipe, this", "down here. This isnt an old maids drain pipe, this"),
("earned both. We can't make this work", "earned both. We cant make this work"),
("elves. But that won't", "elves. But that wont"),
("emerged from the Lich-Lord's tomb, with the", "emerged from the Lich-Lords tomb, with the"),
("Enough of this, let's go get some", "Enough of this, lets go get some"),
("far south. I don't know what's going on here. I'll stick", "far south. I dont know whats going on here. Ill stick"),
("far. Who'd have thought, a", "far. Whod have thought, a"),
("fighting. It's not stopping. We're trapped.", "fighting. Its not stopping. Were trapped."),
("Fire so we wouldn't have to bear", "Fire so we wouldnt have to bear"),
("fleet is starving, we'll never pacify this", "fleet is starving, well never pacify this"),
("fleet' has departed for", "fleet has departed for"),
("Fool of a boy's just gonna burn", "Fool of a boys just gonna burn"),
("for a while. It'll make a good", "for a while. Itll make a good"),
("Free! I'm free at last!", "Free! Im free at last!"),
("from me there'll be nothing but", "from me therell be nothing but"),
("go on ahead, I'll catch", "go on ahead, Ill catch"),
("Haldric! I won't do it... I won't help. What is", "Haldric! I wont do it... I wont help. What is"),
("Haldric, it's bad. The elves", "Haldric, its bad. The elves"),
("Haldric, that's devious. I kind", "Haldric, thats devious. I kind"),
("has translated Lich-Lord Caror's Book of Fire", "has translated Lich-Lord Carors Book of Fire"),
("hasn't been done in", "hasnt been done in"),
("have been the Isle's largest city save", "have been the Isles largest city save"),
("have no idea what's going on outside", "have no idea whats going on outside"),
("He's a large part", "Hes a large part"),
("here on purpose. You'd all still be", "here on purpose. Youd all still be"),
("hills, but I can't promise that my", "hills, but I cant promise that my"),
("his merry men! We'll teach you a", "his merry men! Well teach you a"),
("Hmm. 'Wesnoth'. I like it. Yes, 'Wesnoth' would be fine.", "Hmm. Wesnoth. I like it. Yes, Wesnoth would be fine."),
("Hmmmm- my kind were", "Hmmmm— my kind were"),
("homes! Heh...Tan-Vragar, I 'm", "homes! Heh... Tan-Vragar, Im"),
("huts if it wasn't for my people.", "huts if it wasnt for my people."),
("I can smell 'em!", "I can smell em!"),
("I decree a 'Pact of Mutual Aid' between our peoples.", "I decree a Pact of Mutual Aid between our peoples."),
("I don't know who you", "I dont know who you"),
("I go! I won't be denied!", "I go! I wont be denied!"),
("I suspect you won't have to worry", "I suspect you wont have to worry"),
("I were paranoid I'd say", "I were paranoid Id say"),
("I wonder what they'll do when it", "I wonder what theyll do when it"),
("I'd drop the sentiment", "Id drop the sentiment"),
("I'll be dead. I mean we can't just say that", "Ill be dead. I mean we cant just say that"),
("I'll be glad when", "Ill be glad when"),
("I'll begin my translation.", "Ill begin my translation."),
("I'll return to the", "Ill return to the"),
("I'm a dwarf, you", "Im a dwarf, you"),
("I'm back, things went", "Im back, things went"),
("I'm glad that's over! We have", "Im glad thats over! We have"),
("I'm glad that's over. The elves certainly aren't taking it easy on us. It's", "Im glad thats over. The elves certainly arent taking it easy on us. Its"),
("I'm going to face", "Im going to face"),
("I'm Haldric, my father", "Im Haldric, my father"),
("I'm Haldric; my father", "Im Haldric; my father"),
("I'm Prince Haldric, we", "Im Prince Haldric, we"),
("I'm sure they'll eventually evacuate. Just", "Im sure theyll eventually evacuate. Just"),
("if Prince Haldric isn't the one to", "if Prince Haldric isnt the one to"),
("in my pack. Let's work out what", "in my pack. Lets work out what"),
("in other lands. It's a big world", "in other lands. Its a big world"),
("In truth, I don't know if the", "In truth, I dont know if the"),
("is no way I'm letting you go", "is no way Im letting you go"),
("Is that snow?... We're doomed!", "Is that snow?... Were doomed!"),
("is the Elder Prince's island all right.", "is the Elder Princes island all right."),
("is the last I'll see of my", "is the last Ill see of my"),
("It isn't long before Haldric", "It isnt long before Haldric"),
("it looks like they've rearmed!", "it looks like theyve rearmed!"),
("it to Southbay. I'll", "it to Southbay. Ill"),
("It wasn't long after he", "It wasnt long after he"),
("It would be...highly irregular.' Bah! I'll show", "It would be... highly irregular.” Bah! Ill show"),
("it — but that's not the", "it — but thats not the"),
("It's better than the swamp. I'm under 5 feet", "Its better than the swamp. Im under 5 feet"),
("It's Commander Aethyr, of", "Its Commander Aethyr, of"),
("It's funny that the lich-lord didn't have this on", "Its funny that the lich-lord didnt have this on"),
("It's not very Heroic", "Its not very Heroic"),
("It's the Haldric! Jevyan,", "Its the Haldric! Jevyan,"),
("Jessene, if you won't accept crown or", "Jessene, if you wont accept crown or"),
("Jevyan himself. We can't have an illiterate", "Jevyan himself. We cant have an illiterate"),
("Jevyan- I spit upon", "Jevyan— I spit upon"),
("just outside of Southbay-", "just outside of Southbay—"),
("kingdom be called 'Wesnoth',", "kingdom be called Wesnoth,"),
("leads to the Isle's second largest city,", "leads to the Isles second largest city,"),
("left for me. I'll stay. By the", "left for me. Ill stay. By the"),
("lich is free! Let's bash him and", "lich is free! Lets bash him and"),
("Lord Aryad said, 'If", "Lord Aryad said, “If"),
("Lords will follow. It's because of that", "Lords will follow. Its because of that"),
("love, my family, I'll be there", "love, my family, Ill be there"),
("mangled corpse. Then, you're going to destroy", "mangled corpse. Then, youre going to destroy"),
("matters little now. What's this? You bring", "matters little now. Whats this? You bring"),
("maybe I won't even come to", "maybe I wont even come to"),
("me. I'm no wizard. All", "me. Im no wizard. All"),
("meet again, I won't be so", "meet again, I wont be so"),
("more isolated villages, we'll need the gold!", "more isolated villages, well need the gold!"),
("More of the trolls' kin are arriving", "More of the trolls kin are arriving"),
("my power. What! What's this? A treaty.", "my power. What! Whats this? A treaty."),
("my wrath, Jevyan, I'm coming for you!", "my wrath, Jevyan, Im coming for you!"),
("my young prince. You've done", "my young prince. Youve done"),
("nice thing is, they'll go back to", "nice thing is, theyll go back to"),
("No! I don't believe it. Only", "No! I dont believe it. Only"),
("No, Sir! I'm the sole survivor", "No, Sir! Im the sole survivor"),
("of orcs. Apparently they're bogged down in", "of orcs. Apparently theyre bogged down in"),
("of the dragon I'm sure, who are", "of the dragon Im sure, who are"),
("of these tree-folk we'll be trapped in", "of these tree-folk well be trapped in"),
("Okay. Let's un-petrify that lich", "Okay. Lets un-petrify that lich"),
("on convincing Jevyan, it's the only way", "on convincing Jevyan, its the only way"),
("on the Green Isle- we will return", "on the Green Isle— we will return"),
("orc thing, it wasn't such a bad", "orc thing, it wasnt such a bad"),
("orcish scum, I can't bring myself to", "orcish scum, I cant bring myself to"),
("Orcs! It's been a long", "Orcs! Its been a long"),
("orcs. The ships aren't ready yet. We", "orcs. The ships arent ready yet. We"),
("our dear old 'tree-friend' might have known", "our dear old tree-friend might have known"),
("our Naga friendsss- Youll pay! We", "our Naga friendsss— Youll pay! We"),
("out of time... We'll be trapped in", "out of time... Well be trapped in"),
("outside of Southbay, we'll be trapped. Of", "outside of Southbay, well be trapped. Of"),
("person. Since I don't", "person. Since I dont"),
("pile of dust, let's get out of", "pile of dust, lets get out of"),
("point. Jessene, you're going to forge", "point. Jessene, youre going to forge"),
("points and fishhooks. It's difficult to be", "points and fishhooks. Its difficult to be"),
("power are true he's going to", "power are true hes going to"),
("Prince Haldric, I'll concentrate on holding", "Prince Haldric, Ill concentrate on holding"),
("Push 'em into the sea! They're in our winter", "Push em into the sea! Theyre in our winter"),
("quickly-", "quickly—"),
("refugees, you'll be slaughtered.", "refugees, youll be slaughtered."),
("road follows the Isle's greatest river to", "road follows the Isles greatest river to"),
("rushing to a fool's death? Who'll lead these people?", "rushing to a fools death? Wholl lead these people?"),
("said they would 'deal with the survivors'.", "said they would deal with the survivors."),
("seem rather intelligent. They're certainly belligerent and", "seem rather intelligent. Theyre certainly belligerent and"),
("She's clever! Maybe I", "Shes clever! Maybe I"),
("ships rescued me. I'll not be", "ships rescued me. Ill not be"),
("should 'deal' with the survivors,", "should deal with the survivors,"),
("so are you. Aren't you the king", "so are you. Arent you the king"),
("so long I don't imagine he's too happy.", "so long I dont imagine hes too happy."),
("soldier there. The city's sewer", "soldier there. The citys sewer"),
("Soldier, aren't you on the", "Soldier, arent you on the"),
("something! I think I'll save it for", "something! I think Ill save it for"),
("soo-", "soo—"),
("Southbay won't fall without one", "Southbay wont fall without one"),
("Southbay. We clearly can't go that way.", "Southbay. We clearly cant go that way."),
("Southbay. We've been busy evacuating", "Southbay. Weve been busy evacuating"),
("Southbay. You clearly can't go that way.", "Southbay. You clearly cant go that way."),
("SWAMP! I'm under 5 feet", "<i>Swamp</i>! Im under 5 feet"), # New <i> tags
("tall, and I don't float! Argh, have", "tall, and I dont float! Argh, have"),
("tall, and I don't float!", "tall, and I dont float!"),
("than any army I've ever seen just", "than any army Ive ever seen just"),
("that bat. He won't let such a", "that bat. He wont let such a"),
("that the elves 'have' the Ruby of", "that the elves have the Ruby of"),
("that the elves wouldn't have sent us", "that the elves wouldnt have sent us"),
("that the your 'third of a", "that the your third of a"),
("that we've failed. We're trapped.", "that weve failed. Were trapped."),
("The elves don't have the Ruby", "The elves dont have the Ruby"),
("the Lich-Lords' dark pact with", "the Lich-Lords dark pact with"),
("the orcs haven't caught up with", "the orcs havent caught up with"),
("The orcs that didn't escape in the", "The orcs that didnt escape in the"),
("the politics, but it's great to", "the politics, but its great to"),
("themselves before the Ka'lian, or the", "themselves before the Kalian, or the"),
("then we should 'deal' with the survivors,", "then we should deal with the survivors,"),
("there. Failing that, there's always", "there. Failing that, theres always"),
("they haven't met the main", "they havent met the main"),
("They look like they've been damaged by", "They look like theyve been damaged by"),
("they won't be screaming at", "they wont be screaming at"),
("they'll go looking for", "theyll go looking for"),
("They're already holding the", "Theyre already holding the"),
("They're Wesfolk, reavers and", "Theyre Wesfolk, reavers and"),
("They've undoubtedly spotted the", "Theyve undoubtedly spotted the"),
("This isn't so bad. Haldrics", "This isnt so bad. Haldrics"),
("this thing does, I'll just put it", "this thing does, Ill just put it"),
("to dust. If you're", "to dust. If youre"),
("to their aid. We'll have to weigh", "to their aid. Well have to weigh"),
("tongue. It means 'People of the West'. The", "tongue. It means People of the West. The"),
("trolls? I think it's", "trolls? I think its"),
("Trust me, you can't continue down this", "Trust me, you cant continue down this"),
("Umm, we'll talk about it later. I'm just a little", "Umm, well talk about it later. Im just a little"),
("until the end. You've been a good", "until the end. Youve been a good"),
("up sees that there's still", "up sees that theres still"),
("war, but you're the real monster!", "war, but youre the real monster!"),
("We can't all stay here", "We cant all stay here"),
("We don't need some magic", "We dont need some magic"),
("we fail here they'll doubtless be slaughtered.", "we fail here theyll doubtless be slaughtered."),
("we groom the forest.'", "we groom the forest.”"),
("we prevailed. Now, I'm having a problem.", "we prevailed. Now, Im having a problem."),
("We retrieved the Lich-Lord's book, and I", "We retrieved the Lich-Lords book, and I"),
("We'll have to be", "Well have to be"),
("We'll have to go", "Well have to go"),
("We're going to convince", "Were going to convince"),
("We're only holding the", "Were only holding the"),
("We're trapped in the", "Were trapped in the"),
("We've defeated Jevyan's forces. The ships", "Weve defeated Jevyans forces. The ships"),
("We've defeated their vanguard.", "Weve defeated their vanguard."),
("We've escaped from the", "Weve escaped from the"),
("We've escaped the pass.", "Weve escaped the pass."),
("Well, I certainly don't mind the thought", "Well, I certainly dont mind the thought"),
("well, if you can't be deterred. Remember,", "well, if you cant be deterred. Remember,"),
("Well, we can't go back, and", "Well, we cant go back, and"),
("What is your kind's infatuation with rushing to an 'honorable", "What is your kinds infatuation with rushing to an honorable"),
("What's that! No! The", "Whats that! No! The"),
("where it is! We've paid our friends", "where it is! Weve paid our friends"),
("Who knows, maybe they'll be of some", "Who knows, maybe theyll be of some"),
("winter stores. They've gone to Southbay,", "winter stores. Theyve gone to Southbay,"),
("with the elves. It's not like you", "with the elves. Its not like you"),
("Without the Commander's noble sacrifice we", "Without the Commanders noble sacrifice we"),
("would be 'Wes Noth'. So I suggest", "would be Wes Noth. So I suggest"),
("would sing the 'The Breaking of the Pact', an epic", "would sing the The Breaking of the Pact, an epic"),
("You cant defeat me- Hmm, what's this? You've learned to", "You cant defeat me— Hmm, whats this? Youve learned to"),
("you know what you're doing.", "you know what youre doing."),
("You monster! You've betrayed our people", "You monster! Youve betrayed our people"),
("You namby-pamby elves: 'We don't cut the trees,", "You namby-pamby elves: “We dont cut the trees,"),
("You said we wouldn't see any action", "You said we wouldnt see any action"),
("You should go 'greet' them.", "You should go greet them."),
("you'll be joining him", "youll be joining him"),
("You're a fool, Jevyan.", "Youre a fool, Jevyan."),
("You're showing initiative, son! I'm proud of you!", "Youre showing initiative, son! Im proud of you!"),
("You've been on this", "Youve been on this"),
("You've denied me honorable", "Youve denied me honorable"),
("your information? I don't even know your", "your information? I dont even know your"),
("your people...and I don't think", "your people... and I dont think"),
("your son's navigator and companion.", "your sons navigator and companion."),
),
"wesnoth-tsg" : (
("'chaotic', which means that", "<i>chaotic</i>, which means that"), # new <i> tags
("'Civilian' difficulty level is", "Civilian difficulty level is"),
("and I'll defend them to", "and Ill defend them to"),
("Named 'Eyestalks' for obvious reasons,", "Named Eyestalks for obvious reasons,"),
("your units are 'lawful'. This means that", "your units are <i>lawful</i>. This means that"), # new <i> tags
),
"wesnoth-tutorial" : (
("<big>You have selected Li'sar.</big>", "<big>You have selected Lisar.</big>"),
("a ranged attack (3-3; or 3 damage,", "a ranged attack (33; or 3 damage,"),
("are in its 'Zone of Control'", "are in its <i>Zone of Control</i>"), # new <i> tags
("attack! I'd better grab more", "attack! Id better grab more"),
("be? The sword (5-4) or the bow (3-3)? I suppose you'll", "be? The sword (54) or the bow (33)? I suppose youll"),
("but I think you're", "but I think youre"),
("can make sure you've used all your", "can make sure youve used all your"),
("captured our village! You'd better get him", "captured our village! Youd better get him"),
("dark blue water? It's too deep for", "dark blue water? Its too deep for"),
("designed as a beginner's campaign.", "designed as a beginners campaign."),
("Don't forget about your", "Dont forget about your"),
("dummy's attacks are magical,", "dummys attacks are magical,"),
("enough experience and you'll become more powerful.", "enough experience and youll become more powerful."),
("every time, you'll drop from $student_hp", "every time, youll drop from $student_hp"),
("experience so it's more efficient to", "experience so its more efficient to"),
("female^Unfortunately, you've used up your", "female^Unfortunately, youve used up your"),
("female^You're about to be", "female^Youre about to be"),
("from the 'Actions' menu.", "from the Actions menu."),
("gold per turn. You're only losing 1", "gold per turn. Youre only losing 1"),
("healed 2 hitpoints! I'd better attack it", "healed 2 hitpoints! Id better attack it"),
("However, both units don't have much", "However, both units dont have much"),
("If a unit doesn't do anything for", "If a unit doesnt do anything for"),
("if your leader (Li'sar) is killed.", "if your leader (Lisar) is killed."),
("into that village! He's not as stupid", "into that village! Hes not as stupid"),
("into the forest they'll", "into the forest theyll"),
("It's very dangerous to", "Its very dangerous to"),
("its melee attack (3-5).", "its melee attack (35)."),
("Konrad, Li'sar and Delfador are", "Konrad, Lisar and Delfador are"),
("Li'sar will attack.", "Lisar will attack."),
("miss $deadguy.name|, but it's better than one", "miss $deadguy.name|, but its better than one"),
("Now, Li'sar, I will leave", "Now, Lisar, I will leave"),
("once with the 'Show Enemy Moves' command", "once with the <b>Show Enemy Moves</b> command"), # new <b> tags
("out of the enemy's reach!", "out of the enemys reach!"),
("right-clicking and selecting 'Recruit'. This time you", "right-clicking and selecting <b>Recruit</b>. This time you"), # new <b> tags
("select a unit, you'll see percentages for", "select a unit, youll see percentages for"),
("select the attacker (Li'sar) then the target", "select the attacker (Lisar) then the target"),
("troops before clicking 'End Scenario' to continue to", "troops before clicking <b>End Scenario</b> to continue to"), # new <b> tags
("turn by pressing 'n' to", "turn by pressing <b>n</b> to"), # new <b> tags
("Unfortunately, you've used up your", "Unfortunately, youve used up your"),
("used a sword (5-4; or 5 damage,", "used a sword (54; or 5 damage,"),
("water, you'll have to kill", "water, youll have to kill"),
("When 'n' no longer selects", "When <b>n</b> no longer selects"), # new <b> tags
("Whenever you're on a keep,", "Whenever youre on a keep,"),
("Yes. It's a magical quintain.", "Yes. Its a magical quintain."),
("you are playing Li'sar.", "you are playing Lisar."),
("You can press 'u' to undo most", "You can press <b>u</b> to undo most"), # new <b> tags
("you can press 'u' to undo,", "you can press <b>u</b> to undo,"), # new <b> tags
("you recruited first; they'll be a lot", "you recruited first; theyll be a lot"),
("You wouldn't do anything stupid", "You wouldnt do anything stupid"),
("You're about to be", "Youre about to be"),
("you're going to need", "youre going to need"),
("You've captured all the", "Youve captured all the"),
("your keep for Li'sar to capture, as", "your keep for Lisar to capture, as"),
),
"wesnoth-utbs" : (
("'traders' used to come", "traders used to come"),
("'Yechnagoth' and 'Zhangor'. She said that", "Yechnagoth and Zhangor. She said that"),
("a land of 'kill or be killed'. Outlaws, ogres", "a land of kill or be killed. Outlaws, ogres"),
("a lesson they won't soon forget. Attack!", "a lesson they wont soon forget. Attack!"),
("a minute, I don't see any targets", "a minute, I dont see any targets"),
("after your enemies fall' Grave robbing is", "after your enemies fall” Grave robbing is"),
("again, Kaleh, this isn't the desert. The", "again, Kaleh, this isnt the desert. The"),
("again. You numbskulls aren't getting the easy", "again. You numbskulls arent getting the easy"),
("Ah, it's a hard knock", "Ah, its a hard knock"),
("all contact. I don't know if any", "all contact. I dont know if any"),
("all this way, I'm not going to", "all this way, Im not going to"),
("also declared that Zhangor's name and his", "also declared that Zhangors name and his"),
("And besides, we can't afford to lose", "And besides, we cant afford to lose"),
("and better. We haven't seen one of", "and better. We havent seen one of"),
("and joining Tanstafaal. I'm afraid that while", "and joining Tanstafaal. Im afraid that while"),
("and protect you.” I'm", "and protect you.” Im"),
("and so I wasn't told the location.", "and so I wasnt told the location."),
("Anyway you've really gotten us", "Anyway youve really gotten us"),
("anyway? I'm going to have", "anyway? Im going to have"),
("are close. Let's be far away", "are close. Lets be far away"),
("are hard pressed. We're going to have", "are hard pressed. Were going to have"),
("are pitch black! It's as bad as", "are pitch black! Its as bad as"),
("are the words: 'May you have the", "are the words: “May you have the"),
("are, and we don't much care. Tremble", "are, and we dont much care. Tremble"),
("aren't safe. Can you", "arent safe. Can you"),
("as a hermit crab's shell. It must", "as a hermit crabs shell. It must"),
("as a warrior. Let's respect his wishes", "as a warrior. Lets respect his wishes"),
("as you think. Let's explore the village", "as you think. Lets explore the village"),
("attacking it. We can't stop now!", "attacking it. We cant stop now!"),
("Aye, there's still life in", "Aye, theres still life in"),
("be left that I'm not leading my", "be left that Im not leading my"),
("be magical. Maybe that's why he was", "be magical. Maybe thats why he was"),
("be too sure. I'll", "be too sure. Ill"),
("beast you aren't familiar with. The", "beast you arent familiar with. The"),
("become useful eventually. I'll keep it just", "become useful eventually. Ill keep it just"),
("been a mirage. I've been out", "been a mirage. Ive been out"),
("Before we leave, there's one thing I", "Before we leave, theres one thing I"),
("being burnt alive! It's terrible, I", "being burnt alive! Its terrible, I"),
("better. But we don't know", "better. But we dont know"),
("blue stuff. I don't know", "blue stuff. I dont know"),
("blue. The pool isn't very deep, I", "blue. The pool isnt very deep, I"),
("broken. But I don't think we have", "broken. But I dont think we have"),
("but frankly we didn't have enough dwarves", "but frankly we didnt have enough dwarves"),
("But I still don't understand how you", "But I still dont understand how you"),
("But no, they wouldn't kill me. They", "But no, they wouldnt kill me. They"),
("But still she doesn't stand a", "But still she doesnt stand a"),
("but to forgive divine'?", "but to forgive divine”?"),
("but, well, we don't like going that", "but, well, we dont like going that"),
("by orcs. I wouldn't be surprised if", "by orcs. I wouldnt be surprised if"),
("by the Sea God's hand I call", "by the Sea Gods hand I call"),
("can damage it. It's almost as if", "can damage it. Its almost as if"),
("can't bear to watch.", "cant bear to watch."),
("can't last forever, and", "cant last forever, and"),
("Can't the dead ever", "Cant the dead ever"),
("caves, and we won't have the advantages", "caves, and we wont have the advantages"),
("charges! If we can't stop them then", "charges! If we cant stop them then"),
("charges! If we can't stop them", "charges! If we cant stop them"),
("close to the trolls' main lair; you", "close to the trolls main lair; you"),
("Come on! I ain't going anywhere for", "Come on! I aint going anywhere for"),
("consequences would be. I'm not", "consequences would be. Im not"),
("creature was, she doesn't smell any better", "creature was, she doesnt smell any better"),
("cross our blades... It's time", "cross our blades... Its time"),
("Curse that girl! She'll be the death", "Curse that girl! Shell be the death"),
("dangers we don't. We really are", "dangers we dont. We really are"),
("darkness, and you won't be lacking a", "darkness, and you wont be lacking a"),
("darkness? And I'm afraid that while", "darkness? And Im afraid that while"),
("Dead?! You 'found' them you say?", "Dead?! You found them you say?"),
("defenses'. It would have", "defenses. It would have"),
("didn't have vile humans", "didnt have vile humans"),
("didn't talk much, but", "didnt talk much, but"),
("died fighting gloriously. I'm so ashamed. I", "died fighting gloriously. Im so ashamed. I"),
("disappears at a moment's notice. No one", "disappears at a moments notice. No one"),
("do you mean 'lead you to me'? You are a god, don't you exist", "do you mean lead you to me? You are a god, dont you exist"),
("Do you think I'm stupid enough to", "Do you think Im stupid enough to"),
("doesn't know where to", "doesnt know where to"),
("doesn't look good.", "doesnt look good."),
("doesn't make sense.", "doesnt make sense."),
("Don't ask where the", "Dont ask where the"),
("Don't blame yourself. You didn't know. If we", "Dont blame yourself. You didnt know. If we"),
("don't do anything dangerous.", "dont do anything dangerous."),
("don't have to spend.", "dont have to spend."),
("don't know how long.", "dont know how long."),
("don't know what happened.", "dont know what happened."),
("Don't listen to them,", "Dont listen to them,"),
("don't seem as threatening", "dont seem as threatening"),
("don't suppose they're going to mind", "dont suppose theyre going to mind"),
("Don't think you know", "Dont think you know"),
("don't want the rest", "dont want the rest"),
("Don't worry. We're not the monsters", "Dont worry. Were not the monsters"),
("Don't you worry about us, Kaleh. We'll be careful. I'll organize five bands", "Dont you worry about us, Kaleh. Well be careful. Ill organize five bands"),
("Don't you worry, we won't rest until we", "Dont you worry, we wont rest until we"),
("down this way. It's odd, I guess", "down this way. Its odd, I guess"),
("dry ground, and you've been through a", "dry ground, and youve been through a"),
("due north. From Esanoo's description it sounds", "due north. From Esanoos description it sounds"),
("duplicate their ancestors' previous success, the", "duplicate their ancestors previous success, the"),
("dwarves. And you don't really need me,", "dwarves. And you dont really need me,"),
("effect! I don't think the trolls", "effect! I dont think the trolls"),
("elf... But you won't be so lucky", "elf... But you wont be so lucky"),
("Eloh and the merfolk's god, and delighting", "Eloh and the merfolks god, and delighting"),
("escapes the valley, we'll be in trouble.", "escapes the valley, well be in trouble."),
("explored no further. I'm", "explored no further. Im"),
("faster if you don't interrupt me. Now,", "faster if you dont interrupt me. Now,"),
("fear not the dark.' And again, just", "fear not the dark.” And again, just"),
("fear will surely appear' It looks", "fear will surely appear It looks"),
("fighting, but she doesn't smell any better", "fighting, but she doesnt smell any better"),
("find another infestation. They've", "find another infestation. Theyve"),
("first. I don't think I want", "first. I dont think I want"),
("for rescuing me. We'll show those humans", "for rescuing me. Well show those humans"),
("former owner certainly won't miss it.", "former owner certainly wont miss it."),
("forward to that. I'm afraid my scales", "forward to that. Im afraid my scales"),
("free us. I can't believe the humans", "free us. I cant believe the humans"),
("from them, I can't leave now.", "from them, I cant leave now."),
("from, but she wouldn't answer, she just", "from, but she wouldnt answer, she just"),
("from. You really don't want to know.", "from. You really dont want to know."),
("fruitful lives. Don't let our sacrifices", "fruitful lives. Dont let our sacrifices"),
("further. I'm freezing cold, wet, and I can't see a thing. I'm not exactly", "further. Im freezing cold, wet, and I cant see a thing. Im not exactly"),
("Garak were here, he'd know more about", "Garak were here, hed know more about"),
("go through those 'light", "go through those light"),
("Good, then let's get out of", "Good, then lets get out of"),
("Good, until then we'll settle around that", "Good, until then well settle around that"),
("Good, we'll move our people", "Good, well move our people"),
("Good. We're safe for now.", "Good. Were safe for now."),
("Greetings. I'm afraid I am", "Greetings. Im afraid I am"),
("group of enemies. Let's hope", "group of enemies. Lets hope"),
("guard, if we don't come out in", "guard, if we dont come out in"),
("Ha, you're trapped. I've got you right", "Ha, youre trapped. Ive got you right"),
("hadn't come Grog would", "hadnt come Grog would"),
("half-manned. They obviously didn't expect any serious", "half-manned. They obviously didnt expect any serious"),
("happened! Who in Moradin's name rigged the", "happened! Who in Moradins name rigged the"),
("have defeated me, don't you? Foolish boy,", "have defeated me, dont you? Foolish boy,"),
("he died a warrior's", "he died a warriors"),
("He'll be slaughtered! He", "Hell be slaughtered! He"),
("He's dead. Rest in", "Hes dead. Rest in"),
("He's probably dead, then,", "Hes probably dead, then,"),
("heh, no you didn't find me. I", "heh, no you didnt find me. I"),
("here are insects, I'll be very", "here are insects, Ill be very"),
("here too long we'll roast alive. I don't even want to", "here too long well roast alive. I dont even want to"),
("here, and yet there's so", "here, and yet theres so"),
("here, but I don't know what made", "here, but I dont know what made"),
("Hey, c'mon, maybe we can", "Hey, cmon, maybe we can"),
("Hey, what's this? There seems", "Hey, whats this? There seems"),
("him through. Well here's your chance. Come", "him through. Well heres your chance. Come"),
("his scouts haven't reported back yet. I'm starting to get", "his scouts havent reported back yet. Im starting to get"),
("horizon, but I don't know what it", "horizon, but I dont know what it"),
("Humans aren't just the bandits and outlaws you're familiar with from", "Humans arent just the bandits and outlaws youre familiar with from"),
("humans doing here? I've never seen so", "humans doing here? Ive never seen so"),
("humans much anyway. I'll be glad to", "humans much anyway. Ill be glad to"),
("hurts and I, I'm stuck!", "hurts and I, Im stuck!"),
("I am, I'm a fire mage. I've been traveling for", "I am, Im a fire mage. Ive been traveling for"),
("I can't even begin to", "I cant even begin to"),
("I do. But it's just a theory. I don't want to say", "I do. But its just a theory. I dont want to say"),
("I don't care! Do you think I'm going to let", "I dont care! Do you think Im going to let"),
("I don't get it. All", "I dont get it. All"),
("I don't know what 'they' are, but we can't go back. Prepare", "I dont know what they are, but we cant go back. Prepare"),
("I don't know. When I", "I dont know. When I"),
("I don't see any spiders,", "I dont see any spiders,"),
("I don't want to be", "I dont want to be"),
("I fear our people's fate", "I fear our peoples fate"),
("I for one can't wait to feel", "I for one cant wait to feel"),
("I lived long, I'm not afraid of", "I lived long, Im not afraid of"),
("I thought that's what all the", "I thought thats what all the"),
("I'd better head back", "Id better head back"),
("I'll blow the charges", "Ill blow the charges"),
("I'll just be happy", "Ill just be happy"),
("I'll muster the rest", "Ill muster the rest"),
("I'm exhausted after walking", "Im exhausted after walking"),
("I'm not sure. I've read various references", "Im not sure. Ive read various references"),
("I'm sorry Kaleh, I", "Im sorry Kaleh, I"),
("I'm sorry, Kaleh. My", "Im sorry, Kaleh. My"),
("I'm still not sure", "Im still not sure"),
("I've followed that boy this far, I'm not going to", "Ive followed that boy this far, Im not going to"),
("I've heard of dwarves,", "Ive heard of dwarves,"),
("I've heard of your", "Ive heard of your"),
("I've saved his sorry", "Ive saved his sorry"),
("I've seen the ancient", "Ive seen the ancient"),
("in the end, I'm afraid you just", "in the end, Im afraid you just"),
("in the wall. 'If you dare", "in the wall. If you dare"),
("in this chamber. You're surprised to see", "in this chamber. Youre surprised to see"),
("Incoming! Ugh, it's big, hairy, and", "Incoming! Ugh, its big, hairy, and"),
("instead of a coward's. For that I", "instead of a cowards. For that I"),
("interesting. In truth, I'd never heard of", "interesting. In truth, Id never heard of"),
("into dust. All that's", "into dust. All thats"),
("into the caves you'll", "into the caves youll"),
("is one they don't have to. Still,", "is one they dont have to. Still,"),
("is so hot it's stifling; I can", "is so hot its stifling; I can"),
("island. I bet it's", "island. I bet its"),
("it can't kill it.", "it cant kill it."),
("It wouldn't have been my", "It wouldnt have been my"),
("it's a hard knock", "its a hard knock"),
("It's a huge underground", "Its a huge underground"),
("It's a long story,", "Its a long story,"),
("It's another one of", "Its another one of"),
("It's complicated, and I don't know how much", "Its complicated, and I dont know how much"),
("It's hard to imagine.", "Its hard to imagine."),
("It's not important. What's important is that", "Its not important. Whats important is that"),
("It's okay, you're not used to", "Its okay, youre not used to"),
("It's some sort of", "Its some sort of"),
("its power. We don't normally tolerate using", "its power. We dont normally tolerate using"),
("jungle, but I can't tell what", "jungle, but I cant tell what"),
("just fine. I don't know", "just fine. I dont know"),
("Kaleh, I wouldn't be surprised if", "Kaleh, I wouldnt be surprised if"),
("Kaleh, we don't have time for", "Kaleh, we dont have time for"),
("Kali's just a hardass because he's bitter that he", "Kalis just a hardass because hes bitter that he"),
("keep practicing until I'm satisfied.", "keep practicing until Im satisfied."),
("killing trolls. And you're not going anywhere until I'm done with you.", "killing trolls. And youre not going anywhere until Im done with you."),
("Lady's name are you", "Ladys name are you"),
("lands when I don't know what's in front of us. We've lost too many", "lands when I dont know whats in front of us. Weve lost too many"),
("Leader wouldn't want any unpleasant", "Leader wouldnt want any unpleasant"),
("leaderless. I guess it's every ant for", "leaderless. I guess its every ant for"),
("leadership so far; I'll wait", "leadership so far; Ill wait"),
("let her die? I've never seen fire", "let her die? Ive never seen fire"),
("Let's blast those monsters", "Lets blast those monsters"),
("lightly defended; he's sent most of", "lightly defended; hes sent most of"),
("Like I haven't killed enough undead recently. Why can't these guys just", "Like I havent killed enough undead recently. Why cant these guys just"),
("like. I suppose we'll just try", "like. I suppose well just try"),
("listen to the mages' protests. So, seeking", "listen to the mages protests. So, seeking"),
("lived underground, Elyssa. I've", "lived underground, Elyssa. Ive"),
("location. So she didn't tell us where", "location. So she didnt tell us where"),
("long as you didn't try to cheat", "long as you didnt try to cheat"),
("Looks like he's been squirreling away", "Looks like hes been squirreling away"),
("Looks like we don't have any choice", "Looks like we dont have any choice"),
("made it outside. I'd forgotten how big", "made it outside. Id forgotten how big"),
("many of our people's faith is wavering.", "many of our peoples faith is wavering."),
("master know about 'Yechnagoth' and 'Zhangor'? If Eloh", "master know about Yechnagoth and Zhangor? If Eloh"),
("May the Sea God's bounty bless you", "May the Sea Gods bounty bless you"),
("Maybe it's just fish, but", "Maybe its just fish, but"),
("me if I don't take you at", "me if I dont take you at"),
("meantime, we'll go ahead and", "meantime, well go ahead and"),
("merfolk's help we would", "merfolks help we would"),
("merfolk, then we don't have any time", "merfolk, then we dont have any time"),
("mess. I think you're right", "mess. I think youre right"),
("more fire guardians. I'm going to be", "more fire guardians. Im going to be"),
("my hand. It doesn't seem to have", "my hand. It doesnt seem to have"),
("my life. I can't believe I was", "my life. I cant believe I was"),
("named it 'Quenoth Isle' in honor of", "named it Quenoth Isle in honor of"),
("nasty orcses. And 'specially stinking elves.", "nasty orcses. And specially stinking elves."),
("need to explain, it's pretty obvious what you're up to. Here", "need to explain, its pretty obvious what youre up to. Here"),
("No I haven't, I don't often explore underground", "No I havent, I dont often explore underground"),
("no idea what you're babbling about, elf, but you're just lucky you", "no idea what youre babbling about, elf, but youre just lucky you"),
("No we can't. But for now", "No we cant. But for now"),
("No, I don't think you shall", "No, I dont think you shall"),
("No, you don't have to introduce", "No, you dont have to introduce"),
("northeast and northwest. Don't go too far,", "northeast and northwest. Dont go too far,"),
("not enough. Look, you're a wonderful girl", "not enough. Look, youre a wonderful girl"),
("not sure why I'm the one she", "not sure why Im the one she"),
("Not worth... Whoa! What's happening?!", "Not worth... Whoa! Whats happening?!"),
("Now that we've set up a", "Now that weve set up a"),
("Now that you've found the way", "Now that youve found the way"),
("Nym is Kaleh's childhood friend who", "Nym is Kalehs childhood friend who"),
("Nym, and Kaleh, you've", "Nym, and Kaleh, youve"),
("oases aren't easy to find", "oases arent easy to find"),
("obsidian wall. I can't find any entrances", "obsidian wall. I cant find any entrances"),
("obsidian wall. I can't find any way", "obsidian wall. I cant find any way"),
("of here, but it's already flooding.", "of here, but its already flooding."),
("of me boys didn't think you could", "of me boys didnt think you could"),
("of the desert? It's a rather barren", "of the desert? Its a rather barren"),
("of the orcs. I'd seen sandstorms", "of the orcs. Id seen sandstorms"),
("of water: it's even creating a", "of water: its even creating a"),
("of Wesnoth. And it's isn't", "of Wesnoth. And its isnt"),
("Oh they're no need to explain, it's pretty obvious what you're up to. Here", "Oh, theres no need to explain, its pretty obvious what youre up to. Here"),
("Oh, Eloh. They're all dead. Butchered.", "Oh, Eloh. Theyre all dead. Butchered."),
("on the horizon. We'll surely be", "on the horizon. Well surely be"),
("on Trolls. But you'll see,", "on Trolls. But youll see,"),
("Once we've escaped and are", "Once weve escaped and are"),
("orcs and goblins. We'll never make it", "orcs and goblins. Well never make it"),
("our destination. It wasn't even an island,", "our destination. It wasnt even an island,"),
("our god, I don't remember Zhul mentioning", "our god, I dont remember Zhul mentioning"),
("our people dwindle, it's going to become", "our people dwindle, its going to become"),
("our people dwindle, it's going to", "our people dwindle, its going to"),
("outpost isn't guarded as heavily", "outpost isnt guarded as heavily"),
("Part of me didn't think we would", "Part of me didnt think we would"),
("past the orcs. It's odd, I guess", "past the orcs. Its odd, I guess"),
("peacefully or I'll make you sorry you didn't.", "peacefully or Ill make you sorry you didnt."),
("people already. I don't want to lead", "people already. I dont want to lead"),
("people, I don't want to kill", "people, I dont want to kill"),
("Pinnacle Rock. It's the highest land", "Pinnacle Rock. Its the highest land"),
("place and they can't reach him there.", "place and they cant reach him there."),
("places you can't.", "places you cant."),
("planned or not, what's important is what", "planned or not, whats important is what"),
("possible, but we won't last long in", "possible, but we wont last long in"),
("pray, but I'm going in there!", "pray, but Im going in there!"),
("protecting our encampments isn't enough, darkness and", "protecting our encampments isnt enough, darkness and"),
("put here, but it's obviously powerful and", "put here, but its obviously powerful and"),
("rally more reinforcements. We're hurtin', Kaleh, I'll", "rally more reinforcements. Were hurtin, Kaleh, Ill"),
("range. When they don't have a Queen", "range. When they dont have a Queen"),
("recent losses we don't have the", "recent losses we dont have the"),
("reconnaissance. We'll send out small", "reconnaissance. Well send out small"),
("red glowing runes. I'm not", "red glowing runes. Im not"),
("refer to as 'The Golden Age'.", "refer to as The Golden Age."),
("reinforcements have arrived. We'll surely", "reinforcements have arrived. Well surely"),
("Remember, Kaleh, it's nasty fighting underground.", "Remember, Kaleh, its nasty fighting underground."),
("right you runts, let's try this again.", "right you runts, lets try this again."),
("right, I'm going in. The", "right, Im going in. The"),
("river and lake. I'm glad we weren't downstream of that", "river and lake. Im glad we werent downstream of that"),
("river. I sure wouldn't want to be", "river. I sure wouldnt want to be"),
("sacrificed them on Zhangor's bloody altars. Zhangor", "sacrificed them on Zhangors bloody altars. Zhangor"),
("safety. We certainly wouldn't want", "safety. We certainly wouldnt want"),
("said $intl_ally_name, that you'd been here before?", "said $intl_ally_name, that youd been here before?"),
("seem particularly inhospitable! I've been", "seem particularly inhospitable! Ive been"),
("seen. It's almost unnatural.", "seen. Its almost unnatural."),
("serve the merfolk's foul god.", "serve the merfolks foul god."),
("set, then I won't try to convince", "set, then I wont try to convince"),
("snowy peaks. So that's how several thousand", "snowy peaks. So thats how several thousand"),
("so big. And what's", "so big. And whats"),
("so far. I don't think I", "so far. I dont think I"),
("Some of trolls didn't think you strong", "Some of trolls didnt think you strong"),
("Sometimes called the 'hollow men', spectres form the", "Sometimes called the hollow men, spectres form the"),
("south. And we can't hang around here", "south. And we cant hang around here"),
("spider. Aren't we lucky!", "spider. Arent we lucky!"),
("spilled already. Knock 'em out, wound them,", "spilled already. Knock em out, wound them,"),
("stay dead? And aren't they trapped by", "stay dead? And arent they trapped by"),
("stayed in the captain's quarters and", "stayed in the captains quarters and"),
("still haunted by Nym's death in that", "still haunted by Nyms death in that"),
("Still, the trolls don't seem to be", "Still, the trolls dont seem to be"),
("stone wall. This can't be a coincidence.", "stone wall. This cant be a coincidence."),
("strange vision. I didn't have long to", "strange vision. I didnt have long to"),
("such as the elves' stats and the", "such as the elves stats and the"),
("summoned back I don't think we", "summoned back I dont think we"),
("sunlit lands. When you're ready I'll show you", "sunlit lands. When youre ready Ill show you"),
("suns. She said 'Have", "suns. She said “Have"),
("support, so we don't want to run", "support, so we dont want to run"),
("sure what I'm doing up here.", "sure what Im doing up here."),
("surface, and besides there's still lots of", "surface, and besides theres still lots of"),
("swear those castles weren't there at sunset.", "swear those castles werent there at sunset."),
("tastes terrible, I can't drink this! What", "tastes terrible, I cant drink this! What"),
("tell me to 'kill the unbelievers'? If we had", "tell me to kill the unbelievers? If we had"),
("Tenacious savages, aren't they? But these", "Tenacious savages, arent they? But these"),
("than I do. I've", "than I do. Ive"),
("Thank you, I'm sure you will", "Thank you, Im sure you will"),
("Thank you. I'm sorry, I don't know what came", "Thank you. Im sorry, I dont know what came"),
("that appears by Tanstafaal's", "that appears by Tanstafaals"),
("that I don't know where she", "that I dont know where she"),
("that Yechnagoth wasn't the one who", "that Yechnagoth wasnt the one who"),
("that? It sure doesn't look good. The", "that? It sure doesnt look good. The"),
("the best, so I'll be your", "the best, so Ill be your"),
("the cavern nicely. I'm just thankful the", "the cavern nicely. Im just thankful the"),
("the dangers we don't. We really are", "the dangers we dont. We really are"),
("the essence, so let's move out as", "the essence, so lets move out as"),
("the hills, you can't even see all that water, it's", "the hills, you cant even see all that water, its"),
("the island's foul inhabitants, and", "the islands foul inhabitants, and"),
("the left. And it's big enough", "the left. And its big enough"),
("the olden days. I'm sure it must", "the olden days. Im sure it must"),
("the past, and there's nothing we can", "the past, and theres nothing we can"),
("The point is, it's not her fight, it's our fight too.", "The point is, its not her fight, its our fight too."),
("the rubble. It doesn't look", "the rubble. It doesnt look"),
("the shamans. The troll's military leader was", "the shamans. The trolls military leader was"),
("The stinkin' elves have freed", "The stinkin elves have freed"),
("the stone. But there's no", "the stone. But theres no"),
("the suns. But I've", "the suns. But Ive"),
("the troll menace. They've been", "the troll menace. Theyve been"),
("the unbelievers proves your-", "the unbelievers proves your—"),
("the way. It's not far.", "the way. Its not far."),
("the world that hadn't been plagued with", "the world that hadnt been plagued with"),
("their fear of Zhangor's wrath, the", "their fear of Zhangors wrath, the"),
("them. I think that's where they are", "them. I think thats where they are"),
("them. Whatever 'them' was.", "them. Whatever them was."),
("Then we'll just have to", "Then well just have to"),
("There isn't much left of", "There isnt much left of"),
("these branching tunnels we'll have no idea", "these branching tunnels well have no idea"),
("these secret tunnels, you'd think they could", "these secret tunnels, youd think they could"),
("These smaller hills aren't as hard to", "These smaller hills arent as hard to"),
("these tunnels deserted. I'd be", "these tunnels deserted. Id be"),
("these tunnels deserted. I'll be", "these tunnels deserted. Ill be"),
("they are, it can't be good.", "they are, it cant be good."),
("they look. And they're huge! Well, the", "they look. And theyre huge! Well, the"),
("They obviously weren't enough. You go", "They obviously werent enough. You go"),
("they shan't. We shall kill", "they shant. We shall kill"),
("They're a proud people,", "Theyre a proud people,"),
("They've come for my precious. It's mine, yes it is. They shan't have it, no", "Theyve come for my precious. Its mine, yes it is. They shant have it, no"),
("They've crossed the chasm!", "Theyve crossed the chasm!"),
("thing to a god's actual", "thing to a gods actual"),
("this time, we won't always be so", "this time, we wont always be so"),
("those caves aren't safe. Can you", "those caves arent safe. Can you"),
("through this inferno I'm", "through this inferno Im"),
("to a head. I'm worried about Tanstafaal", "to a head. Im worried about Tanstafaal"),
("to be judged. They'll deal with you", "to be judged. Theyll deal with you"),
("to challenge me, I'll devour your soul", "to challenge me, Ill devour your soul"),
("to give you. I'm afraid that where", "to give you. Im afraid that where"),
("to ignore enemy units' zones of", "to ignore enemy units zones of"),
("to me? This isn't a negotiation. You", "to me? This isnt a negotiation. You"),
("to meet the merfolk's leader!", "to meet the merfolks leader!"),
("to open it. Let's go, I'd really like to", "to open it. Lets go, Id really like to"),
("to respect your leaders' decisions. Kaleh has", "to respect your leaders decisions. Kaleh has"),
("to the base. They're going to sacrifice", "to the base. Theyre going to sacrifice"),
("tomorrow night, then I'll tell you", "tomorrow night, then Ill tell you"),
("Too late. And it's just sand inside.", "Too late. And its just sand inside."),
("trolls' secret weapon.", "trolls secret weapon."),
("trolls. And you don't really need me,", "trolls. And you dont really need me,"),
("trolls. But there's no point dwelling", "trolls. But theres no point dwelling"),
("truly came from. I'd been to some", "truly came from. Id been to some"),
("tunnels towards the Dwarves'", "tunnels towards the Dwarves"),
("Ugh. I'm covered in blood", "Ugh. Im covered in blood"),
("Undead don't have to breathe and I don't think a little", "Undead dont have to breathe and I dont think a little"),
("Until I know what's out there, I'm not taking any", "Until I know whats out there, Im not taking any"),
("upon the elves' fears and demanded", "upon the elves fears and demanded"),
("us back. Well, we'll show them. It", "us back. Well, well show them. It"),
("us if we can't end this battle", "us if we cant end this battle"),
("us, we'll stick to the", "us, well stick to the"),
("used to. So we'd best be extra", "used to. So wed best be extra"),
("very close to dwarves' main lair. You", "very close to dwarves main lair. You"),
("Very well. I've trusted your decisions", "Very well. Ive trusted your decisions"),
("vile, that I can't imagine them worshiping", "vile, that I cant imagine them worshiping"),
("wait a minute, you're elves!?!", "wait a minute, youre elves!?!"),
("wall of stone. I've had me boys", "wall of stone. Ive had me boys"),
("wand. I don't have much experience", "wand. I dont have much experience"),
("want to flee, don't you? But you", "want to flee, dont you? But you"),
("want to know what's out there.", "want to know whats out there."),
("warriors. I'm sure they have", "warriors. Im sure they have"),
("wastes if we can't find", "wastes if we cant find"),
("water-skins and rations. We'll have enough if", "water-skins and rations. Well have enough if"),
("way. But they aren't even elves,", "way. But they arent even elves,"),
("We don't know who you", "We dont know who you"),
("we know you aren't servants of Yechnagoth,", "we know you arent servants of Yechnagoth,"),
("We will remember Esanoo's sacrifice.", "We will remember Esanoos sacrifice."),
("We won't. If we keep", "We wont. If we keep"),
("We'll meet you along", "Well meet you along"),
("We're in luck, a", "Were in luck, a"),
("We're still trying to", "Were still trying to"),
("We've come far and", "Weve come far and"),
("We've come out on", "Weve come out on"),
("We've found both keys.", "Weve found both keys."),
("We've reached what looks", "Weve reached what looks"),
("We've run out of", "Weve run out of"),
("We've taken too long", "Weve taken too long"),
("Well, Nym's right, we don't know what's out there. So", "Well, Nyms right, we dont know whats out there. So"),
("Well, we can't spend all day", "Well, we cant spend all day"),
("west of here. Don't worry about losing", "west of here. Dont worry about losing"),
("what's inside...", "whats inside..."),
("What's that, boy? Are", "Whats that, boy? Are"),
("What's this on our borders? Stinkin' elves and more undead? We'll teach them", "Whats this on our borders? Stinkin elves and more undead? Well teach them"),
("What's this? Hidden underneath", "Whats this? Hidden underneath"),
("What's this? His clothes", "Whats this? His clothes"),
("What's this? Someone has", "Whats this? Someone has"),
("Who are you? What's behind that black", "Who are you? Whats behind that black"),
("who knows what we'll encounter deep under", "who knows what well encounter deep under"),
("with their tactics; we've lost several of", "with their tactics; weve lost several of"),
("with us, but I'm afraid we don't", "with us, but Im afraid we dont"),
("won't help me, then", "wont help me, then"),
("won't let a couple", "wont let a couple"),
("won't lose all your", "wont lose all your"),
("years. Her commands don't make any sense; she doesn't seem", "years. Her commands dont make any sense; she doesnt seem"),
("Yes, but I didn't explore very far.", "Yes, but I didnt explore very far."),
("you can't drink it?", "you cant drink it?"),
("You didn't expect the other", "You didnt expect the other"),
("you first arrived, we've had a few", "you first arrived, weve had a few"),
("you know what you're doing, Kaleh.", "you know what youre doing, Kaleh."),
("you not say: 'to err is elven,", "you not say: “to err is elven,"),
("You rescued Nog's brother, and he", "You rescued Nogs brother, and he"),
("you sacrifice for Garak's sake?", "you sacrifice for Garaks sake?"),
("You saved Grog's life. Grog still", "You saved Grogs life. Grog still"),
("you see him, he's big, green and", "you see him, hes big, green and"),
("you with. We haven't sent anyone to", "you with. We havent sent anyone to"),
("You're being very cryptic,", "Youre being very cryptic,"),
("you, I don't think that the", "you, I dont think that the"),
("your word. We haven't seen elves for", "your word. We havent seen elves for"),
("Zur... Come mortal, let's cross our blades... It's time for", "Zur... Come mortal, lets cross our blades... Its time for"),
),
# End of pass 1 of bulk apostrophe and dash conversion by Simons Mith.
# Pass 2: Bulk apostrophe conversion by Simons Mith
# ~ 600 apostrophes changed to sexed single and double quotes
# No other changes made.
"unspecified" : (
# Single-word changes; currently commented out as they give duplicate msgids
# Although they're only names, so they should be safe to apply. Except
# possibly Li'sar
# ("\"Al'Brock\"", "\"AlBrock\""),
# ("\"Al'Mar\"", "\"AlMar\""),
# ("\"Al'Tar\"", "\"AlTar\""),
# ("\"Ar'Muff\"", "\"ArMuff\""),
# ("\"Bak'man\"", "\"Bakman\""),
# ("\"Flar'Tar\"", "\"FlarTar\""),
# ("\"Ha'Tang\"", "\"HaTang\""),
# ("\"Ha'Tuil\"", "\"HaTuil\""),
# ("\"Hida'tul\"", "\"Hidatul\""),
# ("\"J'rem\"", "\"Jrem\""),
# ("\"Kapou'e\"", "\"Kapoue\""),
# ("\"Lanbec'h\"", "\"Lanbech\""),
# ("\"Li'sar\"", "\"Lisar\""),
# ("\"Ro'Arthian\"", "\"RoArthian\""),
# ("\"Ro'Sothian\"", "\"RoSothian\""),
# ("\"Shek'kahan\"", "\"Shekkahan\""),
# ("\"T'bhan\"", "\"Tbhan\""),
# ("\"Thu'lok\"", "\"Thulok\""),
# ("\"Ug'lok\"", "\"Uglok\""),
# ("\"Ut'Tan-Grilg\"", "\"UtTan-Grilg\""),
# ("\"Ut'Tan-Grorag\"", "\"UtTan-Grorag\""),
# ("\"Ut'Tan-Vrork\"", "\"UtTan-Vrork\""),
# Generates long po line: 86 bytes
# ("kind that won't leave <i>us</i>", "kind that wont leave <i>us</i>"),
# May generate long po line: 85 bytes
("It's the Prince", "Its the Prince"),
# The rest all appear safe to apply
("'Lord'? Oh no!", "Lord? Oh no!"),
("'Prince Haldric the Dragonbane' sounds rather", "Prince Haldric the Dragonbane sounds rather"),
("'The Great Chamber'? Hmmm, wonder", "The Great Chamber? Hmmm, wonder"),
("'The masters study' eh? I bet we'll find Malifor", "The masters study eh? I bet well find Malifor"),
("(<i>Grunt... strain...</i>) It's not moving.", "(<i>Grunt... strain...</i>) Its not moving."),
("(<i>Reads</i>) <i>Kannin a'kana du'masi a'forigln de'amp.</i>", "(<i>Reads</i>) <i>Kannin akana dumasi aforigln deamp.</i>"),
("(<i>Shrugs</i>) I don't think we", "(<i>Shrugs</i>) I dont think we"),
("... Can't... The... heat...", "... Cant... The... heat..."),
("... Don't tax yourself...", "... Dont tax yourself..."),
("800 gold! We're rich!!", "800 gold! Were rich!!"),
("<i>I</i> want? I'll tell you", "<i>I</i> want? Ill tell you"),
("<i>Swamp</i>?! I'm under five", "<i>Swamp</i>?! Im under five"),
("a hundred. Don't lose it.", "a hundred. Dont lose it."),
("a minute, you're elves?!", "a minute, youre elves?!"),
("a sec, Ro'Sothian, you don't want to", "a sec, RoSothian, you dont want to"),
("a sword. I'm fairly sure you'll win.", "a sword. Im fairly sure youll win."),
("a true 'Kingdom of Wesnoth'. I... I", "a true Kingdom of Wesnoth. I... I"),
("aan ogras, us'll elp yoo!", "aan ogras, usll elp yoo!"),
("about trolls? I'm not sure I'd want to", "about trolls? Im not sure Id want to"),
("Actually... we won't be coming.", "Actually... we wont be coming."),
("Afraid you'll find out you're not of", "Afraid youll find out youre not of"),
("Ah, they don't scare me!", "Ah, they dont scare me!"),
("Ahh yes, that's better.", "Ahh yes, thats better."),
("Ahhh, I'm so tired.", "Ahhh, Im so tired."),
("All I'm saying is", "All Im saying is"),
("All right! Blast'n time!", "All right! Blastn time!"),
("All right, let's move out", "All right, lets move out"),
("All right, let's move out,", "All right, lets move out,"),
("all... but I'm sure none", "all... but Im sure none"),
("alliance, Earl Lanbec'h.", "alliance, Earl Lanbech."),
("Amazing, I haven't seen a", "Amazing, I havent seen a"),
("and arrows won't work.", "and arrows wont work."),
("and Earl Lanbec'h", "and Earl Lanbech"),
("and fight... What's this?", "and fight... Whats this?"),
("and hammers o' every dwarf", "and hammers o every dwarf"),
("and I don't think I", "and I dont think I"),
("and I— I'm stuck!", "and I— Im stuck!"),
("And look, he's gone. Now", "And look, hes gone. Now"),
("And now we'll never know", "And now well never know"),
("and undisturbed, Ro'Arthian.", "and undisturbed, RoArthian."),
("And what's the bad", "And whats the bad"),
("any better, we'll probably die", "any better, well probably die"),
("Anything you can't handle?", "Anything you cant handle?"),
("are arriving. They've surrounded us! We're doomed.", "are arriving. Theyve surrounded us! Were doomed."),
("are but children's tales... Still,", "are but childrens tales... Still,"),
("Argh! I'll just come", "Argh! Ill just come"),
("Argh! I'm dead! Well,", "Argh! Im dead! Well,"),
("Argh! I'm done. My", "Argh! Im done. My"),
("at least he's finally at", "at least hes finally at"),
("at least you're improving.", "at least youre improving."),
("attacks more. You're becoming too", "attacks more. Youre becoming too"),
("Awesome, let's go!", "Awesome, lets go!"),
("Aye! Down wi' the orcs!", "Aye! Down wi the orcs!"),
("Aye, it's still bandit", "Aye, its still bandit"),
("Aright then, we'll wait fa' later, eh?", "Aright then, well wait fa later, eh?"),
("be called 'Dragonbane'.", "be called Dragonbane."),
("be mad! I'll offer one", "be mad! Ill offer one"),
("be quiet, I'll explain it", "be quiet, Ill explain it"),
("be useful, I'll take it.", "be useful, Ill take it."),
("be... highly irregular.' Bah! I'll show you", "be... highly irregular.” Bah! Ill show you"),
("bet this wasn't the welcome", "bet this wasnt the welcome"),
("Black-Eye! We won't submit to", "Black-Eye! We wont submit to"),
("break free! Don't let that", "break free! Dont let that"),
("bridge yet, Cap'n?", "bridge yet, Capn?"),
("But don't you need", "But dont you need"),
("But hasn't Eloh told", "But hasnt Eloh told"),
("but it doesn't sound friendly.", "but it doesnt sound friendly."),
("but we dinna' ha' much of", "but we dinna ha much of"),
("But we don't want to", "But we dont want to"),
("but you haven't beat us", "but you havent beat us"),
("But... Asheviere, Garard's queen and Eldred's mother, seemed", "But... Asheviere, Garards queen and Eldreds mother, seemed"),
("calling you 'the Dragonbane'.", "calling you the Dragonbane."),
("can just 'pass through' a Drake", "can just pass through a Drake"),
("Can't our units", "Cant our units"),
("Capture Ro'Arthian.", "Capture RoArthian."),
("Careful, you don't know what's lurking in", "Careful, you dont know whats lurking in"),
("Chief! It's true, the", "Chief! Its true, the"),
("Chief, we can't be blowing", "Chief, we cant be blowing"),
("Chop 'em down. It's cool in", "Chop em down. Its cool in"),
("click on Li'sar", "click on Lisar"),
("coal that wi' melt this", "coal that wi melt this"),
("Come mortal, let's cross our", "Come mortal, lets cross our"),
("coming! Smash 'em good!", "coming! Smash em good!"),
("course you didn't. Thats why it's called sneaking.", "course you didnt. Thats why its called sneaking."),
("dares disturb Shek'kahan the Terrible?", "dares disturb Shekkahan the Terrible?"),
("Dead-Man's Ford", "Dead-Mans Ford"),
("Death of Al'Brock", "Death of AlBrock"),
("Death of Flar'Tar", "Death of FlarTar"),
("Death of Kapou'e", "Death of Kapoue"),
("Death of Li'sar", "Death of Lisar"),
("Death of Ro'Arthian", "Death of RoArthian"),
("Death of Ro'Sothian", "Death of RoSothian"),
("Defeat Lanbec'h", "Defeat Lanbech"),
("Delfador to Ur-Thorodor's castle", "Delfador to Ur-Thorodors castle"),
("died a hero's death, one", "died a heros death, one"),
("died... a warrior's death... You", "died... a warriors death... You"),
("do. I don't know why,", "do. I dont know why,"),
("do? We can't go much", "do? We cant go much"),
("doing? I haven't let you", "doing? I havent let you"),
("Don't kill me,", "Dont kill me,"),
("Don't make me", "Dont make me"),
("Don't try to", "Dont try to"),
("Don't we have", "Dont we have"),
("Don't worry about", "Dont worry about"),
("Don't worry Kaleh,", "Dont worry Kaleh,"),
("Don't you intend", "Dont you intend"),
("drama, but that's no excuse", "drama, but thats no excuse"),
("dwarf. But he's been beaten", "dwarf. But hes been beaten"),
("dwarves and stinkin' elves, we", "dwarves and stinkin elves, we"),
("dwarves, it don't matter!", "dwarves, it dont matter!"),
("eh? You won't find many", "eh? You wont find many"),
("elves, we can't trust them!", "elves, we cant trust them!"),
("enough. Well, let's get them!", "enough. Well, lets get them!"),
("envy your kind's prowess when", "envy your kinds prowess when"),
("especially where you'll be going,", "especially where youll be going,"),
("expect, Chief? They're elves after", "expect, Chief? Theyre elves after"),
("explain, Esanoo. We'll have to", "explain, Esanoo. Well have to"),
("Father, I'd like to", "Father, Id like to"),
("feel like I'm forgetting something.", "feel like Im forgetting something."),
("few here don't stand a", "few here dont stand a"),
("filthy elves! I'll...", "filthy elves! Ill..."),
("Finally! We'll fight at", "Finally! Well fight at"),
("Finally! You don't know how", "Finally! You dont know how"),
("First, why don't you tell", "First, why dont you tell"),
("for my family's memory, you", "for my familys memory, you"),
("for now we've got to", "for now weve got to"),
("forbidden lore you've been taught.", "forbidden lore youve been taught."),
("Free, I'm free, and", "Free, Im free, and"),
("Freedom! Don't worry about", "Freedom! Dont worry about"),
("from? I can't see a", "from? I cant see a"),
("frontier or it's all over!", "frontier or its all over!"),
("gave us, they're glowing!", "gave us, theyre glowing!"),
("GO HOME! AIN'T NUTTIN TO", "GO HOME! AINT NUTTIN TO"),
("go. Now let's see where", "go. Now lets see where"),
("gold! We don't need more!", "gold! We dont need more!"),
("grab him! Don't let him", "grab him! Dont let him"),
("Greetings from Kapou'e, Son of", "Greetings from Kapoue, Son of"),
("Grunt, and I'm done for!", "Grunt, and Im done for!"),
("guy. We aren't gonna hurt", "guy. We arent gonna hurt"),
("Ha! <i>You</i> don't trust <i>me</i>?", "Ha! <i>You</i> dont trust <i>me</i>?"),
("Haldric enters Southbay's sewer", "Haldric enters Southbays sewer"),
("Haldric, what's going on? What's the plan?", "Haldric, whats going on? Whats the plan?"),
("Haldric, you're too paranoid.", "Haldric, youre too paranoid."),
("hands of Kalenz's elves!", "hands of Kalenzs elves!"),
("have allied wi' the humans...", "have allied wi the humans..."),
("he disappeared. Let's find him", "he disappeared. Lets find him"),
("he go? Let's find him", "he go? Lets find him"),
("He's in his", "Hes in his"),
("He's raising our", "Hes raising our"),
("He's still breathing.", "Hes still breathing."),
("He's stirring.", "Hes stirring."),
("He's... he's still breathing!", "Hes... hes still breathing!"),
("heed the King's voice. My", "heed the Kings voice. My"),
("help you? You're not a", "help you? Youre not a"),
("Help! They're everywhere!", "Help! Theyre everywhere!"),
("Help, I'm drowning!", "Help, Im drowning!"),
("Hey look! It's a dwarf!", "Hey look! Its a dwarf!"),
("Hey look! It's a troll!", "Hey look! Its a troll!"),
("Hey look, it's a troll!", "Hey look, its a troll!"),
("Hey! Look who's back!", "Hey! Look whos back!"),
("Hey, don't light it up, I'm not safe!", "Hey, dont light it up, Im not safe!"),
("Hey, don't you always", "Hey, dont you always"),
("Hey, there's somebody hidden", "Hey, theres somebody hidden"),
("Hey, what's going on", "Hey, whats going on"),
("him — he's big, green", "him — hes big, green"),
("him. We don't want him", "him. We dont want him"),
("His brother Ro'Arthian is the", "His brother RoArthian is the"),
("Hm... Me le' no'w!", "Hm... Me le now!"),
("Hmph! You're just happy", "Hmph! Youre just happy"),
("Hold it! What's going on", "Hold it! Whats going on"),
("hold Southbay. We're done for!", "hold Southbay. Were done for!"),
("home, now we'll take yer", "home, now well take yer"),
("How'd they get", "Howd they get"),
("Huh? Didn't a messenger", "Huh? Didnt a messenger"),
("Huh? Who's there, who", "Huh? Whos there, who"),
("Huh?! Can't be, the", "Huh?! Cant be, the"),
("hundred, but don't go up,", "hundred, but dont go up,"),
("Hurry, friends, let's set up", "Hurry, friends, lets set up"),
("I almost can't believe it.", "I almost cant believe it."),
("I can't be finished", "I cant be finished"),
("I don't care, get", "I dont care, get"),
("I don't find that", "I dont find that"),
("I don't know, but", "I dont know, but"),
("I don't know, see", "I dont know, see"),
("I don't see how", "I dont see how"),
("I don't think diplomacy", "I dont think diplomacy"),
("I don't think I", "I dont think I"),
("I expect we'll be facing", "I expect well be facing"),
("I guess we'll just have", "I guess well just have"),
("I just don't know who", "I just dont know who"),
("I s'ppose we'll hav' to wade", "I sppose well hav to wade"),
("I think I'll fight the", "I think Ill fight the"),
("I think I'll say that", "I think Ill say that"),
("I think I'll take the", "I think Ill take the"),
("I think I'll wait a", "I think Ill wait a"),
("I think I've figured something", "I think Ive figured something"),
("I think I've found it.", "I think Ive found it."),
("I think I've got it.", "I think Ive got it."),
("I think you've the right", "I think youve the right"),
("I wasn't talking to", "I wasnt talking to"),
("I'd like to", "Id like to"),
("I'll do it, sir. I'll sacrifice myself", "Ill do it, sir. Ill sacrifice myself"),
("I'll not go", "Ill not go"),
("I'll recruit some", "Ill recruit some"),
("I'll take twenty-five", "Ill take twenty-five"),
("I'll tell them", "Ill tell them"),
("I'll try, sir.", "Ill try, sir."),
("I'm afraid, Kaleh,", "Im afraid, Kaleh,"),
("I'm always careful. I'll be back", "Im always careful. Ill be back"),
("I'm back, Kaleh.", "Im back, Kaleh."),
("I'm coming... coming...", "Im coming... coming..."),
("I'm fine. But", "Im fine. But"),
("I'm gonna make", "Im gonna make"),
("I'm here, chief!", "Im here, chief!"),
("I'm still not", "Im still not"),
("I'm thirsty... <i>Gulp", "Im thirsty... <i>Gulp"),
("I'm too young", "Im too young"),
("I've asked and", "Ive asked and"),
("I've found the", "Ive found the"),
("I've seen some", "Ive seen some"),
("if anything, it's our road!", "if anything, its our road!"),
("if you don't mind, I'll go with", "if you dont mind, Ill go with"),
("Iliah-Malal's body lay", "Iliah-Malals body lay"),
("Impossible! I canna' believe any", "Impossible! I canna believe any"),
("is departing. We're trapped!", "is departing. Were trapped!"),
("is I, Kapou'e, son of", "is I, Kapoue, son of"),
("is this 'Landar' you speak", "is this Landar you speak"),
("is this thing's daughter?", "is this things daughter?"),
("It couldna' been more", "It couldna been more"),
("It couldna' ha' been more", "It couldna ha been more"),
("it sure isn't gonna be", "it sure isnt gonna be"),
("It won't be said", "It wont be said"),
("It won't be that", "It wont be that"),
("it you wouldn't mind if", "it you wouldnt mind if"),
("it! We weren't fast enough.", "it! We werent fast enough."),
("It's a 'he', and yes, they're actually very", "Its a he, and yes, theyre actually very"),
("It's a dust", "Its a dust"),
("It's a heck", "Its a heck"),
("It's been... it's been years since I've been down", "Its been... its been years since Ive been down"),
("It's better than", "Its better than"),
("It's called 'The End', foul orc.", "Its called The End, foul orc."),
("It's cooler here,", "Its cooler here,"),
("It's just Tallin,", "Its just Tallin,"),
("It's locked, but", "Its locked, but"),
("It's no good,", "Its no good,"),
("It's no use", "Its no use"),
("It's not very", "Its not very"),
("It's Rakshas!", "Its Rakshas!"),
("It's talking to", "Its talking to"),
("It's the only", "Its the only"),
("It's time to", "Its time to"),
("It's too late!", "Its too late!"),
("It's too quiet...", "Its too quiet..."),
("It's very easy,", "Its very easy,"),
("It's... it's monstrous!", "Its... its monstrous!"),
("its some o' them cave-dwarves.", "its some o them cave-dwarves."),
("Kaleh, you can't just go", "Kaleh, you cant just go"),
("Keep of El'Ithsomir", "Keep of ElIthsomir"),
("kill Mal-Ravanal. He's here somewhere...", "kill Mal-Ravanal. Hes here somewhere..."),
("kill me, I'm not telling", "kill me, Im not telling"),
("kin would ha' helped a", "kin would ha helped a"),
("Krawg sme' o'cz in iz 'ave!", "Krawg sme ocz in iz ave!"),
("Let's clear out", "Lets clear out"),
("Let's finish off", "Lets finish off"),
("Let's make them", "Lets make them"),
("Let's put those", "Lets put those"),
("Let's send these", "Lets send these"),
("Living... Soon, you'll be more", "Living... Soon, youll be more"),
("long as they're in charge you'll have to", "long as theyre in charge youll have to"),
("long enough. Let's go!", "long enough. Lets go!"),
("Look, there's a dragon", "Look, theres a dragon"),
("looks like he's been beaten", "looks like hes been beaten"),
("looks like he's in bad", "looks like hes in bad"),
("Lord El'Isomithir", "Lord ElIsomithir"),
("M' 'u!", "M u!"),
("makes your Master's punishment from", "makes your Masters punishment from"),
("Mal-Ravanal's Capital", "Mal-Ravanals Capital"),
("Malifor the Great's Study", "Malifor the Greats Study"),
("Many ships. We're being invaded!", "Many ships. Were being invaded!"),
("mask. You... you're not with", "mask. You... youre not with"),
("Maybe they won't be hostile.", "Maybe they wont be hostile."),
("Maybe they'll clear it", "Maybe theyll clear it"),
("me, Kaleh, I'm dying...", "me, Kaleh, Im dying..."),
("mentioned I can't float.", "mentioned I cant float."),
("mine, and don't touch it!", "mine, and dont touch it!"),
("Monsters! We're being invaded", "Monsters! Were being invaded"),
("Move Kapou'e to the", "Move Kapoue to the"),
("Move Li'sar next to", "Move Lisar next to"),
("Move Li'sar to another", "Move Lisar to another"),
("Move Li'sar to capture", "Move Lisar to capture"),
("Move Li'sar to the", "Move Lisar to the"),
("much as I'd like to, we don't have time", "much as Id like to, we dont have time"),
("Must obey... Can't resist... I...", "Must obey... Cant resist... I..."),
("Must... Can't... Must... Help", "Must... Cant... Must... Help"),
("My love, I'll be there", "My love, Ill be there"),
("my my, what's in that", "my my, whats in that"),
("never mind, I'll get you", "never mind, Ill get you"),
("no choice... I've never tasted", "no choice... Ive never tasted"),
("no game, Li'sar!", "no game, Lisar!"),
("no ghosts, I'll take it.", "no ghosts, Ill take it."),
("No you won't, you soldier", "No you wont, you soldier"),
("No! I'll not go", "No! Ill not go"),
("No! It's all over!", "No! Its all over!"),
("no! Please don't die!", "no! Please dont die!"),
("No!! They'll kill me!", "No!! Theyll kill me!"),
("No, $unit.name can't die now!", "No, $unit.name cant die now!"),
("No, don't...", "No, dont..."),
("No, it's an elf!", "No, its an elf!"),
("No, we can't. But for", "No, we cant. But for"),
("No. I can't ask you", "No. I cant ask you"),
("No. It can't be!", "No. It cant be!"),
("no. You don't understand! We", "no. You dont understand! We"),
("Noo!! I can't be promoted", "Noo!! I cant be promoted"),
("Nooo! Don't kill me,", "Nooo! Dont kill me,"),
("not say, 'To err is", "not say, “To err is"),
("now $intl_ally_name, I'm busy.", "now $intl_ally_name, Im busy."),
("now between Iliah-Malal's army and", "now between Iliah-Malals army and"),
("Now let's get going,", "Now lets get going,"),
("Now let's make mush", "Now lets make mush"),
("now that you've triggered it.", "now that youve triggered it."),
("now, and don't look back!", "now, and dont look back!"),
("now, Father. I'm a little", "now, Father. Im a little"),
("Nym! No! Don't open—", "Nym! No! Dont open—"),
("Nym. I didn't hear you", "Nym. I didnt hear you"),
("of here. Don't make me", "of here. Dont make me"),
("of here. We're trapped!", "of here. Were trapped!"),
("of surrender! Don't kill me...", "of surrender! Dont kill me..."),
("of the Ka'lian do... How", "of the Kalian do... How"),
("of this. I'm feeling ill!", "of this. Im feeling ill!"),
("of this. I'm out of", "of this. Im out of"),
("of time... We'll never beat", "of time... Well never beat"),
("off the 'or the orcs", "off the or the orcs"),
("Oh no, I'm defeated.", "Oh no, Im defeated."),
("on boys, let's give it", "on boys, lets give it"),
("on brother, let's get outta", "on brother, lets get outta"),
("one escape. Let's hope they don't all!", "one escape. Lets hope they dont all!"),
("One of Iliah-Malal's creatures. So", "One of Iliah-Malals creatures. So"),
("one of Malifor's experiments.", "one of Malifors experiments."),
("one of Tallin's men...", "one of Tallins men..."),
("Oooooh, cool, it's a drake!", "Oooooh, cool, its a drake!"),
("Orcs sighted! They've seized the", "Orcs sighted! Theyve seized the"),
("Orcs, kill'em all! Humans,", "Orcs, killem all! Humans,"),
("orcs chest! It's filled with", "orcs chest! Its filled with"),
("our hammers can't manage.", "our hammers cant manage."),
("Ow, I'm stuck!", "Ow, Im stuck!"),
("Perhaps he didn't want to", "Perhaps he didnt want to"),
("Phew, it's hot down", "Phew, its hot down"),
("Pillage! Let's plunder these", "Pillage! Lets plunder these"),
("powerful, why can't you destroy", "powerful, why cant you destroy"),
("Prestim's walls are rock-hard, they'll waste themselves", "Prestims walls are rock-hard, theyll waste themselves"),
("pretty small, let's see if", "pretty small, lets see if"),
("Price?! Don't insult us,", "Price?! Dont insult us,"),
("protect us, they're elves!", "protect us, theyre elves!"),
("Put Ro'Sothian into that", "Put RoSothian into that"),
("Quick, honey, we've got to", "Quick, honey, weve got to"),
("quiet Zhul, I'll explain it", "quiet Zhul, Ill explain it"),
("ran away, didn't you?", "ran away, didnt you?"),
("reinforcements coming! We're trapped! All", "reinforcements coming! Were trapped! All"),
("Relax, he's a friend.", "Relax, hes a friend."),
("remain here we'll die.", "remain here well die."),
("Reserves! We can't let them", "Reserves! We cant let them"),
("Resist until Dacyn's return in", "Resist until Dacyns return in"),
("Resist until Dacyn's return tomorrow", "Resist until Dacyns return tomorrow"),
("right boys, let's go!", "right boys, lets go!"),
("right people, let's move out!", "right people, lets move out!"),
("Right. We'll probably have", "Right. Well probably have"),
("Ro'Arthian, are you", "RoArthian, are you"),
("Ro'Arthian, bah! Don't utter that", "RoArthian, bah! Dont utter that"),
("Ro'Arthian, send a", "RoArthian, send a"),
("Ro'Sothian, is that", "RoSothian, is that"),
("rumbling. And what's that roaring", "rumbling. And whats that roaring"),
("running, or we'll be fish-bait", "running, or well be fish-bait"),
("said that you'd been here", "said that youd been here"),
("save us, it's... it's an elf.", "save us, its... its an elf."),
("second thought, it's better to", "second thought, its better to"),
("secret door. Let's see where", "secret door. Lets see where"),
("secrets of Crelanu's book...", "secrets of Crelanus book..."),
("shall spoil, we'll starve!", "shall spoil, well starve!"),
("She's just full", "Shes just full"),
("She's... She's beautiful.", "Shes... Shes beautiful."),
("shut up. Let's go kill", "shut up. Lets go kill"),
("Sigh, we'll talk later.", "Sigh, well talk later."),
("Sister! Don't you recognize", "Sister! Dont you recognize"),
("skeletons! Where?! Let's go burn 'em all!", "skeletons! Where?! Lets go burn em all!"),
("So far it's been danger", "So far its been danger"),
("so sure it's that simple,", "so sure its that simple,"),
("so tough don't you? Well", "so tough dont you? Well"),
("So you don't have the", "So you dont have the"),
("So, d'ya want me", "So, dya want me"),
("so. I can't see anything.", "so. I cant see anything."),
("someday maybe we'll meet again.", "someday maybe well meet again."),
("Someone's coming. Quick,", "Someones coming. Quick,"),
("somewhere. We can't be sure.", "somewhere. We cant be sure."),
("Sorry, won't do it", "Sorry, wont do it"),
("sounds good. I'll stay here", "sounds good. Ill stay here"),
("Spiders aren't insects.", "Spiders arent insects."),
("Stalrag from Ro'Sothian.", "Stalrag from RoSothian."),
("stand still you're a dead", "stand still youre a dead"),
("stay and 're-educate' these un-orcs.", "stay and re-educate these un-orcs."),
("stinking trees, we'll show you!", "stinking trees, well show you!"),
("stop him. Let's go!", "stop him. Lets go!"),
("sure there aren't any spiders?", "sure there arent any spiders?"),
("Sure, we'll help you", "Sure, well help you"),
("tale, for it's worth it.", "tale, for its worth it."),
("Tallin, we can't do it", "Tallin, we cant do it"),
("Tallin, we ha' failed to", "Tallin, we ha failed to"),
("Tell him it's time.", "Tell him its time."),
("tell me what's going on", "tell me whats going on"),
("tell you, Kapou'e?", "tell you, Kapoue?"),
("than goblins. We'll break them!", "than goblins. Well break them!"),
("Thank you. I'm sure the", "Thank you. Im sure the"),
("Thanks, father. Don't worry, I'll take care", "Thanks, father. Dont worry, Ill take care"),
("That hurts. Let's try not", "That hurts. Lets try not"),
("That isn't him...", "That isnt him..."),
("that snow...? We're doomed!", "that snow...? Were doomed!"),
("that this isn't going as", "that this isnt going as"),
("Thats right. I'll be coming", "Thats right. Ill be coming"),
("Thats... that's the Rod", "Thats... thats the Rod"),
("The 'true people' speak through", "The true people speak through"),
("The dragon's cave has", "The dragons cave has"),
("the happier I'll be.", "the happier Ill be."),
("the horizon. Jevyan's fleet is here! It's all over.", "the horizon. Jevyans fleet is here! Its all over."),
("The Ka'lian", "The Kalian"),
("The maker's mark is", "The makers mark is"),
("the sewer. We're doomed!", "the sewer. Were doomed!"),
("the ship isn't here yet.", "the ship isnt here yet."),
("the swamp. I'm under five", "the swamp. Im under five"),
("The world won't miss him", "The world wont miss him"),
("them sacks o' bones.", "them sacks o bones."),
("Then it's time to", "Then its time to"),
("Then let's kill them!", "Then lets kill them!"),
("then return Li'sar to the", "then return Lisar to the"),
("Then, into Southbay's sewer.", "Then, into Southbays sewer."),
("there alone. She'll kill you!", "there alone. Shell kill you!"),
("these tunnels aren't as bad", "these tunnels arent as bad"),
("They're coming this", "Theyre coming this"),
("They're definitely of the 'attack first, ask questions later' variety.", "Theyre definitely of the attack first, ask questions later variety."),
("They're here!", "Theyre here!"),
("They're raising the", "Theyre raising the"),
("They're... the humans", "Theyre... the humans"),
("thing just won't stay dead!", "thing just wont stay dead!"),
("This can't be the", "This cant be the"),
("This rabble won't be a", "This rabble wont be a"),
("this real? I'm coming, I'm coming.", "this real? Im coming, Im coming."),
("this thing? It's huge!", "this thing? Its huge!"),
("This trash's gone.", "This trashs gone."),
("This'll splinter your", "Thisll splinter your"),
("those orcs can't get to", "those orcs cant get to"),
("thousand, and I'll go no", "thousand, and Ill go no"),
("Tirigaz. But what's going on?", "Tirigaz. But whats going on?"),
("to back! Don't let them", "to back! Dont let them"),
("to his master's aid. When", "to his masters aid. When"),
("to move Li'sar", "to move Lisar"),
("to say, 'I told you so'?", "to say, “I told you so”?"),
("to think. It's all so", "to think. Its all so"),
("to you, Kapou'e, our imbecile", "to you, Kapoue, our imbecile"),
("too late! They're burning the", "too late! Theyre burning the"),
("too late. We've taken what", "too late. Weve taken what"),
("too long! We'll never be", "too long! Well never be"),
("too! Chief doesn't let me", "too! Chief doesnt let me"),
("Treasury! Cool, let's go loot", "Treasury! Cool, lets go loot"),
("tribe anymore, Kapou'e.", "tribe anymore, Kapoue."),
("troll hole? Didn't you?", "troll hole? Didnt you?"),
("trolls. But you'll see, Griknagh", "trolls. But youll see, Griknagh"),
("Uh... I don't think so.", "Uh... I dont think so."),
("Undead. Bah! We're pros at", "Undead. Bah! Were pros at"),
("Ungrateful minx! I'm sorely tempted", "Ungrateful minx! Im sorely tempted"),
("us <i>you</i> won't come back.", "us <i>you</i> wont come back."),
("us but I'm afraid we can't help you.", "us but Im afraid we cant help you."),
("Very well. I'll do my", "Very well. Ill do my"),
("Very well. We'll go south", "Very well. Well go south"),
("victory against Al'Tar.", "victory against AlTar."),
("was fun, wasn't it, Grüü?", "was fun, wasnt it, Grüü?"),
("way already! We're running out", "way already! Were running out"),
("we die, it's our only", "we die, its our only"),
("We don't have any", "We dont have any"),
("We don't. Not everything", "We dont. Not everything"),
("we go, let's give this", "we go, lets give this"),
("We haven't a moment", "We havent a moment"),
("we should ha' allied wi' the humans...", "we should ha allied wi the humans..."),
("We'll ask later,", "Well ask later,"),
("We'll be back,", "Well be back,"),
("We'll go through", "Well go through"),
("We'll make sure.", "Well make sure."),
("We're in. Now:", "Were in. Now:"),
("We're surrounded! I", "Were surrounded! I"),
("We're surrounded! The", "Were surrounded! The"),
("We're through the", "Were through the"),
("We've captured all", "Weve captured all"),
("We've cleared the beach. Let's return to", "Weve cleared the beach. Lets return to"),
("We've defeated the orcs. Let's rig the", "Weve defeated the orcs. Lets rig the"),
("We've slain the", "Weve slain the"),
("we? I can't see where", "we? I cant see where"),
("Well, fine, I'll hear your", "Well, fine, Ill hear your"),
("Well, it's pointless to", "Well, its pointless to"),
("Well, let's see what's behind it.", "Well, lets see whats behind it."),
("Well, there's only one", "Well, theres only one"),
("Well, what's behind the", "Well, whats behind the"),
("Well, where's their leader? I don't see him.", "Well, wheres their leader? I dont see him."),
("well. It isn't as if we weren't expecting this.", "well. It isnt as if we werent expecting this."),
("Wha'? Yah fail'd to give", "Wha? Yah faild to give"),
("what cause ha' I heard naught o' this?", "what cause ha I heard naught o this?"),
("What in Moradin's name are", "What in Moradins name are"),
("What'd he want? And why'd you have", "Whatd he want? And whyd you have"),
("What's going on", "Whats going on"),
("What's that strange", "Whats that strange"),
("What's this? A", "Whats this? A"),
("What's this? You", "Whats this? You"),
("What's up big", "Whats up big"),
("What's with this 'Master' business? It's starting to", "Whats with this Master business? Its starting to"),
("What's wrong, Kaleh? Don't you trust", "Whats wrong, Kaleh? Dont you trust"),
("What... Kapou'e! What in", "What... Kapoue! What in"),
("What? What's going on", "What? Whats going on"),
("Whenever you're on a", "Whenever youre on a"),
("Who is 'they'?", "Who is they?"),
("who murdered El'Isomithir!", "who murdered ElIsomithir!"),
("Why can't you wield", "Why cant you wield"),
("Why d'ye say that?", "Why dye say that?"),
("Why don't you try 'knocking'?", "Why dont you try knocking?"),
("Why? What's wrong?", "Why? Whats wrong?"),
("will eat you' part.", "will eat you part."),
("will surely appear.' It looks", "will surely appear.” It looks"),
("with them, Kapou'e, they aren't going to", "with them, Kapoue, they arent going to"),
("Yeah, I can't wait to", "Yeah, I cant wait to"),
("Yeah, we'll be heroes!", "Yeah, well be heroes!"),
("yer mouth! Let's just get 'em.", "yer mouth! Lets just get em."),
("Yes master, I'll make him", "Yes master, Ill make him"),
("Yes, I'll take it.", "Yes, Ill take it."),
("Yes, I'm still figuring", "Yes, Im still figuring"),
("Yess! It's the elves", "Yess! Its the elves"),
("you are, I'll come up", "you are, Ill come up"),
("You aren't actually going", "You arent actually going"),
("You don't know where", "You dont know where"),
("You don't turn your", "You dont turn your"),
("you idiot, I'm still over", "you idiot, Im still over"),
("you if you'd 'remove' just our", "you if youd remove just our"),
("you sure that's wise?", "you sure thats wise?"),
("you sure you're okay?", "you sure youre okay?"),
("you the undead's prisoners?", "you the undeads prisoners?"),
("You won't get much", "You wont get much"),
("You're going to", "Youre going to"),
("You're in no", "Youre in no"),
("You're making a", "Youre making a"),
("You're really beat", "Youre really beat"),
("You're right, Elenia,", "Youre right, Elenia,"),
("You're right, Hamel,", "Youre right, Hamel,"),
("You're telling me.", "Youre telling me."),
("You've been this", "Youve been this"),
("You've fought orcs", "Youve fought orcs"),
("You've learned well, Li'sar!", "Youve learned well, Lisar!"),
("You've learned well,", "Youve learned well,"),
("You've put my", "Youve put my"),
("you. Now let's get going,", "you. Now lets get going,"),
("young prince, you're not as", "young prince, youre not as"),
("your enemies fall.' Grave robbing", "your enemies fall. Grave robbing"),
("your face? We've never seen", "your face? Weve never seen"),
("Your word can't be trusted.", "Your word cant be trusted."),
),
# End of pass 2, bulk apostrophe conversion
}
# Speak, if all argument files are newer than this timestamp
# Try to use UTC here
# date --utc "+%s # %c"
timecheck = 1283156523 # Mo 30 Aug 2010 08:22:03 UTC
import os, sys, time, stat, re
try:
from multiprocessing import Pool, cpu_count
def parallel_map(*args, **kw):
pool = Pool(cpu_count())
return pool.map(*args, **kw)
except ImportError:
print "Failed to import 'multiprocessing' module. Multiple cpu cores won't be utilized"
parallel_map = map
def process_file(path):
before = open(path, "r").read()
decommented = re.sub("#.*", "", before)
lines = before.split('\n')
for (domain, fixes) in stringfixes.items():
# In case of screwed-up pairs that are hard to find, uncomment the following:
#for fix in fixes:
# if len(fix) != 2:
# print fix
for (old, new) in fixes:
if old is new:
#complain loudly
print "pofix: old string\n\t\"%s\"\n equals new string\n\t\"%s\"\nexiting." % (old, new)
sys.exit(1)
#this check is problematic and the last clause is added to prevent false
#positives in case that new is a substring of old, though this can also
#lead to "real" probs not found, the real check would be "does replacing
#old with new lead to duplicate msgids? (including old ones marked with #~)"
#which is not easily done in the current design...
elif new in decommented and old in decommented and not new in old:
print "pofix: %s already includes the new string\n\t\"%s\"\nbut also the old\n\t\"%s\"\nthis needs handfixing for now since it likely creates duplicate msgids." % (path, new, old)
else:
for (i, line) in enumerate(lines):
if line and line[0] != '#':
lines[i] = lines[i].replace(old, new)
after = '\n'.join(lines)
if after != before:
print "pofix: %s modified" % path
# Save a backup
os.rename(path, path + "-bak")
# Write out transformed version
ofp = open(path, "w")
ofp.write(after)
ofp.close()
return 1
else:
return 0
if __name__ == '__main__':
newer = 0
modified = 0
pocount = 0
files = []
for path in sys.argv[1:]:
if not path.endswith(".po") and not path.endswith(".pot") and not path.endswith(".cfg"):
continue
pocount += 1
# Notice how many files are newer than the time check
statinfo = os.stat(path)
if statinfo.st_mtime > timecheck:
newer += 1
files.append(path)
modified = sum(parallel_map(process_file, files))
print "pofix: %d files processed, %d files modified, %d files newer" \
% (pocount, modified, newer)
if pocount > 1 and newer == pocount:
print "pofix: script may be obsolete"