• Resolved terrassenkind

    (@terrassenkind)


    Hi,

    I wann get the Month in the event details in german…
    where do i find the file in the FTP?

    cheers
    Johannes

    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)

    Dear terrassenkind

    Thank You for contacting us and for asking You question.

    Our look at the problem which You said.

    Now the calendar in Your page in German.

    Please, can You explain which is the problem?

    We will be glad to help You.

    Thank You.

    Plugin Author totalsoft

    (@totalsoft)

    Hello dear terrassenkind.

    You can make changes from Admin Panel.

    At the left part You will see “User” panel. Press on that for the new page. Then press “Your Profile”, after that opens the menu bar, here You can choose the language for Your page.

    After that, look to the left You will see the “Settings panel”, in that panel You can find “site language”, here You can choose Your preferred language for the calendar.

    Thank You for using our plugin.

    Thank You very much.

    Thread Starter terrassenkind

    (@terrassenkind)

    Nope, Does not fix the problem. in the screenshot you can see the english word OCTOBER but in wanna see it in German, so please help me to fix! otherwise i cant use the plug in as i want it to use,…

    Screenshot: https://klangquelle.at/wp-content/uploads/2018/09/month.png

    Plugin Author totalsoft

    (@totalsoft)

    Dear terrassenkind.

    You must edit the widget.php file of our plugin. There you will see this code

    // Start date 
    							var event_date = crazy_events[id].startdatef;
    							// End date
    							var event_end_time = '';
    							if (crazy_events[id].duration > 1)
    							{
    								event_end_time = ' - ' + crazy_events[id].enddatef;
    							}
    							// Event time

    Please edit the code and write like this.

    var event_date = crazy_events[id].startdatef;
    var monthNum = parseInt(crazy_events[id].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_events[id].duration > 1)
    {
    var str = crazy_events[id].enddatef;
    str = str.split(' ')
    str[1] = wordMonth[monthNum - 1]
    str = str.join(' ')
    event_end_time = ' - ' + str;
    }

    Thank You

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Display Month in German’ is closed to new replies.