|
{% if locale == 'ar' %}
مرحباً {{ userName }},
{% else %}
Hi {{ userName }},
{% endif %}
{% if locale == 'ar' %}
إليك أحدث الأبحاث المضافة هذا الأسبوع والتي تطابق كلماتك المفتاحية المُتابَعة:
{% else %}
Here are the latest researches added this week that match your followed keywords:
{% endif %}
{% for group in tagGroups %}
|
🔖 {{ group.tagName }}
{% if locale == 'ar' %}
({{ group.totalCount }} {% if group.totalCount == 1 %}بحث جديد{% else %}أبحاث جديدة{% endif %})
{% else %}
({{ group.totalCount }} new {% if group.totalCount == 1 %}research{% else %}researches{% endif %})
{% endif %}
|
{% for doc in group.docs %}
|
{{ doc.title }}
{% if doc.abstract is defined and doc.abstract %}
{{ doc.abstract }}
{% endif %}
{% if doc.tags is defined and doc.tags %}
{% for tag in doc.tags %}
{{ tag }}
{% endfor %}
{% endif %}
|
{% endfor %}
{% if not loop.last %}
{% endif %}
{% endfor %}
|