~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/translations/browser/translations.py

  • Committer: William Grant
  • Date: 2011-12-30 02:21:12 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230022112-1b1pdbwt1suongbu
Drop fatsam.dia. It's more than 6 years out of date.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
from zope.component import getUtility
18
18
 
19
 
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
20
 
from lp.registry.interfaces.person import IPersonSet
21
 
from lp.registry.interfaces.product import IProductSet
22
19
from lp.services.config import config
23
 
from lp.services.geoip.interfaces import IRequestPreferredLanguages
24
 
from lp.services.propertycache import cachedproperty
 
20
from lp.translations.interfaces.translations import IRosettaApplication
25
21
from lp.services.webapp import (
26
22
    canonical_url,
27
23
    LaunchpadView,
31
27
from lp.services.webapp.batching import BatchNavigator
32
28
from lp.services.webapp.breadcrumb import Breadcrumb
33
29
from lp.services.webapp.interfaces import ILaunchpadRoot
 
30
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
 
31
from lp.registry.interfaces.person import IPersonSet
 
32
from lp.registry.interfaces.product import IProductSet
 
33
from lp.services.geoip.interfaces import IRequestPreferredLanguages
 
34
from lp.services.propertycache import cachedproperty
34
35
from lp.services.worlddata.helpers import preferred_or_request_languages
35
36
from lp.services.worlddata.interfaces.country import ICountry
36
 
from lp.translations.interfaces.translations import IRosettaApplication
37
37
from lp.translations.publisher import TranslationsLayer
38
38
 
39
39