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.

Can't translate %s changed %s permissions.

edited June 2011 in Vanilla 2.0 - 2.8
Username changed Username's permissions.

$Definition['%s changed %s permissions.'] = '%s изменил %s настройки доступа';

and

Username was removed from the Member role and added to the Administrator role.

$Definition['%s was removed from the %s and added to the %s'] = '%s был удален из %s и добавлен в %s';

What's wrong?
Tagged:

Best Answer

  • ToddTodd Chief Product Officer Vanilla Staff
    edited June 2011 Answer ✓
    Try the following instead:
    $Definition['Activity.RoleChange.FullHeadline'] = '%1$s changed %4$s permissions.';
    $Definition['Activity.RoleChange.ProfileHeadline'] = '%1$s changed %4$s permissions.';

    $Definition['%1$s was removed from the %2$s %3$s and added to the %4$s %5$s.'] = '...';
    $Definition['%1$s was removed from the %2$s %3$s.'] = '...';
    $Definition['%1$s was added to the %2$s %3$s.'] = '...';

Answers

  • ToddTodd Chief Product Officer Vanilla Staff
    edited June 2011 Answer ✓
    Try the following instead:
    $Definition['Activity.RoleChange.FullHeadline'] = '%1$s changed %4$s permissions.';
    $Definition['Activity.RoleChange.ProfileHeadline'] = '%1$s changed %4$s permissions.';

    $Definition['%1$s was removed from the %2$s %3$s and added to the %4$s %5$s.'] = '...';
    $Definition['%1$s was removed from the %2$s %3$s.'] = '...';
    $Definition['%1$s was added to the %2$s %3$s.'] = '...';
  • @Todd
    Thanks, it worked. But I have obtained the following construct:

    Admin changed user's permissions.

    I need to delete 's in the name of the user. This is a feature of the Russian language. How to remove 's?

    Sorry for the google translate
  • And I can not translate this:
    image

    image

    on /dashboard/message/add page
Sign In or Register to comment.