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.

Changed new plural into new bericht but shows New plural?

SchryversSchryvers
edited October 2014 in Vanilla 2.0 - 2.8

Hello! What does New Plural means? Because i have showed first "1 nieuw" but on the seconds topic it says 2 new plural?

i have this in my captured.php
$Definition['%s New Plural'] = '%s Nieuw';

Whats New Plural? its New Message right? So why the first time its displayed good 1 Nieuw and second topic 2 New Plural?

What do i have to do?

2.1.3 on ozone 2.1 theme

Best Answer

  • peregrineperegrine MVP
    edited October 2014 Answer ✓

    try lower case.

        $Definition['%s new plural'] = '%s Newbie';
        $Definition['%s new'] = '%s Nieuw';
        $Definition['new discussion'] = 'Nieuw';  
       $Definition['new'] = 'Nieuw';
    

    it was upper case in vanilla 2.0, now it is lowercase for the variations of New vs new in vanilla 2.1.x
    and it looks like it might be something different next time :)

    I already suggested to you - this several times.

    http://vanillaforums.org/discussion/comment/209149/#Comment_209149

    and the locle developer plugin as well.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

Answers

  • does it work correctly on default theme.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • No it shows New Plural also, only when it says 1 then its dutch, the 2 or more it says new plural

  • peregrineperegrine MVP
    edited October 2014 Answer ✓

    try lower case.

        $Definition['%s new plural'] = '%s Newbie';
        $Definition['%s new'] = '%s Nieuw';
        $Definition['new discussion'] = 'Nieuw';  
       $Definition['new'] = 'Nieuw';
    

    it was upper case in vanilla 2.0, now it is lowercase for the variations of New vs new in vanilla 2.1.x
    and it looks like it might be something different next time :)

    I already suggested to you - this several times.

    http://vanillaforums.org/discussion/comment/209149/#Comment_209149

    and the locle developer plugin as well.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

Sign In or Register to comment.