~jhonnyc/cgmail/jonathanc-branch

« back to all changes in this revision

Viewing changes to src/common.py

  • Committer: Marco Ferragina
  • Date: 2007-05-06 15:51:12 UTC
  • Revision ID: marco.ferragina@gmail.com-20070506155112-874uk2m8blrknyuf
Restructured package source dir. Now is much more organized. Implemented right click menu on account window treeview

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import gettext
2
 
import gtk.glade
3
 
gettext.install('cgmail', 'po')
4
 
gtk.glade.bindtextdomain('cgmail', 'po')
5
 
 
6
 
CGMAIL_VERSION = "0.4"
7
 
 
8
 
GMAIL_ATOM_URL = "https://mail.google.com/gmail/feed/atom"
9
 
GMAIL_URL = "https://mail.google.com"
10
 
TRANSLATORS = """Marco Ferragina <marco.ferragina@gmail.com> (Italian)
11
 
Alejandro Zarate <alejandroazarate@gmail.com> (Spanish)
12
 
Nicolas Schirrer (French)
13
 
Hajo Engelke <heedful@xmail.net> (German)
14
 
"""
15
 
 
16
 
 
17
 
# Show only last MAX_NOTIFIED_MAILS in notifications
18
 
# to avoid to overbound the desktop area
19
 
MAX_NOTIFIED_MAILS = 5
20
 
 
21
 
 
22
 
CGMAIL_AUTOSTART_FILE = "data/cgmail.desktop"
23
 
 
24
 
GLADE_BASE_PATH = "glade/"
25
 
 
26
 
#########
27
 
### icons
28
 
ABOUT_ICON = "data/cgmail.svg"
29
 
NOTIFY_ICON = "data/malert.png"
30
 
NOMAIL_ICON = "data/nomail.png" 
31
 
MORE_NEWMAIL_ICON = "data/more-newmail.png"
32
 
NEWMAIL_ICON_BASE_PATH = "data/%i-newmail.png"
33
 
 
34
 
# account icons
35
 
GMAIL_ICON = "data/gmail.png"
36
 
POP3_ICON = "data/pop3.png"
37
 
IMAP_ICON = "data/imap.png"
38
 
 
39
 
 
40
 
SND_NOTIFY = "data/notify.wav"