lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


"Carlos Augusto Teixeira Mendes" <cmendes@k2sistemas.com.br> writes:
> you will get <<<foobar>>>
>
> and not <<<foo>>><<<bar>>> as you might be expecting for your translation
> requirements.

Yeah, I think for this sort of task, you really want _source_ strings to
be translated.

I think it's better to byte the bullet and use the prefix (e.g. L"...")
though, because translating _every_ string by default seems way too
dangerous.  Some strings are not meant to be translated, and only the
programmer really knows which is which.

[Consider:

   display_dialog_box ("succeeded")

versus

   if output_of_some_script == "succeeded" then
      ...
   end

It's pretty likely the first should be translated but not the second.]

-Miles

-- 
`Cars give people wonderful freedom and increase their opportunities.
 But they also destroy the environment, to an extent so drastic that
 they kill all social life' (from _A Pattern Language_)