altdaki kodları dener misiniz ? hata raporlamayı açarsanız çözüme daha kolay ulaşabilirsiniz.

tr.php

<?php

// Text
$_['MENU_HOME']	 = 'Anasayfa';
$_['MENU_STORE']	 = 'E-Store';
$_['MENU_CATALOG']	 = '2013 SUMMER';
?>
index.php

<?php
include_once('tr.php');
?>
<html>
<head></head>

<body>
<a href="index.php"><font color="#000000" size="2" face="arial"><?=$_['MENU_HOME'];?></font></a>
<a href="store.php"><font color="#000000" size="2" face="arial"><?=$_['MENU_STORE'];?></font></a>
<a href="catalog.php"><font color="#000000" size="2" face="arial"><?=$_['MENU_CATALOG'];?></font></a>
</body>
</html>