• Resolved 2candela2

    (@2candela2)


    Hello and thanks for your plugin

    First, sorry for my English ??

    I write here strings that I need to change to be able to have translation each time I update the plugin. I put the line at the beginning of each line and >>> for the change. I have seen that you have already fix some, thanks.


    cp-admin-int-list.inc.php

    183 <h2>Calendars List</h2>
    >>> <h2><?php _e(‘Calendars List’,’wp-time-slots-booking-form’); ?></h2>

    cp-admin-int-message-list.inc.php

    37 $message = “Item deleted”;
    >>> $message = _e(‘Item deleted’,’wp-time-slots-booking-form’);

    111 <nobr><label>Search for:</label> <input type=”text” name=”search” value=”<?php echo esc_attr(@$_GET[“search”]); ?>”>  </nobr>
    <nobr><label>From:</label> <input type=”text” id=”dfrom” name=”dfrom” value=”<?php echo esc_attr(@$_GET[“dfrom”]); ?>” >  </nobr>
    <nobr><label>To:</label> <input type=”text” id=”dto” name=”dto” value=”<?php echo esc_attr(@$_GET[“dto”]); ?>” >  </nobr>
    <nobr><label>Item:</label> <select id=”cal” name=”cal”>
    <option value=”0″>[All Items]</option>

    >>> <nobr><label><?php _e(‘Search for:’,’wp-time-slots-booking-form’); ?></label> <input type=”text” name=”search” value=”<?php echo esc_attr(@$_GET[“search”]); ?>”>  </nobr>
    <nobr><label><?php _e(‘From:’,’wp-time-slots-booking-form’); ?></label> <input type=”text” id=”dfrom” name=”dfrom” value=”<?php echo esc_attr(@$_GET[“dfrom”]); ?>” >  </nobr>
    <nobr><label><?php _e(‘To:’,’wp-time-slots-booking-form’); ?></label> <input type=”text” id=”dto” name=”dto” value=”<?php echo esc_attr(@$_GET[“dto”]); ?>” >  </nobr>
    <nobr><label><?php _e(‘Item:’,’wp-time-slots-booking-form’); ?></label> <select id=”cal” name=”cal”>
    <option value=”0″><?php _e(‘[All Items]’,’wp-time-slots-booking-form’); ?></option>

    Thanks ??

    • This topic was modified 4 years, 11 months ago by 2candela2.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    We have just published a plugin update with those and other translation improvements.

    Thank you very much for the feedback!

    Thread Starter 2candela2

    (@2candela2)

    Sorry, I found one more in cp-admin-int-message-list.inc.php

    193
    <input class=”button” type=”button” name=”caldelete_<?php echo $events[$i]->id; ?>” value=”Delete” onclick=”cp_deleteMessageItem(<?php echo $events[$i]->id; ?>);” />
    >>>
    <input class=”button” type=”button” name=”caldelete_<?php echo $events[$i]->id; ?>” value=”<?php _e(‘Delete’,’wp-time-slots-booking-form’); ?>” onclick=”cp_deleteMessageItem(<?php echo $events[$i]->id; ?>);” />

    All the other perfect, thanks

    • This reply was modified 4 years, 8 months ago by 2candela2.
    Plugin Author codepeople

    (@codepeople)

    Hi,

    Plugin update published.

    Thank you very much for the feedback!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strings that need to be translated’ is closed to new replies.