Mercurial > sat_legacy_website
comparison sat_website/screenshots.py @ 4:d42dd630476f
unicode fix
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 31 Jul 2012 13:51:38 +0200 |
parents | 0df46e87537d |
children | b76ca5137041 |
comparison
equal
deleted
inserted
replaced
3:43d8c6d59557 | 4:d42dd630476f |
---|---|
26 VideoDesc = namedtuple("VideoDesc","path description poster") | 26 VideoDesc = namedtuple("VideoDesc","path description poster") |
27 | 27 |
28 #list the pictures | 28 #list the pictures |
29 | 29 |
30 screenshots = [ | 30 screenshots = [ |
31 ImageDesc("images/screenshots/libervia/libervia_login.png", _("Libervia's login page")), | 31 ImageDesc("images/screenshots/libervia/libervia_login.png", _(u"Libervia's login page")), |
32 ImageDesc("images/screenshots/libervia/libervia_discussions.png", _("Libervia's main view")), | 32 ImageDesc("images/screenshots/libervia/libervia_discussions.png", _(u"Libervia's main view")), |
33 ImageDesc("images/screenshots/primitivus/primitivus_tarot.png", _("Primitivus showing a french Tarot play")), | 33 ImageDesc("images/screenshots/primitivus/primitivus_tarot.png", _(u"Primitivus showing a french Tarot play")), |
34 ImageDesc("images/screenshots/jp/jp.png", _("cowsay sent in conversation through jp")), | 34 ImageDesc("images/screenshots/jp/jp.png", _(u"cowsay sent in conversation through jp")), |
35 ImageDesc("images/screenshots/wix/wix_tarot.png", _("Wix showing a french Tarot play")), | 35 ImageDesc("images/screenshots/wix/wix_tarot.png", _(u"Wix showing a french Tarot play")), |
36 ] | 36 ] |
37 | 37 |
38 screencasts = [ | 38 screencasts = [ |
39 VideoDesc("videos/screencasts/présentation_SàT.webm", _("The first video show wix, primitivus and jp"), "videos/screencasts/posters/présentation_SàT.jpg"), | 39 VideoDesc("videos/screencasts/présentation_SàT.webm", _(u"The first video show wix, primitivus and jp"), "videos/screencasts/posters/présentation_SàT.jpg"), |
40 VideoDesc("videos/screencasts/présentation_SàT_2.webm", _("This video show french Tarot game, and how to use Thunderbird with SàT"), "videos/screencasts/posters/présentation_SàT_2.jpg"), | 40 VideoDesc("videos/screencasts/présentation_SàT_2.webm", _(u"This video show french Tarot game, and how to use Thunderbird with SàT"), "videos/screencasts/posters/présentation_SàT_2.jpg"), |
41 VideoDesc("videos/screencasts/présentation_SàT_3.webm", _("This video focuses on Libervia. The UI is really outdated, but we can see some features"), "videos/screencasts/posters/présentation_SàT_3.jpg"), | 41 VideoDesc("videos/screencasts/présentation_SàT_3.webm", _(u"This video focuses on Libervia. The UI is really outdated, but we can see some features"), "videos/screencasts/posters/présentation_SàT_3.jpg"), |
42 VideoDesc("videos/screencasts/présentation_SàT_4_copie_et_pipe.webm", _("How to copy and pipe streams over XMPP"), "videos/screencasts/posters/présentation_SàT_4.jpg"), | 42 VideoDesc("videos/screencasts/présentation_SàT_4_copie_et_pipe.webm", _(u"How to copy and pipe streams over XMPP"), "videos/screencasts/posters/présentation_SàT_4.jpg"), |
43 VideoDesc("videos/screencasts/présentation_SàT_5_radio_collective.webm", _("Demo of the new Libervia UI, and of the collective radio feature"), "videos/screencasts/posters/radiocol.jpg"), | 43 VideoDesc("videos/screencasts/présentation_SàT_5_radio_collective.webm", _(u"Demo of the new Libervia UI, and of the collective radio feature"), "videos/screencasts/posters/radiocol.jpg"), |
44 ] | 44 ] |
45 | 45 |
46 | 46 |
47 | 47 |
48 | 48 |