aboutus, history and members english translations

pull/35/head
Mart-Erki.Noumees 7 years ago
parent 8416a34087
commit 99887ced70
  1. 27
      _data/localisation.yml
  2. 33
      en/aboutus.html
  3. 31
      en/history.html
  4. 43
      en/members.html

@ -101,11 +101,10 @@ en:
student_WhatYouDoDesc3 : "Joining the developers team you get practice which is not offered in the school.
You get to learn everything regarding software under our senior members,
not to mention experience in teamwork and a check in your CV."
student_WhatYouDoDesc4 : "In Helpdesk's team you can repair and build PC's and work with other electronics."
student_WhatYouDoDesc4 : "In Helpdesk's team you can repair and build PCs and work with other electronics."
student_WhatYouDoDesc5 : "Events and marketing teams respectively are responsible for events and their marketing in Lapikud,
but also with some greater events (e.g. <a href=\"https://laphack.eu/\">LAPhack</a>)."
student_WhatYouDoJoin : "Join!"
student_MentorsHeading : "Mentors"
# V grammatically correct ??? V
@ -119,6 +118,30 @@ en:
ourwork_BannerButton : "Contact us !"
ourwork_DoneWorks : "Previous solutions:"
# aboutus.html
aboutus_StatuteHeading : "Statute"
aboutus_StatuteLink : "Our statute which should be read by all our members."
aboutus_MembersHeading : "Members"
aboutus_MembersLink : "All who are and all who have been members of Lapikud."
aboutus_HistoryHeading : "History"
aboutus_HistoryLink : "Check out our history!"
# history.html
history_HistoryHeading : "History"
history_HistoryParagraph : "MTÜ Lapikud was established in 2002 23. February. Organisation was created by a fellowship of
computer science students who liked to get together and dilly-dally. Reason why we were created a MTÜ ( nonprofit organization )
was to get a .ee domain. The name \"Lapikud\" comes from times when computer science specialty's identification code was \"LAP\".
Back in 2002 til 2010 the organization's goal was simply to fill IT students' time and support their studies.
Since 2011 Lapikud titled themselves a Software development club and focused on involving students in development projects.
In Spring 2012 a first ever thesis hatched from Lapikud was defended and graded 5."
history_HistoryPrevBoards : "Previous managers of Lapikud"
# members.html
members_MembersHeading : "Want to see your name here?"
members_MembersJoin : "Come and join us !"
members_JuniorsHeading : "Junior members of MTÜ Lapikud:"
members_SeniorsHeading : "Senior members of MTÜ Lapikud:"
members_AlumniHeading : "Graduates of MTÜ Lapikud:"
ee:
# index.html

@ -0,0 +1,33 @@
---
layout: default
title: About us - Lapikud
language: en
---
{% assign locale = site.data.localisation[page.language] %}
<div class="page">
<h1>MTÜ Lapikud</h1>
<!-- three icons -->
<div class="row">
<div class="column">
<div>
<h3>{{ locale.aboutus_StatuteHeading }}</h3>
<p><a href="/statute">{{ locale.aboutus_StatuteLink }}</a></p>
</div>
</div>
<div class="column">
<div>
<h3>{{ locale.aboutus_MembersHeading }}</h3>
<p><a href="/members">{{ locale.aboutus_MembersLink }}</a></p>
</div>
</div>
<div class="column">
<div>
<h3>{{ locale.aboutus_HistoryHeading }}</h3>
<p><a href="/history">{{ locale.aboutus_HistoryLink }}</a></p>
</div>
</div>
</div>
</div>

@ -0,0 +1,31 @@
---
layout: default
title: History - Lapikud
language: en
---
{% assign locale = site.data.localisation[page.language] %}
<div class="page" id="history">
<h1>{{ locale.history_HistoryHeading }}</h1>
<p>{{ locale.history_HistoryParagraph }}</p>
<h1 class="centered-text">{{ locale.history_HistoryPrevBoards }}</h1>
{% for management in site.data.past_management %}
<div class="management-for-year">
<h2 class="centered-text">{{management.year}}</h2>
<div class="year">
{% for member in management.members %}
<div class="person">
<div class="img-container">
<img src="{{ "/assets/past-management-images/optimised/" | append: member.image }}" alt="{{ member.name }}">
</div>
<h5 class="centered-text">{{ member.name }}</h5>
</div>
{% endfor %}
</div>
</div>
{% endfor %}
</div>

@ -0,0 +1,43 @@
---
layout: default
title: Members - Lapikud
language: en
---
{% assign locale = site.data.localisation[page.language] %}
<div class="page" id="members">
<h3 class="centered-text">{{ locale.members_MembersHeading }}</h3>
<a href="/student" id="banner-container-link">
<h3 class="centered-text banner">
{{ locale.members_MembersJoin }}
</h3>
</a>
<div class="members-container">
<h3 class="centered-text">{{ locale.members_JuniorsHeading }}</h3>
<ul>
{% for member in site.data.members.junior%}
<li>{{ member }}</li>
{% endfor %}
</ul>
</div>
<div class="members-container">
<h3 class="centered-text">{{ locale.members_SeniorsHeading }}</h3>
<ul>
{% for member in site.data.members.senior %}
<li>{{ member }}</li>
{% endfor %}
</ul>
</div>
<div class="members-container">
<h3 class="centered-text">{{ locale.members_AlumniHeading }}</h3>
<ul>
{% for member in site.data.members.graduates %}
<li>{{ member }}</li>
{% endfor %}
</ul>
</div>
</div>
Loading…
Cancel
Save