[ad_1]
One of the main strings on the product page is not currently possible to translate. Could you change line 316 of stock-locations-for-woocommerce.php to this to make it translatable?
// Current line
$data['stock_locations_product_page_notice'] = apply_filters('slw_product_stock_location_notice', 'STOCK_QTY available at LOCATION_NAME');// New line (Translatable)
$data['stock_locations_product_page_notice'] = apply_filters('slw_product_stock_location_notice', sprintf(__('%s available at %s', 'stock-locations-for-woocommerce'), 'STOCK_QTY', 'LOCATION_NAME'));
