From 99887ced704b071ca697ab15b952c8b31b7219d6 Mon Sep 17 00:00:00 2001 From: "Mart-Erki.Noumees" Date: Tue, 2 Oct 2018 12:04:27 +0300 Subject: [PATCH] aboutus, history and members english translations --- _data/localisation.yml | 27 ++++++++++++++++++++++++-- en/aboutus.html | 33 ++++++++++++++++++++++++++++++++ en/history.html | 31 ++++++++++++++++++++++++++++++ en/members.html | 43 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 132 insertions(+), 2 deletions(-) create mode 100644 en/aboutus.html create mode 100644 en/history.html create mode 100644 en/members.html diff --git a/_data/localisation.yml b/_data/localisation.yml index 8858496..4ff8f75 100644 --- a/_data/localisation.yml +++ b/_data/localisation.yml @@ -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. LAPhack)." 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 diff --git a/en/aboutus.html b/en/aboutus.html new file mode 100644 index 0000000..14d9237 --- /dev/null +++ b/en/aboutus.html @@ -0,0 +1,33 @@ +--- +layout: default +title: About us - Lapikud +language: en +--- +{% assign locale = site.data.localisation[page.language] %} + +
+ +

MTÜ Lapikud

+ +
+
+
+

{{ locale.aboutus_StatuteHeading }}

+

{{ locale.aboutus_StatuteLink }}

+
+
+
+
+

{{ locale.aboutus_MembersHeading }}

+

{{ locale.aboutus_MembersLink }}

+
+
+
+
+

{{ locale.aboutus_HistoryHeading }}

+

{{ locale.aboutus_HistoryLink }}

+
+
+
+ +
diff --git a/en/history.html b/en/history.html new file mode 100644 index 0000000..ed4a9cf --- /dev/null +++ b/en/history.html @@ -0,0 +1,31 @@ +--- +layout: default +title: History - Lapikud +language: en +--- +{% assign locale = site.data.localisation[page.language] %} + +
+

{{ locale.history_HistoryHeading }}

+

{{ locale.history_HistoryParagraph }}

+ +

{{ locale.history_HistoryPrevBoards }}

+ + {% for management in site.data.past_management %} +
+

{{management.year}}

+
+ {% for member in management.members %} +
+
+ {{ member.name }} +
+
{{ member.name }}
+
+ {% endfor %} +
+
+ {% endfor %} + +
+ diff --git a/en/members.html b/en/members.html new file mode 100644 index 0000000..5e557a6 --- /dev/null +++ b/en/members.html @@ -0,0 +1,43 @@ +--- +layout: default +title: Members - Lapikud +language: en +--- +{% assign locale = site.data.localisation[page.language] %} + +
+

{{ locale.members_MembersHeading }}

+ + +
+

{{ locale.members_JuniorsHeading }}

+
    + {% for member in site.data.members.junior%} +
  • {{ member }}
  • + {% endfor %} +
+
+ +
+

{{ locale.members_SeniorsHeading }}

+
    + {% for member in site.data.members.senior %} +
  • {{ member }}
  • + {% endfor %} +
+
+ +
+

{{ locale.members_AlumniHeading }}

+
    + {% for member in site.data.members.graduates %} +
  • {{ member }}
  • + {% endfor %} +
+
+ +