Strings that need to be translated
-
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.php183 <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 ??
- The topic ‘Strings that need to be translated’ is closed to new replies.