Make A Translator Like Pig Latin But Slightly Different?

Feb 4, 2011

I have developed my own fake language like pig latin but ever so slightly different, I want to make a translator for it as there are so many for pig latin,english-my language:

1: put the first letter at the end (hello becomes elloh)
2: put an 'a' 2 letters in (elloh becomes elaloh)

obviously if the inputted word had a capital letter at the begining, then the new first letter should be in capitals, and the translator should be able to translate whole sentences not just word by word,I have downloaded countless javascript/html files for pig latin translating because obviously the first step for translating to the 2 languages is the same and ive managed to stop it adding the 'ay' or 'way' to the end of the word as it is in pig latin bu i dont think ive done it very efficiently?

View 1 Replies


ADVERTISEMENT

Latin Encoding In Ajax

Aug 1, 2006

I am trying to fill a dropdown menu with ajax, but the table
contains latin characters. In mozilla i get a weird black character
instead, and in internet explorer the whole code breaks because if a
word ends in a latin character then it ignores the <bri put on the
end, therefore affecting my data logic.

I am using results = http.responseText.split("<br>"); as a delimiter.

Is there a way to fix this without resorting to using xml encoding?

View 2 Replies View Related

Pig Latin Programming In JAVA?

Jun 5, 2009

I have to develop a program for translating a word in english into pig latin, I have most of it done, it runs but I can't make it define if the first letter see if it's a consonant or not, if it's a consonant take the consonant out and put"ay" at the end and if it's not consonant just put the "ay" at the end of the word, and it has to give an error message if user puts in more than one word, it's done in 2 classes, been stuck on this for hours now have done a lot of research but seems like everyone is doing a more advanced program. Here's my program:

First class
public class piglataintran
{
private String translate;

[code]....

View 1 Replies View Related

Yet Another Code For Pig Latin Converter?

Nov 14, 2011

I have to convert english to pig latin for an assignment. I am having trouble with my code.The assignment is that I have 2 separated functions on a page - one that does an individual word only and the other that will convert a whole phrase.I am getting error messages but I cannot figure them out. I guess I have banged my head against the wall too many times to count over this code.

Here is my code so far:

<html>
<head>
<script type="text/javascript" src="convert.js">

[code]....

View 14 Replies View Related

Automatically Submitting A Url To A Translator

Mar 31, 2009

I'm a novice in javascript programming. I need to create a program that automatically sends websites to a free translating site (the part where it asks you to input a url for website translation), and automatically redirect the user to the translated site. I basically just need to know how to send the url to that box, and submit the result, and redirect the user there.

View 2 Replies View Related

Number To Word Translator

Aug 22, 2002

Don't know if there is one of these online, so I made me own. Simple function that outputs a number as words. First argument is the number, second argument is flag (default = false) that controls whether output is cardinal or ordinal - as in "one" or "first".

Goodness knows if I have the grammer correct, especially when the numbers get big. Enjoy!

LIMITS:

1) Doesn't work with WebTV or below NS 4. Changing the large literal array into a common array should fix that, but I didn't bother.

2) Converts number into an integer before wording number. So, no "one point forty-five" stuff. This function is a good start for anyone who wants to do that though.

3) Always returns, "zero" for 0. Couldn't find cardinal equivalent to "zero"... zeroeth?

/*
Num2Word, ouputs written number in human language format
ARGUMENTS:
-----------
Nbr: num, the number to be worded. This number is converted into an integer.
Crd: bol, flags whether output is cardinal or ordinal number. Cardinal is used when describing the order of items, like "first" or "second" place.
*/
function Num2Word(num,fmt) {
//_ arguments
num = Math.round(num).toString(); // round value
if (num == 0) return 'zero' // if number given is 0, return and exit
//_ locals
// word numbers
var wnums = [['hundred','thousand','million','billion','trillion','zillion'],['one','first','ten','','th'],['two','second','twen',0,0],['three','third','thir',0,0],['four','fourth',0,0,0],['five','fifth','fif',0,0],['six','sixth',0,0,0],['seven','seventh',0,0,0],['eight','eighth','eigh',0,0],['nine','ninth',0,0,0],['ten',],['eleven',],['twelve','twelfth'],['thirteen',],['fourteen',],['fifteen',],['sixteen',],['seventeen',],['eighteen',],['nineteen',]];
// digits outside triplets
var dot = (num.length % 3) ? num.length % 3 : 3;
// number of triplets in number
var sets = Math.ceil(num.length/3);
// result string, word as number
var rslt = ''
//_ convert every three digits
for (var i = 0; i < sets; i++) { // for each set of triplets
// capture set of numbers up to three digits
var subt = num.substring((!i) ? 0 : dot + (i - 1) * 3,(!i) ? dot : dot + i * 3);
if (subt != 0) { // if value of set is not 0...
var hdec = (subt.length > 2) ? subt.charAt(0) : 0; // get hundreds digit
var ddec = subt.substring(Math.max(subt.length - 2,0),subt.length); // get double digits
var odec = subt.charAt(subt.length - 1); // get one's digit
// hundreds digit
if (hdec != 0) rslt += ' ' + wnums[hdec][0] + '-hundred ' + ((fmt && ddec == 0) ? 'th' : '');
// add double digit
if (ddec < 20 && 9 < ddec) { // if less than 20...
// add double digit word
rslt += ' ' + ((fmt) ? ((wnums[ddec][1]) ? wnums[ddec][1] : wnums[ddec][0] + 'th') : wnums[ddec][0]);
} else { // otherwise, add words for each digit...
// add "and" for last set without a tens digits
if ((0 < hdec || 1 < sets) && i + 1 == sets && 0 < ddec && ddec < 10) rslt += 'and '
// tens digit
if (19 < ddec) rslt += wnums[ddec.charAt(0)][(wnums[ddec.charAt(0)][2]) ? 2 : 0] + ((i + 1 == sets && odec == 0 && fmt) ? 'tieth' : 'ty') + ((0 < odec) ? '-' : ' ');
// one's digit
if (0 < odec) rslt += wnums[odec][(i + 1 == sets && fmt) ? 1 : 0];
}
// add place for set
if (i + 1 < sets) rslt += ' ' + wnums[0][sets - i - 1] + ' ' // if not last set, add place
} else if (i + 1 == sets && fmt) { // otherwise, if this set is zero, is the last set of the loop, and the format (fmt) is cardinal
rslt += 'th' // add cardinal "th"
}
}
//_ return result
return rslt
}


Test the result of various valies like so


for (var i = 0; i < 50; i++) {
var x = Math.round(Math.random() * 5000000);
document.write(x,' -> ' + Num2Word(x).bold(),'<BR>');
}

Use this function towards whatever means you deem necessary. Pease credit me, Bemi Faison, if you use this script.

View 3 Replies View Related

Find Code For Translator?

Jun 6, 2009

I am in the process of creating a website and I want to include a translator and I do not know where to find the code for such a thing.

View 2 Replies View Related

Google Translator API And Search Query?

Nov 21, 2010

Imagine the following input:

Code:

<form action="search.php" method="get">
Search: <input type="text" name="search" />
<input type="hidden" name="searchOriginal" value="search" />

[code].....

What I would like to do is: Use google AJAX API to see if the search string (search) is different of english. I would like to translate it and send it like that to search.php. So it would appear already translated like this in the URL: search.php?search=translatedString. And search.php would also see it translated.

View 6 Replies View Related

Slightly Advanced Exception Handling?

Aug 12, 2010

I'm trying to develop proper exception handling for a javascript framework I'm developing but I keep hitting an annoying dead end: caller and line numbers / stack trace.I have a basic exception class:

Code:

/**
* Exception.js
*
* @classException

[code].....

The problem is that the console.trace() function returns only one line: "log", referring to ExceptionHandler.log(e) (at least in webkit). What I'd love to do is have the Exception class get information as to (at the very least) what called it and also, although perhaps less viable, the line number it was called on. I don't think the line number is going to work though. I would _like_ this to happen automatically, but if I have to include another argument called_from it won't be the end of the world. I know about arguments.caller but this is depreciated (as of ECMAScript 1.3 (?)).

View 5 Replies View Related

JQuery :: Expert To Slightly Modify Plugin?

Jan 4, 2010

I'm using the newest version of jQuery

[Code]...

It is a "content slider" that rotates content "slides". It is setup to auto rotate on a set time, and you can also hit the previous/next buttons to move through the slides. This has been working great. Now I have the need for a pause button that will stop the auto rotate. I think this should be fairly easy for someone familiar with javascript and jQuery.

View 3 Replies View Related

JQuery :: Stationary But Slightly Rotated Divs?

Aug 26, 2010

I am building a gallery for a client w/an admin etc. But visually she would like the images to be slightly rotated but stationary not animated. is there a way to do this with jquery here is a link to a rough draft.[URL]... so basically I want each of the images to be slightly rotated.

View 2 Replies View Related

Onresize Pereserve Aspect Ratio Slightly Off In IE?

Mar 31, 2010

so im almost finished my first site! very excited. its for my dads business, hes a screening contractor.actually i doubt he will get any business out of it, even once we get our real domain name and everything because i don't even know how to get Google to like it. its OK though, its mainly just a practice site for me anyways before i make a resume site for myself. anyways, this mayt sound like a flash question but i asked on flash sites and they have no idea, and i think it has more to do with how i embedded the flash. yoy see, it consists of 3 divs, an html content area, and a flash banner and a flash menu, which stretch depending on the window size to keep their aspect ratio. its that streachyness that i believe is causing the problem. everything works exactly as planned in Firefox, chrome, and pure flash player. but in IE, safari and opera, the size and position of things are way messed up! (only really care about IE). the edges of dynamic text are slightly to the left or right and hanging behind things because of it, same with some movie clips and when i didn't want things to appear on the stage i set their x position to be the length of the stage,

i think that ie is calculating the size onresize incorrectly. heres the site, take a look at the the script file:[URL]..

View 1 Replies View Related

Does Google Transliteration (not Translator) Support German, Swedish Language

Apr 28, 2011

I found Google Transliteration, a very good tool to reproduce the sounds of a sentence in a different language.

Reference:

[URL]

It supports approx. 22 languages. how does make it to support German and Swedish too. I cant see these languages there.

View 1 Replies View Related

JQuery :: Create Buttons That Slide Onto Screen And Then Animate Slightly When Mouse Over?

Oct 21, 2010

I've been trying to find a jQuery that will have buttons float from left to right onto a page, then grow a little / shrink back to normal size on mouseover.

I've found lots of things that are predominantly for drop down menus - that's not really it.

Using my (limited) javascript skills I've modified a script that moves buttons or divs onto a page but it looks very dull. Powerpoint-like even.

Here's a link: [URL]

All the buttons need to do is jump to another page - the background image does not need to change at all / slide out or anything like that.

So basically what I'm looking for is a pointer to a jQuery thingy [!] that will do the above while looking a lot snazzier

View 1 Replies View Related

Changing Location.href - Push The Pdf Generator To A Slightly Different Url Which Would Remove The Offending Link

Apr 28, 2011

I'm using a service to remotely create a pdf - it creates a pdf of the page you're on. Unfortunately that includes the link as well. I'd like to push the pdf generator to a slightly different url which would remove the offending link. The link I have is:

[Code]....

but it is not fooled! It seems I need to edit location.href but I don't know how to do it!!

View 2 Replies View Related

Google Maps API - Make A Map That Lets The User Click The Map To Make A Pin And Write A Description

Jan 27, 2010

My objective is to make a map that lets the user click the map to make a pin and write a description. Like this [URL]

View 13 Replies View Related

JQuery :: If Number Is Below 5.5 Make It Red - Otherwise Make It Green - Multiple Classes

Dec 8, 2011

I have several classes named 'ratings_colored'. They all contain a number from 1 to 10. If the number is below 5.5, the number should become red. If not it should become green.

The code below works, but if the first .ratings_colored is higher than 5.5 it will make ALL the classes green. Even the numbers below 5.5! I tried using the 'this' but it didn't work either.

$(document).ready(function () {

View 2 Replies View Related

Make A Default Empty Value And Force Users To Make A Decision?

Dec 2, 2009

How Can i take this to make a default empty value and force users to make a decision?

<select id="preservetitletest"
name="titletest"
dojoType="$testWidget"
style="width:50%;font-family:Courier;"

[Code]....

View 1 Replies View Related

Clicking A Button To Make Something Appear, And Then Clicking It Again To Make It Dis?

Mar 4, 2010

so I have a button that makes a table appear absolutely(dynamically), and I was wondering how would I go about making it disappear once I made it appear.

View 3 Replies View Related

How Can I Make A Poll

Jul 20, 2005

Does anybody know how i make a script to make a poll? I mean a small poll
when you can choose yes or no?

View 4 Replies View Related

Make Changes To An XML File

May 4, 2011

I am trying to make changes (add/remove nodes, insert text) to an XML file using JavaScript. So far I can display the content of the XML file, but when I try to add/remove nodes it does not seem to work. Here is my code for adding nodes(just followed an example from w3s):

[Code]...

View 3 Replies View Related

Make Editable H3 Tag

May 20, 2010

i have some mysql articles and i would like to change the title when it displayed on the page by clicking on the h3 tag i have got the articles displaying on a while loop so i need something that would work with that i was thing of somehow changing the h3 tag to a input tag

View 3 Replies View Related

Make Editable All Obj With An Id Not Just One

Feb 15, 2009

I've got this prototype funtion

function makeEditable(id){
Event.observe(id, 'click', function(){edit($(id))}, false);
Event.observe(id, 'mouseover', function(){showAsEditable($(id))}, false);
Event.observe(id, 'mouseout', function(){showAsEditable($(id), true)}, false);
}

that make editable a <p id=xxx> with an speial id I want to modify it to makeditable any of <p> with that id if it's been clicked and also i use this function on a button how I can avoid this function from multiple executing by multiple clicking by user?

View 7 Replies View Related

Cannot Make Pop-ups Non-resizable

Feb 20, 2009

I have a function that opens a popup and I have told it not make the popup resizable but all browsers seem to ignore it and make it resizable anyway. This is the code

function openflvpopup(popurl){
window.open('FLV/play.php?file=' + popurl + '.flv', '', 'height=500px,width=550px,left=150px,top=150px,resizable=0')
}

I have probably made a silly mistake but I have checked several tutorial website to make sure I write it in the syntax that they do. I can not see any mistakes.

View 2 Replies View Related

Make An 'on' 'off' Switch

Mar 23, 2009

I'm trying to make an 'on' 'off' switch

the idea is for imgA to 'toggle' with imgB onMouseDown (onclick is used to call a function)

I can get the image to swap once but not back again. I have no idea if the way i'm attempting it is even close.

<script type="text/javascript">
function imgswap(){
if ( )
{

[Code]....

View 8 Replies View Related

Make Rows Not Appear When Certain Row Value?

Jul 2, 2009

The issue I am having is how to modify the following html/javascript to show only rows that do not have a certain value. For example I have 2 rows with the following values:

Row1Column1 Row1Column2 Row1Column3
Row2Column1 Row2Column2 Row2Column3
But I do not want display any row when a value in Column3 equals

Row2Column3. Therefore in this example I will display Row1 but not Row2. The following code displays a table of rows and is running in a servlet container using tomcat, hence the predefined tags of ${.....}. I know this forum is not for server-side programming but this issue really a html and javascript issue. The issue I would liked answered is how to modify the html/javascript so when a ${wfinfo_task_role} value of "cdm" is be displayed then the row will not be displayed in the table.

[Code]...

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved