annotate static/js/tiny_mce/plugins/xhtmlxtras/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 88b2b9cb8c1f
children
rev   line source
bgneal@312 1 tinyMCE.addI18n('en.xhtmlxtras_dlg',{
bgneal@312 2 attribute_label_title:"Title",
bgneal@312 3 attribute_label_id:"ID",
bgneal@312 4 attribute_label_class:"Class",
bgneal@312 5 attribute_label_style:"Style",
bgneal@312 6 attribute_label_cite:"Cite",
bgneal@312 7 attribute_label_datetime:"Date/Time",
bgneal@312 8 attribute_label_langdir:"Text Direction",
bgneal@312 9 attribute_option_ltr:"Left to right",
bgneal@312 10 attribute_option_rtl:"Right to left",
bgneal@312 11 attribute_label_langcode:"Language",
bgneal@312 12 attribute_label_tabindex:"TabIndex",
bgneal@312 13 attribute_label_accesskey:"AccessKey",
bgneal@312 14 attribute_events_tab:"Events",
bgneal@312 15 attribute_attrib_tab:"Attributes",
bgneal@312 16 general_tab:"General",
bgneal@312 17 attrib_tab:"Attributes",
bgneal@312 18 events_tab:"Events",
bgneal@312 19 fieldset_general_tab:"General Settings",
bgneal@312 20 fieldset_attrib_tab:"Element Attributes",
bgneal@312 21 fieldset_events_tab:"Element Events",
bgneal@312 22 title_ins_element:"Insertion Element",
bgneal@312 23 title_del_element:"Deletion Element",
bgneal@312 24 title_acronym_element:"Acronym Element",
bgneal@312 25 title_abbr_element:"Abbreviation Element",
bgneal@312 26 title_cite_element:"Citation Element",
bgneal@312 27 remove:"Remove",
bgneal@312 28 insert_date:"Insert current date/time",
bgneal@312 29 option_ltr:"Left to right",
bgneal@312 30 option_rtl:"Right to left",
bgneal@312 31 attribs_title:"Insert/Edit Attributes"
bgneal@312 32 });