If you want to set “Presented” and change the formatting date for a certain type of content, you can also change your tpl file, for example
""
node--blog.tpl.php
<?php if ($display_submitted): ?>
<p class="submitted">
<?php $user = user_load($node->uid); ?>
<?php $username=$user->name; ?>
<?php print t("Written"); ?>
<?php print $username ?>
<time pubdate datetime="<?php print $submitted_pubdate; ?>">
<?php $date = date("d.n.Y", $node->created); ?>
<?php print "<br>".$date; ?>
</time>
</p>
<?php endif; ?>