Skip to content

refactor(locale): rename pt-BR streetSuffix to streetPrefix #3493

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/locales/pt_BR/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import secondary_address from './secondary_address';
import state from './state';
import state_abbr from './state_abbr';
import street_pattern from './street_pattern';
import street_suffix from './street_suffix';
import street_prefix from './street_prefix';

const location: LocationDefinition = {
building_number,
Expand All @@ -26,7 +26,7 @@ const location: LocationDefinition = {
state,
state_abbr,
street_pattern,
street_suffix,
street_prefix,
};

export default location;
4 changes: 2 additions & 2 deletions src/locales/pt_BR/location/street_pattern.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default [
'{{person.firstName}} {{location.street_suffix}}',
'{{person.lastName}} {{location.street_suffix}}',
'{{location.street_prefix}} {{person.firstName}}',
'{{location.street_prefix}} {{person.lastName}}',
];