Normally when there is a tcl and an adp file for a url, first the tcl file is processed and by default the corresponding adp file is then used for rendering the result. It is possible though to override this per request by including a call to 'ad_return_template alternative-file' at the bottom of the tcl page.
You can do the same in the default-master.tcl file:
...
set language "en"
ad_return_template "default-master-$language"
at the bottom of default-master.tcl will result in the templating code to look for a file called default-master-en.adp instead of the usual default-master.adp. Hope that helps - if not try to tell us more what you need to do.