Question
Design and implement a better Web page for translating English text into Pirate talk. The JavaScript code for performing the translation is provided below. The
Design and implement a better Web page for translating English text into Pirate talk. The JavaScript code for performing the translation is provided below. The PHRASES array contains English words/phrases and their pirate translations. The array is used by the Translate function, which takes a string as input, searches that string for substrings from PHRASES, and replaces the English phrases with their pirate translations.
The Web page should include a text area where the user can enter text, a button or clickable image to initiate the translation, and another text area where the translated text will appear. Feel free to be creative, adding images or embellishments to the page and expanding the English-Pirate vocabulary in PHRASES.
PHRASES = [["hello", "ahoy"], ["hi", "yo-ho-ho"], ["pardon me", "avast"],
["excuse me", "arrr"],
["my", "me"], ["friend", "me bucko"], ["sir", "matey"],
["madam", "proud beauty"], ["miss", "comely wench"],
["stranger", "scurvy dog"], ["officer", "foul blaggart"],
["where", "whar"], ["is", "be"], ["the", "th'"], ["you", "ye"],
["tell", "be tellin'"], ["know", "be knowin'"],
["how far", "how many leagues"], ["old", "barnacle-covered"],
["attractive", "comely"], ["happy", "grog-filled"],
["nearby", "broadside"], ["restroom", "head"], ["restaurant", "galley"],
["hotel", "fleabag inn"], ["pub", "Skull & Scuppers"],
["bank", "buried trasure"]
];
function Capitalize(str)
// Returns: a copy of str with the first letter capitalized
{
return str.charAt(0).toUpperCase() + str.substring(1);
}
function Translate(text)
// Returns: a copy of text with English phrases replaced by piratey equivalemts
{
for (var i = 0; i < PHRASES.length; i++) {
var toReplace = new RegExp("\\b"+PHRASES[i][0]+"\\b", "i");
var index = text.search(toReplace);
while (index != -1) {
if (text.charAt(index) >= "A" && text.charAt(index) <= "Z") {
text = text.replace(toReplace, Capitalize(PHRASES[i][1]));
}
else {
text = text.replace(toReplace, PHRASES[i][1]);
}
index = text.search(toReplace);
}
}
return text;
Step by Step Solution
3.53 Rating (163 Votes )
There are 3 Steps involved in it
Step: 1
Given below is the html code with inline css and javascript that together comprises the Web pa...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Document Format ( 2 attachments)
6093f72ea4b9c_24333.pdf
180 KBs PDF File
6093f72ea4b9c_24333.docx
120 KBs Word File
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started