annotate media/js/tiny_mce/plugins/template/langs/en_dlg.js @ 235:d302c498560e
Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author |
Brian Neal <bgneal@gmail.com> |
date |
Thu, 26 Aug 2010 04:01:58 +0000 |
parents |
a5b4c5ce0658 |
children |
|
rev |
line source |
bgneal@45
|
1 tinyMCE.addI18n('en.template_dlg',{
|
bgneal@45
|
2 title:"Templates",
|
bgneal@45
|
3 label:"Template",
|
bgneal@45
|
4 desc_label:"Description",
|
bgneal@45
|
5 desc:"Insert predefined template content",
|
bgneal@45
|
6 select:"Select a template",
|
bgneal@45
|
7 preview:"Preview",
|
bgneal@45
|
8 warning:"Warning: Updating a template with a different one may cause data loss.",
|
bgneal@45
|
9 mdate_format:"%Y-%m-%d %H:%M:%S",
|
bgneal@45
|
10 cdate_format:"%Y-%m-%d %H:%M:%S",
|
bgneal@45
|
11 months_long:"January,February,March,April,May,June,July,August,September,October,November,December",
|
bgneal@45
|
12 months_short:"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec",
|
bgneal@45
|
13 day_long:"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday",
|
bgneal@45
|
14 day_short:"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"
|
bgneal@45
|
15 }); |