diff options
author | Andy Staudacher <andy.st@gmail.com> | 2010-01-21 23:53:21 -0800 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2010-01-21 23:53:21 -0800 |
commit | 07ba5fe43aaa53be840b1842fe2eb4fc63ee7686 (patch) | |
tree | 850fd67e03d0fb9cda265c9ba1ee6286b3382ea8 /modules | |
parent | 0da5d9e606fba5b6dc6137812df32cd1d0f5750f (diff) |
Use Unicode instead of HTML entity (since the l10n server normalizes this way and rejects submissions that change under the normalization step)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gallery/helpers/gallery_event.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/helpers/gallery_event.php b/modules/gallery/helpers/gallery_event.php index 679d65c2..b39be169 100644 --- a/modules/gallery/helpers/gallery_event.php +++ b/modules/gallery/helpers/gallery_event.php @@ -305,7 +305,7 @@ class gallery_event_Core { ->append( Menu::factory("ajax_link") ->id("rotate_ccw") - ->label(t("Rotate 90° counter clockwise")) + ->label(t("Rotate 90° counter clockwise")) ->css_class("ui-icon-rotate-ccw") ->ajax_handler("function(data) { " . "\$.gallery_replace_image(data, \$('$thumb_css_selector')) }") @@ -313,7 +313,7 @@ class gallery_event_Core { ->append( Menu::factory("ajax_link") ->id("rotate_cw") - ->label(t("Rotate 90° clockwise")) + ->label(t("Rotate 90° clockwise")) ->css_class("ui-icon-rotate-cw") ->ajax_handler("function(data) { " . "\$.gallery_replace_image(data, \$('$thumb_css_selector')) }") |