<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

      <title>Comments on: Comparing poem translations</title>
      <link>http://ask.metafilter.com/31617/Comparing-poem-translations/</link>
      <description>Comments on Ask MetaFilter post Comparing poem translations</description>
	  	  <pubDate>Fri, 27 Jan 2006 19:31:38 -0800</pubDate>
      <lastBuildDate>Fri, 27 Jan 2006 19:31:38 -0800</lastBuildDate>
      <language>en-us</language>
	  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	  <ttl>60</ttl>

<item>
  	<title>Question: Comparing poem translations</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations</link>	
  	<description>I want to build a comparative index of translations for a specific book of poems.  How should I do this? &lt;br /&gt;&lt;br /&gt; I want to create a sort of database that will allow me to compare different translators&apos; takes on the same poems.  I&apos;d like to do this on my computer in such a way as to be easily accessible.  I realize the copyright problems inherent in such an endeavor and will be keeping this offline.  I&apos;m just not sure where to start.  What sort of software/approach should I be looking at to make this work?</description>
  	<guid isPermaLink="false">post:ask.metafilter.com,2008:site.31617</guid>
  	<pubDate>Fri, 27 Jan 2006 19:05:23 -0800</pubDate>
  	<dc:creator>selfnoise</dc:creator>
	
	<category>translations</category>
	
	<category>poetry</category>
	
	<category>database</category>
	
</item>
<item>
  	<title>By: The Confessor</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495570</link>	
  	<description>I&apos;m a novice programmer in Microsoft Visual Basic .NET, and this is how *I* would do it: (underscores used as leading spaces to improve readability.&lt;br&gt;
&lt;br&gt;
Structure TranslationTemplate&lt;br&gt;
___Dim FullText As String&lt;br&gt;
___Dim Words() As String&lt;br&gt;
End Structure&lt;br&gt;
&lt;br&gt;
Dim Translation() As TranslationTemplate&lt;br&gt;
&lt;br&gt;
First, you&apos;d copy the full text of the translation to Translation().FullText.&lt;br&gt;
&lt;br&gt;
Next, you&apos;d store the translation in a temporary variable and use string manipulation techniques to remove any punctuation (including line feeds).&lt;br&gt;
&lt;br&gt;
Finally, for the first translation, you&apos;d put each word in its own Translation().Word() index.&lt;br&gt;
&lt;br&gt;
For subsequent translations, you&apos;d search for identical words and use them to assign equivalent index values, modifying the indices of those earlier Translation().Word() variables as necessary.&lt;br&gt;
&lt;br&gt;
Displaying this information clearly would be a bit more difficult; the cleanest method would probably involve simulating a control array, and initializing, displaying, and disposing of new controls as necessary.&lt;br&gt;
&lt;br&gt;
If you plan to store your material in a Random Access file, you&apos;ll need to set a high FixedStringLength (I may have the exact syntax of that incorrect) for all Strings to avoid errors or trunacation.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495570</guid>
  	<pubDate>Fri, 27 Jan 2006 19:31:38 -0800</pubDate>
  	<dc:creator>The Confessor</dc:creator>
</item>
<item>
  	<title>By: The Confessor</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495574</link>	
  	<description>Apologies if my reply seems a tad obscure; tell me if you need more information.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495574</guid>
  	<pubDate>Fri, 27 Jan 2006 19:37:59 -0800</pubDate>
  	<dc:creator>The Confessor</dc:creator>
</item>
<item>
  	<title>By: devilsbrigade</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495591</link>	
  	<description>Compare how? Will you be doing the comparisons manually? Automatically? How do you want the result (a %, common words, common phrases, etc)? There are statistical procceses to compare text/phrases if you do a bit of googling.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495591</guid>
  	<pubDate>Fri, 27 Jan 2006 20:00:25 -0800</pubDate>
  	<dc:creator>devilsbrigade</dc:creator>
</item>
<item>
  	<title>By: selfnoise</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495594</link>	
  	<description>Sorry, this was a badly phrased question.  &lt;br&gt;
&lt;br&gt;
I&apos;ll be comparing the poems manually... no automatic jibberjabber is involved.  Basically, I&apos;d like a nice setup where I can look at two or more translations of the same poem on screen at the same time, lined up line-by-line.  &lt;br&gt;
&lt;br&gt;
Programming-wise, I know HTML but that&apos;s it.  So a fancy DIY solution may be out of the question.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495594</guid>
  	<pubDate>Fri, 27 Jan 2006 20:03:23 -0800</pubDate>
  	<dc:creator>selfnoise</dc:creator>
</item>
<item>
  	<title>By: The Confessor</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495791</link>	
  	<description>Hmm... that&apos;d actually be a good bit easier, since # lines per translation, and thus array values, would be standard.&lt;br&gt;
&lt;br&gt;
Do me a favor, eh, selfnoise?&lt;br&gt;
&lt;br&gt;
1. What&apos;s the maximum number of translations you plan to compare at any one time?&lt;br&gt;
&lt;br&gt;
2. What&apos;s the maximum number of lines (excluding &amp;quot;blank&amp;quot; lines between stanzas) per translation.&lt;br&gt;
&lt;br&gt;
3. What resolution do you run your screen at?&lt;br&gt;
&lt;br&gt;
This seems like no more than a three-to-four-day project, if my bloody computer doesn&apos;t go on the fritz in the meantime.&lt;br&gt;
&lt;br&gt;
If nobody suggests something standard, I&apos;ll see if I can make you a quick customized solution.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495791</guid>
  	<pubDate>Sat, 28 Jan 2006 04:40:18 -0800</pubDate>
  	<dc:creator>The Confessor</dc:creator>
</item>
<item>
  	<title>By: dances_with_sneetches</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495806</link>	
  	<description>What a great idea.  I remember reading a poem by Rilke in one book and thinking he was the greatest poet ever.  I bought a different book, different translator with some overlapping poems.  The second book was flat.  It was interesting to look at the way the poem was translated differently to squeeze the life out of it.  &lt;br&gt;
There is a set of sites on the internet that present the Bible in &lt;a href=&quot;http://www.christnotes.org/help.php?topic=AdvancedPassageSearch&quot;&gt;multiple translations&lt;/a&gt;.  You can look at what they did and see if it corresponds to what you want.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495806</guid>
  	<pubDate>Sat, 28 Jan 2006 05:45:34 -0800</pubDate>
  	<dc:creator>dances_with_sneetches</dc:creator>
</item>
<item>
  	<title>By: selfnoise</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495814</link>	
  	<description>Dances - Thanks, that site is a perfect example of what I want to accomplish.&lt;br&gt;
&lt;br&gt;
Confessor - 1. I&apos;ll probably have a maximum of 3 at a time, with a total of perhaps 10-12 at the most (although not that many to start).&lt;br&gt;
&lt;br&gt;
2. Not totally sure about this one, but I don&apos;t think there&apos;s one that exceeds 40 lines.&lt;br&gt;
&lt;br&gt;
3. 1024X768&lt;br&gt;
&lt;br&gt;
BTW, I appreciate the offer but I&apos;m not sure how comfortable I am with it, particularly since I&apos;m basically committing copyright infringement and you have no idea what I&apos;ll end up doing with the thing.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495814</guid>
  	<pubDate>Sat, 28 Jan 2006 06:19:19 -0800</pubDate>
  	<dc:creator>selfnoise</dc:creator>
</item>
<item>
  	<title>By: The Confessor</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495824</link>	
  	<description>If you own a copy of each translation you use &lt;em&gt;fair use&lt;/em&gt; allows for format transfers so long as no other laws are broken. The DMCA, for example, &amp;quot;breaks&amp;quot; fair use by criminalizing the circumvention of encryption.&lt;br&gt;
&lt;br&gt;
If you then *distributed* your final product beyond very specific allowances (using it within a classroom falls within fair use, I believe), you would be guilty of copyright infringement.&lt;br&gt;
&lt;br&gt;
Do you anticipate using translations that you haven&apos;t purchased, or distributing these translations beyond a classroom setting?&lt;br&gt;
&lt;br&gt;
If you answer in the affirmative, I&apos;d be held liable (ref. the Grokster SCOTUS decision) for inducement of infringement.&lt;br&gt;
&lt;br&gt;
Otherwise there would be no inducement, since infringement would be considered an unsupported use of a product with substantial non-infringing applications.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495824</guid>
  	<pubDate>Sat, 28 Jan 2006 06:45:42 -0800</pubDate>
  	<dc:creator>The Confessor</dc:creator>
</item>
<item>
  	<title>By: OmieWise</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495841</link>	
  	<description>selfnoise-&lt;br&gt;
&lt;br&gt;
OT, but...&lt;br&gt;
&lt;br&gt;
have you taken a look at &lt;em&gt;&lt;a href=&quot;http://www.amazon.com/exec/obidos/tg/detail/-/0465026222/qid=1138462008/sr=2-1/ref=pd_bbs_b_2_1/104-6242901-5808764?v=glance&amp;s=books&quot;&gt;Reading Rilke&lt;/a&gt;&lt;/em&gt; by William Gass.  He does a very similar thing with translations of Rilke, provides his own translations, and writes a very cogent book on Rilke and on the art of translation.&lt;br&gt;
&lt;br&gt;
A similar project is called &lt;em&gt;&lt;a href=&quot;http://www.amazon.com/gp/product/0934252467/104-6242901-5808764?v=glance&amp;n=283155&quot;&gt;Rending The Veil&lt;/a&gt;&lt;/em&gt; in which literal and poetic translations of Rumi are written on facing pages.  It&apos;s a great book for begining to understand the real differences that pertain to translations.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495841</guid>
  	<pubDate>Sat, 28 Jan 2006 07:28:24 -0800</pubDate>
  	<dc:creator>OmieWise</dc:creator>
</item>
<item>
  	<title>By: dances_with_sneetches</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495844</link>	
  	<description>Don&apos;t know where you&apos;re coming from, but a scholarly paper that shows different translations is not out of reach.  Also, I imagine you can extensively excerpt pieces if you want to prove your thesis.  &lt;br&gt;
There is some work in how translating court transcripts and testimony changes its meaning.  I have some experience in Forensic Linguistics.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495844</guid>
  	<pubDate>Sat, 28 Jan 2006 07:32:37 -0800</pubDate>
  	<dc:creator>dances_with_sneetches</dc:creator>
</item>
<item>
  	<title>By: youarenothere</title>
  	<link>http://ask.metafilter.com/31617/Comparing-poem-translations#495870</link>	
  	<description>You might also be interested in picking up &lt;a href=&quot;http://www.amazon.com/gp/product/0465086454/qid=1138465147/sr=8-3/ref=pd_bbs_3/104-1110567-3731939?n=507846&amp;s=books&amp;v=glance&quot;&gt;Le Ton Beau De Marot&lt;/a&gt; by &lt;a href=&quot;http://www.cogs.indiana.edu/people/homepages/hofstadter.html&quot;&gt;Douglas Hofstadter&lt;/a&gt;. He explores the problems of translation by means of numerous incarnations of Cl&#xe9;ment Marot&apos;s poem &amp;quot;A une Da-moyselle malade,&amp;quot;  tossing in implications for cognitive science, AI, and culture along the way. It&apos;s a good read, especially if you enjoyed &lt;i&gt;GEB&lt;/i&gt;.</description>
  	<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.31617-495870</guid>
  	<pubDate>Sat, 28 Jan 2006 08:29:11 -0800</pubDate>
  	<dc:creator>youarenothere</dc:creator>
</item>

    </channel>
</rss>
