summaryrefslogtreecommitdiff
path: root/modules/image
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-04-05 20:10:11 -0400
committerDavid Rothstein <drothstein@gmail.com>2014-04-05 20:10:11 -0400
commitd161af6a982b9939a2a94dab486481e15be3b9bc (patch)
tree3b9a33c6869eef1df7c534cfff23ade4492892c1 /modules/image
parentdecfc2f14bae10cbbcb373bc5554369142af2efa (diff)
downloadbrdo-d161af6a982b9939a2a94dab486481e15be3b9bc.tar.gz
brdo-d161af6a982b9939a2a94dab486481e15be3b9bc.tar.bz2
Issue #2037847 by droplet: Join position strings together to fix translatability in the administrative interface for the Image module "Crop" effect.
Diffstat (limited to 'modules/image')
-rw-r--r--modules/image/image.admin.inc16
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/image/image.admin.inc b/modules/image/image.admin.inc
index 7e626219d..cebe8940d 100644
--- a/modules/image/image.admin.inc
+++ b/modules/image/image.admin.inc
@@ -592,15 +592,15 @@ function image_crop_form($data) {
'#type' => 'radios',
'#title' => t('Anchor'),
'#options' => array(
- 'left-top' => t('Top') . ' ' . t('Left'),
- 'center-top' => t('Top') . ' ' . t('Center'),
- 'right-top' => t('Top') . ' ' . t('Right'),
- 'left-center' => t('Center') . ' ' . t('Left'),
+ 'left-top' => t('Top left'),
+ 'center-top' => t('Top center'),
+ 'right-top' => t('Top right'),
+ 'left-center' => t('Center left'),
'center-center' => t('Center'),
- 'right-center' => t('Center') . ' ' . t('Right'),
- 'left-bottom' => t('Bottom') . ' ' . t('Left'),
- 'center-bottom' => t('Bottom') . ' ' . t('Center'),
- 'right-bottom' => t('Bottom') . ' ' . t('Right'),
+ 'right-center' => t('Center right'),
+ 'left-bottom' => t('Bottom left'),
+ 'center-bottom' => t('Bottom center'),
+ 'right-bottom' => t('Bottom right'),
),
'#theme' => 'image_anchor',
'#default_value' => $data['anchor'],