I know how to create translations for themes and templates generally by generating .po and .mo files with Poedit for example. But since template names are written in PHP comments at top of each template file there is no way to translate this as I see it.
WordPress template header:
/**
* Template Name: Three columns
*
* @package WordPress
*/
Template Name is somehow parsed by Wordpress and used to populate the template select drop-down when creating a page.
So my question is: Is there a way to translate a WordPress template name? Does WordPress also look for any specific variable i can set in my template file? or is it just impossible?