diff --git a/code/model/Translatable.php b/code/model/Translatable.php
index 078dd15..62f8c94 100755
--- a/code/model/Translatable.php
+++ b/code/model/Translatable.php
@@ -1012,8 +1012,13 @@ class Translatable extends DataExtension implements PermissionProvider {
$existingTransHTML = '
';
foreach($this->getTranslations() as $existingTranslation) {
if($existingTranslation && $existingTranslation->hasMethod('CMSEditLink')) {
- $existingTransHTML .= sprintf('- %s
',
- sprintf('%s/?locale=%s', $existingTranslation->CMSEditLink(), $existingTranslation->Locale),
+ $existingTransHTML .= sprintf(
+ '- %s
',
+ sprintf(
+ '%s/?locale=%s',
+ $existingTranslation->CMSEditLink(),
+ $existingTranslation->Locale
+ ),
i18n::get_locale_name($existingTranslation->Locale)
);
}