12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- function englishsubmittranslation()
- {
- var names =["home","original","translation","statistics","coordinate",
- "contact","resources","flyers","faq","privacy",
- "title","descriptiontitle","descriptiontext1",
- "descriptiontext2","descriptiontext3","descriptiontext4",
- "descriptiontext5","descriptiontext6","descriptiontext7",
- "furtherules","furtherrulestext1","furtherrulestext2",
- "furtherrulestext3","furtherrulestext4","storysubmission",
- "namelabel","legalpermissionlabel","legalpermissionno",
- "legalpermissionyes","emaillabel","tellabel",
- "languagelabel","titlelabel","authorshiplabel","authorshipno",
- "authorshipyes","storylabel","submit", "wordcountbutton",
- "wordsentered","keyboardtitle","translator"];
- var strings = ["Home",
- "Original Story Submission",
- "Translated Story Submission",
- "Coordinator application",
- "Submissions per Language",
- "Contact",
- "Resources",
- "Flyers",
- "Frequently Asked Questions",
- "Privacy",
- "An African Language Short Story Competition",
- "General Description",
- "Thank you for making a submission. Your story should be suitable for people between the ages of 5 and 12 years old. Your story should also draw some inspiration from the traditions and cultures of the group that uses that language. Your story should be between 2000 and 2500 words. Prizes will be available for each language, or language group for closely related languages. There will also be prizes available for translated stories. Stories will be judged by those who have submitted a story in a language or language group. Stories with the highest scores will win prizes. Stories will be evaluated on a 5 point scale on:",
- "Grammar and spelling",
- "Theme and plot",
- "Style",
- "Cultural relevance",
- "Overall impression",
- "The average score will be used to rank stories, in case of a tie, the organizing committee will randomly choose one story to receive a prize.",
- "Further Rules",
- "Entries will be evaluated anonymously, authors may advertise the competition, and their entry in it, but should not advertise their authorship of an article until winners are announced.",
- "All entries will be released under a creative commons attribution license that allows others to distribute, remix, adapt and build upon your work, even commercially, as long as they credit you for the original creation. For more on this license see:",
- "As your writing style may be used to identify you, for example through Stylometric analysis, you may choose to use a pseudonym.",
- "Should you win a prize and not wish to be identified, you may choose to have your earnings given to a charitable organization of your choice.",
- "Story Submission",
- "What is your name/pseudonym?",
- "Are you an adult in the region you live in, if not do you have permission from a parent or legal guardian to participate in this competition?",
- "No",
- "Yes",
- "What is your e-mail address?",
- "What is your telephone number?",
- "What language is your story in?",
- "What is the title of your story",
- "Are you the author of this original submitted work, if you are not the author do you have permission from the author to submit the work on their behalf?",
- "No",
- "Yes",
- "Please enter the text for your story here",
- "Submit",
- "Update word count",
- "Words Entered:",
- "Keyboard",
- ""];
- var i;
- for (i=0;i<names.length;i++)
- {
- document.getElementById(names[i]).innerHTML = strings[i];
- }
- return;
- }
|