Skip to content

Commit

Permalink
Change МИР to Област for local elections
Browse files Browse the repository at this point in the history
  • Loading branch information
hkdobrev committed Oct 29, 2023
1 parent e0e360e commit 51857b3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Videos.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default (props) => {
<div key={i}>
<h3 style={{ margin: '20px 0 10px 0' }}>
<Link to={`/${stream.section.id}`}>Секция {stream.section.id}</Link>,{' '}
МИР {stream.section.electionRegion.code}.{' '}
Област {stream.section.electionRegion.code}.{' '}
{stream.section.electionRegion.name}
</h3>
<h5 style={{ color: '#666', marginTop: '10px' }}>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ViolationFeeds.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default (props) => {
to={`/${electionRegion.code}`}
onClick={(e) => e.stopPropagation()}
>
МИР {electionRegion.code}. {electionRegion.name}
Област {electionRegion.code}. {electionRegion.name}
</Link>
)}
{electionRegion && violation.section ? ', ' : ''}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ViolationSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const ViolationSummary = () => {
{(section?.electionRegion ||
town.municipality?.electionRegions?.length === 1) && (
<p>
МИР:{' '}
Област:{' '}
<Link
to={`/${
section?.electionRegion?.code ||
Expand Down
2 changes: 1 addition & 1 deletion src/components/Violations.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default (props) => {
''
) : (
<Link to={`/${electionRegion.code}`}>
МИР {electionRegion.code}. {electionRegion.name}
Област {electionRegion.code}. {electionRegion.name}
</Link>
)}
{electionRegion && violation.section ? ', ' : ''}
Expand Down
2 changes: 1 addition & 1 deletion src/components/sectionSelector/SectionSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export const SectionSelector = ({ register, errors, setValue }) => {
<>
<DropDown
name="electionRegion"
label="МИР"
label="Област"
options={electionRegions.map((region) => ({
value: region.code,
label: `${region.code} ${region.name}`,
Expand Down

0 comments on commit 51857b3

Please sign in to comment.