annotate static/js/tiny_mce/plugins/advlink/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.advlink_dlg',{
bgneal@312 2 title:"Insert/edit link",
bgneal@312 3 url:"Link URL",
bgneal@312 4 target:"Target",
bgneal@312 5 titlefield:"Title",
bgneal@442 6 is_email:"The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",
bgneal@442 7 is_external:"The URL you entered seems to be an external link. Do you want to add the required http:// prefix?",
bgneal@312 8 list:"Link list",
bgneal@312 9 general_tab:"General",
bgneal@312 10 popup_tab:"Popup",
bgneal@312 11 events_tab:"Events",
bgneal@312 12 advanced_tab:"Advanced",
bgneal@312 13 general_props:"General properties",
bgneal@312 14 popup_props:"Popup properties",
bgneal@312 15 event_props:"Events",
bgneal@312 16 advanced_props:"Advanced properties",
bgneal@312 17 popup_opts:"Options",
bgneal@312 18 anchor_names:"Anchors",
bgneal@312 19 target_same:"Open in this window / frame",
bgneal@312 20 target_parent:"Open in parent window / frame",
bgneal@312 21 target_top:"Open in top frame (replaces all frames)",
bgneal@312 22 target_blank:"Open in new window",
bgneal@312 23 popup:"Javascript popup",
bgneal@312 24 popup_url:"Popup URL",
bgneal@312 25 popup_name:"Window name",
bgneal@312 26 popup_return:"Insert 'return false'",
bgneal@312 27 popup_scrollbars:"Show scrollbars",
bgneal@312 28 popup_statusbar:"Show status bar",
bgneal@312 29 popup_toolbar:"Show toolbars",
bgneal@312 30 popup_menubar:"Show menu bar",
bgneal@312 31 popup_location:"Show location bar",
bgneal@312 32 popup_resizable:"Make window resizable",
bgneal@312 33 popup_dependent:"Dependent (Mozilla/Firefox only)",
bgneal@312 34 popup_size:"Size",
bgneal@442 35 width:"Width",
bgneal@442 36 height:"Height",
bgneal@312 37 popup_position:"Position (X/Y)",
bgneal@312 38 id:"Id",
bgneal@312 39 style:"Style",
bgneal@312 40 classes:"Classes",
bgneal@312 41 target_name:"Target name",
bgneal@312 42 langdir:"Language direction",
bgneal@312 43 target_langcode:"Target language",
bgneal@312 44 langcode:"Language code",
bgneal@312 45 encoding:"Target character encoding",
bgneal@312 46 mime:"Target MIME type",
bgneal@312 47 rel:"Relationship page to target",
bgneal@312 48 rev:"Relationship target to page",
bgneal@312 49 tabindex:"Tabindex",
bgneal@312 50 accesskey:"Accesskey",
bgneal@312 51 ltr:"Left to right",
bgneal@312 52 rtl:"Right to left",
bgneal@312 53 link_list:"Link list"
bgneal@312 54 });