Merge pull request #26540 from brave/maxk-fix-person-people-replacements

Fixes aggressive replacements of person/people with profile(s).
This commit is contained in:
Max Karolinskiy
2024-11-19 14:09:26 -05:00
committed by GitHub
19 changed files with 75 additions and 94 deletions
@@ -71,6 +71,31 @@ fixup_replacements = [
(r'powered by Brave AI', r'powered by Google AI'),
(r'Invite profiles', r'Invite people'),
(r'Profiles & Society', r'People & Society'),
(r'help profiles', r'help people'),
(r'Most profiles', r'Most people'),
(r'files with profiles', r'files with people'),
(r'harder for profiles', r'harder for people'),
(r'better for profiles', r'better for people'),
(r'share with profiles', r'share with people'),
(r'free to profiles', r'free to people'),
(r'programs in which profiles', r'programs in which people'),
(r'famous profiles', r'famous people'),
(r'ordinary profiles', r'ordinary people'),
(r'manufacturers and other profiles', r'manufacturers and other people'),
(r'use by everyday profiles', r'use by everyday people'),
(r'prepare taxes for profiles', r'prepare taxes for people'),
(r'scientific study of profiles', r'scientific study of people'),
(r'children and young profiles', r'children and young people'),
(r'sport in which two profiles', r'sport in which two people'),
(r'group of profiles', r'group of people'),
(r'keeps unwanted profiles', r'keeps unwanted people'),
(r'a real profile', r'a real person'),
(r'The profile who set up', r'The person who set up'),
(r'name could be a profile', r'name could be a person'),
(r'name identifies the profile', r'name identifies the person'),
(r'the insured profile', r'the insured person'),
(r'programs where one profile', r'programs where one person'),
(r'Ask in profile', r'Ask in person'),
]