2011-03-01, 16:35:03
ldac Wrote:This isn't a bug but It should be improved: When you try to name a new page with a "_" (e.g. index_en) it automatically hides the "Template" options. This can be a problem, for example I wanted to use a different template for the main page and its English version but I couldn't because of this.
Currently it is not possible to use different templates for languages with the I18N plugin, which is the reason, why the option is hidden. As the default language is used when a translation is not available, the different templates shouldn't have many differences in any case, lest the user be baffled by the layout changing between pages.
Why do you want to have a different template?
If it's just for small differences, you can include conditionals like
Code:
<?php if ($language == 'de') { ?>...<?php } ?>
in your template.