Skip to content

Commit 8dfdb32

Browse files
committed
Remove @; fix date -> end-date; swap upcoming order
1 parent 15a6381 commit 8dfdb32

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

databags/translate.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ incomplete_space_after_link = false
2525
welcome = Welcome
2626
projects = Projects
2727
latest_news = Latest News
28-
meet_team = Meet the Bee Team at...
28+
meet_team = Meet the Bee Team
2929
keynoting = is keynoting!
3030
speaking = is speaking!
3131
tutorial = is giving a tutorial!
@@ -157,7 +157,7 @@ incomplete_space_after_link = خاطئ
157157
welcome = مرحبا
158158
projects = المشاريع
159159
latest_news = آخر الأخبار
160-
meet_team = قابل فريق Bee @
160+
meet_team = قابل فريق Bee
161161
keynoting = يخطُب!
162162
speaking = يتكلّم!
163163
tutorial = يُقدِّم الدورة التعليمية!
@@ -271,7 +271,7 @@ incomplete_space_after_link = false
271271
welcome = Bem-vindo
272272
projects = Projetos
273273
latest_news = Últimas notícias
274-
meet_team = Encontre a equipe Bee @
274+
meet_team = Encontre a equipe Bee
275275
keynoting = está fazendo um keynote!
276276
speaking = está falando!
277277
tutorial = está demonstrando um tutorial!
@@ -385,7 +385,7 @@ incomplete_space_after_link = false
385385
welcome = 歡迎
386386
projects = 專案
387387
latest_news = 最新消息
388-
meet_team = 認識Bee Team @
388+
meet_team = 認識Bee Team
389389
keynoting = 正在主持!
390390
speaking = 正在演講!
391391
tutorial = 正在提供教學!
@@ -499,7 +499,7 @@ incomplete_space_after_link = false
499499
welcome = Bienvenido
500500
projects = Proyectos
501501
latest_news = Últimas noticias
502-
meet_team = Conoce al equipo Bee @
502+
meet_team = Conoce al equipo Bee
503503
keynoting = está hablando!
504504
speaking = está presentando!
505505
tutorial = está dando un tutorial!
@@ -613,7 +613,7 @@ incomplete_space_after_link = false
613613
welcome = Bienvenue
614614
projects = Projets
615615
latest_news = Dernières nouvelles
616-
meet_team = Meet the Bee Team at...
616+
meet_team = Meet the Bee Team
617617
keynoting = is keynoting!
618618
speaking = is speaking!
619619
tutorial = is giving a tutorial!
@@ -727,7 +727,7 @@ incomplete_space_after_link = false
727727
welcome = Benvenuti
728728
projects = Progetti
729729
latest_news = Ultime notizie
730-
meet_team = Incontra il Bee Team @
730+
meet_team = Incontra il Bee Team
731731
keynoting = è fare una presentazione keynote!
732732
speaking = è parlare!
733733
tutorial = è tenere un tutorial!
@@ -955,7 +955,7 @@ incomplete_space_after_link = false
955955
welcome = 欢迎
956956
projects = 项目
957957
latest_news = 最新新闻
958-
meet_team = 遇见我们的蜜蜂团队 @
958+
meet_team = 遇见我们的蜜蜂团队
959959
keynoting = 正在成为主题!
960960
speaking = 正在演讲!
961961
tutorial = 正在给出一份教程!

templates/events.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
let today = new Date();
1414

1515
$('#past-events p').each(function() {
16-
let date = new Date($(this).data('date'));
16+
let date = new Date($(this).data('end-date'));
1717
if (date >= today) {
18-
$(this).appendTo("#upcoming-events");
18+
$(this).prependTo("#upcoming-events");
1919
}
2020
});
2121
}

0 commit comments

Comments
 (0)