one way to remove all the other language entries in the database is run an sql command to delete all but the ones that you want to stay.
each language has a language code ie US / GB English = US
so you could run this to remove everything but US / English
Code:
DELETE FROM xcart_languages WHERE code <> "US"