Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

QnA $Definition

What Is the $Definition OF local File Of This Thing

1.png 12.8K
2.png 16.3K

Comments

  • Options
    RiverRiver MVP
    edited September 2016

    the plugin really needs some work.

    I didn't test the definitions. here are a few possibilities of things that might be missing from en.php in plugin. they might work you would need to test or the authors would need to update the plugin.

    from the locale file
    $Definition['Activity.QuestionAnswer.FullHeadline'] = '%1$s answered %4$s %8$s.';
    $Definition['Activity.AnswerAccepted.FullHeadline'] = '%1$s accepted %4$s %8$s.';
    $Definition['Q&A Accepted'] = 'Answered ✓';
    $Definition['QnA Accepted Answer'] = 'Answer ✓';

    here are some other definitions not in the plugin locale file...

    $Definition['Accept'] = 'Accept';
    $Definition['Reject'] = 'Reject';

    $Definition['Ask a Question'] = 'Ask a Question';
    $Definition['Click accept or reject beside an answer.'] = 'Click accept or reject beside an answer.';
    $Definition['Q&A'] = 'Q&A';

    $Definition["QnA $QnA Answer"] = "Answer";

    $Definition['Unanswered Questions'] = 'Unanswered Questions';
    $Definition['Unanswered'] = 'Unanswered';

    pay attention here - it must be double quotes. not single for the next two defs.

    $Definition["Someone's answered your question. You need to accept/reject the answer."] = "Someone's answered your question. You need to accept/reject the answer.";

    $Definition["You've asked questions that have now been answered"] = "You've asked questions that have now been answered";

    $Definition['Best Answer'] = 'Best Answer';
    $Definition['Best Answers'] = 'Best Answers';
    $Definition['You can either ask a question or start a discussion.'] = 'You can either ask a question or start a discussion.';

    you could also try pulling missing definitions for your language from the latest language locale file as of today for any language.

    https://vanillaforums.org/addon/vf_es-locale

    $Definition['Accept'] = 'Aceptar';
    $Definition['Accepted'] = 'Aceptado';
    $Definition['Accept this answer.'] = 'Aceptar esta respuesta';
    $Definition['Answer'] = 'Responde';
    $Definition['answer'] = 'respuesta';
    $Definition['Answers'] = 'Respuestas';
    $Definition['answers'] = 'respuestas';
    $Definition['Q&A'] = 'Preguntas y respuestas';
    $Definition['Q&A Accepted'] = 'Respondida ✓';
    $Definition['Q&A Answered'] = 'Respondida';
    $Definition['Q&A Options'] = 'Opciones de preguntas y respuestas';
    $Definition['Q&A Question'] = 'Pregunta';
    $Definition['QnA Accepted Answer'] = 'Respuesta ✓';
    $Definition['QnA Rejected Answer'] = 'Respuesta Rechazada ';
    $Definition['Question'] = 'Pregunta';
    $Definition['question'] = 'pregunta';
    $Definition['Questions'] = 'Preguntas';
    $Definition['questions'] = 'preguntas';
    $Definition['Question Title'] = 'Título de la pregunta';

    Pragmatism is all I have to offer. Avoiding the sidelines and providing centerline pro-tips.

  • Options

    @Rive@River

    Thnkx broh

Sign In or Register to comment.