Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Translation selection advise

by QuillMeantTen (Friar)
on Sep 04, 2015 at 07:44 UTC ( [id://1140969]=note: print w/replies, xml ) Need Help??


in reply to Translation selection advise

else you could use the given when feature depending on your perl version :

Update : I'm not sure whether this will work, can not recall the exact syntax and I dont have the right perl version on this machine to test itt

given ($language){ when('fr'){ $wind_translation='vent'; } when('es'){ $wind_translation='viento'; } }

Replies are listed 'Best First'.
Re^2: Translation selection advise
by Laurent_R (Canon) on Sep 04, 2015 at 08:33 UTC
    Hm, although you sometimes have to do it (at least for simple cases with just a couple or so of alternatives), storing what is really reference data in conditionals within the code is usually rather poor practice and generally does not scale well.

    If I have to store reference data within the code, I very much prefer to store it all in a self-contained data structure such as a hash, or a HoH, or whatever suits best the needs, at least if possible. Although in the case in point, we were really thinking of storing reference data in a separate file (of DB, or whatever) and loading it in the program on demand.

    Another point is that the smartmatch operator and the given ... when conditional have been sort-of deprecated (well, marked "experimental feature") and will issue a warning as of 5.18, so there are really some caveats to using them.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1140969]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (6)
As of 2024-04-25 15:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found