For my phrasegroups and phrase I do so :
I insert phrasetype this way :
PHP Code:
$phrasetypeid['anything'] = add_phrase_type('anything', 'anything');
(it adds a field in language too

and you get the id of the phrasegroup you can put in vbulletin options for later use).
Then add phrase this way :
PHP Code:
INSERT INTO phrase VALUES (NULL, '0', 'varname', 'text', $phrasetypeid['anything'])
0 is important for the languageid as it avoids custom phrases to be removed during vBulletin upgrade.
And after all phrases added :
PHP Code:
build_language(-1)
I hope this could help, It always worked in my installation files, no problem encounter
For templates, maybe it's due to the removal of custom templates in MASTER style during vb upgrade. I asked Jelsoft to allow custom template to be kept during upgrade, I'm waiting for the answer

.