annotate media/js/tiny_mce/langs/en.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 237710206167
children
rev   line source
bgneal@45 1 tinyMCE.addI18n({en:{
bgneal@45 2 common:{
bgneal@45 3 edit_confirm:"Do you want to use the WYSIWYG mode for this textarea?",
bgneal@45 4 apply:"Apply",
bgneal@45 5 insert:"Insert",
bgneal@45 6 update:"Update",
bgneal@45 7 cancel:"Cancel",
bgneal@45 8 close:"Close",
bgneal@45 9 browse:"Browse",
bgneal@45 10 class_name:"Class",
bgneal@45 11 not_set:"-- Not set --",
bgneal@45 12 clipboard_msg:"Copy/Cut/Paste is not available in Mozilla and Firefox.\nDo you want more information about this issue?",
bgneal@45 13 clipboard_no_support:"Currently not supported by your browser, use keyboard shortcuts instead.",
bgneal@45 14 popup_blocked:"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool.",
bgneal@45 15 invalid_data:"Error: Invalid values entered, these are marked in red.",
bgneal@45 16 more_colors:"More colors"
bgneal@45 17 },
bgneal@45 18 contextmenu:{
bgneal@45 19 align:"Alignment",
bgneal@45 20 left:"Left",
bgneal@45 21 center:"Center",
bgneal@45 22 right:"Right",
bgneal@45 23 full:"Full"
bgneal@45 24 },
bgneal@45 25 insertdatetime:{
bgneal@45 26 date_fmt:"%Y-%m-%d",
bgneal@45 27 time_fmt:"%H:%M:%S",
bgneal@45 28 insertdate_desc:"Insert date",
bgneal@45 29 inserttime_desc:"Insert time",
bgneal@45 30 months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
bgneal@45 31 months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
bgneal@45 32 day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
bgneal@45 33 day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
bgneal@45 34 },
bgneal@45 35 print:{
bgneal@45 36 print_desc:"Print"
bgneal@45 37 },
bgneal@45 38 preview:{
bgneal@45 39 preview_desc:"Preview"
bgneal@45 40 },
bgneal@45 41 directionality:{
bgneal@45 42 ltr_desc:"Direction left to right",
bgneal@45 43 rtl_desc:"Direction right to left"
bgneal@45 44 },
bgneal@45 45 layer:{
bgneal@45 46 insertlayer_desc:"Insert new layer",
bgneal@45 47 forward_desc:"Move forward",
bgneal@45 48 backward_desc:"Move backward",
bgneal@45 49 absolute_desc:"Toggle absolute positioning",
bgneal@45 50 content:"New layer..."
bgneal@45 51 },
bgneal@45 52 save:{
bgneal@45 53 save_desc:"Save",
bgneal@45 54 cancel_desc:"Cancel all changes"
bgneal@45 55 },
bgneal@45 56 nonbreaking:{
bgneal@45 57 nonbreaking_desc:"Insert non-breaking space character"
bgneal@45 58 },
bgneal@45 59 iespell:{
bgneal@45 60 iespell_desc:"Run spell checking",
bgneal@45 61 download:"ieSpell not detected. Do you want to install it now?"
bgneal@45 62 },
bgneal@45 63 advhr:{
bgneal@45 64 advhr_desc:"Horizontal rule"
bgneal@45 65 },
bgneal@45 66 emotions:{
bgneal@45 67 emotions_desc:"Emotions"
bgneal@45 68 },
bgneal@45 69 searchreplace:{
bgneal@45 70 search_desc:"Find",
bgneal@45 71 replace_desc:"Find/Replace"
bgneal@45 72 },
bgneal@45 73 advimage:{
bgneal@45 74 image_desc:"Insert/edit image"
bgneal@45 75 },
bgneal@45 76 advlink:{
bgneal@45 77 link_desc:"Insert/edit link"
bgneal@45 78 },
bgneal@45 79 xhtmlxtras:{
bgneal@45 80 cite_desc:"Citation",
bgneal@45 81 abbr_desc:"Abbreviation",
bgneal@45 82 acronym_desc:"Acronym",
bgneal@45 83 del_desc:"Deletion",
bgneal@45 84 ins_desc:"Insertion",
bgneal@45 85 attribs_desc:"Insert/Edit Attributes"
bgneal@45 86 },
bgneal@45 87 style:{
bgneal@45 88 desc:"Edit CSS Style"
bgneal@45 89 },
bgneal@45 90 paste:{
bgneal@45 91 paste_text_desc:"Paste as Plain Text",
bgneal@45 92 paste_word_desc:"Paste from Word",
bgneal@217 93 selectall_desc:"Select All",
bgneal@217 94 plaintext_mode_sticky:"Paste is now in plain text mode. Click again to toggle back to regular paste mode. After you paste something you will be returned to regular paste mode.",
bgneal@217 95 plaintext_mode:"Paste is now in plain text mode. Click again to toggle back to regular paste mode."
bgneal@45 96 },
bgneal@45 97 paste_dlg:{
bgneal@45 98 text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
bgneal@45 99 text_linebreaks:"Keep linebreaks",
bgneal@45 100 word_title:"Use CTRL+V on your keyboard to paste the text into the window."
bgneal@45 101 },
bgneal@45 102 table:{
bgneal@45 103 desc:"Inserts a new table",
bgneal@45 104 row_before_desc:"Insert row before",
bgneal@45 105 row_after_desc:"Insert row after",
bgneal@45 106 delete_row_desc:"Delete row",
bgneal@45 107 col_before_desc:"Insert column before",
bgneal@45 108 col_after_desc:"Insert column after",
bgneal@45 109 delete_col_desc:"Remove column",
bgneal@45 110 split_cells_desc:"Split merged table cells",
bgneal@45 111 merge_cells_desc:"Merge table cells",
bgneal@45 112 row_desc:"Table row properties",
bgneal@45 113 cell_desc:"Table cell properties",
bgneal@45 114 props_desc:"Table properties",
bgneal@45 115 paste_row_before_desc:"Paste table row before",
bgneal@45 116 paste_row_after_desc:"Paste table row after",
bgneal@45 117 cut_row_desc:"Cut table row",
bgneal@45 118 copy_row_desc:"Copy table row",
bgneal@45 119 del:"Delete table",
bgneal@45 120 row:"Row",
bgneal@45 121 col:"Column",
bgneal@45 122 cell:"Cell"
bgneal@45 123 },
bgneal@45 124 autosave:{
bgneal@183 125 unload_msg:"The changes you made will be lost if you navigate away from this page.",
bgneal@217 126 restore_content:"Restore auto-saved content.",
bgneal@217 127 warning_message:"If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?."
bgneal@45 128 },
bgneal@45 129 fullscreen:{
bgneal@45 130 desc:"Toggle fullscreen mode"
bgneal@45 131 },
bgneal@45 132 media:{
bgneal@45 133 desc:"Insert / edit embedded media",
bgneal@45 134 edit:"Edit embedded media"
bgneal@45 135 },
bgneal@45 136 fullpage:{
bgneal@45 137 desc:"Document properties"
bgneal@45 138 },
bgneal@45 139 template:{
bgneal@45 140 desc:"Insert predefined template content"
bgneal@45 141 },
bgneal@45 142 visualchars:{
bgneal@45 143 desc:"Visual control characters on/off."
bgneal@45 144 },
bgneal@45 145 spellchecker:{
bgneal@45 146 desc:"Toggle spellchecker",
bgneal@45 147 menu:"Spellchecker settings",
bgneal@45 148 ignore_word:"Ignore word",
bgneal@45 149 ignore_words:"Ignore all",
bgneal@45 150 langs:"Languages",
bgneal@45 151 wait:"Please wait...",
bgneal@45 152 sug:"Suggestions",
bgneal@45 153 no_sug:"No suggestions",
bgneal@45 154 no_mpell:"No misspellings found."
bgneal@45 155 },
bgneal@45 156 pagebreak:{
bgneal@45 157 desc:"Insert page break."
bgneal@183 158 },
bgneal@217 159 advlist:{
bgneal@217 160 types:"Types",
bgneal@217 161 def:"Default",
bgneal@217 162 lower_alpha:"Lower alpha",
bgneal@217 163 lower_greek:"Lower greek",
bgneal@217 164 lower_roman:"Lower roman",
bgneal@217 165 upper_alpha:"Upper alpha",
bgneal@217 166 upper_roman:"Upper roman",
bgneal@217 167 circle:"Circle",
bgneal@217 168 disc:"Disc",
bgneal@217 169 square:"Square"
bgneal@217 170 }}});