forked from gutenbergtools/autocat3
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Icons.py
63 lines (52 loc) · 2.31 KB
/
Icons.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- mode: python; indent-tabs-mode: nil; -*- coding: iso-8859-1 -*-
"""
Icons.py
Copyright 2010-2020 by Project Gutenberg
Distributable under the GNU General Public License Version 3 or newer.
Stock icons.
"""
from __future__ import unicode_literals
# This list is used to generate a sprite.
THUMBS = {
'alias' : 'gutenberg/messagebox_info.png',
'alpha' : 'gutenberg/applixware.png',
'audiobook' : 'gutenberg/amarok.png',
'author' : 'gutenberg/kuser.png',
'back' : 'gutenberg/previous.png',
'bibrec' : 'gutenberg/messagebox_info.png',
'bookshelf' : 'gutenberg/bookcase.png',
'date' : 'gutenberg/date.png',
'download' : 'gutenberg/dock.png',
'external' : 'gutenberg/browser.png',
'folder' : 'gutenberg/folder_yellow_open.png',
'home' : 'gutenberg/gohome.png',
'internal' : 'gutenberg/pg-logo.png',
'language' : 'gutenberg/locale.png',
'more' : 'gutenberg/edit_add.png',
'popular' : 'gutenberg/bookmark.png',
'print' : 'gutenberg/print.png',
'quantity' : 'gutenberg/licq.png',
'random' : 'gutenberg/roll.png',
'rss' : 'gutenberg/rss.png',
'search' : 'gutenberg/viewmag.png',
'subject' : 'gutenberg/edu_science.png',
'suggestion' : 'gutenberg/ktip.png',
'book' : 'gutenberg/kdict.png',
'book_no_images' : 'gutenberg/book-cut.png',
'cancel' : 'gutenberg/no.png',
'help' : 'gutenberg/help.png',
'next' : 'gutenberg/next.png',
'external_link' : 'gutenberg/link.png',
'qrtab' : 'gutenberg/qricon.png',
'smsearch' : 'gutenberg/viewmag.png',
'logo' : 'gutenberg/android-touch-icon.png',
'logo_yellow' : 'gutenberg/android-touch-icon-yellow.png',
'paypal' : 'gutenberg/paypal-donate-button-LG.gif',
'flattr' : 'gutenberg/flattr-badge-large.png',
'facebook' : 'gutenberg/f_icon.png',
'dropbox' : 'gutenberg/dropbox-22x22.png',
'gdrive' : 'gutenberg/gdrive-24x21.png',
'msdrive' : 'gutenberg/msdrive-24x24.png',
'twitter' : 'gutenberg/t_icon.png',
}