Following extensive experience of using Drupal to deliver intenationalised and localised websites, there are a few fundamental issues that keep catching us out - one of the main ones is ensuring that we use Drupal's t function approriately.
Here's a simple 'gotcha':
Wrong: <?php echo t('You are logged in as: ') . $username; ?>
Right:
<?php echo t('You are logged in as: %username', array('%username' => $username)); ?>
Amazon have just announced a new addition to their web services family - Relational Database Service (RDS).
