annotate media/js/tiny_mce/plugins/advlink/langs/en_dlg.js @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +0000
parents a5b4c5ce0658
children
rev   line source
bgneal@45 1 tinyMCE.addI18n('en.advlink_dlg',{
bgneal@45 2 title:"Insert/edit link",
bgneal@45 3 url:"Link URL",
bgneal@45 4 target:"Target",
bgneal@45 5 titlefield:"Title",
bgneal@45 6 is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
bgneal@45 7 is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
bgneal@45 8 list:"Link list",
bgneal@45 9 general_tab:"General",
bgneal@45 10 popup_tab:"Popup",
bgneal@45 11 events_tab:"Events",
bgneal@45 12 advanced_tab:"Advanced",
bgneal@45 13 general_props:"General properties",
bgneal@45 14 popup_props:"Popup properties",
bgneal@45 15 event_props:"Events",
bgneal@45 16 advanced_props:"Advanced properties",
bgneal@45 17 popup_opts:"Options",
bgneal@45 18 anchor_names:"Anchors",
bgneal@45 19 target_same:"Open in this window / frame",
bgneal@45 20 target_parent:"Open in parent window / frame",
bgneal@45 21 target_top:"Open in top frame (replaces all frames)",
bgneal@45 22 target_blank:"Open in new window",
bgneal@45 23 popup:"Javascript popup",
bgneal@45 24 popup_url:"Popup URL",
bgneal@45 25 popup_name:"Window name",
bgneal@45 26 popup_return:"Insert 'return false'",
bgneal@45 27 popup_scrollbars:"Show scrollbars",
bgneal@45 28 popup_statusbar:"Show status bar",
bgneal@45 29 popup_toolbar:"Show toolbars",
bgneal@45 30 popup_menubar:"Show menu bar",
bgneal@45 31 popup_location:"Show location bar",
bgneal@45 32 popup_resizable:"Make window resizable",
bgneal@45 33 popup_dependent:"Dependent (Mozilla/Firefox only)",
bgneal@45 34 popup_size:"Size",
bgneal@45 35 popup_position:"Position (X/Y)",
bgneal@45 36 id:"Id",
bgneal@45 37 style:"Style",
bgneal@45 38 classes:"Classes",
bgneal@45 39 target_name:"Target name",
bgneal@45 40 langdir:"Language direction",
bgneal@45 41 target_langcode:"Target language",
bgneal@45 42 langcode:"Language code",
bgneal@45 43 encoding:"Target character encoding",
bgneal@45 44 mime:"Target MIME type",
bgneal@45 45 rel:"Relationship page to target",
bgneal@45 46 rev:"Relationship target to page",
bgneal@45 47 tabindex:"Tabindex",
bgneal@45 48 accesskey:"Accesskey",
bgneal@45 49 ltr:"Left to right",
bgneal@45 50 rtl:"Right to left",
bgneal@45 51 link_list:"Link list"
bgneal@45 52 });