• Resolved basile67

    (@basile67)


    Hi,
    I use your plugin with Greek language but the ‘Option Total’, ‘Total’, ‘Product Price’, ‘Totla Discount’, ‘Discount Price’ and ‘Discount Fee’ was not translated with Loco Translate plugin.
    So after I investigated your code I found the following solution.

    In file /inc/arrays.php change the code from line 933 – 938 with the code below:

    $ppom_label_discount_price = ppom_get_option(‘ppom_label_discount_price’, __( ‘Discount Price’, ‘ppom’ ));
    $ppom_label_product_price = ppom_get_option(‘ppom_label_product_price’, __( ‘Product Price’, ‘ppom’ ));
    $ppom_label_option_total = ppom_get_option(‘ppom_label_option_total’, __( ‘Option Total’, ‘ppom’ ));
    $ppom_label_fixed_fee = ppom_get_option(‘ppom_label_fixed_fee’, __( ‘Fixed Fee’, ‘ppom’ ));
    $ppom_label_total_discount = ppom_get_option(‘ppom_label_total_discount’, __( ‘Total Discount’, ‘ppom’ ));
    $ppom_label_total = ppom_get_option(‘ppom_label_total’, __( ‘Total’, ‘ppom’ ));

    This solved the translation problem. Please include this in your next update.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Translation Problem Solved’ is closed to new replies.