File indexing completed on 2025-05-04 04:55:01

0001 {% extends "main.html" %}
0002 
0003 {% block box %}
0004 
0005 <h2>{% i18nc "%1 is version" "Welcome to KMail %1" _(version) %}</h2>
0006 
0007 <p>{% i18n "KMail is the email client by KDE. It is designed to be fully compatible with Internet mailing standards including IMAP, POP3 and SMTP." %}
0008 </p>
0009 
0010 <p>{% i18n_var "KMail has many powerful features that are described in the <a href='help:/kmail2/index.html'>documentation</a>." as features %}
0011 {{ features|safe }}
0012 </p>
0013 
0014 
0015 {% if importantChanges|length %}
0016 <p>{% i18n "Important changes since last version:" %}</p>
0017 <ul>
0018     {% for change in importantChanges %}
0019     <li>{{ change|safe }}</li>
0020     {% endfor %}
0021 </ul>
0022 {% endif %}
0023 
0024 {% if newFeatures|length %}
0025 <p>{% i18n "Some of the new features in this release of KMail include:" %}</p>
0026 <ul>
0027     {% for feature in newFeatures %}
0028     <li>{{ feature|safe }}</li>
0029     {% endfor %}
0030 </ul>
0031 {% endif %}
0032 
0033 {% if firstStart %}
0034 <p>{% i18n "Please take a moment to fill in the KMail configuration panel at Settings->Configure KMail. You need to create at least a default identity and incoming as well as outgoing mail account." %}
0035 </p>
0036 {% endif %}
0037 
0038 <p>{% i18n "We hope that you will enjoy KMail." %}</p>
0039 <p>{% i18n "Thank you," %}</p>
0040 <p>{% i18n "The KMail Team" %}</p>
0041 
0042 
0043 {% endblock box %}