i'd use a hash myself. but you are right in thinking a nested data structure would be a good fit here.
%colors =( english=>[qw/red blue yellow/], spanish=>[qw/rojo azul amarillo/] ); $lang = 'spanish'; print $colors{$lang}[0];
alternatively you could key by some color constant, then by language:
%colors =( 'FF0000'=> { english=>'red', spanish=>'rojo' }, '0000FF'=> { english=>'blue', spanish=>'azul' } ); $color = 'FF0000'; $language = 'spanish'; print $colors{$color}{$language};

In reply to Re: Do I need an array within an array by thunders
in thread Do I need an array within an array by meetn2veg

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.