*

jett_works

  • *
  • 2 posts
Tradução para Portugues Brasil
« on: October 09, 2017, 05:08:58 AM »
Hello everyone, I'm new here, I do not know if I should open a new topic, but let's

I bought this plugin, I was trying to translate into Brazilian Portuguese the emails sent, translate directly into the files
item_validation / admin / configure.php
item_validation / index.php

After uploading the file via FTP the emails continue in English, I did several tests and I do not translate for porugues Brazil, I believe you are doing something wrong

I would like the help of someone here from the forum, I have other plugin from this same developer and they all worked correctly, but this item_validation plugin is giving me a headache

Thank you

*

ferry

  • ****
  • 155 posts
Re: Tradução para Portugues Brasil
« Reply #1 on: October 09, 2017, 06:12:16 AM »
I dont know this plugin but mostky email are send by osclass core.

So you have to translate in oc-admin the email templates

*

MB Themes

Re: Tradução para Portugues Brasil
« Reply #2 on: October 09, 2017, 09:23:46 AM »
@jett_works
As ferry told, emails are translated in oc-admin > settings > email templates
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

jett_works

  • *
  • 2 posts
Re: Tradução para Portugues Brasil
« Reply #3 on: October 09, 2017, 01:23:38 PM »
@jett_works
As ferry told, emails are translated in oc-admin > settings > email templates

Hi! Thank you for the prompt reply.
I was talking about the emails sent by the plugin to the user when having the listing rejected, the osclass email template is for PT-BR portugues

even though the email template is not part of the plugin, by rejecting a listing in the admin, the email is sent by the plugin MB-Themes.com ---> item_validation

so you can understand and provide help, I'm sending images from the screens when rejecting a listing, the item_validation / languages ​​/ en_US / messages / translation file does not have the options to translate

developer plugin MB-Themes.com ---> item_validation
https://www.eliteanuncios.com.br/tela-plugin/2017-10-9-Plugins-Elite-Anuncios.png

osclass email template already translated
https://www.eliteanuncios.com.br/tela-plugin/2017-10-9-Templates-de-e-mail-Elite-Anuncios.png

option to reject listing
https://www.eliteanuncios.com.br/tela-plugin/2017-10-9-Plugins-Elite-Anuncios-Item Validation.png

email sent by plugin to user edit listing
https://www.eliteanuncios.com.br/tela-plugin/2017-10-9-Plugins-Elite-Anuncios-Configure.png

email sent in English, even after you have translated the plugin
https://www.eliteanuncios.com.br/tela-plugin/Screenshot-2017-10-9-Your-listing-has-been-rejected-beenegocios-Gmail.png

Best regards
About Me

*

MB Themes

Re: Tradução para Portugues Brasil
« Reply #4 on: October 10, 2017, 01:17:20 PM »
In email function:
oc-content/plugins/item_validation/email.php

Plugin check what is your locale:
Code: [Select]
  $locale = osc_current_user_locale() ;
  $content = array();
  if(isset($page['locale'][$locale]['s_title'])) {
    $content = $page['locale'][$locale];
  } else {
    $content = current($page['locale']);
  }

You might be using english in oc-admin.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots