Skip to content

Commit 259634f

Browse files
committed
feat: describe contributors as volunteers
1 parent 6252eef commit 259634f

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ arquivos estáticos, incluindo GitHub Pages.
1818
Os arquivos abaixo são copiados para o site sem transformação. Não é preciso
1919
editar HTML, CSS ou JavaScript para alterar as listas:
2020

21-
- `data/members.json` — pessoas colaboradoras;
21+
- `data/members.json` — pessoas voluntárias, atuais e ex-voluntárias;
2222
- `data/posts.json` — posts do blog (opcional);
2323
- `data/projects.json` — projetos da comunidade (opcional);
2424
- `data/site.json` — textos institucionais, links e código de conduta.

assets/js/site.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
const COPY = {
1313
pt: {
1414
about: 'Sobre', nextMeetups: 'Próximos encontros', seeEvents: 'Ver eventos no Meetup ↗', seeMoreEvents: 'Ver mais no Meetup ↗',
15-
community: 'Comunidade', partners: 'Conheça também', members: 'Membros', events: 'Eventos', projects: 'Projetos',
15+
community: 'Comunidade', partners: 'Conheça também', members: 'Voluntários', events: 'Eventos', projects: 'Projetos',
1616
conduct: 'Código de conduta', fullConduct: 'Ver Código de Conduta completo ↗', blog: 'Blog', upcoming: 'Próximos', past: 'Eventos anteriores',
17-
eventsIntro: 'Nos encontramos para trocar conhecimento. A agenda é mantida em data/events.json.',
18-
noEvents: 'Nenhum evento cadastrado no momento.', noMembers: 'Nenhum membro cadastrado ainda.', noPosts: 'Nenhum post publicado ainda.'
17+
eventsIntro: 'Nos encontramos para trocar conhecimento. A agenda é mantida em data/events.json.', volunteersIntro: 'Pessoas que contribuem ou já contribuíram com a comunidade.',
18+
noEvents: 'Nenhum evento cadastrado no momento.', noMembers: 'Nenhum voluntário cadastrado ainda.', noPosts: 'Nenhum post publicado ainda.'
1919
},
2020
en: {
2121
about: 'About', nextMeetups: 'Next meetups', seeEvents: 'View events on Meetup ↗', seeMoreEvents: 'View more on Meetup ↗',
22-
community: 'Community', partners: 'Discover also', members: 'Members', events: 'Events', projects: 'Projects',
22+
community: 'Community', partners: 'Discover also', members: 'Volunteers', events: 'Events', projects: 'Projects',
2323
conduct: 'Code of conduct', fullConduct: 'View the full Code of Conduct ↗', blog: 'Blog', upcoming: 'Upcoming', past: 'Past events',
24-
eventsIntro: 'We get together to share knowledge. The schedule lives in data/events.json.',
25-
noEvents: 'No events have been added yet.', noMembers: 'No members have been added yet.', noPosts: 'No posts have been published yet.'
24+
eventsIntro: 'We get together to share knowledge. The schedule lives in data/events.json.', volunteersIntro: 'People who contribute or have contributed to the community.',
25+
noEvents: 'No events have been added yet.', noMembers: 'No volunteers have been added yet.', noPosts: 'No posts have been published yet.'
2626
}
2727
};
2828
const SECTIONS = ['comunidade', 'eventos', 'conduta', 'membros', 'projetos', 'blog', 'conheca-tambem'];

data/site.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"heading": { "pt": "O que fazemos", "en": "What we do" },
1313
"cards": [
1414
{ "route": "comunidade", "title": { "pt": "Comunidade", "en": "Community" }, "text": { "pt": "Conversamos no Telegram e nas redes sociais, e promovemos encontros técnicos (palestras e workshops) e não tecnicos (PyBar).", "en": "We connect through Telegram and social media, and promote technical (talks and workshops) and non-technical (PyBar) gatherings." }, "cta": { "pt": "Saiba mais", "en": "Learn more" } },
15-
{ "route": "membros", "title": { "pt": "Membros", "en": "Members" }, "text": { "pt": "Colaboradores mantêm a comunicação ativa e ajudam a organizar e divulgar os encontros.", "en": "Contributors keep communication active and help organise and share our events." }, "cta": { "pt": "Conheça", "en": "Meet them" } },
15+
{ "route": "membros", "title": { "pt": "Voluntários", "en": "Volunteers" }, "text": { "pt": "Pessoas que contribuem ou já contribuíram com a comunidade.", "en": "People who contribute or have contributed to the community." }, "cta": { "pt": "Conheça", "en": "Meet them" } },
1616
{ "route": "projetos", "title": { "pt": "Projetos", "en": "Projects" }, "text": { "pt": "Iniciativas colaborativas para levar conhecimento e Python a mais pessoas.", "en": "Collaborative initiatives that bring Python and knowledge to more people." }, "cta": { "pt": "Ver projetos", "en": "View projects" } }
1717
]
1818
},

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ <h3 class="subheading subdued" data-i18n="past">Eventos anteriores</h3>
8282

8383
<section class="section" id="membros" aria-labelledby="members-title">
8484
<div class="section-heading"><h2 id="members-title"></h2><span></span></div>
85-
<p class="data-source">data/members.json</p>
85+
<p class="section-intro" data-i18n="volunteersIntro">Pessoas que contribuem ou já contribuíram com a comunidade.</p>
8686
<div class="member-grid" id="members-list"></div>
8787
</section>
8888

0 commit comments

Comments
 (0)