annotate static/js/tiny_mce/plugins/style/langs/en_dlg.js @ 943:cf9918328c64

Haystack tweaks for Django 1.7.7. I had to upgrade to Haystack 2.3.1 to get it to work with Django 1.7.7. I also had to update the Xapian backend. But I ran into problems. On my laptop anyway (Ubuntu 14.0.4), xapian gets mad when search terms are greater than 245 chars (or something) when indexing. So I created a custom field that would simply omit terms greater than 64 chars and used this field everywhere I previously used a CharField. Secondly, the custom search form was broken now. Something changed in the Xapian backend and exact searches stopped working. Fortunately the auto_query (which I was using originally and broke during an upgrade) started working again. So I cut the search form back over to doing an auto_query. I kept the form the same (3 fields) because I didn't want to change the form and I think it's better that way.
author Brian Neal <bgneal@gmail.com>
date Wed, 13 May 2015 20:25:07 -0500
parents 6c182ceb7147
children
rev   line source
bgneal@312 1 tinyMCE.addI18n('en.style_dlg',{
bgneal@312 2 title:"Edit CSS Style",
bgneal@312 3 apply:"Apply",
bgneal@312 4 text_tab:"Text",
bgneal@312 5 background_tab:"Background",
bgneal@312 6 block_tab:"Block",
bgneal@312 7 box_tab:"Box",
bgneal@312 8 border_tab:"Border",
bgneal@312 9 list_tab:"List",
bgneal@312 10 positioning_tab:"Positioning",
bgneal@312 11 text_props:"Text",
bgneal@312 12 text_font:"Font",
bgneal@312 13 text_size:"Size",
bgneal@312 14 text_weight:"Weight",
bgneal@312 15 text_style:"Style",
bgneal@312 16 text_variant:"Variant",
bgneal@312 17 text_lineheight:"Line height",
bgneal@312 18 text_case:"Case",
bgneal@312 19 text_color:"Color",
bgneal@312 20 text_decoration:"Decoration",
bgneal@312 21 text_overline:"overline",
bgneal@312 22 text_underline:"underline",
bgneal@312 23 text_striketrough:"strikethrough",
bgneal@312 24 text_blink:"blink",
bgneal@312 25 text_none:"none",
bgneal@312 26 background_color:"Background color",
bgneal@312 27 background_image:"Background image",
bgneal@312 28 background_repeat:"Repeat",
bgneal@312 29 background_attachment:"Attachment",
bgneal@312 30 background_hpos:"Horizontal position",
bgneal@312 31 background_vpos:"Vertical position",
bgneal@312 32 block_wordspacing:"Word spacing",
bgneal@312 33 block_letterspacing:"Letter spacing",
bgneal@312 34 block_vertical_alignment:"Vertical alignment",
bgneal@312 35 block_text_align:"Text align",
bgneal@312 36 block_text_indent:"Text indent",
bgneal@312 37 block_whitespace:"Whitespace",
bgneal@312 38 block_display:"Display",
bgneal@312 39 box_width:"Width",
bgneal@312 40 box_height:"Height",
bgneal@312 41 box_float:"Float",
bgneal@312 42 box_clear:"Clear",
bgneal@312 43 padding:"Padding",
bgneal@312 44 same:"Same for all",
bgneal@312 45 top:"Top",
bgneal@312 46 right:"Right",
bgneal@312 47 bottom:"Bottom",
bgneal@312 48 left:"Left",
bgneal@312 49 margin:"Margin",
bgneal@312 50 style:"Style",
bgneal@312 51 width:"Width",
bgneal@312 52 height:"Height",
bgneal@312 53 color:"Color",
bgneal@312 54 list_type:"Type",
bgneal@312 55 bullet_image:"Bullet image",
bgneal@312 56 position:"Position",
bgneal@312 57 positioning_type:"Type",
bgneal@312 58 visibility:"Visibility",
bgneal@312 59 zindex:"Z-index",
bgneal@312 60 overflow:"Overflow",
bgneal@312 61 placement:"Placement",
bgneal@442 62 clip:"Clip",
bgneal@442 63 text:"Text",
bgneal@442 64 background:"Background",
bgneal@442 65 block:"Block",
bgneal@442 66 box:"Box",
bgneal@442 67 border:"Border",
bgneal@442 68 list:"List",
bgneal@442 69 position:"Position"
bgneal@312 70 });