annotate static/js/tiny_mce/themes/advanced/langs/en_dlg.js @ 318:c550933ff5b6

Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Feb 2011 21:46:52 +0000
parents 88b2b9cb8c1f
children 6c182ceb7147
rev   line source
bgneal@312 1 tinyMCE.addI18n('en.advanced_dlg',{
bgneal@312 2 about_title:"About TinyMCE",
bgneal@312 3 about_general:"About",
bgneal@312 4 about_help:"Help",
bgneal@312 5 about_license:"License",
bgneal@312 6 about_plugins:"Plugins",
bgneal@312 7 about_plugin:"Plugin",
bgneal@312 8 about_author:"Author",
bgneal@312 9 about_version:"Version",
bgneal@312 10 about_loaded:"Loaded plugins",
bgneal@312 11 anchor_title:"Insert/edit anchor",
bgneal@312 12 anchor_name:"Anchor name",
bgneal@312 13 code_title:"HTML Source Editor",
bgneal@312 14 code_wordwrap:"Word wrap",
bgneal@312 15 colorpicker_title:"Select a color",
bgneal@312 16 colorpicker_picker_tab:"Picker",
bgneal@312 17 colorpicker_picker_title:"Color picker",
bgneal@312 18 colorpicker_palette_tab:"Palette",
bgneal@312 19 colorpicker_palette_title:"Palette colors",
bgneal@312 20 colorpicker_named_tab:"Named",
bgneal@312 21 colorpicker_named_title:"Named colors",
bgneal@312 22 colorpicker_color:"Color:",
bgneal@312 23 colorpicker_name:"Name:",
bgneal@312 24 charmap_title:"Select custom character",
bgneal@312 25 image_title:"Insert/edit image",
bgneal@312 26 image_src:"Image URL",
bgneal@312 27 image_alt:"Image description",
bgneal@312 28 image_list:"Image list",
bgneal@312 29 image_border:"Border",
bgneal@312 30 image_dimensions:"Dimensions",
bgneal@312 31 image_vspace:"Vertical space",
bgneal@312 32 image_hspace:"Horizontal space",
bgneal@312 33 image_align:"Alignment",
bgneal@312 34 image_align_baseline:"Baseline",
bgneal@312 35 image_align_top:"Top",
bgneal@312 36 image_align_middle:"Middle",
bgneal@312 37 image_align_bottom:"Bottom",
bgneal@312 38 image_align_texttop:"Text top",
bgneal@312 39 image_align_textbottom:"Text bottom",
bgneal@312 40 image_align_left:"Left",
bgneal@312 41 image_align_right:"Right",
bgneal@312 42 link_title:"Insert/edit link",
bgneal@312 43 link_url:"Link URL",
bgneal@312 44 link_target:"Target",
bgneal@312 45 link_target_same:"Open link in the same window",
bgneal@312 46 link_target_blank:"Open link in a new window",
bgneal@312 47 link_titlefield:"Title",
bgneal@312 48 link_is_email:"The URL you entered seems to be an email address, do you want to add the required mailto: prefix?",
bgneal@312 49 link_is_external:"The URL you entered seems to external link, do you want to add the required http:// prefix?",
bgneal@312 50 link_list:"Link list"
bgneal@312 51 });