annotate media/js/tiny_mce/themes/advanced/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.advanced_dlg',{
bgneal@45 2 about_title:"About TinyMCE",
bgneal@45 3 about_general:"About",
bgneal@45 4 about_help:"Help",
bgneal@45 5 about_license:"License",
bgneal@45 6 about_plugins:"Plugins",
bgneal@45 7 about_plugin:"Plugin",
bgneal@45 8 about_author:"Author",
bgneal@45 9 about_version:"Version",
bgneal@45 10 about_loaded:"Loaded plugins",
bgneal@45 11 anchor_title:"Insert/edit anchor",
bgneal@45 12 anchor_name:"Anchor name",
bgneal@45 13 code_title:"HTML Source Editor",
bgneal@45 14 code_wordwrap:"Word wrap",
bgneal@45 15 colorpicker_title:"Select a color",
bgneal@45 16 colorpicker_picker_tab:"Picker",
bgneal@45 17 colorpicker_picker_title:"Color picker",
bgneal@45 18 colorpicker_palette_tab:"Palette",
bgneal@45 19 colorpicker_palette_title:"Palette colors",
bgneal@45 20 colorpicker_named_tab:"Named",
bgneal@45 21 colorpicker_named_title:"Named colors",
bgneal@45 22 colorpicker_color:"Color:",
bgneal@45 23 colorpicker_name:"Name:",
bgneal@45 24 charmap_title:"Select custom character",
bgneal@45 25 image_title:"Insert/edit image",
bgneal@45 26 image_src:"Image URL",
bgneal@45 27 image_alt:"Image description",
bgneal@45 28 image_list:"Image list",
bgneal@45 29 image_border:"Border",
bgneal@45 30 image_dimensions:"Dimensions",
bgneal@45 31 image_vspace:"Vertical space",
bgneal@45 32 image_hspace:"Horizontal space",
bgneal@45 33 image_align:"Alignment",
bgneal@45 34 image_align_baseline:"Baseline",
bgneal@45 35 image_align_top:"Top",
bgneal@45 36 image_align_middle:"Middle",
bgneal@45 37 image_align_bottom:"Bottom",
bgneal@45 38 image_align_texttop:"Text top",
bgneal@45 39 image_align_textbottom:"Text bottom",
bgneal@45 40 image_align_left:"Left",
bgneal@45 41 image_align_right:"Right",
bgneal@45 42 link_title:"Insert/edit link",
bgneal@45 43 link_url:"Link URL",
bgneal@45 44 link_target:"Target",
bgneal@45 45 link_target_same:"Open link in the same window",
bgneal@45 46 link_target_blank:"Open link in a new window",
bgneal@45 47 link_titlefield:"Title",
bgneal@45 48 link_is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
bgneal@45 49 link_is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
bgneal@45 50 link_list:"Link list"
bgneal@45 51 });