annotate static/js/tiny_mce/plugins/advimage/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.advimage_dlg',{
|
bgneal@312
|
2 tab_general:"General",
|
bgneal@312
|
3 tab_appearance:"Appearance",
|
bgneal@312
|
4 tab_advanced:"Advanced",
|
bgneal@312
|
5 general:"General",
|
bgneal@312
|
6 title:"Title",
|
bgneal@312
|
7 preview:"Preview",
|
bgneal@312
|
8 constrain_proportions:"Constrain proportions",
|
bgneal@312
|
9 langdir:"Language direction",
|
bgneal@312
|
10 langcode:"Language code",
|
bgneal@312
|
11 long_desc:"Long description link",
|
bgneal@312
|
12 style:"Style",
|
bgneal@312
|
13 classes:"Classes",
|
bgneal@312
|
14 ltr:"Left to right",
|
bgneal@312
|
15 rtl:"Right to left",
|
bgneal@312
|
16 id:"Id",
|
bgneal@312
|
17 map:"Image map",
|
bgneal@312
|
18 swap_image:"Swap image",
|
bgneal@312
|
19 alt_image:"Alternative image",
|
bgneal@312
|
20 mouseover:"for mouse over",
|
bgneal@312
|
21 mouseout:"for mouse out",
|
bgneal@312
|
22 misc:"Miscellaneous",
|
bgneal@312
|
23 example_img:"Appearance preview image",
|
bgneal@312
|
24 missing_alt:"Are you sure you want to continue without including an Image Description? Without it the image may not be accessible to some users with disabilities, or to those using a text browser, or browsing the Web with images turned off.",
|
bgneal@312
|
25 dialog_title:"Insert/edit image",
|
bgneal@312
|
26 src:"Image URL",
|
bgneal@312
|
27 alt:"Image description",
|
bgneal@312
|
28 list:"Image list",
|
bgneal@312
|
29 border:"Border",
|
bgneal@312
|
30 dimensions:"Dimensions",
|
bgneal@442
|
31 width:"Width",
|
bgneal@442
|
32 height:"Height",
|
bgneal@312
|
33 vspace:"Vertical space",
|
bgneal@312
|
34 hspace:"Horizontal space",
|
bgneal@312
|
35 align:"Alignment",
|
bgneal@312
|
36 align_baseline:"Baseline",
|
bgneal@312
|
37 align_top:"Top",
|
bgneal@312
|
38 align_middle:"Middle",
|
bgneal@312
|
39 align_bottom:"Bottom",
|
bgneal@312
|
40 align_texttop:"Text top",
|
bgneal@312
|
41 align_textbottom:"Text bottom",
|
bgneal@312
|
42 align_left:"Left",
|
bgneal@312
|
43 align_right:"Right",
|
bgneal@312
|
44 image_list:"Image list"
|
bgneal@312
|
45 }); |