Changeset 269:25d42404b5b7


Ignore:
Timestamp:
12/12/10 02:35:24 (2 years ago)
Author:
nicoechaniz <nico@…>
Branch:
default
Message:

added newsletter app

Files:
17 added
23 edited

Legend:

Unmodified
Added
Removed
  • cyclope/apps/articles/dbgettext_registration.py

    r219 r269  
    33from django.db.models import get_model 
    44 
    5 #from cyclope.apps.articles.models import Article 
    65from models import Article 
    76 
  • cyclope/core/collections/admin.py

    r265 r269  
    7979            # to allow for a collapsible sub-level 
    8080            self.lookup_choices.append( 
    81                 (None, "</a><div><span class='expand_collapse'>"+collection.name+"</span><ul>")) 
     81                (None, "</a><div><span class='expand_collapse'>"+collection.name+"</span><ul class='categories-filter'>")) 
    8282            categories = Category.tree.filter(collection=collection) 
    8383            for category in categories: 
     
    9494                'display': _('All')} 
    9595        for [val, display] in self.lookup_choices: 
    96             yield {'selected': smart_unicode(val) == self.lookup_val, 
     96            selected = smart_unicode(val) == self.lookup_val 
     97            if selected: 
     98                display = display.lstrip('-') 
     99            yield {'selected': selected, 
    97100                  'query_string': cl.get_query_string({self.lookup_kwarg: val}), 
    98101                  'display': display} 
  • cyclope/core/collections/models.py

    r232 r269  
    111111        verbose_name = _('category') 
    112112        verbose_name_plural = _('categories') 
    113  
     113        get_latest_by = "pk" 
     114         
    114115mptt.register(Category) 
    115116 
  • cyclope/core/frontend/__init__.py

    r261 r269  
    8585            host_template = template_for_request(request) 
    8686             
    87         req_context = RequestContext(request,{'host_template': host_template, 
     87        req_context = RequestContext(request, {'host_template': host_template, 
    8888                                              'region_view': inline}) 
    8989 
     
    9191            if not content_object: 
    9292                content_object = self.model.objects.get(slug=slug) 
    93 #            response = self.get_response(request, host_template, content_object) 
    9493            response = self.get_response(request, req_context, content_object) 
    9594        else: 
    9695            response = self.get_response(request, req_context) 
    97 #            response = self.get_response(request, host_template) 
    9896 
    9997        # inline will be True if the view was called from a region templatetag 
  • cyclope/core/frontend/sites.py

    r268 r269  
    184184        """View of a layout with no specific content associated""" 
    185185        layout = layout_for_request(request) 
    186         template = 'cyclope/themes/%s/%s' % ( 
    187                     cyclope.settings.CYCLOPE_CURRENT_THEME, 
    188                     layout.template 
    189                     ) 
     186        template = cyclope.settings.CYCLOPE_THEME_PREFIX + layout.template 
    190187        t = loader.get_template(template) 
    191188        c = RequestContext(request) 
  • cyclope/dashboard.py

    r263 r269  
    173173                    'cyclope.models.SiteSettings', 
    174174                    'contact_form.models.ContactFormSettings', 
     175                    'cyclope.apps.newsletter.models.Newsletter', 
    175176                    ])) 
    176177 
  • cyclope/default_settings.py

    r264 r269  
    8282    'haystack', 
    8383 
     84    'cyclope', 
    8485    'cyclope.core.collections', 
    8586    'cyclope.core.captcha_comments', 
     
    9091    'cyclope.apps.forum', 
    9192    'cyclope.apps.newsletter', 
    92     'cyclope', 
    9393 
    9494    'admin_tools', 
     
    102102    'django.contrib.sites', 
    103103    'django.contrib.humanize', 
    104     'django.contrib.databrowse', 
    105104    'django.contrib.admin', 
    106105    'django.contrib.comments', 
  • cyclope/default_urls.py

    r219 r269  
    6363        {'form_class': AdminSettingsContactFormWithCaptcha}, 
    6464        name='contact_form'), 
     65    (r'^contact/', include('contact_form.urls')), 
    6566    url(r'^search/', search_view_factory( 
    6667        view_class=SearchView, 
    6768        results_per_page=cyc_settings.CYCLOPE_PAGINATION['TEASER'], 
    6869    ), name='haystack_search'), 
    69     (r'^contact/', include('contact_form.urls')), 
    7070    url(r'^rss/category/(?P<slug>[\w-]+)/$', CategoryFeed(), 
    7171        name='category_feed'), 
     
    7474    url(r'^rss/(?P<object_name>[\w-]+)/$', ContentTypeFeed(), 
    7575        name='content_type_feed'), 
     76    (r'^newsletter/', include('cyclope.apps.newsletter.urls')), 
    7677) 
    7778 
  • cyclope/locale/es/LC_MESSAGES/django.po

    r253 r269  
    55"Project-Id-Version: PACKAGE VERSION\n" 
    66"Report-Msgid-Bugs-To: \n" 
    7 "POT-Creation-Date: 2010-11-24 21:40-0300\n" 
     7"POT-Creation-Date: 2010-12-12 02:32-0300\n" 
    88"PO-Revision-Date: 2010-10-29 22:16\n" 
    99"Last-Translator: <a@a.com>\n" 
     
    2828msgstr "Administración del sitio" 
    2929 
    30 #: dashboard.py:100 
     30#: dashboard.py:45 
     31msgid "Quick links" 
     32msgstr "Enlaces rápidos" 
     33 
     34#: dashboard.py:51 
     35msgid "Browse media files" 
     36msgstr "Explorar archivos" 
     37 
     38#: dashboard.py:54 
     39msgid "Return to site" 
     40msgstr "Volver al sitio" 
     41 
     42#: dashboard.py:73 
    3143msgid "Content" 
    3244msgstr "Contenidos" 
    3345 
    34 #: dashboard.py:106 
     46#: dashboard.py:79 
    3547msgid "Create, delete or modify content for your website" 
    3648msgstr "Crea, borra o modifica el contenido del sitio web" 
    3749 
    38 #: dashboard.py:109 
     50#: dashboard.py:82 
    3951msgid "Main" 
    4052msgstr "Principal" 
    4153 
    42 #: dashboard.py:116 
     54#: dashboard.py:89 
    4355msgid "Multimedia Library" 
    4456msgstr "Biblioteca Multimedia" 
    4557 
    46 #: dashboard.py:128 
     58#: dashboard.py:101 
    4759msgid "Authors and Sources" 
    4860msgstr "Autorías y Fuentes" 
    4961 
    50 #: dashboard.py:135 
     62#: dashboard.py:108 
    5163msgid "Polls" 
    5264msgstr "Encuestas" 
    5365 
    54 #: dashboard.py:146 apps/articles/templates/articles/article_detail.html:37 
     66#: dashboard.py:119 apps/articles/templates/articles/article_detail.html:37 
    5567#: apps/polls/templates/polls/poll_detail.html:34 
    56 #: core/collections/templates/collections/category_list_as_forum.html:13 
     68#: core/collections/templates/collections/category_list_as_forum.html:15 
    5769msgid "Comments" 
    5870msgstr "Comentarios" 
    5971 
    60 #: dashboard.py:148 
     72#: dashboard.py:121 
    6173msgid "Review and moderate user comments" 
    6274msgstr "Revisa y modera los comentarios recibidos" 
    6375 
    64 #: dashboard.py:157 
     76#: dashboard.py:130 
    6577msgid "Categorization" 
    6678msgstr "Categorización" 
    6779 
    68 #: dashboard.py:163 
     80#: dashboard.py:136 
    6981msgid "Classify the content in your website" 
    7082msgstr "Clasifica el contenido de tu sitio" 
    7183 
    72 #: dashboard.py:166 
     84#: dashboard.py:139 
    7385msgid "Collections" 
    7486msgstr "Colecciones" 
    7587 
    76 #: dashboard.py:173 
     88#: dashboard.py:146 
    7789msgid "Tagging" 
    7890msgstr "Etiquetado" 
    7991 
    80 #: dashboard.py:181 
     92#: dashboard.py:154 
    8193msgid "Site structure" 
    8294msgstr "Estructura del sitio" 
    8395 
    84 #: dashboard.py:183 
     96#: dashboard.py:156 
    8597msgid "Modify the menus and site layouts" 
    8698msgstr "Administra los menúes y la disposición del contenido" 
    8799 
    88 #: dashboard.py:194 
     100#: dashboard.py:167 
    89101msgid "Global settings" 
    90102msgstr "Configuración global" 
    91103 
    92 #: dashboard.py:207 
     104#: dashboard.py:181 
    93105msgid "Advanced" 
    94106msgstr "Avanzado" 
    95107 
    96 #: dashboard.py:213 
     108#: dashboard.py:187 
    97109msgid "Advanced configuration" 
    98110msgstr "Configuración avanzada" 
    99111 
    100 #: dashboard.py:216 
     112#: dashboard.py:190 
    101113msgid "Auth" 
    102114msgstr "Permisos" 
    103115 
    104 #: dashboard.py:222 
     116#: dashboard.py:196 
    105117msgid "Registration" 
    106118msgstr "Registro" 
    107119 
    108 #: dashboard.py:228 
     120#: dashboard.py:202 
    109121msgid "Sites" 
    110122msgstr "Sitios" 
    111123 
    112 #: dashboard.py:239 
     124#: dashboard.py:213 
    113125msgid "Recent Actions" 
    114126msgstr "Acciones Recientes" 
    115127 
    116 #: default_settings.py:166 
     128#: dashboard.py:222 
     129msgid "Cyclope 3 community and support" 
     130msgstr "Comunidad y soporte de Cyclope 3" 
     131 
     132#: dashboard.py:229 
     133msgid "Official website" 
     134msgstr "Sitio web oficial" 
     135 
     136#: dashboard.py:234 
     137msgid "Tutorials" 
     138msgstr "Tutoriales" 
     139 
     140#: default_settings.py:169 
    117141msgid "Admin Thumbnail" 
    118142msgstr "Miniatura para sitio de administración" 
    119143 
    120 #: default_settings.py:168 
     144#: default_settings.py:171 
    121145msgid "Thumbnail (140px)" 
    122146msgstr "Imagen miniatura (140px)" 
    123147 
    124 #: default_settings.py:170 
     148#: default_settings.py:173 
    125149msgid "Small (300px)" 
    126150msgstr "Pequeña (300px)" 
    127151 
    128 #: default_settings.py:172 
     152#: default_settings.py:175 
    129153msgid "Medium (460px)" 
    130154msgstr "Mediana (460px)" 
    131155 
    132 #: default_settings.py:174 
     156#: default_settings.py:177 
    133157msgid "Big (620px)" 
    134158msgstr "Grande (620px)" 
    135159 
    136 #: default_settings.py:176 
     160#: default_settings.py:179 
    137161msgid "Cropped (60x60px)" 
    138162msgstr "Cortada (60x60px)" 
    139163 
    140 #: default_settings.py:178 
     164#: default_settings.py:181 
    141165msgid "Cropped Thumbnail (140x140px)" 
    142166msgstr "Miniatura cortada (140x140px)" 
     
    150174msgstr "Vista" 
    151175 
    152 #: forms.py:74 core/collections/admin.py:105 
     176#: forms.py:74 core/collections/admin.py:115 
    153177msgid "Parent" 
    154178msgstr "Padre" 
     
    201225msgstr "lista de items raíz para el Menú seleccionado" 
    202226 
    203 #: frontend_views.py:66 
     227#: frontend_views.py:62 
    204228msgid "flat list of all items for the selected Menu" 
    205229msgstr "lista sin jerarquía de los items del Menú" 
    206230 
    207 #: frontend_views.py:86 
     231#: frontend_views.py:81 
    208232msgid "hierarchical list of the items in the selected menu" 
    209233msgstr "lista jerarquizada de los items del menú" 
    210234 
    211 #: frontend_views.py:140 
     235#: frontend_views.py:134 
    212236msgid "list view of children of the current menu item" 
    213237msgstr "lista de los hijos del item de menú que se encuentre seleccionado" 
    214238 
    215 #: frontend_views.py:168 
     239#: frontend_views.py:161 
    216240msgid "expanded hierarchical list of all collection and menus" 
    217241msgstr "lista de todas las categorías y menúes" 
    218242 
    219 #: models.py:59 
     243#: models.py:60 
    220244msgid "templating theme" 
    221245msgstr "tema de la plantilla" 
    222246 
    223 #: models.py:61 
     247#: models.py:62 
    224248msgid "default layout" 
    225249msgstr "esquema por defecto" 
    226250 
    227 #: models.py:63 models.py:289 
     251#: models.py:64 models.py:293 
    228252msgid "allow comments" 
    229253msgstr "permitir comentarios" 
    230254 
    231 #: models.py:65 models.py:292 
     255#: models.py:66 models.py:296 
    232256msgid "enabled" 
    233257msgstr "habilitado" 
    234258 
    235 #: models.py:66 models.py:293 
     259#: models.py:67 models.py:297 
    236260msgid "disabled" 
    237261msgstr "deshabilitado" 
    238262 
    239 #: models.py:69 
     263#: models.py:70 
    240264msgid "global title" 
    241265msgstr "titulo global" 
    242266 
    243 #: models.py:71 
     267#: models.py:72 
    244268msgid "keywords" 
    245269msgstr "palabras clave" 
    246270 
    247 #: models.py:72 apps/medialibrary/models.py:37 apps/polls/models.py:36 
     271#: models.py:73 apps/medialibrary/models.py:37 apps/polls/models.py:36 
    248272#: core/collections/models.py:53 core/collections/models.py:83 
    249273msgid "description" 
    250274msgstr "descripción" 
    251275 
    252 #: models.py:78 models.py:79 
     276#: models.py:75 
     277msgid "newsletter collection" 
     278msgstr "colección para boletines" 
     279 
     280#: models.py:76 
     281msgid "" 
     282"This is the collection that will group the contents for your newsletters." 
     283msgstr "" 
     284"Esta es la colección que agrupará los contenidos a enviar en los boletines." 
     285 
     286#: models.py:82 models.py:83 
    253287msgid "site settings" 
    254288msgstr "configuración del sitio" 
    255289 
    256 #: models.py:88 models.py:118 models.py:230 models.py:276 models.py:351 
    257 #: models.py:374 core/collections/models.py:42 core/collections/models.py:77 
     290#: models.py:92 models.py:122 models.py:234 models.py:280 models.py:355 
     291#: models.py:378 apps/newsletter/models.py:34 core/collections/models.py:42 
     292#: core/collections/models.py:77 
    258293msgid "name" 
    259294msgstr "nombre" 
    260295 
    261 #: models.py:90 
     296#: models.py:94 
    262297msgid "main menu" 
    263298msgstr "menu principal" 
    264299 
    265 #: models.py:107 models.py:116 
     300#: models.py:111 models.py:120 
    266301msgid "menu" 
    267302msgstr "menú" 
    268303 
    269 #: models.py:108 
     304#: models.py:112 
    270305msgid "menus" 
    271306msgstr "menúes" 
    272307 
    273 #: models.py:119 core/collections/models.py:80 
     308#: models.py:123 core/collections/models.py:80 
    274309msgid "parent" 
    275310msgstr "relacionado" 
    276311 
    277 #: models.py:120 core/collections/models.py:81 
     312#: models.py:124 core/collections/models.py:81 
    278313msgid "children" 
    279314msgstr "hijo" 
    280315 
    281 #: models.py:124 
     316#: models.py:128 
    282317msgid "site home" 
    283318msgstr "página de inicio" 
    284319 
    285 #: models.py:125 
     320#: models.py:129 
    286321msgid "custom URL" 
    287322msgstr "URL personalizada" 
    288323 
    289 #: models.py:129 models.py:241 
     324#: models.py:133 models.py:245 apps/newsletter/models.py:42 
    290325msgid "layout" 
    291326msgstr "esquema" 
    292327 
    293 #: models.py:131 
     328#: models.py:135 
    294329msgid "Persistent layout" 
    295330msgstr "Esquema persistente" 
    296331 
    297 #: models.py:132 
     332#: models.py:136 
    298333msgid "" 
    299334"If the layout is marked as persistent it will be in use until the user " 
     
    303338"usuario seleccione otro item de menú que especifique un esquema diferente" 
    304339 
    305 #: models.py:136 models.py:211 
     340#: models.py:140 models.py:215 
    306341msgid "type" 
    307342msgstr "tipo" 
    308343 
    309 #: models.py:138 models.py:219 
     344#: models.py:142 models.py:223 
    310345msgid "object" 
    311346msgstr "objeto" 
    312347 
    313 #: models.py:144 models.py:213 
     348#: models.py:148 models.py:217 
    314349msgid "view" 
    315350msgstr "vista" 
    316351 
    317 #: models.py:198 
     352#: models.py:202 
    318353msgid "menu item" 
    319354msgstr "item de menú" 
    320355 
    321 #: models.py:199 
     356#: models.py:203 
    322357msgid "menu items" 
    323358msgstr "items de menú" 
    324359 
    325 #: models.py:207 
     360#: models.py:211 
    326361msgid "region" 
    327362msgstr "región" 
    328363 
    329 #: models.py:216 
     364#: models.py:220 
    330365msgid "weight" 
    331366msgstr "peso" 
    332367 
    333 #: models.py:235 
     368#: models.py:239 
    334369msgid "layout template" 
    335370msgstr "plantilla para este esquema" 
    336371 
    337 #: models.py:242 
     372#: models.py:246 
    338373msgid "layouts" 
    339374msgstr "esquemas" 
    340375 
    341 #: models.py:249 models.py:254 core/collections/models.py:144 
     376#: models.py:253 models.py:258 core/collections/models.py:145 
    342377msgid "content type" 
    343378msgstr "tipo de contenido" 
    344379 
    345 #: models.py:269 
     380#: models.py:273 
    346381msgid "related content" 
    347382msgstr "contenido relacionado" 
    348383 
    349 #: models.py:270 
     384#: models.py:274 
    350385msgid "related contents" 
    351386msgstr "contenidos relacionados" 
    352387 
    353 #: models.py:280 
     388#: models.py:284 
    354389msgid "tags" 
    355390msgstr "etiquetas" 
    356391 
    357 #: models.py:281 
     392#: models.py:285 
    358393msgid "published" 
    359394msgstr "publicar" 
    360395 
    361 #: models.py:285 
     396#: models.py:289 
    362397msgid "creation date" 
    363398msgstr "fecha de creación" 
    364399 
    365 #: models.py:287 
     400#: models.py:291 
    366401msgid "modification date" 
    367402msgstr "fecha de modificación" 
    368403 
    369 #: models.py:291 
     404#: models.py:295 
    370405msgid "default" 
    371406msgstr "por defecto" 
    372407 
    373 #: models.py:337 
     408#: models.py:341 
    374409msgid "translations" 
    375410msgstr "traducciones" 
    376411 
    377 #: models.py:355 models.py:390 models.py:400 apps/medialibrary/models.py:47 
     412#: models.py:359 models.py:394 models.py:404 apps/medialibrary/models.py:47 
    378413#: apps/medialibrary/models.py:82 apps/medialibrary/models.py:95 
    379414#: apps/medialibrary/models.py:108 apps/medialibrary/models.py:121 
     
    382417msgstr "imagen" 
    383418 
    384 #: models.py:358 
     419#: models.py:362 
    385420msgid "origin" 
    386421msgstr "origen" 
    387422 
    388 #: models.py:360 
     423#: models.py:364 
    389424msgid "notes" 
    390425msgstr "notas" 
    391426 
    392 #: models.py:362 core/collections/models.py:52 
     427#: models.py:366 core/collections/models.py:52 
    393428msgid "content types" 
    394429msgstr "tipos de contenido" 
    395430 
    396 #: models.py:363 
     431#: models.py:367 
    397432msgid "Select the content types this author is related to." 
    398433msgstr "Seleccione los tipos de contenido que corresponden a esta autoría" 
    399434 
    400 #: models.py:369 apps/articles/models.py:46 apps/forum/models.py:38 
     435#: models.py:373 apps/articles/models.py:46 apps/forum/models.py:38 
    401436#: apps/medialibrary/models.py:35 
    402437msgid "author" 
    403438msgstr "autoría" 
    404439 
    405 #: models.py:370 
     440#: models.py:374 
    406441msgid "authors" 
    407442msgstr "autorías" 
    408443 
    409 #: models.py:378 
     444#: models.py:382 
    410445msgid "link" 
    411446msgstr "enlace" 
    412447 
    413 #: models.py:384 apps/articles/models.py:47 
     448#: models.py:388 apps/articles/models.py:47 
    414449msgid "source" 
    415450msgstr "fuente" 
    416451 
    417 #: models.py:385 
     452#: models.py:389 
    418453msgid "sources" 
    419454msgstr "fuentes" 
    420455 
    421 #: models.py:396 
     456#: models.py:400 
    422457msgid "Thumbnail Image" 
    423458msgstr "Imagen miniatura" 
    424459 
    425 #: models.py:401 
     460#: models.py:405 
    426461msgid "images" 
    427462msgstr "imágenes" 
    428463 
    429 #: models.py:407 
     464#: models.py:411 
    430465msgid "avatar" 
    431466msgstr "tu imagen" 
    432467 
    433 #: models.py:409 
     468#: models.py:413 
    434469msgid "city" 
    435470msgstr "ciudad" 
    436471 
    437 #: models.py:410 
     472#: models.py:414 
    438473msgid "about myself" 
    439474msgstr "sobre mí" 
    440475 
    441 #: models.py:413 
     476#: models.py:417 
    442477msgid "public" 
    443478msgstr "público" 
    444479 
    445 #: models.py:414 
     480#: models.py:418 
    446481msgid "Choose whether your profile info should be publicly visible or not" 
    447482msgstr "Elije si deseas que tu información de perfil sea pública" 
    448483 
    449 #: settings.py:90 
     484#: settings.py:89 
    450485msgid "You need to set the CYCLOPE_PROJECT_PATH in your settings file." 
    451486msgstr "Debe establecer un valor para CYCLOPE_PROJECT_PATH en settings.py" 
     
    478513msgid "detailed view of the selected Article" 
    479514msgstr "vista detallada del Artículo seleccionado" 
     515 
     516#: apps/articles/frontend_views.py:51 
     517msgid "list of Article teasers" 
     518msgstr "lista de resúmenes de Artículos" 
     519 
     520#: apps/articles/frontend_views.py:67 
     521msgid "list of Article labeled icons" 
     522msgstr "lista de iconos con nombre" 
    480523 
    481524#: apps/articles/models.py:39 
     
    579622msgstr "vista detallada del Tema seleccionado" 
    580623 
    581 #: apps/forum/frontend_views.py:64 
     624#: apps/forum/frontend_views.py:63 
    582625msgid "create a new topic in the Forum selected" 
    583626msgstr "crear un nuevo tema en el foro seleccionado" 
     
    609652msgstr "Respuestas" 
    610653 
    611 #: apps/medialibrary/frontend_views.py:44 
     654#: apps/medialibrary/frontend_views.py:43 
    612655msgid "detailed view of the selected Picture" 
    613656msgstr "vista detallada de la Imagen seleccionada" 
    614657 
    615 #: apps/medialibrary/frontend_views.py:52 
     658#: apps/medialibrary/frontend_views.py:51 
    616659msgid "detailed view of the selected Audio Track" 
    617660msgstr "vista detallada de la Pista de Audio seleccionada" 
    618661 
    619 #: apps/medialibrary/frontend_views.py:60 
     662#: apps/medialibrary/frontend_views.py:59 
    620663msgid "detailed view of the selected Movie Clip" 
    621664msgstr "vista detallada del Video seleccionado" 
    622665 
    623 #: apps/medialibrary/frontend_views.py:68 
     666#: apps/medialibrary/frontend_views.py:67 
    624667msgid "detailed view of the selected Document" 
    625668msgstr "vista detallada del Documento seleccionado" 
    626669 
    627 #: apps/medialibrary/frontend_views.py:76 
     670#: apps/medialibrary/frontend_views.py:75 
    628671msgid "detailed view of the selected File" 
    629672msgstr "vista detallada del Archivo seleccionado" 
    630673 
    631 #: apps/medialibrary/frontend_views.py:84 
     674#: apps/medialibrary/frontend_views.py:83 
    632675msgid "detailed view of the selected External Content" 
    633676msgstr "vista detallada del Contenido Externo seleccionado" 
    634677 
    635 #: apps/medialibrary/frontend_views.py:92 
     678#: apps/medialibrary/frontend_views.py:91 
    636679msgid "detailed view of the selected Flash Movie" 
    637680msgstr "vista detallada del elemento Flash seleccionado" 
     
    741784msgstr "pantalla completa (en ventana nueva)" 
    742785 
     786#: apps/newsletter/admin.py:34 
     787msgid "Current content category" 
     788msgstr "Categoría de los contenidos" 
     789 
     790#: apps/newsletter/admin.py:35 
     791msgid "" 
     792"This is the category which groups the content that will be sent with the " 
     793"newsletter." 
     794msgstr "" 
     795"Esta es la categoría que agrupa los contenidos que serán enviados con el " 
     796"boletín." 
     797 
     798#: apps/newsletter/frontend_views.py:13 
     799msgid "show the current content for the selected Newsletter" 
     800msgstr "mostrar el contenido actual del Newsletter elejido" 
     801 
     802#: apps/newsletter/frontend_views.py:32 
     803msgid "show the header text of the selected Newsletter" 
     804msgstr "mostrar el encabezado del Boletín seleccionado" 
     805 
     806#: apps/newsletter/models.py:38 
     807msgid "sent date" 
     808msgstr "fecha de envío" 
     809 
     810#: apps/newsletter/models.py:41 
     811#: templates/cyclope/themes/neutrona/__init__.py:19 
     812#: templates/cyclope/themes/neutrona/__init__.py:31 
     813#: templates/cyclope/themes/neutronica/__init__.py:19 
     814#: templates/cyclope/themes/neutronica/__init__.py:31 
     815#: templates/cyclope/themes/neutronica/__init__.py:43 
     816#: templates/cyclope/themes/neutronica/__init__.py:59 
     817msgid "header" 
     818msgstr "encabezado" 
     819 
     820#: apps/newsletter/models.py:43 
     821msgid "sender" 
     822msgstr "remitente" 
     823 
     824#: apps/newsletter/models.py:44 
     825msgid "test recipients" 
     826msgstr "destinatarios de prueba" 
     827 
     828#: apps/newsletter/models.py:45 
     829msgid "recipients" 
     830msgstr "destinatarios" 
     831 
     832#: apps/newsletter/models.py:51 
     833msgid "newsletter" 
     834msgstr "boletín" 
     835 
     836#: apps/newsletter/models.py:52 
     837msgid "newsletters" 
     838msgstr "boletines" 
     839 
     840#: apps/newsletter/templates/admin/newsletter_change_form.html:7 
     841msgid "Preview" 
     842msgstr "Vista preliminar" 
     843 
     844#: apps/newsletter/templates/admin/newsletter_change_form.html:8 
     845msgid "Send test" 
     846msgstr "Enviar prueba" 
     847 
     848#: apps/newsletter/templates/admin/newsletter_change_form.html:9 
     849msgid "Send e-mail" 
     850msgstr "Enviar correo" 
     851 
     852#: apps/newsletter/templates/newsletter/mail_sent.html:5 
     853msgid "The e-mail has been sent for newsletter " 
     854msgstr "El correo ha sido enviado para el boletín " 
     855 
     856#: apps/newsletter/templates/newsletter/mail_sent.html:6 
     857#: apps/newsletter/templates/newsletter/send_failed.html:11 
     858msgid "Return to newsletter admin" 
     859msgstr "Volver a la administración del boletín" 
     860 
     861#: apps/newsletter/templates/newsletter/send_failed.html:6 
     862msgid "The e-mail for newsletter" 
     863msgstr "El correo para el boletín " 
     864 
     865#: apps/newsletter/templates/newsletter/send_failed.html:7 
     866msgid "could not be sent." 
     867msgstr "no pudo ser enviado." 
     868 
     869#: apps/newsletter/templates/newsletter/send_failed.html:9 
     870msgid "You should try again later or contact your administrator." 
     871msgstr "Intente más tarde o comuníquese con su administrador." 
     872 
    743873#: apps/polls/frontend_views.py:39 
    744874msgid "Poll submission form" 
    745875msgstr "Formulario de envío de encuesta" 
    746876 
    747 #: apps/polls/frontend_views.py:78 
     877#: apps/polls/frontend_views.py:74 
    748878msgid "detailed view of the selected Poll" 
    749879msgstr "vista detallada de la Encuesta" 
     
    822952msgstr "Sitio web o Blog" 
    823953 
    824 #: core/collections/admin.py:87 templates/rosetta/pofile.html:59 
     954#: core/collections/admin.py:94 templates/rosetta/pofile.html:59 
    825955msgid "All" 
    826956msgstr "Todos" 
    827957 
    828 #: core/collections/admin.py:94 core/collections/models.py:112 
    829 #: core/collections/models.py:174 
     958#: core/collections/admin.py:104 core/collections/models.py:112 
     959#: core/collections/models.py:175 
    830960msgid "categories" 
    831961msgstr "categorías" 
    832962 
    833 #: core/collections/admin.py:103 
     963#: core/collections/admin.py:113 
    834964msgid "Description" 
    835965msgstr "Descrición" 
    836966 
    837 #: core/collections/admin.py:118 
     967#: core/collections/admin.py:128 
    838968msgid "Extra info" 
    839969msgstr "Información extra" 
    840970 
    841 #: core/collections/admin.py:138 
     971#: core/collections/admin.py:148 
    842972msgid "Collection" 
    843973msgstr "Colección" 
    844974 
    845 #: core/collections/admin.py:140 
     975#: core/collections/admin.py:150 
    846976msgid "Category" 
    847977msgstr "Categoría" 
    848978 
    849 #: core/collections/admin.py:188 
     979#: core/collections/admin.py:198 
    850980msgid "Default category listing view" 
    851981msgstr "Vista por defecto para listados" 
     
    855985msgstr "lista de items raíz para la Categoría seleccionada" 
    856986 
    857 #: core/collections/frontend_views.py:59 
     987#: core/collections/frontend_views.py:58 
    858988msgid "default view for the Collection" 
    859989msgstr "vista por defecto para la Colección" 
    860990 
    861 #: core/collections/frontend_views.py:79 
     991#: core/collections/frontend_views.py:78 
    862992msgid "teaser list of Category members" 
    863993msgstr "lista de resúmenes de miembros de una Categoría" 
    864994 
    865 #: core/collections/frontend_views.py:125 
     995#: core/collections/frontend_views.py:122 
    866996msgid "Labeled icon list of Category members" 
    867997msgstr "lista de iconos con nombre de los miembros de una Categoría" 
    868998 
    869 #: core/collections/frontend_views.py:137 
     999#: core/collections/frontend_views.py:134 
    8701000msgid "simplified teaser list of Category members" 
    8711001msgstr "lista simplificada de resúmenes de miembros de una Categoría" 
    8721002 
    873 #: core/collections/frontend_views.py:162 
     1003#: core/collections/frontend_views.py:156 
    8741004msgid "teaser list of the root Categories of a Collection" 
    8751005msgstr "lista de resúmenes de las Categorías raíz de una Colección" 
    8761006 
    877 #: core/collections/frontend_views.py:184 
     1007#: core/collections/frontend_views.py:176 
    8781008msgid "hierarchical list of Categories in a Collection" 
    8791009msgstr "lista jerarquizada de las Categorias de una Colección" 
    8801010 
    881 #: core/collections/frontend_views.py:250 
     1011#: core/collections/frontend_views.py:241 
    8821012msgid "hierarchical list of Categories that will show an icon list on click" 
    8831013msgstr "lista jerarquizada de las Categorias que llevará a una vista de íconos" 
    8841014 
    885 #: core/collections/frontend_views.py:261 
     1015#: core/collections/frontend_views.py:252 
    8861016msgid "list of Category members as forum view" 
    8871017msgstr "listar la Categoría como un foro" 
     
    9151045msgstr "activo" 
    9161046 
    917 #: core/collections/models.py:111 core/collections/models.py:141 
     1047#: core/collections/models.py:111 core/collections/models.py:142 
    9181048msgid "category" 
    9191049msgstr "categoría" 
    9201050 
    921 #: core/collections/models.py:164 
     1051#: core/collections/models.py:165 
    9221052msgid "categorization" 
    9231053msgstr "Categorización" 
    9241054 
    925 #: core/collections/models.py:165 
     1055#: core/collections/models.py:166 
    9261056msgid "categorizations" 
    9271057msgstr "Categorizaciones" 
    9281058 
    929 #: core/collections/models.py:181 
     1059#: core/collections/models.py:182 
    9301060msgid "is orphan" 
    9311061msgstr "sin categorizar" 
     
    9351065msgstr "Categorías" 
    9361066 
    937 #: core/collections/templates/collections/category_list_as_forum.html:9 
     1067#: core/collections/templates/collections/category_list_as_forum.html:10 
    9381068msgid "Create a new topic" 
    9391069msgstr "Crear nuevo tema" 
    9401070 
    941 #: core/collections/templates/collections/category_list_as_forum.html:12 
     1071#: core/collections/templates/collections/category_list_as_forum.html:14 
    9421072msgid "Name" 
    9431073msgstr "Nombre" 
    9441074 
    945 #: core/collections/templates/collections/category_list_as_forum.html:14 
     1075#: core/collections/templates/collections/category_list_as_forum.html:16 
    9461076msgid "Created" 
    9471077msgstr "Creado" 
    9481078 
    949 #: core/collections/templates/collections/category_list_as_forum.html:15 
     1079#: core/collections/templates/collections/category_list_as_forum.html:17 
    9501080msgid "Last comment" 
    9511081msgstr "Último comentario" 
    9521082 
    953 #: core/collections/templates/collections/category_list_as_forum.html:22 
    954 #: core/collections/templates/collections/category_list_as_forum.html:23 
     1083#: core/collections/templates/collections/category_list_as_forum.html:25 
     1084#: core/collections/templates/collections/category_list_as_forum.html:27 
    9551085msgid "by" 
    9561086msgstr "por" 
    9571087 
    958 #: core/frontend/__init__.py:150 
     1088#: core/frontend/__init__.py:162 
    9591089#, python-format 
    9601090msgid "No default view has been set for %s" 
    9611091msgstr "No hay una vista por defecto para %s" 
    9621092 
    963 #: core/frontend/__init__.py:153 
     1093#: core/frontend/__init__.py:165 
    9641094#, python-format 
    9651095msgid "You can set only one default view for %s" 
    9661096msgstr "Puedes definir solo una vista por defecto para %s" 
    9671097 
    968 #: core/frontend/sites.py:149 
     1098#: core/frontend/sites.py:156 
    9691099msgid "You need to create you site settings" 
    9701100msgstr "Tu sitio aún no ha sido configurado" 
    9711101 
    972 #: core/frontend/sites.py:154 
     1102#: core/frontend/sites.py:161 
    9731103msgid "You need to select a layout for the site" 
    9741104msgstr "Debe seleccionar un esquema para el sitio" 
    9751105 
    976 #: core/frontend/sites.py:160 
     1106#: core/frontend/sites.py:167 
    9771107msgid "The site home page has not been set." 
    9781108msgstr "La página de inicio no ha sido establecida." 
    9791109 
    980 #: core/frontend/sites.py:171 
     1110#: core/frontend/sites.py:178 
    9811111msgid "No content object selected" 
    9821112msgstr "No ha seleccionado contenido" 
     
    9861116msgstr "Administración de Cyclope" 
    9871117 
    988 #: templates/admin/change_form.html:21 templates/admin/change_list.html:42 
     1118#: templates/admin/change_form.html:21 templates/admin/change_list.html:62 
    9891119#: templates/rosetta/pofile.html:46 
    9901120msgid "Home" 
     
    10031133msgstr "Ver en el sitio" 
    10041134 
    1005 #: templates/admin/change_form.html:41 templates/admin/change_list.html:76 
     1135#: templates/admin/change_form.html:41 templates/admin/change_list.html:96 
    10061136msgid "Please correct the error below." 
    10071137msgid_plural "Please correct the errors below." 
     
    10091139msgstr[1] "Por favor corrija los errores detallados" 
    10101140 
    1011 #: templates/admin/change_list.html:58 
     1141#: templates/admin/change_list.html:78 
    10121142#, python-format 
    10131143msgid "" 
     
    10181148"listado de %(plural_name)s." 
    10191149 
    1020 #: templates/admin/change_list.html:68 
     1150#: templates/admin/change_list.html:88 
    10211151#, python-format 
    10221152msgid "Add %(name)s" 
    10231153msgstr "Agregar %(name)s" 
    10241154 
    1025 #: templates/admin/change_list.html:87 
     1155#: templates/admin/change_list.html:107 
    10261156#: templates/admin/feincms/tree_editor.html:140 
    10271157#: templates/admin/polls/change_list.html:7 
    10281158msgid "Filter" 
    10291159msgstr "Filtro" 
     1160 
     1161#: templates/admin/filter.html:2 
     1162#, python-format 
     1163msgid " By %(filter_title)s " 
     1164msgstr " Por %(filter_title)s " 
    10301165 
    10311166#: templates/admin/articles/change_list.html:6 
     
    11231258msgstr "siguiente" 
    11241259 
    1125 #: templates/cyclope/site_map.html:5 
     1260#: templates/cyclope/site_map.html:6 
    11261261msgid "Site map" 
    11271262msgstr "Mapa del sitio" 
     
    11441279msgid "One sidebar" 
    11451280msgstr "Una barra lateral" 
    1146  
    1147 #: templates/cyclope/themes/neutrona/__init__.py:19 
    1148 #: templates/cyclope/themes/neutrona/__init__.py:31 
    1149 #: templates/cyclope/themes/neutronica/__init__.py:19 
    1150 #: templates/cyclope/themes/neutronica/__init__.py:31 
    1151 #: templates/cyclope/themes/neutronica/__init__.py:43 
    1152 msgid "header" 
    1153 msgstr "encabezado" 
    11541281 
    11551282#: templates/cyclope/themes/neutrona/__init__.py:20 
     
    11651292#: templates/cyclope/themes/neutronica/__init__.py:34 
    11661293#: templates/cyclope/themes/neutronica/__init__.py:44 
     1294#: templates/cyclope/themes/neutronica/__init__.py:60 
    11671295msgid "before content" 
    11681296msgstr "antes del contenido" 
     
    11731301#: templates/cyclope/themes/neutronica/__init__.py:35 
    11741302#: templates/cyclope/themes/neutronica/__init__.py:45 
     1303#: templates/cyclope/themes/neutronica/__init__.py:61 
    11751304msgid "after content" 
    11761305msgstr "después del contenido" 
     
    11811310#: templates/cyclope/themes/neutronica/__init__.py:36 
    11821311#: templates/cyclope/themes/neutronica/__init__.py:46 
     1312#: templates/cyclope/themes/neutronica/__init__.py:62 
    11831313msgid "footer" 
    11841314msgstr "pie de página" 
     
    12201350msgid "No sidebars" 
    12211351msgstr "Sin barras laterales" 
     1352 
     1353#: templates/cyclope/themes/neutronica/__init__.py:57 
     1354msgid "Newsletter" 
     1355msgstr "Boletín" 
    12221356 
    12231357#: templates/profiles/edit_profile.html:8 
     
    14611595#~ msgstr "Portugués" 
    14621596 
    1463 #~ msgid "list of Article teasers" 
    1464 #~ msgstr "lista de resúmenes de Artículos" 
    1465  
    1466 #~ msgid "list of Article labeled icons" 
    1467 #~ msgstr "lista de iconos con nombre" 
    1468  
    14691597#~ msgid "detailed view of the selected Product" 
    14701598#~ msgstr "vista detallada del Producto seleccionado" 
  • cyclope/locale/it/LC_MESSAGES/django.po

    r252 r269  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2010-11-24 15:49-0300\n" 
     11"POT-Creation-Date: 2010-12-12 02:32-0300\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    3131msgstr "" 
    3232 
    33 #: dashboard.py:100 
     33#: dashboard.py:45 
     34msgid "Quick links" 
     35msgstr "" 
     36 
     37#: dashboard.py:51 
     38msgid "Browse media files" 
     39msgstr "" 
     40 
     41#: dashboard.py:54 
     42msgid "Return to site" 
     43msgstr "" 
     44 
     45#: dashboard.py:73 
    3446msgid "Content" 
    3547msgstr "" 
    3648 
    37 #: dashboard.py:106 
     49#: dashboard.py:79 
    3850msgid "Create, delete or modify content for your website" 
    3951msgstr "" 
    4052 
    41 #: dashboard.py:109 
     53#: dashboard.py:82 
    4254msgid "Main" 
    4355msgstr "" 
    4456 
    45 #: dashboard.py:116 
     57#: dashboard.py:89 
    4658msgid "Multimedia Library" 
    4759msgstr "" 
    4860 
    49 #: dashboard.py:128 
     61#: dashboard.py:101 
    5062msgid "Authors and Sources" 
    5163msgstr "" 
    5264 
    53 #: dashboard.py:135 
     65#: dashboard.py:108 
    5466msgid "Polls" 
    5567msgstr "" 
    5668 
    57 #: dashboard.py:146 apps/articles/templates/articles/article_detail.html:37 
     69#: dashboard.py:119 apps/articles/templates/articles/article_detail.html:37 
    5870#: apps/polls/templates/polls/poll_detail.html:34 
    59 #: core/collections/templates/collections/category_list_as_forum.html:13 
     71#: core/collections/templates/collections/category_list_as_forum.html:15 
    6072msgid "Comments" 
    6173msgstr "" 
    6274 
    63 #: dashboard.py:148 
     75#: dashboard.py:121 
    6476msgid "Review and moderate user comments" 
    6577msgstr "" 
    6678 
    67 #: dashboard.py:157 
     79#: dashboard.py:130 
    6880msgid "Categorization" 
    6981msgstr "" 
    7082 
    71 #: dashboard.py:163 
     83#: dashboard.py:136 
    7284msgid "Classify the content in your website" 
    7385msgstr "" 
    7486 
    75 #: dashboard.py:166 
     87#: dashboard.py:139 
    7688msgid "Collections" 
    7789msgstr "" 
    7890 
    79 #: dashboard.py:173 
     91#: dashboard.py:146 
    8092msgid "Tagging" 
    8193msgstr "" 
    8294 
     95#: dashboard.py:154 
     96msgid "Site structure" 
     97msgstr "" 
     98 
     99#: dashboard.py:156 
     100msgid "Modify the menus and site layouts" 
     101msgstr "" 
     102 
     103#: dashboard.py:167 
     104msgid "Global settings" 
     105msgstr "" 
     106 
    83107#: dashboard.py:181 
    84 msgid "Site structure" 
    85 msgstr "" 
    86  
    87 #: dashboard.py:183 
    88 msgid "Modify the menus and site layouts" 
    89 msgstr "" 
    90  
    91 #: dashboard.py:194 
    92 msgid "Global settings" 
    93 msgstr "" 
    94  
    95 #: dashboard.py:207 
    96108msgid "Advanced" 
    97109msgstr "" 
    98110 
     111#: dashboard.py:187 
     112msgid "Advanced configuration" 
     113msgstr "" 
     114 
     115#: dashboard.py:190 
     116msgid "Auth" 
     117msgstr "" 
     118 
     119#: dashboard.py:196 
     120msgid "Registration" 
     121msgstr "" 
     122 
     123#: dashboard.py:202 
     124msgid "Sites" 
     125msgstr "" 
     126 
    99127#: dashboard.py:213 
    100 msgid "Advanced configuration" 
    101 msgstr "" 
    102  
    103 #: dashboard.py:216 
    104 msgid "Auth" 
     128msgid "Recent Actions" 
    105129msgstr "" 
    106130 
    107131#: dashboard.py:222 
    108 msgid "Registration" 
    109 msgstr "" 
    110  
    111 #: dashboard.py:228 
    112 msgid "Sites" 
    113 msgstr "" 
    114  
    115 #: dashboard.py:239 
    116 msgid "Recent Actions" 
    117 msgstr "" 
    118  
    119 #: default_settings.py:42 
    120 msgid "Spanish" 
    121 msgstr "" 
    122  
    123 #: default_settings.py:43 
    124 msgid "English" 
    125 msgstr "" 
    126  
    127 #: default_settings.py:44 
    128 msgid "Portuguese" 
    129 msgstr "" 
    130  
    131 #: default_settings.py:167 
     132msgid "Cyclope 3 community and support" 
     133msgstr "" 
     134 
     135#: dashboard.py:229 
     136msgid "Official website" 
     137msgstr "" 
     138 
     139#: dashboard.py:234 
     140msgid "Tutorials" 
     141msgstr "" 
     142 
     143#: default_settings.py:169 
    132144msgid "Admin Thumbnail" 
    133145msgstr "" 
    134146 
    135 #: default_settings.py:169 
     147#: default_settings.py:171 
    136148msgid "Thumbnail (140px)" 
    137149msgstr "" 
    138150 
    139 #: default_settings.py:171 
     151#: default_settings.py:173 
    140152msgid "Small (300px)" 
    141153msgstr "" 
    142154 
    143 #: default_settings.py:173 
     155#: default_settings.py:175 
    144156msgid "Medium (460px)" 
    145157msgstr "" 
    146158 
    147 #: default_settings.py:175 
     159#: default_settings.py:177 
    148160msgid "Big (620px)" 
    149161msgstr "" 
    150162 
    151 #: default_settings.py:177 
     163#: default_settings.py:179 
    152164msgid "Cropped (60x60px)" 
    153165msgstr "" 
    154166 
    155 #: default_settings.py:179 
     167#: default_settings.py:181 
    156168msgid "Cropped Thumbnail (140x140px)" 
    157169msgstr "" 
     
    165177msgstr "" 
    166178 
    167 #: forms.py:74 core/collections/admin.py:105 
     179#: forms.py:74 core/collections/admin.py:115 
    168180msgid "Parent" 
    169181msgstr "" 
     
    216228msgstr "" 
    217229 
    218 #: frontend_views.py:66 
     230#: frontend_views.py:62 
    219231msgid "flat list of all items for the selected Menu" 
    220232msgstr "" 
    221233 
    222 #: frontend_views.py:86 
     234#: frontend_views.py:81 
    223235msgid "hierarchical list of the items in the selected menu" 
    224236msgstr "" 
    225237 
    226 #: frontend_views.py:140 
     238#: frontend_views.py:134 
    227239msgid "list view of children of the current menu item" 
    228240msgstr "" 
    229241 
    230 #: frontend_views.py:168 
     242#: frontend_views.py:161 
    231243msgid "expanded hierarchical list of all collection and menus" 
    232244msgstr "" 
    233245 
    234 #: models.py:59 
     246#: models.py:60 
    235247msgid "templating theme" 
    236248msgstr "" 
    237249 
    238 #: models.py:61 
     250#: models.py:62 
    239251msgid "default layout" 
    240252msgstr "" 
    241253 
    242 #: models.py:63 models.py:289 
     254#: models.py:64 models.py:293 
    243255msgid "allow comments" 
    244256msgstr "" 
    245257 
    246 #: models.py:65 models.py:292 
     258#: models.py:66 models.py:296 
    247259msgid "enabled" 
    248260msgstr "" 
    249261 
    250 #: models.py:66 models.py:293 
     262#: models.py:67 models.py:297 
    251263msgid "disabled" 
    252264msgstr "" 
    253265 
    254 #: models.py:69 
     266#: models.py:70 
    255267msgid "global title" 
    256268msgstr "" 
    257269 
    258 #: models.py:71 
     270#: models.py:72 
    259271msgid "keywords" 
    260272msgstr "" 
    261273 
    262 #: models.py:72 apps/medialibrary/models.py:37 apps/polls/models.py:36 
     274#: models.py:73 apps/medialibrary/models.py:37 apps/polls/models.py:36 
    263275#: core/collections/models.py:53 core/collections/models.py:83 
    264276msgid "description" 
    265277msgstr "" 
    266278 
    267 #: models.py:78 models.py:79 
     279#: models.py:75 
     280msgid "newsletter collection" 
     281msgstr "" 
     282 
     283#: models.py:76 
     284msgid "" 
     285"This is the collection that will group the contents for your newsletters." 
     286msgstr "" 
     287 
     288#: models.py:82 models.py:83 
    268289msgid "site settings" 
    269290msgstr "" 
    270291 
    271 #: models.py:88 models.py:118 models.py:230 models.py:276 models.py:351 
    272 #: models.py:374 core/collections/models.py:42 core/collections/models.py:77 
     292#: models.py:92 models.py:122 models.py:234 models.py:280 models.py:355 
     293#: models.py:378 apps/newsletter/models.py:34 core/collections/models.py:42 
     294#: core/collections/models.py:77 
    273295msgid "name" 
    274296msgstr "" 
    275297 
    276 #: models.py:90 
     298#: models.py:94 
    277299msgid "main menu" 
    278300msgstr "" 
    279301 
    280 #: models.py:107 models.py:116 
     302#: models.py:111 models.py:120 
    281303msgid "menu" 
    282304msgstr "" 
    283305 
    284 #: models.py:108 
     306#: models.py:112 
    285307msgid "menus" 
    286308msgstr "" 
    287309 
    288 #: models.py:119 core/collections/models.py:80 
     310#: models.py:123 core/collections/models.py:80 
    289311msgid "parent" 
    290312msgstr "" 
    291313 
    292 #: models.py:120 core/collections/models.py:81 
     314#: models.py:124 core/collections/models.py:81 
    293315msgid "children" 
    294316msgstr "" 
    295317 
    296 #: models.py:124 
     318#: models.py:128 
    297319msgid "site home" 
    298320msgstr "" 
    299321 
    300 #: models.py:125 
     322#: models.py:129 
    301323msgid "custom URL" 
    302324msgstr "" 
    303325 
    304 #: models.py:129 models.py:241 
     326#: models.py:133 models.py:245 apps/newsletter/models.py:42 
    305327msgid "layout" 
    306328msgstr "" 
    307329 
    308 #: models.py:131 
     330#: models.py:135 
    309331msgid "Persistent layout" 
    310332msgstr "" 
    311333 
    312 #: models.py:132 
     334#: models.py:136 
    313335msgid "" 
    314336"If the layout is marked as persistent it will be in use until the user " 
     
    316338msgstr "" 
    317339 
    318 #: models.py:136 models.py:211 
     340#: models.py:140 models.py:215 
    319341msgid "type" 
    320342msgstr "" 
    321343 
    322 #: models.py:138 models.py:219 
     344#: models.py:142 models.py:223 
    323345msgid "object" 
    324346msgstr "" 
    325347 
    326 #: models.py:144 models.py:213 
     348#: models.py:148 models.py:217 
    327349msgid "view" 
    328350msgstr "" 
    329351 
    330 #: models.py:198 
     352#: models.py:202 
    331353msgid "menu item" 
    332354msgstr "" 
    333355 
    334 #: models.py:199 
     356#: models.py:203 
    335357msgid "menu items" 
    336358msgstr "" 
    337359 
    338 #: models.py:207 
     360#: models.py:211 
    339361msgid "region" 
    340362msgstr "" 
    341363 
    342 #: models.py:216 
     364#: models.py:220 
    343365msgid "weight" 
    344366msgstr "" 
    345367 
    346 #: models.py:235 
     368#: models.py:239 
    347369msgid "layout template" 
    348370msgstr "" 
    349371 
    350 #: models.py:242 
     372#: models.py:246 
    351373msgid "layouts" 
    352374msgstr "" 
    353375 
    354 #: models.py:249 models.py:254 core/collections/models.py:144 
     376#: models.py:253 models.py:258 core/collections/models.py:145 
    355377msgid "content type" 
    356378msgstr "" 
    357379 
    358 #: models.py:269 
     380#: models.py:273 
    359381msgid "related content" 
    360382msgstr "" 
    361383 
    362 #: models.py:270 
     384#: models.py:274 
    363385msgid "related contents" 
    364386msgstr "" 
    365387 
    366 #: models.py:280 
     388#: models.py:284 
    367389msgid "tags" 
    368390msgstr "" 
    369391 
    370 #: models.py:281 
     392#: models.py:285 
    371393msgid "published" 
    372394msgstr "" 
    373395 
    374 #: models.py:285 
     396#: models.py:289 
    375397msgid "creation date" 
    376398msgstr "" 
    377399 
    378 #: models.py:287 
     400#: models.py:291 
    379401msgid "modification date" 
    380402msgstr "" 
    381403 
    382 #: models.py:291 
     404#: models.py:295 
    383405msgid "default" 
    384406msgstr "" 
    385407 
    386 #: models.py:337 
     408#: models.py:341 
    387409msgid "translations" 
    388410msgstr "" 
    389411 
    390 #: models.py:355 models.py:390 models.py:400 apps/medialibrary/models.py:47 
     412#: models.py:359 models.py:394 models.py:404 apps/medialibrary/models.py:47 
    391413#: apps/medialibrary/models.py:82 apps/medialibrary/models.py:95 
    392414#: apps/medialibrary/models.py:108 apps/medialibrary/models.py:121 
     
    395417msgstr "" 
    396418 
    397 #: models.py:358 
     419#: models.py:362 
    398420msgid "origin" 
    399421msgstr "" 
    400422 
    401 #: models.py:360 
     423#: models.py:364 
    402424msgid "notes" 
    403425msgstr "" 
    404426 
    405 #: models.py:362 core/collections/models.py:52 
     427#: models.py:366 core/collections/models.py:52 
    406428msgid "content types" 
    407429msgstr "" 
    408430 
    409 #: models.py:363 
     431#: models.py:367 
    410432msgid "Select the content types this author is related to." 
    411433msgstr "" 
    412434 
    413 #: models.py:369 apps/articles/models.py:46 apps/forum/models.py:38 
     435#: models.py:373 apps/articles/models.py:46 apps/forum/models.py:38 
    414436#: apps/medialibrary/models.py:35 
    415437msgid "author" 
    416438msgstr "" 
    417439 
    418 #: models.py:370 
     440#: models.py:374 
    419441msgid "authors" 
    420442msgstr "" 
    421443 
    422 #: models.py:378 
     444#: models.py:382 
    423445msgid "link" 
    424446msgstr "" 
    425447 
    426 #: models.py:384 apps/articles/models.py:47 
     448#: models.py:388 apps/articles/models.py:47 
    427449msgid "source" 
    428450msgstr "" 
    429451 
    430 #: models.py:385 
     452#: models.py:389 
    431453msgid "sources" 
    432454msgstr "" 
    433455 
    434 #: models.py:396 
     456#: models.py:400 
    435457msgid "Thumbnail Image" 
    436458msgstr "" 
    437459 
    438 #: models.py:401 
     460#: models.py:405 
    439461msgid "images" 
    440462msgstr "" 
    441463 
    442 #: models.py:407 
     464#: models.py:411 
    443465msgid "avatar" 
    444466msgstr "" 
    445467 
    446 #: models.py:409 
     468#: models.py:413 
    447469msgid "city" 
    448470msgstr "" 
    449471 
    450 #: models.py:410 
     472#: models.py:414 
    451473msgid "about myself" 
    452474msgstr "" 
    453475 
    454 #: models.py:413 
     476#: models.py:417 
    455477msgid "public" 
    456478msgstr "" 
    457479 
    458 #: models.py:414 
     480#: models.py:418 
    459481msgid "Choose whether your profile info should be publicly visible or not" 
    460482msgstr "" 
    461483 
    462 #: settings.py:90 
     484#: settings.py:89 
    463485msgid "You need to set the CYCLOPE_PROJECT_PATH in your settings file." 
    464486msgstr "" 
     
    490512#: apps/articles/frontend_views.py:34 
    491513msgid "detailed view of the selected Article" 
     514msgstr "" 
     515 
     516#: apps/articles/frontend_views.py:51 
     517msgid "list of Article teasers" 
     518msgstr "" 
     519 
     520#: apps/articles/frontend_views.py:67 
     521msgid "list of Article labeled icons" 
    492522msgstr "" 
    493523 
     
    592622msgstr "" 
    593623 
    594 #: apps/forum/frontend_views.py:64 
     624#: apps/forum/frontend_views.py:63 
    595625msgid "create a new topic in the Forum selected" 
    596626msgstr "" 
     
    622652msgstr "" 
    623653 
    624 #: apps/medialibrary/frontend_views.py:44 
     654#: apps/medialibrary/frontend_views.py:43 
    625655msgid "detailed view of the selected Picture" 
    626656msgstr "" 
    627657 
    628 #: apps/medialibrary/frontend_views.py:52 
     658#: apps/medialibrary/frontend_views.py:51 
    629659msgid "detailed view of the selected Audio Track" 
    630660msgstr "" 
    631661 
    632 #: apps/medialibrary/frontend_views.py:60 
     662#: apps/medialibrary/frontend_views.py:59 
    633663msgid "detailed view of the selected Movie Clip" 
    634664msgstr "" 
    635665 
    636 #: apps/medialibrary/frontend_views.py:68 
     666#: apps/medialibrary/frontend_views.py:67 
    637667msgid "detailed view of the selected Document" 
    638668msgstr "" 
    639669 
    640 #: apps/medialibrary/frontend_views.py:76 
     670#: apps/medialibrary/frontend_views.py:75 
    641671msgid "detailed view of the selected File" 
    642672msgstr "" 
    643673 
    644 #: apps/medialibrary/frontend_views.py:84 
     674#: apps/medialibrary/frontend_views.py:83 
    645675msgid "detailed view of the selected External Content" 
    646676msgstr "" 
    647677 
    648 #: apps/medialibrary/frontend_views.py:92 
     678#: apps/medialibrary/frontend_views.py:91 
    649679msgid "detailed view of the selected Flash Movie" 
    650680msgstr "" 
     
    754784msgstr "" 
    755785 
     786#: apps/newsletter/admin.py:34 
     787msgid "Current content category" 
     788msgstr "" 
     789 
     790#: apps/newsletter/admin.py:35 
     791msgid "" 
     792"This is the category which groups the content that will be sent with the " 
     793"newsletter." 
     794msgstr "" 
     795 
     796#: apps/newsletter/frontend_views.py:13 
     797msgid "show the current content for the selected Newsletter" 
     798msgstr "" 
     799 
     800#: apps/newsletter/frontend_views.py:32 
     801msgid "show the header text of the selected Newsletter" 
     802msgstr "" 
     803 
     804#: apps/newsletter/models.py:38 
     805msgid "sent date" 
     806msgstr "" 
     807 
     808#: apps/newsletter/models.py:41 
     809#: templates/cyclope/themes/neutrona/__init__.py:19 
     810#: templates/cyclope/themes/neutrona/__init__.py:31 
     811#: templates/cyclope/themes/neutronica/__init__.py:19 
     812#: templates/cyclope/themes/neutronica/__init__.py:31 
     813#: templates/cyclope/themes/neutronica/__init__.py:43 
     814#: templates/cyclope/themes/neutronica/__init__.py:59 
     815msgid "header" 
     816msgstr "" 
     817 
     818#: apps/newsletter/models.py:43 
     819msgid "sender" 
     820msgstr "" 
     821 
     822#: apps/newsletter/models.py:44 
     823msgid "test recipients" 
     824msgstr "" 
     825 
     826#: apps/newsletter/models.py:45 
     827msgid "recipients" 
     828msgstr "" 
     829 
     830#: apps/newsletter/models.py:51 
     831msgid "newsletter" 
     832msgstr "" 
     833 
     834#: apps/newsletter/models.py:52 
     835msgid "newsletters" 
     836msgstr "" 
     837 
     838#: apps/newsletter/templates/admin/newsletter_change_form.html:7 
     839msgid "Preview" 
     840msgstr "" 
     841 
     842#: apps/newsletter/templates/admin/newsletter_change_form.html:8 
     843msgid "Send test" 
     844msgstr "" 
     845 
     846#: apps/newsletter/templates/admin/newsletter_change_form.html:9 
     847msgid "Send e-mail" 
     848msgstr "" 
     849 
     850#: apps/newsletter/templates/newsletter/mail_sent.html:5 
     851msgid "The e-mail has been sent for newsletter " 
     852msgstr "" 
     853 
     854#: apps/newsletter/templates/newsletter/mail_sent.html:6 
     855#: apps/newsletter/templates/newsletter/send_failed.html:11 
     856msgid "Return to newsletter admin" 
     857msgstr "" 
     858 
     859#: apps/newsletter/templates/newsletter/send_failed.html:6 
     860msgid "The e-mail for newsletter" 
     861msgstr "" 
     862 
     863#: apps/newsletter/templates/newsletter/send_failed.html:7 
     864msgid "could not be sent." 
     865msgstr "" 
     866 
     867#: apps/newsletter/templates/newsletter/send_failed.html:9 
     868msgid "You should try again later or contact your administrator." 
     869msgstr "" 
     870 
    756871#: apps/polls/frontend_views.py:39 
    757872msgid "Poll submission form" 
    758873msgstr "" 
    759874 
    760 #: apps/polls/frontend_views.py:78 
     875#: apps/polls/frontend_views.py:74 
    761876msgid "detailed view of the selected Poll" 
    762877msgstr "" 
     
    835950msgstr "" 
    836951 
    837 #: core/collections/admin.py:87 templates/rosetta/pofile.html:59 
     952#: core/collections/admin.py:94 templates/rosetta/pofile.html:59 
    838953msgid "All" 
    839954msgstr "" 
    840955 
    841 #: core/collections/admin.py:94 core/collections/models.py:112 
    842 #: core/collections/models.py:174 
     956#: core/collections/admin.py:104 core/collections/models.py:112 
     957#: core/collections/models.py:175 
    843958msgid "categories" 
    844959msgstr "" 
    845960 
    846 #: core/collections/admin.py:103 
     961#: core/collections/admin.py:113 
    847962msgid "Description" 
    848963msgstr "" 
    849964 
    850 #: core/collections/admin.py:118 
     965#: core/collections/admin.py:128 
    851966msgid "Extra info" 
    852967msgstr "" 
    853968 
    854 #: core/collections/admin.py:138 
     969#: core/collections/admin.py:148 
    855970msgid "Collection" 
    856971msgstr "" 
    857972 
    858 #: core/collections/admin.py:140 
     973#: core/collections/admin.py:150 
    859974msgid "Category" 
    860975msgstr "" 
    861976 
    862 #: core/collections/admin.py:188 
     977#: core/collections/admin.py:198 
    863978msgid "Default category listing view" 
    864979msgstr "" 
     
    868983msgstr "" 
    869984 
    870 #: core/collections/frontend_views.py:59 
     985#: core/collections/frontend_views.py:58 
    871986msgid "default view for the Collection" 
    872987msgstr "" 
    873988 
    874 #: core/collections/frontend_views.py:79 
     989#: core/collections/frontend_views.py:78 
    875990msgid "teaser list of Category members" 
    876991msgstr "" 
    877992 
    878 #: core/collections/frontend_views.py:125 
     993#: core/collections/frontend_views.py:122 
    879994msgid "Labeled icon list of Category members" 
    880995msgstr "" 
    881996 
    882 #: core/collections/frontend_views.py:137 
     997#: core/collections/frontend_views.py:134 
    883998msgid "simplified teaser list of Category members" 
    884999msgstr "" 
    8851000 
    886 #: core/collections/frontend_views.py:162 
     1001#: core/collections/frontend_views.py:156 
    8871002msgid "teaser list of the root Categories of a Collection" 
    8881003msgstr "" 
    8891004 
    890 #: core/collections/frontend_views.py:184 
     1005#: core/collections/frontend_views.py:176 
    8911006msgid "hierarchical list of Categories in a Collection" 
    8921007msgstr "" 
    8931008 
    894 #: core/collections/frontend_views.py:250 
     1009#: core/collections/frontend_views.py:241 
    8951010msgid "hierarchical list of Categories that will show an icon list on click" 
    8961011msgstr "" 
    8971012 
    898 #: core/collections/frontend_views.py:261 
     1013#: core/collections/frontend_views.py:252 
    8991014msgid "list of Category members as forum view" 
    9001015msgstr "" 
     
    9281043msgstr "" 
    9291044 
    930 #: core/collections/models.py:111 core/collections/models.py:141 
     1045#: core/collections/models.py:111 core/collections/models.py:142 
    9311046msgid "category" 
    9321047msgstr "" 
    9331048 
    934 #: core/collections/models.py:164 
     1049#: core/collections/models.py:165 
    9351050msgid "categorization" 
    9361051msgstr "" 
    9371052 
    938 #: core/collections/models.py:165 
     1053#: core/collections/models.py:166 
    9391054msgid "categorizations" 
    9401055msgstr "" 
    9411056 
    942 #: core/collections/models.py:181 
     1057#: core/collections/models.py:182 
    9431058msgid "is orphan" 
    9441059msgstr "" 
     
    9481063msgstr "" 
    9491064 
    950 #: core/collections/templates/collections/category_list_as_forum.html:9 
     1065#: core/collections/templates/collections/category_list_as_forum.html:10 
    9511066msgid "Create a new topic" 
    9521067msgstr "" 
    9531068 
    954 #: core/collections/templates/collections/category_list_as_forum.html:12 
     1069#: core/collections/templates/collections/category_list_as_forum.html:14 
    9551070msgid "Name" 
    9561071msgstr "" 
    9571072 
    958 #: core/collections/templates/collections/category_list_as_forum.html:14 
     1073#: core/collections/templates/collections/category_list_as_forum.html:16 
    9591074msgid "Created" 
    9601075msgstr "" 
    9611076 
    962 #: core/collections/templates/collections/category_list_as_forum.html:15 
     1077#: core/collections/templates/collections/category_list_as_forum.html:17 
    9631078msgid "Last comment" 
    9641079msgstr "" 
    9651080 
    966 #: core/collections/templates/collections/category_list_as_forum.html:22 
    967 #: core/collections/templates/collections/category_list_as_forum.html:23 
     1081#: core/collections/templates/collections/category_list_as_forum.html:25 
     1082#: core/collections/templates/collections/category_list_as_forum.html:27 
    9681083msgid "by" 
    9691084msgstr "" 
    9701085 
    971 #: core/frontend/__init__.py:150 
     1086#: core/frontend/__init__.py:162 
    9721087#, python-format 
    9731088msgid "No default view has been set for %s" 
    9741089msgstr "" 
    9751090 
    976 #: core/frontend/__init__.py:153 
     1091#: core/frontend/__init__.py:165 
    9771092#, python-format 
    9781093msgid "You can set only one default view for %s" 
    9791094msgstr "" 
    9801095 
    981 #: core/frontend/sites.py:149 
     1096#: core/frontend/sites.py:156 
    9821097msgid "You need to create you site settings" 
    9831098msgstr "" 
    9841099 
    985 #: core/frontend/sites.py:154 
     1100#: core/frontend/sites.py:161 
    9861101msgid "You need to select a layout for the site" 
    9871102msgstr "" 
    9881103 
    989 #: core/frontend/sites.py:160 
     1104#: core/frontend/sites.py:167 
    9901105msgid "The site home page has not been set." 
    9911106msgstr "" 
    9921107 
    993 #: core/frontend/sites.py:171 
     1108#: core/frontend/sites.py:178 
    9941109msgid "No content object selected" 
    9951110msgstr "" 
     
    9991114msgstr "" 
    10001115 
    1001 #: templates/admin/change_form.html:21 templates/admin/change_list.html:42 
     1116#: templates/admin/change_form.html:21 templates/admin/change_list.html:62 
    10021117#: templates/rosetta/pofile.html:46 
    10031118msgid "Home" 
     
    10161131msgstr "" 
    10171132 
    1018 #: templates/admin/change_form.html:41 templates/admin/change_list.html:76 
     1133#: templates/admin/change_form.html:41 templates/admin/change_list.html:96 
    10191134msgid "Please correct the error below." 
    10201135msgid_plural "Please correct the errors below." 
     
    10221137msgstr[1] "" 
    10231138 
    1024 #: templates/admin/change_list.html:58 
     1139#: templates/admin/change_list.html:78 
    10251140#, python-format 
    10261141msgid "" 
     
    10291144msgstr "" 
    10301145 
    1031 #: templates/admin/change_list.html:68 
     1146#: templates/admin/change_list.html:88 
    10321147#, python-format 
    10331148msgid "Add %(name)s" 
    10341149msgstr "" 
    10351150 
    1036 #: templates/admin/change_list.html:87 
     1151#: templates/admin/change_list.html:107 
    10371152#: templates/admin/feincms/tree_editor.html:140 
    10381153#: templates/admin/polls/change_list.html:7 
    10391154msgid "Filter" 
     1155msgstr "" 
     1156 
     1157#: templates/admin/filter.html:2 
     1158#, python-format 
     1159msgid " By %(filter_title)s " 
    10401160msgstr "" 
    10411161 
     
    11281248msgstr "" 
    11291249 
    1130 #: templates/cyclope/site_map.html:5 
     1250#: templates/cyclope/site_map.html:6 
    11311251msgid "Site map" 
    11321252msgstr "" 
     
    11471267#: templates/cyclope/themes/neutronica/__init__.py:17 
    11481268msgid "One sidebar" 
    1149 msgstr "" 
    1150  
    1151 #: templates/cyclope/themes/neutrona/__init__.py:19 
    1152 #: templates/cyclope/themes/neutrona/__init__.py:31 
    1153 #: templates/cyclope/themes/neutronica/__init__.py:19 
    1154 #: templates/cyclope/themes/neutronica/__init__.py:31 
    1155 #: templates/cyclope/themes/neutronica/__init__.py:43 
    1156 msgid "header" 
    11571269msgstr "" 
    11581270 
     
    11691281#: templates/cyclope/themes/neutronica/__init__.py:34 
    11701282#: templates/cyclope/themes/neutronica/__init__.py:44 
     1283#: templates/cyclope/themes/neutronica/__init__.py:60 
    11711284msgid "before content" 
    11721285msgstr "" 
     
    11771290#: templates/cyclope/themes/neutronica/__init__.py:35 
    11781291#: templates/cyclope/themes/neutronica/__init__.py:45 
     1292#: templates/cyclope/themes/neutronica/__init__.py:61 
    11791293msgid "after content" 
    11801294msgstr "" 
     
    11851299#: templates/cyclope/themes/neutronica/__init__.py:36 
    11861300#: templates/cyclope/themes/neutronica/__init__.py:46 
     1301#: templates/cyclope/themes/neutronica/__init__.py:62 
    11871302msgid "footer" 
    11881303msgstr "" 
     
    12231338#: templates/cyclope/themes/neutronica/__init__.py:41 
    12241339msgid "No sidebars" 
     1340msgstr "" 
     1341 
     1342#: templates/cyclope/themes/neutronica/__init__.py:57 
     1343msgid "Newsletter" 
    12251344msgstr "" 
    12261345 
  • cyclope/locale/pt/LC_MESSAGES/django.po

    r252 r269  
    99"Project-Id-Version: PACKAGE VERSION\n" 
    1010"Report-Msgid-Bugs-To: \n" 
    11 "POT-Creation-Date: 2010-11-24 15:49-0300\n" 
     11"POT-Creation-Date: 2010-12-12 02:32-0300\n" 
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    3030msgstr "" 
    3131 
    32 #: dashboard.py:100 
     32#: dashboard.py:45 
     33msgid "Quick links" 
     34msgstr "" 
     35 
     36#: dashboard.py:51 
     37msgid "Browse media files" 
     38msgstr "" 
     39 
     40#: dashboard.py:54 
     41msgid "Return to site" 
     42msgstr "" 
     43 
     44#: dashboard.py:73 
    3345msgid "Content" 
    3446msgstr "" 
    3547 
    36 #: dashboard.py:106 
     48#: dashboard.py:79 
    3749msgid "Create, delete or modify content for your website" 
    3850msgstr "" 
    3951 
    40 #: dashboard.py:109 
     52#: dashboard.py:82 
    4153msgid "Main" 
    4254msgstr "" 
    4355 
    44 #: dashboard.py:116 
     56#: dashboard.py:89 
    4557msgid "Multimedia Library" 
    4658msgstr "" 
    4759 
    48 #: dashboard.py:128 
     60#: dashboard.py:101 
    4961msgid "Authors and Sources" 
    5062msgstr "" 
    5163 
    52 #: dashboard.py:135 
     64#: dashboard.py:108 
    5365msgid "Polls" 
    5466msgstr "" 
    5567 
    56 #: dashboard.py:146 apps/articles/templates/articles/article_detail.html:37 
     68#: dashboard.py:119 apps/articles/templates/articles/article_detail.html:37 
    5769#: apps/polls/templates/polls/poll_detail.html:34 
    58 #: core/collections/templates/collections/category_list_as_forum.html:13 
     70#: core/collections/templates/collections/category_list_as_forum.html:15 
    5971msgid "Comments" 
    6072msgstr "" 
    6173 
    62 #: dashboard.py:148 
     74#: dashboard.py:121 
    6375msgid "Review and moderate user comments" 
    6476msgstr "" 
    6577 
    66 #: dashboard.py:157 
     78#: dashboard.py:130 
    6779msgid "Categorization" 
    6880msgstr "" 
    6981 
    70 #: dashboard.py:163 
     82#: dashboard.py:136 
    7183msgid "Classify the content in your website" 
    7284msgstr "" 
    7385 
    74 #: dashboard.py:166 
     86#: dashboard.py:139 
    7587msgid "Collections" 
    7688msgstr "" 
    7789 
    78 #: dashboard.py:173 
     90#: dashboard.py:146 
    7991msgid "Tagging" 
    8092msgstr "" 
    8193 
     94#: dashboard.py:154 
     95msgid "Site structure" 
     96msgstr "" 
     97 
     98#: dashboard.py:156 
     99msgid "Modify the menus and site layouts" 
     100msgstr "" 
     101 
     102#: dashboard.py:167 
     103msgid "Global settings" 
     104msgstr "" 
     105 
    82106#: dashboard.py:181 
    83 msgid "Site structure" 
    84 msgstr "" 
    85  
    86 #: dashboard.py:183 
    87 msgid "Modify the menus and site layouts" 
    88 msgstr "" 
    89  
    90 #: dashboard.py:194 
    91 msgid "Global settings" 
    92 msgstr "" 
    93  
    94 #: dashboard.py:207 
    95107msgid "Advanced" 
    96108msgstr "" 
    97109 
     110#: dashboard.py:187 
     111msgid "Advanced configuration" 
     112msgstr "" 
     113 
     114#: dashboard.py:190 
     115msgid "Auth" 
     116msgstr "" 
     117 
     118#: dashboard.py:196 
     119msgid "Registration" 
     120msgstr "" 
     121 
     122#: dashboard.py:202 
     123msgid "Sites" 
     124msgstr "" 
     125 
    98126#: dashboard.py:213 
    99 msgid "Advanced configuration" 
    100 msgstr "" 
    101  
    102 #: dashboard.py:216 
    103 msgid "Auth" 
     127msgid "Recent Actions" 
    104128msgstr "" 
    105129 
    106130#: dashboard.py:222 
    107 msgid "Registration" 
    108 msgstr "" 
    109  
    110 #: dashboard.py:228 
    111 msgid "Sites" 
    112 msgstr "" 
    113  
    114 #: dashboard.py:239 
    115 msgid "Recent Actions" 
    116 msgstr "" 
    117  
    118 #: default_settings.py:42 
    119 msgid "Spanish" 
    120 msgstr "" 
    121  
    122 #: default_settings.py:43 
    123 msgid "English" 
    124 msgstr "" 
    125  
    126 #: default_settings.py:44 
    127 msgid "Portuguese" 
    128 msgstr "" 
    129  
    130 #: default_settings.py:167 
     131msgid "Cyclope 3 community and support" 
     132msgstr "" 
     133 
     134#: dashboard.py:229 
     135msgid "Official website" 
     136msgstr "" 
     137 
     138#: dashboard.py:234 
     139msgid "Tutorials" 
     140msgstr "" 
     141 
     142#: default_settings.py:169 
    131143msgid "Admin Thumbnail" 
    132144msgstr "" 
    133145 
    134 #: default_settings.py:169 
     146#: default_settings.py:171 
    135147msgid "Thumbnail (140px)" 
    136148msgstr "" 
    137149 
    138 #: default_settings.py:171 
     150#: default_settings.py:173 
    139151msgid "Small (300px)" 
    140152msgstr "" 
    141153 
    142 #: default_settings.py:173 
     154#: default_settings.py:175 
    143155msgid "Medium (460px)" 
    144156msgstr "" 
    145157 
    146 #: default_settings.py:175 
     158#: default_settings.py:177 
    147159msgid "Big (620px)" 
    148160msgstr "" 
    149161 
    150 #: default_settings.py:177 
     162#: default_settings.py:179 
    151163msgid "Cropped (60x60px)" 
    152164msgstr "" 
    153165 
    154 #: default_settings.py:179 
     166#: default_settings.py:181 
    155167msgid "Cropped Thumbnail (140x140px)" 
    156168msgstr "" 
     
    164176msgstr "" 
    165177 
    166 #: forms.py:74 core/collections/admin.py:105 
     178#: forms.py:74 core/collections/admin.py:115 
    167179msgid "Parent" 
    168180msgstr "" 
     
    215227msgstr "" 
    216228 
    217 #: frontend_views.py:66 
     229#: frontend_views.py:62 
    218230msgid "flat list of all items for the selected Menu" 
    219231msgstr "" 
    220232 
    221 #: frontend_views.py:86 
     233#: frontend_views.py:81 
    222234msgid "hierarchical list of the items in the selected menu" 
    223235msgstr "" 
    224236 
    225 #: frontend_views.py:140 
     237#: frontend_views.py:134 
    226238msgid "list view of children of the current menu item" 
    227239msgstr "" 
    228240 
    229 #: frontend_views.py:168 
     241#: frontend_views.py:161 
    230242msgid "expanded hierarchical list of all collection and menus" 
    231243msgstr "" 
    232244 
    233 #: models.py:59 
     245#: models.py:60 
    234246msgid "templating theme" 
    235247msgstr "" 
    236248 
    237 #: models.py:61 
     249#: models.py:62 
    238250msgid "default layout" 
    239251msgstr "" 
    240252 
    241 #: models.py:63 models.py:289 
     253#: models.py:64 models.py:293 
    242254msgid "allow comments" 
    243255msgstr "" 
    244256 
    245 #: models.py:65 models.py:292 
     257#: models.py:66 models.py:296 
    246258msgid "enabled" 
    247259msgstr "" 
    248260 
    249 #: models.py:66 models.py:293 
     261#: models.py:67 models.py:297 
    250262msgid "disabled" 
    251263msgstr "" 
    252264 
    253 #: models.py:69 
     265#: models.py:70 
    254266msgid "global title" 
    255267msgstr "" 
    256268 
    257 #: models.py:71 
     269#: models.py:72 
    258270msgid "keywords" 
    259271msgstr "" 
    260272 
    261 #: models.py:72 apps/medialibrary/models.py:37 apps/polls/models.py:36 
     273#: models.py:73 apps/medialibrary/models.py:37 apps/polls/models.py:36 
    262274#: core/collections/models.py:53 core/collections/models.py:83 
    263275msgid "description" 
    264276msgstr "" 
    265277 
    266 #: models.py:78 models.py:79 
     278#: models.py:75 
     279msgid "newsletter collection" 
     280msgstr "" 
     281 
     282#: models.py:76 
     283msgid "" 
     284"This is the collection that will group the contents for your newsletters." 
     285msgstr "" 
     286 
     287#: models.py:82 models.py:83 
    267288msgid "site settings" 
    268289msgstr "" 
    269290 
    270 #: models.py:88 models.py:118 models.py:230 models.py:276 models.py:351 
    271 #: models.py:374 core/collections/models.py:42 core/collections/models.py:77 
     291#: models.py:92 models.py:122 models.py:234 models.py:280 models.py:355 
     292#: models.py:378 apps/newsletter/models.py:34 core/collections/models.py:42 
     293#: core/collections/models.py:77 
    272294msgid "name" 
    273295msgstr "" 
    274296 
    275 #: models.py:90 
     297#: models.py:94 
    276298msgid "main menu" 
    277299msgstr "" 
    278300 
    279 #: models.py:107 models.py:116 
     301#: models.py:111 models.py:120 
    280302msgid "menu" 
    281303msgstr "" 
    282304 
    283 #: models.py:108 
     305#: models.py:112 
    284306msgid "menus" 
    285307msgstr "" 
    286308 
    287 #: models.py:119 core/collections/models.py:80 
     309#: models.py:123 core/collections/models.py:80 
    288310msgid "parent" 
    289311msgstr "" 
    290312 
    291 #: models.py:120 core/collections/models.py:81 
     313#: models.py:124 core/collections/models.py:81 
    292314msgid "children" 
    293315msgstr "" 
    294316 
    295 #: models.py:124 
     317#: models.py:128 
    296318msgid "site home" 
    297319msgstr "" 
    298320 
    299 #: models.py:125 
     321#: models.py:129 
    300322msgid "custom URL" 
    301323msgstr "" 
    302324 
    303 #: models.py:129 models.py:241 
     325#: models.py:133 models.py:245 apps/newsletter/models.py:42 
    304326msgid "layout" 
    305327msgstr "" 
    306328 
    307 #: models.py:131 
     329#: models.py:135 
    308330msgid "Persistent layout" 
    309331msgstr "" 
    310332 
    311 #: models.py:132 
     333#: models.py:136 
    312334msgid "" 
    313335"If the layout is marked as persistent it will be in use until the user " 
     
    315337msgstr "" 
    316338 
    317 #: models.py:136 models.py:211 
     339#: models.py:140 models.py:215 
    318340msgid "type" 
    319341msgstr "" 
    320342 
    321 #: models.py:138 models.py:219 
     343#: models.py:142 models.py:223 
    322344msgid "object" 
    323345msgstr "" 
    324346 
    325 #: models.py:144 models.py:213 
     347#: models.py:148 models.py:217 
    326348msgid "view" 
    327349msgstr "" 
    328350 
    329 #: models.py:198 
     351#: models.py:202 
    330352msgid "menu item" 
    331353msgstr "" 
    332354 
    333 #: models.py:199 
     355#: models.py:203 
    334356msgid "menu items" 
    335357msgstr "" 
    336358 
    337 #: models.py:207 
     359#: models.py:211 
    338360msgid "region" 
    339361msgstr "" 
    340362 
    341 #: models.py:216 
     363#: models.py:220 
    342364msgid "weight" 
    343365msgstr "" 
    344366 
    345 #: models.py:235 
     367#: models.py:239 
    346368msgid "layout template" 
    347369msgstr "" 
    348370 
    349 #: models.py:242 
     371#: models.py:246 
    350372msgid "layouts" 
    351373msgstr "" 
    352374 
    353 #: models.py:249 models.py:254 core/collections/models.py:144 
     375#: models.py:253 models.py:258 core/collections/models.py:145 
    354376msgid "content type" 
    355377msgstr "" 
    356378 
    357 #: models.py:269 
     379#: models.py:273 
    358380msgid "related content" 
    359381msgstr "" 
    360382 
    361 #: models.py:270 
     383#: models.py:274 
    362384msgid "related contents" 
    363385msgstr "" 
    364386 
    365 #: models.py:280 
     387#: models.py:284 
    366388msgid "tags" 
    367389msgstr "" 
    368390 
    369 #: models.py:281 
     391#: models.py:285 
    370392msgid "published" 
    371393msgstr "" 
    372394 
    373 #: models.py:285 
     395#: models.py:289 
    374396msgid "creation date" 
    375397msgstr "" 
    376398 
    377 #: models.py:287 
     399#: models.py:291 
    378400msgid "modification date" 
    379401msgstr "" 
    380402 
    381 #: models.py:291 
     403#: models.py:295 
    382404msgid "default" 
    383405msgstr "" 
    384406 
    385 #: models.py:337 
     407#: models.py:341 
    386408msgid "translations" 
    387409msgstr "" 
    388410 
    389 #: models.py:355 models.py:390 models.py:400 apps/medialibrary/models.py:47 
     411#: models.py:359 models.py:394 models.py:404 apps/medialibrary/models.py:47 
    390412#: apps/medialibrary/models.py:82 apps/medialibrary/models.py:95 
    391413#: apps/medialibrary/models.py:108 apps/medialibrary/models.py:121 
     
    394416msgstr "" 
    395417 
    396 #: models.py:358 
     418#: models.py:362 
    397419msgid "origin" 
    398420msgstr "" 
    399421 
    400 #: models.py:360 
     422#: models.py:364 
    401423msgid "notes" 
    402424msgstr "" 
    403425 
    404 #: models.py:362 core/collections/models.py:52 
     426#: models.py:366 core/collections/models.py:52 
    405427msgid "content types" 
    406428msgstr "" 
    407429 
    408 #: models.py:363 
     430#: models.py:367 
    409431msgid "Select the content types this author is related to." 
    410432msgstr "" 
    411433 
    412 #: models.py:369 apps/articles/models.py:46 apps/forum/models.py:38 
     434#: models.py:373 apps/articles/models.py:46 apps/forum/models.py:38 
    413435#: apps/medialibrary/models.py:35 
    414436msgid "author" 
    415437msgstr "" 
    416438 
    417 #: models.py:370 
     439#: models.py:374 
    418440msgid "authors" 
    419441msgstr "" 
    420442 
    421 #: models.py:378 
     443#: models.py:382 
    422444msgid "link" 
    423445msgstr "" 
    424446 
    425 #: models.py:384 apps/articles/models.py:47 
     447#: models.py:388 apps/articles/models.py:47 
    426448msgid "source" 
    427449msgstr "" 
    428450 
    429 #: models.py:385 
     451#: models.py:389 
    430452msgid "sources" 
    431453msgstr "" 
    432454 
    433 #: models.py:396 
     455#: models.py:400 
    434456msgid "Thumbnail Image" 
    435457msgstr "" 
    436458 
    437 #: models.py:401 
     459#: models.py:405 
    438460msgid "images" 
    439461msgstr "" 
    440462 
    441 #: models.py:407 
     463#: models.py:411 
    442464msgid "avatar" 
    443465msgstr "" 
    444466 
    445 #: models.py:409 
     467#: models.py:413 
    446468msgid "city" 
    447469msgstr "" 
    448470 
    449 #: models.py:410 
     471#: models.py:414 
    450472msgid "about myself" 
    451473msgstr "" 
    452474 
    453 #: models.py:413 
     475#: models.py:417 
    454476msgid "public" 
    455477msgstr "" 
    456478 
    457 #: models.py:414 
     479#: models.py:418 
    458480msgid "Choose whether your profile info should be publicly visible or not" 
    459481msgstr "" 
    460482 
    461 #: settings.py:90 
     483#: settings.py:89 
    462484msgid "You need to set the CYCLOPE_PROJECT_PATH in your settings file." 
    463485msgstr "" 
     
    489511#: apps/articles/frontend_views.py:34 
    490512msgid "detailed view of the selected Article" 
     513msgstr "" 
     514 
     515#: apps/articles/frontend_views.py:51 
     516msgid "list of Article teasers" 
     517msgstr "" 
     518 
     519#: apps/articles/frontend_views.py:67 
     520msgid "list of Article labeled icons" 
    491521msgstr "" 
    492522 
     
    591621msgstr "" 
    592622 
    593 #: apps/forum/frontend_views.py:64 
     623#: apps/forum/frontend_views.py:63 
    594624msgid "create a new topic in the Forum selected" 
    595625msgstr "" 
     
    621651msgstr "" 
    622652 
    623 #: apps/medialibrary/frontend_views.py:44 
     653#: apps/medialibrary/frontend_views.py:43 
    624654msgid "detailed view of the selected Picture" 
    625655msgstr "" 
    626656 
    627 #: apps/medialibrary/frontend_views.py:52 
     657#: apps/medialibrary/frontend_views.py:51 
    628658msgid "detailed view of the selected Audio Track" 
    629659msgstr "" 
    630660 
    631 #: apps/medialibrary/frontend_views.py:60 
     661#: apps/medialibrary/frontend_views.py:59 
    632662msgid "detailed view of the selected Movie Clip" 
    633663msgstr "" 
    634664 
    635 #: apps/medialibrary/frontend_views.py:68 
     665#: apps/medialibrary/frontend_views.py:67 
    636666msgid "detailed view of the selected Document" 
    637667msgstr "" 
    638668 
    639 #: apps/medialibrary/frontend_views.py:76 
     669#: apps/medialibrary/frontend_views.py:75 
    640670msgid "detailed view of the selected File" 
    641671msgstr "" 
    642672 
    643 #: apps/medialibrary/frontend_views.py:84 
     673#: apps/medialibrary/frontend_views.py:83 
    644674msgid "detailed view of the selected External Content" 
    645675msgstr "" 
    646676 
    647 #: apps/medialibrary/frontend_views.py:92 
     677#: apps/medialibrary/frontend_views.py:91 
    648678msgid "detailed view of the selected Flash Movie" 
    649679msgstr "" 
     
    753783msgstr "" 
    754784 
     785#: apps/newsletter/admin.py:34 
     786msgid "Current content category" 
     787msgstr "" 
     788 
     789#: apps/newsletter/admin.py:35 
     790msgid "" 
     791"This is the category which groups the content that will be sent with the " 
     792"newsletter." 
     793msgstr "" 
     794 
     795#: apps/newsletter/frontend_views.py:13 
     796msgid "show the current content for the selected Newsletter" 
     797msgstr "" 
     798 
     799#: apps/newsletter/frontend_views.py:32 
     800msgid "show the header text of the selected Newsletter" 
     801msgstr "" 
     802 
     803#: apps/newsletter/models.py:38 
     804msgid "sent date" 
     805msgstr "" 
     806 
     807#: apps/newsletter/models.py:41 
     808#: templates/cyclope/themes/neutrona/__init__.py:19 
     809#: templates/cyclope/themes/neutrona/__init__.py:31 
     810#: templates/cyclope/themes/neutronica/__init__.py:19 
     811#: templates/cyclope/themes/neutronica/__init__.py:31 
     812#: templates/cyclope/themes/neutronica/__init__.py:43 
     813#: templates/cyclope/themes/neutronica/__init__.py:59 
     814msgid "header" 
     815msgstr "" 
     816 
     817#: apps/newsletter/models.py:43 
     818msgid "sender" 
     819msgstr "" 
     820 
     821#: apps/newsletter/models.py:44 
     822msgid "test recipients" 
     823msgstr "" 
     824 
     825#: apps/newsletter/models.py:45 
     826msgid "recipients" 
     827msgstr "" 
     828 
     829#: apps/newsletter/models.py:51 
     830msgid "newsletter" 
     831msgstr "" 
     832 
     833#: apps/newsletter/models.py:52 
     834msgid "newsletters" 
     835msgstr "" 
     836 
     837#: apps/newsletter/templates/admin/newsletter_change_form.html:7 
     838msgid "Preview" 
     839msgstr "" 
     840 
     841#: apps/newsletter/templates/admin/newsletter_change_form.html:8 
     842msgid "Send test" 
     843msgstr "" 
     844 
     845#: apps/newsletter/templates/admin/newsletter_change_form.html:9 
     846msgid "Send e-mail" 
     847msgstr "" 
     848 
     849#: apps/newsletter/templates/newsletter/mail_sent.html:5 
     850msgid "The e-mail has been sent for newsletter " 
     851msgstr "" 
     852 
     853#: apps/newsletter/templates/newsletter/mail_sent.html:6 
     854#: apps/newsletter/templates/newsletter/send_failed.html:11 
     855msgid "Return to newsletter admin" 
     856msgstr "" 
     857 
     858#: apps/newsletter/templates/newsletter/send_failed.html:6 
     859msgid "The e-mail for newsletter" 
     860msgstr "" 
     861 
     862#: apps/newsletter/templates/newsletter/send_failed.html:7 
     863msgid "could not be sent." 
     864msgstr "" 
     865 
     866#: apps/newsletter/templates/newsletter/send_failed.html:9 
     867msgid "You should try again later or contact your administrator." 
     868msgstr "" 
     869 
    755870#: apps/polls/frontend_views.py:39 
    756871msgid "Poll submission form" 
    757872msgstr "" 
    758873 
    759 #: apps/polls/frontend_views.py:78 
     874#: apps/polls/frontend_views.py:74 
    760875msgid "detailed view of the selected Poll" 
    761876msgstr "" 
     
    834949msgstr "" 
    835950 
    836 #: core/collections/admin.py:87 templates/rosetta/pofile.html:59 
     951#: core/collections/admin.py:94 templates/rosetta/pofile.html:59 
    837952msgid "All" 
    838953msgstr "" 
    839954 
    840 #: core/collections/admin.py:94 core/collections/models.py:112 
    841 #: core/collections/models.py:174 
     955#: core/collections/admin.py:104 core/collections/models.py:112 
     956#: core/collections/models.py:175 
    842957msgid "categories" 
    843958msgstr "" 
    844959 
    845 #: core/collections/admin.py:103 
     960#: core/collections/admin.py:113 
    846961msgid "Description" 
    847962msgstr "" 
    848963 
    849 #: core/collections/admin.py:118 
     964#: core/collections/admin.py:128 
    850965msgid "Extra info" 
    851966msgstr "" 
    852967 
    853 #: core/collections/admin.py:138 
     968#: core/collections/admin.py:148 
    854969msgid "Collection" 
    855970msgstr "" 
    856971 
    857 #: core/collections/admin.py:140 
     972#: core/collections/admin.py:150 
    858973msgid "Category" 
    859974msgstr "" 
    860975 
    861 #: core/collections/admin.py:188 
     976#: core/collections/admin.py:198 
    862977msgid "Default category listing view" 
    863978msgstr "" 
     
    867982msgstr "" 
    868983 
    869 #: core/collections/frontend_views.py:59 
     984#: core/collections/frontend_views.py:58 
    870985msgid "default view for the Collection" 
    871986msgstr "" 
    872987 
    873 #: core/collections/frontend_views.py:79 
     988#: core/collections/frontend_views.py:78 
    874989msgid "teaser list of Category members" 
    875990msgstr "" 
    876991 
    877 #: core/collections/frontend_views.py:125 
     992#: core/collections/frontend_views.py:122 
    878993msgid "Labeled icon list of Category members" 
    879994msgstr "" 
    880995 
    881 #: core/collections/frontend_views.py:137 
     996#: core/collections/frontend_views.py:134 
    882997msgid "simplified teaser list of Category members" 
    883998msgstr "" 
    884999 
    885 #: core/collections/frontend_views.py:162 
     1000#: core/collections/frontend_views.py:156 
    8861001msgid "teaser list of the root Categories of a Collection" 
    8871002msgstr "" 
    8881003 
    889 #: core/collections/frontend_views.py:184 
     1004#: core/collections/frontend_views.py:176 
    8901005msgid "hierarchical list of Categories in a Collection" 
    8911006msgstr "" 
    8921007 
    893 #: core/collections/frontend_views.py:250 
     1008#: core/collections/frontend_views.py:241 
    8941009msgid "hierarchical list of Categories that will show an icon list on click" 
    8951010msgstr "" 
    8961011 
    897 #: core/collections/frontend_views.py:261 
     1012#: core/collections/frontend_views.py:252 
    8981013msgid "list of Category members as forum view" 
    8991014msgstr "" 
     
    9271042msgstr "" 
    9281043 
    929 #: core/collections/models.py:111 core/collections/models.py:141 
     1044#: core/collections/models.py:111 core/collections/models.py:142 
    9301045msgid "category" 
    9311046msgstr "" 
    9321047 
    933 #: core/collections/models.py:164 
     1048#: core/collections/models.py:165 
    9341049msgid "categorization" 
    9351050msgstr "" 
    9361051 
    937 #: core/collections/models.py:165 
     1052#: core/collections/models.py:166 
    9381053msgid "categorizations" 
    9391054msgstr "" 
    9401055 
    941 #: core/collections/models.py:181 
     1056#: core/collections/models.py:182 
    9421057msgid "is orphan" 
    9431058msgstr "" 
     
    9471062msgstr "" 
    9481063 
    949 #: core/collections/templates/collections/category_list_as_forum.html:9 
     1064#: core/collections/templates/collections/category_list_as_forum.html:10 
    9501065msgid "Create a new topic" 
    9511066msgstr "" 
    9521067 
    953 #: core/collections/templates/collections/category_list_as_forum.html:12 
     1068#: core/collections/templates/collections/category_list_as_forum.html:14 
    9541069msgid "Name" 
    9551070msgstr "" 
    9561071 
    957 #: core/collections/templates/collections/category_list_as_forum.html:14 
     1072#: core/collections/templates/collections/category_list_as_forum.html:16 
    9581073msgid "Created" 
    9591074msgstr "" 
    9601075 
    961 #: core/collections/templates/collections/category_list_as_forum.html:15 
     1076#: core/collections/templates/collections/category_list_as_forum.html:17 
    9621077msgid "Last comment" 
    9631078msgstr "" 
    9641079 
    965 #: core/collections/templates/collections/category_list_as_forum.html:22 
    966 #: core/collections/templates/collections/category_list_as_forum.html:23 
     1080#: core/collections/templates/collections/category_list_as_forum.html:25 
     1081#: core/collections/templates/collections/category_list_as_forum.html:27 
    9671082msgid "by" 
    9681083msgstr "" 
    9691084 
    970 #: core/frontend/__init__.py:150 
     1085#: core/frontend/__init__.py:162 
    9711086#, python-format 
    9721087msgid "No default view has been set for %s" 
    9731088msgstr "" 
    9741089 
    975 #: core/frontend/__init__.py:153 
     1090#: core/frontend/__init__.py:165 
    9761091#, python-format 
    9771092msgid "You can set only one default view for %s" 
    9781093msgstr "" 
    9791094 
    980 #: core/frontend/sites.py:149 
     1095#: core/frontend/sites.py:156 
    9811096msgid "You need to create you site settings" 
    9821097msgstr "" 
    9831098 
    984 #: core/frontend/sites.py:154 
     1099#: core/frontend/sites.py:161 
    9851100msgid "You need to select a layout for the site" 
    9861101msgstr "" 
    9871102 
    988 #: core/frontend/sites.py:160 
     1103#: core/frontend/sites.py:167 
    9891104msgid "The site home page has not been set." 
    9901105msgstr "" 
    9911106 
    992 #: core/frontend/sites.py:171 
     1107#: core/frontend/sites.py:178 
    9931108msgid "No content object selected" 
    9941109msgstr "" 
     
    9981113msgstr "" 
    9991114 
    1000 #: templates/admin/change_form.html:21 templates/admin/change_list.html:42 
     1115#: templates/admin/change_form.html:21 templates/admin/change_list.html:62 
    10011116#: templates/rosetta/pofile.html:46 
    10021117msgid "Home" 
     
    10151130msgstr "" 
    10161131 
    1017 #: templates/admin/change_form.html:41 templates/admin/change_list.html:76 
     1132#: templates/admin/change_form.html:41 templates/admin/change_list.html:96 
    10181133msgid "Please correct the error below." 
    10191134msgid_plural "Please correct the errors below." 
     
    10211136msgstr[1] "" 
    10221137 
    1023 #: templates/admin/change_list.html:58 
     1138#: templates/admin/change_list.html:78 
    10241139#, python-format 
    10251140msgid "" 
     
    10281143msgstr "" 
    10291144 
    1030 #: templates/admin/change_list.html:68 
     1145#: templates/admin/change_list.html:88 
    10311146#, python-format 
    10321147msgid "Add %(name)s" 
    10331148msgstr "" 
    10341149 
    1035 #: templates/admin/change_list.html:87 
     1150#: templates/admin/change_list.html:107 
    10361151#: templates/admin/feincms/tree_editor.html:140 
    10371152#: templates/admin/polls/change_list.html:7 
    10381153msgid "Filter" 
     1154msgstr "" 
     1155 
     1156#: templates/admin/filter.html:2 
     1157#, python-format 
     1158msgid " By %(filter_title)s " 
    10391159msgstr "" 
    10401160 
     
    11271247msgstr "" 
    11281248 
    1129 #: templates/cyclope/site_map.html:5 
     1249#: templates/cyclope/site_map.html:6 
    11301250msgid "Site map" 
    11311251msgstr "" 
     
    11461266#: templates/cyclope/themes/neutronica/__init__.py:17 
    11471267msgid "One sidebar" 
    1148 msgstr "" 
    1149  
    1150 #: templates/cyclope/themes/neutrona/__init__.py:19 
    1151 #: templates/cyclope/themes/neutrona/__init__.py:31 
    1152 #: templates/cyclope/themes/neutronica/__init__.py:19 
    1153 #: templates/cyclope/themes/neutronica/__init__.py:31 
    1154 #: templates/cyclope/themes/neutronica/__init__.py:43 
    1155 msgid "header" 
    11561268msgstr "" 
    11571269 
     
    11681280#: templates/cyclope/themes/neutronica/__init__.py:34 
    11691281#: templates/cyclope/themes/neutronica/__init__.py:44 
     1282#: templates/cyclope/themes/neutronica/__init__.py:60 
    11701283msgid "before content" 
    11711284msgstr "" 
     
    11761289#: templates/cyclope/themes/neutronica/__init__.py:35 
    11771290#: templates/cyclope/themes/neutronica/__init__.py:45 
     1291#: templates/cyclope/themes/neutronica/__init__.py:61 
    11781292msgid "after content" 
    11791293msgstr "" 
     
    11841298#: templates/cyclope/themes/neutronica/__init__.py:36 
    11851299#: templates/cyclope/themes/neutronica/__init__.py:46 
     1300#: templates/cyclope/themes/neutronica/__init__.py:62 
    11861301msgid "footer" 
    11871302msgstr "" 
     
    12221337#: templates/cyclope/themes/neutronica/__init__.py:41 
    12231338msgid "No sidebars" 
     1339msgstr "" 
     1340 
     1341#: templates/cyclope/themes/neutronica/__init__.py:57 
     1342msgid "Newsletter" 
    12241343msgstr "" 
    12251344 
  • cyclope/media/css/admin_tools_theming.css

    r219 r269  
    223223background: url('../images/filter-on.png') no-repeat 0 0 transparent; 
    224224} 
     225 
     226#changelist-filter ul.categories-filter li { 
     227margin-left: 0; padding-left: 0px; 
     228} 
     229 
     230#changelist-filter ul.categories-filter li.selected { 
     231border: none; 
     232margin-left: 0; padding-left: 12px; 
     233background: url('../images/filter-on.png') no-repeat 0 0 transparent; 
     234} 
     235 
    225236 
    226237/* --- change list paginator ---- */ 
  • cyclope/models.py

    r245 r269  
    4444 
    4545import cyclope 
     46from cyclope.core.collections.models import Collection 
    4647 
    4748# we add South introspection rules for custom field TagAutocompleteField 
     
    7172    keywords = models.TextField(_('keywords'), blank=True, default='') 
    7273    description = models.TextField(_('description'), blank=True, default='') 
     74    newsletter_collection = models.ForeignKey(Collection, blank=True, null=True, 
     75                                              verbose_name =_('newsletter collection'), 
     76                                              help_text=_('This is the collection that will group the contents for your newsletters.')) 
    7377 
    7478    def __unicode__(self): 
  • cyclope/templates/admin/change_list.html

    r265 r269  
    2727{# TODO(nicoechaniz): put this in a js file that loads only for BaseContent models #} 
    2828<script type="text/javascript"> 
    29 jQuery(document).ready(function(){ 
    30   $('.expand_collapse').css('cursor', 'pointer'); 
    31   $('#changelist-filter ul').css('display', 'none'); 
    32   $('#changelist-filter ul').first().css('display', 'block'); 
    33   $('#changelist-filter .selected').parent().css('display', 'block'); 
    34   $('#changelist-filter .expand_collapse').click(function() { 
    35     $(this).parent().children('ul').toggle(); 
    36     return false; 
    37   }); 
    38 }); 
     29(function($) { 
     30    $(document).ready(function($) { 
     31      $('.expand_collapse').css('cursor', 'pointer'); 
     32      $('#changelist-filter ul').css('display', 'none'); 
     33      $('#changelist-filter ul').first().css('display', 'block'); 
     34      $('#changelist-filter .selected').parent().css('display', 'block'); 
     35      $('#changelist-filter .expand_collapse').click(function() { 
     36        $(this).parent().children('ul').toggle(); 
     37        return false; 
     38      }); 
     39    }); 
     40})(django.jQuery); 
     41 
    3942</script> 
    4043 
  • cyclope/templates/cyclope/themes/neutronica/__init__.py

    r245 r269  
    5252         'regions': {} 
    5353         }, 
     54 
     55    'newsletter.html': 
     56        { 
     57        'verbose_name': _('Newsletter'), 
     58        'regions' : { 
     59            'header': _('header'), 
     60            'before_content': _('before content'), 
     61            'after_content': _('after content'), 
     62            'footer': _('footer'), 
     63            } 
     64        }, 
     65 
    5466} 
  • cyclope/templatetags/layout.py

    r229 r269  
    4949    """ 
    5050 
    51     # content should be a normal block, not a region. 
    52     if region_name == 'content': 
    53         return {} 
    54  
    55     layout = layout_for_request(context['request']) 
     51    # if we have a layout in the context use that one, otherwise guess it from the request 
     52    layout = context.get('layout', layout_for_request(context['request'])) 
    5653    region_vars = {'layout_name': layout.slug, 'region_name': region_name} 
    5754 
  • cyclope/utils/__init__.py

    r257 r269  
    9393        else: 
    9494            return super(LazyJSONEncoder, self).default(o) 
     95 
     96# copied from django.templates.defaultfilters 
     97def slugify(value): 
     98    """ 
     99    Normalizes string, converts to lowercase, removes non-alpha characters, 
     100    and converts spaces to hyphens. 
     101    """ 
     102    import unicodedata, re 
     103    value = unicode(value) 
     104    value = unicodedata.normalize('NFKD', value).encode('ascii', 'ignore') 
     105    value = unicode(re.sub('[^\w\s-]', '', value).strip().lower()) 
     106    return re.sub('[-\s]+', '-', value) 
  • cyclope/views.py

    r261 r269  
    3030 
    3131from django.template import loader 
    32 from django.http import Http404, HttpResponse 
     32from django.http import Http404 
    3333from django.core.xheaders import populate_xheaders 
    3434from django.core.exceptions import ObjectDoesNotExist 
  • demo/cyclope_project/media/filebrowser

    r225 r269  
    1 ../../../../../lib/python2.6/site-packages/filebrowser/media/filebrowser 
     1../../../../../src/django-filebrowser/filebrowser/media/filebrowser 
Note: See TracChangeset for help on using the changeset viewer.