• Resolved Dani

    (@tripussy)


    Hello Support Team,
    I use the total soft calendar “Crazy Calendar”.
    Unfortunately, the month names are still not displayed the German translation in the “Event list”.
    I have already set the language to German in the user panel and in the settings. I urgently need the German translation! Are there any other ways to translate the month names? Maybe somewhere in a php-file?
    I would be very happy about help.
    Many Thanks

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author totalsoft

    (@totalsoft)

    Hello Dear Dani.

    Sorry, but this link is not working. There is nothing there, that I could see why there is not support the German language.

    Please can You give us another link where we can see the calendar.

    Thank You

    Thread Starter Dani

    (@tripussy)

    Hey TotalSoft Support…

    Sorry..this is the correct link:
    http://daniela-rohmann.de/WP/Test/termine/
    Pls click at the “Liste”-btn.
    You can see, tha the Months are not in the german translation,
    but in the “Kalender”-view it is.
    I’m a little bit confused about this.
    Can You help?
    And how can I transfer my settings of the calender to another site?

    Thank you very much,
    Dani

    Plugin Author totalsoft

    (@totalsoft)

    Dear Dani.

    Thank you for contacting us and for reporting your problem.

    To solve your problem, edit our plugin’s widget.php file. Find this code in line 6014-6020.

    var event_date = crazy_list_events [i] .startdatef;
    // End date
    var event_end_time = '';
    if (crazy_list_events [i] .duration> 1)
    {
    event_end_time = '-' + crazy_list_events [i] .enddatef;
    }
    Plugin Author totalsoft

    (@totalsoft)

    Please edit the code and write like this.

    var event_date = crazy_list_events [i] .startdatef;
    var monthNum = parseInt (crazy_events [i] .month)
    event_date = event_date.split ('')
    event_date [1] = wordMonth [monthNum - 1]
    event_date = event_date.join ('')
    
    // End date
    var event_end_time = '';
    if (crazy_list_events [i] .duration> 1)
    {
    var str = crazy_events [i] .enddatef;
    str = str.split ('');
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Still missing german translation’ is closed to new replies.