Apart from creating the longest title for a question, I'm also attempting to create 10 language modules for my program which contain about 40 words and phrases.
In my travels as a newbie I've come accross a method of declaring program wide variables in a (e.g.) "dutch.pl" module, which simply looks like this:
%language = qw( blue => blauw, red => rood);And called by
require "dutch.pl";No use strict, no use Exporter... etc, just variable declarations
Its simplicity appeals to me - however I'm assuming it's unsafe as I've not seen it used often. I thought about using a DB_File but the file must be plain text as I'm sending the files to friends for translation.
Any recommendations as to how to go about this simple task?
thanks
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.