jDiction Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

jDiction 2.2.0 released. http://jdiction.org/downloads

Pages: 1 [2] 3

Author Topic: Can't save any translations  (Read 40921 times)

scorpio62

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: Can't save any translations
« Reply #15 on: November 29, 2013, 10:54:09 am »

yes
Logged

Harald Leithner

  • Administrator
  • Hero Member
  • *****
  • Posts: 1684
    • View Profile
Re: Can't save any translations
« Reply #16 on: November 29, 2013, 11:01:46 am »

There are some Problems with 3.2.0 and multilang support. But maybe thats the reason, would you send me a link to your site?
Logged
Joomla! 5.0 Release Manager
Vote at JED

scorpio62

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: Can't save any translations
« Reply #17 on: November 29, 2013, 11:10:52 am »

I have sent you a pm.
Logged

kuba22s

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Can't save any translations
« Reply #18 on: November 29, 2013, 04:26:33 pm »

hello,


I have this same problem, is anyone who can help me? Is urgent :(
I set up a Joomla with your tips, itry with diffrent browsers and nothing :(

There is my info
Version    

    Library Version: 0.9.9.12-alpha.5045e54
    Joomla Version 2.5.11 is ok.

Plugin    

    JDiction Plugin is enabled
    Languagefilter is enabled
    Multiple Plugins have the same loading position (0)

Database    

    jDiction Database Driver is selected

Language    

    Translations are not equal to frontend translations.

Module    

    Module is enabled
Logged

Harald Leithner

  • Administrator
  • Hero Member
  • *****
  • Posts: 1684
    • View Profile
Re: Can't save any translations
« Reply #19 on: November 29, 2013, 04:28:08 pm »

This Version works better.
Logged
Joomla! 5.0 Release Manager
Vote at JED

Harald Leithner

  • Administrator
  • Hero Member
  • *****
  • Posts: 1684
    • View Profile
Re: Can't save any translations
« Reply #20 on: November 29, 2013, 04:29:22 pm »

oh no you can't have the same problem because you are not using Joomla 3.2.0

What editor do you use? If not the default one (tinyMCE) please change the editor to the default one.
Logged
Joomla! 5.0 Release Manager
Vote at JED

kuba22s

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Can't save any translations
« Reply #21 on: November 29, 2013, 04:35:57 pm »

I use TinyMCE so standard,

so I also use version like 0.9.9.8 and nothing- this same :(
Logged

Harald Leithner

  • Administrator
  • Hero Member
  • *****
  • Posts: 1684
    • View Profile
Re: Can't save any translations
« Reply #22 on: November 29, 2013, 04:37:36 pm »

2 things

use version 0.9.9.11
upgrade joomla to 2.5.14 thats my tested version.

How many languages have you installed and created content language?
Logged
Joomla! 5.0 Release Manager
Vote at JED

kuba22s

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Can't save any translations
« Reply #23 on: November 29, 2013, 04:47:52 pm »

ok, I am doing this

three- Polish, English, Germany
Logged

kuba22s

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Can't save any translations
« Reply #24 on: November 29, 2013, 04:59:12 pm »

ok so  I updated it and install 0.9.9.11 this same :(
Logged

kuba22s

  • Newbie
  • *
  • Posts: 5
    • View Profile
Re: Can't save any translations
« Reply #25 on: November 29, 2013, 05:04:03 pm »

Version    

    Library Version: 0.9.9.11
    Joomla Version 2.5.14 is ok.

Plugin    

    JDiction Plugin is enabled
    Languagefilter is enabled
    Multiple Plugins have the same loading position (0)

Database    

    jDiction Database Driver is selected

Language    

    Translations are not equal to frontend translations.

Module    

    Module is enabled
Logged

Harald Leithner

  • Administrator
  • Hero Member
  • *****
  • Posts: 1684
    • View Profile
Re: Can't save any translations
« Reply #26 on: November 29, 2013, 05:54:23 pm »

Please send me an pm with a super admin account
Logged
Joomla! 5.0 Release Manager
Vote at JED

Booksie

  • Newbie
  • *
  • Posts: 4
    • View Profile
Re: Can't save any translations
« Reply #27 on: January 02, 2014, 11:47:40 pm »

Hi,

I am having the same issue and checked that I followed the instuctions carefully.

Everything is working perfectly (Title, Category etc) but the text content is not saving.

Can anyone help me out in this?

Thanks
Logged

youchenlee

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: Can't save any translations
« Reply #28 on: January 07, 2014, 09:11:07 am »

Hi,

I am having the same issue and checked that I followed the instuctions carefully.

Everything is working perfectly (Title, Category etc) but the text content is not saving.

Can anyone help me out in this?

Thanks

My site has exactly the same problem with yours.
After tracing on it, I found it's caused by the error "tinyMCE.onAddEditor is undefined". As I'm using tinyMCE 4 (Joomla! 3.2), the event registration functions seems changed.
Here is a tiny patch fixed my site, but I'm not sure it's all correct, please kindly review it.

patch: http://pastebin.com/vK7aBhFj (please ignore the incorrect indentation)
Code: [Select]
diff --git a/administrator/components/com_jdiction/views/translation/tmpl/form.php b/administrator/components/com_jdiction/views/translation/tmpl/form.php
index 49fe3ca..78dd4ec 100644
--- a/administrator/components/com_jdiction/views/translation/tmpl/form.php
+++ b/administrator/components/com_jdiction/views/translation/tmpl/form.php
@@ -45,8 +45,9 @@ JHtml::_('behavior.formvalidation');
                });
                //If we have a tinyMCE Editor
                if (typeof tinyMCE != 'undefined') {
-           tinyMCE.onAddEditor.add(function(mgr,ed) {
-                               ed.onChange.add(function(ed, e) {
+                       tinyMCE.on('AddEditor', function(e) {
+                               ed = e.editor;
+                               ed.on('Change', function(e) {
                                        jdiction_checkStatus(ed.getContent(), jQuery('#'+ed.id+'_status').prop('title'), ed.id, '#'+ed.id+'_tbl');
                                });
                        });
« Last Edit: January 07, 2014, 09:17:55 am by youchenlee »
Logged

Harald Leithner

  • Administrator
  • Hero Member
  • *****
  • Posts: 1684
    • View Profile
Re: Can't save any translations
« Reply #29 on: January 07, 2014, 12:25:17 pm »

You are not using the latest version... I only have a alpha for 3.2 atm.

http://forum.jdiction.org/index.php/topic,473.msg1477.html#msg1477
Logged
Joomla! 5.0 Release Manager
Vote at JED

Pages: 1 [2] 3