$(welcome_to_evo)s



$(welcome_intro)s

$(getting_started)s

On the left of the Evolution window is the side bar, with shortcuts to all your mail folders. Below that, you will find buttons for your calendars, contacts, tasks, mail and memos.

For a complete guide to using Evolution, select Table of Contents in the Help menu, or press the F1 key.

Bug Reporting

Bugs should be reported to http://bugzilla.gnome.org.

More Information

You can subscribe to the Evolution users mailing list at http://lists.gnome.org/mailman/listinfo/evolution. Information on the Evolution project is available at http://www.gnome.org/projects/evolution.

Yours Sincerely,
The Evolution Team
--=-Tvf5uamKvf+q33UelJRJ
Content-Disposition: attachment; filename=strings.py
Content-Type: text/x-python; name=strings.py; charset=UTF-8
Content-Transfer-Encoding: 7bit

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2008 Friedel Wolff
#
# This file is part of Evolution.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.

from email.Header import Header

# TODO: implement to obtain the translations, either through traditional
# gettext, or otherwise. This will be run at build time, so we might not want
# to count on system-wide .mo files.
_ = lambda t: t


#TODO: put the current date in a variable so that we can use it as the sent date

header = {
        # The sender of the email
        "evo_team": _("The Evolution Team"),
        # The addressee
        "evo_users": _("Evolution Users"),
        # The email subject
        "welcome_to_evo": _("Welcome to Evolution!"),
}

# Properly encode headers. For more information, see
# http://www.python.org/doc/current/lib/module-email.header.html
for key in header.iterkeys():
    header[key] = Header(header[key], "utf-8")


body = {
        "welcome_intro": _("<B>The Evolution Team</B> is proud to welcome you to <B>Evolution</B>, a complete system for managing your communications and personal information."),
        "getting_started": _("Getting Started"),
}

def html2plain(text):
    # TODO: Strip HTML markup and do the text wrapping...
    return text

# Generate the plain text equivalents
for key in body.keys():
    body["plain_" + key] = html2plain(body[key])


--=-Tvf5uamKvf+q33UelJRJ--



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]