You will need to set up your database tables appropriately. An example schema might look like this:
help_type
help_type_id // the id column
description // the name/desc
... //other fields
language
lang_id
help_type_id // link it to the type
description
...
category
cat_id
lang_id // this key links this cat to a lang
description
...
You could also do this all in one table, using a node like approach and then joining the table against itself. For simplicities sake, I went with this easier layout.
G'luck,
Jack