The ad hoc translation mechanism used by LnBLog takes the form of a simple PHP array. The translation file must create the array and populate it. Each element of the array will be indexed by the untranslated US English text and will contain the translated text as its data. If you are familiat with GNU gettext, the array index is analogous to the msgid and element content is analogous to the msgstr.
Here is a simple example of an ad hoc translation file. Note that the PHP opening and closing tags are required, as is the array creation on the second line. Also note that there can be no characters ot whitespace outside the PHP tags.
<?php
$strings = array();
$strings["My message."] = "Translated message.";
?>