The idea is that translations essentially consist of the same content
- it would be tedious having to recreate the same content for 4
languages without this helper.
There's no configuration option at the moment as you have noticed.
Maybe it would be enough to only copy content when nothing has been
added yet?
> A slightly related question: When I add a new page, I'd like to see an
> empty text field by default. Is there a way to configure some default
> content on a new page in the admin?
Unfortunately no. The simplest way to achieve this would be to
customize the page item editor template and add the default content
using javascript (untested):
{% if not original %}
<script>$(function() {
ItemEditor.add_content('richtextcontent', 'main');
});</script>
{% endif %}
Best regards
Matthias
Yes, definitely!
Thanks,
Matthias
On Tue, Jan 24, 2012 at 09:38, Wouter van der Graaf <wou...@dynora.nl> wrote:
> OK, I will schedule a FeinCMS annoyance afternoon then ;-)
>
> I will ask my colleagues to join me. Perhaps OP (Jeroen is a friend of
> mine) would like to step into our office as well.
>
Just wanted to ask if you have found anything interesting to share?
Thanks,
Matthias
Definitely not too annoying. I've implemented these suggestions here:
Only copy content if new object does not have any yet:
https://github.com/feincms/feincms/commit/0a4d0e484317d6c71448ad56c4999e5e8ef238d1
Show notification:
https://github.com/feincms/feincms/commit/971a8b3fe14faf1ba7be7b340ed94145f9525856
Thanks,
Matthias